@charset "UTF-8";
body  {
	 
	background: #fff;
	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%;
}

.thrColElsHdr #container { 
	width: 80%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	
	min-width: 1000px;
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	height: 100%;
	 
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/* IE 6 Hack */
* html .thrColElsHdr  #container{
	width:955px;
	height: 100%;
}
 #mainContainer{
 height:100%;
 float:left;
}
/*_____________________

HEADER
______________________*/

.thrColElsHdr #header { 
  background: #fff; 
  margin:0 0 15px;
  width:100%;
  clear:both;
  height:160px;
  padding: 0 0 5px;
  border-bottom:#365092 solid 12px;
 
  
} 


.thrColElsHdr .hbox{
  
   float:left;
   width:100%;
   height:70%;
   
   
}

.thrColElsHdr .hbox_top{
  
   float:right;
   width:100%;
   height:30%;
}

.thrColElsHdr .left_box{
   position:relative;
   float:right;
   width:30%;
   height:100%;
}

.thrColElsHdr .mid_box{
   background-color:#429cad;
   float:right;
   width:25%;
   height:100%;
   text-align:center;
   position:relative;
   margin:0px auto;
   
}

.thrColElsHdr .right_box{
	float:right;
	width:20%;
	height:100%;
}

.thrColElsHdr #img_circle{
	background-color:#d39225;
	height:100%;
}

.thrColElsHdr .bottom_align {
position:absolute;
	bottom:0;
	left:0;
}

/*_____________________

COLUMNS 

______________________*/
 
.thrColElsHdr .col_1{
	position:relative;
	float:left;
	width:250px;
	height:100%;
	 
}
/* IE 6 Hack */
* html .thrColElsHdr .col_1{
	width:25%;
}
.thrColElsHdr .col_1 #nav {
	float: left;
	width: 100%; /* since this element is floated, a width must be given */
	padding: 0 0 0 0; /* top and bottom padding create visual space within this div */
	background-image: url(../img/gradient.jpg);	
 clear:right;
	margin:0 0 10px 0;
	
	
}
 
.thrColElsHdr  #img_box{
	/*float:left;
	width:100%;
	height:175px;
	background-image: url(../img/group.jpg); 
	padding: 5px ;  
	background-repeat: no-repeat;	
	clear:both;*/
}

.thrColElsHdr .col_2{
	position:relative;
	float:left;
	 
	height:100%;
	 
	 
}
/* IE 6 Hack */
* html .thrColElsHdr .col_2{
 width:53%;
 	margin:0;
 	padding:0;
}
.thrColElsHdr .col_2_1{
	position:relative;
	float:left;
	width:50%;
	height:100%;
 	
	 
}

.thrColElsHdr .col_2_2{
	position:relative;
	float:left;
	width:50%;
	height:100%;
 
	 
}
.thrColElsHdr .col_3 {
	 
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0 0px; /* top and bottom padding create visual space within this div */
	margin: 0 0 0 0;
	overflow:hidden; 
	 
}
/* IE 6 Hack */
* html .thrColElsHdr .col_3{
 	width:204px; 
 	margin:0;
 	padding:0;
}

.inner{
   
 
   padding:0 0 0 1em;

}
.thrColElsHdr .col_3 .inner{
   
 
   padding:1em;

}
.thrColElsHdr #footer { 
	padding: 1px 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#acd9e0;
	  border-top:#365092 solid 8px;
	  line-height:1.2em;
	  margin-top:1em;
 
} 

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