BODY {
	margin:0 auto; padding:0;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:12px;
	line-height:1.5em;
}

.clearAll {
	display: block;
	float: none;
	visibility: hidden;
	margin: 0;
	padding: 0;
	clear: both;
	width: 100%;
	height: 0px;
	overflow: hidden;
	font-size: 1px;
	line-height: 1px;
}

H1 {
	font-size:1.75em;
	line-height:normal;
	font-weight:normal;
	margin:15px 0;
	color:#7592b7;
}

H2 {
	font-size:1.5em;
	line-height:normal;
	font-weight:normal;
	margin:15px 0;
	color:#7592b7;
}

H3 {
	font-size:1.25em;
	line-height:normal;
	font-weight:normal;
	margin:15px 0;
	color:#7592b7;
}

H1:first-child, H2:first-child, H3:first-child {
	margin-top: 0;
	padding-top: 0;
}

P { margin:15px 0; }

UL { text-align:left; }

A:link, A:visited, A:active {
	text-decoration:none;
	color:#7592b7;
	border-bottom:1px dotted #7592b7;
}

A:hover {
	color:#94acca;
	border-bottom:1px dotted #94acca;
}

/* CONTENT ***************************************** */

.page {
	width:800px;
	background-color:#FFFFFF;
	margin:auto;
	border-top:solid 15px #dde6f1;
}

.banner {
	background:url('img/banner.gif');
	height:140px; width:800px;
	margin:0; padding:0;
	border-top:solid 1px #7592b7;
	border-bottom:solid 1px #7592b7;
	background-color:#94acca;
}

.content {
	padding:20px 30px 30px 35px; margin:0;
	width:735px;
	text-align:left;
	clear:both;
}

/* FOOTER ***************************************** */

.copyright A:link, .copyright A:visited, .copyright A:hover, .copyright A:active {
	color:#FFFFFF;
	border:none;
	text-decoration:none;
}
.copyright {
	color:#FFFFFF;
	font-size:11px;
	text-align:center;
	padding: 10px 0 10px 0; margin:auto;
	width:800px;
	clear:both;
	background-color:#94acca;
	border-top:solid 1px #7592b7;
} 

.nav { 
	clear:both;	
	text-align:center;
}

/* ******************************************************
ALL LEVELS *********************************************
****************************************************** */

.nav UL {
	position:relative; /*position:absolute;*/
	z-index: 1;
	margin: 0;
	padding: 0;
	list-style: none;
	background-color: #dde6f1;
	border-bottom:1px solid #7592b7;
	width: 800px;
	height:28px;
}
.nav A .levelBullet {
	/* hide level bullets for dropdowns */
	display: none;
}
/* NORMAL state *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* */
.nav LI {
	position: relative;
	float: left;
	margin: 0;
	border-left: 1px solid #7592b7;
	/* IE mouse over behaviour; adds class=over
	to get the :hover functionality on list items */
	behavior: url("/global/scripts/HTCLibrary/rollover.htc");
}
.nav LI.first {
	border-left: none;
}
.nav LI A:link,
.nav LI A:visited {
	display: block;
	padding: 5px 7px;
	font-size: 12px;
	text-decoration: none;
	background-color: transparent;
	color: #7592b7;
	border-bottom:none;
}
.nav LI A SPAN.childBullet {
	/* hide child bullet only for level2 */
	display:none;
}

/* SELECTED/OPENED state *-*-*-*-*-*-*-*-*-*-* */
.nav LI.selected, .nav LI.opened {
	background-color: #7592b7;
}
.nav LI A.selected:link,
.nav LI A.selected:visited,
.nav LI A.selected SPAN {
	color:#FFFFFF;
}
.nav LI A.opened:link,
.nav LI A.opened:visited,
.nav LI A.opened SPAN {
	color: #FFFFFF;
}
/* level 2 OVER state *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-* */
.nav LI:hover,
.nav UL LI.over {
	background-color: #7592b7;
}
.nav LI:hover A,
.nav LI.over A:link,
.nav LI.over A:visited {
	text-decoration: none;
	color: #FFFFFF;
}
.nav LI UL {
	position:absolute;
	z-index: 22;
	width: 150px;
	/*border: none;*/
	border-top:1px solid #7592b7;
}
.nav LI LI {
	width: 150px;
	font-weight:normal;
	border-left: none;
	background-color: #94acca;
	border-top: 1px solid #FFFFFF;
}
.nav LI LI.first {
	border-left: none;
	border-top: none;
	margin-left:0;
}
.nav UL UL LI A {
	display: block;
}
.nav LI LI UL {
	position: absolute;
	z-index: 33;
	top: 5px;
	width: 150px;
	margin-left: 150px;
	list-style: none;
	background-color: transparent;
	border-top: none;
	border-bottom: 1px solid #7592b7;
	line-height: 1; 
}
.nav LI LI A SPAN.childBullet {
	/* show the child bullet for the dropdowns */
	display:block;
}

/* SHOW/HIDE LEVELS ****************************************** */
/* level 1 */
.nav LI UL {
	display: none;
}
.nav LI:hover UL,
.nav LI.over UL {
	float: left;
	display: block;
}
/* level 2, 3 and 4 */
.nav LI LI UL {
	display: none !important;
}
.nav LI LI:hover UL,
.nav LI LI.over UL {
	display: block !important;
}
/* level 5 */
.nav LI LI:hover LI UL,
.nav LI LI.over LI UL {
	display: none !important;
}
.nav LI LI LI:hover UL,
.nav LI LI LI.over UL {
	/* comment the below out
	to turn off level 5 */
	display: block !important;
}
/* level 6 */
.nav LI LI LI:hover LI UL,
.nav LI LI LI.over LI UL {
	display: none !important;
}
.nav LI LI LI LI:hover UL,
.nav LI LI LI LI.over UL {
	/* comment the below out
	to turn off level 5 */
	display: block !important;
}
