body {
	font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
    background: #FFF;
	/* background: #e1e6df url('../images/bg.jpg') no-repeat fixed center;    ENABLE FOR NORMAL BACKGROUND  */
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	overflow: hidden;
	margin: 20px 0 0 20px;
	display: block;
	overflow: auto;
}
	
#container {
	width: auto;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 650px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
	top: 10px;
	padding-left: 25px;
	border-left: 2px solid black;
}

#header { 
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 75px;
}

#header h1 {
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	margin-left: 10px;
}

#header h2 {
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	margin-left: 10px;
}

#mainContent {
	padding: 20px 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: auto;
	height: 325px;
	margin: 25px 0 0 0;
	float: left;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	position: relative;
	top: 5px;
}

#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 */
}

#title {
	margin: 0;
	float: left;
	width: auto;
}

#daycount{
	margin: 0;
	width: 220px;
	right: 18px;
	top: 10px;
	text-align: center;
	border: 1px solid black;
	padding: 8px;
	background: #ECECEC url('../images/bg.jpg') no-repeat fixed center;
	display: table;
	position: absolute;
	
}

#daycount p {
	font-size: 12pt;
	display: table-cell;
	vertical-align: middle;
}

.big {
	font-size: 20pt;
}

#about {
	width: auto;
	text-align: left;
	margin: 0;
	padding: 0 15px;
	float: left;
	margin-right: 20px;
}

a {
	outline: none;
}

a:link, a:visited, a:active {
	text-decoration: none;
	color: #333;
}

a:hover, .bio a:hover {
	text-decoration:none;
	color:#666;
}

h1, h2, h3 {
	padding: 0;
	margin: 0;
}

h1 {
	font-size: 28pt;
}

h2 {
	font-size: 13pt;
}

h3 {
	font-size: 12pt;
}

table {
	border: 0;
	padding: 0;
}

tr {
	padding: 0;
	margin: 0;
}

td {
	padding: 0;
	margin: 0;
}

tr.row1 {
	text-align: center;
	width: 230px;
}

tr.row2 {
	height: 200px;
	width: 200px;
}

tr.row3 {
	text-align: center;
	width: 200px;
}

.cell img {
	max-width: 200px;
	max-height: 200px;
	margin: 0 15px;
	border: 3px solid #fff;
}

.cell:hover img {
	border: 3px solid black;
}

.cell:hover {
	color: red; /* Dummy definition to overcome IE bug */
}

.photoTitle {
	font-family: "Courier New", Courier, mono;
	text-align: center;
	font-size: 10pt;
	width: 185px;
	margin: 0 auto;
}

.center {
	text-align: center;
	margin: 0 auto;
}

#bios {
	margin: 0;
	padding: 0;
	width: 650px;
	height: auto;
	position: absolute;
	right: 18px;
	background: #ECECEC url('../images/bg.jpg') no-repeat fixed center;
	border: 1px solid black;
}

#bios .hline {
	display: block;
	border-top: 1px solid black;
	width: 95%;
	margin: 0 auto;
	clear: both;
}

#bios .hlinedashed {
	display: block;
	border-top: 1px dashed black;
	width: 95%;
	margin: 0 auto;
	clear: both;
}

#michael, #steph, #nick, #rebecca, #matthew, #tag {
	padding: 15px;
	margin: 0;
	display: none;
}

#bios h3 {
	font-size: 16pt;
	font-weight: normal;
	font-style: normal;
}

#bios .indent {
	position: relative;
	left: 50px;
	display: block;
	width: 550px;
}

#bios p {
	font-size: 11pt;
	font-family: "Courier New", Courier, monospace;
	text-align: justify;
	padding-right: 8px;
	display: block;
}

#bios p.small {
	font-size: 5pt;
}

#bios h2 {
	font-size: 19pt;
}

#bios h3 {
	font-size: 11pt;
	font-weight: normal;
	text-indent: 20px;
	font-family: "Courier New", Courier, monospace;
}

#bios a:link, #bios a:visited, #bios a:active {
	color: #000;
	text-decoration: underline;
}

#bios a:hover {
	color: #777778; 
	text-decoration: underline;
}

#bios #assignment {
	width: 611px;
	left: 30px;
	position: relative;
}

#bios #leftcol {
	width: 150px;
	padding-right: 2px;
	float: left;
}

#bios #rightcol {
	width: 410px;
	float: left;
	padding-left: 2px;
}

#bios .currentday {
	background: #C3FFF6;
}

div.clear { clear: both; }