@charset "UTF-8";
/* MENU */

#nav {
	/* background: #e5e5e5; removed 6/14/14*/
	float: right;
	margin: 0; padding: 0;
	/* border: 1px solid white;
	border-bottom: none; These properties removed 8/25/13 */
	/* Below properties added 7/28/13 */
	/*width:100%; Removed 8/11/13*/
	/* background-color:#900; removed 6/14/14
	background: -moz-linear-gradient(top, black, #3c3c3c 1px, #292929 25px); removed 6/14/14 */
	/* background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #c3c3c3), to(#900)); removed 6/14/14 */
}

#nav li a, #nav li {
	float: left;
}

#nav li {
	list-style: none;
	position: relative;
	line-height:1em; /* Added 8/28/13 */
}

#nav li a {
	padding: 1em 2em;
	text-decoration: none;
	font-size:14px;
	color: white;
	/*background: #292929; Rmoved 12/27 */
	/*background: -moz-linear-gradient(top, black, #3c3c3c 1px, #292929 25px); Removed 12/27
	background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #c3c3c3), to(#900)); Removed 12/27 */ 
	/*background: -webkit-gradient(linear, left top, left 25, from(black), color-stop(4%, #3c3c3c), to(#292929));*/
	/*background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0.29, #3A7873),
	color-stop(1, #269E96)
);
	background-image: -o-linear-gradient(bottom, #3A7873 29%, #269E96 100%);
	background-image: -moz-linear-gradient(bottom, #3A7873 29%, #269E96 100%);
	background-image: -webkit-linear-gradient(bottom, #3A7873 29%, #269E96 100%);
	background-image: -ms-linear-gradient(bottom, #3A7873 29%, #269E96 100%);
	background-image: linear-gradient(to bottom, #3A7873 29%, #269E96 100%); */
	
	/*
	background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0.29, #22B9E3),
	color-stop(1, #058DF5)
	);
	background-image: -o-linear-gradient(bottom, #22B9E3 29%, #058DF5 100%);
	background-image: -moz-linear-gradient(bottom, #22B9E3 29%, #058DF5 100%);
	background-image: -webkit-linear-gradient(bottom, #22B9E3 29%, #058DF5 100%);
	background-image: -ms-linear-gradient(bottom, #22B9E3 29%, #058DF5 100%);
	background-image: linear-gradient(to bottom, #22B9E3 29%, #058DF5 100%);
	REMOVED 6/14/14
	*/ 
	/*border-right: 1px solid #3c3c3c;
	border-left: 1px solid #292929;
	border-bottom: 1px solid #232323;
	border-top: 1px solid #545454; */
	border-right:1px solid white;
}
#nav > li a { /* Added 8/24/13 */
border-top:none;	 /* Added 8/24/13 Removes the top border on ONLY the top level nav links. This could also be */
					 /* Accomplished by NOT declaring a top border in the above rule (which targets ALL links in the menu */
					 /* system, and instead using a selector like #nav li ul li a to target ONLY the sublevel links */
					 /* and give them the top border NOTE: (8/25/13) THIS DOES NOT WORK - IT ACTUALLY TARGETS ALL NAV LINKS */
}
#nav li a:hover {
	/*background: #2a0d65;
	background: -moz-linear-gradient(top, #11032e, #2a0d65);
	background: -webkit-gradient(linear, left top, left bottom, from(#11032e), to(#2a0d65)); */
	
}
#nav li a.highlighted { /* Selector MUST be specific in order to override the original background!! */
	background: #2a0d65;
	background: -moz-linear-gradient(top, #11032e, #2a0d65);
	background: -webkit-gradient(linear, left top, left bottom, from(#11032e), to(#2a0d65));
}


/* Submenu */

.hasChildren {
    position: absolute;
    width: 5px; height: 5px;
    background: black;
    right : 0;
    bottom: 0;
}

#nav li ul {
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	padding: 0; margin: 0;
}

#nav li:hover > ul {
	display: block;
}

#nav li ul li, #nav li ul li a {
	float: none;
}

#nav li ul li {
	_display: inline; /* for IE6 */
}

#nav li ul li a {
	width: 150px;
	display: block;
}

/* SUBSUB Menu */

#nav li ul li ul {
	display: none;
}

#nav li ul li:hover ul {
	left: 100%;
	top: 0;
}


#nav li ul 
