/*-------------------------------------------------------------------------
UNIQUE FORMATTING FOR NAV CONTAINER
-------------------------------------------------------------------------*/
#small-nav{
	padding: 5px 0 5px 250px;
	margin: 0;
}




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

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

/*Needed for sub sublinks*/
#small-nav ul,
#small-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).
*/
#small-nav li:hover > ul{ 
	left: auto;
}
#small-nav li.sfhover2 ul {
	left: auto;
}

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

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

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

#small-nav ul{
	z-index: 3;
}



/*-------------------------------------------------------------------------
FORMATTING FOR MAIN LINKS
-------------------------------------------------------------------------*/
#small-nav ul li a{
	font-weight: normal;
	font-size: 11px;
	display: block;
	margin: 0;
	padding: 6px 10px;
}
#small-nav ul li a:link,
#small-nav ul li a:visited,
#small-nav ul li a:hover,
#small-nav ul li a:active{
	color: #000000;
	text-decoration: none;
}
#small-link1, #small-link2, #small-link3{
	border-right: 1px solid #000000;
}
#small-nav li:hover,
#small-nav li.sfhover2{
	background-color: #C2C8D5;
}




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

/*border around sublink container*/
#small-nav ul ul{
	background-color: #C2C8D5;
	padding: 2px 3px 3px 3px;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
}
/*Sublink Background color and amt of space dividing each*/
#small-nav li li{
	background-color: #DADFEA;
	margin: 1px 0 0 0;
}
/*Sublink Rollover Background color*/
#small-nav li li:hover,
#small-nav li li.sfhover2{
	background-color: #EBEEF4;
}

/*Sub-Sublink Background color and amt of space dividing each*/
#small-nav li li li{
	background-color: #EBEEF4;
}
/*Sub-Sublink Rollover Background color*/
#small-nav li li li:hover,
#small-nav li li li.sfhover2{
	background-color: #FFFFFF;
}

/*-------------------------------------------------------------------------
WIDTHS FOR EACH SUBNAV & POSITIONING OF SUB-SUBNAV
-------------------------------------------------------------------------*/
#small-link2 ul{
	width: 125px;
}
/*This is used for sub sub link positioning*/
#small-link2 li ul{
	margin-left: 125px;
}

#small-link2 li ul,
#small-link3 li ul,
#small-link4 li ul{
	margin-top: -26px;
}

/*-------------------------------------------------------------------------
ARROWS BESIDE SUBLINKS WITH SUB-SUBLINKS
-------------------------------------------------------------------------*/
.nav-arrow{
	background-image: url(/images/nav/arrow.gif);
	background-repeat: no-repeat;
	background-position: right center;	
}
