@charset "utf-8";
* {
	margin: 0px;
	padding: 0px;
}
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;
	font-family: "Times New Roman", Times, serif;
	font-size: 17px;
	background-color: #021F34;
}
#container {
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	text-align: left;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 0px;
}
#header {
	height: 138px;
	background-image: url(../images/header.gif);
	padding: 12px 24px 0 24px;
}
#logo {
	text-align: center;
	margin: 0px;
	padding: 0px;
}
#star {
	float: right;
	margin-top: -123px;
}
/* Tips for sidebar:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the " #sidebar p" rule.
*/
 #sidebar {
	float: left;
	width: 12.5em; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin: 24px 0;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #BA8F00;
	height: 344px;
}
#menubar {
	padding: 0 24px;
	margin-bottom: -12px;
}
#menubar a {
	display: block;
	text-decoration: none;
	text-align: center;
	height: 40px;
	width: 160px;
	margin-bottom: 12px;
	background-image: url(../images/button.gif);
}
#menubar a span {
	color: #021F34;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	position: relative;
	top: 12px;
	width: 160px;
}
#menubar a span:hover {
	color: #FFFFFF;
}
/* Tips for mainContent:
1. The space between the mainContent and sidebar is created with the left margin on the mainContent div.  No matter how much content the sidebar div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
 #mainContent {
	margin: 18px 24px 24px 14.2em;
	padding: 0;
}

#mainContent    p  {
	line-height: 1.4em;
	color: #021F34;
	text-align: justify;
}

#mainContent ul {
	padding:0;
	line-height: 1.4em;
	color: #021F34;
	line-height: 1.4em;
	padding: 0px 15px;
} #mainContent li {
	list-style-type: square;
	list-style-position: outside;
}
#mainContent a {
	color: #BA8F00;
	text-decoration: none;
}
#mainContent a:hover {
	color: #021F34;
	text-decoration: underline;
}



#container3 {
	float:left;
	width:100%;
	overflow:hidden;
}

#container2 {
	clear:left;
	float:left;
	width:100%;
	position:relative;
	right:33.33%; /* column 2 background colour */
}
#container1 {
	float:left;
	width:100%;
	position:relative;
	right:33.33%; /* column 1 background colour */
}

#col1 {
	float:left;
	width:30.33%;
	position:relative;
	left:66.67%;
	overflow:hidden;
}
#col2 {
	float:left;
	width:30.33%;
	position:relative;
	left:70.67%;
	overflow:hidden;
}
#col3 {
	float:left;
	width:30.33%;
	position:relative;
	left:74.67%;
	overflow:hidden;
}
#col4 {
	float:left;
	width:55%;
	position:relative;
	left:70.67%;
	overflow:hidden;
}
#bottomContent   {


}

#footer {
	color: #FFFFFF;
	background-color: #021F34;
	height: 75px;
	padding: 24px 24px 0 24px;
	font-size: 11px;
}
#footer p {
	margin: 0px;
	display: inline;
	padding-right: 6px;
}
#footer ul {
	float:right;
	padding: 0px;
}
#footer li {
	display: inline;
	padding-left: 5px;
}
#footer a {
	text-decoration: none;
	color: #FFFFFF;
}
#footer a:hover {
	color: #BA8F00;
}
.barry {
	float: left;
	margin: 6px 24px 6px 2px;
	border: 1px solid #021F34;
}

.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;
}
/* 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;
}
.gold {
	color: #BA8F00
}
.link {
	border:none;
}
.smallFont {
	font-size: 12px;
}
.building {
	float: right;
	margin: 6px 0 0 24px;
	border: 1px solid #021F34;
}
