/*********Global Container Design**************/

.thrColElsHdr #container { 
	width: 1024px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #000000 /*for images add:url(pics/logobg.jpg) no-repeat*/;
	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. */
} 
/**********Header Designs********************/

.thrColElsHdr #header1 { 
	background: #FFF; 
	/*padding: 0 0px;   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. */
	float: left; 
	width: 1024px;
	height:363px;
} 
.thrColElsHdr #header1 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: 0 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */


}
.thrColElsHdr #header2 { 
	float: left; 
	width: 150px;
	height:60px;
	background: #000; 
	padding: 0 0px;  /* 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. */
}

}
.thrColElsHdr #header3 { 
	float: right; 
	width: 874px;
	height:60px;
	background: #000; 
	padding: 0 0px;  /* 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. */
}


/********Content Design of Body*************/
.textheader {
font-size: 24px;
font-weight:bold;
font-family:Sans-Serif;
text-decoration:none;
color:#d5b994;
}
.textsubheader {
font-size: 16px;
font-weight:bold;
font-family:Sans-Serif;
text-decoration:none;
color:#d5b994;
}
.text {font-size: 16px;
font-family:Sans-Serif;
text-decoration:none;
color:#d5b994;
}

#mainBody{
	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;
}

#frameBody {
	width:100%;}

#pageCenter{padding-top:50px; width:100%;}

/*******Link Design*********/
.link{font-size:18px;
font-family: Sans-Serif;
text-decoration:none;
font-weight:400;}

.link:link{color:#6487a3;text-decoration:none}
.link:visited{color:#d5b994;text-decoration:none}
.link:hover{color:#FFFFFF;text-decoration:none} 


.link2{font-size:16px;
font-family:   Sans-Serif;
text-decoration:none;
font-variant:small-caps;
font-weight:bold;}

.link2:link{color:#d5b994;text-decoration:none}
.link2:visited{color:#d5b994;text-decoration:none}
.link2:hover{color:#FFFFFF;text-decoration:none} 

.link3{font-size:2;
font-family: Sans-Serif;
text-decoration:none;}

.link3:link{color:#6487a3;text-decoration:none}
.link3:visited{color:#d5b994;text-decoration:none}
.link3:hover{color:#FFFFFF;text-decoration:none;}


.membersHead{
	  font-size:20px;
	  color:#DDDDDD;
	  text-decoration:none;}

.membersText{font-size:15px;
	      color:#7777FF;
	      text-decoration:none;}

.membersSubHead{font-size:18px;
	  color:#DDDDDD;
	  text-decoration:none;}

/*******Sidebar Design*********/
.headerSidebar {
font-size:20px;
font-family:   Sans-Serif;
text-decoration:none;
color:#d5b994;
font-variant:small-caps;
font-weight:400;
}
.fontSidebar {
font-size:16px;
font-family:   Sans-Serif;
text-decoration:none;
color:#d5b994;
font-weight:400;
}
.thrColElsHdr #sidebar1 {
	float: left;
	width: 150px; /* since this element is floated, a width must be given */
	height:600px;
	background: #000; /*  #EBEBEB the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0; /* top and bottom padding create visual space within this div */
	font-family:   sans-serif;
	text-align: center;
	font-weight:bold;
	font-size:12px;
}


.thrColElsHdr #sidebar1 h3, .thrColElsHdr #sidebar1 p, .thrColElsHdr #sidebar2 p, .thrColElsHdr #sidebar2 h3 {
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px;
}

/*********Design of Main Content Div*****************/
.thrColElsHdr #mainContent {
	
 	margin: 0 0px 0 150px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	margin-top:423px;
	padding: 0px 0; /* top and bottom padding create visual space within this div */
} 

/*********Design of Footer********************/
.thrColElsHdr #footer {
	background:#000;
	font-size: 12px;
	font-family:   sans-serif;
	text-align: center;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-top: 6px;
	margin-bottom:6px;
} 
.thrColElsHdr #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: 0px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
}
.thrColElsHdr #container #footer p {
	text-align: center;
}
/********IE DESIGN BUGFIXES*****************/
.thrColElsHdr #mainContent { zoom: 1; padding-top: 0px; }
.thrColElsHdr #sidebar1, .thrColElsHdr #sidebar2 { padding-top: 0px; }