/*********Global Container Design**************/#container { 	width: 800px;  /* 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********************/#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: 800px;/*	height:282px;*/        height: 160px;} #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 */}#header2 { 	float: left; 	width: 800px;	height:20px;	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. */	}}#header3 { 	float: right; 	width: 600px;	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: 20px;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;}td { font-size: 16px;font-family:Sans-Serif;text-decoration:none;color:#d5b994;}h1{ text-align:left;}#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%;		font-size: 16px;font-family:Sans-Serif;text-decoration:none;color:#d5b994;}#frameBody h1{font-size: 32px;font-family:Sans-Serif;text-decoration:none;color:#d5b994;}		#frameBody h4{font-size: 18px;font-family:Sans-Serif;text-decoration:none;color:#d5b994;}		#frameBody .link {	font-size:16px;	font-family:   Sans-Serif;	text-decoration:none;/*	font-variant:small-caps;*/	font-weight:400;	color:#d5b994;	text-decoration:none;}#frameBody .link:visited {	color: #d5b994;	border:none;	text-decoration:none;}#frameBody .link:hover {	color: #FFFFFF;	border:none;	text-decoration:none;}#frameBody .link2 {	font-size:24px;	font-family:   Sans-Serif;	text-decoration:none;/*	font-variant:small-caps;*/	font-weight:400;	color:#d5b994;	text-decoration:none;}		#frameBody .link2:visited {	color: #d5b994;	border:none;	text-decoration:none;}#frameBody .link2:hover {	color: #FFFFFF;	border:none;	text-decoration:none;}		#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;} #sidebar1 {	float: left;	width: 200px; /* 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;}/*********Design of Main Content Div*****************/#mainContent {	 	margin: 0 0px 0 200px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */	margin-top:182px;	padding: 0px 0; /* top and bottom padding create visual space within this div */} /*********Design of Footer********************/#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;} #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;}#container #footer p {	text-align: center;}/********IE DESIGN BUGFIXES*****************/#mainContent { zoom: 1; padding-top: 0px; }#sidebar1, .thrColElsHdr #sidebar2 { padding-top: 0px; }
