@charset "UTF-8";

/* CSS Document */

/* ================================================================ 
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_drop2.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.
=================================================================== */

/* style the outer div to give it width */

.menu {
	position: absolute;
	left: 255px;
	top: 93px;
	width: 762px;
	line-height: 1px;
	font-size: 1px;
}

/* remove all the bullets, borders and padding from the default list styling */

.menu ul {
	margin: 0;
	list-style-type: none;
}

.menu ul ul a {
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 3px 5px rgba(0,0,0,0.7);
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

.menu ul li {
	float: left;
	position: relative;
	width: 254px;
}

.menu ul ul {
	width: 254px;
	height: 0;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 32px;
	z-index: 5;
	visibility: hidden;
	-webkit-transition: opacity 0.2s;
}

/* style the links for the top level */

.menu a {
	display: block;
	width: 253px;
	height: 32px;
	margin-right: 1px;
	border: none;
	border-width: 0;
}

/* style the first level links */

.menu ul a {
	height: 32px;
	width: 253px;
	margin-right: 1px;
}

/* position the third level flyout menu */

.menu ul ul ul {
	left: 253px;
	top: 0px;
	width: 170px;
	z-index: 10;
}

/* style the third level links */

.menu ul ul ul a {
	height: 24px;
	width: 170px;
	margin: 0;
}

.menu a:hover {
	background-position: 0 -32px;
}

/* make the second level visible when hover on first level list OR link */
.menu ul :hover ul { visibility: visible; opacity: 1; }
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul { visibility: hidden; opacity: 0; -webkit-transition: opacity 0.2s; }
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul { visibility: hidden; opacity: 0; -webkit-transition: opacity 0.2s; }
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul { visibility: visible; opacity: 1; -webkit-transition: opacity 0.2s; }
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul { visibility: visible; opacity: 1; -webkit-transition: opacity 0.2s; }

/* do not print tthe menu */
@media print { 
	.menu { visibility: hidden; } 
	}

/* style the table so that it takes no part in the layout - required for IE to work */

.menu table {
	position: absolute;
	top: 0;
	left: 0;
}
