/* ------------------------------------------------------------------ */
/* Page design by James Henstridge.  Colour choices swiped from Kubrick theme */
/* ------------------------------------------------------------------ */
/* Basic page structure */

body {
    font-family: sans-serif;
    background: #d5d6d7;
    color: #333;
    margin: 20px 30px;
    text-align: center;
}

#wrapper {
    background-color: white;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    text-align: left;
}

#header {
    margin: 0px;
    padding: 50px 0px;
    background: #73a0c5;
    -moz-border-radius: 20px 20px 0px 0px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
}

#footer {
    clear: both;
    padding: 20px 0px;
    background-color: #eee;
    -moz-border-radius: 0px 0px 20px 20px;
    -webkit-border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

h1 {
    font-size: 300%;
    margin: 0px;
}

#blog-description {
    font-size: 120%;
}

h1 a, h1 a:hover, h1 a:visited, #blog-description {
    color: white;
    text-decoration: none;
}

/* hide accessibility stuff */
#access {
    display: none;
}

/* Put the sidebar to the right of the main content ... */
div#container {
    float: left;
    margin: 0px 0px 0px -200px;
    width: 100%;
}
#content {
    margin: 0px 0px 0px 200px;
    padding: 0px 45px 45px 45px;
}
.sidebar {
    float: right;
    /* overflow: hidden; */
    width: 180px;
    padding: 0px 5px;
    font-size: 80%;
}
.sidebar#secondary {
    display: none;
}

/* ... but hide it when we are displaying a single article */
body.single div#container, body.single #content {
    margin: 0px;
    float: none;
}
body.single .sidebar {
    display: none;
}

/* On the main page, show nav links at the bottom.  On entry pages,
 * at the top.
 */
#nav-above {
    display: none;
}

body.single #nav-above {
    display: block;
}
body.single #nav-below {
    display: none;
}

/* ------------------------------------------------------------------ */
/* Entry display */

a {
    color: #06c;
    text-decoration: none;
}

a:hover {
    color: #147;
    text-decoration: underline;
}

.entry-content a:visited {
    color: #b85b5a;
}

h2 {
    font-size: 160%;
    margin: 30px 0 10px 0;
}

h3 {
    font-size: 130%;
}


h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
    color: #333;
}

h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited,
#sidebar h2, #wp-calendar caption, cite {
    text-decoration: none;
}

.entry-date {
    margin-left: 25px;
    font-size: 90%;
    color: #777;
}

.entry-meta {
    text-align: center;
    font-size: 90%;
    color: #777;
}

.entry-content {
    margin: 0 0 40px;
    text-align: justify;
}

.entry-content img {
    padding: 0px;
    max-width: 100%;
}

acronym, abbr, span.caps {
    cursor: help;
}

acronym, abbr {
    border-bottom: 1px dashed #999;
}

blockquote {
    margin: 15px 30px 0 10px;
    padding-left: 20px;
    border-left: 5px solid #ddd;
}

blockquote cite {
    margin: 5px 0 0;
    display: block;
}

.center {
    text-align: center;
}

.entry-content ul li, .entry-content ul ul li {
    list-style: square;
}

.entry-content ul ol li {
    list-style: decimal;
}

.cat-links {
    display: none;
}

/* ------------------------------------------------------------------ */
/* Comments */

#comments-list ol, #trackbacks-list ol {
    padding: 0px;
}
#comments-list ol li, #trackbacks-list ol li {
    list-style: none;
    margin: 0px;
    padding: 10px;
}

#comments-list .alt, #trackbacks-list .alt {
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

#comments-list .bypostauthor {
    border-left: 5px solid #ddd;
}

.comment-meta {
    font-size: 90%;
    color: #777;
}

.comment-content {
    text-align: justify;
}

#commentform input {
    width: 170px;
    padding: 2px;
    margin: 5px 5px 1px 0;
}

#respond textarea {
    width: 100%;
    padding: 2px;
}

#respond .form-submit {
    text-align: right;
}

.avatar {
    float: right;
    border: 0px;
    margin-left: 10px;
    display: block;
}


/* ------------------------------------------------------------------ */
/* RSS icon */
a.rsswidget img {
    border: 0px;
    display: none;
}


