﻿/* ===== Pop up feedback window ==== */

#feedback1 {
	font: normal 700 .9em Arial, sans-serif;
	color: #fff;
}

#feedback1 h2 {
	font: normal 800 1.7em Georgia, serif;
    color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 7px;
    margin-bottom: 15px;
}

#feedback1 label { 
	display: block;
	margin: 7px 0;
	width: 498px;
}

#feedback1 input, #feedback1 label textarea { 
	border: 1px solid #e5e5e5;
	padding: 4px;
	-moz-border-radius: 4px; /* Firefox 3.6 and earlier*/
	border-radius: 4px;
	-moz-border-radius: 4px; /* Firefox 3.6 and earlier*/
}

#feedback1 label.radio input { border: 0;}

#feedback1 div.inputBlock {
	display: block;
	text-align: center;
	margin: 25px 0 0;
}

#feedback1 input.button {
	background: #f07f12 bottom left repeat-x url(../images/home/feedback-bg.jpg);
	border: 2px solid #f8d6b6;
	margin: 0 auto;
	text-align: center;
	padding: 4px 6px;
	font: normal 800 .9em Arial, sans-serif;
    color: #fff;
}

#feedback1 a.close {
	-moz-border-radius: 3px; /* Firefox 3.6 and earlier*/
	border-radius: 3px;
	-moz-border-radius: 3px; /* Firefox 3.6 and earlier*/
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0 0 0 5px;
	padding: 2px 4px;;
	background: #7992a6;
	border: 1px solid #c9c9c9;
	text-align: center;
	color: #fff;
	font-size: .7em;
}

#feedbackButton a:hover, #feedback1 input.button:hover, #feedback1 a.close:hover { 
	text-decoration: none;
	color: #003d61;
	cursor: pointer;
}


#feedback1 label.text span, #feedback1 label.radio span { 
	display: block;
	width: 120px;
	float: left;
}

#feedback1 label.radio span { 
	width: auto;
	padding-top: 15px;
}

#feedback1 label.radio input { 
	margin: 17px 0 0 25px;
}

#feedback1 label.textarea span { 
	display: block;
	width: 440px;
	margin: 15px 0 4px;
}

#feedback1 label.text input { width: 330px; }
#feedback1 label textarea { width: 485px;}


#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #fff;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .84;
	z-index: 9999;
}
.popup_block {
	display: none; /*--hidden by default--*/
	background: #8da9c1 bottom left repeat-x url(../images/home/form-bg.jpg);
	padding: 20px;
	border: 2px solid #e5e5e5;
	float: left;
	position: fixed;
	top: 40%; left: 50%;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	box-shadow: 0 0 10px rgba(100, 100, 100, 5); 
    -webkit-box-shadow: 0 0 10px rgba(100, 100, 100, 5); 
    -moz-box-shadow: 0 0 10px rgba(100, 100, 100, 5);
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}
