/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
    background: #7f7f7f url(../img/stripe_grey.png) top left;

	
	font-family:arial,sans-serif;
	font-size: small;
	color:#666;
}

h1 { 
	/*font:1.5em georgia,serif; */
	margin:0.5em 0;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}

h1, h2{
		color:orange;
}

a {
    color: #222244;
}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:700px;
	background:#f0f0f0;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
}

div#header {
    position: relative;
    margin-top: 10px;
	background:black url("../img/teachCL.png") no-repeat top left;
    width: 700px;
    height: 150px;
    top: 0px;

    color: #FFFF00;
    font-family: helvetica,  sans-serif, Verdana, Arial;
    
	border-bottom:6px double gray;
}
	div#header p {
		font-style:italic;
		margin:0;
	}

    div#header h2 {
        text-align: right;

    }

    div#header h3 {
    }


div#header_title {
    position: absolute;
    width: 350px;
    height: 50px;
    top: 20px;
    left: 25px;

	font: 4.0em helvetica,sans-serif, Verdana, Arial;
    font-weight: normal;
    color: #FFFF00;
    
}

#header_subtitle {
    position: absolute;
    width: 300px;
    top: 20px;
    right: 10px;
    text-align: right;
}

div#header_text {
    position: relative;
    top: 100px;
    left: 450px;
}


div#content {
    position: relative;
	padding:1em 1em 5em; /* bottom padding for footer */
	font-size: 110%;
	color: black;
}
/*
	div#content p {
		text-align: left;
		padding:0 1em;
	}
*/

div#content_text {
    
    position: relative;
    outline: black dashed;
}



div#footer {
	position:relative;
	width:700px;
	bottom:0; /* stick to bottom */
	background:#ddd;
	border-top:6px double gray;
}


div#footer p {
		padding:1em;
		margin:0;
}

div#navbar {
    position: relative;
	border-bottom:6px double gray;
    width: 700px;
    height: 45px;
    background: #EEEE80;
}

a:link#navbar, a:visited#navbar {
    color: white;
    text-decoration: none;
}

a:hover#navbar {
    text-decoration: underline;
}




.navitem {
    position: relative;
    float: left;
    margin-top: 10px;
    color: #FFFFFF;
    background: #7F7F7F;
    text-align: center;
    outline: black solid 1px;
    padding: 5px;
    margin-left: 5px;
}

.navitem_onmouseover {
    position: relative;
    float: left;
    margin-top: 10px;
    color: #FFFFFF;
    background: #333333;
    text-align: center;
    outline: black solid 1px;
    padding: 5px;
    margin-left: 5px;
}

