/* HORIZONTAL FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist{
	width:934px;
	margin:0 auto;
	position:relative;
	z-index:3;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 	display:none;
 	position:absolute;
 	top:46px;
 	left:0;
 	width:130px;
 	padding:10px 28px 10px 14px;	
 	z-index:10;
 	border:solid 1px #cdcdcd;
 	border-top:none;
 	background:#f2f1f1;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 	top:0;
 	margin-top:0;
 	left:92px;
}

/*
 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;
	list-style:none; 	
}

.menulist li a{
	display:block;
	float:left;
	height:46px;
	text-indent:-9999px;
}

.menulist li a.home {width:61px; background:url(../images/btnHome.jpg) no-repeat;}
.menulist li a.services {width:89px; background:url(../images/btnServices.jpg) no-repeat;}
.menulist li a.hire {width:144px; background:url(../images/btnHire.jpg) no-repeat;}
.menulist li a.pricing {width:80px; background:url(../images/btnPricing.jpg) no-repeat;}
.menulist li a.green {width:124px; background:url(../images/btnGreen.jpg) no-repeat;}
.menulist li a.specials {width:90px; background:url(../images/btnSpecials.jpg) no-repeat;}
.menulist li a.test {width:127px; background:url(../images/btnTest.jpg) no-repeat;}
.menulist li a.news {width:67px; background:url(../images/btnNews.jpg) no-repeat;}
.menulist li a.links {width:62px;background:url(../images/btnLinks.jpg) no-repeat;}
.menulist li a.contact {width:90px; background:url(../images/btnContact.jpg) no-repeat;}
.menulist li a:hover, body.home .menulist li a.home, body.services .menulist li a.services, body.before-you-hire .menulist li a.hire, body.pricing .menulist li a.pricing, body.going-green .menulist li a.green, body.specials .menulist li a.specials, body.testimonials .menulist li a.test, body.news .menulist li a.news, body.category .menulist li a.news, body.links .menulist li a.links, body.contact .menulist li a.contact {background-position:0 -46px !important;}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */

.menulist ul li{
	width:175px;
	height:26px;
 	float:none;
 	width:auto;
 	margin:0;
 	padding:2px 0;
 	background:url(../images/bgSubMenuBullet.gif) top repeat-x;
}

.menulist ul li.top{
	background:none;
}

/* Links inside the menu
.menulist a {
	font-size:18px;
 	display:block;
 	padding: 3px;
 	color:#FFF;
 	text-decoration:none;
} */

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 	color:#FFF;
 	background-color:#A64;
}
.menulist a.highlighted {
 	color:#FFF;
 	background-color:#C86;
}*/
.menulist a.highlighted{background-position:0 -46px !important;} 

.menulist ul li a{
	width:135px;
	text-indent:0;
	height:26px;
	line-height:26px;
	color:#5a827a;
	padding:3px 0 0 8px;
	font-size:11px !important;
	text-decoration:none;
	text-transform:uppercase;
}

.menulist ul li a:hover{
     color:#FFF;
     background:#5a827a;
}


/* Only style submenu indicators within submenus. */
.menulist a .subind {
 	display:none;
}
.menulist ul a .subind {
 	display:none;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 	float:left;
}
.menulist ul a {
 	float:none;
}
/* \*/
.menulist a {
 	float:none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
.menulist ul li {
 	float:left;
 	width:100%;
}

.menulist ul li {
 	float:left;
 	height:1%;
}
.menulist ul a {
 	height:1%;
}
/* End Hacks */