@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #FFF;
}
.twoColFixLtHdr #container {
	width: 1024px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	background-image: url(../images/colorBar.jpg);
	background-repeat: repeat-y;
	background-position: 20px;
	background-color: #FFF;
} 
#bhome a#home  {
	color: #06F;
	background-color: #036;
} 
#bagendas a#agendas  {
	color: #06F;
	background-color: #036;
}
#bdecorations a#decorations  {
	color: #06F;
	background-color: #036;
} 
#bcontacts a#contacts  {
	color: #06F;
	background-color: #036;
} 
#belections a#elections {
	color: #06F;
	background-color: #036;
}
#bforms a#forms  {
	color: #06F;
	background-color: #036;
} 
#bgarbage a#garbage  {
	color: #06F;
	background-color: #036;
}
#bminutes a#minutes  {
	color: #06F;
	background-color: #036;
} 
#bnotices a#notices  {
	color: #06F;
	background-color: #036;
} 
#bordinances a#ordinances {
	color: #06F;
	background-color: #036;
}
#bhistory a#history {
	color: #06F;
	background-color: #036;
}


#bdecorations a#decorations {
	color: #06F;
	background-color: #036;
}



.class1 a:link {
	display:block;
	text-decoration:none;
	width:220px;
	color: #FFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: outset;
	border-bottom-color: #7D5EEC;
	background-color: #2F1195;
	padding-top: 11px;
	padding-right: 8px;
	padding-bottom: 11px;
	padding-left: 8px;
	font-style: normal;
}


.class1 a:visited {
	display:block;
	text-decoration: none;
	color: #FFF;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.8em;
	font-weight: bold;
	border-bottom-width: 1px;
	border-bottom-style: outset;
	border-bottom-color: #06F;
	background-color: #036;
	width: 180px;
	padding-top: 12px;
	padding-right: 8px;
	padding-bottom: 12px;
	padding-left: 8px;
}
.class1 a:hover {
	color:#FFF;
	border-bottom-width: 1px;
	border-bottom-style: outset;
	border-bottom-color: #0CF;
	background-color: #069;
}



.twoColFixLtHdr #header {
	background-color: #FFF;
	height: 200px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
	border-bottom-width: medium;
	border-bottom-style: double;
	border-bottom-color: #240D70;
} 
.twoColFixLtHdr 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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 36px;
	color: #2F1195;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 240px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 25px;
	margin-right: 3px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 18px;
	color:  #240D70;
	font-weight: bolder;
}
.twoColFixLtHdr #mainContent {
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 280px;
	height: auto;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
} 
.twoColFixLtHdr #footer {
	background-color: #240D70;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
} 
.twoColFixLtHdr #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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 12px;
	color: #FFF;
	text-align: center;
}
.twoColFixLtHdr #container #footer p a {
	color: #999;
}

.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;
}
