/*
*************************************************

file : horizontal.css
client : Webfirm
author : Karl Brightman
date created : 9th May 2007

*************************************************
*/

ul#nav {list-style:none; margin: 0;	padding: 0;}
ul#nav li {float:left; margin-bottom : -1px; position : relative; /* required - used to position subs */}
ul#nav li a {display:block;height:50px;}
ul#nav li a:hover {background-position:0 -50px!important;}

/* images */
#home {background:url(../images/nav/home.gif) no-repeat 0 0; width:68px;} 
#treatments {background:url(../images/nav/treatments.gif) no-repeat 0 0; width:182px;} 
#products {background:url(../images/nav/products.gif) no-repeat 0 0; width:84px;} 
#ipl {background:url(../images/nav/IPL.gif) no-repeat 0 0; width:60px;} 
#giftvouchers {background:url(../images/nav/giftvouchers.gif) no-repeat 0 0; width:177px;} 
#contact {background:url(../images/nav/contact.gif) no-repeat 0 0;width:93px;} 




#nav li ul {
	/* second level subs */
	left: -9999em;
	position : absolute; /* required - positions subs in parent list item */
	list-style:none;
	margin-left: 0px;
}

#nav li ul ul {
	left: -9999em;
	margin-left: 201px; /* position sub to right of parent */
	top: 50px;
	z-index:100;
}

#nav li a {
	display : block;
	height: 50px;
	overflow: hidden;
	text-decoration : none;
	text-indent: -999px;

}	
#nav li a:hover { background-position: 0 -30px !important;}	

#nav li ul a {
	background-color: #c08d9d;
	border: 1px solid #FFF;
	color: #FFF;
	display: block;
	font-size: 12px;
	height: auto;
	text-decoration: none;
	text-indent: 0;
	padding: 5px;
	width: 190px; 
}	

#nav li ul a:hover { background-color: #c7b2b8; color: #811c3c; }	

/* hasSub style used to a tags which have subs - used only to make it look good and not required */
#nav li ul a.hasSub { background: #fff url(../images/arrow_right_black.gif) no-repeat 95% 50% !important; }
#nav li ul a.hasSub:hover { background: #f6eade url(../images/arrow_right_orange.gif) no-repeat 95% 50% !important; }

/* hide subs on current list */
#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -9999em;
}

/* show subs on hover */
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
