@charset "utf-8";
/* CSS Document */

<style type="text/css"> 
<!-- 

/* -Body----------------------------------------------------------- */

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;
}

/* -Container----------------------------------------------------------- */

.twoColFixLtHdr #container { 
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #2e3741;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0;
} 

/* -Header----------------------------------------------------------- */

.twoColFixLtHdr #header { 
	background: #6384bd; 
} 
.twoColFixLtHdr #header 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; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #logoWrap {
	width: 1px;
	height: 1px;
	left: 0;
	position: relative;
}

.twoColFixLtHdr #logo {
	width: 230px;
	height: 180px;
	position: relative;
	top: -49px;
	left: 727px;
	background: url(/images/logo.png) no-repeat;
}
.twoColFixLtHdr #address {
	float:left;
}

.twoColFixLtHdr #address  p  {
	text-align:left;
	color:#FFFFFF;
	font-size: small;
	font-weight: bold;
	margin: 0;
	padding: 0px 0px 0px 0px;
	position: relative;
	top: 98px;
	left: -370px;
}

/* -Left Sidebar----------------------------------------------------------- */

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */

}
.twoColFixLtHdr #sidebar1 h3 {
	margin: 0px;
	color: #344761;
	font-size: large;
	padding: 0px;
	font-weight:normal;
}

.twoColFixLtHdr #sidebar1 p {
	font-size: small;
	color:#344761;
	line-height: 18px;
	margin: 6px 0px 0px 0px;
}
/* -Directory----------------------------------------------------------- */

.twoColFixLtHdr #directory {
	width: 100%;
	background: #FFFFCC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px;
	border-style: solid;
	border-width: 0 1px 0 0;
	border-color: #9dbbc8;  /* dark menu color for drop down part */
}
.twoColFixLtHdr #directory a, .twoColFixLtHdr #directory a:link,.twoColFixLtHdr #directory a:visited {
	padding-left: 20px;
	color: #344761;
	text-decoration: none;
}
.twoColFixLtHdr #directory a:hover, .twoColFixLtHdr #directory a:visited:hover {
	color: #8b2a1b;
	text-decoration: underline;
	background-image:url(/images/icon-arrow-right-black.png);
	background-repeat: no-repeat;
	background-position: left top;
}
/* -Logos----------------------------------------------------------- */

.twoColFixLtHdr #logos {
	width: 100%;
	padding: 15px 10px 15px 20px;
}

.twoColFixLtHdr #logos a, .twoColFixLtHdr #logos a:link,.twoColFixLtHdr #logos a:visited {
	color: #344761;
	text-decoration: none;
}

.twoColFixLtHdr #logos a:hover, .twoColFixLtHdr #logos a:visited:hover {
	color: #8b2a1b;
	text-decoration: underline;
}
/* -Main Content----------------------------------------------------------- */

.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 15px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #mainContent h1 {
	margin: 0px;
	color: #8b2a1b;
	font-size: xx-large;
	padding: 0px;
	font-weight:bold;
}
.twoColFixLtHdr #mainContent h2 {
	margin: 0px;
	color: #344761;
	background: #9dbbc8;
	font-size: x-large;
	padding-left: 10px;
	font-weight:bold;
}
.twoColFixLtHdr #mainContent h3 {
	margin: 0px;
	color: #344761;
	font-size: large;
	padding: 0px;
	font-weight:bold;
}
.twoColFixLtHdr #mainContent table {
	border-collapse: collapse;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", verdana, lucida, helvetica, sans-serif;
	font-size: 1em;
	margin: 0;
	padding: 0;
}
.twoColFixLtHdr #mainContent caption {
	font-size: 1.5em;
	font-stretch: condensed;
	font-weight: bold;
	padding-bottom: 5px;
	text-align: left;
	text-transform: uppercase;
	color: 344761;
}
.twoColFixLtHdr #mainContent th, .twoColFixLtHdr #mainContent td {
	border-bottom: 1px solid #344761;
	border-top: 1px solid #344761;
	padding: 0.1em;
	vertical-align: 4px;
}
.twoColFixLtHdr #mainContent th {
	text-align: left;
	text-transform: uppercase;
}
.twoColFixLtHdr #mainContent thead th, .twoColFixLtHdr #mainContent tfoot th, .twoColFixLtHdr #mainContent tfoot td {
	background-color: #9dbbc8;
	color: 344761;
	font-size: 1.3em;
}
.twoColFixLtHdr #mainContent tbody th {
	padding-left: 13px;
}
.twoColFixLtHdr #mainContent tbody th, td {
	background-color:#fff;
}
.twoColFixLtHdr #mainContent tbody tr:hover td, .twoColFixLtHdr #mainContent tbody tr:hover th {
	background-color: #E5E5CB;
}
.twoColFixLtHdr #mainContent tbody tr:hover th {
	background-image:url(/images/icon-arrow-right-black.png);
	background-repeat: no-repeat;
	background-position: left top;
	}
.twoColFixLtHdr #mainContent tr.odd td, .twoColFixLtHdr #mainContent tr.odd th {
	background-color: #ffffcc;
}
.twoColFixLtHdr #mainContent tr.subhead td, .twoColFixLtHdr #mainContent tr.subhead th {
	background-color: #9dbbc8
	color: 344761;
}

.twoColFixLtHdr #mainContent p {
	margin: 0px;
	color: #000000;
	font-size: medium;
	padding: 0px;
}
.twoColFixLtHdr #mainContent ul {
	margin: 0 0 0 25px;
	font-size: medium;
	}
.twoColFixLtHdr #mainContent ol {
	margin: 0 0 0 25px;
	font-size: medium;
	}
.twoColFixLtHdr #mainContent blockquote {
	margin: 0 0 0 25px;
	}
	
/* -Links for main Content----------------------------------------------------------- */

.twoColFixLtHdr #mainContent a:link,
.twoColFixLtHdr #mainContent a:visited	{ color: #6384bd; text-decoration: none; }
.twoColFixLtHdr #mainContent a:hover		{ color: #8b2a1b; text-decoration: underline;}
.twoColFixLtHdr #mainContent a:active	{ color: #6384bd; }

.twoColFixLtHdr #mainContent a.nav {
	background: url(http://www.wapellocounty.org/images/button/nav.gif) no-repeat 0 0;
	width: 179px;
	height: 47px;
	display: block;
	text-indent: -9999px;
}
.twoColFixLtHdr #mainContent a.nav:hover { background-position: 0 -47px; }
.twoColFixLtHdr #mainContent a.nav:active { background-position: 0 -94px; }
	
/* -Breadcrumb----------------------------------------------------------- */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.breadcrumb{
font: small Verdana, Arial, Helvetica, sans-serif;
}

.breadcrumb a{
background: transparent url(http://www.wapellocounty.org/images/breadcrumb.gif) no-repeat center right;
text-decoration: none;
font-weight: bold;
padding-right: 18px; /*adjust bullet image padding*/
}

.breadcrumb a:visited, .breadcrumb a:active{
}

.breadcrumb a:hover{
text-decoration: underline;
}
/* -SUBMENU----------------------------------------------------------- */
.submenu{
font: Verdana, Arial, Helvetica, sans-serif;
}

.submenu a{
text-decoration: none;
font-size: small;
}

.submenu a:visited, .submenu a:active{
}

.submenu a:hover{
text-decoration: underline;
}
	
/* -Icons----------------------------------------------------------- */
.pdf {
     background: url(/images/icon/pdf.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}

.mail {
     background: url(/images/icon/mail.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}

.web {
     background: url(/images/icon/web.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}

.phone {
     background: url(/images/icon/phone.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.home {
     background: url(/images/icon/home.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.contact {
     background: url(/images/icon/contact.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.calender {
     background: url(/images/icon/calender.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.audio {
     background: url(/images/icon/audio.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.download {
     background: url(/images/icon/download.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.text {
     background: url(/images/icon/text.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.image {
     background: url(/images/icon/image.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.music {
     background: url(/images/icon/music.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.fax {
     background: url(/images/icon/fax.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.clock {
     background: url(/images/icon/clock.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.directory {
     background: url(/images/icon/directory.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.compass {
     background: url(/images/icon/compass.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.printer {
     background: url(/images/icon/printer.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
.word {
     background: url(/images/icon/word.gif) top left no-repeat;
     padding-left: 20px;
     display: inline-table;
}
/* -Right Box----------------------------------------------------------- */
	
.twoColFixLtHdr #right {
	float: right; /* since this element is floated, a width must be given */
	width: 155px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFCC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	margin: 0 0 10px 10px; /* the first number is the top, second is the right, third is the bottom, and fourth is the left */
	border-style: solid;
	border-width: 1px;
	border-color: #9dbbc8;  /* dark menu color for drop down part */
}
.twoColFixLtHdr #right h3 {
	margin: 0px;
	color: #344761;
	font-size: large;
	padding: 0px;
	font-weight:normal;
}

.twoColFixLtHdr #right p {
	font-size: small;
	color:#344761;
	line-height: 18px;
	margin: 6px 0px 0px 0px;
}
.twoColFixLtHdr #right a, .twoColFixLtHdr #right a:link,.twoColFixLtHdr #right a:visited {
	padding-left: 20px;
	color: #344761;
	text-decoration: none;
	display: inline-table;
}

.twoColFixLtHdr #right a:hover, .twoColFixLtHdr #right a:visited:hover {
	color: #8b2a1b;
	text-decoration: underline;
	background-image:url(/images/icon-arrow-right-black.png);
	background-repeat: no-repeat;
	background-position: left top;
}
/* -ColLeft----------------------------------------------------------- */
.twoColFixLtHdr #colleft {
	float: left; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0 0 20px 0; /* the first number is the top, second is the right, third is the bottom, and fourth is the left */
}
.twoColFixLtHdr #colleft h3 {
	margin: 0px;
	color: #344761;
	font-size: large;
	padding: 0px;
	font-weight:normal;
}

.twoColFixLtHdr #colleft a, .twoColFixLtHdr #colleft a:link,.twoColFixLtHdr #colleft a:visited {
	padding-left: 20px;
	color: #6384bd;
	text-decoration: none;
}

.twoColFixLtHdr #colleft a:hover, .twoColFixLtHdr #colleft a:visited:hover {
	color: #8b2a1b;
	text-decoration: underline;
	background-image:url(/images/icon-arrow-right-black.png);
	background-repeat: no-repeat;
	background-position: left top;
}
/* -ColRight----------------------------------------------------------- */
.twoColFixLtHdr #colright {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
		margin: 0 0 20px 0; /* the first number is the top, second is the right, third is the bottom, and fourth is the left */
}
.twoColFixLtHdr #colright h3 {
	margin: 0px;
	color: #344761;
	font-size: large;
	padding: 0px;
	font-weight:normal;
}

.twoColFixLtHdr #colright a, .twoColFixLtHdr #colright a:link,.twoColFixLtHdr #colright a:visited {
	padding-left: 20px;
	color: #6384bd;
	text-decoration: none;
}

.twoColFixLtHdr #colright a:hover, .twoColFixLtHdr #colright a:visited:hover {
	color: #8b2a1b;
	text-decoration: underline;
	background-image:url(/images/icon-arrow-right-black.png);
	background-repeat: no-repeat;
	background-position: left top;
}
/* -Left2----------------------------------------------------------- */
.twoColFixLtHdr #left2 {
	float: left; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0 0 20px 0; /* the first number is the top, second is the right, third is the bottom, and fourth is the left */
}
.twoColFixLtHdr #left2 h3 {
	margin: 0px;
	color: #344761;
	font-size: large;
	padding: 0px;
	font-weight:normal;
}

.twoColFixLtHdr #left2 a, .twoColFixLtHdr #left2 a:link,.twoColFixLtHdr #left2 a:visited {
	color: #6384bd;
	text-decoration: none;
}

.twoColFixLtHdr #left2 a:hover, .twoColFixLtHdr #left2 a:visited:hover {
	color: #8b2a1b;
	text-decoration: underline;
}
/* -Right2----------------------------------------------------------- */
.twoColFixLtHdr #right2 {
	float: right; /* since this element is floated, a width must be given */
	width: 270px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
		margin: 0 0 20px 0; /* the first number is the top, second is the right, third is the bottom, and fourth is the left */
}
.twoColFixLtHdr #right2 h3 {
	margin: 0px;
	color: #344761;
	font-size: large;
	padding: 0px;
	font-weight:normal;
}

.twoColFixLtHdr #right2 a, .twoColFixLtHdr #right2 a:link,.twoColFixLtHdr #right2 a:visited {
	color: #6384bd;
	text-decoration: none;
}

.twoColFixLtHdr #right2 a:hover, .twoColFixLtHdr #right2 a:visited:hover {
	color: #8b2a1b;
	text-decoration: underline;
}
/* -Social----------------------------------------------------------- */
.twoColFixLtHdr #social {
	float: right; /* since this element is floated, a width must be given */
	width: 110px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
		margin: 0 0 0 0; /* the first number is the top, second is the right, third is the bottom, and fourth is the left */
		text-align: right;
}
/* -Footer----------------------------------------------------------- */

.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#344761; 
	font-size: x-small;	
} 
.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 */
	color:#9dbbc8;
}
.twoColFixLtHdr #footer a, .twoColFixLtHdr #footer a:link,.twoColFixLtHdr #footer a:visited {
	color: #ffffff;
	text-decoration: none;
}

.twoColFixLtHdr #footer a:hover, .twoColFixLtHdr #footer a:visited:hover {
	color: #ffffff;
	text-decoration: underline;
	}
	
/* -Float----------------------------------------------------------- */
	
.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;
}
--> 
</style><!--[if IE 5]>
<style type="text/css"> 
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixLtHdr #sidebar1 { width: 230px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css"> 
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixLtHdr #sidebar1 { padding-top: 30px; }
.twoColFixLtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
