/* BG work page - background stuff.   */
.twoColFixLtHdr #container {
	width: 790px;  /* 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 */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(/images/gb_home_v2.png);/*/images/gb_home_container_256colors_png8.png*/
	background-repeat: no-repeat;
	background-color: #004f00;
} 
.twoColFixLtHdr #header { 
	padding: 0 0 0 0;
	height: 240px;
} 
.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: 210px; /* 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 */
	padding: 30px 0px 10px 0px; /*top bottom left right */
	margin: 20px 0px 0px 17px;
	position:relative;
}
.twoColFixLtHdr #mainContent { 
	margin: 10px 10px 10px 230px; /* 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: 5px 5px 5px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
/*	background: #FFFFFF;
*/	
	background-image: url(/images/gb_home_content_16colors_png8.png);
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
} 
.twoColFixLtHdr #horizontalBar { 
	background-image: url(/images/gb_home_bar_horizontal.gif);
	margin: 0px 1px 0 1px; /*top left bottom right*/
	padding: 5px 5px 5px 10px; /* bottom left top right- this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixLtHdr #footer { 
	background-image: url(/images/gb_home_footer.gif);
	margin: 0px 0 0 0px; /*top left bottom right*/
	padding: 10px 10px 10px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixLtHdr #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  5px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #c0c0c0;
}
.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;
}

/* css styles for the menu   */

.linklistli {
	font-size: 14px;
	line-height: 17px;
	margin-right: 2px;
/*	padding-left: 5px; 
	text-indent: -5px;*/
	list-style-type:  circle;
	list-style-image: url(/images/gb_home_dot.gif)
/*	list-style-position: inside;
*/}
.linklistul {
	margin-top: 0; 
	margin-left:0;
	margin-bottom: 0; 
	border-top-width: 0; 
	border-bottom-width: 0; 
	padding: 0 0 0 1.2em; 
}

/* css styles for the forms   */

select {
	color: #000;
	border: 1px solid #CFF;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 500;
	font-size: 12px;
	margin-top: 0px;
	margin-right: 3px;
	margin-bottom: 0px;
	margin-left: 0px;
	background: #CCC;
}
select:focus {
	background: #ffffc0;
	border: 1px solid #007979;
}
textarea {
	font: 500 13px Arial, Helvetica, sans-serif;
	color: #000;
	background: #CCC;
	border: 1px solid #CFF;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}
textarea:focus {
	background: #ffffc0;
	border: 1px solid #007979;
}
input.textbox {
	border: 1px solid #CFF;
	font: 500 13px Arial, Helvetica, sans-serif;
	color: #000;
	background: #CCC;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}
input.textbox:focus {
	background: #ffffc0;
	border: 1px solid #007979;
}
input.submit {
	font: 500 14px Arial, Helvetica, sans-serif;
	background: #004F00;
	color: #F0EFD3;
	border: 3px ridge #009900;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}
input.submit:focus {
	background: #ffffc0;
	color: #333300;
}

label {
	clear: left;
	float:left;
	width:25%;
	margin-right:5px;
	text-align:right;
	padding: 1px;
  }
.labelright {
	width: 72%;
	clear: none;
	float: right;
}
.labelrow {
	clear: both;
	padding-top: 1px;
}
fieldset {
	padding: 5px;
	border:1px solid #004F00;
}
legend {
  padding: 2px 5px;
  border:1px solid #004F00;
  color:#004F00;
  font-size:90%;
  text-align:right;
  }
form {
	margin: 0px;
	padding: 0px;
}

/* css styles for the links   */

a:link    {
	font-weight:      normal;
	color:            #004f00;
	font-style: italic;
  } 
a:visited {
  /* Applies to all visited links */
	font-weight:      normal;
	color:            #4f2404;
	font-style: italic;
  } 
a:hover   {
  /* Applies to links under the pointer */
	font-weight:      normal;
	color:            #4b7802;
	font-style: italic;
  } 
a:active  {
  /* Applies to activated links */
	font-weight:      normal;
	color:            #b08b17;
	font-style: italic;
  } 

/* css styles for AutoCompletes   */

.autocomplete {
  position:absolute;
  width:150px;
  background-color:white;
  border:1px solid #888;
  margin:0px;
  padding:0px;
}
.autocomplete ul {
  list-style-type:none;
  margin:0px;
  padding:0px;
}
.autocomplete ul li.selected { background-color: #ffb;}
.autocomplete ul li {
  list-style-type:none;
  display:block;
  margin:0;
  padding:2px;
  height:16px;
  cursor:pointer;
}
