@charset "UTF-8";

/* Colors
Pale blue: rgb(207,233,247) 
Light blue: rgb(0,155,201)
Mid blue: rgb(54,115,159)
Dark blue: rgb(26,55,77)
Green: rgb(140,198,63)
Grey: #666666
Pale pink: rgb(251,223,235)
Pink: rgb(236,0,140)

/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/dd_valid.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* common styling */
.menu {
	font-family: arial, sans-serif; 
	height:35px; 
	position:relative; 
	font-size:12px; 
	z-index:100;
	/* background:rgb(0,155,201); */
	background: #009BC9;
	padding-left:40px; 
	-moz-border-radius-topright: 15px;
	-moz-border-radius-topleft: 15px;
	-webkit-border-top-right-radius: 15px;
	-webkit-border-top-left-radius: 15px;
	}
.menu ul li a, .menu ul li a:visited {
	display:block; 
	text-decoration:none; 
	color:#000;
	padding:0 10px 0 10px;
	height:34px; 
	text-align:left; 
	color:#fff; 
	/*border:1px solid #fff;*/
	background:rgb(0,155,201); 
	line-height:37px; 
	font-size:12px; 
	overflow:hidden;
	}
.menu ul li a.active {
	color: rgb(26,55,77);
}
.menu ul {
	padding:0; 
	margin:0; 
	list-style: none;
		}
	
.menu ul li {
	float:left; 
	position:relative;
	text-transform:uppercase;
	}
.menu ul li ul {
	display: none;
	margin:13px 0 0 0;
}

/* specific to non IE browsers */
.menu ul li:hover a {
	color:rgb(26,55,77);
	text-decoration:none;
	
}
.menu ul li:hover ul {
	display:block; 
	position:absolute; 
	top:21px; 
	left:0; 
	width:105px;
}
.menu ul li:hover ul li a.hide {
	background:rgb(0,155,201); 
	color:#fff;
}
.menu ul li:hover ul li:hover a.hide {
	background:rgb(0,155,201); 
	color:#000;
}
.menu ul li:hover ul li ul {
	display: none;
}
.menu ul li:hover ul li a {
	display:block; 
	background:rgb(0,155,201); 
	color:white;
	text-decoration: none;
	width:155px;
	border-top:white solid 1px;
	height:25px;
	padding:0px 0 7px 10px;
	}
.menu ul li:hover ul li a:hover {
	background:rgb(0,155,201); 
	color:#000;
	text-decoration:none;
}
.menu ul li:hover ul li:hover ul {
	display:block; 
	position:absolute; 
	left:105px; 
	top:0;
}
.menu ul li:hover ul li:hover ul.left {
	left:-105px;
}
.icons {
	float: left; 
	margin: 5px 0 0 117px;
}
