@charset "utf-8";
/* CSS Document */
 
body  {
	font-family:Verdana, Arial, Helvetica, sans-serif ;
	font-size:14px;
	line-height:1.5em;
	background: rgb(255,255,255);
	background-image:url(../images/body_background.png);
	background-repeat:repeat-x;
	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;
}

#wrapper {
    position: absolute;
    top: 0;
    left: 0;
	width:100%;
	min-width:780px;
		height:auto;
		min-height:100%;
}
	
 #container { 
	min_width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	width:90%;

	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border:none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-bottom:2em;
} 

html<#container { 
	height:auto;
} 
 #header {  
	height:122px;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image:url(../images/bar_detail_right.png);
	background-position:right bottom;
	background-repeat:no-repeat;

} 

 #breadcrumb {
	display:block;
	height: 30px;
	padding: 4px 0 0 0;
}

 #search {
	display:block;
	position:absolute;
	right:5%;
	top:0;
	min-height: 30px;
	margin:0 auto;
  text-align:right;
}

 #header .titlebar {
  position:relative;
  left:-20px;
  top:34px;
	height:auto;

}
 #header .titlebar 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 */
	visibility:hidden;
}
 #auxContent {
 display:block;
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: 150px; /* ie6 hack*/
	min-height:150px;

	padding: 15px 10px 20px 20px;
	background:url('../images/sidebar1_background.png');
  background-repeat:no-repeat;
  background-position:bottom;
  	background-color: #EBEBEB; 
}


 #mainContent { 
	margin: 0 0 0 170px; /* 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 #auxContent space when the content in #auxContent ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

  #mainContent h1 {
    margin:0 0 5px 0;
  }

 #footer {
	position:absolute;
	display:block;
	bottom:0;
	left:0;
	right:0;
	clear:both;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align:center;
	border-top-width: 1px;
	border-top-style: dashed;
	border-top-color: #353535;
} 
 #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
h1 {
	border: 1px solid rgb(0,0,0);
	background-color:#353535;
	background-image:url(../images/body_background.png);
	background-position: 0 -70px ;
	background-repeat:repeat-x;
	padding:0 0 0 20px;
	color:#f0f0f0;
	font-size:24px;

}

h2 {

}

h3 {
display:block;
padding:0;
margin:0;

}
.left {
float: left;
}

.right {
float:right;
}

a:link, a:visited {
display: inline;
color:#f58723;
text-decoration: none;
font-weight:bold;
margin:0 0 1px 0;
}

a:hover {
text-decoration:none;
border-bottom:1px dashed #f58723;
}

#mainContent img {
  display:inline-block;
  padding: 2px;
  margin: 2px;
  background-color: #f0f0f0;
  border:1px solid #f58723;
}

#auxContent h3 { 
	margin: 0 -10px 0 -20px;
	border:1px solid #353535;
	padding: 0 0 0 10px;
	font-size:24px;
	text-indent:20px;
	background-color:#353535;
	background-image:url(../images/body_background.png);
	background-position: 0 -75px ;
	background-repeat:repeat-x;
	color:#f0f0f0;
}

#auxContent ul {
margin:0px;
padding:0 0 0 10px;
color:#f58723;
}

#auxContent li ul {
list-style: circle outside;
}

#auxContent li ul {
visibility:hidden;
height:0;
}

#auxContent li:hover ul, #auxContent li.active ul {
visibility:visible;
height: auto;
}
/*
#auxContent ul li p {
  margin-top:0;
  margin-bottom:0;
  color:#f58723;
  font-weight:bold;
}

#auxContent ul.level_1 {
  position:relative;
  left:-20px;
  margin:0 -30px 0 0;
}

#auxContent li, #auxContent ul {
	display:block;
	padding:0;
	margin:0;
	text-indent:20px;
} 

#auxContent li {
  background-color:black;
}


#auxContent ul.level_2 {
  padding:0 5px 0 10px;
  margin: 0 5px 0 0;
}

#auxContent ul.level_2 li {
  position:relative;
  text-indent:30px;
  left:-10px;
  margin:0 -20px 0 0;
}

#auxContent ul.level_1 a:hover, #auxContent ul.level_1 p:hover {
  background-color:white;
}


#auxContent ul.level_1 a {
  display:block;
  border:0;
  margin:0;
}



*/

#breadcrumb a:link, #breadcrumb a:visited {
color:#353535;
}

#breadcrumb {
font-weight:bold;
width:74%;
}

#breadcrumb a:hover {
color:#f58723;
}


[if IE 5]>
/* place css box model fixes for IE 5* in this conditional comment */
 #auxContent { width: 230px; }
</style>
<![endif][if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
 #auxContent { padding-top: 30px; }
 #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
<![endif]
