@charset "utf-8";
body  {
	background: #e6e7e8;
	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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 140%;
}
img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

#pageWrapper  {
	background: url(images/wallpaper.png);
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
a {
	color: #5A7E94;
	text-decoration: none;
}
a:hover {
	color: #AEAEAE;
}
#container  {
	width: 920px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(images/smallwallpaper.png) repeat-y left top;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
} 
#header  {
	background: #fff;
	padding: 20px 0 20px 20px;  /* 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. */
} 
#header #studentQuote {
	position: absolute;
	height: 90px;
	width: 400px;
	font-family: Verdana, Geneva, sans-serif;
	font-style: italic;
	text-align: center;
	left: 519px;
	top: 30px;
}

#container #navbar {
	height: 37px;
}
#header #contactContainer {
	position: absolute;
	top: 30px;
	right: 10px;
	text-align: right;
	height: 60px;
	width: 200px;
	font: bold 14px Arial, Helvetica, sans-serif;
}
.callUs {
	color: #999;
}
#sidebar1  {
	float: right; /* since this element is floated, a width must be given */
	width: 238px; /* 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/smalltopbox.png) no-repeat left top; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 12px 0 0;
	margin-top: 10px;
}
#mainContent  {
	margin: 10px 250px 0 0; /* the right margin on this div element creates the column down the right 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: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#sidebar1 h3 {
	margin: 0px 0px 0px 35px;
	padding: 0px;
	color: #5A7B9C;
}
#footer  {
	padding: 20px 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(images/footer-bg.png);
	height: 54px;
	font-size: 11px;
	color: #ACACAC;
	margin-top: 20px;
	word-spacing: 0.3em;
} 
.fltrt { /* 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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
#container #navbar ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
#container #navbar ul li {
	float: left;
}
#container #navbar ul a {
	display: block;
	height: 25px;
	width: 131px;
	font: bold 12px/13px Arial, Helvetica, sans-serif;
	color: #555;
	text-decoration: none;
	text-align: center;
	padding-top: 12px;
	background: url(images/unlit.png) no-repeat left top;
}
#contactContainer a {
	font-size: 11px;
	text-decoration: none;
	color: #555;
	display: block;
	margin-top: 5px;
}
#navbar ul #leftnav a {
	background: url(images/unlitleft.png) no-repeat left top;
	width: 132px;
}
#navbar ul #rightnav a {
	background: url(images/unlitright.png) no-repeat right top;
	width: 133px;
}
#container #navbar ul a:hover {
	background: url(images/lit.png) no-repeat left top;
	color: #FFF;
}
#navbar ul #rightnav a:hover {
	background: url(images/litright.png) no-repeat right top;
	color: #FFF;
}
#navbar ul #leftnav a:hover {
	background: url(images/litleft.png) no-repeat left top;
	color: #FFF;
}
#container #mainContent.HomeMainContent {
	background: url(images/largetop.png) no-repeat left top;
	padding-top: 12px;
	width: 668px;
}
#container #mainContent h1 {
	font-size: 18px;
	line-height: 18px;
	color: #5A7B9C;
	margin: 0px 0px 0px 40px;
	padding: 0px;
}
#mainContent #homeContentContainer {
	padding: 10px 20px;
	background: url(images/large-bottom.png) no-repeat left bottom;
	border-right: 1px solid #E7E7E7;
	border-left: 1px solid #E7E7E7;
	margin-top: 10px;
}
#container #mainContent h2 {
	font-size: 14px;
	line-height: 14px;
	color: #5A7B9C;
	margin: 0px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sidebar1 #sidebarContent {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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/smallboxbottom.png) no-repeat left bottom; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 10px 19px 15px;
	margin-top: 10px;
}
#container #mainContent.AdminMainContent {
	background: url(images/largetop.png) no-repeat left top;
	padding-top: 12px;
	width: 100%;
}
#schedule td {
	padding: 5px;
	border-bottom: 1px solid #CCC;
}
#schedule th {
	text-align: left;
	padding: 5px;
	border-bottom: 3px solid #ACACAC;
	color: #555;
}
.moreAbout {
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid #5A7B9C;
}
.regFormLabel {
	width: 120px;
	font-weight: bold;
	display: inline-block;
}
.locationSmall {
	font-size: 9px;
	font-style: italic;
	font-family: Georgia, "Times New Roman", Times, serif;
	line-height:120%;
}
.TagLine {
	color: #B6B6B6;
	word-spacing: 0.1em;
}
#sidebar1 #sidebarContent p {
	line-height: 140%;
}
.PortfolioContainer {
	padding: 5px;
	float: left;
	height: auto;
	width: 160px;
	border: 1px solid #EAEAEA;
	text-align: center;
	font-size: 11px;
	color: #B0B0B0;
	margin-right: 20px;
	line-height: 14px;
	margin-top: 10px;
}
.newsCopy {
	font-size: 11px;
	line-height: 16px;
}
.sale {
	font-size: 16px;
	font-weight: bold;
	color: #F00;
}
.PortfolioContainer .featureProjectDescription {
	font-size: 11px;
	line-height: 16px;
	margin-top: 10px;
	margin-right: 5px;
	margin-bottom: 5px;
	color: #000;
	text-align: left;
}

