/*
 * Reset style to a known baseline (overriding browser variations)
 * using the following snippet from Yahoo!.
 *
 * BEGIN: Yahoo! Inc. code
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
*/
html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym {border:0;font-variant:normal;}sup {vertical-align:text-top;}sub {vertical-align:text-bottom;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}input,textarea,select{*font-size:100%;}legend{color:#000;}
/*
 * END: Yahoo! Inc. code
 */

/*
 * Bring back some basic markup style.
 */

em {
    font-style: italic;
    font-weight: inherit;
}
strong {
    font-weight: bold;
    font-style: inherit;
}
dd {
    margin-left: 40px;
}

/*
 * Top-level document characteristics
 */

html {
    overflow-y: scroll;
}

body {
    text-align: center;
    color: #333;
    font-size: 12px;
    line-height: 15px;
    font-family: "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
}

/*
 * Blog header style
 */

div.weblogTitle {
    padding: 0px 2em;
}

p.weblogName {
    color: #08C;
    font-size: 32px;
    font-weight: bold;
    padding: 5px 0px 0px 0px;
    margin: 10px 0px;
    text-align: left;
}

p.weblogName a {
    color: #08C;
    text-decoration: none;
}

p.weblogDescription {
    color: #08C;
    font-size: 14px;
    padding: 2px 0px 10px 0px;
    margin: 10px 0px;
    text-align: left;
}

/*
 * Style for an individual blog entry.
 */

.entryBox {
    margin: 18px 0px;
}

p.entryDate {
    color: #333;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    padding: 10px 0px 0px 0px;
    margin: 0px 0px;
    text-align: left;
}

/* no longer used... see table stuff below. */
p.entryTitle {
    color: #08C;
    font-size: 18px;
    font-weight: bold;
    line-height: 15px;
    padding: 0px 0px 8px 0px;
    margin: 10px 0px;
    border-bottom: 2px #08C solid;
    text-align: left;
}

/* table stuff for the entry title.  it's the only way. */
.entryTitlebar {
    border: none;
    border-bottom: 2px #08C solid;
    font-weight: bold;
    padding: 0px 0px 0px 0px;
    margin: 5px 0px 10px 0px;
    width: 100%;
}
.entryTitlebarTitle {
    border: none;
    text-align: left;
    padding: 0px 0px 4px 0px;
    margin: 0px;
    color: #08C;
    font-size: 18px;
    line-height: 18px;
}
.entryTitlebarDate {
    border: none;
    text-align: right;
    padding: 0px 0px 4px 0px;
    margin: 0px;
    white-space: nowrap;
    vertical-align: bottom;
    color: #333;
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
}

div.entryContent {
    color: #333;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
}

p.entryInfo {
    color: #777;
    font-size: 12px;
    line-height: 15px;
    text-align: left;
    padding: 10px 0px 4px 0px;
    margin: 0px 0px 30px 0px;
}

/*
 * Style for the sidebar
 */

div.sidebar {
    padding: 16px 10px 10px 10px;
}

p.sidebarLabel {
    color: #08C;
    font-size: 12px;
    font-weight: bold;
    line-height: 14px;
    padding: 0px 0px 2px 0px;
    margin: 8px 0px 6px 0px;
    border-bottom: 2px #08C solid;
    text-align: left;
}

p.aboutText {
    color: #333;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    margin: 10px 0px;
}

ul.rNavigationBar, ul.rMenu, ul.rFolder, ul.rReferersList, ul.rEntriesList {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 80%;
}

div.sidebarBox ul {
    color: #333;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    margin: 10px 0px;
}

ul.feeds li {
    background-image: url(http://cafbit.com/roller/images/feed-icon-12x12.gif);
    background-repeat: no-repeat;
    background-position: 0 .2em; 
    padding-left: 1.4em;
    line-height: 1.5em;
}

div.next-previous {
    font-size: 14px;
    text-align: center;
    padding: .5em 0 .5em 0;
}

/*
 * Style for the blog post itself.
 * Note that I consider blog posts to essentially be standalone
 * HTML documents, so all hierarchial concepts are reset at this
 * level.  In other words, blog posts are free to use elements
 * like h1 without jarring the look and feel.
 */

div.entryContent h1 {
    color: #333;
    font-size: 18px;
}
div.entryContent h2 {
    color: #333;
    font-size: 14px;
    font-weight:bold;
    border-bottom:1px dotted #666;
    margin-top: .5em;			
}
div.entryContent h3 {
    color: #333;
    font-size: 13px;
    font-weight:bold;
    font-style: italic;
    text-decoration: underline;
    margin-top: .5em;			
}
div.entryContent ul,ol {
    margin: 10px 3em;
}
div.entryContent ol > li {
    list-style: decimal outside none;
}
div.entryContent ul > li {
    list-style: disc outside none;
}
div.entryContent li {
/*
    list-style: disc outside none;
*/
    margin: 0px 0px;
}
div.entryContent p {
    margin: 10px 0px;
}

/*
 * Below is style information leftover from Roller's "Basic" theme.
 */

/*-------------------------------------------------------------
Base styles
--------------------------------------------------------------*/
.img {
    border: 0px;
    margin: 0px; 
}

/* entries ----------------------------------------------- */

/* other lists ----------------------------------------------- */

/* calendar ----------------------------------------------- */

.hCalendarDay{
    text-align : center;
    font-size: small;
}
th.hCalendarDayNameRow {
    text-align : center;
    font-size : small;
    font-weight : bold;
}
td.hCalendarDayCurrent {
    text-align : center;
    font-size  : small;
    font-weight: bold;
}
td.hCalendarDayLinked {
    text-align : center;
    font-size  : small;
    font-weight: bold;
}

/* comments ----------------------------------------------- */

.comments-form {
    text-align: left;
}

div.comments-form span.status {
    display: block;
    background: white;
    color: green;
    border: 1px solid green;
    margin: 10px 0px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

span.error {
    display: block;
    background: white;
    color: #c00;
    border: 1px solid #c00;
    margin: 10px 0px;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
}

p.comment-details {
    font-size: 80%;
    color: #999;
}
.comments-syntax-indicator {
    font-weight: bold;
}
.comments-syntax-indicator span.enabled {
    background: transparent;
    color: green;
    font-style: italic;
}
.comments-syntax-indicator span.disabled {
    background: transparent;
    color: red;
    font-style: italic;
}

form ul{ position: relative; list-style: none; width: 100%; }
form li{ line-height: 2em; margin: 0; padding: 1px 1px 6px 9px; }
form li.focused{ background-color: #fff7c0 !important; }
form li p{ font-size: 9px; line-height: 13px; color: #444; }
form li{ display: inline-block; }
form[id] li{ display: block; }
form li div{ display: inline-block; }
form[id] li div{ display: inline; }
form .left{ float: left !important; margin: 0; }
form .right{ float: right !important; margin: 0; }
form .clear{ clear: both; } 
form li div p{ margin: 0 0 5px 0; }
form div.left{ margin-right: 2px !important; }
form div.left[class]{ margin-right: 4px !important; }
form div.left img{ margin: 0 0 -2px 0; }
form h2{ font-size: 1.8em; clear: left; } 
form .info{ display: inline-block; margin: 0 0 10px 0; padding: 0 0 4px 0; border-bottom: 1px dotted #ccc !important;}
form .info[class]{ display: block; }
form .info p{ font-size: 1em; line-height: 1.3em; margin: 0 0 8px 0; }
textarea.textarea{margin-bottom: 1px;}
textarea.textarea[class]{font-family: "Lucida Grande", Tahoma, "Trebuchet MS", Verdana, sans-serif;}
select.select{ padding: 1px 0 0 0; margin: 1px 0 3px 0; }
select.select[class]{ margin: 0; padding: 1px 0 1px 0; }
form .small{ width: 70px; }
form .medium{ width: 170px; }
form .large, form textarea.textarea{ width: 340px; }
form .tags{ width: 320px; }
form textarea.small{ height: 5.5em; }
form textarea.medium{ height: 10em; }
form textarea.large{ height: 20em; }
.choices input{ width: 200px; margin-right: 3px; }
.choices ol{ margin: 10px 0 0 0; }
.choices[class] ol{ margin: 0 !important; }
.choices img{ margin: 0 0 1px 0; }
fieldset ol li{ display: list-item !important; margin: 0 5px 2px 3px !important; padding: 0 !important; list-style: inside decimal; }
input.button, button { width: 6em; padding: 2px 2px 0 0; /* fix for IE */ }
/* revert to normal for Firefox */
li>input.button, li>button, input.button>input.button, button>button { padding: 2px; }
label.desc{
    margin: 4px 0 3px 0;
    border: 0;
    color: #444;
    font-size: 1em;
    line-height: 1.3em;
    display: block;
    font-weight: bold;
}
input.text, input.number, input.url, input.email, input.password, input.file, 
textarea.textarea, select.select{
    font-size: 1.2em;
    border-top: 1px solid #7c7c7c;
    border-left: 1px solid #c3c3c3;
    border-right: 1px solid #c3c3c3;
    border-bottom: 1px solid #ddd;
    color: #333;
}
input.text, input.number, input.url, input.email, input.password, input.file{ padding: 2px; }
input.currency{ text-align: right; }
input.checkbox, input.radio{
    display: block;
    line-height: 1.4em;
    margin: 8px 0 0 3px;
    width: 13px;
    height: 13px;
}
input.focus, textarea.focus { background: #ffd; color: #000; }
label.choice{
    display: block;
    line-height: 1.4em;
    margin: -19px 0 0 25px;
    padding: 4px 0 5px 0;
    color: #444;
    width: 80%;
}


/*-------------------------------------------------------------
Basic theme styles
--------------------------------------------------------------*/
/* layout ----------------------------------------------- */

.content_wrapper {
    width: 75%;
    float: left;
}
.content {
    padding: 0em 2em 2em 2em;
}
.sidebar_wrapper { 
    width: 25%;
    float: right;
}

/* simmons ----------------------------------------------- */
/*
 * Tweaks I've made to the Roller basic style in the past.
 */

div.photo {
    float: right;
    padding: 5px;
    margin: 10px;
    width: 320px;
    background-color: #f0f0f0;
    clear: both;
}
div.photo img {
    border: 0;
}
div.photo p {
    width: 320px;
    margin: 3px;
    padding: 0px;
    font-size: 12px;
    line-height: 15px;
}

div.photoleft {
    float: left;
    padding: 5px;
    margin: 10px;
    width: 320px;
    background-color: #f0f0f0;
}
div.photoleft img {
    border: 0;
}
div.photoleft p {
    width: 320px;
    margin: 3px;
    padding: 0px;
    font-size: 12px;
    line-height: 15px;
}


div.photo160 {
    float: right;
    padding: 5px;
    margin: 10px;
    width: 160px;
    background-color: #f0f0f0;
    clear: both;
}
div.photo160 img {
    border: 0;
}
div.photo160 p {
    width: 160px;
    margin: 3px;
    padding: 0px;
    font-size: 12px;
    line-height: 15px;
}

div.photo240 {
    float: right;
    padding: 5px;
    margin: 10px;
    width: 240px;
    background-color: #f0f0f0;
    clear: both;
}
div.photo240 img {
    border: 0;
}
div.photo240 p {
    width: 240px;
    margin: 3px;
    padding: 0px;
    font-size: 12px;
    line-height: 15px;
}

h3 {
    clear: both;
    font-size:1.0em;
}

div.fineprint p {
    font-size: 10px;
    line-height: 15px;
    font-style: italic;
}

blockquote {
    margin: 0;
    padding: 0 5em;
    /*
    border-left: 0.5em solid #e8f4d3;
    border-right: 0.5em solid #e8f4d3;
    */
}

/*
tt, code {
    font-size: 120%;
}
*/

table.tabdata {
    border-width: thin;
    border-style: outset;
    border-spacing: 0px;
}
table.tabdata td {
    border-width: thin;
    border-style: outset;
    padding: 2px;
    font-size: 90%;
    color: #222;
}
table.tabdata thead td {
    background-color: #f0fff0
}
table.tabdata tbody td {
    background-color: #f0f0ff
}

div.comments {
    text-align: left;
    padding-top: 1em;;
    padding-bottom: 2em;
}
div.comment {
    padding-top: 8px;
    padding-bottom: 10px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 13px;
    line-height: 20px;
}
div.comments-form {
    text-align: left;
}

div.comments-head {
    color: #08C;
    font-size: 12px;
    font-weight: bold;
    line-height: 14px;
    padding: 0px 0px 2px 0px;
    margin: 8px 0px 6px 0px;
    border-bottom: 2px #08C solid;
    text-align: left;
}
div.comment.odd {
    background-color: #f0f0ff;
}
div.comment.even {
    background-color: #f0fff0;
}
div.comment p {
    margin: 5px 0px;
}

blockquote,
q {
        -webkit-hyphens: none;
        -moz-hyphens:    none;
        -ms-hyphens:     none;
        hyphens:         none;
        quotes: none;
}
  
blockquote:before,
blockquote:after,
q:before,
q:after {
        content: "";
        content: none;
}

blockquote {
        font-size: 18px;
        font-style: italic;
        font-weight: 300;
        margin: 24px 40px;
}

blockquote blockquote {
        margin-right: 0;
}

blockquote cite,
blockquote small {
        font-size: 14px;
        font-weight: normal;
        text-transform: uppercase;
}

blockquote em,
blockquote i {
        font-style: normal;
        font-weight: 300;
}

blockquote strong,
blockquote b {
        font-weight: 400;
}
