@charset "utf-8";

/* CSS Document */

/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */


						/* see google docs menu and choose  
						edit > edit css...
						as these styles have no affect on the iFrame when added here */


/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| */


/* - - - - - - -  RESET  - - - - - - - */
html, body, div, ul, ol, li, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, p, blockquote, fieldset, input {
	margin: 0;
	padding: 0;
} /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

h1, h2, h3, h4, h5, h6, pre, code, address, caption, cite, code, em, strong, th {
	font-size: 1em;
	font-weight: normal;
	font-style: normal;
}

ul, ol {
	list-style: none;
}

fieldset, img {
	border: none;
}

caption, th {
	text-align: left;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	padding-left: 5px;
}

h3 {
	font-size: 1.5em;
}

iframe {
	overflow: auto;
	width: 610px; /* 420px; */
	height: 1500px;
	margin: 0;
	padding: 0;
} /* inline heights may vary: width="600" height="1200" */


.iframeHidden, .iframeHidden iframe {
	display:none;
}


A {
	color:#cc3300;
	text-decoration:none;
}

A:hover {
	text-decoration:underline;
}

.SlidingPanelsAnimating * {
	overflow: hidden !important;
}

body {
	font: normal 12px/16px Helvetica, Verdana, Arial, sans-serif;
	color: #333;
	line-height: 14pt;
	text-decoration: none;
	letter-spacing: normal;
	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;
	word-wrap: break-word;
	background: url(../images/body_bg.jpg) repeat-x;
	margin: 0 6px;
}

UI, LI, P {
	font: normal 12px/16px Helvetica, Verdana, Arial, sans-serif;
	color: #333;
	font-family: Helvetica, Verdana, Arial, sans-serif;/* width: 100%;
	display:block; */
}

h1 {
	margin:0 0 20px;
	padding:0;
	font-size:18px;
	color: #AA1E02; /*  #595959; */
}

h2 {
	font-size:12px;
	color:#444;
	color: #595959;
	margin-bottom: -5px;
}

h3 {
	font-size:11px;
	color:#444;
	color: #595959;
	font-weight: bold;
	margin-bottom: -10px;
}

h4 {
	font-size:14px;
	color: #595959;
	font-weight: normal;
}

p.caption {
	font: normal 10px/14px Helvetica, Verdana, Arial, sans-serif;
	margin:0 0 20px 16px;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */
/* - - - - - - -  CONTACT US email encoded by Enkoder (Hivelogic) 						  - - - - - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */
a#email.text-white, #email.text-readable {
	width: 220px;
	height: 15px; /* 45px; */
	background: url(../images/email.gif) no-repeat;
	overflow:visible;
	line-height: 18px;
	padding-top: 18px;
	font-size: .9em;
	color:#FFF;
	display: block;
}

#email-2.text-white, #email-2.text-readable {
	width: 220px;
	height: 15px; /* 45px; */
	background: url(../images/email-2.gif) no-repeat;
	overflow:visible;
	line-height: 18px;
	padding-top: 18px;
	font-size: .9em;
	color:#FFF;
	display: block;
}

#email.text-readable, #email-2.text-readable {
	color: #999999;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */

.twoColFixLtHdr #container {
	background-color: #FFFFFF;
	/* background:url(../images/content_bg.png) repeat-y; */
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	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. */
	position: relative; /* added to absolutely position the quotes */
}

.twoColFixLtHdr #header {
	width: 800px;
	height: 165px;
	background: url(../images/header.jpg) repeat-x;
}

/*.headerLeftCorner {
	float:left;height:143px; width:10px; background:url(../images/header_crnr_lft.png) no-repeat;
}
.headerRightCorner {
	float:right;height:143px; width:10px; background:url(../images/header_crnr_rt.png) no-repeat;
} */
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid 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 */
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 130px; /*130px;*/ /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
 *width: 160px; /* IE hack */
	padding: 10px 10px 0px 20px;
	clear: both; /* BL - Optional - to display correctly in DW design view - otherwise the sidebar is incorrectly displayed over the header, even though it displays correctly in a browser */
	background: #FFFFFF url(../images/pink_bg.jpg) repeat-x;
	height: 600px;
}

.twoColFixLtHdr #sidebar1 UL {
	margin:0;
	padding:0;
}

.twoColFixLtHdr #sidebar1 LI {
	list-style-type:none;
}

.twoColFixLtHdr #sidebar1 A {
	font: 12px/24px Helvetica, Verdana, Arial, sans-serif;
	color:#444;
	text-decoration:none;
}

.twoColFixLtHdr #sidebar1 A:hover {
	color:#f60;
}

.twoColFixLtHdr #sidebar1 A:active {
	color:#f60;
}

.twoColFixLtHdr #mainContent {
	margin: 20px 0 0 160px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px;
	/* border-left:1px solid #ababab; */
	background: url(../images/body_bg.jpg) no-repeat 0 0;
}

.contentDivider {
	border-bottom:1px solid #969696;
	height: 1px;
}

.twoColFixLtHdr #footer {
	background:url(../images/footer_bg.png) bottom left repeat-x;
	height:10px;
	font-size: 1px;
}

.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;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */

.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;
}

#copyright-terms {
	text-align:center;
	margin: 0px auto;
	width: 646px !important;
	width: 650px;
}

#copyright-terms P {
	color:#444;
	font-size: 11px;
	padding-top: 1em;
	height: 3em;
}

#copyright-terms SPAN {
	margin-left: 40px;
}

#copyright-terms a {
	color:#990000;
	text-decoration:none;
	
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */
/* - - - - - - - NEW QUOTE BOX - Absolutely Positioned on the Left Side  					 -	- - - - */
/* - - - - - - - Must change position style in quote js              							 - - - - -  */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */
.quoteBox {
	position: absolute;
	left: 0;
	top: 240px;
	width:140px;
	font:italic 14px/18px Georgia, 'Times New Roman', Times, serif;
	color:#444;
	background-color: #F8F8F8;
	background: url(../images/blue_bg.jpg) repeat-x top left; /* BL */
	margin: 0 0 10px 10px;
	text-indent:-5px;
 *text-indent: 0px; /* IEwin7 */
	/* BL added - removed orig inline styles. Note: .js file adds these styles as well */
	height: 260px;
	z-index: 1000;
}

.quote {
	background-color: #F8F8F8; /* Essential BL - http://icant.co.uk/sandbox/msieopacityissue/   If you use an animation library to fade elements in and out, make sure to add a background colour to the element you animate, otherwise MSIE will play silly buggers with the font face. */
	/* OR */
	background: url(../images/blue_bg.jpg) repeat-x top left; /* BL */
	margin:10px; /* orig  20 */
	/* padding: 2px;  orig 0  BL */
	width:120px;
	/* BL added - removed orig inline styles. Note: .js file adds these styles as well */
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	z-index: 2000;
	display: none; /* prevents momentary simultaneous display of all quotes */
}

.quoteBox SPAN {
	float:right;
	text-align:right;
	color:#818181;
	font-size:10px;
	line-height:12px;
	margin-top:6px;
}


/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */
/* - - - - - - -  ORIGINAL QUOTE BOX - Relatively Positioned on the Right Side - - - - - - -  */
/* - - - - - - -  Must change position style in quote js 											 - - - - - - -  */
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - */

.quoteBox-ORIGINAL {
	float:right;
	width:175px;
	font:italic 14px/18px Georgia, 'Times New Roman', Times, serif;
	color:#444;
	background-color: #F8F8F8;
	background: url(../images/blue_bg.jpg) repeat-x top left; /* BL */
	margin: 0 0 10px 10px;
	text-indent:-5px;
 *text-indent: 0px; /* IEwin7 */
	/* BL added - removed orig inline styles. Note: .js file adds these styles as well */
	position: relative;
	height: 260px;
}

.quote-ORIGINAL {
	background-color: #F8F8F8; /* Essential BL - http://icant.co.uk/sandbox/msieopacityissue/   If you use an animation library to fade elements in and out, make sure to add a background colour to the element you animate, otherwise MSIE will play silly buggers with the font face. */
	/* OR */
	background: url(../images/blue_bg.jpg) repeat-x top left; /* BL */
	margin:18px; /* orig  20 */
	/* padding: 2px;  orig 0  BL */
	width:135px;
	/* BL added - removed orig inline styles. Note: .js file adds these styles as well */
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0;
	z-index: 9998;
	display: none; /* prevents momentary simultaneous display of all quotes */
}

.quoteBox-ORIGINAL SPAN {
	float:right;
	text-align:right;
	color:#818181;
	font-size:10px;
	line-height:12px;
	margin-top:6px;
}

/* - - - - - - - - - - - - - - - -    END      - - - - - - - - - - - - - - - - - - - -  - - - */
