@charset "UTF-8";

body {
	background-color: #FFEEBB;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px;
	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;
	font-family: 'Oxygen', sans-serif;
	font-size: 14px;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	top: 0;
	background-color: white;
	box-shadow: 5px 5px 2px #888888;
}
.frontPageStyle #header {
	background-color: white;
	width:inherit;
	height: 280px;
	text-align: center;
}

.detailPageStyle #header {
	background-color: white;
	width:inherit;
	height: 140px;
	text-align: center;
}
.frontPageStyle #coursecode {
	position: absolute;
	width: 400px;
	height: 280px;
	z-index: 1;
	font-size: 64px;
	font-weight: 100;
	text-align: center;
	color: #DDDDDD;
	display: table;
	background: white;
}
.detailPageStyle  #coursecode {
	display: none;
}
.frontPageStyle #coursecode p {
	display: table-cell;
	vertical-align: middle;
}

.frontPageStyle #coursetitle {
	position: absolute;
	width: 400px;
	height: 280px;
	z-index: 2;
	font-size: 24px;
	font-variant: small-caps;
	font-style: normal;
	text-align: center;
	display: table;
}

.detailPageStyle #coursetitle {
	position: absolute;
	width: 400px;
	height: 140px;
	font-size: 20px;
	font-variant: small-caps;
	font-style: normal;
	text-align: center;
	display: table;
}
#coursetitle p {
	display: table-cell;
	vertical-align: middle;
}

.frontPageStyle #coursepicture {
	position: absolute;
	padding-left: 400px;
	padding-top: 10px;
	width: 380px;
	height: 240px;
	background-color: #FFFFFF;
}

.detailPageStyle #coursepicture {
	position: absolute;
	padding-top: 10px;
	padding-left: 560px;
	width: 190px;
	height: 120px;
}

#coursepicture img {
	background: white;
	width: inherit;
	
}
.frontPageStyle #courseterm {
	position: absolute;
	width: 400px;
	height: 20px;
	z-index: 2;
	top: 280px;
	background-color: white;
}

.detailPageStyle #courseterm {
	position: absolute;
	z-index: 2;
	top: 76px;
	margin-left: 400px;
	background-color: white;
}
 #mainDiv {
	width: 760px;
	padding: 10px;
	background: white;
}

#leftmenu {
	float: left;
	width: 200px;
	padding: 10px;
	padding-top: 40px;
}


#leftmenu p {
	font-weight: bold;
	margin: 0;
	padding: 4px;
}

.menuitem:hover {
	background-color: #FFEEBB;
}
.menuitem a {
	font-weight: normal;
}

.menuitem a:link {
	text-decoration: none;
	color: black;
}
.menuitem a:visited {
	text-decoration: none;
	color: black;
}

#mainContent {
	float: right;
	width: 540px;
	padding: 10px;
	padding-top: 20px;
}

#mainContent a:link,a:visited {
	font-weight: bold;
	text-decoration: none;
	color: #996644;
}
#mainContent a:hover {
	background-color: #FFEEBB;
}

.frontPageStyle #footer {
	clear: both;
	width: inherit;
	height: 80px;
	background:#FFDD88;
}

.detailPageStyle #footer {
	clear: both;
	width: inherit;
	height: 20px;
	background: #FFDD88;
}

.frontPageStyle #footer p {
	clear: none;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 60px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}

.detailPageStyle #footer p {
	clear: none;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 2px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}

.detailPageStyle #footer img {
	display: none;
}
#gradetable table {
	border: none;
}
#gradetable td {
	text-align: center;
}
#gradetable th {
	text-align: center;
	background: #FFDD88;
	width: 30px;
	padding-left: 5px;
}

h2 {
	font-size: 18px;
}


h3 {
	font-size: 16px;
	padding-left: 24px;
	padding-top: 4px;
	padding-bottom: 4px;
	background: #FFEEBB;
}
h3:before {
	content: "■ ";
}
