@charset "UTF-8";
/**Zero out margins, padding and borders for all browsers**/

html, body {margin:0; padding:0; border:0; font-size:90%; height:100%; margin-bottom:1px; /** this forces scrollbar to appear in Mozilla **/}

/**for IE only**/
* body {font-size:76%; Zoom: 1.0 /**normalizes zoom in IE7 to 100%**/}

body {
	text-align:center;
	margin:0 auto; /**centers page**/
	padding:0;
	width:770px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	background: silver;
}

#wrapper {
	text-align:left;
	height:auto;
	width:auto;
	overflow:auto;
	background-color: #E5E6D4;
	background-image: url(images/body_bg.gif);
	background-repeat: repeat-y;
}
#header {
	background: white;
}

/**Horizontal menu**/
#topMenu {
	text-align:left;
	background:lightgreen;
	padding:7px;
}
#topMenu a {
	font-size:0.7em;
	text-transform:uppercase;
	text-decoration:none;
}
#topMenu a:hover {
	color:#505050;
	text-decoration:none;
}

/**floated left column**/
#leftColumn{
	float:left;
	width:200px;/*adjust width of column in pixels, ems or percentages*/
	margin:0;
	padding:5px;
	height: auto;
	left: 0px;
	top: auto;
}
/**floated right column**/
#rightColumn{
	float:right;
	width:150px;/*adjust width of column in pixels, ems or percentages*/
	margin:0;
	padding:5px;
	background:mediumaquamarine;
}

/**Right Side Vertical Navigation**/
#navcontainer {width: 200px; background:khaki; }

#navcontainer ul {
	margin-left: 0;
	padding-left: 0;
	list-style-type: none;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
#navcontainer a {
	display: block;
	width: 200px; /**change this width if you change width of rightColumn**/
	padding-left: 5px;
	background-color: #036;
	border-bottom: 1px solid #eee;
}
#navcontainer a:link, #navlist a:visited {
	color: #EEE;
	text-decoration: none;
}
#navcontainer a:hover {
	background-color: #369;
	color: #fff;
}
/** Middle column container **/
#Middle {
	padding:10px;
	height:1%;
	width: auto;
	margin:0px 0px 0px 212px;
}

#footer {
	clear: both;
	color:black;
	margin:0;
	padding:10px;
	height:auto;
	background: white;
	border-top-width: thin;
	border-top-style: double;
	border-top-color: #ADADAD;
}


/**text styles**/
h1,h2,h3,h4 {font-size: 1.2em; line-height:1;}
h3 {color: #666666}
p {
	font-size: 1.1em;
	line-height:1.5;
	padding:0 20px 0 20px;
}
ul {line-height:2;}

/**Regular Links**/
a{color:#4488c3;font-weight:700;text-decoration:none}
a:visited {color:#4488c3; text-decoration:none}
a:hover,a:active,a:focus{text-decoration:underline}

/**linked images**/
a img{border:none;}
img a:hover {border:none}

/**Misc classes**/
.left {text-align:left}
.center {text-align:center}
.right {text-align:right}

/**Floats**/
.floatRight {float:right; width:30%}
.floatLeft {float:left; width:30%}
.clearing {clear:both; height:1px; width:100%; visibility:hidden;}
