/* LOGIN BOX - **CC** - 2.27.08 */

#windowBackground{
	position:fixed;
	z-index: 100;
	width:100%;
	height:100%;
	background-color:#000;
	opacity:.30;
	filter:alpha(opacity=30);
	left:0;
	top:0;
}

.window{
	position:absolute;
	z-index: 101;
	width:400px;
	height:220px;
	left:50%;
	top:50%;
	margin-left:-200px;
	margin-top:-110px;
	background:url(../images/login/login-background.png) no-repeat;
	padding:5px;
}

.window .container{ position:relative; padding:20px; }
.window .container .close{ 
	position:absolute; 
	background-image:url(../images/login/close.png); 
	background-position:top; 
	background-repeat:no-repeat; 
	width:31px; 
	height:31px; 
	right:-18px; 
	top:-18px; 
	cursor:pointer; 
}

.window .container .errorMessage{ 
	color:#FF0000; 
	font-weight:bold; 
	font-size:11px; 
	padding:4px 0;
	width:100%;
	text-align:center;
}

.window .container .title { 
	font-weight:bold;
	font-size:22px; 
	color:#555;
	width:100%; 
	text-align:center;
	margin:0;
	padding:0;
}

.window .container input[type="text"], .window .container input[type="password"], .window .container textarea{
	width:120px;
	border:1px solid #555;
}

.window .container input[name="email_address"]{
	width:160px;
}

.window .container td.left{
	width:40%;
	text-align:right;
	color:#555;
}

.window .container td.right{
	text-align:left;
	margin-left:5px;
}

.window .container a{ text-decoration:none; }

.window .container p{ color:#555; }


