div.posting {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.32);
    width: 800px;
    margin: 0 auto;
    padding: 0 0 10px 0;
    text-align: center;
    background: rgb(248, 248, 248);
}

div.posting h1 {
    padding: 0 30px 10px 30px;
    font-family: 'Open sans', sans-serif;
    font-weight: bold;
    color: #333;
}

div.posting .posting-description {
    border-top: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    background: #fff;
    font-size: 18px;
    line-height: 22px;
    padding: 10px 20px;
    margin: 10px 0 0 0;
}

div.posting .image-description {
    border-top: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 20px;
    margin: 10px 0;
}

div.posting ul.posting-tags {
    display: block;
    text-align: center;
    margin: 10px 0 0 0;
}
    div.posting ul.posting-tags li {
        display: inline-block;
        margin: 0;
    }
        div.posting ul.posting-tags li a {
            display: block;
            background: #eee;
            color: #444;
            padding: 4px 8px;
            font-size: 14px;
            line-height: 20px;
            border-radius: 3px;
            text-decoration: none;
        }
            div.posting ul.posting-tags li a:hover {
                text-decoration: underline;
                background: #ddd;
            }

div.posting div.my-posting {
    display: block;
    text-align: center;
    margin: 10px 0 0 0;
}
    div.posting div.my-posting button {
        background-color: rgb(247, 247, 247);
        background-image: linear-gradient(rgb(255, 255, 255), rgb(240, 240, 240));
        border-radius: 5px;
        border: 1px solid rgb(204, 204, 204);
        box-shadow: rgba(255, 255, 255, 0.98) 1px -1px 1px 0 inset, rgba(255, 255, 255, 0.98) -1px 0 1px 0 inset;
        box-sizing: border-box;
        color: rgb(95, 95, 95);
        cursor: pointer;
        display: inline-block;
        font-family: 'Helvetica Neue', arial, sans-serif;
        font-size: 14px;
        height: 26px;
        margin: 0 5px;
        padding: 3px 14px 4px 14px;
        text-shadow: 0 1px 0 rgb(255, 255, 255);
    }
        div.posting div.my-posting button:active {
            background-image: linear-gradient(rgb(240, 240, 240), rgb(255, 255, 255));
            box-shadow: rgba(255, 255, 255, 0.98) 1px -1px 1px 0 inset,
            rgba(255, 255, 255, 0.98) -1px 0 1px 0 inset,
            rgba(0, 0, 0, 0.48) 0 0 4px 0 inset;
        }

        div.posting div.my-posting button[name='delete'] {
            color: #ba1717;
        }


div.posting div.image-holder {
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 1);
    margin: 0 auto;
    border-radius: 5px;
}
    div.posting ul.gallery,
    div.posting ul.gallery li {
        display: block;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    div.posting.owned ul.gallery div.image-holder {
        cursor: pointer;
        border: 2px solid transparent;
    }
    div.posting.owned ul.gallery div.image-holder:hover {
        border: 2px solid #3694c3;
    }

    div.posting.owned ul.gallery div.image-holder:hover div.image-delete {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        padding: 10px 20px;
        color: #fff;
        background: rgba(0, 0, 0, .3);
        border-bottom-left-radius: 5px;
        font-weight: bold;
        font-size: 14px;
    }
    div.posting.owned ul.gallery div.image-holder div.image-delete:hover {
        background: rgba(0, 0, 0, .6);
    }

div.posting div.image-holder img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}
div.posting div.posting-nav {
    padding: 10px;
    height: 36px;
    background: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

div.posting div.posting-nav button{
    background-color: rgb(247, 247, 247);
    background-image: linear-gradient(rgb(255, 255, 255), rgb(240, 240, 240));
    border-radius: 5px;
    border: 1px solid rgb(204, 204, 204);
    box-shadow: rgba(255, 255, 255, 0.98) 1px -1px 1px 0 inset, rgba(255, 255, 255, 0.98) -1px 0 1px 0 inset;
    box-sizing: border-box;
    color: rgb(95, 95, 95);
    cursor: pointer;
    display: block;
    float: left;
    font-family: 'Helvetica Neue', arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    height: 36px;
    margin: 0 5px;
    padding: 7px 24px 8px 24px;
    text-shadow: 0 1px 0 rgb(255, 255, 255);
}

div.posting div.posting-nav button:active {
    background-image: linear-gradient(rgb(240, 240, 240), rgb(255, 255, 255));
    box-shadow: rgba(255, 255, 255, 0.98) 1px -1px 1px 0 inset,
    rgba(255, 255, 255, 0.98) -1px 0 1px 0 inset,
    rgba(0, 0, 0, 0.48) 0 0 4px 0 inset;
}

div.posting div.posting-nav button[name="like"] {
    content: "";
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin: 0;
    padding-left: 10px;
    padding-right: 13px;
}
div.posting div.posting-nav button[name="like"]:before {
    content: "";
    position: relative;
    float:left;
    width: 26px;
    height: 20px;
    opacity: .75;
    background: url("//reposti.com/images/glyphicons/glyphicons_213_up_arrow.png") no-repeat;
}
div.posting div.posting-nav button[name="dislike"] {
    content: "";
    border-radius: 0;
    margin: 0;
    border-left-width: 0;
    padding-left: 16px;
    padding-right: 16px;
}
div.posting div.posting-nav button[name="dislike"]:before {
    content: "";
    position: relative;
    float: left;
    width: 18px;
    height: 20px;
    opacity: .75;
    background: url("//reposti.com/images/glyphicons/glyphicons_212_down_arrow.png") no-repeat;
}
div.posting div.posting-nav button[name="like"].active,
div.posting div.posting-nav button[name="dislike"].active {
    background-image: linear-gradient(rgb(180, 180, 180), rgb(210, 210, 210));
    box-shadow: rgba(0, 0, 0, 0.58) 0 0 2px 0 inset,
    rgba(0, 0, 0, 0.38) 0 0 7px 0 inset;
}

div.posting div.posting-nav button[name="url"]:before {
    content: "";
    position: relative;
    top: 3px;
    left: 5px;
    float:left;
    width: 16px;
    height: 16px;
    opacity: .75;
    margin: 0 5px 0 -8px;
    background: url("//reposti.com/images/glyphicons/glyphicons_050_link.png") no-repeat;
    background-size: 80% 80%;
}

div.posting div.posting-nav div[name="share"] {
    float: right;
    margin: 4px 0 0 14px;
    display: inline-block;
    text-align: right;
    height: 21px;
    width: 100px;
    font-size: 18px;
    padding: 4px 0;
}

div.posting div.posting-nav div[name="twitter"],
div.posting div.posting-nav div[name="facebook"],
div.posting div.posting-nav div[name="google"],
div.posting div.posting-nav div[name="stumbleupon"],
div.posting div.posting-nav div[name="pinterest"] {
    float: right;
    margin: 4px 4px 0 14px;
    display: inline-block;
    text-indent: -9999px;
    background: url("//reposti.com/images/facebook/fb_logo.29.png") no-repeat;
    height: 29px;
    width: 29px;
    border: 0;
    cursor: pointer;
    opacity: .8;
}
div.posting div.posting-nav div[name="twitter"] {
    background: url("//reposti.com/images/twitter/twitter_29.png") no-repeat;
    margin: 6px 4px 0 14px;
}
div.posting div.posting-nav div[name="stumbleupon"] {
    background: url("//reposti.com/images/stumbleupon/stumbleupon_29.png") no-repeat;
    margin: 4px 4px 0 14px;
}
div.posting div.posting-nav div[name="pinterest"] {
    background: url("//reposti.com/images/pinterest/pinterest_29.png") no-repeat;
    margin: 4px 4px 0 14px;
}
div.posting div.posting-nav div[name="google"] {
    background: url("//reposti.com/images/google/gplus-29.png") no-repeat;
    margin: 4px 4px 0 24px;
}
div.posting div.posting-nav div[name="twitter"]:hover,
div.posting div.posting-nav div[name="facebook"]:hover,
div.posting div.posting-nav div[name="google"]:hover,
div.posting div.posting-nav div[name="stumbleupon"]:hover,
div.posting div.posting-nav div[name="pinterest"]:hover {
    opacity: 1;
}
div.posting div.posting-nav div[name="twitter"][tooltip]:before,
div.posting div.posting-nav div[name="facebook"][tooltip]:before,
div.posting div.posting-nav div[name="google"][tooltip]:before,
div.posting div.posting-nav div[name="stumbleupon"][tooltip]:before,
div.posting div.posting-nav div[name="pinterest"][tooltip]:before {
    top: 25px;
    left: 11px;
}
div.posting div.posting-nav div[name="twitter"][tooltip]:after,
div.posting div.posting-nav div[name="facebook"][tooltip]:after,
div.posting div.posting-nav div[name="google"][tooltip]:after,
div.posting div.posting-nav div[name="stumbleupon"][tooltip]:after,
div.posting div.posting-nav div[name="pinterest"][tooltip]:after {
    top: 35px;
    left: -25px;
    width: 70px;
}

div.posting div.posting-nav div[name="like-count"] {
    background-color: rgb(247, 247, 247);
    background-image: linear-gradient(rgb(255, 255, 255), rgb(240, 240, 240));
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    border: 1px solid rgb(204, 204, 204);
    border-left-width: 0;
    box-shadow: rgba(255, 255, 255, 0.98) 1px -1px 1px 0 inset, rgba(255, 255, 255, 0.98) -1px 0 1px 0 inset;
    box-sizing: border-box;
    color: rgb(95, 95, 95);
    cursor: pointer;
    display: block;
    float: left;
    font-family: 'Helvetica Neue', arial, sans-serif;
    font-size: 15px;
    line-height: 20px;
    font-weight: bold;
    margin: 0;
    padding: 7px 14px;
    text-shadow: 0 1px 0 rgb(255, 255, 255);
}

div.posting a.next,
div.posting a.prev {
    background-color: rgb(247, 247, 247);
    background-image: linear-gradient(rgb(255, 255, 255), rgb(240, 240, 240));
    border-radius: 5px;
    border: 1px solid rgb(204, 204, 204);
    box-shadow: rgba(255, 255, 255, 0.98) 1px -1px 1px 0 inset, rgba(255, 255, 255, 0.98) -1px 0 1px 0 inset;
    box-sizing: border-box;
    color: rgb(95, 95, 95);
    cursor: pointer;
    display: inline-block;
    font-family: 'Helvetica Neue', arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin: 5px;
    padding: 7px 24px 8px 24px;
    text-shadow: 0 1px 0 rgb(255, 255, 255);
    text-decoration: none;
}
div.posting a.next:active,
div.posting a.prev:active {
    background-image: linear-gradient(rgb(240, 240, 240), rgb(255, 255, 255));
    box-shadow: rgba(255, 255, 255, 0.98) 1px -1px 1px 0 inset,
    rgba(255, 255, 255, 0.98) -1px 0 1px 0 inset,
    rgba(0, 0, 0, 0.48) 0 0 4px 0 inset;
}

div.posting .prev.bottom {
    margin: 10px 0 0 0;
}

div.posting .next.bottom {
    margin: 10px 0 0 0;
}

div.posting span.next {
    display: inline-block;
    height: 10px;
    width: 90px;
}
div.posting span.prev {
    display: inline-block;
    height: 10px;
    width: 90px;
}

div.posting div.attribution {
    font-size: 14px;
    color: #aaa;
    margin: 10px 0 5px 0;
}

div.posting div.attribution span.username a {
    font-size: 14px;
    color: #777;
    font-weight: bold;
    text-decoration: none;
}
div.posting div.attribution span.username a:hover {
    text-decoration: underline;
}
div.posting div.attribution span.date {
    font-size: 14px;
    color: #999;
}

div.comments {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.32);
    width: 800px;
    margin: 0 auto;
    padding: 0;
    background: rgb(248, 248, 248);
}

div.comments div.total-count {
    padding: 5px 10px;
    font-size: 16px;
    line-height: 22px;
    color: #999;
    border-bottom: 1px solid #ccc;
}

div.comments form {
    display: block;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

div.comments form textarea {
    width: 742px;
    height: 25px;
    display: block;
}

div.comments form button {
    display: none;
}

div.comments ul {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

div.comments ul li > ul {
    margin-left: 30px;
}

div.comments ul li {
    display: block;
    list-style-type: none;
    margin: 0;
    padding: 15px 0 5px 0;
    border-bottom: 1px solid #ccc;
    background: #fff;
    position: relative;
}
div.comments ul li > ul li {
    border-bottom: none;
    padding: 10px 0 0 0;
}

div.comments ul li.hidden {
    padding: 5px 0 5px 0;
}

div.comments ul li div.comment-rating {
    width: 50px;
    font-size: 16px;
    position: absolute;
    top: 29px;
    left: 0;
    text-align: center;
    color: #777;
}

div.comments ul li.hidden > div.comment-rating {
    width: 50px;
    font-size: 11px;
    position: absolute;
    top: 10px;
    left: 0;
    text-align: center;
}

div.comments ul li.hidden > ul {
    display: none;
}

div.comments ul li ul li.hidden > div.comment-rating {
    top: 10px;
}

div.comments ul li > ul li div.comment-rating {
    top: 25px;
}

div.comments ul li div.comment-rating-up,
div.comments ul li div.comment-rating-down {
    background: url('//reposti.com/images/glyphicons/glyphicons-halflings.png') -287px -122px;
    width: 15px;
    height: 10px;
    cursor: pointer;
    display: inline-block;
    font-size: 11px;
    margin: 0 0 0 2px;
    text-shadow: 0 1px 0 rgb(255, 255, 255);
    text-decoration: none;
    opacity: 0.5;
    position: absolute;
    top: 18px;
    left: 16px;
}
div.comments ul li div.comment-rating-up {

}
div.comments ul li div.comment-rating-down {
    background-position: -312px -122px;
    top: 46px;
}

div.comments ul li div.comment-rating-up.active,
div.comments ul li div.comment-rating-down.active {
    opacity: 1;
}

div.comments ul li > ul li div.comment-rating-up {
    top: 14px;
}
div.comments ul li > ul li div.comment-rating-down {
    top: 42px;
}

div.comments ul li.hidden > div.comment-rating-up,
div.comments ul li.hidden > div.comment-rating-down {
    display: none;
}

div.comments ul li div.comment-main {
    margin-left: 50px;
    padding: 0 45px 0 0;
}

div.comments ul li div.comment-main div.comment-toggle {
    background: url('//reposti.com/images/glyphicons/glyphicons-halflings.png') -431px -96px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    display: inline-block;
    opacity: 0.5;
    vertical-align: middle;
    padding-top: 4px;
}

div.comments ul li.hidden > div.comment-main > div.comment-toggle {
    background: url('//reposti.com/images/glyphicons/glyphicons-halflings.png') -406px -96px;
    right: 10px;
}

div.comments ul li div.comment-main div.comment-toggle:hover {
    opacity: 1;
}


div.comments ul li div.comment-main .body {
    font-size: 16px;
    line-height: 20px;
}

div.comments ul li.hidden > div.comment-main > .body {
    display: none;
}

div.comments ul li div.comment-main .body p {
    margin: 5px 0 0 0;
}
div.comments ul li div.comment-main .body blockquote {
    margin: 5px 0 0 0;
    padding: 0 0 0 13px;
    border-left: 3px solid #bbb;
}

div.comments ul li div.comment-main .body p:first-child {
    margin: 0;
}

div.comments ul li div.comment-main .body .comment-body-deleted {
    color: #bbb;
    font-style: italic;
    font-size: 13px;
}

div.comments ul li div.comment-reply,
div.comments ul li div.comment-edit,
div.comments ul li div.comment-delete,
div.comments ul li div.comment-flag {
    font-size: 11px;
    line-height: 16px;
    padding: 3px 0;
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #bbb;
    cursor: pointer;
}
div.comments ul li div.comment-reply:hover,
div.comments ul li div.comment-edit:hover,
div.comments ul li div.comment-delete:hover,
div.comments ul li div.comment-flag:hover {
    text-decoration: underline;
    color: #444;
}

div.comments ul li.hidden > div.comment-main > div.comment-reply,
div.comments ul li.hidden > div.comment-main > div.comment-edit,
div.comments ul li.hidden > div.comment-main > div.comment-delete,
div.comments ul li.hidden > div.comment-main > div.comment-flag {
    display: none;
}

div.comments ul li div.comment-link {
    font-size: 11px;
    line-height: 16px;
    padding: 3px 0;
    margin-right: 10px;
    display: inline-block;
}
div.comments ul li div.comment-link a {
    text-decoration: none;
    color: #bbb;
}
div.comments ul li div.comment-link a:hover {
    text-decoration: underline;
    color: #444;
}

div.comments ul li.hidden > div.comment-main > div.comment-link {
    display: none;
}

div.comments ul li div.comment-reply-holder {
    display: none;
}
div.comments form {

}
div.comments form button {
    display: none;
}
div.comments form label {
    display: none;
    padding: 0 0 0 10px;
}
div.comments form input {
    display: inline-block;
}
div.comments form span {
    display: inline-block;
    padding: 0 0 0 4px;
}

div.comments ul li div.comment-reply-holder form button {
    display: inline-block;
}
div.comments ul li div.comment-reply-holder form label {
    display: inline-block;
}

div.comments ul li div.comment-main .author {
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    display: inline-block;
}
div.comments ul li div.comment-main .author a {
    text-decoration: none;
}
div.comments ul li div.comment-main .author a:hover {
    text-decoration: underline;
}

div.comments ul li.hidden > div.comment-main > .author {
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    display: inline-block;
}

div.comments ul li div.comment-main .posted-on {
    font-size: 11px;
    line-height: 20px;
    font-weight: normal;
    color: #777;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

div.comments ul li.hidden > div.comment-main > .posted-on {
    font-size: 11px;
    line-height: 20px;
    font-weight: normal;
    color: #777;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

div.comments ul li form {
    display: block;
    padding: 5px 0;
    border: none;
}
div.comments ul li.hidden form {
    display: none;
}

div.comments ul li form textarea {
    width: 100%;
    height: 75px;
    display: block;
}

div.comments ul li form button {
    display: block;
}

.layout {
    position: relative;
    width: 1015px;
    margin: 0 auto;
}
.layout .col1 {
    width: 810px;
    min-height: 645px;
}
.layout .col2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 210px;
}
    .layout .col2 h4 {
        font-size: 14px;
        line-height: 20px;
        margin: 18px 10px 20px 10px;
        text-align: center;
        color: #666;
        font-weight: normal;
    }

    .layout .col2 div.flag {
        text-align: center;
        font-size: 11px;
        line-height: 16px;
        cursor: pointer;
        color: #999;
    }
    .layout .col2 div.flag:hover {
        text-decoration: underline;
        color: #944;
    }

ul.core-postings {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: 200px;
}

ul.core-postings li {
    margin: 0 6px 12px 6px;
    padding: 0;
    display: inline-table;
    box-shadow: 0 0 3px 0 rgba(50, 50, 50, .3);
    list-style: none;
    position: relative;
    vertical-align: top;
    width: 85px;
    height: auto !important;
}

ul.core-postings li img {
    display: block;
    margin: 0 auto;
    width: 85px;
    border-radius: 3px;
}


div.posting-link,
div.posting-text {

}
div.posting-link div.link-details,
div.posting-text div.text-details {
    position: relative;
    margin: 5px 20px 0 20px;
    text-align: left;
}

div.posting-link div.link-details h1,
div.posting-text div.text-details h1 {
    padding: 0 20px 5px 0;
    font-family: 'Open sans', sans-serif;
    font-weight: bold;
    color: #333;
    font-size: 22px;
    line-height: 24px;
    text-align: left;
}
div.posting-link div.link-details h1 a {
    text-decoration: none;
}
div.posting-link div.link-details h1 a:hover {
    text-decoration: underline;
}
div.posting-link div.link-details a.thumb img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 120px;
    width: 160px;
    border-radius: 3px;
}
div.posting-link div.link-details a.domain {
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
    color: #aaa;
}
div.posting-link div.link-details a.domain:hover {
    text-decoration: underline;
    color: #555;
}
div.posting-link div.attribution,
div.posting-text div.attribution {
    margin: 5px 0;
}

div.posting-link div.posting-description,
div.posting-text div.posting-description {
    text-align: left;
    font-size: 16px;
    line-height: 20px;
}
div.posting-link div.link-details a.thumb + div.link-details-inner {
    margin: 0 0 0 170px;
    min-height: 120px;
}

div.posting-text div.posting-description a {
    text-decoration: none;
}

div.posting-text div.posting-description a:hover {
    text-decoration: underline;
}

div.posting-text div.posting-description ul {
    list-style-type: square;
}

div.posting-text div.posting-description ol {
    list-style-type: decimal;
}