/* ZERO OUT GLOBAL ELEMENTS --------------------------------- */
/* --------------------------------------------------------- */

body, h1, h2, h3, h4, p, li, ul {
  margin: 0px; /* Removes default margin that some browsers add. */
  padding: 0px; /* Removes default padding that some browsers add. */
}

/* SET THE BODY STYLES ------------------------------------- */
/* --------------------------------------------------------- */

body {
	color: #333333; /* Sets the background image to tile across the x axis of the page. Also sets the background color in case images are turned off or are unavailable. */
	text-align: center; /* Centers the page in various versions of WinIE5. */
	font-family: "Artifika", Times, serif;
	font-size: 90%;
	background-color: #AEB37F;
	background-image: url(images/body_bg_tile.jpg);
	background-repeat: repeat;
	line-height: 130%;
}

a {
border: none;
 }

a img {
border: none;	
}

a:link {
	color: #CC6600;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #663333;
}
a:hover {
	text-decoration: none;
	color: #009999;
}
a:active {
	text-decoration: none;
}

/* STYLE THE MAIN WRAPPER DIV ------------------------------- */
/* --------------------------------------------------------- */

#wrapper {
	text-align: left; /* Resets the text alignment to left to override what was set for versions of WinIE5. */
	margin: 0px auto; /* Centers the content of the page within the window in all but versions of WinIE5. */
	width: 680px;
}

/* STYLE THE HEADER DIV ------------------------------------ */
/* --------------------------------------------------------- */

#header {
	height: 145px;
}

#header h1 {
	padding-left: 415px; /* Sets large left padding on the h1 element so that the logo image within moves to the right of the clouds in the header background image. */
}

#header span {
	position: absolute; /* Takes the span (that holds the text for the H1 text) out of the document flow so that it can be positioned in an exact place on (or off) the page. */
	left: -3000px; /* Puts the text within the h1 way off screen so that visual users to not see it. */
}

/* STYLE THE NAVIGATION DIV ---------------------------------*/
/* --------------------------------------------------------- */

#nav {
	width: 120px;/* Adds a non repeating background image to the nav DIV. */
	height: 100px;
	padding-left: 25px;
}

#nav ul {
	list-style-type: none; /* Removes default list bullets. */
	font-size: 80%; /* Centers items in nav list. */
	text-align: center;
	line-height: normal;
}
#nav li {
	display: block;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 0px;
	background-image: url(images/dingbat.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
}

#nav li a:link, #nav li a:visited {
	color: #CC6600; /* Sets color of unvisited and visited links to  white. */
	text-decoration: none; /* Adds space to the left of each list item. */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
}
#nav li a:hover, #nav li a:active, #nav li a:focus {
  color: #518DBA; /* Changes text color of links to blue on hover, activation, and focus. */
}
#nav ul li a.active
{
	color: #990000;

}

/* STYLE THE INNER WRAPPER THAT HOLDS THE COLUMNS ---------- */
/* --------------------------------------------------------- */

#innerwrapper {
	float: left; /* Floating all columns and their container helps avoid IE bugs.*/
	width: 680px;
	min-height: 550px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 0px;
	background-image: url(images/inner_wrap_bg_20.jpg);
	background-repeat: repeat-y;
}
#container{
	width: 655px;
	float: left;
	padding-left: 25px;
	margin-top: 20px;
}

/* STYLE THE CONTENT COLUMN --------------------------------- */
/* --------------------------------------------------------- */

#content {
	float: left; /* Sets the width of the content column to 420 pixels. */
	width: 485px;
	padding-left: 30px;
}
#content h2 {
	padding-top: 5px;
	font-size: 110%;
	color: #444;
}

#content span {
	position: absolute; /* Takes the span (that holds the text for the H2 text) out of the document flow so that it can be positioned in an exact place on (or off) the page. */
	left: -3000px; /* Puts the text within the h1 way off screen so that visual users to not see it. */
} 


#content p {
	margin-top: 5px; /* Places 5 pixels of margin above content paragraphs. */
	margin-right: 10px; /* Places 10 pixels of space between the right edge of the content paragraphs and the right edge of the container. */
	margin-left: 0px; /* Places 20 pixels of space between the left edge of the content paragraphs and the left edge of the container. */
	line-height: 150%; /* Opens up the spacing (leading) between lines of text. */
	margin-bottom: 0px;
}
#sidebar {
	width: 130px;
	height: 100px;
	float: left;
	padding-top: 5px;
	}

#sidebar h2 {
	font-size: 100%;  /* Sets the font size to 100% of the user's browser preference, */
	font-weight: normal; /* Removes the default bolding that the browser puts on heading text. */
	margin-top: 20px; /* Adds 20 pixels of top margin so that the baseline of the  sidebar h2 text starts at the baseline of the Welcome image. */
	margin-right: 10px; /* Adds some space on the right of the h2 to make sure it doesn't touch the edge of the container. */
	margin-left: 10px; /* Adds some space on the left of the h2 to make sure it doesn't touch the left edge of the container. */
}

#sidebar p {
	font-size: 80%;  /* Sets the font size to 80% of the user's browser preference, */
	margin-top: 10px; /* Adds top margin to the paragraph text so that the baseline of the first line is even with the first line of text in the first content paragraph. */
	margin-right: 10px; /* Adds some space on the right of the h2 to make sure it doesn't touch the edge of the container. */
	margin-left: 10px; /* Adds some space on the left of the h2 to make sure it doesn't touch the left edge of the container.*/
	text-align: center;
}
#footer {
	background-image: url(images/footer_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 140px;
}
#footer p {
	font-size: 70%;  /* Sets the font size to 70% of the user's browser preference, */
	text-align: center; /* Pads the footer paragraph text so that it starts in the soft, rounded, green rectangle. */
	line-height: 150%;
}

/* CLASSES FOR IMAGES AND CLEARING FLOATS -------- */
/* --------------------------------------------------------- */

.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 */
	font-size: 1px; /* Sets the font size to 1 pixel */
	line-height: 0px; /* Sets line-height to 0 -font and line-height, even if not explicitly on the page, might add diemnsion to the clearing element rather than make it larely invisible */
	clear: both; /* Keeps floated divs from draping over objects beneath them. */
	height: 0px; /* Makes sure the clearing element has no height */
}

.lftflt {
  	float: left; /* Moves the image to the left side of its container and allows text to flow around its right side. */
	margin-right: 8px; /* Adds 8 pixels of space to the right of the image so that it does not touch the text */
}
.rtflt {
  	float: right; /* Moves the image to the left side of its container and allows text to flow around its right side. */
	margin-left: 8px; /* Adds 8 pixels of space to the right of the image so that it does not touch the text */
}
.borderspecial {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-color: #CC6600;
	border-bottom-color: #CC6600;
	padding-top: 3px;
	padding-bottom: 3px;
	text-align: center;
}
#event h4 {
	margin: 0px;
	color: #990000;
	font-size: .95em;
	line-height: normal;
	text-align: center;
	padding: 0px;
}
#event {
	width: 120px;
	padding-left: 25px;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-color: #CC6600;
	border-left-color: #CC6600;
}
.event {
	font-weight: bold;
	color: #990000;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
/*table styling*/
table.cm 
{
	text-align: center;
	font-weight: normal;
	font-size: 11px;
	color: #fff;
	width: 400px;
	border: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
}

table.cm td 
{
	color: #000;
	padding: 6px;
	text-align: left;
	border: 1px solid #ACB27F;
}

table.cm td.hed
{
	background-color: #AEB47D;
	text-align: left;
	font-size: 12px;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #ACB27F;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
}
.cmform {
	line-height: 2em;
	font-size: 1em;
}

.button {
	background-color: #ACB57F;
	width: 100px;
	margin-top: 10px;
}
.button:hover {
	background-color: #717854;
}
.formelement {
	width: 300px;
}
.padding15pxtop {
	padding-top: 15px;
}
.marginbottom {
	margin-bottom: 15px;
}
.small {
	font-size: 1em;
	font-style: italic;
}

