#nav2Holder{
	background-image: url(../images/nav_2_tile.jpg);
	background-repeat: repeat-x;
	border-left: #fff solid 24px; /* Left and right margins. Margins didn't go across smoothly cross browser*/
	border-right: #fff solid 24px;
}
#nav2, #nav2 ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	font-weight:bold;
	line-height:36px; /* only applies to first level, height of main nav ar */
	text-align:center;
	z-index:1001; /* menus on top*/
}
#nav2 {
	width:100%;
}
#nav2 a {/* Main Nav link formatting */
	color:#FFFFFF; /* link color*/
	text-decoration:none;
	display: block;
	width: 85px;/* Width of the main nav items */
}
#nav2 a.wide{/* Width of the larger main nav items */
	width:130px;
}
#nav2 li.end{/* Width of the last main nav item, hides right border */
	border-right:none;
}
#nav2 li { /* all list items */
	float: left;
	border-right: 1px solid #FFF; /* applies only to first level nav items*/
}
#nav2 li ul { /* second-level lists */
	position: absolute;
	background-color: #CCCCCC;
	padding: 2px 2px 1px 2px; /* bottom padding different to account for #nav2 li ul li margin-bottom */
	width: 144px; /*width of sub menus */
	left: -999em; /*display: none isn't read by screen readers, this is more accesible*/
	line-height:normal;
	text-align:left;
}
#nav2 li ul li {
	padding: 0px;
	height: auto;
	width: auto;
	display: block;
	background-image: url(../images/nav_2_tile.jpg);
	border: 1px solid white;
	margin-bottom:1px; /* gap in between menu items */
}
#nav2 li ul li a {
	display: block;
	height: auto;
	width:136px; /*width of sub menus minus 8 */
	padding: 3px;
}

#nav2 li ul li a:hover { /* format on dropdown menu item hover, background-color & color switch */
	display:block;
	text-decoration:none;
	color:#FFFFFF;
	background-image: url(../images/nav_2_tile.gif);
}
#nav2 li:hover ul, #nav2 li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
