/* ================================================================ 
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/final_drop.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.
=================================================================== */

.menu {
	/*position:relative;
	z-index: 3;*/
	
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

/*.menu ul ul {
	width: 200px;
}*/

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	position: relative;
}

.menu li#lHome {width: 62px; }
.menu li#lServ {width: 79px; }
.menu li#lSupp {width: 64px; }
.menu li#lShip {width: 81px; }
.menu li#lAbou {width: 84px; }
.menu li#lCont {width: 73px; }

.menu li#lShop {width: 68px; }


/* style the links for the top level */
.menu a, .menu a:visited, .menu a:hover {
	font-size:11px;
	text-decoration:none; 
	color: #bbdeff; 
	display: block;
	background: none;
}



/* a hack so that IE5.5 faulty box model is corrected */
/*
* html .menu a, * html .menu a:visited {
	width: 200px;
	w\idth: 200px;
}
*/


/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	width: 150px;
	height: 0;
	visibility: hidden;
	position: absolute;
	top: 35px;
	left: 10px;
	z-index: 99;
	
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 35px;
	t\op: 35px;	
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 99;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	padding: 2px 10px; 
	width: 150px;
	height: auto;
	color: #bbdeff;
	background: #0b212c;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a{
	width: 150px;
	w\idth: 150px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color: #bbdeff; 
	background: #0b212c;
	
}
.menu :hover > a, .menu ul ul :hover > a {
	color: #bbdeff;
	background: #0b212c;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul, .menu ul a:hover ul{
	visibility: visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul{
	visibility: hidden;
}

/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ 
	visibility: visible;
}

.menu ul ul li {
	margin: 0;
	padding: 0;
	background: #212421;
}
