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

.left_drop {
	position: relative;
	float: right;
	font-family:  Arial, sans-serif; 
	font-size: 0.7em;
	font-weight:  bold;
	text-align:  left;
	width:  151px; 
	letter-spacing:  0.1em;
	z-index: 100;
}
/* remove all the bullets, borders and padding from the default list styling */
.left_drop ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.left_drop ul ul {
	width: 150px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown left_drop positon */
.left_drop li {
	float: left;
	width: 150px;
	position: relative;
}
/* style the links for the top level */
.left_drop a, .left_drop a:visited {
	display: block;
	font-size: 11px;
	text-decoration:  none; 
	color: #666666; 
	width: 139px; 
	height: 20px; 
	border: 1px #999999 solid; /* mid grey */
	background: #FFFFFF url(/adatabase/images/left_drop_arrow.gif) top right no-repeat; 
	padding-left: 10px; 
	line-height: 19px;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .left_drop a, * html .left_drop a:visited {
	width: 150px;
	w\idth: 139px;
}

/* style the second level links */
.left_drop ul ul a, .left_drop ul ul a:visited {
	background: #FFFFFF; 
	color: #666666; 
	height: auto; 
	line-height: 1em; 
	padding: 5px 0px 5px 10px;; /* top right bottom left */ 
	width: 139px;
/*	width: 129px; */
}
/* yet another hack for IE5.5 */
* html .left_drop ul ul a{
	width: 150px;
	w\idth: 129px;
}

/* style the top level hover */
.left_drop ul a:hover {
	color: #000000; 
	background: #DDDDDD url(/adatabase/images/left_drop_arrow_hi.gif) top right no-repeat; 
}
.left_drop ul :hover > a {
	color: #000000;
	background: #DDDDDD url(/adatabase/images/left_drop_arrow_hi.gif) top right no-repeat; 
}

/* style the second level background */
.left_drop ul ul a, .left_drop ul ul a:visited {
	background: #FFFFFF;
	border-width: 0px 1px 1px 1px; /* top right bottom left */
	color: #666666; 
}
/* style the second level hover */
.left_drop ul ul a:hover{
	background: #FFFFFF;
	color: #000000; 
}
.left_drop ul ul :hover > a {
	background: #FFFFFF;
	color: #000000; 
}

/* style the third level background */
.left_drop ul ul ul a, .left_drop ul ul ul a:visited {
	background: #e2dfa8;
}
/* style the third level hover */
.left_drop ul ul ul a:hover {
	background: #b2ab9b;
}


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

/* position the third level flyout left_drop */
.left_drop ul ul ul{
	left: 150px; 
	top: 0;
	width: 150px;
}
/* position the third level flyout left_drop for a left flyout */
.left_drop ul ul ul.left {
	left: -150px;
}

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

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

/* make the third level visible when you hover over second level list OR link */
.left_drop ul :hover ul :hover ul{ 
	visibility: visible;
}

