@charset "UTF-8";
/* CSS Document
This document is focused on the layout and overall look*/
html, body {
	height: 100%;
	margin:0px;
	padding:0px;
}
#wrap {
	min-height: 100%;
}
#main {
	overflow:auto;
	min-width: 600px;
	max-width: 1200px;
	margin: 0 auto;
	padding-bottom: 40px; /* must be equal to footer height */
}  
#navbar {
	top:0px;
	height:20px;
	margin-top:5px;
	margin-right:15px;
	text-align:right;
	width: 185px;
	padding-top:5px;
}
#maincontent {
	padding-left:200px;
	text-align:left;	
}
#masthead {
	height:150px;
	padding:15px;
	background-image: url(../images/bg_headershadow.png);
	background-repeat: repeat-x;
	background-position:top;
	text-align:left;
	/* width: 100%; */
}
#footer {
	position: relative;
	margin-top: -40px; /* again, must be equal to footer height */
	height: 40px;
	clear:both;
	text-align:right;
	padding-right:15px;
	background-image: url(../images/bg_footerbarshadow.png);
	background-repeat: repeat-x;
	background-position:bottom;
}
#popup {
	border-radius: 5px;
	-moz-border-radius: 5px;
	margin:5px;
	height:100%; 
	width: auto;
	padding: 15px;
	background-color: #abae9c;
	box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.9);
	-moz-box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.9);
	-webkit-box-shadow: inset 0px 0px 12px rgba(0, 0, 0, 0.9);
}