@charset "UTF-8";

@import url("/styles/web_form.css");

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #fff; /* white outside container (content holder) div */
	margin: 0; /* zero out margin and padding of body element to account for differing browser defaults */
	margin-top: 12px;
	padding: 0;
	text-align: center; /* centers container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	background-color: #b3e3f0;
	color: #000000;
	border: 0px;
}

body p {
	font-size:13px;

}
body h1 {
	font-size: 24px;

}

body h2 {
	font-size: 20px;

}

body h3 {
	font-size: 15px;
}

body li {
	font-size: 13px;
	list-style-position: outside;
}


.boldtext {
	font-weight: bold;
	font-variant: small-caps;	

}

.thrColLiqHdr #container {
	width: 960px;  /* container fixed at 960px */
	padding: 0;
	margin: 0 auto 0 auto; /* auto margins (in conjunction with width) center page */
	border: thin solid #000;
	text-align: left; /* overrides text-align: center on body element. */
	background-color: #fff; /* BG entirely white now, not B3EF30 which is light blue  */
} 

/* alternate container div for white background rather than bright blue */

.thrColLiqHdr #containerwhite {
	width: 960px;  
	padding: 0;
	margin: 0 auto 0 auto; 
	border: thin solid #000000;
	text-align: left; 
	background-color: #FFF;
} 

.thrColLiqHdr #header {
	padding: 0;
	background-image: url(../images/JPG/header_sep09v2.jpg);
	height:140px;
	background-repeat: no-repeat;
	background-position: center top;
} 
.thrColLiqHdr #header h1 {
	margin: 0; /* zeroing margin of last element in #header div avoids 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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebars:
1. Normally work in percentages, but using fixed px; either way, no side padding on sidebars. It will be added to width for standards compliant browsers creating an unknown actual width. 
2. Space between side of div and elements within it can be created by placing left and right margin on those elements as seen in the ".thrColLiqHdr #sidebar1 p" rule.
3. Since IE calculates widths after 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.
4. UPDATED SEP 20 - REMOVE BACKGROUND IMAGES TO AVOID IE RENDERING PROBLEMS - now using a solid white with 2px orange border for sidebar1
*/

.thrColLiqHdr #sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	position: relative;
/*	clear: both; */
	width: 201px; /* since this element is floated, a width must be given; could use % but prefer px to match up with gifs used for top_bot rounded corners */
	margin: 0px 0 0 3px; /* creates space between left edge and left side of sidebar */
	padding: 0;
	border-left: 3px solid #f7931e;
	border-right: 3px solid #f7931e;
	border-top: none;
	border-bottom: none;
	background-color: #FFFFFF;
}

.thrColLiqHdr #sidebar1 h3 {
	padding-left: 14px;
	line-height: 0px;
}
.thrColLiqHdr #sidebar1holder {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	position: relative;
	clear: both; 
	width: 225px; /* since this element is floated, a width must be given; could use % but prefer px to match up with gifs used for top_bot rounded corners */
	margin: 8px 0px 0px 8px; /* creates space between left edge and left side of sidebar */
	padding: 0 4px 0 4px;
	padding-bottom: 0;
}

.clearbottom {
/*	margin-bottom: 90px; */
/* instead of doing this, insert <br/> below sidebar1holder if text in MainContent area shifts margin to left because of inadequate clearance	
} 

.thrColLiqHdr #sidebar1 h3, .thrColLiqHdr #sidebar2 h3 {
	margin: 0 26px 0 26px; /* the left and right margin should be given to every element that will be placed in the side columns */
	padding: 0;
	line-height: 20px;
}

.thrColLiqHdr #sidebar1 p, .thrColLiqHdr #sidebar2 p {
	margin: 0 0 0 15px;
	padding: 0;
	width: 180px;
}

/*this is for pages with two sidebars on opposite sides */
.thrColLiqHdr #sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 215px; /* Background color white displayed for length of content in column, & no further */
	padding: 0; /* creates space between left edge and left side of sidebar */
	border: none;
	margin-top: 0;
	margin-right: 36px;
	margin-bottom: 0;
	margin-left: 0;
}

.thrColLiqHdr #sidebar2 table {
	border: none;
	width: 215px;
	margin: 0;
	padding: 0;
	background-color:transparent;
}

.thrColLiqHdr #sidebar2 tr {
	width: 215px;
	margin: 0;
	padding: 0;
}


.thrColLiqHdr #sidebar3 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 215px; /* Background color white displayed for length of content in column, & no further */
	padding: 0 0 36px 0; /* top and bottom padding create visual space within this div */
	margin-right: 20px; /* same as sidebar1 */
	margin-top: 12px; /* same as sidebar1 */
	margin-left: 0;
	margin-bottom: 12px;
	border: none;
	background-color:#fff;
}


/* use this class for the top row of sidebar2 on the index page, for advertising box ONLY */

.thrColLiqHdr .transp, .topsidebar {
	border: none;
	height: 36px;
	background-color:#9ff;
} 


/* 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.
*/


/* use this div on home and other pages with left & right sidebars with white background */ 

.thrColLiqHdr #mainContent {
	background-color:#fff; /* see comment on background color for #container */
	padding-top: 1%;
	margin-top: 3%;
	margin-bottom: 0;
	margin-left: 22%;
	padding-left: 40px;
	padding-right: 260px;
	padding-bottom: 0;
	margin-right: 0;
	font-size: 14px;
	z-index: 3;
}

* html .thrColLiqHdr #mainContent {
	w\idth: 500px;
	padding-top: 18px;
}

/* use this div on home page with left sidebar only & rotary/runner background */ 
.thrColLiqHdr #mainContentwhite {
	position: absolute;
	top: 0 auto 0 auto;
	left: 0;
	padding-top: 0;
	margin-top: 0;
	margin-left: -3%;
	margin-right:2%;
	margin-bottom: 0;
	width: 960px;
	padding: 0;
	background-image: url(../images/JPG/homepageonly_964x451.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	z-index: 0;
}
.thrColLiqHdr #mainContentwhite p {
	font-size:13px;
	margin: 0 5px 0 5px;
	padding: 0 2px 0 2px;
	line-height: 17px;
}
.thrColLiqHdr #mainContentwhite h2 {
	font-size: 18px;
	margin: 0 2px 0 2px;
	padding: 0 2px 0 2px;
	line-height: 23px;
}

/* use following div only on faq.html and other pages with left sidebar only, no right sidebar */ 

.thrColLiqHdr #mainContent_style2 { 
	background-color:#fff; /* see comment on background color for #container */
	padding-top: 1%;
	margin-top: 3%;
	margin-bottom: 0;
	margin-left: 22%;
	padding-left: 30px;
	padding-right: 50px;
	margin-right: 0;
	font-size: 13px;
	z-index: 3;
	clear: both;

}

/* use following div only on SPONSORS.HTML, PHOTOS07.HTML and other pages without any sidebar  */ 

.thrColLiqHdr #mainContent_style3 {
	margin-top: 0;
	margin-right: 0;
	background-color:#FFF;
	width: 960px;
	padding: 0;
	float:left;
	clear: both;
}

/* end of notes on mainContent area divs */
	

.thrColLiqHdr #footer {
	float: left;
	width: 100%;
	height: 60px;
	background-color:#2E3192;
	border: 0;
	clear: none;
	margin: 0;
	padding-top: 0;
	padding-right: 1px;
	padding-bottom: 0;
	padding-left: 1px;
} 
.thrColLiqHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer avoids margin collapse - a space between divs */
	padding: 10px 10px 10px 20px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
}

/* 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;
}

/* span element for h2 on some pages */

.orangetext {
	color:#FF6600;
	font-size: 14px;
	
}
/* use for text in footer */
.whitetext {
	color:#fff;
	
}

/* use for link in footer */
.ltbluetext {
	color:#99CCFF;
}

.ltbluetext a:HOVER {
	text-decoration:underline;
}
.whitebg {
	background-color:#FFFFFF;
	width: 100%;

}
.runfun {
	color: #333366;
 	font-style: italic;
	font-weight: bold;	
}
.textbreak {
	margin-bottom: 22px;
	display: block;
}
.white_orange {
	background-color:#FFFFFF;
	border-left: 3px solid #f7931e;
	border-right: 3px solid #f7931e;
	border-top: none;
	border-bottom: none;
	width: 201px;
	margin-right: 3px;
}
.padleft {
	padding-left: 30px;
	padding-right: 30px;
	font-size: 13px;
}	

.nobullet {
	list-style-type: none;
	
	
}.nobulletplain {
	list-style-type: none;
	font-weight: lighter;
	font-size:13px;

}
.verysmall {
	font-size: small;
	color:#2E3192;
	font-weight: bold;
}
.veryverysmall {
	font-size: small;
	color:#2E3192;
	font-weight: bold;
	text-align:center;
	font-style:italic;
	font-weight:bold;
	color:#36C;
}
.lowheight {
	line-height: .6em;
}

.thrColLiqHdr #mainContent_style3 .FrameLeft {
	position: relative;
	float:left;
	width: 20%;
	padding:6px;
	background-color:#FFFFFF;
}

.thrColLiqHdr #mainContent_style3 .FrameRight {
	position: relative;
	float:right;
	width: 80%;
	padding:6px;
	background-color:#FFFFFF;
}

/* miscellaneous styles */

.padright {
	margin-right: 30%;
	margin-left: 22%; 
}
.thrColLiqHdr #container #mainContent_style3 .padleft strong em {
	color: #009;
	font-variant: small-caps;
}
#yellowBG {
	background-color: #FFC;
	margin-right: 130px;
	margin-left: 30px;
	border: thin solid #30C;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
.thrColLiqHdr #container .maplinkstyle tr td a {
	font-size: small;
	text-align: left;
}
