/* IAMH screen styles
	author: Marcel Moreau
			Table of Contents:
				generic styles
				layout
				typography
				nav
				tables
				footer nav
				clearfix	
*/
/* generic styles
------------------------------------*/
html * {
	margin: 0; 
	padding: 0;
}
/*this margin makes lists viewable in CMS*/
ul, ol{
	margin: 0 0 7px 20px;
}

img{ 
	border: none;
}

/* layout
------------------------------------*/
html{
	background: #a5b6fe url(/media/grass_tile.jpg) bottom repeat-x;
	min-height: 101%
}
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: navy;
	background: #a5b6fe;
	behavior: url("csshover.htc");	/*Menu behavior for IEWin */
} 
body.colored {
	background: #a5b6fe url(/media/header_bg_tile.jpg) top repeat-x;
}
#page{
	width: 750px;
	margin: 0 auto;
}
#header{
	margin: 0;
	height: 144px;
}
img#logo{
	float: left;
}
#header h1#logospan{
	width: 164px;
	float: left;
	margin: 0; padding: 0;
	height: 105px;
	background: url(/media/logo.jpg) top no-repeat;
}
#header h1#logospan span{
	display: none;
}
#contentarea{
	clear: both;
}
#content-home{
	float: left;
	width: 490px;
}	
#content{
	float: left;
}	
#rightcol{
	float: right;
	width: 230px;
	padding: 10px 0 0 20px;
}
#rightcol h4{
line-height: 1.2em;
}
.featured{
background: #96a8f2;
padding: 10px;
border: 1px solid navy;
margin-bottom: 10px;
}
#footer{
	clear: both;
	padding-top: 30px;
}

/* typography
------------------------------------*/
h1, h2, h3, h4, h5{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-variant: small-caps;
	font-weight: normal;
	margin-bottom: 0.2em;
}
h1 {
	font-size: 1.9em;
}
h2 {
	font-size: 1.7em;
}
h3{
	font-size: 1.5em;
}
h4{
	font-size: 1.3em;
}
h5, h6{
	font-size: 1.1em;
}
p{	
	margin-bottom: 1em;
}
#content, #content-home{
	line-height: 1.6;
}
#rightcol{
	font-size: 0.9em;
	line-height: 1.5;
}
#footer{
	text-align: center;
}
#footer p{
	margin: 0;
	font-size: 0.9em;
	color: white;
}
a:link {color: navy;}
a:visited {color: navy;}
a:hover {color: navy;}
a:active {color: navy;}

/*   nav
------------------------------------*/
#nav {
	margin: 0;
	padding: 0;
	white-space: nowrap;
	font-family: arial, verdana, sans-serif;
	font-weight: bold;
	font-size: 1em;
}
#nav ul.level0 a {
	display: block;
	text-decoration: none;
	padding: 6px 10px 8px 10px;
	margin-top: 85px;
}
#nav a:link {color: #707eb2;}
#nav a:visited {color: #707eb2;}
#nav a:hover {color: #707eb2;}
#nav a:active {color: #707eb2;}
#nav a.current {color: #707eb2;}
#nav ul {
	cursor: default;
	list-style: none;
	padding: 0;
}
#nav ul.level0 li {
	float: left;
	border-right: 1px solid #e8ecff;
	height: 116px;
	position: relative;
}
#nav{
	float: right;
	margin: 0px 20px 0 0;
}

/* tables
------------------------------------ */
table td{
	font-weight: bold;
	padding: 2px 0;
}

/* footer 
------------------------------------*/
#footer ul.topLevelNav {
	padding: 0;
	margin-bottom: 0.3em;
	list-style: none;
}
#footer ul.topLevelNav li {
	display: inline;
}
#footer a {
	text-decoration: none;
	white-space: nowrap;
}
#footer a.cperry{
	padding: 0;
}
#footer a:link {color: #333;}
#footer a:visited {color: white;}
#footer a:hover {color: white;}
#footer a:active {color: white;}
#footer a.current {color: white;}

/* clearfix
------------------------------------*/
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}

* html>body .clearfix {
	display: inline-block; 
	width: 100%;
}

* html .clearfix {
	/* Hides from IE-mac \*/
	height: 1%;
	/* End hide from IE-mac */
}