/* CSS Document */

/***********************************************/
/* NOTE: load behavior for IE for Windows.     */
/*       no other browsers will need or use    */
/*       the behavior. the behavior call can   */
/*       be moved to a separate style sheet    */
/*       and loaded via @import for validation */
/*       purposes.                             */
/***********************************************/

body {
	behavior: url( /scms/css/csshover.htc );
}

/***********************************************/
/* NOTE: precede each id with div to avoid bug */
/*       in IE for Windows                     */
/*                                             */
/*       the display: inline; tag fix IE for   */
/*       windows doubling of margins without   */
/*       impacting other browsers              */
/***********************************************/

div#menu {
	/* menu class defined in mainstyle.css */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #ffffff;
	z-index:1000;
	
    /* music department styles */
	text-align: left;
	line-height: 10pt; 
	font-style: normal;
	float: left;
	margin-left: 0px;	/* was 12px changed to center the menu on the page */
	margin-right:0px;
	background: #c3c8cd;
	padding: 0px 2px 0px 2px;	
}

/***********************************************/
/* top level menu postioning and borders       */
/***********************************************/

div#menu ul {
	margin: 0;
	padding: 0;
	background: #ffffff;
	border-left: 1px solid #172f62;
}

div#menu ul li {
	border-right: 1px solid #172f62;
}

/***********************************************/
/* relative positioning will permit menu to be */
/* horizontal                                  */
/*                                             */
/* for dynamic sizing, add padding and remove  */
/* width from below                            */
/***********************************************/

div#menu li	{
	position: relative;
	list-style: none;
	margin: 0;
	float: left;
	width: 122px;
	line-height: 1em;
	vertical-align: middle;
}

/***********************************************/
/* sub level menu postioning and borders       */
/***********************************************/

/* sublevel1 and sublevel2 */
div#menu ul ul {
	position: absolute;
	width: 122px;
	top: auto;
	display: none;
	border: 1px solid #c3c8cd;
}

/* sublevel3 */
div#menu ul ul ul ul {
	position: absolute;
	width: 122px;
	top: auto;
	display: none;
	border: 1px solid #c3c8cd;
}

/***********************************************/
/* sublevel menu location styles               */
/*                                             */
/* NOTE: the sublevel1 left value, and the     */
/*       sublevel2 and sublevel3 top values    */
/*       are set to -1px to allow for the      */
/*       borders in order to have the text     */
/*       aligned with its parent for 508       */
/*                                             */
/*       if a horizontal  offset inside the    */
/*       the parents right border is desired   */
/*       for sublevel2 or sublevel3, reduce    */
/*       left value but add an increasing      */
/*       z-index for each lower level submenu  */
/***********************************************/

/* set location of sublevel1 menu items to beneath toplevel */
div#menu ul.sublevel1 {
	left: -1px;
}

/* set locataion of sublevel2 items to left of sublevel1 */
div#menu ul.sublevel2 {
	top: -1px;
	left: 122px;
}

/* set location of sublevel3 items to left of sublevel2 */
div#menu ul.sublevel3 {
	top: -1px;
	left: 122px;
}

/***********************************************/
/* limit submenus to show only when the upper  */
/* level menu item is active                   */
/***********************************************/

div#menu ul.toplevel li.submenu:hover ul.sublevel1,
div#menu ul.sublevel1 li.submenu:hover ul.sublevel2,
div#menu ul.sublevel2 li.submenu:hover ul.sublevel3 {
	display: block;
}

/***********************************************/
/* font style for top level menu               */
/***********************************************/

div#menu ul.toplevel {
	font-size: 9pt;
	line-height: 10pt; 
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: normal;
	font-weight: bold;
	color: #ffffff;
	text-align: left;
	vertical-align: middle;
	float: left;
	margin: -1px 0 0 0;
	background: #c3c8cd;
}

/***********************************************/
/* font style and width for all sublevel menus */
/*                                             */
/* NOTE: if separate font styles are desired   */
/*       for each sublevel, they can be styled */
/*       in the ul.sublevelx classes above     */
/***********************************************/

/* sublevel1 and sublevel2 */
div#menu li li {
	font-size: 8pt;
	font-weight: normal;
	text-align: left;
	width: 122px;
}

/* change width to match for sublevel3 */
div#menu li li li li {
	width: 122px;
}

div#menu>ul a {
	width: auto;
}


/***********************************************/
/* static color without decoration for links   */
/***********************************************/

div#menu li a {
	color: #172f62;
	display: block;
	padding: 0.25em 0em 0.25em 0.5em;
	text-decoration: none;
}

/* div#menu li a:hover {
	color: #ffffff; 
}*/


/***********************************************/
/* NOTE: arrows and backgrounds are explicitly */
/*       styled for each menu level in due to  */
/*       a bug in IE which resets defaults     /*
/*       after each hover event                /*
/***********************************************/

/* top level items with submenus show down arrow */
div#menu li.submenu {
	background: url( /scms/images/arrow_down.gif ) 95% 75% no-repeat;
}

/* sublevel1 items with submenus show right arrow */
div#menu li.submenu li.submenu {
	background: url( /scms/images/arrow_right.gif ) 95% 50% no-repeat;
}

/* sublevel2 items with submenus show right arrow */
div#menu li.submenu li.submenu li.submenu{
	background: url( /scms/images/arrow_right.gif ) 95% 50% no-repeat;
}

/* set hover highlight for items without submenus */
div#menu li:hover {
	background-color: #c3c8cd;
}

/* set hover highlight for toplevel item with submenus */
div#menu li.submenu:hover {
	background-color: #c3c8cd;
}

/* set hover highlight for sublevel1 items with submenus */
div#menu li.submenu li.submenu:hover {
	background-color: #c3c8cd;
}

/* set hover highlight for sublevel2 items with submenus */
div#menu li.submenu li.submenu li.submenu:hover {
	background-color: #c3c8cd;
}
/***********************************************/
/* Color Definitions                           */
/*                                             */
/* FAU Blue:  002d62                           */
/* FAU Red:   c10435                           */
/* FAU Gray:  c3c8cd                           */
/***********************************************/

