/* cominus style */

/* tag elements ****************************************************************/
html, body {
	margin: 0;
	padding: 0;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-image: url(images/deansite01.jpg);
	background-repeat: no-repeat;
	background-color: #000000;
	color: #ffffcc; 
}
h1 {
 	font-size: 300%;
}
h2 {
 	font-size: 150%;
}
h3 {
 	font-size: 130%;
}
h4 {
 	font-size: 115%;
}
h4.notice {
	text-align: center;
	color: #660000;
}
h4.page_name {
	color: #5b5b5b;
	padding: 10px 0 0 10px;
}
h5 {
 	font-size: 100%;
}
p {
	font-size: 100%;
}
img {
	padding: 10px;
	border-top: hidden;
	border-right: 2px outset #cccccc;
	border-bottom: 2px outset #cccccc;
	border-left: hidden;
	margin-left: 12px;
	margin-bottom: 15px;
}
img.no_frame {
	border: 0;
	padding: 2px;
	border: 0;
	margin: 0;
}

/* link and navigation elements ***************************************************/
a:link, a:visited {
	font-weight: normal;
	color: #80C9FF;
	text-decoration:none; 
}
a:hover {
	text-transform: none;
	color: #003366;
}
	
/* class elements **************************************************************/
.boldRed {
	font-weight: bold;
	color: #FF0000;
}
.boldBlue {
	font-weight: bold;
	color: #00248f;
}
.boldCominusBlue {
	font-weight: bold;
	color: #5d857c;
}
.byline {
	font-size: 90%;
	font-style: italic;
	text-align: right;
}	
.error {
	font-weight: bold;
	font-size: 110%;
	color: #FF0000;
}
.footnote {
	font-size: 95%;
}
.small {
	font-size: 90%;
}

/* object elements *************************************************************/                 
/* here are the objects that contain header bars, menu, content and footers ****/
/* NOTE FOR THESE OBJECTS: *****************************************************/
/* total recomend width of page is 1000 for mozilla 998 for IE *****************/
/* total width = width + padding ***********************************************/
#box { /* holds the content container in template */
	margin-top: 40px;
	margin-left: 0;
	position: relative;
	width: 720px;
	position: relative;
	width: 700px; 
	padding: 0;
}
#masthead {
	margin-top: 0px;
	margin-left: 200px;
	position: absolute;
	width: 800px;
	color: #666666;
	opacity: .9;
	-moz-opacity: .9; 
	filter: alpha(opacity=90); /* IE */
	padding: 2px;
}
#content {
	margin-top: 80px;
	margin-left: 220px;
	position: absolute;
	padding: 5px;
}
#footer { /* holds site info and small print, etc */
	font-size: 90%;
	line-height: 130%;
	clear: both;
}
#right_column { 
	margin-top: 80px;
	margin-left: 730px;
	position:absolute; 
	width:160px; 
	padding: 0;
	font-size:90%; 
	line-height:120%; 
}
#right_column ul { 
	margin-left:1em; 
	list-style-type:none; 
}

/* two options for menu: horizontal bar and sidebar ****************************/
/* FIRST menu bar navigation ***************************************************/
/* this section is for bar style menu with drop-down lists *********************/
#menu_bar { /* menu horizontal bar object */
	position: relative;
	padding: 0;
	margin: 0;
	list-style: none;
	height: 20px; /*do not format a width */
	z-index: 999999; /* object is tight to content_box and this assures menu_bar will drop in front of content */
	background-color: #666666; /* bar background color */
	}
#menu_bar_nav, #menu_bar_nav ul { /* menu horizontal bar object */
	padding: 0;
	margin: 0;
	list-style: none;
	}
#menu_bar_nav li {
	font-weight: bold;
	display: inline;
	float: left;
	text-align: center;
	font-size: 12px;
	height: 20px;
	line-height: 20px;
	}
#menu_bar_nav li a {
	display: block;
	width: 120px; /* width of space for menu items on the bar */
	color: #ffffcc; /* menu bar font color */
	text-decoration: none;
	}
#menu_bar_nav li a:hover {
	color: #ffff00; /* menu bar font color - hover */
	}
/* these next lines are for the drop down from the menu bar */
#menu_bar_nav li ul {
	background-color: #f0eed7; /* drop-down background color */
	position: absolute;
	z-index: 999999;
	padding: 0;
	margin: 0;
	list-style: none;
	border: 3px solid #333333;
	margin: 0 0 0 -5px;
	display: none;
	}
#menu_bar_nav li ul li {
	float: none;
	width: 120px; /* width of drop down box */
	padding: 0;
	margin: 0;
	font-size: 10px;
	border-bottom: 1px solid #333333;
	}
#menu_bar_nav li ul li a {
	color: #333333; /* drop down font color */
	width: 120px; /* width of drop down box */
	height: 20px;
	line-height: 20px;
	}
#menu_bar_nav li ul li a:hover {
	background-color: #999999; /* drop-down background color - hover*/
	color: #f0eed7; /* drop down font color - hover */
	}
#menu_bar_nav li:hover ul {
	display: block;
	}
/* END NAV BAR STYLES **********************************************************/

