@charset "utf-8";

/* greshams brown #66,00,00 */

body  {
	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: #660000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #666666;
	background-image: url(images/backgrounds/greshams_background.gif);
	line-height: 16px;
}
.pagelayout #container {
	width: 760px; 		/* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #660000;
	text-align: left; 	/* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #ffffcc;
	-webkit-box-shadow: 2px 2px 2px #333; 	/* safari - drop shadow */
	-moz-box-shadow: #333 2px 2px 2px; 		/* firefox 3.1 - drop shadow  */
} 

.pagelayout #innertube{ 
	margin: 8px; 				/* Margins for inner DIV inside each column (to provide padding) */ 
	margin-top: 1px; }       	

.pagelayout #header {
	padding: 0;  /* 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-color: #660000;
	height: 50px;
	background-image: url(images/logos/greshams_banner.jpg);
} 
.pagelayout #menubar {
	float: left; 		/* since this element is floated, a width must be given */
	width: 120px;
	padding: 0px;
	background-color: #ffffcc;
}
#menubar p a #homelogo {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.pagelayout #rightcolumn {
	float: right; 		/* since this element is floated, a width must be given */
	width: 110px; 		/* padding keeps the content of the div away from the edges */
	background-color: #ffffcc;
	padding: 0px;
}
.pagelayout #mainContent {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 120px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.pagelayout #footer {
	color: #660000;
	background-color: #ffffcc;
	text-align: center;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
} 
.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;
}
