@charset "utf-8";
/*CSS Document*/
body, html  {
	font:normal 14px/19px Arial, Helvetica, sans-serif;
	background: #666666 url(../images/bg_repeat_large.gif);
	background-position:top center;
	background-attachment:fixed;
	background-repeat: repeat-y;
	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;
	height: 100%;
}
div, h1, h2, h3, h4, h5, h6, form, label, input, span, ul, li, p, a{
	margin:0; padding:0;}

hr{
	padding:0;	margin:0; color:#960103; background-color:#960103; height: 2px; border:0;
}

img{
	margin: 10px 0 10px 0;	/*top right bottom left*/
}

ul{
	font-weight:bold;
}
li{
	margin-left: 40px;
	font-weight:normal;
}

#body {
   padding:10px;
   padding-bottom:100px;   /* Height of the footer */
}


/*--------------------MENU START -------------------------------*/
#menu {
	width: 150px; font:normal 12px/17px Arial, Helvetica, sans-serif;
	
}

#menu ul{
	list-style: none; margin: 0; padding: 0;
	
}

#menu a {
  text-indent: 10px;
  line-height: 25px;
  text-decoration:none;
  display: block;
  width: 150px;
  height: 25px;
  color: #FFC805;
  background:#000098;
  outline: #00D0EE 2px solid;
}

#menu a:hover {
  color: #970001; background:#FFC805;
}

#menu li {
	position: relative;
	margin-left: 0px;
}


#menu ul ul{
	position: absolute;
	top: 0;
	left: 150px;
	width: 100%;
}

#menu ul ul a{
	margin: 0;
}

div#menu ul ul,
div#menu ul ul li:hover ul ul
{display: none;}

div#menu ul li:hover ul,
div#menu ul ul ul li:hover ul
{display: block;}

/*--------------------------- MENU END ---------------------------*/
/*--------------------------- MAIN CONTAINER START ---------------------------*/
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-top: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: url(../images/body_bg.jpg);
	background-repeat:repeat-y;
	min-height:100%;
	position:relative;
} 

/*-------------------------------------HEADER START -----------------------------------------*/
#header { 
	background: #fff; padding: 10px 15px 10px 15px; 
} 
/*-------------------------------------HEADER END -----------------------------------------*/
/*-------------------------------------SIDEBAR START -----------------------------------------*/
.twoColFixLtHdr #sidebar1 {
	float: left; 
	width: 150px; 
	padding: 20px 15px 0px 17px;
}
/*-------------------------------------SIDEBAR END -----------------------------------------*/
/*-------------------------------------MAIN CONTENT START -----------------------------------------*/
#mainContent { 
	margin: 0 0 0 190px; /* 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 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding-bottom: 100px;
}

#rightBar {
	float: right; /* since this element is floated, a width must be given */
	width: 84px; /* 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 */
	background-position: 0px 0;
	background-repeat:no-repeat;
	padding: 0 0 0 8px;
	border: 0px;
}

#mainContent .center{
	text-align:center;
	margin: 0 auto;
}

#mainContent a { 
	color: #960103;
	text-decoration:none;
} 

#mainContent h1{
	font-family: bold "Times New Roman", Times, serif;
	font-size:36px;
	color: #960103;	
}

#mainContent p { 
	margin: 10px 0 10px 0;
} 

#mainContent .SQF_title { 
	font-size:18px;
	color: #960103;	
} 

/*------------------ABOUT US START --------------------- */
#mainContent .page_ul{
	font-weight:bold;
}
#mainContent .page_ul ul{
	font-weight:normal;
	margin-left: 40px;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
#mainContent .two_column_list ul{
	width: 500px;
}
#mainContent .two_column_list li{
	width: 250px;
}
#mainContent .two_column_list br{
	clear: left;
}
/*------------------ABOUT US END --------------------- */
/*------------------CONTACT US START --------------------- */
#mainContent #contact-area {
	width: 550px;
	margin-top: 25px;
	margin-bottom: 100px;
}

#mainContent #contact-area input, #mainContent #contact-area textarea {
	padding: 5px;
	width: 400px;
	font-size: 14px;
	margin: 0px 0px 10px 0px;
	border: 2px solid #ccc;
}

#mainContent #contact-area textarea {
	height: 90px;
}

#mainContent #contact-area textarea:focus, #mainContent #contact-area input:focus {
	border: 2px solid #900;
}

#mainContent #contact-area input.submit-button {
	width: 100px;
	float: right;
}

#mainContent #contact-area label {
	float: left;
	text-align: right;
	margin-right: 15px;
	width: 120px;
	padding-top: 5px;
	font-size: 14px;
}
/*------------------CONTACT US END --------------------- */

/*-------------------------------------MAIN CONTENT END -----------------------------------------*/
/*-------------------------------------FOOTER START -----------------------------------------*/
#footer { 
	position:absolute;
	bottom:0;
	width:1200px;
	height:100px;
	text-align: center; 
	margin-left: -210px; 
	font-size:9px;
	background-image: url(../images/footer.jpg); 
	background-repeat: no-repeat;
	background-position: bottom;
	color: #fcd54b;
} 

#footer a{
	color: #fcd54b;
	text-decoration:none;
}

#footer a:hover{
	text-decoration:underline;
}

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
/*------------------------------------- FOOTER END -----------------------------------------*/

.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: 5px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 5px;
}
.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;
}