@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/dd_valid.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.

html code in head of page
<link rel="stylesheet" media="all" type="text/css" href="css/dropdown.css" />

<!--[if lte IE 6]>
<link rel="stylesheet" media="all" type="text/css" href="css/dropdown_ie.css" />
<![endif]-->
=================================================================== */
#topNav {
	height:28px;
	background-image:url(images/lustre_sucra.jpg);
	background-repeat:repeat-x;
	background-color:#CC9;
	text-align:left; padding-left:110px;
}
.ie6 #topNav {padding-left:80px;}
.menu {
	position:relative; z-index:100;
	font-family:Georgia, "Times New Roman", Times, serif;
	/* border-right:1px solid #000; width:980px;  */
}

/* 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:149px; */
	border-left:1px solid #666;
}
.menu li a {
	height:24px; 
	text-align:center; font-size:16px;
	padding:2px 10px;
}
/* .ie6 .menu li a {padding:2px 0} */

.menu li a:hover {
	color:#FF0; background-color:#900;
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display:block; line-height:24px;
	text-decoration:none; color:#049;
	font-variant:small-caps; font-weight:800;
	/*
	border:1px solid #000; border-width:1px 0 1px 1px; background:#09c; padding-left:10px; ;
	*/
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul ul {width:149px;}

/* style the SECOND LEVEL background */
.menu ul ul a, 
.menu ul ul a:visited {
	background-color:#d4d8bd;
	text-align:left; font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size:12px;
	padding:4px 8px 5px 9px;
	border:1px solid #000; border-width:0 1px 1px 0;
	font-variant:normal;
}
/* style the SECOND LEVEL hover */
.menu ul ul a:hover,
.menu ul ul :hover > a {
	background-color:#c9ba65;
}
/* style the THIRD LEVEL background */
.menu ul ul ul a, 
.menu ul ul ul a:visited {
	background-color:#e2dfa8;
}
/* style the THIRD LEVEL hover ... and on down */
.menu ul ul ul a:hover {background:#b2ab9b;}


/* hide the sub levels and give them a positon absolute so that they take up no room 
***** SECOND LEVEL drop-down */
.menu ul ul {
	top:27px;left:0;
	visibility:hidden; position:absolute; height:0; width:149px; 
	border:1px solid #000;
    t\op:26;
}
/* another hack for IE5.5 
* html .menu ul ul {top:27px;t\op:28px;}*/

/* position the THIRD LEVEL flyout menu */
.menu ul ul ul{left:149px; top:-1px; width:149px;}

/* position the THIRD LEVEL flyout menu for a LEFT flyout */
.menu ul ul ul.left {left:-149px;}

/* 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; border-collapse:collapse;}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
    background-color:#d4d8bd; color:#000; width:128px;
    height:auto; line-height:1em; padding:5px 10px; 
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover{color:#000; background:#b7d186;}
.menu :hover > a, .menu ul ul :hover > a {color:#000; background:#b7d186;}

/* 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; border-collapse:collapse;}
/* 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; border-collapse:collapse;}
