


/* Organization Nav */


#organizationnav, #organizationnav ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

#organizationnav a {
	display: block;
	width: 100px;
	text-decoration: none;
	font: normal 12px Arial, Helvetica, sans-serif;
	color: #1f221d;
}

#organizationnav li {
	float: left;
	width: 100px;
}

#organizationnav li ul {
	position: absolute;
	width: 100px;
	left: -999em;
}

#organizationnav li:hover ul, #organizationnav li.sfhover ul {
	left: auto;
}

a.drop:link, a.drop:visited, a.drop:active {
	background: #ffffff;
	line-height:18px;
	padding: 2px 0 2px 4px;
}

a.drop:hover {	
	background: #ffcc99;
}





/* ================================================================ 
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-2008 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

.organizationmenu {
	width:104px;
	height:30px;
	position:relative;
	z-index:50;
	font-size: 0;
}
/* hack to correct IE5.5 faulty box model */
* html .organizationmenu {
	width:97px;
	w\idth:96px;
}
/* remove all the bullets, borders and padding from the default list styling */
.organizationmenu ul {
	padding:0;
	margin:0;
	list-style-type:none;
}
.organizationmenu ul ul {
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.organizationmenu li {
	float:left;
	position:relative;
}
/* style the links for the top level */
.organizationmenu a, .organizationmenu a:visited {
	display:block;
	text-decoration:none;
	font: bold 12px Georgia, "Times New Roman", Times, serif;
	color: #003366;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	height: 37px;
	margin-right: 10px;
}
.organizationmenu a:hover {
	background: #ffcc99;
	text-decoration: none;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .organizationmenu a, * html .organizationmenu a:visited {
	w\idth:50px;
}
/* style the second level background */
.organizationmenu ul ul a.drop, .organizationmenu ul ul a.drop:visited {
}
/* style the second level hover */
.organizationmenu ul ul a.drop:hover {
}
.organizationmenu ul ul :hover > a.drop {
}
/* style the third level background */
.organizationmenu ul ul ul a, .organizationmenu ul ul ul a:visited {
}
/* style the third level hover */
.organizationmenu ul ul ul a:hover {
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.organizationmenu ul ul {
	visibility:hidden;
	position:absolute;
	height:0;
	top:37px;
	left:0;
}
/* another hack for IE5.5 */
* html .organizationmenu ul ul {
	top:37px;
	t\op:37px;
}
/* position the third level flyout menu */
.organizationmenu ul ul ul {
	left:140px;
	top:-1px;
	width:140px;
}
/* position the third level flyout menu for a left flyout */
.organizationmenu ul ul ul.left {
	left:-140px;
}
/* style the table so that it takes no ppart in the layout - required for IE to work */
.organizationmenu table {
	position:absolute;
	top:0;
	left:0;
	border-collapse:collapse;
}
/* style the second level links */
.organizationmenu ul ul a, .organizationmenu ul ul a:visited {
	background:#ffffff;
	font: normal 11px Arial, Helvetica, sans-serif;
	color:#44443f;
	height:auto;
	line-height:1em;
	padding:4px 4px;
	width:96px;
	text-transform: none;
}
/* yet another hack for IE5.5 */
* html .organizationmenu ul ul a, * html .organizationmenu ul ul a:visited {
	width:140px;
	w\idth:140px;
}
/* style the top level hover */
.organizationmenu a:hover, .organizationmenu ul ul a:hover {
}
.organizationmenu :hover > a, .organizationmenu ul ul :hover > a {
	color:#000;
	background: #ffcc99;
}
/* make the second level visible when hover on first level list OR link */
.organizationmenu ul li:hover ul, .organizationmenu ul a:hover ul {
	visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
.organizationmenu ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.organizationmenu ul :hover ul :hover ul {
	visibility:visible;
}
