/** Price of Sprawl menu

***  Nav colors ***********

----- initial nav bar
acb8e6 = Gradient - dark
e6e9ff = Gradient - light (off-white)
c2cbf2 = Middle - solid background
7d87b2 = Dark border
001580 = Dark text (inactive)

----- hover
d9e0ff = lighter back
Gradient reverses

----- drop-down
d9e0ff = lighter back for hover link
c2cbf2 = Middle - solid background
gradient only on hover
e6e9ff = off-white borders

*************************/

/* Reset link styles from main css style sheet 
take underlines & outlines off, and make visited color the same as unvisited */
nav a { color: #001580; text-decoration: none; }
nav a:visited { color: #001580; text-decoration: none; }
nav a:hover { color: #0055FF; text-decoration: none; }
nav a:focus { outline: none;}
nav {list-style: none;}


nav {
	height: 29px;
	margin: 20px 0;
	background: #c2cbf2;
	/* gradient goes dark to light in mozilla, light to dark in webkit  */
	background: -moz-linear-gradient(100% 100% 90deg, #acb8e6, #e6e9ff);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#e6e9ff), to(#acb8e6));
	border: 1px solid #7d87b2;
}

nav.rounded {
	-o-border-radius: 5px; 
	-icab-border-radius: 5px; 
	-khtml-border-radius: 5px; 
	-moz-border-radius: 5px;  
	-webkit-border-radius: 5px;
/* added this for ie9 - here and nav.rounded .menu  */
	border-radius: 5px;
}

nav li {
	float: left;
	display: block;
	border-left: 1px solid #ffffff;
	border-right: 1px solid #7d87b2;
}

nav li:first-child {
	border-left: none;
}

nav li a {
	float: left;
	display: block;
	color: #001580;
	padding: 6px 14px;
	border-bottom: 1px solid #7d87b2;
	text-decoration: none;
	text-shadow: 0 1px 1px #fff;
}

nav li a:hover {
	background: #d9e0ff; 
	background: -moz-linear-gradient(100% 100% 90deg, #e6e9ff, #acb8e6);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#acb8e6), to(#e6e9ff));
}

nav li.drop,
nav li.drop li {
	position: relative;
}

nav li.drop a {
	padding-right: 30px;
}

nav ul > li.drop {
	background: url(../images/arrows/b_arrow_down.png) no-repeat right;
}

nav ul > li.drop > a:hover,
nav ul > li.drop:hover > a {
	position: relative;
	background: #d9e0ff;
	background: url(../images/arrows/b_arrow_down.png) no-repeat right, -moz-linear-gradient(100% 100% 90deg, #e6e9ff, #acb8e6);
	background: url(../images/arrows/b_arrow_down.png) no-repeat right, -webkit-gradient(linear, 0% 0%, 0% 100%, from(#acb8e6), to(#e6e9ff));
}

nav ul li.drop li.drop,
nav ul > li.drop li.drop:hover > a {
	background: url(../images/arrows/b_arrow_right.png) no-repeat right;
}

nav ul > li.drop li.drop:hover > a {
	background: #d9e0ff;
	background: url(../images/arrows/b_arrow_down.png) no-repeat right, -moz-linear-gradient(100% 100% 90deg, #e6e9ff, #acb8e6);
	background: url(../images/arrows/b_arrow_down.png) no-repeat right, -webkit-gradient(linear, 0% 0%, 0% 100%, from(#acb8e6), to(#e6e9ff));
}

nav li .menu {
	display: none;
}

nav li:hover .menu,
nav li .menu ul {
	width: 220px;     /* width of primary drop-down. orig = 180 */
	background: #c2cbf2;  /* no gradient on drop-down menu until hover */
	border-left: 1px solid #e6e9ff;
	border-right: 1px solid #e6e9ff;
	border-bottom: 1px solid #e6e9ff;
	z-index: 999;
}

nav li:hover .menu {
	display: block;
	position: absolute;
	top: 29px;
}

nav li:hover .menu ul {
	display: none;
}

nav li.drop li.drop:hover ul {
	display: block;
}

nav li .menu ul {
	position: absolute;
	top: -1px;
	left: 259px;    /* position of secondary drop-down must be 1px less than width of primary drop-down, to start at right edge */
}

nav.rounded .menu,
nav.rounded .mega-menu {
	-o-border-radius-bottomleft: 5px; 
	-icab-border-radius-bottomleft: 5px; 
	-khtml-border-radius-bottomleft: 5px; 
	-moz-border-radius-bottomleft: 5px;  
	-webkit-border-radius-bottomleft: 5px;
	-o-border-radius-bottomright: 5px; 
	-icab-border-radius-bottomright: 5px; 
	-khtml-border-radius-bottomright: 5px; 
	-moz-border-radius-bottomright: 5px;  
	-webkit-border-radius-bottomright: 5px;
/* added this for ie9 - here and nav.rounded, above  */
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

nav .menu li {
	float: none;
	border-right: none !important;
}

nav .menu a,
nav#dark menu a {
	display: block;
	float: none;
	border-bottom: 0;
}

nav .menu li {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #7d87b2;
}


/* unneeded **********************

altered these borders on end of nav bar and last drop-down item

nav .menu li:last-child {
	[disabled]border-bottom: none; 
	 so it shows up against the background elements better
}

nav li:last-child,
nav#dark li:last-child {
	[disabled]border-right: none; 
	Otherwise, the bottom border ends before the nav bar ends, for no reason
}

-----------------------
Dark Style

nav#dark li {
	border-left: 1px solid #666;
	border-right: 1px solid #000;
}

nav#dark {
	background: #333;
	background: -moz-linear-gradient(100% 100% 90deg, #333, #666);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#666), to(#333));
	border: 1px solid #000;
}

nav#dark li a {
	color: #ccc;
	border-bottom: 1px solid #000;
	text-shadow: 0 1px 1px #000;
}

nav#dark li a:hover {
	background: #025d8c;
	background: -moz-linear-gradient(100% 100% 90deg, #003f5f, #025d8c);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#025d8c), to(#003f5f));
}

nav#dark li:hover .menu,
nav#dark li .menu ul {
	background: #333;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}

nav#dark .menu li {
	border-top: 1px solid #777;
	border-bottom: 0;
}

nav#dark ul > li.drop {
	background: url(../images/arrows/l_arrow_down.png) no-repeat right;
}

nav#dark ul > li.drop > a:hover,
nav#dark ul > li.drop:hover > a {
	position: relative;
	background: url(../images/arrows/l_arrow_down.png) no-repeat right #000;
	background: url(../images/arrows/l_arrow_down.png) no-repeat right, -moz-linear-gradient(100% 100% 90deg, #003f5f, #025d8c);
	background: url(../images/arrows/l_arrow_down.png) no-repeat right, -webkit-gradient(linear, 0% 0%, 0% 100%, from(#025d8c), to(#003f5f));
}

nav#dark ul li.drop li.drop,
nav#dark ul > li.drop li.drop:hover > a {
	background: url(../images/arrows/l_arrow_right.png) no-repeat right;
}

nav#dark ul > li.drop li.drop:hover > a {
	background: url(../images/arrows/l_arrow_down.png) no-repeat right #000;
	background: url(../images/arrows/l_arrow_right.png) no-repeat right, -moz-linear-gradient(100% 100% 90deg, #003f5f, #025d8c);
	background: url(../images/arrows/l_arrow_right.png) no-repeat right, -webkit-gradient(linear, 0% 0%, 0% 100%, from(#025d8c), to(#003f5f));
}


--------------------------------
Mega Menu
==============================================================================

nav h3 {
	font-size: 18px;
	line-height: 1.2em;
}

nav .singlecol,
nav .twocol,
nav .threecol {
	margin: 0 24px 0 0;
}

nav .singlecol.last,
nav .twocol.last,
nav .threecol.last {
	margin: 0;
}

nav .singlecol {
	width: 182px;
}

nav .twocol {
	width: 364px;
}

nav .mega-menu.twocol {
	width: 388px;
}

nav .threecol {
	width: 549px;
}

nav .mega-menu.threecol {
	width: 594px;
}

nav .fourcol {
	width: 800px;
}

nav li .mega-menu {
	display: none;
}

nav li:hover .mega-menu {
	padding: 24px;
	background: #eee;
	background: -moz-linear-gradient(100% 100% 90deg, #dfdfdf, #eee);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eee), to(#dfdfdf));
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	z-index: 999;
}

nav#dark li:hover .mega-menu {
	background: #333;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}

nav li:hover .mega-menu {
	display: block;
	position: absolute;
	top: 29px;
}

nav li .mega-menu li.heading {
	text-transform: uppercase;
	margin-bottom: 8px;
	text-shadow: 0 1px 1px #fff;
}

nav#dark li .mega-menu li.heading {
	color: #ccc;
	text-shadow: 0 1px 1px #000;
}

nav li .mega-menu li,
nav li .mega-menu li a,
nav#dark li .mega-menu li,
nav#dark li .mega-menu li a {
	float: none;
	background: none;
	border: none;
}

nav li .mega-menu li a {
	border-bottom: 1px solid #ccc;
}

nav#dark li .mega-menu li a {
	border-bottom: 1px solid #000;
}

nav li .mega-menu li a:hover {
	border-bottom: 1px solid #fff;
}

nav#dark li .mega-menu li a:hover {
	border-bottom: 1px solid #666;
}

nav .mega-menu iframe {
	border: 1px solid #ccc;
}

     Floats
=============================================

nav .left {
	float: left;
}

nav .right {
	float: right;
}
=========================================
*/
