body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%; /*About 12pt*/
	background-color:#000;
}

a {}

/*------BASIC CLASSES------*/

.fLeft {float:left;}

.fRight {float: right;}

.clear {clear:both;}

/*----------------*/
/*------CORE------*/
/*----------------*/

/*---MAIN CONTAINER AND LAYOUT---*/

.containerWrap {}
	
.container {
	padding: 0px 10px;
}

#header, #main, #footer {
	/*use this if you need to give float and width to each section, 
	containerWrap, footerWrap, and mainWrap may also be included */
}

/*---HEADER---*/

/*--skip links hidden by setting link color the same as background color. some screenreaders don't recognize display:none; */
.skipLinks {
	width: 100%;
	text-align:right;
}

	.skipLinks a {
		padding: 0px 5px;
	}

#header {
}	

#logo {
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 200;
	margin-bottom: -45px;
}
	
#logoImg {}

/*----nav----*/

#nav {
	float: left;
	width: 100%;
}
	
	#nav ul {
		float: left;
		padding-left: 0px;
		margin-left: -10px;
		margin: 0px 10px 0px -10px;
	}
		
	#nav li {
		float: left;
		padding: 6px 10px;
	}
	
	#nav li a {
		padding: 6px 15px 6px 7px;
	}
	
	#nav li a:hover {}
	
	#nav li.current {
		
	}
	
	#nav li.current a {
		background: #1c1c1c url(../images/nav_corner.gif) right top no-repeat scroll;
	
	}
	
	#nav li.current a:hover {}
	
	/*for rare cases when the client wants sub-items on the top nav such as dropdown menus.*/
	
	/*NOTE: IE6 doesn't support the :hover on anything but the <a> element so we need to use 
	javascript to add a special hover class onmouseover and onmouseout*/
		
		#nav ul li ul {
		}
		
		#nav li ul li {
		}
		
		#nav li ul li a {
		}
		
		#nav ul li:hover ul {}
		
		#nav ul li:hover li a {}
		
		#nav ul li:hover ul li:hover {}
		
		#nav ul li:hover ul li:hover a {}
	
#locationBar {

}

#search {}

	#search label {}
	
	#search input#searchBox {
		padding: 0px;
	}
	
	#search input#searchBtn {
		vertical-align: middle;
		padding-left: 15px;
	}

#login {}

#account {}

/*---BANNERS---*/

#homeBanner {}

	#homeBannerText {}

	#homeBannerImg {}

#banner {
	position: relative;
	z-index: 2;
}

	#bannerText {}
	
	#bannerImg {}
	
/*---MAIN CONTENT---*/
	
#mainWrap {}

#main {
	/*width: 100%;*/

}

#content {
	/* ORIG - margin: 65px 233px 0px 233px; */
	margin: 65px 233px 0px 233px;
	padding: 0px 25px;
	
	
}

	#content div {
		-moz-border-radius: .3em;
		-webkit-border-radius: .5em;
		
		background-color: #171717;
		padding: 10px;
	}
	
	#content hr {
		background-color: #505050;
		color: #505050;
		height: 1px;
		border: none;
		clear: both;
		float: left;
		width: 100%;
		margin: 15px 0px 5px 0px;
	}
	
	#content div.news, #content div.events {
		background-color: transparent;
		-moz-border-radius: 0em;
		-webkit-border-radius: 0em;
		float: left;
		width: 95%;
		padding: 0px 0px 20px 20px;
	}
	
	#content div.news h1, #content div.events h1 {
		float: left;
		width: 85%;
		
		margin: 0px 0px 10px 0px;
	}
	
	#content div.news span.feed, #content div.events span.feed {
		float: right;
	}
	
	#content div.news p.viewMore, #content div.events p.viewMore {
		float: left;
		clear: left;
	}
	
	
	#content ul {clear: both;float: left; padding-left: 0px; margin-top: 0px; margin-left: 10px; width: 95%}

	#content div.news li, #content div.events li {
		padding: 5px 0px;
	}
	
	#content div.headlines {
		background-color: #000;
		border-top: 1px solid #58595B;
		border-left: 1px solid #58595B;
		border-right: 1px solid #58595B;
		border-bottom: 1px solid #58595B;
		-moz-border-radius-topleft: .6em;
		-moz-border-radius-topright: .6em;
		-moz-border-radius-bottomleft: .6em;
		-moz-border-radius-bottomright: .6em;
		-webkit-border-radius: .5em;
		padding: 0px;
		width: 100%;
		margin-bottom: 30px;
		float: left;
	}
	
	#content div.headlines #nextUp {
		float: left;
		clear: both;
		padding: 0px 15px;
		width: 63%;
	}
	
	
	#content div.headlines .slide {
		
		float: left;
		padding: 5px 0px;
		width: 100%;
	}
	
	#content div.headlines .slide img {
		float: left; 
		margin-right:15px;
		padding: 10px 0px 10px 10px;
	}
	
	#content div.headlines .slide .slideInner {
		padding: 0px;
		/*float: left;*/
		/*width: 31em; */
		min-width: 200px;
		padding: 10px 10px 10px 10px;	
	}
	
	#content div.headlines .slide .slideInner h1 {margin-top: 0px;}
	
	#content div.headlines #headlineContent {
		height: 393px;
		float: left;
		padding: 0px;
		/*position: relative;*/
		width: 100%;
	}
	
	#content div.headlines .slideControls {
		padding: 0px;
		border-top: 1px solid #58595B;
	}
	#content div.headlines #pager {float: right;}
	
	#content div.headlines #pager p {margin: 0px;}
	
	#content div.headlines #pager #currentSlide {
		padding-right: 5px;
	}
	
	#content div.headlines #pauseBtn {
		cursor: pointer;
	}
	
	#content div div {
		background-color: transparent;
	}

.row {}

/*--set up basic columns common in grid type layouts---*/

.col10, .col16, .col23, .col25, .col30, .col33, .col40, .col48, .col50, .col60, .col65, .col66, .col70, .col73, .col75, .col83 {float: left;}

.col10 {width: 10%;}
.col16 {width: 16%;}
.col23 {width: 23%;}
.col25 {width: 25%;}
.col30 {width: 30%;}
.col33 {width: 33%;}
.col40 {width: 40%;}
.col45 {width: 45%;}
.col48 {width: 48%;}
.col50 {width: 50%;}
.col60 {width: 60%;}
.col65 {width: 65%;}
.col66 {width: 66%;}
.col70 {width: 70%;}
.col73 {width: 73%;}
.col75 {width: 75%;}
.col83 {width: 83%;}

.mr0 {margin-right: 0px;}
.mr5 {margin-right: 5px;}
.mr10 {margin-right: 10px;}
.mr15 {margin-right: 15px;}
.mr20 {margin-right: 20px;}
.mr25 {margin-right: 25px;}
.mr30 {margin-right: 30px;}
.mr40 {margin-right: 40px;}
.mr50 {margin-right: 50px;}
.mr60 {margin-right: 60px;}
.mr70 {margin-right: 70px;}
.mr80 {margin-right: 80px;}



	
.bottomCallouts {}

	.bottomCallouts .col1 {}
	
	.bottomCallouts .col2 {}
	
	.bottomCallouts .col3 {}
	
#noColumn {}

#sidebar {}

#sidebarA {
	width: 234px;
	float: left;
	
}

	#sidebarA .orangeTop {
		background: transparent url(../images/subnav_header.gif) left top no-repeat scroll;
		float: left;
		width: 100%;
		height: 1.7em;
		padding-left: 15px;
	}
	
	#sidebarA .greenTop {
		background: transparent url(../images/green_top.gif) left top no-repeat scroll;
		float: left;
		width: 100%;
		height: 1.7em;
		padding-left: 15px;
		margin-top:30px;
	}
	
	#spotlight {
		float: left;
		width: 100%;
		background-color: #2b2b2b;
	}
	
		#spotlight #spotlightWrap {
			height: 21em;
		}
	
		#spotlight .spotlightArea {
			float: left;
			height: auto;
			padding: 13px 9px 0px 17px;
			width: 208px;
			height: 21em;
		}
		
		#spotlight .spotlightArea h2 {
			margin: 0px 0px 10px 0px;
		}
		
		#spotlight .spotlightArea p {
			padding: 0px;
			margin: 0px;
		}
		
		#spotlight .spotlightArea p.spotPic {
			text-align: center;
			margin-bottom: 10px;
		}
		
		
		#spotlight .nextItem {
			float: left;
			padding:0px 9px 9px 17px;
			width: 208px;
			text-align: right;
		}
		
		#spotlight #spotNext, #spotlight #spotPrev {
			cursor: pointer;
		}
	

#sidebarB {
	width: 234px;

	float: right;
	/*margin-right: -100%;*/
}
	#sidebarB .orangeTop {
		background: transparent url(../images/subnav_header.gif) left top no-repeat scroll;
		float: left;
		width: 100%;
		height: 1.7em;
		padding-left: 15px;
	}
	
	#sidebarB .greenTop {
		background: transparent url(../images/green_top.gif) left top no-repeat scroll;
		float: left;
		width: 100%;
		height: 1.7em;
		padding-left: 15px;
	}

	#mayor {
		float: left;
	}
	
	#mayor p {
		float: right; 
		width: 11em;
	}
	
	#mayor p.byLine {
		width: 100%;
	}
	.sideLink{
		text-align:center;
	}
	.sideLink img{
		border:none;
		padding-top:2em;
	}
/*----subnav----*/
#subNav {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	float: left;
}


	#subNav li {
		padding: 0px 0px 0px 0px;		
	}
	
	#subNav li a {
		width: 216px;
		padding-left: 20px;
		display: block;
		background: transparent url(../images/subnav_bg.gif) left top no-repeat;
		height: 2.3em;
	}
	
	#subNav li.last a {
		background: transparent url(../images/subnav_last_bg.gif) left top no-repeat;
		padding-bottom: 6px;
	}
	
	#subNav li.last ul li a {background: none;}	
	
	#subNav li.current {}
	
	#subNav li.current a {}
	
	#subNav li.current a:hover {}
	
	/*--if clicking on a subnav list item makes sub-items appear--*/
	
	#subNav li ul {
		position: absolute;
		width:auto; 
		left: -9999em;
		margin-left: 235px;
		margin-top: -32px;
		z-index: 4000;
	}
	
	#subNav li:hover ul {
		left: auto;
		background-color: #2B2B2B;
		padding: 0px;
		border-top: 1px solid #646566;
		border-right: 1px solid #646566;
		border-left: 1px solid #646566;
	}
	
	#subNav li ul li a {
		background: none;
		border-bottom: 1px solid #646566;
		height: auto;
		padding:7px;
	}
	#subNav li ul li a:hover {
		background-color: #646566
	}
		
		
#quickLinks {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	float: left;
}


	#quickLinks li {
		padding: 0px 0px 0px 0px;
	}
	
	#quickLinks li a {
		width: 213px;
		padding-left: 20px;
		display: block;
		background: transparent url(../images/subnav_bg.gif) left top no-repeat;
		height: 2.3em;
	}
	
	#quickLinks li a.selected {
		background: transparent url(../images/quicklinks_open.gif) left top no-repeat;
	}
	
	#quickLinks li ul {
		background: #4e5051 url(../images/quicklinks_bg.gif) left top no-repeat scroll;
		padding: 0px 0px 0px 0px;
		margin: 0px 0px 0px 0px;
	}
	
	#quickLinks li ul li a {
		background: none;
		height: auto;
		padding: 10px 0px 10px 20px;
	}
	
	#quickLinks li ul li a:hover {
		background-color: #646566;
	}
/*-------------*/

.testimonial {}

	.testimonial cite {}
	
.callout {}
.hide_label{
	display: none;
}

/*---FOOTER---*/
#footerWrap {}

#footer {
	clear: both;
	width: 100%;
}

	.footerNav {
		padding-left: 0px;
	}
	
	.footerNav li {
		display: inline;
		
	}
	
	.footerNav li a {
		border-right: 1px solid #BCBEC0;
		padding: 0px 8px;
	}
	
	.footerNav li.legal a {
		border-right: none;
	}
	
	.footerContact {}
	
	.legal {}
	
	
/*--------------------*/
/*--------FORMS--------/
/*--------------------*/


/*--------------------*/
/*-------TABLES--------/
/*--------------------*/
 tr.alt td {}
