/* ================================================================ 
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 {
	margin: 0 0 0 0;
	width:870px;
	font-size:11px;
	font-weight: 100;
	display: inline;
	float: left;
	position:relative;
	z-index:2;
}

/* 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;
	width: 200px;
}

.menu li#about { width: 89px; }
.menu li#prod { width: 92px; }
.menu li#gal { width: 83px; }
.menu li#tech { width: 95px; }
.menu li#down { width: 107px; }
.menu li#new { width: 73px; }
.menu li#dist { width: 112px; }

/* style the links for the top level */
.menu a, .menu a:visited {

	font-size:11px;
	text-decoration:none; 
	color:#fff; 
	width:139px; 
	height:30px; 
	background:#758279;  
	line-height:5px; 
	display:block;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	width: 200px;
	w\idth: 200px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #4d4449 url(../images/border.gif) bottom  left repeat-x ;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background: #a1a1a1 url(../images/border.gif) bottom  left repeat-x ;
}
.menu ul ul :hover > a.drop {
	background: #a1a1a1;
}

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #4d4449 url(../images/border.gif) bottom  left repeat-x ;
}
/* style the third level hover */
.menu ul ul ul a:hover {
	background: #a1a1a1 url(../images/border.gif) bottom  left repeat-x ;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	margin-top: 24px;
	width: 200px;
	height: 0;
	visibility: hidden;
	position: absolute;
	top: 5px;
	left: 0;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 5px;
	t\op: 5px;
}

/* position the third level flyout menu */
.menu ul ul ul{
	margin: 0;
	width: 200px;
	left: 200px; 
	position: absolute;
	top: 0;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left: -200px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table {
	position: absolute;
	top: 0;
	left: 0;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	padding: 8px 10px; 
	width: 200px;
	height: auto;
	line-height: 1em;
	color: #ffffff;
	background: #4d4449 url(../images/border.gif) bottom  left repeat-x ;
}

/* yet another hack for IE5.5 */
* html .menu ul ul a{
	width: 200px;
	w\idth: 200px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{
	color: #ffffff; 
	background: #a1a1a1;
	background: #a1a1a1 url(../images/border.gif) bottom  left repeat-x;
}
.menu :hover > a, .menu ul ul :hover > a {
	color: #ffffff;
	background: #a1a1a1;
}

/* 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: #4d4449;
}