/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background-image: url(images/bg.gif);
	background-repeat: repeat-x;
	background-color: #ccc;
	font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
}

/* 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, form, input, legend, select, option, address {
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}

/* Redefines the p, li, td, and address tags */
p, li, td, address {
	font-size: 11px;
}

/* Sets the line-height for these tags */
p, td {
	line-height: 18px;
}

address {
	line-height: 14px;
	font-style: normal;
	}
	

	
/* Styles A links */
a img {
	border: 0px;
}
a:link {
	text-decoration: underline;
	color: #D7161F;
	}
a:visited {
	text-decoration: underline;
	color: #B1050D;
 }
a:hover {
	text-decoration: none;
	color: #D7161F;
	}
a:active, a.selected {
	text-decoration: none;
	color: #C50C15;
	}
	
/* Style ordered and unordered lists */
ul, ol {
	margin-top: 0px;
}
ul {
	list-style: none;
}

ul.left {
	margin: 0px 0px 0px 5px;
	padding: 0px 5px 10px 25px;
	float: left;
}

body>ul.leftul, body>div#leftpara, body>ul.rightul, body>div#rightpara, ul.leftul, div#leftpara, ul.rightul, div#rightpara {
	list-style: none;	
}

/* CLASSES to create columns for unordered lists in browsers other than IE. */
body>ul.leftul, body>div#leftpara {
	float: left;
	margin-left: 0px;
	margin-right: 15px;
	padding-bottom: 10px;
}
body>ul.rightul, body>div#rightpara {
	float: left;
	margin-left: 25px;
}

/* CLASSES to create columns for unordered lists in IE. */
ul.leftul, div#leftpara {
	float: left;
	margin-left: 15px;
	margin-right: 15px;
	margin-top: 10px;
	padding-bottom: 10px;
}
ul.rightul, div#rightpara {
	float: left;
	margin-left: 25px;
	margin-top: 10px;
}

/* Class to stop items from floating right or left */
.clear {
	clear: both;
}

/* Class to center text and images */
.center {
	text-align: center;
}

/* Class to underline text */
.underline {
	text-decoration: underline;
}

/* Class to highlight parts of text */
.highlight {
  color:#B5040D;
  }

/* Styles h1, h2, h3, h4, h5 tags */
h1, h2, h3, h4, h5 {
	color: #990000;
	}
h1, h2, h3, h4 {
	text-transform: uppercase;
}
h1 {
	font-size: 22px;
	padding: 0;
	margin: 0px 0px 10px;
	border-bottom: 1px solid #990000;
	font-weight: normal;
	text-align: center;
}
h2 {
	font-size: 18px;
	padding: 0;
	margin: 0px 0px 8px;
}
h3 {
	font-size: 16px;
	padding: 0;
	margin: 0px 0px 6px;
}
h4 {
	font-size: 14px;
	padding: 0;
	margin: 0px 0px 4px;
}
h5 {
	font-size: 12px;
	padding: 0;
	margin: 0px 0px 2px;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Styles the DIV that serves as the container for the layout. Setting the left and right margins to auto will center DIV. */
div#container {
	width: 770px;
	margin: 0px auto;
	background: url(images/content.gif) repeat-y; /* Faux column bg for page */
	
}

/* Creates DIV container for header. */
div#header {
	width: 770px;
	margin: 0px auto;
	}
	
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 200px;
	float: left;
	padding: 0px;
	color: #000;
	background: url(images/sidebar_bg.jpg) no-repeat;
}
div#sidebar a {
	color: #D7161F;
}
div#sidebar address {
	padding: 5px 0px 10px 0px;
}

/* Creates DIV container for main content */ 
div#content {
	width: 570px;
	float: right;
	padding: 0px 0px 10px 0px;
}
div#content p, h1, h2, h3, h4, h5, table {
	margin-left: 15px;
	margin-right: 15px;
}
div#content ol.list, ul.list {
	margin-top: -10px;
	margin-left: 30px;
	margin-right: 15px;
}

/* Creates DIV container for footer content */ 
div#footer {
	font-size: 10px;
	width: 770px;
	margin: 0px auto;
	text-align: center;
	clear: both;
	padding: 0px;
	color: #fff;

	background: url(images/footer.gif) no-repeat; /* Faux column bg for page */
}
div#footer a {
	color: #fff;
	font-weight: bold;
	font-size: 9px;
}

/* Creates DIV container for sub-navigation */
div#subnav {
	font-size: 10px;
	/**/margin-left: 200px;
	text-align: center;
	padding: 10px 0px 15px;
}


div#links {
	font-size: 10px;
	text-align: center;
	padding: 5px 0px;
}
div#links a {
	font-size: 9px;
}
div#links .signin {
	font-size: 10px;
}
div#copyright {
	font-size: 9px;
	text-align: center;
	padding: 5px 0px;
}
div#copyright a {
	font-size: 9px;
}
/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	margin: -2px 0px 0px 0px;
	padding: 0px;
	width: 192px;
	background-color:#30487d;
	border-top:2px solid #fff;
	border-bottom:2px solid #fff;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
	line-height: 16px;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 10px;
	font-weight: bold;
	color: #ffffff;
	text-decoration: none;
	display: block;
	width: 175px;
	padding: 6px 0px 4px 20px;
	text-transform: uppercase;
	background: url(images/link_bg.gif) no-repeat;
}
/* Creates our hover status. */
ul#mainnav li a:hover {
	background: #fff url(images/hover_bg.jpg) no-repeat;
	color: #990000;
	width: 175px;
}
/* Creates our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #fff url(images/current_bg.jpg) no-repeat;
	color: #990000;
	width: 175px;
}

/* Create CLASSES to float images and groups of images in SPAN tags */
img.rt {
	float: right;
	margin: 5px 15px 10px 10px;
}
img.rtborder {
	border: 1px solid #818181;
	float: right;
	margin: 5px 10px 5px 5px;
}
div#maps {
	border: 1px solid #818181;
	float: right;
	margin: 5px 15px 10px 10px;
}
img.lft {
	float: left;
	margin: 5px 10px 10px 15px;
}
img.lftborder {
	border: 1px solid #818181;
	float: left;
	margin: 5px 5px 5px 5px;
}
img.ctr {
	border: 1px solid #818181;
	text-align: center;
	margin: 5px auto;
}

iframe.noscroll {
	margin-top: -50px;
}



/* -------------------- PHOTO GALLERY STUFF ------------------*/
div#panelcontainer {margin-left: 10px;}

div.panel {
	width: 125px;
	height: 150px;
	border: 1px solid #740;
	margin: 0px 2px 10px 5px;
	padding: 0px;
	padding-top: 5px;
	text-align: center;
	vertical-align:middle;
	float: left;
}

	div.panel span {
		text-align: center;
	}
	
	div.panel span a {
		font-size: 9px;
		color: #740000;
	}
	
	div#signin {text-align:center;}
	div#audio {margin-left:10px;padding:5px;}
	
.externaltn {border: 0px; padding-bottom: 7px;}


