

























/* CSS Document */

/* Add the grid */

/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, 
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, 
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, 
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, 
div.span-21, div.span-22, div.span-23, div.span-24 {
  float: left;
  margin-right: 15px; 
}

/* The last column in a row needs this class. */
.last, div.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 30px; }
.span-2  { width: 70px; }
.span-3  { width: 110px; }
.span-4  { width: 150px; }
.span-5  { width: 210px; }
.span-6  { width: 230px; }
.span-7  { width: 270px; }
.span-8  { width: 310px; }
.span-9  { width: 350px; }
.span-10 { width: 390px; }
.span-11 { width: 430px; }
.span-12 { width: 470px; }
.span-13 { width: 510px; }
.span-14 { width: 550px; }
.span-15 { width: 590px; }
.span-16 { width: 630px; }
.span-17 { width: 670px; }
.span-18 { width: 710px; }
.span-19 { width: 750px; }
.span-20 { width: 790px; }
.span-21 { width: 830px; }
.span-22 { width: 870px; }
.span-23 { width: 910px; }
.span-24 { width: 950px; margin: 0; }

/* Add these to a column to append empty cols. */
.append-1  { padding-right: 40px; }  
.append-2  { padding-right: 80px; } 
.append-3  { padding-right: 120px; } 
.append-4  { padding-right: 160px; } 
.append-5  { padding-right: 200px; } 
.append-6  { padding-right: 240px; } 
.append-7  { padding-right: 280px; } 
.append-8  { padding-right: 320px; } 
.append-9  { padding-right: 360px; } 
.append-10 { padding-right: 400px; } 
.append-11 { padding-right: 440px; } 
.append-12 { padding-right: 480px; } 
.append-13 { padding-right: 520px; } 
.append-14 { padding-right: 560px; } 
.append-15 { padding-right: 600px; } 
.append-16 { padding-right: 640px; } 
.append-17 { padding-right: 680px; } 
.append-18 { padding-right: 720px; } 
.append-19 { padding-right: 760px; } 
.append-20 { padding-right: 800px; } 
.append-21 { padding-right: 840px; } 
.append-22 { padding-right: 880px; } 
.append-23 { padding-right: 920px; } 

/* Add these to a column to prepend empty cols. */
.prepend-1  { padding-left: 40px; }  
.prepend-2  { padding-left: 80px; } 
.prepend-3  { padding-left: 120px; } 
.prepend-4  { padding-left: 160px; } 
.prepend-5  { padding-left: 200px; } 
.prepend-6  { padding-left: 240px; } 
.prepend-7  { padding-left: 280px; } 
.prepend-8  { padding-left: 320px; } 
.prepend-9  { padding-left: 360px; } 
.prepend-10 { padding-left: 400px; } 
.prepend-11 { padding-left: 440px; } 
.prepend-12 { padding-left: 480px; } 
.prepend-13 { padding-left: 520px; } 
.prepend-14 { padding-left: 560px; } 
.prepend-15 { padding-left: 600px; } 
.prepend-16 { padding-left: 640px; } 
.prepend-17 { padding-left: 680px; } 
.prepend-18 { padding-left: 720px; } 
.prepend-19 { padding-left: 760px; } 
.prepend-20 { padding-left: 800px; } 
.prepend-21 { padding-left: 840px; } 
.prepend-22 { padding-left: 880px; } 
.prepend-23 { padding-left: 920px; } 


/* Border on right hand side of a column. */
div.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #eee;
}


/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -40px; }
.pull-2 { margin-left: -80px; }
.pull-3 { margin-left: -120px; }
.pull-4 { margin-left: -160px; }
.pull-5 { margin-left: -200px; }

.pull-1, .pull-2, .pull-3, .pull-4, .pull-5 {
  float:left;
	position:relative;
}

.push-1 { margin: 0 -40px 1.5em 40px; }
.push-2 { margin: 0 -80px 1.5em 80px; }
.push-3 { margin: 0 -120px 1.5em 120px; }
.push-4 { margin: 0 -160px 1.5em 160px; }
.push-5 { margin: 0 -200px 1.5em 200px; }

.push-1, .push-2, .push-3, .push-4, .push-5 { 
  float: right;
	position:relative;
}


/* Misc classes and elements
-------------------------------------------------------------- */

/* In case you need to add a gutter above/below an element */
.prepend-top { 
	margin-top:1.5em; 
}
.append-bottom { 
	margin-bottom:1.5em; 
}

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #E5ECF9; 
}

/* Use this to create a horizontal ruler across a column. */
hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}


/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "\0020"; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden; 
    overflow:hidden; 
}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }
.clearer { clear:both;
               padding: 10px; }



/* index ideas */

.alignright {
float:right;
width: 40%;
}

small {
font-size: 10px;
}

.clear {clear:both;}

 td.detail:hover {
	background: #F8F7FD;
}

td.detail {
	border-bottom: 1px solid #eaeaea;
}

html body {background:#FBFBFB; color:#444; font:12px/1.4 Helvetica, Arial, sans-serif; margin:0 auto; padding:0}
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {margin:0; padding:0}
table {border-collapse:collapse; border-spacing:0}
address, caption, cite, code, dfn, th, var {font-style:normal; font-weight:400}
caption, th {text-align:left}
q:before, q:after {content:''}
img {border:0; padding:0; margin:0}
code, pre {font-family:Lucida Console, Courier New, mono}
fieldset {border:0; margin:0 -1px 0 0; padding:0}
ul {padding-left:0}

/*-- LISTS --*/
ul {list-style-type:none}
ul.plain {list-style:none !important}
ul.featured a {font-weight:400}
li+li {margin-top:6px}

/*-- OTHER --*/
p, pre, ul, ol, table {display:block; line-height:1.6; margin-bottom:12px}


/* html body {
	background-color: #FBFBFB;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	margin: 0px;
	padding: 0px;
	font-size: 11px;
} */

/* body {
font-size: 62.5%;
}
*/

.onair {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/off_air.png');
	border: none;
	display: block;
}

div.gather {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/gather.png');
	border: none;
	text-decoration: none;
}

div.gather:hover {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/gather_ova.png');
	border: none;
	text-decoration: none;
}

div.listen {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/listen.png');
	border: none;
	text-decoration: none;
}

div.listen:hover {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/listen_ova.png');
	border: none;
	text-decoration: none;
}

div.help {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/help.png');
	border: none;
	text-decoration: none;
}

div.help:hover {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/help_ova.png');
	border: none;
	text-decoration: none;
}

div.talk {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/talk.png');
	border: none;
	text-decoration: none;
}

div.talk:hover {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/talk_ova.png');
	border: none;
	text-decoration: none;
}

div.info {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/info.png');
	border: none;
	text-decoration: none;
}

div.info:hover {
	padding: 0px;
	height: 33px;
	width: 88px;
	background: url('images/links/info_ova.png');
	border: none;
	text-decoration: none;
}

/* body,td,th {
	 font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	font-size: 11px;
	color: #333333;
	font-weight: normal;
}
*/

body {
	background-color: #FBFBFB;
	margin-left: 50px;
	margin-top: 0px;
	margin-right: 50px;
	margin-bottom: 0px;
}

/*
a:link {
	color: #555;
	text-decoration: none;
}
a:visited {
	color: #777;
	text-decoration: none;
}
a:hover {
	color: #9CDE18;
	text-decoration: none;
}
a:active {
	color: #333;
	text-decoration: none;
}

h1,h2,h3,h4,h5,h6 {
	font-family: Helvetica, sans-serif;
	font-weight: bold;
}
h1 {
	font-size: 18px;
	color: #3E84B3;
}
h2 {
	font-size: 14px;
	color: #175684;
}

*/

/*-- HEADINGS --*/
h1, h2, h3, h4 {font-weight:700}
h5, h6 {font-weight:400}

h1 {font-size:21px}
h1 span {display:block; font-size:16px}
h2 {font-size:18px; margin:6px 0}
h3 {font-size:14px; font-variant:small-caps; margin:12px 0 6px; letter-spacing: .03em !important}
h3 span {font-weight:normal}
h4 {font-size:14px; margin:18px 0 6px}
h5, h6 {font-size:100%}

h1 + h2 {margin-top:0}

/*-- LINKS --*/
a:link, a:hover, a:active {color:#444}
a:visited {color:#bebebe}
a:hover {text-decoration: none}


img {
	border: 0px none;
}
.style8 {color: #666666}
.headnav {
	text-align: right;
	margin: 0px;
	border-bottom: 1px solid #333333;
	padding: 5px;
	background-color: #FBFBFB;
	border-bottom-color: #eaeaea;
	border-bottom-width: 1px;
	border-bottom-style: solid;
}
.headnav a {
	color: #999999;
	text-decoration: none;
	font-weight: bold;
	padding: 5px;
	padding-top: 8px;
}
.headnav a:hover {
	color: #333333;
	text-decoration: none;
	background-color: #eaeaea;
	padding: 5px;
	padding-top: 8px;
}
.headnav li {
display: inline;
list-style: none;
padding-right: 12px;
}
.style9 {
	color: #990000;
	font-weight: bold;
	font-size: 14px;
}
.connect {
	padding: 10px 20px 10px 10px;
}

.head_masthead:hover {
	background-image: url(/images/community_radio_masthead_ov.gif);
	background-repeat: no-repeat;
	background-position: center top;
}
.head_masthead {
	padding: 5px 10px 5px 5px;
	background-image: url(/images/community_radio_masthead.gif);
	background-repeat: no-repeat;
	background-position: center center;
	height: 80px;
}
.connect_info {
	padding: 0px;
}

.connect_info2 {
	padding: 10px 20px 10px 10px;
}
.sidebarconnecttop {
	padding: 10px 20px 10px 10px;
	background-image: url(/images/sidebar_bg.gif);
	background-repeat: no-repeat;
	background-position: center top;
}
.sidebarconnectcenter {
	padding: 10px 20px 10px 10px;
	background-image: url(/images/sidebar_bg.gif);
	background-repeat: no-repeat;
	background-position: center center;
}
.sidebarconnectbottom {
	padding: 10px 20px 10px 10px;
	background-image: url(/images/sidebar_bg.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.style12 {color: #006633}
.style13 {color: #175684}
.footer {
	background-image: url(/images/footer2.gif);
	background-repeat: no-repeat;
	background-position: center top;
	height: 111px;
	width: 100%;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #eaeaea;
	border-top-width: 1px;
}
.footer a {
color: #000000;
}

#radioplayer {
margin: 0;
padding: 0;
}
.radioplayericon {
	padding: 5px;
	background-image: url(/images/radioplayer_sm.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 100px;
	width: 100px;
	border: none;
}
.radioplayericon:hover {
	padding: 5px;
	background-image: url(/images/radioplayer_sm2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 100px;
	width: 100px;
	border: none;
}
.datebox {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: none;
	border-right-color: none;
	border-bottom-color: #eaeaea;
	border-left-color: none;
}

.style14 {color: #999999}
.specialhead {
	font-family: Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	letter-spacing: -1px;
}
#specialdiv {
	display: block;
	width: 100%;
	background-color: #FFFFCC;
	padding: 15px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FFFF00;
	border-right-color: #FFFF00;
	border-bottom-color: #FFFF00;
	border-left-color: #FFFF00;
}
#thankyoudiv {
	display: block;
	width: 100%;
	background-color: #FFCCFF;
	padding: 15px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FF66CC;
	border-right-color: #FF66CC;
	border-bottom-color: #FF66CC;
	border-left-color: #FF66CC;
}
input
{
background: #fafafa;
border: 3px double #efefef;
border-top-color: #e5e5e5;
border-left-color: #e5e5e5;
font-size: 18px;
font-family: Helvetica, verdana, sans-serif;
font-weight: bold;
letter-spacing: -0.1px;
padding: 12px;
color: #99FF33;
}

input: hover
{
background: #FFFFFF;
border: 3px double #efefef;
border-top-color: #e5e5e5;
border-left-color: #e5e5e5;
font-size: 18px;
font-family: "lucida grande", "verdana", sans-serif;
font-weight: bold;
letter-spacing: -1px;
padding: 12px;
color: #99FF33;
}
input: hover a:visited
{
background: #FFFFFF;
border: 3px double #efefef;
border-top-color: #e5e5e5;
border-left-color: #e5e5e5;
font-size: 32px;
font-family: "lucida grande", "verdana", sans-serif;
font-weight: bold;
letter-spacing: -1px;
padding: 12px;
color: #99FF33;
}