@charset "utf-8";

body  {
	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-size:12px;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	background-color:#3e301e
	}

.container{
	
	padding-left:10px;
	padding-right:10px;
	

}

.header{
	width:927px;
	
}

.footer{

	height:195px;
	width:938px;
	text-align:right;
	font-size:10px;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	color:#ffffff;
	background-image:url(images/Link-h1.png);
}

h4{ 
		color:#ffffFF;
		
		font-size: 1.4em;
		line-height: 2em;
	}
	
h1 {

		margin: 1.2em 0 0.25em;

		font-size: 1.3em;

		line-height: 1.0em;

		}
	
H2{
	font-size:25px;
	font-weight:bold; 
	text-align:left; 
	padding-left:15px; 
	line-height:60px
	} 
	
	
	
/* -2.2- links  */

a{

	color: #2c85bf;

	text-decoration: none;

	}

	

a:hover {

	text-decoration: underline;

	}



/* -2.3- forms  */

input,textarea,select{

	color: #333;

	font: normal normal 1em/1.2em Verdana,Arial, Helvetica,sans;

	}

#nav li {

			margin: 0 45px 0 0;

			display: block;

			float: left;

			}



		#nav li a:hover {

			color: #FFF;

			text-decoration: none;

			}
/* fox-sites */

	#fox-sites h3 {

		margin: 1.2em 0 0.25em;

		font-size: 1.4em;

		line-height: 1em;

		}



	#fox-sites ul { 

		overflow: hidden;

		line-height: 2em;

		}

		

	#fox-sites li {

		display: inline;

		margin: 0 10px 0 0;

		}



	#fox-sites li a {

		white-space: nowrap;

		}	

		



	
	
	
	
	
	
	
	
	.thrColEls #container2 { 
	width: 896px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	
} 

/* 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 ".thrColEls #sidebar1 p" rule.
*/
.thrColEls #sidebar1 {
	float: left;
	background-image:url(images/box_middle.gif); 
	width: 350px; /* since this element is floated, a width must be given */
	/*border-right: 1px solid #cacfd3;*/
}
.thrColEls #sidebar2 {
	float: right; 
	background-image:url(images/box_middle.gif); 
	width: 0px; /* since this element is floated, a width must be given */
}
.thrColEls #sidebar1 h3, .thrColEls #sidebar1 p, .thrColEls #sidebar2 p, .thrColEls #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.
*/
.thrColEls #mainContent {
  margin: 0 0px 0 370px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
/*border: 1px solid #cacfd3;*/
} 

/* 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;
}







.twoColLiqRt #container66 {
	width: 100%;  /* this will create a container 80% of the browser width */
	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
}
 
/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. 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 ".twoColLiqRt #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqRt #sidebar11 {
	float: right; /* since this element is floated, a width must be given */
	width: 45%; 
}
.twoColLiqRt #sidebar11 h3, .twoColLiqRt #sidebar11 p {
	margin-left: 0px; /* 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. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqRt #mainContent22 { 
	margin: 0 55% 0 20px; /* the left margin can be given in percentages or pixels. It creates the space down the left side of the page. */
}


