/* ____________ screen styles

			Table of Contents:
				generic styles
				layout
				typography
				nav
				news
				gallery
				footer
				clearfix	
*/

/* generic styles
----------------------------------------------*/
* {
	margin: 0; 
	padding: 0;
}
/*this margin makes lists viewable in CMS*/
ul, ol{
	margin: 0 0 7px 20px;
}
img{ 
	border: none;
}
.hidden{
	display: none;
}


/* layout
----------------------------------------------*/
body {
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: black;
	background: white;
	behavior: url("csshover.htc");	/*Menu behavior for IEWin */
} 
body.colored{
	background: url(/media/body-bg.gif) repeat;
}
#page{
	width: 760px;
	border-top: 1px solid #4b1d74;
	background: white;
	padding: 0 6px 6px 6px;
	margin: 15px auto;
}
#header{
	width: 760px;
	height: 142px;
	background: url(/media/header-bg.jpg) no-repeat;
	position: relative;
}
#header img#logo{
	position: absolute;
	top: 25px;
	left: 8px;
}
#header #numbers{
	font: 10px Arial, Helvetica, sans-serif;
	text-align: right;
	position: absolute;
	right: 5px;
	bottom: 0;
}
#nav{
	width: 760px;
	height: 26px;	
	
}
#content{
	background: url(/media/content-bg.gif) repeat;
	border: 1px solid #9f9ba0;
	padding: 12px 15px 3px 15px;
	margin-top: 5px;
}
#footer{
	padding: 15px 0 0 0;
}
#affiliates{
	padding: 5px 0 0 0;
	text-align: center;
}
#affiliates img{
	margin: 0 2px;
}

/* tiles layout
----------------------------------------------*/
#tiles{
	position: relative;
	width: 760px;
	height: 275px;
}
#tiles a{
	display: block;
	width: 250px;
	height: 270px;
	position: absolute;
}
#tiles a#tile1{
	background: url(/media/tile-care.jpg) no-repeat;
	top: 5px;
	left: 0;
}
#tiles a#tile1:hover{
	background-position: 0 -270px;
}
#tiles a#tile2{
	background: url(/media/tile-education.jpg) no-repeat;
	top: 5px;
	left: 255px;
}
#tiles a#tile2:hover{
	background-position: 0 -270px;
}
#tiles a#tile3{
	background: url(/media/tile-products.jpg) no-repeat;
	top: 5px;
	left: 510px;
}
#tiles a#tile3:hover{
	background-position: 0 -270px;
}


/* typography
----------------------------------------------*/
h1, h2, h3, h4, h5{
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	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: 0.8em;
}
#content{
	line-height: 1.6;
}
a:link {color: #333;}
a:visited {color: #333;}
a:hover {color: #666;}
a:active {color: #333;}

/* nav
----------------------------------------------*/
#nav {
	width: 760px;
	margin: 0;
	padding: 0;
	background: url(/media/nav-bg.gif) no-repeat;
	white-space: nowrap;
}
#nav a {
	display: block;
	text-decoration: none;
	padding: 4px 15px;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	white-space: nowrap;
}
#nav a:link {color: #55445a;}
#nav a:visited {color: #55445a;}
#nav a:hover {color: #666;}
#nav a:active {color: #666;}
#nav a:current {color: #666;}
#nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#nav ul li:hover ul { 
	display: block; /* Display sublist on hover */
}
#nav ul.level0 li {
	float: left;
	position: relative;
	margin: 0 1px;
	/* IE hack use following rule if your links are block. IE inexplicabley adds 10px of bottom margin.
	border-bottom: 1px solid #000;*/
}
#nav ul.level1 {
	display: none;
	position: absolute;
	background: #FFF;
	border: dashed 1px #000;
	width: 13.6em;
	white-space: normal;
}
#nav ul.level1 a{
	font-weight: normal;
	background: none;
	font-size: 0.9em;
	color: #333;
}
#nav ul.level1 li {
	float: none;
	display: inline;
	position: relative;
}

/* footer 
----------------------------------------------*/
#footer a {
	text-decoration: none;
	white-space: nowrap;
	padding: 0;
}
#footer{
	text-align: center;
}
#footer p{
	margin: 0;
	font-size: 0.9em;
	color: #333;
}
#footer a:link {color: #333;}
#footer a:visited {color: #333;}
#footer a:hover {color: #666;}
#footer a:active {color: #333;}
#footer a.current {color: #333;}

/* clearfix
----------------------------------------------*/
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
.clearfix {display:inline-block;} /*IE7*/
/* Hide from IE Mac \*/
.clearfix {display:block;}
* html .clearfix {height: 1%;}
/* End hide from IE Mac */
