@charset "UTF-8";
/* CSS Document */

/* SpryMenuBar.css - version 0.6 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* Revised 2012 for SUNY Downstate Medical Center */

/* LAYOUT INFORMATION: describes box model, positioning, z-order */
/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBar
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: 160px;
	font-size: .9em;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBar li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 160px;
}
/* Submenus should appear to the right, but they are initially off the left side of the screen (-1000em) */
ul.MenuBar ul
{
	margin: 0 0 0 100%;
	padding: 0;
	list-style-type: none;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 160px;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation SubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBar ul.SubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBar ul li
{
	width: 160px;
}

/* DESIGN INFORMATION: describes color scheme, borders, fonts */
/* Submenu containers have border on one side */
ul.MenuBar ul
{
	border-left: 2px solid #555;
}
/* Menu items are a color block with padding and no text decoration */
ul.MenuBar a
{
	display: block;
	cursor: pointer;
	margin: 0;
	padding: 3px 0.4em 4px .6em;
	color: #FFF;
	background-color: #00427E;
	text-decoration: none;
	line-height: 1.1em;
	border-bottom: 1px #005BAE solid;
	font-size: .9em;
}
ul.MenuBar a:visited
{
	color: #FFF;
}
/* Menu items that have mouse over or focus have a color background and black text */
ul.MenuBar a:hover, ul.MenuBar a:focus
{
	background-color: #FFAD11;
	color: #000;
}
/* Menu items that are open with submenus are set to MenuBarHover with a color background and black text */
ul.MenuBar a.MenuBarHover, ul.MenuBar a.SubmenuHover, ul.MenuBar a.SubmenuVisible
{
	background-color: #FFAD11;
	color: #000;
}

/* Additional Menu Styles */
/* Menu 2 */
li.menu2 a
{
	background-color: #2062B8;
	color: #FFF;
	border-bottom: 1px #0F4786 solid;
}
ul.MenuBar li.menu2 a:hover, ul.MenuBar li.menu2 a:focus
{
	background-color: #FFB74D;
	color: #000;
}
ul.MenuBar li.menu2 a.MenuBarHover, ul.MenuBar li.menu2 a.SubmenuHover, ul.MenuBar li.menu2 a.SubmenuVisible
{
	background-color: #FFB74D;
	color: #000;
}

/* Menu 3 */
li.menu3 a
{
	background-color: #2186ED;
	color: #FFF;
	border-bottom: 1px #104A83 solid;
}
ul.MenuBar li.menu3 a:hover, ul.MenuBar li.menu3 a:focus
{
	background-color: #FFCB7C;
	color: #000;
}
ul.MenuBar li.menu3 a.MenuBarHover, ul.MenuBar li.menu3 a.SubmenuHover, ul.MenuBar li.menu3 a.SubmenuVisible
{
	background-color: #FFCB7C;
	color: #000;
}

/* HOME Menu */
ul.MenuBar .site-home-button a, ul.MenuBar .site-home-button a:visited {
	background-color: #093186;
	color: #FFF;
	font-weight: bold;
}
ul.MenuBar .site-home-button a:hover {
	background-color: #06F;
	color: #FFF;
	border-bottom: 1px #F90 solid;
}


/* SUBMENU INDICATION: styles if there is a submenu under a given menu item */
/* Menu items that have a submenu have the class designation Submenu and are set to use a background image positioned on the far left (100%) and centered vertically (50%) */
ul.MenuBar a.Submenu
{
	background-image: url(../images/arrow-white.gif);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}

/* Menu items that are open with submenus have the class designation SubmenuHover and are set to use a "hover" background image positioned on the far left (100%) and centered vertically (50%) */
ul.MenuBar a.SubmenuHover
{
	background-image: url(../images/arrow-black.gif);
	background-repeat: no-repeat;
	background-position: 100% 50%;
}
#wrapper #side-bar #menu1 li ul li a {
	padding: 4px 0.4em 4px .6em;
	font-size: inherit;
}


/* BROWSER HACKS: the hacks below should not be changed unless you are an expert */
/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBar iframe
{
	position: absolute;
	z-index: 1010;
	filter:alpha(opacity:0.1);
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBar li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}