@charset "UTF-8";

body {
	background: url(../images/BackgroundFade.png) top left repeat-x #ababab;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	font: 100% "Trebuchet MS", Verdana, sans-serif;
}
h1,h2,h3,h4,p {
	margin: 0; /* zero the default margins on headers and paragraphs it's often way too much */
	padding: 0;
	}
h2 {
color: #1f60a9;
}

a:hover { /* Sitewide link hover color is set here */
	color:#ff9900;
}
/* CONTAINER is specified HERE, this is the region that will contain all our content */
#container {
	position:relative; /* This should establish a positioning context for child elements */
	min-width: 760px; 
	max-width: 900px;
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/* border: 1px solid #000000;  this puts a border around the whole shebang - it's totally optional */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
/* Header Begins */ 
#header { 
	background: #0b1966 url(../images/top_double_fade.jpg) top left repeat-x; /* Sets the background color of the header. */
	margin: 0;
	padding: 0;  /* this padding can be set to match 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. */
	border-bottom: 1px solid #1f60a9;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#header #logo {
	margin: 20px 0;
	}
/* Header Ends */

/* SIDEBAR and define some elements */
#side {
	float: left; /* since this element is floated, a width must be given */
	width: 170px;
}
#sidebar {
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: url(../images/sidebarTile.gif) repeat-y; /* the background of the sidebar. We're using an image with a 5px vertical rule. This will be displayed for the length of the content in the column, but no further */
	padding:8px 0 0;
	margin:0;
}
#sidebar h3 {
	color: #fff;
	padding:0 0 .5em 1em;
	}
#sidebar p {
	font-size: 80%;
	color: #fff;
	line-height: 120%;
	display: block;
	width: 140px;
	margin: 0 .5em 1.25em 1.5em;
	}
#sidebar ul {
	list-style-type: none; /* Set the UL element to 'none' rather than in individual LI elements */
	margin: 0 .5em 0 0;
	padding: 0;
}
#sidebar li {
	color: #fff;
	font-size: 75%;
	padding: 0 0 1em 1.12em;
	margin: 0 0 0 1.25em;
	background: transparent url(../images/orangeDiamondTrans.gif) no-repeat left 4px;
	vertical-align: middle;
	}
#sidebar li a {
	color: #fff;
	text-decoration: none;
	}
#sidebar li a:hover {
	color:#ff9900;
	text-decoration: none;
	}
#sidebar img.logo {
	margin: .75em 0 1em 2px;
	}
#sidebox {
	background: #0B1966;
	width: 140px;
	border: 2px solid #2E80BA;
	margin-left: 8px;
	padding: 3px;
	margin-bottom: 10px;
}
#sidebox h1 {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
	color: #FFFFFF;
}
#sidewhite {
	background: #FFFFFF;
	width: 155px;
	padding-top: 10px;
	padding-bottom: 40px;
	padding-left: 15px;
}
#sidewhite p {
	color: #666666;
	font-size: 10px;
	margin-bottom: 10px;
}
#sidewhite a:link, #sidewhite a:visited {
	color: #666666;
	text-decoration: underline;
}
#sidewhite a:hover, #sidewhite a:visited:hover {
	color: #FF6600;
	text-decoration: underline;
}

/* Sidebar styling ENDS */

/* Main Content BEGINS */
#content {
	margin: 0 0 0 170px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 680px;
}
#content h1 { /*controls H1 inside the Main Content area */
	color: #333;
	font-size: 120%;
	padding: 0;
	margin: 0 0 1em 0;
	}
#content h2 {
	font-size: 100%;
	}
#content h3 { /*controls H3 inside the Main Content area */
	color:#1f60a9;
	font-size: 100%;
	margin: 20px 0 0.8em;
	border-top: 1px solid #1f60a9;
	padding-top: 5px;
	}
/* This is an "adjacent sibling selector" that causes a subtle indentation but ONLY when an H3 follows and H2 in the Content area */
#content h2+h3 {
	margin: -.6em 0 .8em .5em;
	}
#content h3 a:link, #content h3 a:visited {
	color:#1f60a9;
	text-decoration: none;
}
#content h3 a:hover, #content h3 a:visited:hover {
	color: #FF6600;
	text-decoration: underline;
}
#content p { /*controls paragraph spacing and line-height inside the Main Content area */
	font-size: 80%;
	line-height: 140%;
	margin: .5em 0 .8em 0;
	}
#content ul {
	padding: 0;
	margin: .5em 0 1em 2em;
	list-style: disc url(../images/rightboxarrow.gif) outside;
	}
#content ol {
	padding: 0;
	margin: .5em 0 1em 2em;
	}
#content li {
	font-size: 80%;
	padding: 0;
	margin: 0 0 .75em 0;
	}
/* the following styles are for the geeks in the crowd */
#content lh {
	font-size: 90%;
	font-weight: bold;
}
#content dt {
	font-size: 80%;
	padding: 0;
	margin:0;
	color:#660000;
	}
#content dd {
	font-size: 80%;
	padding: 0;
	margin: 0 0 .75em .5em;
}
#content a:link, #content a:visited {
	color: #0B1966;
	text-decoration: underline;
}
#content a:hover, #content a:visited:hover {
	color: #FF6600;
	text-decoration: underline;
}
/* Main Content ENDS */

.backtop {
	font-style: italic;
	padding-bottom: 40px;
}

/* Footer BEGINS */
#footer { 
	padding: 0 0 20px 0;
	background:#fff; 
	text-align: center;
} 
#footer a:link, #footer a:visited {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
	color: #0B1966;
	text-decoration: underline;
}

#footer a:hover, #footer a:visited:hover {
	color: #FF6600;
	text-decoration: underline;
}
	
/* Footer ENDS */

/* Misc styles (floats, etc.) BEGIN */
.floatright { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	}
.floatrightBoxed { /* this class floats an item and places a gray border with 4px of padding */
	float: right;
	margin-left: 8px;
	padding: 4px;
	border: 1px solid #ccc;
	}
.floatleft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	}
.floatleftBoxed { /* this class floats an item and places a gray border with 4px of padding */
	float: left;
	margin-right: 8px;
	padding: 4px;
	border: 1px solid #ccc;
	}
.nofloatBoxed { /* This class just boxes an image, no floats */
	padding: 4px;
	margin: 4px;
	border: 1px solid #ccc;
	background: #fff;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
	}
/* Misc styles END */

/* Optional Floated Box BEGINS */
#rightBox {
	float: right;
	width: 220px;
	padding: 2px 8px;
	margin: 0 0 .5em .5em;
	background: #f5f5f5;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-left: 1px solid #CCCCCC;
	}
#rightBox p {
	font-size: 65%;
	line-height: 130%;
	color: #000;
	}
#rightBox ul {
	font-size: 14px;
	list-style: disc url(../images/rightboxarrow.gif) outside;
	margin-left: 15px;
}
#rightBox li {
	border-bottom: 1px solid #CCCCCC;
	padding-bottom: 5px;
}
#rightBox h3 {
	font-size: 65%;
	text-align: right;
	border-style: none;
	margin: 0px 0px 5px;
	padding: 0px;
}
#rightBox a:link, #rightBox a:visited {
	color: #0B1966;
	text-decoration: none;
}
#rightBox a:hover, #rightBox a:visited:hover {
	color: #FF6600;
	text-decoration: underline;
}
/* Floated Box ENDS */

/* Gloabal Navigation - appears on every page - BEGINS */
#globalNavigation {
	float: right;
	margin:0;
	padding:0 0 4px 0;
	position: relative;
	left: 0;
	top: 60px;
	width:250px;
	height:15px;
	z-index: 99;
}
#globalNavigation ul {
	margin:0;
	padding: 0 0 0 15px;
	list-style: none;
	}
#globalNavigation li {
	background: none;
	display: inline;
	color: #0b1966;
	font-size: 9px;
	font-weight: normal;
	padding: 0 8px 0 0;
	margin: 0;
	}
#globalNavigation a {
	color: #fff;
	text-decoration: none;
	}
#globalNavigation a:hover {
	color: #FF9900;
	text-decoration: underline;
	}
/* Global Navigation ENDS */


#RightColumn {
	width: 47%;
	float: right;
	border-left: 1px solid #666666;
	padding: 5px 0px 5px 15px;
	margin-left: 10px;
	overflow: hidden;
	min-height: 400px;
}
#TwoColumnLined {
	width: 97%;
	padding: 5px 15px 5px 0px;
	float: right;
}
#TwoColumnLined ul {
	list-style: url(../images/checkbox1.gif);
	vertical-align: bottom;
}





#buttons ul {
	list-style: none;
	margin-left: 0px;	
}
#buttons li {
	display: inline;
	font-size: 16px;
	font-weight: bold;
	background: #CCCCCC;
	padding: 10px;
	border: 1px solid #999999;
}



/* Horizontal Bar BEGINS */

#horizontalbar {
	background: url(../images/finaid_header.png) no-repeat left top;
	margin-left: 170px;
	padding-top: 60px;
	text-align: center;
	border-bottom: 1px solid #CBCBCB;
}
#horizontalbar ul {
	list-style: none;
	padding-left: 5px;
	padding-bottom: 3px;	
}
#horizontalbar li.mid {
	display: inline;
	font-size: 12px;
	padding-right: 5px;
	border-right: 1px solid #B2B2B2;
	font-weight: bold;
	width: 2000px;
}

#horizontalbar li.end {
	display: inline;
	font-size: 12px;
	padding-right: 5px;
	font-weight: bold;
	width: 2000px;
}
#horizontalbar a:link, #horizontalbar a:visited {
	color: #0B1966;
	text-decoration: none;
}
#horizontalbar a:hover, #horizontalbar a:visited:hover {
	color: #FF6600;
	text-decoration: underline;
}
.horizontalbarfirst {
	padding-left: 5px;
	border-left: 1px solid #B2B2B2;
}
/* Horizontal Bar ENDS */


/* LEAVE THIS STYLE BLANK!!!!! */
.thickbox {
}
/* LEAVE THIS STYLE BLANK!!!!! */	

.red {color: #cc0000;}

.date {
	background: #666;
	color: #FFFFFF;
	margin-top: 50px;
	padding: 7px;
}
.pdflink {
background: url(../images/pdf.gif) no-repeat right center;
padding: 5px 20px 5px 0px;
}
.extlink {
	background: url(../images/extlink.png) no-repeat right center;
	padding: 5px 15px 5px 0px;
}
.videolink {
	background: url(../images/video.gif) no-repeat right center;
	padding: 5px 30px 5px 0px;
}
.buttons {
    overflow: hidden;
    width: 100%;
}

a.button {
	background: transparent url('../images/buttonBlue2.png') no-repeat scroll top right;
	color: #FFFFFF;
	display: block;
	float: left;
	height: 36px;
	margin-right: 6px;
	padding-right: 24px;
	text-decoration: none;
	font: bold 14px Arial, Helvetica, sans-serif;
	width: 200px;
	text-align: center;
}

a.button span {
    background: transparent url('../images/buttonBlue1.png') no-repeat;
    display: block;
    line-height: 26px;
    padding: 5px 0 5px 24px;
} 
a.button:hover {
    background-position: bottom right;
    color: #000;
    outline: none; 
}

a.button:hover span {
    background-position: bottom left;
    padding: 6px 0 4px 24px;
} 
