@charset "utf-8";
/* CSS Document */

body  {
	background: #ffffff;
	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: #6d6e71;
	font-family: Arial, Helvetica, sans-serif;
	
}


.fse table.container { 
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page if needed */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


/* HEADER */
.fse table.header {
	height: 110px;
}
.fse table.header td {
	vertical-align: bottom;
	}

/* NAVIGATION */
.fse table.nav {
	margin-top: 15px;
	margin-left: 4px;
}
.fse table.nav td {
	height: 15px;
	line-height: 16px;
	text-align: right;
	width: 175px;
}
.fse table.nav a {
	font-size: 11px;
	color: #6d6e71;
	text-decoration: none;
	margin: 0px 17px 0px 0px;
}
.fse table.nav a:hover {
	color: #f14f00;
}

/* SUB-NAVIGATION */
.fse table.subnav {
	margin-left: 10px;
	margin-top: 15px;
}
.fse table.subnav td {
	height: 15px;
	line-height: 16px;
	width: 175px;
}
.fse table.subnav a {
	font-size: 11px;
	color: #6d6e71;
	text-decoration: none;
	margin: 0px 17px 0px 0px;
}
.fse table.subnav a:hover {
	color: #f14f00;
}


/* SIDEBAR (LEFT UNDER SUB NAV) */
.fse table.sidebar {
	margin-top: 20px;
	margin-left: 10px;	
}
.fse table.sidebar td {
	font-size: 11px;
	height: 15px;
	line-height: 15px;
	width: 175px;
}

/* CONTENT */
.fse table.contentwrapper { 
	margin: 0px 0px 0px 0px; /* the auto margins (in conjunction with a width) center the page if needed */
} 
.fse table.content {
	margin: 15px 10px 20px 0px;
	background-color: #6d6e71;
}
.fse table.content td {
	font-size: 11px;
	height: 15px;
	line-height: 15px;
	width: 380px;
	height: 335px;
	background-color: #f4f4f4;
	padding: 5px 5px 20px 5px;
}
.fse table.content h1 {
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	width: 380px;
	background-color: #6d6e71;
	color: #eaeaea;
	padding: 6px 5px 5px 5px;
	margin: 0px 0px 10px 0px;
}
.fse table.content p {
	padding: 0px 5px 0px 5px;
	margin: 0px 0px 10px 0px;
}
.fse table.content a {
	font-size: 11px;
	color: #6d6e71;
	text-decoration: none;
	margin: 0px 0px 0px 5px;
}
.fse table.content a:hover {
	color: #f14f00;
}
.fse table.content ul {
	list-style: url(_images/li.gif);
}



/* FOOTER */
.fse table.footer td {
	text-align: right;
}
.fse table.footer a {
	font-size: 11px;
	color: #6d6e71;
	text-decoration: none;
	margin: 0px 0px 0px 5px;
}
.fse table.footer a:hover {
	color: #f14f00;
}

/* 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.
*/
.fse #mainContent {
	margin: 0 10em 0 10em;
	padding-top: 15px;
	padding-left: 15px;
	background: #EBEBEB;
} 
.fse #mainContent h1 { 
	/*margin-top: 0;  Though unnecessary while there's a border on the #mainContent div, you may need to uncomment this rule if the borders are removed. This will zero the margins of the first element in the #mainContent div, avoiding margin collapse - a space between divs - in this case it will create unwanted whitespace above the layout. */
}

/* 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;
}