/**
 * @file
 * HTML Element Styling
 *
 * Ok, I admit it. I fooled you. This isn't a "reset" stylesheet. Instead this
 * is the place where you should set (not reset) the default styling for all
 * HTML elements.
 *
 * @see http://meiert.com/en/blog/20080419/reset-style-sheets-are-bad/
 * @see http://snook.ca/archives/html_and_css/no_css_reset/
 */
/*
 * Fonts
 *
 * Our font size and line height declarations are based on the following
 * articles:
 * - http://www.alistapart.com/articles/howtosizetextincss
 * - http://24ways.org/2006/compose-to-a-vertical-rhythm
 *
 * All modern browsers use a 16px default font size. Specifying the font-size
 * and line-height in ems (relative to the 16px default font) allows the user
 * to resize the font in the browser and produces the most consistent results
 * across different browsers.
 */
body {font-size: 100%; /* Fixes exaggerated text resizing in IE6 and IE7 */
}
#skip-to-nav,
#page {
  /*
   * To use a 12px font size on the page, delete the 14px declarations.
   * to use a 14px font size on the page, delete the 12px declarations.
   */
  /* Use a 12px base font size with a 18px line height */
 /* font-size: 0.75em;  16px x .75 = 12px */
 /* line-height: 1.5em;  12px x 1.5 = 18px */
  /* Use a 14px base font size with a 21px line height */
 /* font-size: 0.875em;  16px x .875 = 14px */
 /* line-height: 1.5em;  14px x 1.5 = 21px */
}
/*
 * Instead of relying on the fonts that are available on a user's computer, you
 * can use web fonts which, like images, are resources downloaded to the user's
 * browser. Because of the bandwidth and rendering resources required, web fonts
 * should be used with care.
 *
 * Numerous resources for web fonts can be found on Google. Here are a few
 * websites where you can find Open Source fonts to download:
 * - http://www.fontsquirrel.com/fontface
 * - http://www.theleagueofmoveabletype.com
 *
 * In order to use these fonts, you will need to convert them into formats
 * suitable for web fonts. We recommend the free-to-use Font Squirrel's
 * Font-Face Generator:
 *   http://www.fontsquirrel.com/fontface/generator
 *
 * The following is an example @font-face declaration. This font can then be
 * used in any ruleset using a property like this:  font-family: Example, serif;
@font-face {
  font-family: 'Example';
  src: url('../fonts/example.eot');
  src: url('../fonts/example.eot?iefix') format('eot'),
    url('../fonts/example.woff') format('woff'),
    url('../fonts/example.ttf') format('truetype'),
    url('../fonts/example.svg#webfontOkOndcij') format('svg');
  font-weight: normal;
  font-style: normal;
}
 */
body,
caption,
th,
td,
input,
textarea,
select,
option,
legend,
fieldset {
  /* The following font family declarations are based on the Microsoft core web
   * fonts which are common fonts available on most computer systems. The DejaVu
   * and Nimbus Sans fonts are commonly available on Linux systems where the MS
   * fonts are less common. Tahoma and Helvetica are also widely available.
   * A user's web browser will look at the comma-separated list and will
   * attempt to use each font in turn until it finds one that is available
   * on the user's computer. The final "generic" font (sans-serif, serif or
   * monospace) hints at what type of font to use if the web browser doesn't
   * find any of the fonts in the list.
  font-family: "Times New Roman", Times, Georgia, "DejaVu Serif", serif;
  font-family: Times, "Times New Roman", Georgia, "DejaVu Serif", serif;
  font-family: Georgia, "Times New Roman", "DejaVu Serif", serif;
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;
  font-family: Tahoma, Verdana, "DejaVu Sans", sans-serif;
  font-family: Helvetica, Arial, "Nimbus Sans L", sans-serif;
  font-family: Arial, Helvetica, "Nimbus Sans L", sans-serif;
  font-family: "Courier New", "DejaVu Sans Mono", monospace;
   */
  font-family: Verdana, Tahoma, "DejaVu Sans", sans-serif;}
pre,
code,
kbd,
samp,
tt,
var {font-family: "Courier New", "DejaVu Sans Mono", monospace;}
/*
 * Block-level elements
 *
 * To achieve a pleasant vertical rhythm, we use the 1.5em line height of our
 * base font as the top and bottom margins for our block level elements and make
 * the line heights of any larger fonts be a multiple of 1.5 ems. For more
 * information, see http://24ways.org/2006/compose-to-a-vertical-rhythm
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl,
hr, fieldset {margin: 1.5em 0;}
table {margin: .5em 0;}
/* Headings */
h1 {font-size: 2em; line-height: 1.5em; margin: 0.75em 0;
  /* 0.75em is equivalent to 1.5em in the page's base font. font. Remember, a
     margin specified in ems is relative to the element's font-size, not to the
     pages' base font size. So, for example, if we want a 1.5em margin (relative
     to the base font), we have to divide that length by the element's
     font-size:  1.5em / 2em = 0.5em  */
}
h2 {font-size: 1.5em;margin: 1em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.5 = 1em */}
h3 {font-size: 1.3em;margin: 1.154em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.3 = 1.154 */}
h4,
h5,
h6 {font-size: 1.1em;margin: 1.364em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */}
/* Other block-level elements */
p {}
blockquote {margin-left: 2em;margin-right: 2em;}
pre {font-size: 1.1em; /* Monospace fonts can be hard to read */margin: 1.364em 0; /* Equivalent to 1.5em in the page's base font: 1.5 / 1.1 = 1.364 */}
hr {height: 1px;border: 1px solid #666;}
address {}
/*
 * Lists
 *
 * We need to standardize the list item indentation.
 */
ul,
ol {margin-left: 0; /* LTR */padding-left: 2em; /* LTR */}
.item-list ul /* Drupal overrides */ {margin: 1.5em 0;padding: 0 0 0 2em; /* LTR */}
ul ul, ul ol,
ol ol, ol ul,
.item-list ul ul, .item-list ul ol,
.item-list ol ol, .item-list ol ul {
  margin: 0;}
li {margin: 0;padding: 0;}
.item-list ul li,
ul.menu li,
li.expanded,
li.collapsed,
li.leaf /* Drupal override */ {margin: 0;padding: 0;}
ul          { list-style-type: disc; }
ul ul       { list-style-type: circle;}
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }
dl {}
dt {margin: 0;padding: 0;}
dd {margin: 0 0 0 2em; /* LTR */padding: 0;}
/*
 * Tables
 *
 * Drupal provides table styling which is only useful for its admin section
 * forms, so we override this default CSS. (We set it back in forms.css.)
 */
table {border-collapse: collapse;/* width: 100%; */ /* Prevent cramped-looking tables */}
th {text-align: left; /* LTR */padding: 0;border-bottom: none;}
tbody {border-top: none;}
thead {}
tfoot {}
caption {}
colgroup {}
col {}
tr {}
td {}
/*
 * Forms
 */
form {margin: 0;padding: 0;}
fieldset {padding: 0.5em;}
legend {}
label {}
input {}
select {}
optgroup {}
option {}
textarea {}
button {}
/*
 * Links
 *
 * The order of link states are based on Eric Meyer's article:
 * http://meyerweb.com/eric/thoughts/2007/06/11/who-ordered-the-link-states
 */
.no-decoration {text-decoration: none;}
a:link {color: #372BB5;text-decoration: none;}
a:visited {color: #372BB5;}
a:hover {color: #B31489;}
a:focus {}
a:active {}
a.yellow {text-decoration: none;background: url('/sites/default/files/images_on_site/yellowline.gif') repeat-x 100% 100%;padding-bottom: 1px;white-space: nowrap;line-height: 1.75em;font-size: 1.1em;font-family: Verdana, Arial, Helvetica, sans-serif;color: #FFFF66;}
a.yellowsm {text-decoration: none;background: url('/sites/default/files/images_on_site/yellowline.gif') repeat-x 100% 100%;padding-bottom: 1px;white-space: nowrap;line-height: 1.75em;font-size: .9em;font-family: Verdana, Arial, Helvetica, sans-serif;color: #FFFF66;}
a.blue {text-decoration: none;background: url('/sites/default/files/images_on_site/blue_underline.gif') repeat-x 100% 100%;padding-bottom: 1px;white-space: nowrap;line-height: 1.75em;font-size: 1.2em;font-family: Verdana, Arial, Helvetica, sans-serif;}
a.purple {text-decoration: none;background: url('/sites/default/files/images_on_site/purpleline.gif') repeat-x 100% 100%;padding-bottom: 1px;white-space: nowrap;line-height: 1.75em;font-size: 1.2em;font-family: Verdana, Arial, Helvetica, sans-serif;}
a.purplesm {text-decoration: none;background: url('/sites/default/files/images_on_site/purpleline.gif') repeat-x 100% 100%;padding-bottom: 1px;white-space: nowrap;line-height: 1.75em;font-size: 1em;font-family: Verdana, Arial, Helvetica, sans-serif;}
a.underline-off {text-decoration: none;}
a.thin {letter-spacing:-.02em;}
/*
 * Other inline elements
 */
img {  border: 0;  /* vertical-align: bottom; */ /* Suppress the space beneath the baseline */}
abbr, /* Abbreviations */
acronym {border-bottom: 1px dotted #666;cursor: help;white-space: nowrap;}
q {}
cite {}
strong, b {}
em, i {}
code,
kbd,
samp,
tt,
var /* Code, keyboard input, sample output, teletype, variable */ {}
del {}
ins {}
big {}
small {}
sub {}
sup {}
.nospace {font-size: 0.875em; /* 16px x .875 = 14px */line-height: 0.875em;}
/** DOUG ADDED text styles **/
.newmusic {font-size: 2em;font-family: Verdana, Arial, Helvetica, sans-serif;line-height: 1.2em;}
span.bbs{font-size: 2.8em;font-family: Georgia, Times New Roman, Times, serif;color: #32549C;font-style: italic;font-weight: bold;}
span.radio{font-size: 2.8em;font-family: Georgia, Times New Roman, Times, serif;color: white;font-style: italic;font-weight: bold;}
span.mainstream{font-size: 1.6em;font-family: Georgia, Times New Roman, Times, serif;color: #CCCCCC;}
/** DOUG ADDED bible to self awareness page text styles **/
.white{font-size: 1em;line-height: 1.2em;font-family: Verdana, Arial, Helvetica, sans-serif;color: #0000;}
.textbible1{font-size: 1em;line-height: 1.3em;font-weight: bold;font-family: Verdana, Arial, Helvetica, sans-serif;color: #00FF00;}
.textbible2{font-size: 1em;line-height: 1.3em;font-weight: bold;font-family: Verdana, Arial, Helvetica, sans-serif;color: #FFFF00;}
.textbible3{font-size: 1em;line-height: 1.3em;font-weight: bold;font-family: Verdana, Arial, Helvetica, sans-serif;color: #FF00FF;}
.textbible4{font-size: 1em;line-height: 1.3em;font-family: Verdana, Arial, Helvetica, sans-serif;color: white;}
.textbible5{font-size: 1em;line-height: 1.3em;font-weight: bold;font-family: Verdana, Arial, Helvetica, sans-serif;color: #FFFFC6;}
.yellow /** DOUG ADDED for BBS Radio Heading on pages **/ {text-transform: uppercase;text-align: center;font-size: 2.2em;font-weight: 500;}
/** DOUG ADDED paragraph text styles **/
p.special /** DOUG ADDED for BBS Radio Heading on pages **/ {text-align: center;margin-bottom: 2em;}
p.boldyellow{font-weight: bold;color: #FFFF00;font-size: 1.4em;line-height: 1.6em;font-family: Verdana, Arial, Helvetica, sans-serif;}
p.text{font-size: 1.3em;line-height: 1.5em;text-align: justify;font-family: Verdana, Arial, Helvetica, sans-serif;color: #B6B2FF;}
p.textf{font-size: 1.1em;line-height: 1.8em;font-family: sans-serif;color: #E6FF75;}
p.normal{font-size: 1em;line-height: 1.2em;text-align: justify;font-family: Verdana, Arial, Helvetica, sans-serif;color: white;}
p.leftnormal{font-size: 1em;line-height: 1.3em;font-family: Helvetica, Arial, Verdana, sans-serif;color: white;}
/** DOUG ADDED div text styles **/
div.text{font-size: 1.1em;line-height: 1.2em;text-align: justify;font-family: Verdana, Arial, Helvetica, sans-serif;color: #B6B2FF;}
div.popularlinks{line-height: 1.5em;font-size: .9em;text-align: center;font-family: Verdana, Arial, Helvetica, sans-serif;}
div.tablesetting{padding: 15px;border: 5px solid #210f2a;background-color: black;height: 100%;text-align: center;width: 560;font-size: 1.1em;line-height: 1.3em;font-family: Verdana, Arial, Helvetica, sans-serif;color: #B6B2FF;}
div.pane{outline-style: double;outline-color: #343434;outline-width: 6px;border-style: dotted;border-width: 1px;border-color: #FBEACF;padding-bottom: 15px;padding-right: 15px;padding-left: 15px;padding-top: 15px;background-color: #343434;}
div.pane2{outline-style: double;outline-color: #343434;outline-width: 1px;border-style: dotted;border-width: 1px;border-color: #FBEACF;padding-bottom: 15px;padding-right: 15px;padding-left: 15px;padding-top: 15px;background-color: #FFF9F0;}
div.peterpage{border-style: dotted;border-color: #FBEACF;outline-style: double;outline-color: #343434;outline-width: 1px;padding-bottom: 30px;padding-right: 0px;padding-left: 10px;padding-top: 30px;}
/** DOUG ADDED For styling Images **/
.imageleft {float: left;margin: 0px 5px 5px 0px;}
img.imageleft3{float: left;margin: 5px 20px 5px 0px;}
.imageleft2 {float: left;margin: 5px 15px 5px 0px;}
.imagemusic {margin: 5px 10px 10px 10px;}
.imageright {float: right;margin: 5px 0px 0px 5px;}
.imageright2 {float: right;margin: 5px 0px 5px 15px;}
/** DOUG ADDED For styling schedule fonts **/
.style2b {font-size: small; color: #FF0000;}
/** other added styles **/
.footer {font-size: 8px; color: #888888;}
.footerlink {font-size: 8px; color: #888888;}
.numbers-w {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #FFFF99; font-weight: 500; line-height: 1.4em;}
.numbers-y {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; color: #CCCCFF; font-weight: 500; line-height: 1.4em;}
.style5 {font-family: Arial, Helvetica, sans-serif; font-size: small; font-weight: bold; color: #FFFF00;}
.styling {font-family: Arial, Helvetica, Sans-serif; font-size: 14px; color: #FFFFFF;}
.styling2 {font-family: Arial, Helvetica, Sans-serif; font-size: 14px; color: #91FFAC;}
.styling3 {font-family: Arial, Helvetica, Sans-serif; font-size: 11px; color: #00FF00;}
.styling4 {font-family: Arial, Helvetica, Sans-serif; font-size: 11px; color: #91FFAC;}
.styling5 {font-family: Arial, Helvetica, Sans-serif; font-size: 11px; color: #FFFFFF; text-align: justify;}
.contentdiv3 {font-family: Arial, Helvetica, Sans-serif; font-size: 15px;}
.contentdiv2 {font-family: Arial, Helvetica, Sans-serif; font-size: 14px;}
.couponcode {font-family: Arial, Helvetica, Sans-serif; font-size: 12px; color: #FFFF99; font-weight: bold;}
.imagefixed {position:relative; top:10px;}
.musicsubmit {color: #00FF00; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;}
a.CDBaby {color: #FF9999; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;}
a.itunes {color: #33FFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;}
.space {color: #FF00FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;}
a.Myspace {color:#CC3300; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:14px;}
a.facebook {color:#FFaa00; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px;}
.amazon {color: #FF0000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;}
.rhapsody {color: #FF00FF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;}
.clickserve {color: #FFFF00; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;}
.top {color: #cc99ff; font-family: Australian Sunrise; font-size: 26px;}
.otherpartner {color: #FFFFFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px;}
a.singerlink {color: #ccFF00; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;}
.musicpartner {color: #FFFFCC; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px;}
.allurelink {color: #AE5EFF;}
.contacting {color: #FFFFFF;}
.singertext {color: #FFCC00; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px;}
.singersongs {color: #CCCCFF; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;}
.tdtl {font-family:verdana; font-size:11px; font-weight: bold; text-decoration: none; color: #2F5296;}
.tdtlinks {font-family:verdana; font-size:11px; text-decoration: underline; color: #2F5296;}
a.hostnavsmall {font-size: 12px}
.hostnavsmall {font-size: 12px}
.style2b {font-size: small; color: #FF0000;}
.style3b {font-size: small; color: #FFFF00;}
.style4b {font-size: small; color: #00FF00;}
.smalldate {font-size: 11px; font-family: Arial, Helvetica, sans-serif;}
.styleaone {color: #FFFFFF}
.styleatwo {color: #FFFFB0;	font-weight: bold;}
.style1 {font-weight: bold}
.style3 {color:#6600CC}
span.style5x {font-size: 1.3em}
.style6x {color: #00FF00; font-style: italic; }
.style9 {font-weight: bold; color: #6666FF; }
.stylex10 {color: #009100; font-family:Geneva, Arial, Helvetica, san-serif;}
div.styling4 {font-family: Arial, Helvetica, Sans-serif; font-size: .9em; color: #91FFAC; font-weight: 500; line-height: 1.4em; text-align: center;}
div.styling5 {font-family: Arial, Helvetica, Sans-serif; font-size: .9em; color: #FFFFFF; text-align: center; font-weight: 500; line-height: 1.4em;}
div.styling6 {font-family: Arial, Helvetica, Sans-serif; font-size: .8em; color: #FFFFFF; line-height: 1.1em; text-align: justify;}
#aggregator .feed-item-title {margin-bottom: 0;font-size: 1.2em;}
#aggregator .feed-item {background-color: #170C00;border-style: dotted;border-width: 1px;border-color: #FBEACF;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;padding-top: 10px;}
#aggregator .feed-item-body {background-color: #3A0700;border-width: 1px;border-color: #FBEACF;padding-bottom: 10px;padding-right: 10px;padding-left: 10px;padding-top: 10px;}
#aggregator .feed-item-meta {padding-bottom: 4px;}
table#forum-0 tbody tr.odd {background-color: #00000a;}
table#forum-0 tbody tr.even {background-color: #00000b;}
.intrinsic-container {
  position: relative;
  height: 0;
  overflow: hidden;
}
 
/* 16x9 Aspect Ratio */
.intrinsic-container-16x9 {
  padding-bottom: 56.25%;
}
 
/* 4x3 Aspect Ratio */
.intrinsic-container-4x3 {
  padding-bottom: 75%;
}
 
.intrinsic-container iframe {
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}