/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */
body {
	background: #ffffff;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td {
	font-family: Verdana, Arial, Helvetica, sans-serif;

	
}
/* Redefines the p tag */
p {
	margin-top: 0px;
	margin-right: 35px;
	margin-bottom: 0px;
	margin-left: 35px;
	font-size: 12px;
	padding: 0px;
}
/* for page titles tag */
h {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;

}
h1 {
	font-size: 16px;
	color: #000000;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	margin-left: 20px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	padding-left: 10px;
	
}
h2 {
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited, a:hover, a:active {
	text-decoration: underline;
	color: #FF1A15;
	font-weight: bold;
}
li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 45px;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */



/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */

div#container{
	width: 770px;
	margin: 3px auto;
	padding: 0px;
	background-image: url(images/bg.gif);
	background-repeat: repeat-y;
}
div#header {
	width: 770px;
	height: 175px;
	background-image: url(images/header.jpg);
}


div#content {
	width: 770px;
	margin: 0px;
	padding: 0px;
	position: relative;
	text-align: left;
	background-image: url(images/bg.gif);
	background-repeat: repeat-y;
}

#content a:link, #content a:active, #content a:visited {
	text-decoration: underline;
	color: #FF1A15;
	font-weight: bold;
}
#content a:hover {
	color: #333333;
	font-weight: bold;
} 

div#contentright {
	width: 210px;
	margin: 0px;
	padding: 0px;
	position: relative;
	text-align: left;
	float: right;
	border: 0px none;
}



div.leftpane {
	margin-right: 5px;
	padding: 5px 5px 5px 0px;
	text-align: center;
	border-right: 1px solid #ebebeb;
	float: left;
}

	div.leftpane img {
	border: 1px solid #333333;
	margin-bottom: 5px;
	padding: 0px;
	}

div#contentleft {
	width: 550px;
	margin: 0px;
	padding: 0px;
	position: relative;
	text-align: left;
	float: left;
}

/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
	width: 770px;
	height: 31px;
	margin: 0px;
	padding: 0px;
	position: relative;
	background-repeat: no-repeat;
	background-image: url(images/navbar.gif);
}
/* Removes any default margins or padding applied to lists. Floats the list to the left, which incorporates the child elements (i.e. the links) and provides a full-length background color that extends past the links.*/

ul#mainnav {
	margin: 0px;
	padding: 0px 0px 0px 8px;
	list-style-type: none;
	border: 0px 0 0;
	list-style-image: none;
	width: 770px;
	position: relative;
	}

/* Lists, by default, are block level elements, so the applying the inline style removes the line breaks of a block level element and causes the links to line up next to one another. We float the items left as some browsers have difficulty displaying the inline property correctly in this fashion. We remove all margins and padding and the bullet by setting the list style type to none.*/

ul#mainnav li {
	display: inline;
	float: left;
	margin: 0px auto;
	padding: 0px;
}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	text-decoration: none;
	text-align: left;
	display: block;
	width: auto;
	padding: 10px 8px 7px 7px;
	margin: 0px;
	color: #000099;
	font-weight: bold;
	list-style-type: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CC6600;
	text-transform: uppercase;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	color: #333333;
	background-color: #FF6600;
}

/*------- audio div that is in header div -----------------*/
div#audio {
	width: 770px;
	margin: 0px auto;
	text-align: right;
}
	
	div#audio p {
		font-size: 10px; 
	}
	
	div#audio a {
	color: #000000;
	text-decoration: none;
	font-size: 10px;
	padding-bottom: 5px;
	text-transform: capitalize;
	}
	
	div#audio a:hover {
		color: #666666; 
	}

/* Creates the div container for the footer. */

div#footer {
	clear: both;
	width: 770px;
	margin: 0px;
	padding: 0px;

	background-image: url(images/footer.jpg);
	height: 124px;
	text-align: left;
}
div#footer p {
	font-size: 10px;
}
div#footer a:link, a:visited, a:active{
	color: #333333;
	text-decoration: none;
	font-size: 10px;
	text-transform: uppercase;
}

div#footer a:hover {
	color: #000000;
text-decoration: none;
	font-size: 10px;
	text-transform: uppercase;
}

/* ----------------- NETOPIA IFRAME ----------------- */

iframe{
	margin-top: -5px;
	margin-left: 10px;
}
/* -----------------copyright stuff-------------- */

div#copyright {
	font-size: 10px;
	text-align: center;
	height: 20px;
	width: 770px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #FFFFFF;
}
div#copyright a:link {

	color: #000033;
	text-decoration: none;
	font-size: 10px;
	text-transform: capitalize;
}
/* ----------------- to position copyright text ----------------- */
.copyright {
	margin: 0px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}


/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
	margin: 5px;
	padding: 0px;
}
img.right {
	float: right;
	margin: 5px;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */
address {
	font-size: 10px;
	font-style: normal;
	color: #000000;
	text-align: left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

div.clear {
	clear: both;
	line-height: 0px;
}

ul#column2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px;
	margin: 0px;
	width: 450px;
	float: right;
}
ul#column1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 45px;
}



/* ----------------- unused  CLASSES ----------------- */

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
	width: 700px;
}

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
}
/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {
	border-collapse: collapse;
	float: left;
	text-align: center;
	background-position: center;
	margin-left: 25px;
}
.footer {
	text-align: left;
	padding: 0px;
	margin-top: 20px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
div#map {
	border: 1px solid #666666;
	margin: 15px 20px 20px 50px;
	width: 382px;
}

.hours {
	float: left;
	width: 150px;
}

.center {
	text-align: center;
}

.lower {
	margin-top: 60px;
	}
