/* Scholarship America - SMS Website Design 2 */

/*   COLOR CODES
E8E8E8 = lightest grey for background frame
D8D8D8 = light grey for footer background (2)
606060 = medium grey for other 3 borders, hover links
4A4A4A = darkest grey for text
2F64AB = Scripps logo blue for links (2), main border, Hs, footer text
0066CC = brighter blue for visited links
*/


body {
	color:#4A4A4A;
	text-align: center;
	font: 100% Arial, Helvetica, sans-serif;
	margin: 10px 0;
	background-color: #E8E8E8;
}
	
a:link {color:#2F64AB; font-weight:bold}
a:visited {color:#0066CC; font-weight:bold}
a:active {color:#2F64AB;}
a:hover {color:#606060; text-decoration:none}		

/* For registered marks in footer. */
span.sup {
	font-size: 60%;
	padding: 0px;
	margin: 0px;
	vertical-align: super; 
	line-height: 0; 
	}
	
/* For no bullet on list items. (indenting only, Contacts page) */	
li.none {list-style-type: none;}	


/* For no bullet, asterisk list items. (indents, italics, smaller font) */
li.asterisk {
	list-style-type: none;
	font-style: italic;
	font-size: 85%;
}

	
#wrapper {
	text-align: left;
	width: 760px;
	margin: 0 auto;
	background: #FFFFFF;
	border: #2F64AB 3px solid;
}

#right {
	float:right; 
	width: 140px;
	padding: 10px;
}

#left {
	float:left;
	width: 550px;
	border-right: 1px dotted #606060;
	padding: 20px;
}

#footer{
	clear:both;
	height:70px;
	text-align: center;
	border-top: 1px solid #606060;
	background-color: #D8D8D8;
}

p {
	font-size: 90%; 
	color: #4A4A4A;
}
	

h1 {
 	font-size: 150%;	
 	color: #2F64AB;
	border-bottom: 4px solid #606060;
}

h2 {
	font-size: 120%; 
	color: #2F64AB;
	margin: 0px;
}

h3 {
	font-size: 105%; 
   	color: #2F64AB;	
   	margin: 0px 0px; 
}

#right p {
	font-size: 95%; 
	color: #666;
	line-height: 1.2em;
}

#left p {
	font-size: 100%; 
	color: #666;
	line-height:1.2em;
}

#footer p {
	margin-top: 10px;
	font-size: 70%;
	color:#2F64AB;
	background-color: #D8D8D8;
}

.imgright {
	float: right;
	padding: 8px;
}

.imgleft {
	float: left;
	padding: 8px;
}


