@charset "utf-8";
/* SITEWIDE STYLES */
/* see sophiaspcl.css for styles applicable to certain pages */
html { height: 100%;}
body {
	font: 100% Arial, Helvetica, Verdana, sans-serif; /* use caution if adding customized fonts as anything other than Arial or Times New Roman or similar simple fonts that everyone has may display in unexpected ways */
	background: #ffffff; /* slight off-white cream, change to #fff for plain white */
	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: #000000;
	height: 100%;
}
img { border: none; }
a:link { text-decoration: underline; color: #000} /* unvisited link */
a:visited { color: #333; }  /* visited link */
a:hover { color: #333; }  /* mouse over link */
a:active { color: #666; }  /* selected link */ 
h1 { font-size: 1.2em; font-weight: bold; margin: 3px 0; }
h2 { font-size: 1.1em; font-weight: bold; margin: 2px 0; }
h3 { font-size: 1em; font-weight: bold; margin: 1px 0; }
p { font-size: 1em; margin: 1px 0; }
ul { margin: 0; padding: 0; }
ul li { margin: 0; padding: 0; }

/* SITEWIDE STYLES: sections */
#container {
	width: 80%;  /* this will create a container 80% of the browser width */
	min-height: 400px;
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #CCC;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	padding: 10px;  /* this padding matches 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. */
	min-height: 120px;
}
#header h1, #header h1 a{
	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: 2px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-decoration:none;
	font-size: 1.7em;
}
#header h2, #header h2 a {
	color: #666;
	text-decoration:none;
	font-size: 1.2em;
}
#header h3, #header h3 a {
	color: #666;
	text-decoration:none;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
/* Primary left vertical navigation */
ul.navleft {
	list-style: none;
	padding: 0;
	position: fixed;
	z-index: 99; /* position and z-index allow this menu to float over and scroll with everything */
}
ul li.navleft {
	padding: 5px 3px;
}
ul li.navleft a {
	text-decoration:none;
}
ul li.navleft a:hover, ul li.navleft a:active {
	font-weight:bold;
}
/* column settings */
#mainContent #colleft {
	float: left;
	width: 20%;
	height: 100%;
	padding: 0 5px;
}
#mainContent #colctr {
	margin: 0 auto;
	padding: 0 5px;
}
#mainContent #colctr h1 {
	text-align: center;
}
#mainContent #colright {
	float: right;
	width: 20%;
	padding: 0 5px;
}

#footer {
	margin: 0 auto;
	padding: 10px;
} 
#footer p {
	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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: .8em;
}
#footer p a:hover, #footer p a:active {
	font-weight:bold;
}
#footer p.webdev {
	width: 80%;
	margin: 10px auto;
	text-align: right;
	font-size: .7em;
	font-style: italic;
}
#footer p.webdev a, #footer p.webdev a:hover {
	color: #666;
	font-weight: normal;
}
#footer p.webdev a:hover {
	color: #000;
}

/*MISC CLASSES*/
.ctr { /* use this class to center any text or image enclosed in a paragraph or heading */
	text-align: center;
}
.lft { /* use this class to left align any text or image that is otherwise centered */
	text-align: left;
}
.rt { /* use this class to right align any text or image--when floating is not needed */
	text-align: right;
}
.imginstr { /* style class for gentle notes */
	padding-left: 20%; /* prevent overlap w/ left nav column */
	color: #666;
	font-size: .85em;
	font-style: italic;
}
.fineprint {
	color: #999;
	font-size: .8em;
	font-style: italic;
	font-weight: normal;
}
.finectr, .finectr a {
	color: #333;
	font-size: 12px;
	font-style: italic;
	font-weight: normal;
	text-align:center;
}
.fltlt {
	float: left;
}
.fltrt {
	float: right;
}
.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;
}
