/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 20px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

/* Commonly used to style page titles. */
h1 {
	color: #000000;
	font-size: 140%;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #000000;
	font-size: 110%;
	font-weight: bold;
	line-height: 20px;
}
/* Sets the style for the h3 header. */
h3 {
	color: #000000;
	font-size: 90%;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000000;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #09760d;
  text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}
#fullWidthHeader {
	background-color: #FFFFFF;
	border-bottom: solid 0px #628152; /* Sets the bottom border properties for an element using shorthand notation */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	height: 50px;
	line-height: 15px;
	padding: 10px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
}
#fullWidthHeader h1 {
	color: #00451b;
	font-family: "Comic Sans MS", cursive;
	font-size: 200%;
	font-weight: bold;
	margin-left: 60px;
	margin-top: -300px;
}
#fullWidthHeader a:hover {
	color: #000000;
	text-decoration: none;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 0 0 0;
	width: 100%;
}
#outerWrapper #search {
	height: 30px;
	padding: 5px 5px 5px 700px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../images/search_bar.jpg);
	border-bottom: 4px solid #000;
	border-top: 2px solid #000;
}
#outerWrapper #topNavigation {
	background-color: #00451b;
	border-bottom: solid 4px #000; /* Sets the top border properties for an element using shorthand notation */
	height: 35px;
	padding: 0 0 0 35%; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	margin-top: 0px;
	background-image: url(../images/left_bg.png);
	background-repeat: repeat;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 227px;
	margin: 0 0 0 0;
}
#outerWrapper #contentWrapper #leftColumn1 a, #outerWrapper #contentWrapper #leftColumn1  a:link {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
#outerWrapper #contentWrapper #leftColumn1 a:hover {
	color: #000000;
	text-decoration: none;
}
#outerWrapper #contentWrapper #leftColumn1 p {
	font-size: 80%;
	padding: 0px 10px 20px 10px;
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
	padding-left: 0px;
	font-weight: bold;
	color: #FFFFFF;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 20px 20px 0 270px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 15px 10px 15px;
}
#outerWrapper #contentWrapper #content a:link, #outerWrapper #contentWrapper #content a:visited {
	color: #000000;
	text-decoration: underline;
}
#outerWrapper #contentWrapper #content a:hover {
	color: #00451b;
	text-decoration: underline;
}
#fixedFullWidthFooter {  /* The following code is for the fixed full width footer */
	margin-top: 0px;
	position: relative;
	background-color: #00451b;
	height: 60px;
	border-top: 4px solid #000;
	color: #FFFFFF;
	display: block;
	text-align: center;
	padding: 5px 0 0 0;
}

#fixedFullWidthFooter  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: 5px 0 0 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	font-size: 70%;
	font-weight: normal;
	color: #FFFFFF;
}
#fixedFullWidthFooter ul {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 70%;
}
#fixedFullWidthFooter li {
	display: inline;
	line-height: 2;
}
#fixedFullWidthFooter a:link, #fixedFullWidthFooter a:visited {
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#fixedFullWidthFooter a:hover {
	color: #000000;
}
#image {
	height: 194px;
	width: 100%;
	background-color: #FFFFFF;
	background-image: url(../images/imagediv_bg.jpg);
	clear: left;
	background-repeat: no-repeat;
	overflow: hidden;
}
.imgborder {
	border-right-width: 4px;
	border-right-style: solid;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-bottom-style: solid;
	border-bottom-width: 4px;
}
#copyright {
	color: #FFFFFF;
	background-color: #171841;
	height: 50px;
	width: 100%;
	border-top-width: medium;
	border-top-style: solid;
	border-top-color: #000000;
	padding: 0;
	font-size: 80%;
}
#copyright p {
	font-size: 100%;
	padding: 0 0 0 0;
	text-align: center;
	margin: 5px 0 0 0;
}
#copyright ul {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 90%;
	text-align: center;
}
#copyright li {
	display: inline;
	line-height: 2;
}
#copyright a:link, #copyright a:visited {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: normal;
}
#copyright a:hover {
	color: #FFFFFF;
	text-decoration: underline;
	font-weight: normal;
}
#topnav {
	padding: 0px;
	height: 23px;
	width: 100%;
	border-bottom: 4px solid #000;
	background-color: #00451B;
}
#botnav {
	height: 23px;
	width: 100%;
	background-color: #00451B;
	padding: 0;
	border-bottom: 4px solid #000;
}
#nav {
	height: 30px;
	float: left;
	margin: 0 500px 0 30px;
}
#topimage {
	background-color: #668666;
	height: 190px;
	width: 100%;
	background-image: url(../images/imagediv_bg.jpg);
	border-bottom: 4px solid #000;
}
.smalltext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-style: italic;
	font-weight: normal;
	color: #000000;
}
.fltrt {
	float: right;
	border: 2px solid #000;
	margin: 5px 0 10px 10px;
}
.fltltf {
	float: left;
	border: 2px solid #000;
	margin: 5px 10px 10px 0;
}

.police {
	float: left;
}

.policefltrt {
	float: right;
}

