* { margin: 0; padding: 0;}

html, body { height: 100%; }

body { 
	color: #000; 
	font: 100%/140% Arial, Helvetica, sans-serif; 
	background: #FFF url(http://www.charlottecountyfl.com/images/wavebg.gif) center top no-repeat;
} 

/* elements */
h1, h2, h3 { 
	margin: 0.5em 0;
	font-family: Arial, Helvetica, sans-serif; /* need to redefine font-family on headings for Opera < 9 */
	color: #003; 
}
h4, h5, h6, ol, ul, dl, pre, p, blockquote { margin: 0.8em 0; }
h2, h3 { margin-top: 0; }
h1 { font-size: 180%; }
h2 { font-size: 150%; }
h3 { font-size: 130%; }
h4 { font-size: 120%; }
h5 { font-size: 120%; }
h6 { font-size: 100%; }
p { margin-top: 0; line-height: 1.6; } /* line-height doesn't need a unit */
li, dt, dd { margin: 0.0em 0; }
#content ul, #content ol { margin-left: 2em; padding-left: 1em; } /* indent all lists that appear in #content */
a { color: #009; font-weight: bold; }
a:hover, a:focus, a:active { background-color: #ffc; text-decoration: none; }
a:visited { color: #666; }
a img { border: none; }
table { 
    border-collapse: separate;
	border: 1px solid gray;
	}
  td { border: 1px solid gray; padding: 2px; }


/* general classes */
.clearer:after { /* easy clearing method - for clearing floats */
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
/* \*/
.clearer { display: block; }
/* */

.clear { clear: both; }
.offset { /* used for stuff you want to move off screen like skips links or form labels */
	position: absolute;
    left: -99em;
    overflow: hidden; 
}

/*---------------------------- Structure ----------------------------*/
#header { 
	position: relative; 
	z-index: 10;
	height: 120px;
	font-size: 80%;
}

#wrapper { 
	position: relative; 
	min-height: 100%;
	width: 100%;
	max-width: 84em; /* not understood by IE - see width: expression in IE.css */
	font-size: 80%;
}
#contentwrap { float: left; width: 100%; }
#content { 
	margin: 0 0 0 230px; /* change the left margin to move the content further away from the left column */
	padding-top: 20px; /* if you're not going to have a breadcrumb, you probably want to move the rest of the content down a bit. At the moment it lines up with the text resize menu in the left column. You may want to have it start directly underneath divisionmenu in which case, take it out. */
	padding-right: 1em;
}
#mainnav {
	float: left;
	margin-left: -100%;
	padding-top: 40px; /* make room for the logo */
	width: 210px;
	background: #DBF8D8;
}

#footer {
	clear: both;
	background-color: #F4F4F4;
	border-top: 1px dotted #B1B1B1;
	font-size: 80%;
	text-align:center;
}

/* home pages only 
V1 - fixed width right column */
body#home-page #content { position: relative; }
#home-page-content { margin-right: 235px; } /* move the middle column away from the right column */
#home-page-nav { 
	position: absolute; 
	top: 45px; right: 5px; 
	width: 190px; /* this nav has a fixed width */
	padding: 10px;
	background: #DBF8D8;
}
#home-page-nav ul { 
	margin: 0;
	padding: 0;
}

/* V2 - fluid columns */
body#home-page2 #content { 
	padding-top: 1px; /* to counter collapsing margins in non-IE browsers */
}
body#home-page2 h1 { 
	margin-top: 45px; /* to make it line up with text resize menu */
	margin-bottom: 0em; /* give the h1 a bit more space below on these three column pages */
}
#home-page-one {
	float: left;
	width: 65%; /* change this and width on #home-page-two for different width columns */
}
#home-page-two {
	float: right;
	width: 30%;
}

/*---------------------------- Elements ----------------------------*/
/*--------------- Header ---------------*/
/* This is the same style for the skip links. As you're not using it, I've moved the auxhiliary menu here instead */
#aux { 
	margin: 0 0 0 5px;
	font-size: 90%; 
	text-align: right;
}
#aux li { display: inline; margin-right: 0.5em; }
#aux a { 
	padding: 2px; 
	color: #FFF; 
	background: #659ACE;
	text-decoration: none; 
}
#aux a:hover, #aux2 a:focus, #aux2 a:active { 
	background: #006; 
	color: #FFF; 
	text-decoration: none;
}
#a:visited { color: #666; }

/* Used absolute positioning for the title and divisionmenu so that the header stays a fixed height */
#title {
	font: bold 160% Verdana, Arial, Helvetica, sans-serif; 
	position: absolute;
	bottom: 40px; right: 10px;
	text-align: right;
	color: #FFF;
/*	background: #659ACE;  */
}

ul#divisionmenu {
	position: absolute;
	top: 87px; left: 0;
	z-index: 10;
	width: 100%;
	margin-bottom: 0;
	list-style: none;
	overflow: hidden;
	background: #FFC;
	border: 1px solid #000;
	border-width: 1px 0;
}
#divisionmenu li {
	display: inline;
	text-align: center;
	line-height: 1.0;
}
#divisionmenu a {
	float: right;
	display: block;
	padding: 4px 6px;
	text-decoration: none;
	color: #000;
	background: #FFC;
	border: 1px solid #000;
	border-width: 0 0 0 1px;
}

#divisionmenu a:hover, 
#divisionmenu a:focus, 
#divisionmenu a:active,
#divisionmenu a.active { text-decoration: underline; background-color: #dbf8d8; }

#divisionmenu a.active, #divisionmenu a:visited.active { color: #000; text-decoration: none; cursor: text }

#logo {
	position: absolute;
	top: 5px; left: 25px;
	z-index: 30;
	width: 150px; height: 150px;
	background: url(../../images/logo.gif) no-repeat;
}

#print-logo { display: none; } /* turn this off for screen presentation */

/*--------------- Content ---------------*/
/* Breadcrumb style - commented out for now

#content #breadcrumb {
	margin: 0; padding: 0;
	font-size: 90%;
	overflow: hidden;
}
#breadcrumb li { display: inline; }
#breadcrumb a { padding: 0; }
*/

#content ul { 
list-style: none; 
} 
#content li span {
	display: block;
	background: url(../../images/liArrow.gif) 0 5px no-repeat; /* custom arrows for list items */
	padding-left: 1.6em;
}
#content li span a:hover, #content li span a:focus, #content li span a:active { background-color: #ffc; }
.content-pic { float: left; margin-right: 1em; } /* for pics aligned to the left */ 
.content-pic2 { float: right; margin-left: 1em; } /* for pics aligned to the right */
/*-- #content img { border: 1px solid #000 }  --*/

#content ul.bullets {
list-style: disc;
margin-left: 20px;
}
#content ul.float-left-bullets {
list-style: disc;
float: left;
margin-left: 5px;
margin-right: 15px;
}

img.float-left { 
	float: left;
	padding: 0 10px 0 0;
}
img.float-right { 
	float: right;
	padding: 0 0px 0 0px;
	border: 1px solid #000;
	margin-left: 10px;
}
ul.float-left {
float: left;
margin-left: 5px;
margin-right: 5px;
}

	.gallery li {
		float: left;
		margin-right: 10px;
		text-align: center;
	}
	
	.gallery li h4 { margin-bottom: 5px }
	
	.gallery li img { display: block }

	#content ul.inline-list { 
		float: left;
		width: 100%;
		margin-left: 0; 
		padding-left: 0 
	}	
	#content ul.inline-list li { 
		float: left; 
		margin-right: 5px 
	}


/*--------------- Main nav ---------------*/
#mainnav h3 { /* headings in the left column */
	margin-bottom: 0;
	padding: 10px 0 0 6px;
}

/* the resize text tabs */
#resize { 
	margin: 0.5em 0 0.5em 5px;
	font-size: 1.2em; 
	font-weight: bold; 
}
#resize a {
	border: 1px solid black;
	margin-right: 5px;
	padding: 0 4px;
	text-decoration: none;
	width: 2em;
	background-color: #FFF;
}
#resize a:hover { background-color: #FFC; }

#mainnav select { 
	width: 165px; 
	margin-left: 5px;
	height: 20px;
}
#mainnav option { font-size: 90%; }

/* site nav WITHOUT submenus */
ul.site-nav {
	width: 208px;
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	border-right: 1px solid #666;  /* grey */
	border-bottom: 1px solid #666;  /* grey */
}
.site-nav li {
	margin: 0;
	padding-left: 5px; /* move everything in 5px to move the text from the left edge */
	border-top: 1px solid #666;  /* grey */
	background-color: #dbf8d8;  /* med green - used to be med blue 69C */
	color: #000;  /* white */
	font-weight: bold;
}
.site-nav a {
	text-decoration: none;
	color: #000;
	display: block;
	margin-left: -5px; /* then bring the anchors back 5px so there's no space. Remember that total width = width + margin + padding + border */
	width: 188px;
	background-color: #ffc;  /* yellow */
	border-right: 10px solid #6c6;  /* med green */
	padding-left: 10px;
}
.site-nav a:hover, .site-nav a.active {
	text-decoration: underline;
	color: #003;  /* dark purple */
	background-color: #dbf8d8;  /* light green */
	border-right: 10px solid #336;  /* purple */
}

.site-nav a.active, .site-nav a:visited.active { color: #000; text-decoration: none; cursor: text }

.site-nav a:visited {
	color: #666;  /* grey */
}

/* modifications for site nav WITH submenus */
#site-nav2 a {
	color: #000;  /* black */
	background-color: #ffc;  /* yellow */
}
#site-nav2 a:hover {
	text-decoration: underline;
	color: #003;  /* dark purple */
	background-color: #dbf8d8;  /* light green */
	border-right: 10px solid #336;  /* purple */
}
#site-nav2 ul {
	list-style: none;
	margin: 0 0 0 -5px;
}

#site-nav2 ul a {
	width: 178px;
	color: #000;
	background-color: #ffc;  /* yellow */
	padding-left: 20px;
}
#site-nav2 ul a:hover {
	background-color: #dbf8d8;  /* light green */
}
#site-nav2 a:visited {
	color: #666;
}

/* Google search */
#site-search { 
	margin: 0.5em;
	padding: 0.5em;
	background: #FFF; 
	text-align: center;
	font-size: 90%;
}

#site-search input { display: block; width: 120px; margin: 0 auto } /* give the text input a width */
#site-search input.auto { display: inline; width: auto; } /* then reset it for the search button */
#site-search a:hover { background: none; }
#site-search .auto input {display: inline; width: auto; }  /* from Jonathan for ASP.NET pages because input.auto doesn't apply correctly and gets ignored */

/*--------------- Footer ---------------*/
#footer p { padding-left: 1em; }

/* Tools - Acrobat */
#tools { 
	margin: 0.5em;
	padding: 0.5em;
	background: #FFF; 
	text-align: center;
	font-size: 90%;
}

/* This is for IE5Mac only */
/*\*//*/
#title { background: none; }
/**/