@charset "utf-8";
/* CSS Document */
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #5EAEFF;
	background-image:url(../_images/background_631.jpg);
	background-repeat:repeat-x;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
}
#fullWidthHeader {
  padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center;
  height: 111px;
}
*html #fullWidthHeader {margin:0; padding:0;} /*IE6 HACK*/

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  max-width: 1015px;
  min-width: 800px;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 1015px;
  margin-top:0;
  margin-bottom:0;
}
* html #outerWrapper {  width: 1021px; margin:0; padding:0;} /*IE6 HACK*/

#outerWrapper #topNavigation {
  height: 25px;
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper {
	background-image:url(../_images/background_prep_x.jpg);
	background-repeat:repeat-y;
	padding: 0;
	width: 1015px;
	margin:0;
	overflow: hidden;
}

* html #outerWrapper #contentWrapper {  width: 1021px; margin:0; padding:0;} /*IE6 HACK*/


#outerWrapper #contentWrapper #rightColumn2 {
  background-color: #fff;
  background-image:url(../_images/background_rcol2_y.jpg);
  background-repeat: repeat-y;
  float: right;
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 260px;
  margin:0;
}

/*This is CSS for the DID YOU KNOW section in the right column on some pages*/
#outerWrapper #contentWrapper #rightColumn2 p.didyouknow {
	padding: 5px 15px 5px 15px;
	background-color: #CFF;
	margin: 0 20px 10px 20px;
	font-size:10px;
	font-style:italic;
	color:#666;
	line-height: 12px;
}



/*End Did you know section*/
/*This is CSS for the HOMEWORK TIPS section in the right column on some pages*/
#rightColumn2 p.homeworktips {
	padding: 5px 15px 5px 15px;
	background-color: #CFF;
	margin: 0 20px 10px 20px;
	font-size:10px;
	font-style:italic;
	color:#666;
	line-height: 12px;
}
/*End Homework Tips section*/
/*This is CSS for the CAMPUS RULES section in the right column on some pages*/
#rightColumn2 p.campusrules {
	padding: 5px 15px 5px 15px;
	background-color: #CFF;
	margin: 0 20px 10px 20px;
	font-size:10px;
	font-style:italic;
	color:#666;
	line-height: 12px;
}
/*End Homework Tips section*/
#outerWrapper #contentWrapper #leftColumn1 {
  background-image:url(../_images/background_lcol2_y.jpg);
  background-repeat:repeat-y;
  float: left;
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 180px;
  margin:0;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  background-image:url(../_images/background_content.jpg);
  background-repeat: repeat-y;
  margin-left: 180px;
  margin-right: 260px;
  padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  margin-top:0;
  margin-bottom:0;
  width: 575px;
  
}
#outerWrapper #contentWrapper #content p {
	padding: 0 20px 0 30px;
}


/*Contains the bottom graphic for the page the curve and bar*/
#outerWrapper #contentWrapper #bottom {
	height: 10px;
}
#fullWidthFooter {
  background-color:#CEE7FF;
  border-top: solid 1px #09C; /* Sets the top border properties for an element using shorthand notation */
  border-bottom: solid 4px #09C; /* Sets the bottom border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Commonly used to style page titles. */
h1 {
  color: #0099CC;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: bold;
  padding: 0 0 0 30px;
}
/* Commonly used to style section titles. */
h2 {
  color: #D28826;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 10px 0 0 30px;
}

h2.didyouknow {
	text-transform:capitalize;
	letter-spacing: 1px;
	font-size: 11px;
	background-color:#09C;
	color:#FFF;
	padding: 1px 0 0 0;
	margin: 0 20px 0 20px;
	font-weight:bold;
	text-align:center;
}
h2.homeworktips {
	text-transform:capitalize;
	letter-spacing: 1px;
	font-size: 11px;
	background-color: #F60;
	color:#FFF;
	padding: 1px 0 0 0;
	margin: 0 20px 0 20px;
	font-weight:bold;
	text-align:center;
}
h2.campusrules {
	text-transform:capitalize;
	letter-spacing: 1px;
	font-size: 11px;
	background-color: #690;
	color:#FFF;
	padding: 1px 0 0 0;
	margin: 0 20px 0 20px;
	font-weight:bold;
	text-align:center;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #0066CC;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  text-decoration: none;
}
a:hover, a:visited {
	text-decoration: underline;
}
.floatleft {
	float: left;
	padding-right: 10px;
	padding-bottom: 5px;
}
.red { color:#F00; font-weight: bold;}
.grey { color:#999; font-weight: bold; letter-spacing: 2px;}
.green { color: #693;}
.greytext { color:#666;}
p .nopad { padding-top: 0px;}
.centeredImage
    {
    text-align:center;
    margin-top:0px;
    margin-bottom:0px;
    padding:0px;
    }
.pad_left_15 { margin-left: 15px;}
.pad_left_30 { margin-left: 30px;}
.bold { font-weight:bold; text-decoration: underline;}
.imgleft { float:left; padding-right: 10px;}
#navcontainer ul
{
list-style-type: none;
text-align: left;
padding-left: 0px;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 30px;
}

#navcontainer ul li a
{
background: transparent url(../_images/list-off.gif) left center no-repeat;
padding-left: 12px;
text-align: left;
font: normal 10px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
text-decoration: underline;
color: #000;
}

#navcontainer ul li a:hover
{
background: transparent url(../_images/list-on.gif) left center no-repeat;
text-decoration:underline;
text-decoration:underline;
color:#F00;
}

#navcontainer ul li a#current
{
background: transparent url(../_images/list-active.gif) left center no-repeat;
color: #FFE076;
}