
/* the overlayed element */
.simple_overlay {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background: #473938 url(../images/bg_atas.png) repeat-x;
	
	width:800px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay .close {
	background-image:url(../images/close.png);
	position:absolute;
	z-index:10000000;
	right:-15px;
	top:-15px;
	cursor:pointer;
	height:35px;
	width:35px;
}

.simple_overlay2 {
	
	/* must be initially hidden */
	display:none;
	
	/* place overlay on top of other elements */
	z-index:10000;
	
	/* styling */
	background: #473938 url(../images/bg_atas.png) repeat-x;
	
	width:960px;	
	min-height:200px;
	border:1px solid #666;
	
	/* CSS3 styling for latest browsers */
	-moz-box-shadow:0 0 90px 5px #000;
	-webkit-box-shadow: 0 0 90px #000;	
}

/* close button positioned on upper right corner */
.simple_overlay2 .close {
	background-image:url(../images/close.png);
	position:absolute;
	right:-15px;
	top:-15px;
	z-index:200000000;
	cursor:pointer;
	height:35px;
	width:35px;
}
#triggers {
	text-align:center;
}

#triggers img {
	cursor:pointer;
	margin:0 5px;
	background-color:#fff;
	border:1px solid #ccc;
	padding:2px;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}



/* styling for elements inside overlay */
.details {
	position:absolute;
	top:15px;
	right:15px;
	font-size:11px;
	color:#fff;
	width:150px;
}

.details h3 {
	color:#aba;
	font-size:15px;
	margin:0 0 -10px 0;
}

/*--- BEGIN contact ---*/
#contacts {
	margin:0;
	padding: 20px;
	border:none;
	font-family: Arial, Tahoma, Georgia, "Times New Roman", Times, serif;
	font-size:11px;

	
}


#contacts ul li {
	padding:2px 0px;
	list-style: none;
}
#contacts form {
	margin:0;
	padding:0;
}

#contacts fieldset {
	border: 0;
}

#contacts legend {
	display: none;
}

#contacts label {
	float:left;
	font-size:11px;
	margin:0;
	padding:0;
	width:160px;
	letter-spacing:0.1em
}

#contacts_comment {
	height:auto;
	/*padding-bottom:10px;*/
}

#contacts input, textarea, select {
	font-size:10pt;
	color:#000;
	margin-top:1px;
	padding: 2px 5px;
	border: 1px solid #EBEBEB;
	background-color:#e7e7e7;

}

#contacts input.input_submit_p, #contacts input.input_submit_hover_p {
	background-color:#847c63;
	width:170px;
	font-size:11px;
	line-height:11px;
	height:28px;
	color:#fff;
	outline:none;
	text-transform:uppercase;
}

#contacts input.input_submit_hover_p {
	background-color:#929EAD;
	color:#fff;
	text-transform:uppercase;
}
/*--- END contact ---*/

