/***********************************************/
/* Department of Sociologoy CSS Menu Styles    */
/*											   */
/* Developed By: Michael L. Brown, CPA         */
/* Last Updated: 10/18/05                      */
/*                                             */
/* NOTES ABOUT WIDTH:                          */
/*    Total Width                     750px    */
/*    Minimum Left Margin              12px    */
/*    Minimum Right Margin             12px    */
/*      Total Margin                    24px   */
/*    Available for menus and borders  726px   */
/*    Vertical Borders:                        */
/*       Menu Items plus 1         7           */
/*       Width of Borders        * 1px         */
/*         Total for Borders             7px   */
/*    Available for Menus              719px   */
/*    Number of Menus                ÷   6     */
/*      Maximum Width of TopLevel      119px   */
/*    Use                              110px   */
/*                                             */
/*    Total Width                      750px   */
/*    Total Width Applied:                     */
/*      Total for Menus          660px         */
/*      Extra Wide (2 * 35)       70px         */
/*      Total for Borders          7px 737px   */
/*      Total for Margins                13px  */
/***********************************************/


/***********************************************/
/* Color Definitions                           */
/*                                             */
/* FAU Blue:  002d62                           */
/* FAU Red:   c10435                           */
/* FAU Gray:  c3c8cd                           */
/***********************************************/


/***********************************************/
/* 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( /sociology/css/csshover.htc );
}


/***********************************************/
/* NOTE: precede each id with div to avoid bug */
/*       in IE for Windows                     */
/***********************************************/

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: #003366;
	text-align: center;
	line-height: 10pt; 
	font-style: normal;
	float: left;
	background: #ffffff;
	padding: 6px 5px 6px 6px;
	z-index:1001;
	position: relative;
}


/***********************************************/
/* top level menu postioning and borders       */
/***********************************************/

div#menu ul {
	margin: 0;
	padding: 0;
	background: #ffffff;
	margin: 0;
	border-left: 1px solid #c3c8cd;
}

div#menu ul li {
	border-right: 1px solid #c3c8cd;
}


/***********************************************/
/* 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: 110px;
	line-height: 1em;
	vertical-align: middle;
}


/***********************************************/
/* sub level menu postioning and borders       */
/***********************************************/

/* sublevel1 and sublevel2 / 2L */
div#menu ul ul {
	position: absolute;
	width: 175px;
	top: auto;
	display: none;
	border: 1px solid #c3c8cd;
	z-index: 99;
}

/* sublevel3 */
div#menu ul ul ul ul {
	position: absolute;
	width: 100px;
	top: auto;
	display: none;
	border: 1px solid #c3c8cd;
	z-index: 99;
}


/***********************************************/
/* 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 {
	top: 1.5em;
	left: -1px;
}

/* set locataion of sublevel2 items to right of sublevel1 */
div#menu ul.sublevel2 {
	top: -1px;
	left: 175px;
}

/* set locataion of sublevel2L items to left of sublevel1 */
div#menu ul.sublevel2L {
	top: -1px;
	left: -177px;
}


/* set location of sublevel3 items to left of sublevel2 */
div#menu ul.sublevel3 {
	top: -1px;
	left: 175px;
}


/***********************************************/
/* 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.sublevel1 li.submenu:hover ul.sublevel2L,
div#menu ul.sublevel2 li.submenu:hover ul.sublevel3,
div#menu ul.sublevel2L li.submenu:hover ul.sublevel3,
div#menu ul.toplevel li.submenuwide:hover ul.sublevel1,
div#menu ul.sublevel1 li.submenuwide:hover ul.sublevel2,
div#menu ul.sublevel1 li.submenuwide:hover ul.sublevel2L,
div#menu ul.sublevel2 li.submenuwide:hover ul.sublevel3,
div#menu ul.sublevel2L li.submenuwide: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: #002d62;
	text-align: center;
	vertical-align: middle;
	float: left;
	margin: -1px 0 0 0;
	background: #ffffff;
}


/***********************************************/
/* 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 / 2L */
div#menu li li {
	font-size: 8pt;
	font-weight: normal;
	text-align: left;
	width: 175px;
}

/* change width to match for sublevel3 */
div#menu li li li li {
	width: 100px;
}

div#menu>ul a {
	width: auto;
}


/***********************************************/
/* static color without decoration for links   */
/***********************************************/

div#menu li a {
	color: #002d62;
	display: block;
	padding: 0.25em 0em 0.25em 0.5em;
	text-decoration: none;
}

div#menu li li a {
	color: #002d62;
	display: block;
	padding: 0.25em 0em 0.25em 0.5em;
	text-decoration: none;
}



/***********************************************/
/* 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( /sociology/images/arrow_down.gif ) 95% 75% no-repeat;
}

/* top level items with submenus show down arrow */
div#menu li.submenuwide {
	width: 145px;
	background: url( /sociology/images/arrow_down.gif ) 95% 75% no-repeat;
}


/* sublevel1 items with submenus show right arrow */
div#menu li.submenu li.submenu,
div#menu li.submenuwide li.submenu {
	background: url( /sociology/images/arrow_right.gif ) 95% 50% no-repeat;
}

/* sublevel2 items with submenus show right arrow */
div#menu li.submenu li.submenu li.submenu,
div#menu li.submenuwide li.submenu {
	background: url( /sociology/images/arrow_right.gif ) 95% 50% no-repeat;
}

/* set hover highlight for toplevel items without submenus */
div#menu li:hover {
	color: #ffffff;
	background-color: #cccccc;
}

/* set hover highlight for toplevel item with submenus */
div#menu li.submenu:hover,
div#menu li.submenuwide:hover {
	color: #ffffff;
	background-color: #cccccc;
}

/* set hover highlight for sublevel items without submenus */
div#menu li li:hover {
	color: #ffffff;
	background-color: #cccccc;
}

/* set hover highlight for sublevel1 items with submenus */
div#menu li.submenu li.submenu:hover,
div#menu li.submenuwide li.submenu:hover {
	color: #ffffff;
	background-color: #cccccc;
}

/* set hover highlight for sublevel2 items with submenus */
div#menu li.submenu li.submenu li.submenu:hover,
div#menu li.submenuwide li.submenu li.submenu:hover {
	color: #ffffff;
	background-color: #cccccc;
}

/***********************************************/
/* Link Classes                                */
/* Added by Michael Brown 10/12/2006           */
/*  for links within text ie. ahdegree         */
/* While having no impact on menus, this is    */
/*  the only css that is both called for A&L   */
/*  and which can be edited                    */
/***********************************************/

.link_underline a:active {
	color: #002d62;
	text-decoration: underline;
}

.link_underline a:link {
	color: #002d62;
	text-decoration: underline;
}

.link_underline a:hover{
	color: #999999;
	text-decoration: underline;
}

.link_underline a:visited {
	color: #002d62;
	text-decoration: underline;
}



/***********************************************/
/* Menu Image and Related Text Styles          */
/*                                             */
/* Added by Michael L. Brown 10/27/06          */
/*                                             */
/* Calculations for img_menu_text:             */
/*    Height of image                    250px */
/*    Lines of Text                    6       */
/*    Top/Bottom blank lines           2       */
/*    Total Lines                          8   */
/*      line-height                       25px */
/*    Relative font size                  80%  */
/*      font-size                         20px */
/*                                             */
/*    Width of page                      250px */
/*    Width of left div            190px       */
/*    Width of center div          274px       */
/*    Width of right div           190px       */
/*    Total width of divs                654px */
/*    Unallocated width                   96px */
/*    Sides                                2   */
/*    Unallocated to left of left div     48px */
/*    Width of left div                  190px */
/*      left                             238px */
/*                                             */
/*    width = width of image =           250px */
/***********************************************/

#img_menu {
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	filter: alpha( opacity=0 );
}

#img_menu_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	line-height: 25px; 
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #ffffff;
	text-align: center;
	width: 250px;
	position: relative;
	top: -225px;
	left: 7px;
}


