/* ================================================================ 
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-2007 Stu Nicholls. All rights reserved.
This stylesheet and the associated (x)html may be modified in any 
way to fit your requirements.
=================================================================== */

/* colors
banner purple #302246
text purple #3f2f58
bright gold #f0d576
light bronze #d4bc63
dk bronze #b6b479

darker green #949e7c
lighter green #d4d8bd
menu purple #766EA5
lighter purple #E2DFF2
gray purple from UW home flyout menu #605074
lightened up by 40 points #88789C
lightened up by 20 points #746488
*/
 
/* for two kinds of menus - about on left and audience-based on right */
#aboutMenus{
 float:left; 
}
#forMenus{
	 float:right;
}

.menu {width:1004px; height:auto; font-family:Arial, Verdana, Helvetica, sans-serif; font-size:.9em; position:relative; left:1px; z-index:100; background-color:#39275B; line-height:1.0em;} /* ADDED SHIFT TO LEFT BY ONE PIXEL FOR DEPARTMENT SITE */
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {padding:0;margin:0;list-style-type:none;}
.menu ul li.vertCenter{line-height:2em;} /* vertically center menu name */
.menu ul ul {width:125px;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {float:left;width:125px;position:relative;} /* CHANGED FROM 108 */

/* style the links for the top level */
.menu a, .menu a:visited {display:block;font-size:11px; font-weight:bold; text-decoration:none; color:#f0d576; width:125px; height:40px; border:1px solid #000; border-width:1px 0 1px 1px; background:#39275B; padding-left:0px; padding-top:0px; text-align:center;} /* CHANGED FROM width 110 */
.menu a, .menu a:visited {width:125px;} /* CHANGED FROM 108 */
#aboutMenus a, #aboutMenus a:visited {color:#E0E0E0;} /* give the "about" menu items a different text color */

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {visibility:hidden;position:absolute;height:0;top:41px;left:0; width:149px;border-top:1px solid #000;} /* changed top from 31 */

/* 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; border-collapse:collapse;}

/* style the second level links */
#aboutMenus ul ul a,
#aboutMenus ul ul a:visited,
#forMenus ul ul a,
#forMenus ul ul a:visited {
	background:#E2DFF2; color:#000; height:auto; line-height:1em; padding:8px 10px; width:190px;border-width:0px 1px 1px 1px; text-align:left; font-weight:normal;
}

/* style the top level hover */
#aboutMenus a:hover,
#aboutMenus ul ul a:hover,
#forMenus a:hover,
#forMenus ul ul a:hover {
	color:#fff; background:#746488; text-decoration:none;
}
#aboutMenus :hover > a,
#aboutMenus ul ul :hover > a,
#forMenus :hover > a,
#forMenus ul ul :hover > a {
	color:#fff; background:#746488;
}

/* 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;}
/* 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;}

/* remove rightmost and leftmost menu borders */
.menu li.rightmost > a, .menu li.rightmost > a:visited{
	border-right-width: 0px;
}
.menu li.leftmost > a, .menu li.leftmost > a:visited{
	border-left-width: 0px;
}

 /* for the rightmost menu, make the drop-down align with the right side of the menu instead of the left */
.menu ul li.rightmost ul {left:-86px;}
 /* for the lefttmost menu, make the drop-down align with the left side of the menu without creating the appearance of a double border */
.menu ul li.leftmost ul {left:-1px;}
