body, input {
    background-color: #111;
    margin:0;
}

a:link, a:visited, a:active, a:hover {
    color: white;
    text-decoration: none;
}

a:hover {
    text-shadow: 0px 0px 2px white;
    -moz-text-shadow: 0px 0px 2px white;
    -webkit-text-shadow: 0px 0px 2px white;
    -o-text-shadow: 0px 0px 2px white;
    -khtml-text-shadow: 0px 0px 2px white;
}

img {
    vertical-align: bottom;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background-color: black;
    padding: 5px;
    z-index: 10;
    line-height: 1.8;
    text-align: center;
}

#header_blogtitle {
    margin-right: 30px;
}

.header_link {
    margin-right: 5px;
}

#posts {
    position: relative;
    z-index: 0;
    margin-top: 40px;
}

#posts span {
    display: block;
}

#posts > a:link,
#posts > a:hover,
#posts > a:visited,
#posts > a:active {
    text-decoration: none;
    border-bottom: none;
}

.post {
    margin: 5px;
    padding: 5px;
    width: 240px;
    background-color: black;
    color: white;
    float: left;
    word-wrap: break-word;
    font-size: 10pt;
    
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    
    opacity: 0.85;
}

.post_hover:hover, .post_hovered {
    opacity: 0.5;
}

.post .answer_form_container {
    display: none;
}

.post p,
.post blockquote {
    display: inline;
}

.post.photo,
.post.photoset,
.post.panorama,
.post.video {
    width: 250px;
    padding: 0px;
}

#post, #notes, #post_info {
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    padding: 20px;
    background-color: black;
    color: white;
}

#post {
    margin-top: 45px;
}

#notes, #post_info {
    margin-bottom: 10px;
}

#notes {
    list-style-type: none;
    overflow: hidden;
    display: inline-block; /* Necessary to trigger "hasLayout" in IE */
    display: block;
}

.note .action, .note blockquote {
    display: none;
}

ol.notes { 
    width: 80%;
    list-style: none;
    line-height: normal;
    margin-left: auto;
    margin-right: auto;
}
ol.notes li, #notes .more_notes_link  {
    float: left; 
    width: 64px; 
    border: 5px black solid;
    background-color: rgb(39, 165, 64);;
    color: white;
}

#notes .more_notes_link {
    margin-left: -5px;
    margin-top: -5px;
}

#notes_count {
    font-size: 18pt;
    font-weight: bold;
}

.modal {
    position: fixed;
    left: -600px;
    top: -450px;
    width: 550px;
    height: 400px;
    background-color: #111;
    z-index: 100;
    padding: 10px;
    color: white;
    text-align: center;
}

#about img {
    margin-left: auto;
    margin-right: auto;
}

#overlay {
    z-index: 50;
    background-color: black;
    opacity: 0.5;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}
