/*
 * The CSS (Cascading Style Sheet) for the entire site.
 * 
 * # stands for an ID (ex. id="math-example")
 * . stands for class (ex. class="content")
 * 
 * Items given after the first represent items
 * found nested within. For example "#math-example div"
 * means all divs within the Item with an id of "math-example".
 */

html
{
	background: #AAAAAA;
	font-family: Helvetica, Arial, sans-serif;
}

body
{
	background: #FFFFFF;
	width: 900px;
	margin: auto;
}

a:link
{
	color: #0000FF;
	text-decoration: underline;
}

a:hover
{
	color: #0000FF;
	text-decoration: underline;
}

a:visited
{
	color: #0000FF;
	text-decoration: underline;
}

#header
{
	height: 100px;
	line-height: 100px;
	background: rgba(0,75,133,1);
}

#header-text
{
	font-size: 36px;
	color: #FFFFFF;
	text-align: center;
}

#header-photo
{
	color: #FFFFFF;
	text-align: left;
}

#jump-menu
{
	display: block;
	margin-left: 350px;
	margin-right: 350px;
	float: center;
	width: 876px;
	position: auto;
	border-bottom: 2px solid;
	margin: 10px 0px 0px 10px;
}

#jump-menu ul
{
	list-style: none;
	padding: 0px 5px 0px 5px;
	
}

.content
{
	background: #FFFFFF;
	height: auto;
	text-align: center;
	padding-left: 60px;
	padding-right: 60px;
}

.content ul
{
	list-style: none;
	padding-left: 0px;
}

.content h1 
{
	text-decoration: underline;
}

#math-example div /*Can be removed/changed when deployed */
{
	border-bottom: 2px solid;
}

#stat-example div /*Can be removed/changed when deployed */
{
	border-bottom: 2px solid;
}

#schedule
{
	margin-left: auto;
	margin-right: auto;
}

#schedule td
{
	padding: 5px;
}

#schedule th
{
	padding: 5px;
}

#teach-photo
{
	display: block;
	margin-left: auto;
	margin-right: auto;	
	margin-top: 5px;
	margin-bottom: 10px;
	box-shadow: 10px 10px 5px #888;
}

#mc-logo
{
	margin: 0px;
	float: left;
}

#footer
{
	padding-bottom: 5px;
	padding-top: 5px;
	background: #AAAAAA;
}

#footer p
{
	font-size: 14px;
	text-align: center;
	margin: 0px
}