/*
 * SimpleModal Basic Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2008 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: basic.css 132 2008-05-23 16:05:17Z emartin24 $
 *
 */

/* Overlay */
#modalOverlay {background-color:#000;}

/* Container */
#modalContainer {
	width:502px; 
	left:50%; 
	top:15%; 
	margin-left:-300px; 
	color:#dfdfdf;
}

#modalContainer a{
	color:#000;
}

*html #modalContainer {
	display:block;
	height:1px;
}

*+html #modalContainer {
	display:block;
	height:auto;
	min-height:1px;
}

#modalContainer a.modalCloseImg {
	display:block;
}
	
#modalContainer #basicModalContent {padding:8px;}

.layer_top{
	width:502px;
	height:9px;
	background:transparent url(../img/layer_top.png) no-repeat bottom;
}

*html .layer_top{
	background:none; 
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/layer_top',sizingMethod='scale');
}

.layer_header{
	width:496px;
	border-left:3px solid #5b5b5b;
	border-right:3px solid #5b5b5b;
	background-color:#383838;
}

body:nth-of-type(1) .layer_header{
	width:502px;
}

.layer_header h3{
	width:425px;
	color:#929292;
	padding:1px 21px 4px 21px;
	float:left;
}

body:nth-of-type(1) .layer_header h3{
	width:425px;
}

#modalContainer .layer_header a.modalClose{
	display:block !important;
	float:left;
	background:transparent url(../img/x.gif) no-repeat left;
	width:14px;
	height:14px;
	margin-top:5px;
}

.layer_bottom{
	width:502px;
	height:9px;
	background:transparent url(../img/layer_bottom.png) no-repeat top;
}

*html .layer_bottom{
	background:none; 
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='img/layer_bottom',sizingMethod='scale');
}

.layer_content{
	width:496px;
	border-left:3px solid #5b5b5b;
	border-right:3px solid #5b5b5b;
	border-top:1px solid #5b5b5b;
	background-color:#383838;
	padding-bottom:50px;
	color:#dfdfdf;
	font-size:14px;
}

.layer_content img.attention{
	margin:32px 0 0 233px;
}

.mess_alert{
	display:block;
	margin-top:9px;
	text-align:center;
	width:496px;
}
