/* =1. General Layout (backgounds, dimensions, positions) */

	/* =1a Header and Nav (above container) */
	/* =1b Container and Bottom Nav */
	/* =1c Footer (below container) */

/* =2. General Styling (colors, typography, whitespace) */

	/* =2a Links (Nav, Non-Nav, Footer Nav) */
	/* =2b Content Copy */

/* =3. Page-Specific Layout/Styling */

	/* =3a Home */
	/* =3b About */
	/* =3c Contact */



/* ================================================== */
/* =1. General Layout (backgounds, dimensions, positions) */


body {
	background: #253542 url(bg_body.png) center top no-repeat fixed;
	font-size: 62.5%;						/* value of 62.5% makes 1em roughly equivalent to 10px */
}

	/* ================================================== */
	/* =1a Header and Nav (above container) */

#header-graphic {
	background: url(gr_sun.png) right top no-repeat;
	height: 250px;
	position: fixed;
	right: 0;
	top: 0;
	width: 250px;
}
#header-row {
	margin: 0 auto 0 auto;
	padding-top: 70px;					/* for positioning across browsers especially IE */
	height: 65px;
	width: 760px;
}
#logo {
	background: url(logo.png);
	float: left;
	height: 65px;
	width: 250px;
}
#nav {								/* defined width causes IE6 gap below this element */
	float: right;	
	height: 65px;
	line-height: 65px;					/* vertical centering */
	margin-right: 38px;					/* modify as needed; aligns right-edge of last nav link with right-edge of copy */
}
#nav li {
	float: left;
}
#nav li a {
	display: block;						/* helps increase clickable area */
	float: left;
	line-height: 40px;
	margin: 8px 5px 0 5px;
	text-align: center;
}
.center-this {
	text-align: center;
}
.link-home {
	background: url(bg_navlink1.png) left top no-repeat;
	height: 40px;						/* vertical centering */
	width: 70px;
}
.link-abou {
	background: url(bg_navlink2.png) left top no-repeat;
	height: 40px;
	width: 80px;
}
.link-cont {
	background: url(bg_navlink3.png) left top no-repeat;
	height: 40px;
	width: 94px;
}

	/* ================================================== */
	/* =1b Container and Bottom Nav */

#container {							/* position attribute causes issue in IE6 */
	margin: 0 auto 200px auto;
	width: 750px;			/* W, 1 of 4 */
}
#container-top {
	background: url(bg_container_top.png) center top no-repeat;
	background-color: transparent;
	height: 15px;
	width: 750px;			/* W, 2 of 4 */
}
#container-middle {
	background: url(bg_container_middle.png) center top repeat-y;
	width: 750px;			/* W, 3 of 4 */
}
#container-bottom {
	background: url(bg_container_bottom.png) center top repeat-y;
	height: 15px;
	width: 750px;			/* W, 4 of 4 */
}
#bottom-rule {
	background: url(bottom_hr.png) center top no-repeat;
	clear: both;						/* ensures element is below any floated siblings */
	height: 25px;
	margin: 0 auto;
	width: 670px;						/* width of parent (W) minus horizontal padding (P) */
}
#bottom-nav {
	float: right;						/* for IE */
}
html body #content #bottom-nav ul li {		/* specificity ensures styling precedence over any styling to sibling lists */
	float: left;						/* for IE */
	list-style: none;
	margin-left: 0;
}
#bottom-nav a {
	background: none;
	float: left;
	text-align: center;
}

	/* ================================================== */
	/* 1.c Footer (below container) */
	
#footer-graphic {
	background: url(gr_waves.png) right bottom no-repeat;
	bottom: 0;
	height: 220px;
	left: 0;
	position: fixed;
	width: 750px;
}

/* ================================================== */
/* =2. General Styling (colors, typography, whitespace) */


	/* ================================================== */
	/* =2a Links (Nav, Non-Nav, Footer Nav) */

#nav a {
	color: #435b6b;
	font-family: "FertigoPro Regular", "Myriad Pro", Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
}
#nav li a:hover, #page-home #nav .link-home, #page-abou #nav .link-abou, #page-cont #nav .link-cont {
	background-position: 0px -40px;
}
#content a {							/* non-nav links */
	color: #00acec;
}
#content a:hover {
	color: #9c1a20;
}
#content a:visited {
	color: #9c1a20;
}	
#content #bottom-nav a {
	color: #748793;
	text-decoration: none;
	text-transform: uppercase;
}
#bottom-nav a:hover, #page-home #bottom-nav .link-home, #page-abou #bottom-nav .link-abou, #page-cont #bottom-nav  .link-cont {
	font-weight: bold;
}

	/* ================================================== */
	/* =2b Content Copy */

#content {							/* top- and bottom-margins create gaps between image slices */
	font-family: Verdana, sans-serif;
	font-size: 1.2em;
	line-height: 1.8em;
	overflow: hidden;					/* extends element downward to cover any floated children */
	padding: 20px 40px;	/* P */	/* too much left- and right-padding causes alignment issues in IE6 */
	text-align: left;
}
#content h1, #content h2, #content h3 {
	font-family: "FertigoPro Regular", "Myriad Pro", Helvetica, sans-serif;
	font-weight: bold;
	line-height: 1.3em;
	padding-top: 0.8em;
}
#content h1 {
	color: #9c1a20;
	font-size: 2.4em;
	font-weight: normal;
}
#content h2 {
	color: #333;
	font-size: 1.6em;	
}
#content h3 {
	color: #9c1a20;
	font-size: 1.6em;
}
#content hr {
	background: #808080;
	border: 0;
	color: #808080;						/* for IE */
	height: 1px;
	margin: 5px 0 10px 0;
}
#content p {
	margin: 1.2em 0;
}
#content light {
	margin: 1.2em 0;
	color:#999;
	margin-left:20px;
}
#content strong {
	font-weight: bold;
}

/* ================================================== */
/* =3. Page-Specific Layout/Styling */

	/* ================================================== */
	/* =3a Home */

	/* ================================================== */
	/* =3b About */

#page-abou #content h3 {
	padding-bottom: 0.8em;					/* supplements top padding */
}
#page-abou #content li {
	list-style: disc;
	margin-left: 3em;
}
#page-abou #content table {
	margin-bottom: 1em;
}
#page-abou #content table td.course-name {
	width: 400px;
}
#page-abou #content table td.course-code {
	width: 100px;
}
#page-abou #content table td.alt {
	background: #e5e5e5;
}

#page-abou #content .back-to-top {
	text-align: right;
}
#page-abou #content .clear-this {
	clear: both;
	font-size: 1px;
	height: 1px;
}
#page-abou .partner-block {
	float: left;
	margin: 1.4em 0;
	width: 48%;
}
#page-abou .partner-block .partner-logo {
	color: #9C1A20;
	font-size: 2.4em;						/* for text in absence of image */
	height: 50px;
	line-height: 50px;						/* value should be same as height */
	margin: 0;
}
#page-abou .partner-block p {
	margin: 0.6em 0;
}
#page-abou .leftside {
	margin-right: 10px;
}
#page-abou .rightside {
	float: right;
	margin-left: 10px;
}
#page-abou .top-link {
	font-size: 0.1px;
	margin: 0;
	padding: 0;
}


	/* ================================================== */
	/* =3c Contact */

#page-cont dl, #page-cont dt, #page-cont dd {
	float: left;
}
#page-cont dt, #page-cont dd {
	font-weight: bold;
	margin: 0.4em 0;
}
#page-cont dl {
	font-size: 1.6em;
	line-height: 1.2em;
	margin-bottom: 0.4em;
	width: 100%;
}
#page-cont dt {
	clear: left;
	color: #999999;
	width: 24%;
}
#page-cont dd {
	color: #333;
	width: 76%;
}
