/*
--------------------
Simple PHP Blog CSS Styles
--------------------

Name: Classic Theme
Author: Alexander Palmo

Description:
This the is the css theme for the Classic theme.
You can use this as a template for your own themes.

Also refer to user_style.php...
*/

/* General */

body
{
  color: #666633; /* txt_color */
  font-size: 12px;
  margin: 0px;
  padding: 0px;
  text-align: left;
  /* background-color: #CCCC99;  bg_color */
  
  /* Standard. Readable */
  font-family: Arial, Helvetica, Sans-Serif;
  /* font-family:  'Lucida Grande', Geneva, sans-serif; */
  /* font-family: Tahoma, Geneva, sans-serif; */
  /* font-family: Geneva, Verdana, sans-serif; */
  
  /* Nice. Classic Looking */
  /* font-family: 'Times New Roman', Times, serif; */
  /* font-family: Georgia, serif; */
  /* font-family: Book Antiqua, Palatino, serif; */
  
  /* Modern. Kind of Funky */
  /* font-family: 'Gill Sans', 'Trebuchet MS', Helvetica, sans-serif; */
  
  /* Monospace */
  /* font-family: Lucida Console, Monaco, monospace; */
}

/* Typeography */

p
{
  margin: 8px 0px 8px 0px; 
}

h1, h2, h3, h4, h5, h6
{
  font-family: 'Trebuchet MS', 'Gill Sans', Helvetica, sans-serif;
  font-weight: bold;
  color: #666633; /* headline_txt_color */
    text-shadow: #bbb 2px 2px 1px;
  
  margin: 2px 0px 2px 0px;
}

h1
{
  font-size: 20px;
}

h2
{
  font-size: 18px;
}

h3
{
  font-size: 16px;
}

h4
{
  font-size: 14px;
}

h5
{
  font-size: 12px;
}

h6
{
  font-size: 10px;
}

/* NEW */
code, pre {
  font-family: 'Courier New', Courier, Fixed;
}

/* NEW */
pre {
  overflow: auto;
  width: 512px;
  border: 1px dotted #D9D9D9; /* inner_border_color */
  padding: 5px
}

/* NEW */
blockquote {
  color: #777;
  margin: 15px 30px 0 10px;
  padding-left: 20px;
  border-left: 5px solid #ddd
}

/* Links */

a:link, a:visited
{
  font-weight: bold;
  text-decoration: underline;
  color: #0000CC; /* link_reg_color */
}

a:hover
{
  text-decoration: underline;
  color: #CC0000; /* link_hi_color */
}

a:active
{
  color: #3333FF; /* link_down_color */
}

/* Images */

img
{
  border: 0;
}

#img_float_left
{
  /* Used in the [img] tag when float=left */
  float: left;
  margin: 2px 8px 4px 2px;
}

#img_float_right
{
  /* Used in the [img] tag when float=right */
  float: right;
  margin: 2px 2px 4px 8px;
}

/* Elements */

hr  
{
  color: #D9D9D9; /* inner_border_color */
  background-color: #D9D9D9; /* inner_border_color */
  height: 8px;
  border: 0px;
  margin: 0px 0px 0px 0px;
}

/* Forms */

/* NEW */
form {
  font-size: 11px;
  margin: 0px;
  padding: 0px
}
  
input, select, option, textarea
{
  font-size: 11px;
  text-align: left;
}

/* Theme Specific */

#header_image
{
  border-color: #4D4D45; /* border_color */
  border-width: 0px 0px 1px 0px;
  border-style: solid;
}

#header
{
  font-family: 'Trebuchet MS', 'Gill Sans', Helvetica, sans-serif;
  color: #FFFFFF; /* header_txt_color */
  margin: 0px;
  padding: 4px 12px 4px 12px;
  border-color: #4D4D45; /* border_color */
  border-width: 0px 0px 1px 0px;
  border-style: solid;
  background-color: #999966; /* header_bg_color */
  font-size: 22px;
  font-weight: bold;
}

#maincontent
{
  margin: 0;
  padding: 20px;
}

#maincontent .blog_subject
{
  font-family: 'Trebuchet MS', 'Gill Sans', Helvetica, sans-serif;
  color: #666633; /* headline_txt_color */
  font-size: 17px;
  font-weight: bold;
  margin: 0px;
}

#maincontent .blog_byline
{
  color: #444444; /* date_txt_color */
  font-size: 11px;
  margin-bottom: 10px;
}

div #toggleSidebarAvatar, #toggleSidebarLinks, #toggleSidebarCalendar, #toggleSidebarArchives, #toggleSidebarCategories , #toggleSidebarSearch, #toggleSidebarMenu, #toggleSidebarPreferences, #toggleSidebarRecentComments, #toggleSidebarRecentEntries, #toggleSidebarRecentTrackbacks
{
  display: block;
}

#sidebar
{
  padding: 10px;
}

#sidebar .menu_title
{
  font-family: 'Trebuchet MS', 'Gill Sans', Helvetica, sans-serif;
  font-weight: bold;
}

#sidebar .menu_title a
{
  text-decoration: none;
  color: inherit;
}

#sidebar .menu_title:hover
{
}

#sidebar .menu_body 
{
  padding: 10px;
  border-color: #999;
  border-width: 1px;
  border-style: dashed;
}

#sidebar .divider {
  margin: 8px 0px 8px 0px;
}

#sidebar .calendar
{
  font-size: 10px;
}

#sidebar .calendar a
{
  font-weight: bold;
  text-decoration: none;
}

#sidebar .calendar td
{
  padding: 2px;
}

/* NEW */
#archive_tree_menu ul 
{
  list-style: none inside;
  padding: 0px 0px 0px 10px;
  margin: 0px;
}

/* NEW */
#archive_tree_menu li 
{
  margin: 0px;
  padding: 0px;
  /* border: 1px #F0F dashed; */
}

#footer
{
  border: 0;
  border-top: 1px solid #4D4D45; /* border_color */
  color: #666666; /* footer_txt_color */
  background: #EEEEEE; /* footer_bg_color */
  padding: 10px;
  text-align: left;
  clear: both;
}

.divider { margin: 20px 0px 15px 0px; }

.frontDarkBlue {
        font-size: 14px;
        background-color: #003366;
        font-weight: bold;
        color: #FFFFFF;
}
.frontLightBlue {
        background-color: #6699cc;
        font-size: 14px;
        font-weight: bold;
        color: #FFFFFF;
}

#frontYellowRed a{
        color: #FF0000;
        font-size: 11px;
        background-color: #FFFFCC;
}
#frontRefTable a{
        font-weight: bold;
        font-size: 14px;
}

.directoryListHeading{
        color: #FF0000;
        font-size: 15px;
        font-weight: bold;
        background-color: #FFFFCC;
}
.bigTitle{
        font-size: larger;
        font-weight: bold;
}

.frontYellowRed{
        color: #FF0000;
        background-color: #FFFFCC;
}
.frontYellow{
        background-color: #FFFFCC;
}
#frontRedSmall a{
        color: #FF0000;
        font-size: 10px;
        font-weight: bold;
}

#frontSmall a{
        font-size: 11px;
        background-color: #FFFFCC;
}
#frontSmall{
        font-size: 11px;
        background-color: #FFFFCC;
}
#listSmall{
        font-size: 15px;
}
.frontSmall{
        font-size: 11px;
        background-color: #FFFFCC;
}

.singleLineBorder {
        border: 1px solid #000000;
}
.thickSingleLineLightBlueBorder {
        border: 5px solid #6699cc;
        background-color: #FFFFFF;
}
.frontWhite {

        background-color: #FFFFFF;
}
A:hover {color: #FF0000;}
.top20:hover { background-color: #FFFFCC;}
#title {font-size: 40px; font-style:italic; font-weight:bold; color: #003366; }
#maintitle {font-size: 25px; color: white; font-weight:bold; }
#alttext { font-size: 11px; color:black;}
#footer { font-size: 14px; color:white; font-family: Arial; }
#top20 { font-size: 8px; }
#titles {font-size: 17px; font-weight:bold; color: white; }
#titles1 {font-size: 14px; font-weight:bold; color: white; }
#maintop20 {font-size: 15px; font-weight:bold; }
#bookby {font-size: 15px; font-weight:bold; color:black;}
#booktitle {font-size: 17px; font-weight:bold; }
#20 {font-size: 20px; font-weight:bold; color:black;}
#10 {font-size: 10px; font-weight:bold; color:black;}
#banner { font-size: 15px; font-style: normal; font-weight: bold; color: blue;}
#bannerout {font-size: 15px; font-style: normal; font-weight: bold; color: #FF0000 }
#bannerr {font-size: 15px; font-style: normal; font-weight: bold; color: #b80000; }
#bannerp { font-size: 15px; font-style: normal; font-weight: bold; color: 7d006a; }
#bannery { font-size: 15px; font-style: normal; font-weight: bold; color: #FFCC00; }
#bannerg {font-size: 15px; font-style: normal; font-weight: bold; color: 007d10; }
#category {font-size: 17px; font-style:normal; font-weight:bold; color: white;}
#links {font-size: 14px; font-style:normal; font-weight:normal; }
#topbanner {font-size: 17px; font-style: normal; font-weight: bold; color: white; text-decoration: none; }
#topbanner1 {font-size: 13px; font-style: normal; font-weight: bold; color: #FF0000;}
#topbanner2 {font-size: 13px; font-style: italic; font-weight: bold; color: #000080; }
#portalsmall {font-size: 13px; font-style:normal; font-weight:normal; }
#portal {font-size: 16px; font-style:normal; font-weight:bold;}
#portal1 {font-size: 15px; font-style:normal; font-weight:bold; color:black;}
#top {font-size: 14px; font-style:normal; font-weight:bold; }
#bottom {font-size: 14px; font-style:normal; font-weight:bold; }
#subcategory {font-size: 16px; font-style:normal; font-weight:bold; color: #00007A; }
#health {font-size: 13px; font-style:normal; font-weight:bold; color: white;}
#related {font-size: 17px; color:black; }
#directories {font-size:17px; font-weight:bold; color:black; }
#library {font-size: 14px; color:black; font-style:normal; font-weight:bold; }
#maintable{
        border: thin solid #000099;
}
#encycOnPage{
        border: thin solid #000099;
        background-color: #FFFFFF;

}
#contentSub{
        font-weight:bold;
        font-size: 15px;
}
a.searchresults{
        font-weight:bold;
        color:black;
        font-size: 15px;
}
.bigerror{
        font-weight:bold;
        color:red;
        font-size: 24px;
}
li.searchresults{
        font-weight:bold;
        color:black;
        font-size: 15px;
}
.qotd_title{
        font-size: 18px;
}
A:link.new, A:vlink.new, A:alink.new {
        color: white;
        font-size: 0.1px;
        visibility: hidden;
}

.morehl {
                font-size: 11px !important;
                color: #003399 !important;
                font-weight: bold !important;
                font-style: normal !important;
                text-decoration: underline !important;
        }

        A:link.morehl, A:vlink.morehl, A:alink.morehl {
                color: #003399 !important;
        }

        .moresrc {
                font-size: 11px !important;
                color: #6699cc !important;
                font-weight: normal !important;
                font-style: normal !important;
                text-decoration: none !important;
        }

        A:link.moresrc, A:vlink.moresrc, A:alink.moresrc {
                color: #6699cc !important;
                font-size: 11px
        }

        .moreti {
                font-size: 11px;
                color: #6699cc;
                font-weight: normal;
                font-style: normal;
                text-decoration: none;
        }

        .morehlt {
                font-size: 11px;
                color: #FFFFFF !important;
                font-weight: bold;
                font-style: normal;
                text-decoration: none;
        }
.legal{
        font-size: 12px;
}

.frontLightBlueBigger {

        background-color: #6699cc;
        font-size: 16px;
        font-weight: bold;
        color: #FFFFFF;
}
.frontLightBlueSmaller {


        background-color: #6699cc;
        font-size: 10px;
        font-weight: bold;
        color: #FFFFFF;
}
#frontYellowRed {

        color: #FF0000;
        font-size: 11px;
        background-color: #FFFFCC;
}

.a08    { font-family: Arial, Verdana, Helvetica; font-size: 11px;}
.a08b   { font-family: Arial, Verdana, Helvetica; font-size: 11px; font-weight: bold;}
.a10    { font-family: Arial, Verdana, Helvetica; font-size: 13px;}
.a10red { font-family: Arial, Verdana, Helvetica; font-size: 13px; color: #CC0000}
.a10wht { font-family: Arial, Verdana, Helvetica; font-size: 13px; color: #FFFFFF}
.a10blu { font-family: Arial, Verdana, Helvetica; font-size: 13px; color: #0000CC}
.a10b   { font-family: Arial, Verdana, Helvetica; font-size: 13px; font-weight: bold;}
.a10bred{ font-family: Arial, Verdana, Helvetica; font-size: 13px; font-weight: bold; color: #CC0000}
.a10bblu{ font-family: Arial, Verdana, Helvetica; font-size: 13px; font-weight: bold; color: #0000CC}
.a10i   { font-family: Arial, Verdana, Helvetica; font-size: 13px; font-style: italic;}
.a10ired{ font-family: Arial, Verdana, Helvetica; font-size: 13px; font-style: italic; color: #CC0000 }
.a10iblu{ font-family: Arial, Verdana, Helvetica; font-size: 13px; font-style: italic; color: #0000CC }
.a12    { font-family: Arial, Verdana, Helvetica; font-size: 16px;}
.a12red { font-family: Arial, Verdana, Helvetica; font-size: 16px; color: #CC0000}
.a12grn { font-family: Arial, Verdana, Helvetica; font-size: 16px; color: #009900}
.a12wht { font-family: Arial, Verdana, Helvetica; font-size: 16px; color: #FFFFFF}
.a12blu { font-family: Arial, Verdana, Helvetica; font-size: 16px; color: #0000CC}
.a12b   { font-family: Arial, Verdana, Helvetica; font-size: 16px; font-weight: bold;}
.a12bred{ font-family: Arial, Verdana, Helvetica; font-size: 16px; font-weight: bold; color: #CC0000 }
.a12bblu{ font-family: Arial, Verdana, Helvetica; font-size: 16px; font-weight: bold; color: #0000CC}
.a12bgrn{ font-family: Arial, Verdana, Helvetica; font-size: 16px; font-weight: bold; color: #009900}
.a12i   { font-family: Arial, Verdana, Helvetica; font-size: 16px; font-style: italic;}
.a12ired{ font-family: Arial, Verdana, Helvetica; font-size: 16px; color: #CC0000; font-style: italic }
.a12iblu{ font-family: Arial, Verdana, Helvetica; font-size: 16px; color: #0000CC; font-style: italic }
.a14    { font-family: Arial, Verdana, Helvetica; font-size: 19px;}
.a14red { font-family: Arial, Verdana, Helvetica; font-size: 19px; color: #CC0000}
.a14wht { font-family: Arial, Verdana, Helvetica; font-size: 19px; color: #FFFFFF}
.a14blu { font-family: Arial, Verdana, Helvetica; font-size: 19px; color: #0000CC}
.a14b   { font-family: Arial, Verdana, Helvetica; font-size: 19px; font-weight: bold;}
.a14bred{ font-family: Arial, Verdana, Helvetica; font-size: 19px; font-weight: bold; color: #CC0000 }
.a14bblu{ font-family: Arial, Verdana, Helvetica; font-size: 19px; font-weight: bold; color: #0000CC }
.a14bwht{ font-family: Arial, Verdana, Helvetica; font-size: 19px; font-weight: bold; color: #FFFFFF }
.a16    { font-family: Arial, Verdana, Helvetica; font-size: 21px;}
.a16red { font-family: Arial, Verdana, Helvetica; font-size: 21px; color: #CC0000}
.a16wht { font-family: Arial, Verdana, Helvetica; font-size: 21px; color: #FFFFFF}
.a16blu { font-family: Arial, Verdana, Helvetica; font-size: 21px; color: #0000CC}
.a16b   { font-family: Arial, Verdana, Helvetica; font-size: 21px; font-weight: bold;}
.a18    { font-family: Arial, Verdana, Helvetica; font-size: 24px;}
.a18red { font-family: Arial, Verdana, Helvetica; font-size: 24px; color: #CC0000}
.a18wht { font-family: Arial, Verdana, Helvetica; font-size: 24px; color: #FFFFFF}
.a18blu { font-family: Arial, Verdana, Helvetica; font-size: 24px; color: #0000CC}
.a18b   { font-family: Arial, Verdana, Helvetica; font-size: 24px; font-weight: bold;}
.a18bred{ font-family: Arial, Verdana, Helvetica; font-size: 24px; font-weight: bold; color: #CC0000}
.a18bblu{ font-family: Arial, Verdana, Helvetica; font-size: 24px; font-weight: bold; color: #0000CC}
.a24    { font-family: Arial, Verdana, Helvetica; font-size: 32px;}
.a24red { font-family: Arial, Verdana, Helvetica; font-size: 32px; color: #CC0000}
.a24wht { font-family: Arial, Verdana, Helvetica; font-size: 32px; color: #FFFFFF}
.a24blu { font-family: Arial, Verdana, Helvetica; font-size: 32px; color: #0000CC}
.a24b   { font-family: Arial, Verdana, Helvetica; font-size: 32px; font-weight: bold;}
.a36    { font-family: Arial, Verdana, Helvetica; font-size: 48px;}
.a36red { font-family: Arial, Verdana, Helvetica; font-size: 48px; color: #CC0000}
.a36wht { font-family: Arial, Verdana, Helvetica; font-size: 48px; color: #FFFFFF}
.a36blu { font-family: Arial, Verdana, Helvetica; font-size: 48px; color: #0000CC}
.a36b   { font-family: Arial, Verdana, Helvetica; font-size: 48px; font-weight: bold;}
.tableHeading1 {
    font-family: Arial, Verdana, Helvetica;
    font-size: 16px;
    background-color: #6699CC;
    font-weight: bold;
    color: #FFFFFF;
}
.tableHeading2 {
    font-family: Arial, Verdana, Helvetica;
    font-size: 24px;
    color: #FFFFFF;
    background-color: #003366;
    font-weight: bold;
}
.tableHeading2a {
    font-family: Arial, Verdana, Helvetica;
    font-size: 24px;
    color: #FFFFFF;
    background-color: #6699CC;
    font-weight: bold;
}
.tableHeading3 {
    font-family: Arial, Verdana, Helvetica;
    font-size: 16px;
    background-color: #6699CC;
    font-weight: bold;
    color: #FFFFFF;
}
.tableHeading4 {
    font-family: Arial, Verdana, Helvetica;
    font-size: 16px;
    background-color: #003366;
    font-weight: bold;
    color: #FFFFFF;
}
.moreSites {
    font-family: Arial, Verdana, Helvetica;
    font-size: 13px;
    background-color: #FFFFCC;
}
.moreSites12 {
    font-family: Arial, Verdana, Helvetica;
    font-size: 16px;
    background-color: #FFFFCC;
}

