/* Make CSS notes invisible by placing between these tags */

body { margin: 0; padding: 0; text-align: center; background: #e5e5d8;}


/* Below:  All these are global styles applied to everything.  However, they can be overwritten later in the CSS */
* {margin: 0; padding: 0; border: 0; text-align: left; font-family: Arial, sans-serif; font-size: 13px; line-height: 18px; color: #000; }

/* main nav */

/* Layout */

#container { /* the container contains all the divs and makes sure they are centrally aligned.  Note that IE uses the text-align: center; in the body to align everything centrally */
	margin: 0 auto; 
	width: 780px; 
	background: transparent;
	}

#univ-header { width: 780px; height: 123px; background: transparent; } /* This div allows an area for the main navigation tabs */

#hdr {  /* header/banner area */
	width: 780px;
	height: 196px;
	padding-top: 5px;
	padding-bottom: 5px;
	background: #000;
}

#maincol {  /* main column where the main text etc is located */
	float: left;
	width: 780px;
	margin-right: 20px;
	background: #9e9e9e;
}

#bttmbar {  /* bottom bar houses the copyright information and the bottom navigation */
	vertical-align: middle;
	float: left;
	width: 750px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 15px;
	background: #000; 
	overflow: hidden;
}

#lowestrow {  /* bottom bar houses the copyright information and the bottom navigation */
	margin-bottom: 50px;
	vertical-align: middle;
	line-height: 35px;
	float: left;
	width: 780px;
	line-height: 12px;
	overflow: hidden;
}

#lowestrow span#copyright {   /*styles for the copyright text */
	float: left;
	padding-top: 3px;
	color: #000;
}

#lowestrow span#designedby {   /*styles for the copyright text */
	float: right;
	padding-top: 12px;
	text-align: right;
	color: #000;
}


/* Text styles */

/* Below is the style for the main site title */

#maincol p { color: #000; margin: 50px 25px 50px 25px; letter-spacing: 0px }  /* paragraph text in the main column */

#maincol h1,h2 {    /* Styles for the main column headers */
	margin: 50px 25px 5px 25px; 
	font-family: Georgia, serif; 
	font-size: 17px; 
	font-weight: 100; 
	line-height: 19px; 
	color: #FFF; 
	letter-spacing: 2px
	 }  /* headings in the main column */

#maincol .date {    /* These are the styles for the blog dates */
	margin-left: 25px; 
	font-size: 9px; 
	color: #6488F7;
	letter-spacing: 1px
}

#maincol a:link, #maincol a:visited, #maincol a:active {   /* These are the styles for the Main column links */
	color: #5f272d;
	text-decoration: none;
	text-align: left;
}

#maincol a:hover {   /* These are the styles for the Main column links */
	text-decoration: underline;
	text-align: left;
}

/* Bottom Nav */

#bttmnav-left { float: left; }
#bttmnav-left li {display: inline; font-weight: normal; color: #7b9671;}
#bttmnav-left a {font-size: 12px; text-decoration: none;}
#bttmnav-left a:link, #bttmnav-left a:visited { text-decoration: none; color: #7b9671; }
#bttmnav-left a:hover, #bttmnav-left a:active { text-decoration: underline; color: #7b9671; }

#bttmnav-right { float: right; }
#bttmnav-right li {display: inline; font-weight: normal; color: #9e9e9e;}
#bttmnav-right a {font-size: 12px; text-decoration: none;}
#bttmnav-right a:link, #bttmnav-right a:visited { text-decoration: none; color: #9e9e9e; }
#bttmnav-right a:hover, #bttmnav-right a:active { text-decoration: underline; color: #9e9e9e; }

#lowestrow a:link, #lowestrow a:visited, #lowestrow a:visited {   
	color: #000;
	text-decoration: none;
	text-align: left;
}
#lowestrow a:hover { 
	color: #000;
	text-decoration: underline;
	text-align: left;
}


/* Normal lists */

#maincol ul {   /* styles main area unordered(bulleted) lists */
	margin-top: 15px; /* This margin is the top margin of the WHOLE list, hence why it is specified in ul and not li */
	margin-bottom: 15px; /* This margin is the bottom margin of the WHOLE list, hence why it is specified in ul and not li */
	margin-left: 150px; /* This margin is the bottom margin of the WHOLE list, hence why it is specified in ul and not li */
	list-style: square /* This controls the bullet point style. */
}

#maincol li {  /* List items in the main column */
	color: #C5CEE7;
	margin-left: 10px /* This margin acts as an indent for each list item.  Indenting the whole list doesn't work well in IE. */
}

#maincol ol {   /* styles main area ordered(numbered) lists */
  margin-top: 15px; 
  margin-bottom: 15px; 
  font-size: 0.7em;
  line-height: 1.5em;
  list-style-type:  decimal
 }
