/*-------------------------------------------------------------------------
UNIQUE FORMATTING FOR NAV CONTAINER
-------------------------------------------------------------------------*/
#nav{
	width: 954px;
	height: 1%;
	padding: 0 0 12px 0;
	margin: 0 auto 31px auto;
	border-bottom: 1px solid #9DA3D1;
}




/*-------------------------------------------------------------------------
BASIC SET UP - PROBABLY WILL NOT MODIFY
-------------------------------------------------------------------------*/
#nav ul,
#nav ul li,
#nav ul li a{
	display: block;
	margin: 0;
	padding: 0;
}
#nav ul{
	list-style-type: none;
	height: 1%;
}
#nav ul ul{
	height: auto !important;
}
#nav ul li{
	float: left;
}
#nav li li{
	width: 100%;
}

/*----------------------------------------------------------
Code that makes the submenu disappear and reappear
----------------------------------------------------------*/
#nav li ul {
	position: absolute;
	left: -999em;
}

/*Needed for sub sublinks*/
#nav ul,
#nav ul ul{
	line-height: 1;
}

/*
What I did below was confine the “left:auto” property to only be 
applied to the UL tag one level below the LI tag being hovered 
on by using the CSS Child selector “>”. The second selector is 
for those annoying browsers that aren't up to speed with CSS2 (i.e. < IE7).
*/
#nav li:hover > ul{ 
	left: auto;
}
#nav li.sfhover ul {
	left: auto;
}

/* Fix IE crazy menu stuff */
#nav li:hover {
	position: static;
}

#nav li:hover ul ul,
#nav li.sfhover ul ul {
	left: -999em;
}
#nav li:hover ul,
#nav li li:hover ul,
#nav li.sfhover ul,
#nav li li.sfhover ul { 
	left: auto;
}

#sfhover_iframe{
	z-index: 2;
	position: absolute;
	display: none;
}

#nav ul{
	z-index: 3;
}



/*-------------------------------------------------------------------------
FORMATTING FOR MAIN LINKS
-------------------------------------------------------------------------*/
#link1, #link2, #link3, #link4, #link5, #link6, #link7{
	border-right: 1px solid #2A369A;
}
#link7{
	border-right: none !important;
}
#nav li a{
	display: block;
	padding: 6px 15px !important;
}
#nav li:hover,
#nav li.sfhover{
	background-color: #E9EBF5;
}



/*-------------------------------------------------------------------------
FORMATTING FOR APPEARANCE OF SUBNAVS
-------------------------------------------------------------------------*/
/*font treatments*/
#nav ul li li a{
	font-weight: normal;
	font-size: 11px;
	text-align: left;
	display: block;
	margin: 0;
	padding: 6px 15px !important;
}
#nav ul li li a:link,
#nav ul li li a:visited,
#nav ul li li a:hover,
#nav ul li li a:active{
	color: #2A369A;
	text-decoration: none;
}

/*border around sublink container*/
#nav ul ul{
	background-color: #C784FF;
	padding: 0;
	border: 0;
}
/*Sublink Background color and amt of space dividing each*/
#nav li li{
	background-color: #E9EBF5;
	margin: 0;
}
/*Sublink Rollover Background color*/
#nav li li:hover,
#nav li li.sfhover{
	background-color: #D4D7EB;
}


/*-------------------------------------------------------------------------
WIDTHS FOR EACH SUBNAV & POSITIONING OF SUB-SUBNAV
-------------------------------------------------------------------------*/
#link1 ul,
#link3 ul,
#link5 ul{
	width: 145px;
}


#link1 li ul,
#link3 li ul,
#link5 li ul{
	margin-top: -29px;
}
