/**
Color Codes:
Blue – #002146
Gold – #8d6e52
Grey – #838383

 Changing color schemes for templates:  
  1) Changing background color for left-nav  (search on keyword:  LEFTNAV CHANGE ) 
         a) generate 150px wide color slice, name as leftnav_background_<colorname>_<colorhexcode>.png 
		    (Example:     leftnav_background_white_ffffff.png)
			This color slice is also used to create divider between left nav and content area (if desired).  
			White background currently has dark blue (#002146) at right to generate vertical division 
			 |_________|| << splash of color on right of image to generate vertical dividing line
		 b) to change the bgcolor of left nav, modify the background-image file for div#faux_col_for_sidebar_height
		 c) modify the divider line in the leftnav as necessary
		 d) modify text color in left nav menu as necessary
		 
*****/
@charset "utf-8";
body  {
	font: 100%  Arial, Verdana, Helvetica, sans-serif;
	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 */
}

/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
#dropshadow_container
{
    width: 992px;
   	margin: 0 auto; 

}
#container { 
	width: 980px;  /* 61em, 980px SIZES  */
	margin: 0 auto; 
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color:#fff;
}  
#banner_etsu { 
 height: 170px;
 } 
#links_etsu {
  font-size: 8pt;
}
#breadcrumbs
{
  float:left;
  width:650px;
  font-size: 8pt;
  padding: 4px 0 0 10px;
  height: 1.8em;
}
#sizer
{
    float:right;
    width:250px;
    text-align:right;
    padding: 0 10px 3px 0;
    margin:0;
    height: 1em;
}
#sizer a
{
    padding-left: 5px;
}
#crumbs_sizer
{
   width: 100%;
   height: 1.5em;
   
}
/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
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 " #sidebar1 p" rule.
*/
#sidebar1 {
	float: left; 
	width: 160px;  /*  set fixed width so that background image can be used to change color on nav */
    padding-top: 0px;


}
#sidebar2 {
	float: right; 
	width: 250px; /* SIZES 19em, 200px *//* since this element is floated, a width must be given */
	text-align: left;
	padding: 15px 0 0 0; 
	font-size:10pt;

}
#sidebar1 h3, #sidebar1 p, #sidebar2 p, #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/


div#faux_col_for_sidebar_height
{
   float:left;
   width:720px; /* 44em,  SIZES  */
   margin:0;
   padding:0;
   
}
#mainContent {
 	margin: 0 0 0 160px; /*  150px for left margin **/ 
	padding: 1em 0 1em 1em; /* left side padding */
	text-align: left;
	font-size:10pt;
	width: 542px;  /* 39em, 400px SIZES  */	
} 
.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;
}

/**** FOOTER ******/
#footer { 
	
	height:7em;  /* 60px SIZES */
	margin:0;
} 
#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:  0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

div#footer
{
  font-size:8pt;
  padding: 5px 0 0 0;
}
div#footer p#footer_left
{
  float:left; 
  width:250px;
  padding-left: 10px;
  display:block;
}
div#footer p#footer_right
{
  float:right; 
  width:250px;
  text-align:right;
  padding-right: 10px;
}
/*************** STYLES FOR ETSU TOP NAVIGATION ********************/
div#links_etsu
{
  height:2.1em; /** SIZES  22px **/
}
ul#etsu_navlist
{
    float:left;
    width: 59%;
}
ul#etsu_navlist a
{
font-weight: bold;
text-decoration: none;
}

ul#etsu_navlist, ul#etsu_navlist ul, ul#etsu_navlist li
{
margin: 0px;
padding: 0px;
list-style-type: none;
}

ul#etsu_navlist li a
{
padding: 5px 1em 0 1em;
}

#etsu_navlist, #etsu_navlist ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#etsu_navlist a {
	display: block;

}

#etsu_navlist li { /* all list items */
	float: left;
	
}

#etsu_navlist li ul { /* second-level lists */
	position: absolute;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	
}
#etsu_navlist li ul li {
   width: 10em;

}

#etsu_navlist li:hover ul, #etsu_navlist li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
	
}
div#search_etsu
{
  float:right;
  width:39%;
  text-align: right;
  
}
/******************Styles for Text Sizer **********************/
a.smalltext {
font-family:Arial, Helvetica, sans-serif;
font-size:8pt;
}

a.mediumtext {
font-family:Arial, Helvetica, sans-serif;
font-size:9pt;
}

a.largetext {
font-family:Arial, Helvetica, sans-serif;
font-size:10pt;
}

/******************** BREADCRUMBS ******************************/
div#breadcrumbs a, div#search_etsu a
{
  text-decoration: none;

}




