@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #E5E5E5;/* #FEFEFE; whiter background*/
	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;
	
}

/* Temp commented out by Chris for nicer fonts, more like Ramy's websiteds:*/
body,td,th {
	color: #309;
	font-family: Times New Roman, Times, serif;
	font-size: 12pt;
}

.thrColFixHdr #container {
	width: 855px;
	margin: 0 auto;
	text-align: left;
} 
.thrColFixHdr #header {
	padding: 0 0px 0 0px;
	height: 155px;
	width: 667px;
} 
.thrColFixHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	position: absolute;
}

#nav {
	height: 3em;
	width: 800px;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 177px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 0px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #mainContent {
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px;
} 
.thrColFixHdr #footer {
	float: bottom; /*Added by CS, so that no matter how big the Main Content, it would still make the footer go below entirely*/
	padding: 0 10px 20  20px;
	background-image: url(Images/city_footer.jpg);
	background-repeat: no-repeat;
	background-position: center;
	height: 185px;
	width: 835px;
} 
.thrColFixHdr #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;
	text-align: center;
}
.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;
	width: 100px;
}

#counter {
	font-size: xx-small;
	vertical-align: bottom;
	float: right;
}