﻿*
{
	margin:0;
	padding:0;
}
html, body, form
{
	width:100%;
	height:100%;
}
body
{
	font-family:Georgia, Verdana, Arial, Helvetica Sans-Serif;
	font-size:15px;
	color:#fff;
	background-color:#000;
}
img
{
	border: none;
}
a
{
	text-decoration: none;
	color: #fff;
}
a:hover
{
	text-decoration: none;
}
.Wrapper
{
	width:565px;
	margin:auto;
}
.Input
{
	font-family:Georgia, Verdana, Arial, Helvetica Sans-Serif;
	font-size:15px;
	border-top: solid 1px #999;
	border-left: solid 1px #999;
	border-bottom: solid 1px #ddd;
	border-right: solid 1px #ddd;
}
.Button
{
	font-family:Georgia, Verdana, Arial, Helvetica Sans-Serif;
	font-size:15px;
	border-bottom: solid 1px #999;
	border-right: solid 1px #999;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
}
.Close
{
    position: absolute;
    left: 425px;
    top: 4px;    
}
.ModalBackground
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

	z-index: 9;
	background-color:#000000;
	display: none;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; 
    filter:alpha(opacity=75);
    -moz-opacity:.75;
    opacity:.75;
}
.ModalWindow
{
    position: fixed;
    left: 0;
    top: 0;
    color: #000;
    overflow: auto;
	z-index: 10;
	background-color: #fff;
	/*border: solid 2px #c0c0c0;*/
	padding: 20px;
	display: none;
}
* html .ModalBackground
{
    position: absolute;
    left: expression(ignoreMe = document.documentElement.scrollLeft + "px");
    top: expression(ignoreMe = document.documentElement.scrollTop + "px");
    width: expression(document.documentElement.clientWidth + "px");
    height: expression(document.documentElement.clientHeight + "px");
}
* html .ModalWindow
{
	position: absolute;
    left: expression(ignoreMe = document.documentElement.scrollLeft + "px");
    top: expression(ignoreMe = document.documentElement.scrollTop + "px");
}