/* Atomic Layout Fix */
body #content,
body .site-content,
body #primary,
body .site-main,
body main {
    width: 68% !important;
    float: left !important;
    padding-right: 3% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

body #sidebar,
body .sidebar,
body #secondary,
body .widget-area,
body aside {
    width: 27% !important;
    float: right !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

#page:after,
.site:after,
body:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

.widget {
    background: #ffffff !important;
    border: 1px solid #cccccc !important;
    border-radius: 0 !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.widget .widgettitle,
.widget .widget-title,
.widget h2,
.widget h3 {
    background: #99cc00 !important;
    background: linear-gradient(to bottom, #a8d817, #8ec70a) !important;
    color: #ffffff !important;
    padding: 8px 12px 8px 35px !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: bold !important;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3) !important;
    position: relative !important;
    border: none !important;
    border-bottom: 1px solid #7da809 !important;
}

.widget .widgettitle:before,
.widget .widget-title:before,
.widget h2:before,
.widget h3:before {
    content: "📄" !important;
    position: absolute !important;
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 16px !important;
}

.widget .textwidget {
    padding: 0 !important;
}

.widget ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
}

.widget ul li {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
    list-style: none !important;
}

.widget ul li:last-child {
    border-bottom: none !important;
}

.widget ul li a {
    display: block !important;
    padding: 8px 12px 8px 28px !important;
    color: #0066cc !important;
    text-decoration: none !important;
    font-size: 13px !important;
    position: relative !important;
    background: transparent !important;
}

.widget ul li a:before {
    content: "»" !important;
    position: absolute !important;
    left: 12px !important;
    color: #666666 !important;
    font-weight: bold !important;
}

.widget ul li a:hover {
    background-color: #f5f5f5 !important;
    color: #003366 !important;
}

.widget img {
    max-width: 100% !important;
    height: auto !important;
}

#footer,
.site-footer,
footer {
    clear: both !important;
    width: 100% !important;
    float: none !important;
}

@media (max-width: 768px) {
    body #content,
    body #primary,
    body #sidebar,
    body #secondary {
        width: 100% !important;
        float: none !important;
        padding: 0 10px !important;
    }
}