/**********************************************************************/
/* Template: bulletproof for Serendipity (http://www.s9y.org)         */
/* Authors: Matthias Mees, David Cummins and Don Chambers             */
/*                                                                    */
/* Base stylesheet                                                    */
/*                                                                    */
/* http://s9y-bulletproof.com                                         */
/**********************************************************************/


/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
/* WARNING: Don't edit this stylesheet unless you know what you're    */
/*          doing! These styles are crucial to the layout, they're    */
/*          actually the reason this template is called 'bulletproof' */
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

body, html {
    margin: 0;
    padding: 0;
}

body {
    text-align: center;
}

#wrapper {
    overflow: hidden;
    width: 95%;
    margin: 1em auto;
    text-align: left;
}

#sitenav {
    float: left;
    width: 100%;
}

#sitenav ul {
    list-style-type: none;
    display: inline;
    margin-left: 0;
    padding-left: 0;
}

#sitenav ul li {
    display: inline;
}

#sitenav #searchform {
    float: right;
    display: inline;
}

#sbsitenav ul {
    list-style-type: none;
}

.pagearrow { font-family: Arial, sans-serif!important;} /* greatest cross browser support for left and right facing arrows */

#serendipityLeftSideBar,
#content {
    float: left;
}

#serendipityLeftSideBar,
#serendipityRightSideBar,
#content {
    display: inline;
}

#serendipityRightSideBar {
     float: right;
     clear: right;
}

#serendipityRightSideBar.layout3ssb_right {
    float: left;
    clear: none;
}

/* 3-column widths */
.threemain {
    width: 60%;
}
.threeside {
    width: 20%;
}

/* 2-column widths */
.twomain {
    width: 75%;
}
.twoside {
    width: 20%;
}

/* 1-column widths */
.onemain {
    width: 100%;
}

.onefull {
    width: 100%;
}

.layout2sb_content {
    clear: right !important;
}

.onefull .serendipitySideBarItem {
    float: left;
    margin: 0px 1px 10px 11px!important;
    padding: 0!important;
    width: 18.5%;
    display:inline;
}

#footer {
    float: right;
    position: relative;
    clear: both;
    margin: 0;
    padding: 0!important;
    width: 100%;
    height: 100%;
}

/*** Accessibility styles ***/
#skiplinks {
    display: inline;
    height: 1px;
    overflow: hidden;
    width: 1px;
    /* Absolute positioning */
    position: absolute;
    top: -1000px;
    left: -1000px;
}

#skiplinks ul {
    list-style-type: none;
    display: inline;
    margin-left: 0;
    padding-left: 0;
}

#skiplinks ul li {
    display: inline;
    padding: 0 10px;
}

/* without this, the navbar wipes out part of the banner */
/* if the navbar is located above the banner             */
#serendipity_banner {
    clear: both;
}

/* Fahrner Image Replacement for the header */
.invisible {
    margin-left: -5000px;
}
.visible { /* just a placeholder - don't use this class */
           /* unless you know what you're doing         */ }

/* this is needed to clear floats from floated images */
.belowentry,
.infofooter {
    clear: both;
}

/*** Some s9y-specific stuff ***/
/* centering something     */
.serendipity_center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* messages from s9y */
.serendipity_msg_important {
    color: red;
    margin-bottom: 1em;
}
.serendipity_msg_notice {
    color: green;
    margin-bottom: 1em;
}

.serendipity_entry_extended {
    clear: both;
}

/* prevent styling of the extended placeholder, */
/* otherwise the background image is visible    */
#extended {
    background: none;
    display: none;
}

/* styling the continue reading byline, needed   */
/* to stop firefox making the link 100% wide     */
.continue_reading {
    display: block;
    padding-top: 10px;
}

/* styling the bulletproof button link in footer */
#serendipity_bulletproof_button img {
    border: none;
}

.serendipity_Entry_Date,
.serendipity_commentBody {
    overflow: hidden;
}

.serendipitySideBarContent input,
.serendipitySideBarContent select {
    width: 95%;
}

.archives_header { clear: left; }

ul.archives_row {
    clear: left;
    float: left;
    list-style-type: none;
    width: 100%;
}

ul.archives_row li.archives_graph,
ul.archives_row li.archives_date,
ul.archives_row li.archives_count,
ul.archives_row li.archives_count_link,
ul.archives_row li.archives_link {
    float: left;
    width: 19.9%;
}

ul.staticpage_navigation {
    list-style-type: none;
    display: inline;
}

ul.staticpage_navigation li {
    display: inline;
}

#theme_chooser select{
    width: 90%;
}

/* microformats */
.author {
    display: inline;
    font-style: normal;
}

.published {
    border-bottom: none;
    cursor: auto;
}

/*** Additional plugin styles needed for the modernized output code ***/
/*** these will eventuelly kick in starting with s9y v1.4           ***/
.container_serendipity_archives_plugin ul,
.container_serendipity_syndication_plugin ul,
.container_serendipity_authors_plugin ul,
.container_serendipity_plugin_entrylinks ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.container_serendipity_authors_plugin .serendipitySideBarContent div {
    margin: 5px 0;
    padding-left: 0;
}

.serendipity_history_author { font-weight: bolder; }

.serendipity_history_intro,
.serendipity_history_info { margin-bottom: 3px; }

.serendipity_history_body { margin-bottom: 10px; }

.serendipity_recententries_entrylink { margin-bottom: 2px; }

.serendipity_recententries_entrydate { margin: 0 0 4px 0; }

.plugin_comment_body { padding: 3px 0; }

.serendipity_shoutbox_date { margin: 5px 0 2px 0; }

.serendipity_shoutbox_comment { padding: 3px 0; }



/**********************************************************************/
/* Template: bulletproof for Serendipity (http://www.s9y.org)         */
/* Authors: Matthias Mees, David Cummins and Don Chambers             */
/*                                                                    */
/* Stylesheet for the colorset 'default'                              */
/* Design inspired by Serendipity 3.0 by Carl Galloway                */
/*                                                                    */
/* http://s9y-bulletproof.com                                         */
/**********************************************************************/





#wrapper {
    font-size: 80%;
    

    margin: 2px auto;
    min-width: 600px;
    max-width: 850px;
}

#sitenav #searchform {
    margin: 0 0.5em 0 0;
}

input#serendipityQuickSearchTermField {
    border: 1px solid #235587!important;
}

#sitenav #searchform input {
    border: 1px solid #235587;
    margin-top: 2px;
    margin-right: 0;
}

#serendipity_banner {
    background: # url(img/default_banner.jpg) left top repeat-x;
}

a.homelink1, a.homelink1:hover,
a.homelink1:link, a.homelink1:visited,
#serendipity_banner h1 {
    color: #bc9f66;
    font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
    font-size: 120%;
    text-decoration: none;
    text-align: center;
    padding-top: 10px;
}

a.homelink2, a.homelink2:hover,
a.homelink2:link, a.homelink2:visited,
#serendipity_banner h2 {
    color: #bc9f66;
    font-size: 110%;
    text-decoration: none;
    padding: 5px 0 15px 0;
}

/* site navigation styles */
#sitenav {
    background: #ddecfb url(img/default_sitenav_back.png) center left repeat-x;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
}

#sitenav.snabove {
    border-top: 0;
}

#sitenav ul li {
    margin: 0;
    padding: 0; 
    display: inline;
    font-size: 85%;
    letter-spacing: .2em;
    font-weight: bold;
}

#sitenav ul a {
    padding: 4px 10px;
    border-right: #000000 1px solid;
    float: left;
    overflow: hidden; 
}

#sitenav .currentpage a,
#sitenav ul li a:hover {
    padding: 4px 10px;
    color: #000;
    text-decoration: none;
    background: #235587;
}

#sbsitenav ul {
    margin: 0;
}

#sbsitenav .currentpage a {
    text-decoration: underline;
    font-weight: bold;
}

#content h3 {
    text-align: right;
    font-size: 90%;
    line-height: 0.85em;
    color: #999;
    text-transform: lowercase;
    border-bottom: 1px solid #bc9f66;
    margin: 0;
}

#content h4 {
    font-weight: bold;
    font-size: 140%;
    color: #235587;
    margin: 10px 0 5px;
}

#content {
font-size: 90%;
}

#serendipityLeftSideBar,
#serendipityLeftSideBarLeft,
#serendipityLeftSideBarRight,
#content,
#serendipityRightSideBar {
    padding-top: 10px;
    
}

.oneside {
    padding-top: 0;
}

.serendipitySideBarTitle {
    font-size: 90%;
    line-height: 0.85em;
    color: #bc9f66;
    text-transform: lowercase;
    border-bottom: 1px solid #bc9f66;
    margin:0 0 4px 0;
}

#serendipityLeftSideBar .serendipitySideBarTitle {
    text-align: left;
}

#serendipityRightSideBar .serendipitySideBarTitle,
#serendipityLeftSideBarRight .serendipitySideBarTitle {
    text-align: left;
}

.serendipitySideBarContent{
    margin: 5px 0 30px 0;
}

.serendipity_commentsTitle {
    font-weight: bold;
    color: #bc9f66;
}

.serendipity_comment_author_self {
    border-top: 3px solid #e37235;
    border-bottom: 3px solid #e37235;
}

.comment_evenbox {
    border-top: 1px solid #5f90ba;
    border-bottom: 1px solid #5f90ba;
    background-color: #fafbfc;
    color: #505050;
}

.comment_oddbox {
    border-top: 1px solid #c0c0c0;
    border-bottom: 1px solid #c0c0c0;
    background-color: #fafbfc;
    color: #505050;
}

.serendipity_entryFooter {
    border: 0px solid #ddecfb;
    background-color:#;
    font-size: 75%;
    padding: 3px;
}

.serendipity_entryFooter a:hover {
    color: #e37235;
    text-decoration:none;
}

.serendipity_pageFooter {
    margin: 5px 0 10px;
}

#footer {
  font-size:50%;
}

/* pagination links */
div.pagination{
    margin-top: 1em;
}

.pagination a:link,
.pagination a:visited{
    background: #DDECFB url(img/default_sitenav_back.png) center left repeat-x;
    border: 1px solid #CFCFCF;
    padding: 2px 6px;
    text-decoration: none;
}

span#thispage {
    background: #235587;
    border: 1px solid #235587;
    color: #ffffff;
    padding: 2px 6px;
}

.pagination a:hover,
.pagination a:active {
    background: #5F90BA;
    border: 1px solid #235587;
    color: #ffffff;
    padding: 2px 6px;
}

img.serendipity_entryIcon {
    float: right;
    border: 0px;
    margin: 0 5px 0px 0;
}

/* Calendar */
table.serendipity_calendar {
    border-bottom: 1px solid #ddecfb;
    border-left: 1px solid #ddecfb;
    border-right: 1px solid #ddecfb;
    width: 100%;
}

table.serendipity_calendar td {
    text-align: center;
}

table.serendipity_calendar a {
    font-weight: bold;
    text-decoration: none;
}

table.serendipity_calendar a:hover {
    text-decoration: underline;
}

.serendipity_calendarHeader {
    background: #235587;
}

#today {
    color: #fff;
    font-size: 90%;
}

.serendipity_calendarHeader a:link,
.serendipity_calendarHeader a:active,
.serendipity_calendarHeader a:visited,
.serendipity_calendarHeader a:hover {
    border: none;
    color: #fff;
    text-decoration: none;
}

.serendipity_weekDayName {
    font-weight: 600;
    color: #fff;
    background: #5f90ba;
}

.serendipity_calendarDay {
    color: #888;
}

.Today {
    color: #444;
/*    text-decoration: overline; */
    border: 1px solid #dfdfdf;
}

/* styles for calendar days rows */
.row1 {background: #ddecfb; }
.row2 {background: #e2eefb; }
.row3 {background: #e7f1fb; }
.row4 {background: #ecf3fb; }
.row5 {background: #f1f6fb; }
.row6 {background: #f6f8fb; }
/* end calendar */

.serendipity_search,
.staticpage_navigation,
.serendipity_overview_noentries {
    background-color: #fafbfc;
    color: #505050;
    border: 1px solid #c0c0c0;
    padding: 3px;
}

.searchterm, .searchresults {
    color: #235587;
    font-weight: bold;
}

.serendipity_freetag_taglist {
    background-color: #fafbfc;
    color: #505050;
    border: 1px solid #c0c0c0;
    padding: 3px;
}

.serendipity_freeTag_related {
    margin-top: 1em;
}

.container_serendipity_plugin_comments {
    color: #333;
}

.plugin_comment_wrap {
    background-color: #fafbfc;
    color: #505050;
    border-top: 1px solid #ddecfb;
    border-bottom: 1px solid #ddecfb;
    margin: 5px 0 0 0;
}

.plugin_comment_body {
    font-style: oblique;
}

/* edit link for all sidebar items */
.serendipity_edit_nugget {
    font-weight: bold;
    margin-top: 10px;
    text-align: right;
}

.serendipity_edit_nugget a {
    /*background: transparent url('img/configure.png') bottom left no-repeat;*/
    padding: 4px 0 0 20px;
}