/* #############################################################
		allpages.css
   ############################################################# */
/***********************
 GENERAL HELPER STYLES
***********************/
.hidden {
	display: none;
	visibility: hidden;
	width: 0px;
	height: 0px;
}
.footer {
	clear: both;
}

/*********************
 GENERAL STYLES
*********************/

/* PAGE TITLE */
#mainContent .moduleHeader{
	background-position: 0px -8px;
	height: 27px;
	overflow: hidden;
}
#mainContent .moduleFooter{
	background-position: 0px -34px;
	height: 4px;
	overflow: hidden;
}

/* MAIN TEXT AND HEADERS */
#mainContent {
	width: 568px;
}
#mainContent .moduleHeader h2{
	font-size: 1.6em;
}  
#mainContent h1, #mainContent h2, #mainContent h3 {
	font-size: 1.2em;
} 
#mainContent h4, #mainContent h5, #mainContent h6 {
	font-size: 1.2em;
	color: #5d6d28;
} 
#mainContent p{
	margin-top: 8px;
} 


/* MISC TEXT CLASSES */
#mainContent .smallText { font-size: 80%; }
#mainContent .Headline { 
	font-size: 1.4em;
} 
#mainContent .Text {
	font-size: 1.2em;
} 

/* LISTS */
#mainContent ul.inline li {
	display: inline;
}


/*********************
 ARTICLE PAGE
*********************/
.standFirst {
	font-weight: bold;
}
/* RELATED LINKS */
#relatedLinksInsert {
	float: left;
	width: 300px;
	text-align: left;
	margin: 5px 10px 0px 0px;
}
#mainContent #relatedLinksInsert .moduleHeader{
	background-position: 0px -422px;
}
#mainContent #relatedLinksInsert .moduleFooter{
	background-position: 0px -449px;
}
#relatedLinksInsert .moduleHeader h3{
	padding: 2px 0px 0px 10px;
	font-size: 1.6em;
}
#relatedLinksInsert ul{
	padding: 6px 10px;
	list-style: none;
	font-size: 1.2em;
	font-weight: bold;
}

/* ARTICLE IMAGE / CUBE AD STYLES */
#articleAdInsert.alignleft {
	padding: 0px 10px 5px 0px;
}
#articleAdInsert.alignright {
	padding: 0px 0px 5px 10px;
}
#mainContent .imageCaptionContainer {
	float: left;
	margin: 0px 10px 5px 0px;
}
#articleAdInsert.alignright .imageCaptionContainer {
	display: block;
	float: right;
}
.imageCaption {
	font-size: 1.2em;
	padding: 5px 0px 0px 0px;
	color: #5d6d28;
}

/*********************
 FORM STYLES
*********************/
#mainContent select {
	background: #fff !important;
	border: 1px solid #a5b474;
} 
input {
	font-size: 1.1em;
	color: #000;
} 
.textBox {
	background: #fff !important;
	border: 1px solid #a5b474;
} 
button, .button {
	padding: 0px 3px;
	color: #000;
	font-size: 1.1em;
}
textarea {
	background: #fff !important;
	border: 1px solid #a5b474;
}
#mainContent .submitbutton {
	padding: 0px 3px;
	color: #000;
	font-size: 1.1em;
}
#mainContent .warningMessage {
	font-size: 1.4em;
	color: #222f06;
} 

/* VARIOUS SIZED TEXBOXES */
input.short { width: 70px; }
input.medium { width: 150px; }
input.long { width: 300px; }


/************************
 GENERIC TABLES
*************************/
#mainContent table { color: #333; font-size: 1.2em; } /* Just set a default text color and size */

/************************
 FORMATTED TABLES
*************************/
#mainContent table.formattedTable td {
	padding: 5px;
} 
#mainContent table.formattedTable tr.rowOdd {
	background: #eff2e6;
} 
#mainContent table.formattedTable tr.rowEven {
	background: #d2d7c0;
} 
/* You may need to specify a specific link color for each row depending on the background colors */

#mainContent table.fullWidth {
	width: 546px;
} 

/*********************
 MISC BACKGROUND AND SECTIONAL STYLES
	(Styles used for default sectionals and misc colors.)
*********************/
.CellBackground0 {
	background: #eff2e6;
	color: #333;
}
.CellBackground1 {
	background: #d2d7c0;
	color: #333;
} 
#mainContent .CellContent0, #mainContent .CellContent1 {
	padding: 5px;
	} 

/*********************
 CALENDAR STYLES
*********************/
#mainContent .calendarTable td {
	padding: 5px;
}

/*********************
 SEPARATOR STYLES
*********************/
hr {
	height: 1px solid #a5b474;
}
.sectSeparatorH {
	padding: 5px;
}
.sectSeparatorV {
	padding: 5px;
}


/**************************/
/**** EDITS UNECESSARY ****/
/**************************/

/*********************
 FORM LAYOUTS
*********************/
#mainContent fieldset {
	border: none 0px #fff;
}
#mainContent legend { /* Specify a Color */
	font-weight: bold;
}
#mainContent .formRow {
	clear: both;
	margin: 5px 0px;
}
#mainContent label {
	display: block;
	float: left;
	width: 150px;
	text-align: right;
	font-weight: bold;
	margin-top: 2px;
	margin-right: 3px;
}
#mainContent label .labelDetails {
    font-weight: normal;
    font-size: 0.9em;
}
#mainContent .formRowMultiFields {
	margin-left: 153px; /* !! Should be the width of the label !! */
}
#mainContent .formRowMultiFields img { /* Used for Captcha */
	padding: 0px;
}
#mainContent label.spanWidth {
	width: auto;
	display: block;
	text-align: left;
}
#mainContent label.inline {
	float: none;
	display: inline;
	width: auto;
	text-align: auto;
}
#mainContent .formRowSubmit {
	margin-left: 153px; /* Probably the width of the label */
}
#mainContent .EmailForm label {
	width: 80px;
}

/*********************
 ALIGNMENT STYLES
*********************/
.alignLeft, .alignleft { float: left; }
.alignCenter, .aligncenter { text-align: center; }
.alignRight, .alignright { float: right; }
#articleAdInsert.aligncenter #relatedLinksInsert { margin: auto; }
#mainContent img.noFormat { border: none 0px; margin: 0px; }
/* #############################################################
		ccb-content.css
   ############################################################# */
/* All sites must have an inside page with a white content area for CCB content. If your inside content area is already white, this
does not need to be completed. This CSS file will be used to store your styles that are used on the CCB article/sectional page only.
The ID and/or class names should remain the same with the addition of "_ccb" to the end of the ID or class.

IE: contentBackground would be contentBackground_ccb. This will be done so that the devloper will not have to edit or add a bunch
of items, they will simply have to do a find and replace which will save them time.*/

/* CCB Article/Sectional */
/* #############################################################
		framework.css
   ############################################################# */
/* Framework */
* {
	margin: 0px;
	padding: 0px;
}
body {
	text-align: center;
	background: url(/images/body_bg.jpg) top center no-repeat #d3ddb1;
	font-family: arial, helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-align: center;
}
#site {

}
#site fieldset {
	border: 0px solid #000;
}
#framework {
	width: 939px;
	margin: auto;
	text-align: left;
}

/* Ads */
#leaderboard {
	height: 0x;
	margin: auto;
	width: 750px;
	overflow: hidden;
	text-align: left;
	margin-top: 5px;
}
#leaderboard .contentPadding{
	float: right;
	position: absolute;
	/*
	margin-top: 207px;
    margin-left: 14px;
    */
}
#leaderboardLabel {
	float: left;
	width: 20px;
	height: 90px;
	overflow: hidden;
	position: absolute;
	background: url(/images/globalsprite.gif) 0px -217px;
	text-indent: -99999px;
}
#leaderboardAd {
	margin-left: 10px;
}

#skyscraper {
	width: 170px;
	margin-bottom: 5px;
}
#contentBackground  #skyscraper .containerPadding {
	padding: 0px;
}
#skyscraperLabel {
	float: left;
	width: 20px;
	height: 90px;
	overflow: hidden;
	position: absolute;
	background: url(/images/globalsprite.gif) 0px -217px;
	text-indent: -99999px;
}
#skyscraperAd {
	width: 160px;
	float: right;
}

/* Header */
#frameworkTop {
	height: 197px;
	background: url(/images/header-footer.gif) no-repeat;
}
#header {
	float: left;
	width: 680px;
	height: 158px;
}
#header h1{
	width: 680px;
	height: 158px;
}
#header h1 a{
	display: block;
	width: 680px;
	height: 158px;
	text-indent: -99999px;
	text-decoration: none;
}

/* Content */
#contentBackground {
	border-left: 1px solid #a5b474;
	border-right: 1px solid #a5b474;
	background: #fff;
	text-align: left;
	background: url(/images/site_back1.gif) top center repeat-y;
}
#contentColumns {
	margin: 0px 5px;
	width: 927px;
	background: url(/images/site_back2.gif) top center repeat-x;
}
#contentColumns A {} /* All Content Links */
#contentEnclose {
	width: 750px;
	float: left;
}
#contentMiddle {
	width: 578px;
	float: right;
	background: url(/images/middle-bg.gif) repeat-x top left #d2d7c0;
}
#contentMiddle .contentAreaPadding {
	padding: 10px 5px 0px 5px;
}
#contentLeft {
	width: 167px;
	float: left;
}
#contentLeft .contentAreaPadding {
	padding: 10px 1px 0px 7px;
}
#contentRight {
	width: 177px;
	float: right;
}
#contentRight .contentAreaPadding {
	padding: 10px 7px 0px 0px;
}

/* END FireFox Adjustments to Fix IE Box Model Bug */

#contentBottom {
	clear: both;
}
.storySeparator {}

/* Quadrants */
#quadrantA {
	float: left;
	width: 375px;
}
#quadrantB {
	float: right;
	width: 182px;
}
#quadrantTopFooter {
	clear: both;
}
#quadrantBottom {
	display: none;
}
#quadrantBottomFooter {
	clear: both;
}

/* Footer */
#footer {
	clear: both;
	height: 120px;
	background: url(/images/header-footer.gif) 0px -208px no-repeat;
	text-align: right;
}
#footer .contentAreaPadding{
	padding: 27px 185px 0px 0px;
}
#footerTop {
	display: none;
}
#footerBottom {
	clear: both;
}
#siteIndex {
	margin-bottom: 5px;
}
#siteIndex fieldset {
	border: 0px solid #000;
}
#siteIndex legend {
	display: none;
}
#siteIndex select {
	color: #002887;
	font-weight: bold;
	font-size: 1.1em;
}
#copyright {
	font-size: 1.1em;
	text-transform: uppercase;
	color: #5d6d28;
}
#copyright A {
	color: #5d6d28;
	font-weight: bold;
	text-decoration: none;
}
#copyright A:Hover{
	color: #3e4b13;
}
#copyright .privacyPolicy {}

/* #############################################################
		modules.css
   ############################################################# */
/* All Possible Module Classes */
fieldset{
	border: none;
}
#date{
	float: left;
}
#contentBackground .moduleHeader, #contentBackground .moduleFooter {
	background-image: url(/images/globalsprite.gif);
	background-repeat: no-repeat;
	overflow: hidden;
	clear: both;
}
#contentBackground .containerPadding{
	padding: 6px 10px;
}
#contentBackground .moduleFooter {
	height: 4px;
}
.moduleHeader h2, .moduleHeader h3, .moduleHeader h4{
	font-size: 1.6em;
	font-weight: bold;
	color: #5d6d28;
	padding: 0px 0px 0px 10px;
}
#date .moduleHeader, #date .moduleFooter, #search .moduleHeader, #search .moduleFooter, #emailToFriend .moduleHeader, #emailToFriend .moduleFooter{
	display: none;
}
#contentBackground .moduleContentContainer {
	background: #fff;
	border-left: 1px solid #a5b474;
	border-right: 1px solid #a5b474;
}
h1, h2, h3, h4, h5, h6, #pollQuestion {
	color: #002887;
	font-size: 1.2em;
	font-weight: bold;
} 
#contentBackground .module a {
	text-decoration: none;
} 
#contentBackground .module a:Hover {
	text-decoration: underline;
} 
#contentBackground .module p{
	font-size: 1.2em;
} 
#contentBackground .module p a{
	text-decoration: underline;
} 
#contentBackground .module p a:Hover {
	text-decoration: none;
} 
#contentBackground #contentBackground p {
	margin-bottom: 10px;
}
a {
	color: #002887;
}
a:Hover {
	color: #002887;
}
.textInput {
	background: #fff !important;
	border: 1px solid #a5b474;
	color: #000;
	font-size: 1.1em;
} 
.button {
	color: #000;
	font-size: 1.1em;
}

/* Date */
#date{
	float: left;
	text-align: right;
	width: 171px;
	height: 39px;
}
#date .containerPadding{
	padding: 8px 0px 0px 0px;
}
#date h4{
	display: none;
}
#date p{
	font-size: 1.2em;
	color: #fff;
	font-weight: bold;
}
/* Search */
#search{
	float: left;
	width: 583px;
	height: 39px;
}
#search .containerPadding{
	padding: 9px 0px 0px 270px;
}
#search legend, #searchForLabel, #searchTypeLabel, #searchType, #searchTopSearches {
	display: none;
}
#search .formRow{
	float: left;
}
#search .textInput{
	height: 19px;
	width: 140px;
	padding-left: 5px;
}
#search .submitRow{
	float: left;
	margin-left: 3px;
}
#search .button{
	padding: 0px 2px;
}

/* Email a Friend*/
#emailToFriend {
	float: left;
	height: 39px;
}
#emailToFriend .containerPadding{
	padding: 7px 0px 0px 50px;
}
#emailToFriend .storyLink a{
	font-size: 1.2em;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}
#emailToFriend .storyLink a:Hover{
	color: #5d6d28;
}

/* Club */
#club {
	text-align: left;
	font-size: 1.1em;
	float: left;
	width: 255px;
}
#club li{
	list-style: none;
}
#club .moduleContainer {
	padding: 12px 0px 0px 12px;
}
#club .moduleContainer .moduleHeader h3{
	padding: 0px;
}
#club .containerPadding {
	padding: 12px 0px 0px 0px;
}
#club .osaText, #club legend, #emailPassword, #nonMember{
	display: none;
}
#saveLoginRow, #loginEmailRow, #loginPasswordRow{
	float: left;
	margin-bottom: 8px;
}
#loginEmailRow, #loginPasswordRow{
	width: 110px;
	margin-right: 3px;
}
#loginLinks{
	clear: both;
	margin-top: 4px;
}
#club a{
	font-weight: bold;
	float: left;
	margin-right: 8px;
}
#club .textInput{
	height: 19px;
	width: 105px;
}
#club .button{
	padding: 0px 2px;
}

/*Marquee*/
#marquee{
	margin-bottom: 4px;
}
#marquee .moduleHeader, #marquee .moduleFooter{
	display: none;
}
#marquee .containerPadding{
	height: 14px;
	overflow: hidden;
	padding: 0px;
}
#marquee .moduleContentContainer {
	border-left: none;
	border-right: none;
	background: none;
	padding-bottom: 5px;
	border-bottom:  1px solid #a5b474;
}
#marquee p{
	font-size: 1.2em;
	font-weight: normal;
	color: #5d6d28;
}
#contentBackground  #marquee p a{
	font-weight: bold;
	color: #5d6d28;
	text-decoration: none;
}
#contentBackground  #marquee p a:Hover{
	color: #3e4b13;
}

/* Feature */
#feature .moduleHeader{
	background-position: 0px -47px;
	height: 27px;
	overflow: hidden;
}
#feature .moduleFooter{
	background-position: 0px -72px;
	clear: both;
}
#feature h3{
	margin-bottom: 8px;
}
#feature .storyImage{
	float: left;
	margin: 0px 10px 0px 0px;
}
#feature .storyImage IMG{
	border: 2px solid #dadecb; 
}
#feature .storySeparator{
	display: none;
}

/* On Air */
#onAir .moduleContentContainer{
	height: 197px;
}
#onAir .containerPadding{
	padding: 6px 8px;
}
#onAir .moduleHeader{
	background-position: 0px -85px;
	height: 27px;
	overflow: hidden;
}
#onAir .moduleFooter{
	background-position: 0px -110px;
	clear: both;
}
#onAir .hostText{
	position: absolute;
	margin-left: 60px;
	width: 108px;
	height: 40px;	
}
#hostPhoto {
	position: absolute;
}
#hostPhoto img{
	border: 1px solid #d2d7c0;
	width: 50px;
}
#nextHost {
	position: absolute;
	margin-left: 60px;
	margin-top: 40px;
	width: 106px;
	height: 40px;
}
#nowPlaying {
	position: absolute;
	margin-left: 60px;
	margin-top: 77px;
	width: 106px;
	height: 40px;
}
#listenLive {
	position: absolute;
	margin-left: 0px;
	margin-top: 130px;
	width: 106px;
	height: 40px;
}
#listenLive a {
	background: url(/images/globalsprite.gif) 0px -160px; ;
	display: block;
	text-indent: -99999px;
	width: 165px;
	height: 57px;
	text-decoration: none;
}
#listenLive a:Hover {
	background: url(/images/globalsprite.gif) -165px -160px; ;
	display: block;
	text-indent: -99999px;
	width: 165px;
	height: 57px;
	text-decoration: none;
}
#nextHost h5, #nowPlaying h5{
	text-transform: uppercase;
	font-weight: normal;
	color: #333;
}
#nowPlaying p{
	font-weight: bold;
	color: #002887;
}
#contentBackground #nextHost .hostName a{
	font-weight: bold;
	text-decoration: none;
}
#contentBackground #nextHost .hostName a:Hover{
	text-decoration: underline;
}

/*Sponsor*/
#sponsor{
	margin: 5px -10px;
}
#sponsor .moduleContentContainer{
	background: none;
	border: none;
}
#sponsor .containerPadding{
	padding: 0px;
	background: url(/images/globalsprite.gif) 518px -330px no-repeat #eff2e6 ;
}
#sponsor .moduleHeader{
	display: none;
}
#sponsor img{
	margin: 5px 0px 5px 40px;
}
/* Headline */
#headline .moduleHeader{
	background-position: 0px -8px;
	height: 27px;
	overflow: hidden;
}
#headline .moduleFooter{
	background-position: 0px -34px;
	height: 4px;
	overflow: hidden;
}
#headline h4{
	margin-bottom: 8px;
}
#headline .story{
	position: relative;
}
#headline .storyImage{
	float: left;
	margin: 0px 10px 0px 0px;
}
#headline .storyImage IMG{
	border: 2px solid #dadecb;
}
#headline .storySeparator{
	clear: both;
	height: 1px;
	background: #5d6d28;
	margin: 7px 0px;
}
#headline .separatorLast{
	background: none;
	margin: 0px;
}
#headline .storySeparator hr{
	display: none;
}

/*Left Column News*/
#leftNews{
	margin-top: 10px;
}
#leftNews .moduleContentContainer{
	background: none;
	border: none;
}
#leftNews .containerPadding{
	padding: 0px;
}
#leftNews .moduleHeader, #leftNews .moduleFooter{
	display: none;
}
#leftNews .storyImage{
	margin-bottom: 5px;
}
#leftNews .storyImage{
	font-size: 10px;
}
/*Right Column News*/
#rightNews{
	clear: both;
}
#rightNews .moduleContentContainer{
	background: none;
	border: none;
}
#rightNews .moduleHeader, #rightNews .moduleFooter{
	display: none;
}
#rightNews .storySeparator{
	height: 10px;
}
#rightNews .storySeparator hr{
	display: none;
}
#rightNews .storyImage{
	margin-bottom: 5px;
}
#rightNews .storyImage{
	font-size: 10px;
}

/* Poll */
#poll .moduleHeader{
	background-position: 0px -122px;
	height: 27px;
	overflow: hidden;
}
#poll .moduleFooter{
	background-position: 0px -148px;
}
#pollQuestion{
	margin-bottom: 5px;
}
#formRowSubmit{
	margin-top: 5px;
}
#formRowSubmit .button{
	padding: 2px 8px;
}
#poll .formRow{
	margin-bottom: 2px;
}
#poll label{
	font-size: 1.1em;
	font-weight: bold;
}
#poll .sponsor, #pollDescription{
	margin-bottom: 5px;
}
#poll .sponsorLabel{
	background: url(/images/globalsprite.gif) no-repeat -165px -333px;
	text-indent: -99999px;
	display: block;
	width: 81px;
	height: 12px;
}
#poll .sponsorAd{
	display: block;
}
#poll legend{
	display: none;
}
#poll dt, #poll dd{
	font-size: 1.2em;
}
#poll dd{
	font-weight: bold;
	margin-bottom: 5px;
}

/* Tile Ads */
#tileAds{

}
#tileAds .moduleHeader{
	display: none;
}
#tileAds .moduleFooter{
	clear: both;
	background: none;
}
#tileAds .moduleContentContainer{
	border: none;
	background: none;
	clear: both;
}
#tileAds .containerPadding{
	padding: 10px 0px 6px 15px;
}
#tileAds .moduleContentContainer p{
	float: left;
	margin-right: 5px;
}
/* #############################################################
		nav.css
   ############################################################# */
/* NAV MODULE SETTINGS */
#navigation{
	margin-bottom: 5px;
	font-size: 1.4em;
}
#navigation .moduleFooter {
	clear: both;
	height: 4px;
	background-position: 0px -156px;
}
#navigation .moduleHeader {
	height:4px;
	background-position: 0px -152px;
}
#navigation .moduleContentContainer {
	border: none;
	background: none;
}
#navigation h3  {
	display:none;
}

/* MAIN NAVIGATION MENU BOX */
#navigation .containerPadding {
	background: #5d6d28;
	font-family: Arial, Helvetica, sans-serif;
	border:0px solid yellow;
	padding: 2px;
}
#navigation ul {
	list-style: none;
	border: none;
}

/* MAIN NAV ITEMS */
#navigation li {
	text-align: left;
	border-bottom: 3px solid #5d6d28;
	padding: 3px 5px 3px 8px;
	background-color: #222f06;
	font-weight: bold;
}
#navigation li.last {
	border-bottom: none;
}

#navigation li a, #navigation li .navNoLink {
	display: block;
	padding: 0px;
	color: #fff;
	text-decoration: none;
	width: 100%;
}

html>body #navigation li a {
	width: auto;
}

#contentBackground #navigation li a:hover {
	color: #ffe600;
	text-decoration: none;
}

/*
SUB NAV LIST 
	Set the width, background, and/or border
*/
#navigation li ul {
	width: 157px;
	margin-left: 120px;
	border: none;
	margin-top: -19px;
	display: block;
	position: absolute;
	left: -9999px;
	height: auto;
}

/* SUB-NAV ITEM */
#navigation li ul li {
	border: none;
	margin-bottom: 3px;
	background-color: #141c03;
}


/* YOU SHOULD NOT HAVE TO EDIT ANY OF THE STYLES BELOW */

#navigation li:hover ul ul, #navigation li:hover ul ul ul, #navigation li.sfhover ul ul, #navigation li.sfhover ul ul ul {
	left: -9999px;
	z-index: 501;
}

#navigation li:hover ul, #navigation li li:hover ul, #navigation li li li:hover ul, #navigation li.sfhover ul, #navigation li li.sfhover ul, #navigation li li li.sfhover ul {
	left: auto;
	z-index: 501;
}

/* Support for the "iehover-fix.js" */
ul.navItems iframe {
	position: absolute;
	left: -0.25em;
	top: -0.25em;
	z-index: -1;
	filter: progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0);
}


* html ul.navItems li { z-index: 501; }

/* this is for IE 5.0
	select.hide { visibility: hidden; }

/* End Support for the "iehover-fix.js" */

/* #############################################################
		sectional.css
   ############################################################# */
/* ALL SECTIONAL TEMPLATES */
#mainContent .sectional .storySeparator{
	clear: both;
	border-top: 1px solid  #a5b474;
	margin: 10px 0px 5px 0px;
	position: relative;
}
#mainContent .sectional .storySeparator hr{
	display: none;
}
.sectional .story {
	clear: both;
	position: relative;
}
.sectional p.storyImage {
	display: block;
	float: left;
	margin: 3px 3px 0px 0px;
	padding: 0px;
}
.sectional p.storyImage img {
	margin: 0px;
	padding: 0px;
}
.sectional .storyLink {
	display: none;
	visibility: hidden;
	font-size: 1px;
	color: #fff;
	text-indent: -9999px;
}
.sectional .storySeparator {
	clear: both;
}

/* The Last Story Separator */
.sectional .separatorLast {
	visibility: hidden;
}

/************************/
/* SECTIONAL TEMPLATE 2 */
/************************/

/* Top Story */
.secTemplate2 .entry1 .storySeparator hr {
	display: none;
}
.secTemplate2 .contentSeparator hr {
	visibility: hidden;
}


/************************/
/* SECTIONAL TEMPLATE 3 */
/************************/

/* Container for the Top 3 Entries */
.secTemplate3 .secTop {

}

/* Container for First Half of the bottom Entries */
.secTemplate3 .secBottomFirstHalf {
	display: block;
	width: 265px;
	float: left;
}

/* Separator Between Bottom Halves */
.secTemplate3 .contentSeparator {
	display: block;
	width: 15px;
	float: left;
}

/* Container for Second Half of the bottom Entries */
.secTemplate3 .secBottomSecondHalf {
	display: block;
	width: 265px;
	float: left;
}
/* #############################################################
		CustomPages.css
   ############################################################# */
/***********************
 Photo Wall Styles
***********************/
#photoWallPage .searchPhotoWallForm { clear: both; display: block; margin: 10px 0px; }
#photoWallThumbs { margin: 15px 0px 0px 0px; }
#photoWallThumbs ul { list-style: none; }
#photoWallThumbs li { display: block; float: left; width: 142px; text-align: center; }
#photoWallThumbs li.newRow { clear: both; display: block; }
#photoWallThumbs li .photo-thumb { margin: 10px; }

#photoWallPhotoPage { text-align: center; }
#photoWallPhotoPage .page-menu { width: 260px; text-align: center; margin: auto; padding: 5px 0px;}
#photoWallPhotoPage .page-menu a { text-decoration: none;}
#photoWallPhotoPage .page-menu a:hover {text-decoration: underline;}
#photoWallPhotoPage .photoContainer { margin: 10px 0px; }
#photoWallPhotoPage img { margin: 0px; }
#photoWallPhotoPage .photoCaption { width: 300px; margin: 4px auto;  }

/***********************
 Goout Bar Styles
***********************/
.top-goout {float: left; width: 800px; padding: 0px 0px 0px 0px; margin-left: 50px;}
.top-col-left {width: 200px; float: left; padding: 7px 0px 0px 0px; margin-left: 50px; text-size: 8px;}
.top-col-left a {text-size: 8px; }
.top-col-left a:hover {text-decoration: none;}
.top-col-mid {width: 200px; float: left;  padding: 2px 0px 0px 0px; text-size: 8px;}    
.top-col-mid #siteIndex {width: 100px; margin: 5px 0px 0px 50px;}
.top-col-right {width: 200px; float: right;  padding: 3px 0px 0px 0px; margin-left: 25px; text-size: 8px;}    
.top-col-right a {text-size: 8px;}
.top-col-right a:hover {text-decoration: none;}

/***********************
 Keword Search Results Styles
***********************/
.kewordSearch {width: 100%; text-align:left; padding: 5px 5 5px 5;}
.key-col-top {}
.key-col-top a {}
.key-col-left {width: 40%; float: left; padding: 5px; margin: 0px; }
.key-col-left a {}
.key-col-mid {width: 10%; float: left; padding: 5px 0 5px 0;}    
.key-col-right {width: 40%; float: left; padding: 5px; margin: 0px;}
.key-col-right a {}

/***********************
 Concert Calendar Styles
***********************/
.ccVenue {width: 100%; text-align:left; padding: 5px 5 5px 5;}            
.ccV-col-top {}
.ccV-col-top a {}
.ccV-col-left {width: 30 %; float: left; padding: 5px; margin: 0px; }
.ccV-col-left a {}
.ccV-col-mid {width: 40%; float: left; padding: 5px 0 5px 0;}    
.ccV-col-right {width: 20%; float: right; padding: 5px; margin: 0px;}    
.ccV-col-right a {}
.ccArtist {width: 100%; text-align:left; padding: 5px 5 5px 5;}            
.cc-col-top {}
.ccA-col-top a {}
.ccA-col-left {float: left; padding: 5px; margin: 0px; }
.ccA-col-left a {}
.ccA-col-right {float: right; padding: 5px; margin: 0px;}    
.ccA-col-right a {}

/***********************
 Staff Styles
***********************/
.staff {text-align:left; padding: 5px 5 5px 5;}
.staff-col-top {}
.staff-col-top a {}
.staff-col-left {float: left; padding: 5px; margin: 0px; }
.staff-col-left a {}
.staff-col-mid {float: left; padding: 5px 0 5px 0;}    
.staff-col-right {float: left; padding: 5px; margin: 0px;}    
.staff-col-right a {}

/***********************
 Calendar Styles
***********************/

#AddNewEventForm fieldset {
	display: block;
	clear: both;
	margin-bottom: 20px;
}

/**************************
 Community Calendar Styles
**************************/

.calendarTable {
	width: 100%;
	text-align: center;
}

/**************************
 Weather Styles
**************************/

#extendedForecast .CellBackground0
/* Controls color of temperature bar. Use to customize appearance. */
{
	vertical-align: bottom;
}
#extendedForecast .negativeTemperature
/* Background color of Negative Temperature Bars. Only change Background-Color. Do not change anything else */
{
    BACKGROUND-COLOR: #0FF;
    vertical-align: bottom;
}
#extendedForecast
/* Controls appearance of entire Extended Forecast. Only change Color, Background-Color. Do not change any other settings. */
{
    MARGIN: auto;
    TEXT-ALIGN: center;
}
#extendedForecast .smallText
/* Controls appearance of Sky Conditions, High & Low Temps For Days. Do not add margin or padding. */
{
    FONT-WEIGHT: bold;
    FONT-SIZE: 10px;
    LINE-HEIGHT: 12px;
    vertical-align: top;
}
#weatherForecast .weatherDayTop
/* Controls appearance of individual days. Do not add margin or padding. */
{
   width: 90px;	
   MARGIN: auto;
   vertical-align: top;
}
#weatherForecast .weatherDayBottom
/* Controls appearance of individual days. Do not add margin or padding. */
{
   vertical-align: bottom;
}
#weatherForecast .weatherTemperatures .weatherTempBars
{
    PADDING: 0px;
    MARGIN: auto;
    BACKGROUND-COLOR: transparent;
}
/*
*********************************************************
*** START DO NOT MAKE ANY CHANGES TO ANY STYLES BELOW ***
*********************************************************
*/
#weatherForecast
{
    TEXT-ALIGN: center;
    MARGIN: auto;
}
#weatherDetails
{
	width: 568px;
    CLEAR: both;
    TEXT-ALIGN: center
}
#weatherRegionLinks
{
    MARGIN-TOP: 10px
}
#weatherRegionLinks LI
{
    DISPLAY: inline;
    FLOAT: left;
    MARGIN-BOTTOM: 10px;
    MARGIN-LEFT: 5px;
    WIDTH: 150px
}
#currentObservation
{
    MARGIN: auto;
    WIDTH: 480px
}
#currentObservation .smallText
{
    FONT-SIZE: 10px;
    LINE-HEIGHT: 12px;
    vertical-align: top;
}
#currentObservation H3
{
    MARGIN-BOTTOM: 5px
}
#currentObservation .footer
{
    DISPLAY: none
}
#weatherForecast .weatherTemperatures
{
    TEXT-ALIGN: center;
    margin: auto;
    VERTICAL-ALIGN: bottom;
}
#weatherForecast .weatherTemperatures .weatherTempBars .weatherTemperatures
{
    BORDER: medium none;
    PADDING: 0px;
    MARGIN: 0px;
    BACKGROUND-COLOR: transparent
}
#weatherForecast .weatherTemperatures .weatherTempBars .weatherTemperatures .dayCondition
{
    DISPLAY: none;
    PADDING: 0px;
    MARGIN: 0px;
}
/*
*******************************************************
*** END DO NOT MAKE ANY CHANGES TO ANY STYLES BELOW ***
*******************************************************
*/

