/* ================================================================ 
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/drp_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 c99e7e*/
.drp_menu {
	width:1200px;
	position: absolute;
	top: 133px;
	left:0px;
	z-index: 7;
	background:#D1AE94;
	padding-bottom:0px;
	margin-left:0px;
	padding-left: 0px;
	/* font-size:0.85em; */
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	background-color: #D1AE94;
}
.drp_menu img {
float:left;
border:1px solid #fff; 
border-width:1px 0 0 0;
position:relative;
}
/* remove all the bullets, borders and padding from the default list styling */
.drp_menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
/* what does this do? */.drp_menu ul ul {
width:150px;}  
/* float the list to make it horizontal and a relative positon so that you can control the dropdown drp_menu positon */
.drp_menu li {
	float:left;
	width:107px;/* style the topmost element could be 100px */
	position:relative;
}
/* style the links for the top level, .drp_menu a:visited  */

.drp_menu a{
	display:block;
	font-size:11px;
	text-decoration:none;
	color:#000;
	width:107px; /* width minus padding left minus border */
	height:28px;
	padding-top: 2px;
	border:1px solid #fff;
	border-width:1px 1px 0 0;
	background:#D1AE94;  /* #c99e7e top level color style0 */
	padding-left:0px; /* top level link padding keep this at 10px */
	line-height:30px;
	background-color: #D1AE94;
}

.drp_menu ul li a.major {color:#000;
	font-size:13px;
	line-height: 95%;
	text-align: center;
}
.drp_menu ul  ul li a { font-size:11px; }
/* a hack so that IE5.5 faulty box model is corrected */
* html .drp_menu a, * html .drp_menu a:visited {
width:107px;
w\idth:96px;  /* this is where the toplevel width is set for old IE */
}

/* style the second level background  */
.drp_menu ul ul a.drop, .drp_menu ul ul a.drop:visited {
	background:#BBD8A9;
	font-size:11px; /*  first drop with flyout color style5 lit green black type*/
	background-color: #BBD8A9;
}
/* style the second level hover  */
.drp_menu ul ul a.drop:hover{
	background:#92B364; /*style2 deep yl-green */
	background-color: #92B364;
}
/* style the second drop level hover  again */
.drp_menu ul ul :hover > a.drop {
background:#92B364;/* style2 deep yl-greengreen*/
}

/* style the third level background */
.drp_menu ul ul ul a, .drp_menu ul ul ul a:visited {
background:#ACC68A; /*  style4 med green */
} 
/* style the third level hover */
.drp_menu ul ul ul a:hover {
background:#92B364;  
}  /* was blue/grey  now style2 deep yl-greengreen */
.drp_menu ul ul ul :hover > a {
background:#92B364;
} /* was dead grey style 7 now style2 deep yl-greengreen*/

/* hide the sub levels and give them a positon absolute so that they take up no room */
.drp_menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:31px;
left:0; 
width:150px;}
/* another hack for IE5.5 */
* html .drp_menu ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout drp_menu */
.drp_menu ul ul ul{
left:150px;
top:0; /* just changed */
width:150px;}

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

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

/* style the second level links */
.drp_menu ul ul a, .drp_menu ul ul a:visited {
background:#d4d8bd;   /* pale grey green */
color:#000; 
height:auto; 
line-height:1em; 
padding:5px 10px; /* lower level padding right changed from 10px to 10px */
width:129px
/* yet another hack for IE5.5 */
}
* html .drp_menu ul ul a{
width:150px;
w\idth:129px;
}


/* style the top level hover */
.drp_menu a:hover, .drp_menu ul ul a:hover{
color:#fff; 
background:#949e7c; /* dark green-grey */
}
.drp_menu :hover > a, .drp_menu ul ul :hover > a {
color:#fff;
background:#949e7c; /* dark green-grey */
}

/* make the second level visible when hover on first level list OR link */
.drp_menu ul li:hover ul,
.drp_menu ul a:hover ul{
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
.drp_menu ul :hover ul ul{
visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.drp_menu ul :hover ul :hover ul ul{
visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.drp_menu ul :hover ul :hover ul{ 
visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.drp_menu ul :hover ul :hover ul :hover ul { 
visibility:visible;
}

