﻿@charset "utf-8";
/* CSS Document */

#popupMask {
	position: absolute;
	z-index: 99900;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: .4;
	filter: alpha(opacity=75);
	/* this hack is so it works in IE
	 * I find setting the color in the css gives me more flexibility 
	 * than the PNG solution.
	 */
	/*background-color: transparent !important;*/
	background-color: #000;
	/* this hack is for opera support
	 * you can uncomment the background-image if you don't care about opera.
	 * this gives you the flexibility to use any bg color that you want, instead of the png
	 */
	background-image/**/: url("mask.png") !important; // For browsers Moz, Opera, etc.
	background-image:none;
	background-repeat: repeat;
	display:none;
}
#popupContainer {
	position: absolute;
	z-index: 99901;
	top: 0px;
	left: 0px;
	display:none;
	padding: 0px;
	background-color: #FDFCF7;
	border: 1px solid #004236;
}
#popupInner {
	/*border: 2px solid #000000;*/
}

#popupFrame {
	margin: 0px;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 202;
}
#popupTitleBar {
	background-color: #F3E7CB;
	color: #004236;
	/*font-weight: bold;*/
	height: 1.3em;
	padding: 5px;
	border-bottom: 1px solid #004236;
	position: relative;
	z-index: 203;
}
#popupTitle {
	float:left;
	font-size: 1.1em;
}
#popupControls {
	float: right;
	cursor: hand;
}

/**************************************************
/*           POP-IN   
**************************************************/
#popupContainer {
text-align:left;
}


#popupContainer p, #popupContainer td {
font-size:11px;
color:#002C1B;
}

#popupContainer H1{
color:#002C1B;
width:100%;
border-bottom:1px solid #002c1b;
padding-bottom:4px;
font-size:17px;
text-transform:uppercase;
margin:20px 0 15px 0;
}

#popupContainer h2{
color:#7e620e;
font-size:14px;
font-weight:bold;
padding:15px 0 10px 0;
}              

#popupContainer a{
color:#002C1B;
text-decoration:underline;
}

#popupContainer a:hover{
text-decoration:none;

}

#popupContainer .close{
text-decoration:none;
font-weight:bold;

}

#popupContainer .bg{
background-color: #fcfaf1;
border: 1px solid #ae995d;
padding: 10px 15px;
}

#popupContainer .inputSTYLE1{
    background-color: #fff;
    color: #987714;
    font-size: 12px;
    border-style: solid;
    border-width: 1px;
}




#popupTitleBar {
background-color: #fff;
color: #fff;
height: 1.3em;
padding: 5px;
position: relative;
z-index: 203;
}


#popupControls {
float: right;
}


#popupTitle {
float: left;
font-size: 15px;
}

