@charset "UTF-8";
body  {
	background-color: #676767;
}
#navigation {
	height:50px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: 390px;
	background-image: url(../images/nav.jpg);
	background-repeat: no-repeat;
	width:557px;
}

#navigation ul li {
	float:left;
	list-style-type:none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #999;
}

#navigation ul li.first {
	border-left:none;
}
#navigation ul li.last {
	border-right:none;
}

#navigation ul li a {
	background:none;
	display:block;
	color:#E7F8FE;
	padding-top: 15px;
	padding-right: 13px;
	padding-bottom: 14px;
	padding-left: 13px;

}

#navigation ul li a:hover {
	text-decoration:none;
	color: #E22D93;

}

.block {
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	width: 950px;
}

#container {
	width: 939px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width:939px; /* min width to avoid collapse and overlap of content. Must be in PX to set static width. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-repeat: repeat-y;
	background-color: #FFF;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #575757;

} 
#header {
	height: 195px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-color: #F5AA1B;
	background-image: url(../images/header_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
} 
#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: 20px 0;
	font-weight: lighter;
	color: #999;
}
#header h1 a:hover {
	text-decoration: none;
}


/* Tips for sidebar:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".wrapper #sidebar p" rule.
*/
#side_front {
	width: 240px; /* top and bottom padding create visual space within this div  */
	padding-right: 10;
	padding-bottom: 0px;
	padding-left: 0;
	float: right;
	padding-top: 10px;
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#side_front h2 {
	margin-right: 10px;
	color:#F5AA1B;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 100;
	font-size: 18px;
	line-height: 24px;
}
#side_front h3 {
	margin-right: 10px;
	color:#E32D92;
	font-family: "Arial Narrow";
	font-size: 20px;
	line-height: 24px;
	font-weight: 400;
}
#side_front h3 a {
	color:#E22D93;
	background-color: #FBD595;

}
#side_front h3 a:hover {
	color:#E32D92;
	background-color: #fff;


}
#side_front p {
	margin-right: 10px;
	color:#999999;
	font-family: "Arial Narrow";
	font-size: 16px;
	line-height: 21px;
}
#side_front ul li{
	color:#999999;
	font-family: "Arial Narrow";
	font-size: 16px;
	line-height: 21px;
	padding-left: 10px;
	list-style-position: inside;
	list-style-type: square;
	padding-bottom: 10px;
}
a img {
	border: none;
	} 
a:hover img {
	text-decoration:none;
	} 
	

/* Tips for mainContent:
1. The space between the mainContent and sidebar is created with the right margin on the mainContent div.  No matter how much content the sidebar div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
#mainContent_front {
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 0px;
	border-left-style: none;
	padding-left:20px;
	padding-right: 15px;
	width: 600px;
	padding-top: 5px;
} 

#mainContent_front h1{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 600;
	font-size: 30px;
	color: #E22D93;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
} 

#mainContent_front h2{
	color:#6A6468;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 21px;
	line-height:30px;
} 

#mainContent_front h3{
	color:#F5AA1B;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 18px;
	line-height:22px;
} 
#mainContent_front h4{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 600;
	font-size: 14px;
	color: #E22D93;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0px;
} 
#mainContent_front h2 a{
	color:#313130;
	text-decoration:underline;

}
#mainContent_front p{
	color:#222;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 20px;
} 
#mainContent_front img{
	margin-top: 10px;
} 


#bottom_box {
	width: 970px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	min-width:970px; /* min width to avoid collapse and overlap of content. Must be in PX to set static width. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#footer {
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	width: 944px;
	
} 
#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFF;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;	
}
#footer a {
	color: #fff;
}
#footer a:hover {
	color: #E22D93;
}

input.btn {
	color:#fff;
	background-color: #c6027a;
	padding: 10px;
	border: 1px solid #FFF;
	} 

/* Miscellaneous classes for reuse */
.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;
}
a.nohover:hover {
background: none;
border: none;
}

#video {
	float: left;
	width:190px;
	height: 100px;
	margin: 5px;
	background-image: url(../images/video_icon.jpg);
}
#essay_icon {
	float: left;
	width:190px;
	height: 100px;
	margin: 5px;
	background-image: url(../images/essay_icon.jpg);
}
