/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 1.0em; margin-top: 13px; /* Im using ems and px to allow people to zoom their font */
	left: 0px;
	width: 150px;
	border:1px solid #878787;
	background:#FFF;
	z-index:100;/*set to force drop menu to display on top of everything*/
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: 0; margin-top: 0;
	left: 148px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
	float: left;
	display: block;
	position: relative;	
	margin:0;padding:0;
}



/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
}

/* Links inside the menu */

.menulist a:link, .menulist a:visited {
	display: block;
	padding:5px 20px 4px 20px;
	text-decoration: none;
	color:#083105;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #030002;
	background-color:#51b948;
}
.menulist a.highlighted {
	color: #030002;
	background-color: #51b948;
}
/* Only style submenu indicators within submenus.
.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
} */

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
}
.menulist ul a {
 float: none;
}
/* \*/
.menulist a {
	float: none;
}
/* */
/*Service and Project submenus*/
ul.submenu{
	width:200px;
}
ul.submenu, ul{
	list-style-type:none;
	margin:0;
}
ul.submenu li{
	/*background:#51b948;
	color:#17242d;*/
	padding:0;
	margin:0 0 20px 0;
}
ul.submenu li a{
	color:#17242d;
	text-decoration:none;
	padding:4px 10px 4px 20px;
	display:block;
	font-weight:bold;
	text-transform:uppercase;
	/*background:#51b948 url(../assets/gfx/arrow.gif) no-repeat 5px 6px;*/
	cursor:pointer;
}
ul.submenu li a:link, ul.submenu li a:visited{
	color:#17242d;
	text-decoration:none;
}
ul.submenu li a:hover, ul.submenu li a.active{
	color:#17242d;
	/*background:#a7d59e url(../assets/gfx/arrow.gif) no-repeat -285px 6px;*/
}

/*Service Menu*/
ul#service-menu{
	position:absolute;
	left:-30px;
	top:30px;
}
ul#service-menu li{
	
}
ul#service-menu span{
	text-transform:none;
	font-size:95%;
	display:block;
	font-weight:normal;
	height:34px;
}
ul#service-menu li a:link, ul#service-menu li a:visited{
	background: url(../assets/gfx/servicebutton.gif) no-repeat left top;/*rounded button*/
}
ul#service-menu li a:hover{
	background-position:left bottom;
}
/*Project Menu*/
ul#project-menu{
	position:absolute;
	right:-30px;
}
ul#project-menu li{
	background:none;
}

ul#project-menu ul{
	margin-left:20px;
}
ul#project-menu ul li{
	margin:0;
	background:none;
	color:#fff;
}
ul#project-menu li a{
	background: url(../assets/gfx/projectbutton.gif) no-repeat left top;/*rounded button*/
}
ul#project-menu li a:hover, ul#project-menu li a.active{
	background-position:left bottom;
}
ul#project-menu ul li a{
	font-weight:normal;
	border:0;
	background:none;
	cursor:pointer;
	color:#fff;
	text-align:left;
	margin:0;
	padding:0;
	text-transform:none;
}

ul#project-menu ul li a.active{
	font-weight:bold;
	color:#a7d59e
}
ul#project-menu ul li a:hover, ul#project-menu ul li a.highlighted:hover, ul#project-menu ul li a:focus {
	color: #51b948;
}