@charset "utf-8";
body  {
	font: 0.9em Verdana, Arial, 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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	height: 100%;
}
.thrColLiqHdr #container {
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #333;
	text-align: left; /* this overrides the text-align: center on the body element. */
	overflow:hidden;
	margin-top: 15px;
	
} 
.thrColLiqHdr #header {
	height: 200px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 10px;
	background-attachment: scroll;
	background-repeat: no-repeat;
	border-bottom-width: 15px;
	border-bottom-style: solid;
	border-bottom-color: #2c3e8d;
	background-color: #2c3e8d;
	background-image: url(../images/logo.png);
	background-position: right top;
	font-family: Georgia, "Times New Roman", Times, serif;
} 
.thrColLiqHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 50px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 40px;
	font-size: 3em;
	color: #FFF;
	filter: DropShadow(Color=#000, OffX=1px, OffY=1px, Positive=1);
	filter: Shadow(Color=#000, Direction=120);
}

/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. 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 ".thrColLiqHdr #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.
*/
.thrColLiqHdr #sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 22%; /* top and bottom padding create visual space within this div  */
	padding-bottom: 1000px;
	margin-bottom: -1000px;
	padding-top: 15px;
	padding-right: 0;
	padding-left: 0;
	background-color: #999;
}
.thrColLiqHdr #sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 15px; /* since this element is floated, a width must be given */
	background: #2c3e8d; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	padding-bottom: 1000px;
	margin-bottom: -1000px;
	z-index: 1500;
}
.thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 p, .thrColLiqHdr #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;
	margin-top: 0px;
	margin-bottom: 0px;
	font-style: italic;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px 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.
*/
.thrColLiqHdr #mainContent {
	margin: 0 2% 0 23.5%; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
}

.thrColLiqHdr #footer {
	background:#DDDDDD;
	padding-top: 0;
	padding-bottom: 0;
	width:100%;
	z-index:1000;
	float:left;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.7em;
	text-align: center;
	} 
	
.thrColLiqHdr #footer p {
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* 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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.inline_frame {
	height: auto;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;

}

/* MENÜ LINKS*/
ul.MenuBarVertical
{
	font-size: 100%;
	cursor: default;
	width: 100%;
	list-style-type:none;
	padding-left: 0px;
	margin-left: 0px;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #333;
	position: static;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	height: 27px;
	border-bottom-color: #333;
	padding-top: 6px;
}
ul.MenuBarVertical li:hover
{
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 100%;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	height: 27px;
	border-bottom-color: #333;
	background-color: #2c3e8d;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
}

ul.MenuBarVertical a
{
	text-decoration: none;
	padding-left: 13px;
	width: 100%;
	height: 100%;
	color: #000;	
	
	}
	
	ul.MenuBarVertical a:hover
{
	text-decoration: none;
	color: #FFF;	
	}
	
	.logo {
	height: 136px;
	width: 250px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: auto;
	margin-bottom: 0px;
}

.form_table {
	width: 90%;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
}

legend {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 90%;
	font-weight: bolder;
	margin-right: 3px;
	margin-left: 3px;
	color: #2c3e8d;
	
}

fieldset
{
	margin-top: 10px;
	border-color: #2c3e8d;
	border-style: solid;
	border-width: 1px;
	padding-left: 10px;
	}
	
.small {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 0.7em;
	font-style: italic;
	font-weight: bold;
	color: #666;
}
.thrColLiqHdr #header h4 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 6px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 40px;
	font-size: 1.4em;
	text-align: justify;
	display: block;
	width: 482px;
	color: #CCC;
}
