@CHARSET "UTF-8";

.message { font-weight: bold; border-left: 4px solid green; padding: 2px 10px; color: green; margin-top: 10px; }

.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background-color:#c7c7c7;
	
	width:675px;
	padding: 15px 0 15px 15px;
	height:400px;
	border:1px solid #000;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow: 0 0 90px #c7c7c7;
	-webkit-box-shadow: 0 0 90px #c7c7c7;
}

.simple_overlay .overlay_content {
	overflow: auto;
	height: 100%;
	padding-right: 15px;
}
	
/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../img/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}


#slider { position: relative; margin: 0px auto; width: 864px; height: 478px;
          -moz-border-radius: 5px; -khtml-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; }