/***********************************************/
/* College of Arts and Letters 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         6           */
/*       Width of Borders        * 1px         */
/*         Total for Borders             6px   */
/*    Available for Menus              720px   */
/*    Number of Menus                ÷   5     */
/*      Maximum Width of TopLevel      144px   */
/*    Use                              140px   */
/*                                             */
/*    Total Width                      750px   */
/*    Total Width Applied:                     */
/*      Total for Menus          700px         */
/*      Total for Borders          6px 706px   */
/*      Total for Margins               44px   */
/***********************************************/


/***********************************************/
/* 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( /artsandletters/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 20px 6px 20px; /* Changed from 22px on left and right Brian Zinn 6/27/2007 */
}


/***********************************************/
/* 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: 140px;
	line-height: 1em;
	vertical-align: middle;
}


/***********************************************/
/* sub level menu postioning and borders       */
/***********************************************/

/* sublevel1 and sublevel2 */
div#menu ul ul {
	position: absolute;
	width: 200px;
	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 left of sublevel1 */
div#menu ul.sublevel2 {
	top: -1px;
	left: 200px;
}

/* set location of sublevel3 items to left of sublevel2 */
div#menu ul.sublevel3 {
	top: -1px;
	left: 200px;
}


/***********************************************/
/* 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: #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 */
div#menu li li {
	font-size: 8pt;
	font-weight: normal;
	text-align: left;
	width: 200px;
}

/* 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( /artsandletters/images/arrow_down.gif ) 95% 75% no-repeat;
}

/* sublevel1 items with submenus show right arrow */
div#menu li.submenu li.submenu {
	background: url( /artsandletters/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( /artsandletters/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 {
	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 {
	color: #ffffff;
	background-color: #cccccc;
}

/* set hover highlight for sublevel2 items with submenus */
div#menu li.submenu 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;
}

/***********************************************/
/* College of Arts and Letters                 */
/* Directory List Styles                       */
/*											   */
/* Developed By: Michael L. Brown, CPA         */
/* Last Updated: 10/13/06                      */
/***********************************************/


/***********************************************/
/* Color Definitions                           */
/*                                             */
/* FAU Blue:  002d62                           */
/* FAU Red:   c10435                           */
/* FAU Gray:  c3c8cd                           */
/***********************************************/


/***********************************************/
/* NOTE: precede each id with div to avoid bug */
/*       in IE for Windows                     */
/***********************************************/

div#dir {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-align: left;
	line-height: 1.5em; 
	font-style: normal;
	float: left;
	background: url(images/bg_808080.jpg) repeat-y 375px 0;
}

div#dir_prefooter {
	clear: both;
	width: 750;
	border-top: 1px solid gray;
	font-size: 12px;
	line-height: 1.5em; 
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: center;
	vertical-align: middle;
	padding: 4px 0px 4px 0px;
}



/***********************************************/
/* UL styles                                   */
/***********************************************/

div#dir ul {
	font-size: 11px;
	line-height: 1.5em; 
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: left;
	vertical-align: middle;
	float: left;
	margin: 0px;
	padding: 12px 0px 0px 0px;
}


/***********************************************/
/* LI styles                                   */
/*                                             */
/* relative positioning will permit list items */
/* to be horizontal                            */
/***********************************************/

div#dir ul li {
	position: relative;
	list-style: none;
	float: left;
	vertical-align: top;
}

div#dir li.dir_name {
	width: 110px;
	text-align: left;
	clear: left;
}

div#dir li.dir_title {
	width: 140px;
	text-align: left;
}

div#dir li.dir_room {
	width: 90px;
	text-align: left;
}

div#dir li.dir_ext {
	width: 40px;
	text-align: left;
}
div#dir li.dir_email {
	width: 115px;
	text-align: right;
}

div#dir li.dir_dept {
	width: 500px;
	font-size: 14px;
	line-height: 1.5em;
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: italic;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #002d62;
	text-align: justify;
	vertical-align: middle;
	padding: 0px 0px 0px 0px;
	clear: both;
}

div#dir li.dir_dept {
	width: 500px;
	font-size: 14px;
	line-height: 1.5em;
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: italic;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #002d62;
	text-align: justify;
	vertical-align: middle;
	padding: 0px 0px 0px 0px;
	clear: both;
}

div#dir li.dir_centertext {
	width: 500px;
	font-size: 11px;
	line-height: 1.5em;
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: italic;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-align: center;
	vertical-align: middle;
	padding: 0px 0px 0px 0px;
	clear: both;
}

/***********************************************/
/* header styles                               */
/***********************************************/
	
.dir_h1 {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #002d62;
	padding: 0px 0px 0px 0px;
}

.dir_h2 {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #002d62;
}


/***********************************************/
/* directory link styles                       */
/***********************************************/

div#dir a:active,
div#dir a:link,
div#dir a:visited,
div#dir_menupadding a:active,
div#dir_menupadding a:link,
div#dir_menupadding a:visited {
	color: #0000ff;
	text-decoration: underline;
}

div#dir a:hover,
div#dir_menupadding a:hover {
	color: #999999;
	text-decoration: underline;
}


/***********************************************/
/* directory side menu styles                  */
/***********************************************/

#dir_menupadding {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	margin: 0px;
	padding: 0px;
}

div#dir_menupadding ul {
	font-size: 9px;
	line-height: 1.5em; 
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: left;
	vertical-align: middle;
	float: left;
	margin: 0px;
	padding: 0px 0px 0px 0px;
}

div#dir_menupadding ul li {
	position: relative;
	list-style: none;
	float: left;
	vertical-align: top;
}

div#dir_menupadding li.dir_heading {
	width: 190px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	font-variant: normal;
	text-align: left;
	text-transform: none;
	color: #000000;
	margin: 0px;
	clear: left;
	padding: 12px 0px 0px 0px;
}

div#dir_menupadding li.dir_code {
	width: 25px;
	text-align: left;
	clear: left;
	padding-left: 6px;
}

div#dir_menupadding li.dir_desc {
	width: 160px;
	text-align: left;
	padding-left: 6px;
}

div#dir_menupadding li.dir_campus {
	width: 120px;
	text-align: left;
	clear: left;
	padding-left: 6px;
}

div#dir_menupadding li.dir_phone {
	width: 60px;
	text-align: left;
	padding-left: 6px;
}

div#dir_menupadding li.dir_center {
	width: 190px;
	font-size: 12px;
	line-height: 1.5em; 
	font-family: Arial, Helvetica, Sans-Serif;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-align: center;
	vertical-align: middle;
	float: left;
	margin: 0px;
	padding: 12px 6px 12px 6px;
}

/***********************************************/
/* Directory Font Classes                      */
/***********************************************/

.dir_fau_blue{
	color: #002d62;
}

.dir_fau_red{
	color: #c10435;
}

.dir_fau_gray{
	color: #c3c8cd;
}

.dir_font_black{
	color: #000000;
}

.dir_font_blue{
	color: #0000ff;
}

.dir_font_gray{
	color: #666666;
}

.dir_font_white{
	color: #ffffff;
}

.dir_font_italic{
	font-style: italic;
}

.dir_font_oblique{
	font-style: oblique;
}

.dir_font_bold{
	font-weight: bold;
}

.dir_font_normal{
	font-weight: normal;
}
	
.dir_font_small{
	font-size: 7pt;
	line-height: 9pt;	
}

.dir_font_size_normal{
	font-size: 11px;
}

.dir_font_emphasis {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	color: #003366;
}


#h_border {
	width: 750px;
	border-bottom: 1px solid gray;
	padding: 0px 0px 0px 0px;
}	


/***********************************************/
/* Index Page Styles                           */
/***********************************************/

#fade0 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 40px;
	font-weight: normal;
	color: #CCCCCC;
	width: 400px;
	line-height: 60px;
}
	
.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}


