@charset "utf-8";
body {
	font: 105% Verdana, Arial, Helvetica, sans-serif;
	/* "adobe-caslon-pro" too slow to load on screen */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background: #666666 url(bodyBackground.gif) repeat-y center top;
}
#container {
	width: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-attachment: fixed;
	background-color: #FFFFFF;
}
#header {
	height: 205px; /* 205 + 10 + 20 = 235 px */
	padding: 10px 10px 20px 20px;
	color: #333;
	position: relative;
	background: #f3f3f3 url(headerBackground.gif) repeat-x bottom;
}
#header h1 {
	font-size: 2em;
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0 0 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding: 0;
	color: #333;
}
#header h1.sub {
	color: #999;
	margin: 0;
	padding: 0;
	font-weight: normal;
}
#search {
	margin: 0 0 20px 0;
    padding: 0;
	text-align: left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.75em;
}
#masthead {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.7em;
	text-align: left;
}
#masthead #biblio a {
	color: #830000;
}
#masthead #copyright {  /* only display on printing */
	display: none;
}
#header #bu-logo {
	margin:0;
	padding:0;
	position: absolute;
	right: 50px;
	bottom: 73px;/* border: thin solid red; */
}
#header #bu-logo a {
	text-decoration:none;
	border:none;
}
#header #bu-logo img {
	border:none;
}
	
#header #navigation ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	float: left;
	position: absolute;
	right: .3em;
	bottom: 0px;/* border: thin solid red; */
}
#header #navigation li {
	float: left;/* border: thin solid blue; */
}
#header #navigation a {
	display: block;
	background: #000;
	padding: .2em .5em;
	/* font: bold .75em/1.2 Georgia, "Times New Roman", Times, serif; */
	font: bold 0.87em/1.2 Verdana, Geneva, sans-serif;
	text-decoration: none;
	color: #fff;
	margin-left: 0.5em;
}
#header #navigation a:hover, #header #navigation a:active {
	color: #630000;
	background: #fff;
}
#header #navigation a.current, #header #navigation a.current:hover, #header #navigation a.current:active {
	color: #930000;
	background: #fff;
	cursor: default;
}
#mainContent {
	margin: 0 0 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 0.9em;
	background: #fff;
}
#mainContent a {
	color: #830000;
}
ul.spacious li, ol.spacious li  {
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
ul.compact li, ol.compact li  {
	padding-top: 0;
	padding-bottom: 0;
}

table#scheduleCourse {
	border-collapse:collapse;
	font-size: 0.75em;
	font-family: Verdana, Geneva, sans-serif;
	width: 95%;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 30px;
	margin-left: auto;
	padding:0;
}

/*table#scheduleCourse tr:hover {
	color: #aaa;
	background-color: #444;
}*/
table#scheduleCourse th {
	font-size: 1em;
	font-weight: normal;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-align: left;
	padding-left: 10px;
}
table#scheduleCourse tbody th {
	background: #467;
	color: white;
	text-align: center;
	padding-left: 0;
	border-bottom:1px solid #fff;
}
table#scheduleCourse thead th {
	background: #245;
	color: white;
	border-right:1px solid #ccc;
}
table#scheduleCourse thead th.name {
	text-align: center;
	padding-left:0;
}

table#scheduleCourse td {
	font-size: 1em;
	font-weight: normal;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	text-align: left;
	padding-left: 10px;
	border: 1px solid #CCC;
}
table#scheduleCourse tr.even {
	background: #ebebeb;
}
table#scheduleCourse tr.odd {
	background: #fff;
}
table#scheduleCourse td.recess {
	text-align: left;
	font-size: 1 em;
	font-weight: bold;
}

#mainContent #navigation {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}

#mainContent.sidebar {
	margin: 0 250px 0 0;
	/*float: left;*/
}

#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #f3f3f3; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 30px 10px;
	text-align: left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.8em;

}
#sidebar1 p {
	margin: 0px;
	padding-left: 10px;
	font-size: 0.9em;
	padding-bottom: 0.66em;
	padding-top: 0px;
}
#sidebar1 h3 {
	padding-bottom: 0em;
	padding-top: 0px;
	margin-bottom: 0.33em;
	margin-top: 0.4em;
	color: #900;
}

#sidebar1 ul {
	margin: 0px;
	padding: 0 0 0 10px;
	list-style-type: none;
	font-size: .9em;
}
#footer {
	margin: 0;
	height: 16px; /* 16 + 15 + 15 = 46 */
	padding: 15px 10px 15px 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.7em;
	text-align: center;
	border: 1px 1px 0 1px solid #000;
/*	background-color: #000;
*/	 background: #000 url(footerBackground.gif) repeat-x top; 
}
#footer a {
	text-decoration: none;
	color: #fff;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding: 1px 0 0 0; /* to center in background graphic */
	color: #fff;
	vertical-align: text-bottom;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
