/* There is a version of this file commented in great detail for educational purposes here:
 * http://users.tpg.com.au/j_birch/plugins/superfish/superfish.commented.css
 */

/*** ESSENTIAL STYLES ***/
.nav, .nav * {
	margin:0;
	padding:0;
	list-style:none;
}
.nav {
	line-height:1.0;
}
.nav ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 150px;
	position: absolute;
	left: -1000em;
}
.nav ul li,
.nav a {
	/*width: 100%;*/
}
.nav li {
	float:left;
	position:relative;
	z-index:99;
}
.nav a {
	display:block;
}
.nav li:hover ul,
ul.nav li.sfHover ul {
	left: 0px;
	top: 42px;
}
.nav li:hover li ul,
.nav li.sfHover li ul {
	top:-999em;
}
.nav li li:hover ul,
ul.nav li li.sfHover ul {
	left:150px;
	top:5px;
	border-left: solid 1px #f0f0f0;
}
.superfish li:hover ul,
.superfish li li:hover ul {
	top: -999em;
}

/*** SKIN ***/
.nav {
	float:left !important;
	float:none;
	list-style-type: none;
	cursor: default;
	font: bold 12px Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	background: url(../images/nav_bg.gif) repeat-x center top;
	height: 42px;
	width: 960px;
	padding: 0 20px;

}
.nav li {
	margin: 0;
	padding: 0;
	line-height: 1em;
	list-style-type: none;
	font-size: 100%;
	cursor: pointer;
	width: auto;
	float: left;
	position: relative;
}
.nav a {
	display: block;
	cursor: pointer;
	padding: 15px 18px;
	color: #FFFFFF;
	text-decoration: none;
	text-align: left;
	font-weight: normal;
	font-size: 13px;
	letter-spacing: .15em;
}
.nav a.current
{
	background: transparent url(../images/current.png) no-repeat center 30px;
	text-decoration: none; /* for some reason IE 6 needs me to repeat this. */
}

.nav li:hover, .nav li.sfHover,
.nav a:focus, .nav a:hover, .nav a:active {
	background: url(../images/nav_bg_over.gif) repeat-x;
	color: #FFF;
	text-decoration: none; /* for some reason IE 6 needs me to repeat this. */
}


.nav li li a {
	background-image: none; /* Clear background img from submenus  */
	background-color: #616161;
	width: 120px;
	line-height: 1.1em;
	font-size: 11px;
	letter-spacing: normal;
	padding: 8px 15px;
}
.nav li li a:hover {
	background:#5496b3 url(../images/nav_bg_over.gif) repeat-x  center 10px;
}

/* ROUND THE BOTTOM NAV ELEMENTS */
.nav li li.last { /* NOTE: changed in ie-styles.css */
	background: url(../images/nav_round_bl.png) no-repeat left bottom;
}
.nav li li.last a { /* NOTE: changed in ie-styles.css */
	background: url(../images/nav_round_br.png) no-repeat right bottom;
}
.nav li li:hover.last { /* NOTE: changed in ie-styles.css */
	background: url(../images/nav_round_bl_over.png) no-repeat  left bottom;
}
.nav li li.last a:hover { /* NOTE: changed in ie-styles.css */
	background: url(../images/nav_round_br_over.png) no-repeat  right bottom;
}


/*** arrows **/
.sf-menu a.sf-with-ul {
	min-width:		1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:		absolute;
	display:		block;
	right:			7px;
	top:			8px; /* IE6 only */
	width:			10px;
	height:			10px;
	text-indent: 	-999em;
	overflow:		hidden;
	background:		url('/v2/images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
	top:			8px;
	background-position: 0 -100px; /* use translucent arrow for modern browsers*/
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position: -10px -100px; /* arrow hovers for modern browsers*/
}

/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position:  -10px 0; }
.sf-menu ul a > .sf-sub-indicator { background-position:  0 0; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position: -10px 0; /* arrow hovers for modern browsers*/
}

