/* === Changes nav bar with default picture background to desired color for background === */
.menu-block{
   background-color:#fcfbf7;
   background-image:url();
}

/* === Gets rid of colored bars above and below menu items, reduces dimensions to zero === */
.menu-block .divider{
   width: 0px;
   height: 0px;
}

/* === Edits alignment of logo - shifts logo left 30 pixels, specifically for a left nav === */
.menu-block .logo a img {
    position: relative;
    margin-right: 0px;
    left: -20%;
}

/* === Positions the menu items centered (and up 20px) in relation to equidistant margins (left nav) === */
.menu-block .os_menu ul {
    list-style: outside none none;
    padding: 0px;
    margin: 0px 0px 50px;
    position: relative;
    text-align: center;
    top: -5px;
    left: 0%;
}

/* === Adds drop shadow to pictures in posts === */
.post-content img {
    border-width: 0px !important;
    border-radius: 0px !important;
    border-color: #000 !important;
    box-shadow: 1px 1px 5px 2px #9E9E9E !important;
}

/* === Hides the post author and date from the post === */
.single .post-meta-top .post-author {
    float: none;
    border-left: 0px none #EEE8D2;
    margin-left: 0px;
    padding-left: 8px;
    position: relative;
    top: 0px;
    left: -45%;
}
.post-date {
visibility: hidden;
}

/* === Adds a drop shadow to index posts - thumbnails ===*/
.figure-link-w {
box-shadow: 1px 1px 5px 2px #9E9E9E !important;
}

/* === Removes pink divider bar from sidebar on 'Recent Posts' === */
.widget .widget-title::after {
    content: "";
    position: absolute;
    width: 0px;
    display: block;
    height: 0px;
    background-color: #EB856F;
    bottom: -15px;
}

/* === Sets the sidebar title size, color, position, and padding === */
.widget .widget-title {
    color: #575756;
    font-size: 22px;
    position: relative;
    margin-bottom: 10px;
}

/* === Removes the pink divider under 'Leave Reply' === */
.comment-respond .comment-reply-title::after {
    content: "";
    position: absolute;
    width: 0px;
    display: block;
    height: 0px;
    background-color: #EB856F;
    bottom: -15px;
}

/* === Changes the 'Leave a Reply' font size === */
.comment-respond .comment-reply-title {
    margin-bottom: 35px;
    position: relative;
}

.comment-respond .comment-reply-title .h3 {
    font-size: 32px;
}

/* === Hides NinjaKick Contact Form Button (was invisible but clickable when a photo in the instagram sidebar gallery was opened) === */
body:not([class*="ncf_mobile"]) .nks_cc_trigger_tabs.ncf_tab {
    top: 50% !important;
    visibility: hidden;
}