/* 
Theme Name: DW-Cryosis
Author: DesignWicked.com
Author URI: https://www.designwicked.com
Description: DW-Cryosis features several optional sidebars on the left, and on the right, as well as, center content blocks(5 left side, 5 right side, 5 center and a top and bottombox) and 2 header menus, one is a part of the design. Edit the marquee in the Theme Editor, inside the header.php file.
Version: 1.5
Requires at least: 5.2
Tested up to: 5.6
Requires PHP: 7.0
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl.html
Tags: blog, three-columns, two-columns, one-column, left-sidebar, right-sidebar, custom-menu, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
Text Domain: dw-cryosis
*/


/*

Contents:
0) Explicit reset
1) Body setup
2) Header & footer setup
3) Common elements
4) Widget elements
5) Content
5a) Pre-content
5b) Content elements
5c) Post-content

*/


/* 0) Explicit reset */

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
div,
font,
img,
small,
strike,
sub,
sup,
li,
fieldset,
figcaption,
form,
main,
label,
legend,
button,
table,
caption,
tr,
th,
td {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
}

div,
nav,
footer,
main {
    display: block;
}


/* 1) Body setup */

.marquee {
    height: 30px;
    overflow: hidden;
    position: relative;
    color: #810000;
    padding-top: 3px;
    text-shadow: 0px 0px 1px black, 0px 0px 2px black, 0px 0px 3px black;
}

.marquee p {
    position: absolute;
    width: 285px;
    height: 62px;
    margin: 0;
    line-height: 30px;
    text-align: bottom;
    font-weight: bold;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-left 2s linear infinite;
    -webkit-animation: scroll-left 2s linear infinite;
    animation: scroll-left 10s linear infinite;
}

@-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

.header-footer-bg {
    position: relative;
}

.header-footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/HD/hback.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 392px;
}

.header-footer-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(images/FT/fback.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 224px;
    z-index: -1;
}

body {
    margin: auto;
    background-color: #1e1e1e;
    font-family: 'Oswald', 'Lucida Grande', 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
    font-size: 17px;
    color: #adadad;
}

#container {
    padding: none;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: left;
}

#wrapper {
    width: 87%;
    padding-left: 0px;
    margin: auto;
}

#responsive {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 0 16px;
}

#widgetcorral {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
}

#topwidget {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
}

#content {
    padding: 0px;
    width: 400px;
    flex-grow: 1;
}

main#main {
    border-radius: 0px;
    padding: none;
    display: block;
    overflow: hidden;
    /* floating elements won't stick out */
}


/* 2) Header & footer setup */

.tophigh {
    padding-left: 16px;
    text-align: center;
}

.tophigh:hover,
.tophigh:focus {
    color: #fff;
}

#skip {
    position: relative;
    z-index: 99;
}

.tab-shortcut {
    position: absolute;
    top: -999px;
    background: #fafafa;
    padding: 20px;
}

.tab-shortcut:focus {
    top: 0;
    text-decoration: none;
}


/*---THEME MAIN HEADER DESIGN NAV---*/

div.hdmainnav ul {
    max-width: 365px;
    height: 62px;
    font-size: 16px;
    padding-left: 20px;
    margin: 18px 0px 0px 0px;
    display: flex;
    justify-content: space-evenly;
    overflow: hidden;
    list-style-type: none;
}

div.hdmainnav li {
    padding: 0px 15px 0px 0px;
}

div.hdmainnav a {
    color: #858585;
    text-shadow: 0px 0px 2px #000000, 0px 0px 4px #000000, 0px 0px 6px #1f0000;
}

div.hdmainnav a:hover {
    color: #530000;
    text-decoration: underline;
    text-shadow: 0px 0px 1px #000000, 0px 0px 3px #000000, 0px 0px 4px #1f0000, 0px 0px 5px #380000, 0px 0px 6px #5e0000, 0px 0px 8px #770000;
}

div.hdmainnav a:focus {
    color: #ffffff;
    background-color: rgb(105, 0, 21);
    padding: 0px;
}

div.hdmainnav .sub-menu {
    left: -9999%;
    position: absolute;
    border-width: 0 1px 1px;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0;
    margin: 0;
    width: max-content;
    z-index: 9999;
}

div.hdmainnav .sub-menu li {
    padding-left: 5px;
    float: none;
    z-index: 9999;
}

div.hdmainnav li:hover>.sub-menu,
div.hdmainnav li:focus-within>.sub-menu {
    left: unset;
}

div.hdmainnav li.menu-item-has-children::before {
    content: " \25be";
}


/*---END MAIN NAV---*/

#header {
    width: 75%;
    margin: auto;
    min-width: 1271px;
    color: #fff;
}

#headerlogo {
    /*header logo*/
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    height: 220px;
    width: 546px;
    z-index: 999;
}

#headerlogo img {
    object-fit: contain;
    max-height: 220px;
    max-width: 546px;
}

#headerlogo a:hover,
#headerlogo a:focus,
#headerlogo a:active {
    color: #ffffff;
    text-decoration: none;
}

.custom-logo {
    min-height: inherit;
}

#blog-name {
    color: #636363;
    font-size: 3.25em;
    text-shadow: 0px 0px 1px #000000, 0px 0px 3px #000000, 0px 0px 4px #1f0000, 0px 0px 5px #380000, 0px 0px 6px #5e0000, 0px 0px 8px #770000;
}

#blog-tagline {
    color: #530000;
    font-size: 18px;
    text-shadow: 0px 0px 1px #000000, 0px 0px 3px #000000, 0px 0px 4px #1f0000;
}

#header-menu {
    margin: 5px 0px 15px 0px;
    padding: 5px;
    font-size: 14px;
    min-height: 16px;
    height: min-content;
    width: auto;
    background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgb(24, 0, 0) 100%);
    border-width: 1px;
    box-sizing: border-box;
    box-shadow: 0px 0px 3px #000, 0px 0px 4px #000;
    border-radius: 4px;
}

#header-menu-content {
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 16px;
}

#header-menu-content li {
    margin: 0 10px;
    float: left;
    list-style: none;
}

#header-menu-content a {
    color: #777777;
    text-decoration: none;
    text-shadow: 0px 0px 3px #000, 0px 0px 4px #000;
}

#header-menu-content a:hover,
#header-menu-content a:active,
#header-menu-content a:focus {
    color: #878787;
    text-decoration: underline;
}

#header-menu-content .sub-menu {
    left: -9999%;
    position: absolute;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(68, 68, 68) 100%);
    border-width: 0 1px 1px;
    box-sizing: border-box;
    box-shadow: 0px 0px 3px #000;
    border-radius: 4px;
    padding: 0;
    margin: 0;
    width: max-content;
}

#header-menu-content .sub-menu li {
    float: none;
}

#header-menu-content li:hover>.sub-menu,
#header-menu-content li:focus-within>.sub-menu {
    left: unset;
}

#header-menu-content li.menu-item-has-children::after {
    content: " \25be";
}

#header-menu-content li.menu-item-has-children:hover::after,
#header-menu-content li.menu-item-has-children:focus-within::after {
    content: " \25b4";
}

#footer {
    width: 75%;
    min-width: 1271px;
    margin: auto;
}

#footer-content {
    font-size: 12px;
    padding: 0px;
    margin: 2px 0px 0px 0px;
    text-align: center;
}

#footer-content a:hover,
#footer-content a:active,
#footer-content a:focus {
    color: #fff;
}


/* 3) Common elements */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.8em;
}

h3 {
    font-size: 1.6em;
}

h4 {
    font-size: 1.4em;
}

h5 {
    font-size: 1.2em;
}

h6 {
    font-size: 1em;
}

a {
    color: #8b0000;
}

a:hover {
    color: #fff;
    text-decoration: underline;
    background-color: transparent !important;
}

a:link,
a:focus {
    color: #878787;
    font-weight: bold;
    text-decoration: none;
}

blockquote {
    border: solid #929292;
    border-width: 0 0 0 4px;
    padding: 0 10px;
    margin: 0 0 0 10px;
    font-style: italic;
}

button,
input,
select {
    border: 1px solid #2e0000;
    color: #000000;
}

button,
select,
input[type=button],
input[type=submit],
input[type=reset] {
    border-radius: 4px;
    background: linear-gradient(0deg, rgba(46, 46, 46, 1) 0%, rgb(156, 156, 156) 100%);
}

code {
    display: inline-block;
    vertical-align: middle;
    padding: 2px 10px 4px;
    background: #5c5c5c;
    border-top: 2px solid;
    overflow-x: auto;
    color: #ffffff;
}

p {
    line-height: 1.4;
    margin: 1em 0;
}

pre {
    overflow-x: auto;
}

textarea {
    font-family: Arial, Verdana, Helvetica;
    border: 1px solid #d6d6d6;
    padding: 2px 5px 1px;
    width: 250px;
    height: 100px;
    background-color: rgb(87, 87, 87);
}

input {
    max-width: 100%;
}

.alignnone {
    margin: 6px 0;
}

.alignleft {
    float: left;
    margin: 6px 6px 6px 0;
}

.alignright {
    float: right;
    margin: 6px 0 6px 6px;
}

.aligncenter {
    display: block;
    margin: 6px auto;
}

#content .wp-block-button:not(.is-style-outline) .wp-block-button__link,
#content .wp-block-file__button {
    text-decoration: none;
    font-weight: normal;
    color: #fff;
}

.is-style-squared .wp-block-button__link {
    border-radius: 0;
}

.screen-reader-text {
    position: absolute;
    left: -9999%;
}

.wp-caption .wp-caption-text {
    margin: 0;
}

.gallery-caption {
    box-sizing: border-box;
    padding: 3px;
    max-width: 100%;
}


/* 4) Widget elements */


/*----- Bottom Bar -----*/

.botblk {
    color: #797979;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 0.9em;
    width: 100%;
    margin: auto;
    padding: 15px 15px 15px 15px;
    border: none;
    background: linear-gradient(0deg, rgba(17, 17, 17, 1) 65%, rgb(43, 43, 43) 100%);
    box-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 5px #000;
    border-radius: 4px;
    box-sizing: border-box;
    list-style: none;
    text-align: center;
}

.botblk li {
    margin: 10px 20px 10px 20px;
    border: 1px solid;
    border-color: #1e1e1e;
    border-radius: 6px;
    box-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 5px #000;
    display: inline-block;
}

.botblk h2 {
    font-size: 16px;
    line-height: 29px;
    min-width: 194px;
    min-height: 33px;
    height: min-content;
    font-weight: bold;
    color: #686868;
    text-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 4px #270000, 0px 0px 6px #ff0000;
    box-sizing: border-box;
    text-align: center;
}

.botblk img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*----- Top Bar -----*/

.topblk {
    color: #797979;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 0.9em;
    width: 100%;
    margin: auto;
    padding: 5px 10px 5px 10px;
    box-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 5px #000;
    background: linear-gradient(0deg, rgb(32, 0, 0) 0%, rgb(20, 20, 20) 10%, rgb(20, 20, 20) 50%, rgb(20, 20, 20) 90%, rgb(32, 0, 0) 100%);
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    list-style: none;
    text-align: center;
}

.topblk li {
    margin: 10px 20px 10px 20px;
    border: 1px solid;
    border-color: #1e1e1e;
    border-radius: 6px;
    box-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 5px #000;
    display: inline-block;
}

.topblk h2 {
    font-size: 16px;
    line-height: 29px;
    min-width: 194px;
    min-height: 33px;
    height: min-content;
    font-weight: bold;
    color: #686868;
    text-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 4px #270000, 0px 0px 6px #ff0000;
    box-sizing: border-box;
    text-align: center;
}

.topblk img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.topblk a {
    text-decoration: none;
    color: #838383;
    font-weight: normal;
}

.topblk a:hover {
    color: #530000;
    text-decoration: underline;
}

.topblk a:active,
.topblk a:focus {
    color: #ffffff;
}


/*----- Center Block -----*/

.centerblk {
    color: #797979;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 0.9em;
    margin: auto;
    padding: 5px 5px 5px 5px;
    border: none;
    box-sizing: border-box;
    list-style: none;
}

.centerblk h2 {
    font-size: 16px;
    line-height: 29px;
    min-width: 194px;
    min-height: 33px;
    height: min-content;
    font-weight: bold;
    color: #686868;
    text-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 4px #270000, 0px 0px 6px #ff0000;
    box-shadow: 0px 0px 1px #000, 0px 0px 2px #000;
    background: linear-gradient(0deg, rgba(17, 17, 17, 1) 0%, rgb(43, 43, 43) 100%);
    border-radius: 4px;
    box-sizing: border-box;
    text-align: center;
}

.centerblk img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.centerblk a {
    text-decoration: none;
    color: #838383;
    font-weight: normal;
}

.centerblk a:hover {
    color: #530000;
    text-decoration: underline;
}

.centerblk a:active,
.centerblk a:focus {
    color: #ffffff;
}


/*----- SIDE BLOCKS -----*/

.sidebar {
    color: rgb(148, 148, 148);
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
    font-size: 0.9em;
    margin: none;
    padding: 1px 0px 1px 40px;
    border: none;
    box-sizing: border-box;
    width: 194px;
}

.sidebar img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.sidebar h2 {
    font-size: 16px;
    line-height: 29px;
    width: 194px;
    min-width: 194px;
    min-height: 33px;
    height: min-content;
    margin: 0px 0px 10px -16px;
    padding: 2px 0px 0px 35px;
    font-weight: bold;
    color: #686868;
    text-shadow: 0px 0px 1px #000, 0px 0px 2px #000, 0px 0px 4px #270000, 0px 0px 6px #ff0000;
    background-image: url(images/blktitle.png);
    box-sizing: border-box;
}

.sidebar h2 a {
    font-weight: bold;
    color: rgb(119, 119, 119);
}

.sidebar li {
    list-style: none;
    padding: 2px 0 30px;
}

.sidebar li li {
    padding: 2px 0;
}

.sidebar li li::before {
    content: "\bb  ";
}

.sidebar li li li {
    padding: 3px 0 2px 10px;
}

.sidebar li li li::before {
    content: "\21b3  ";
}

.sidebar ul {
    margin: 5px;
    padding: 0;
}

.sidebar ul ul {
    margin: 2px 0 0;
}

.sidebar ul ul ul {
    border-top: 1px dotted #474747;
    margin-bottom: -3px;
}

.sidebar a {
    text-decoration: none;
    color: #838383;
    font-weight: normal;
}

.sidebar a:hover {
    color: #530000;
    text-decoration: underline;
}

.sidebar a:active,
.sidebar a:focus {
    color: #ffffff;
}


/* 5) Content */

.postnav {
    font-size: 15px;
    padding-top: 10px;
}

#index-type {
    color: #878787;
    font-size: 25px;
    margin: 0px 0px 30px 0px;
    background: linear-gradient(0deg, rgb(27, 27, 27) 0%, rgb(80, 80, 80) 100%);
    box-shadow: 0px 0px 1px #000000, 0px 0px 3px #000000, 0px 0px 6px #000000;
    border-color: #ececec;
    border: 1px #2e2e2e solid;
    border-radius: 4px;
    text-shadow: 0px 0px 6px #000000, 0px 0px 4px #000000, 0px 0px 2px #000000;
    text-align: center;
}

.pcontent {
    max-width: 75%;
    margin: 10px;
    padding: 5px 5px 5px 10px;
    box-shadow: 0px 0px 1px #000000, 0px 0px 3px #000000, 0px 0px 5px #000000;
    border: 1px #380000 solid;
    border-radius: 4px;
    background: #474747;
}

.pcontent a:link {
    text-decoration: underline;
}

.hentry {
    margin: 0px 0px 60px 0px;
    clear: both;
}

.sticky {
    margin: 14px -1px;
    padding: 15px;
    border-radius: 4px;
    background: linear-gradient(0deg, rgb(0, 0, 0) 80%, rgb(80, 80, 80) 100%);
    box-shadow: 0px 0px 1px #000000, 0px 0px 3px #000000, 0px 0px 5px #000000;
}


/* 5a) Pre-content */

.title {
    font-weight: normal;
}

.title a:link {
    text-decoration: underline;
    font-size: 16px;
    line-height: 29px;
    min-height: 31px;
    height: min-content;
    margin: 0px 0px 10px 10px;
    padding: 0 9px;
    font-weight: bold;
    color: #630000;
    background: url(images/articletitle.png);
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0px 1px 3px #000000;
}

.title a:hover,
.title a:focus {
    /*post title links*/
    text-decoration: underline;
    font-size: 16px;
    line-height: 29px;
    min-height: 31px;
    height: min-content;
    margin: 0px 0px 10px 10px;
    padding: 0 9px;
    font-weight: bold;
    color: #878787;
    background: url(images/articletitle.png);
    border-radius: 4px;
    border: 1px #000 solid;
    box-sizing: border-box;
    box-shadow: 0px 1px 3px #000000;
}

.meta {
    color: #c2c2c2;
    width: 80%;
    text-align: right;
    font-size: .9em;
    padding: 5px;
    margin: 5px 10px 5px auto;
    border: 1px dotted;
    border-radius: 4px;
}

.meta a {
    color: #690000;
    text-decoration: underline;
}

.meta a:hover {
    color: #d1d1d1;
    text-decoration: underline;
}


/* 5b) Content elements */

.hentry *,
.sidebar * {
    max-width: 100%;
    /* prevent elements from overflowing content */
}

.hentry img,
.sidebar img {
    height: auto;
}

#storybreak {
    background-color: #222222;
    margin: 0px 3px 20px 3px;
    padding: 10px;
    border-radius: 4px;
    clear: both;
    box-shadow: inset 0px 0px 1px #000, inset 0px 0px 2px #000, inset 0px 0px 4px #000, 0px 0px 1px #000, 0px 0px 3px #000, 0px 0px 5px #000;
}


/* 5c) Post-content */

.post-nav-links {
    clear: both;
}

#continuelink {
    text-align: right;
    text-decoration: underline;
}

#continuelink a:hover {
    color: #fff;
    text-decoration: underline;
}

#continuelink::before {
    content: "\bb  ";
}

.readmore {
    padding: 5px;
}

.readmore::before {
    content: "\bb  ";
}

.comment-body {
    padding: 7px;
    background-color: rgb(36, 36, 36);
    border-radius: 4px;
    border: 1px solid;
    border-color: rgb(65, 0, 0);
}

#comments {
    color: #800000;
    margin: 5px;
    padding: 10px;
    border-radius: 4px;
    clear: both;
    box-shadow: 0px 0px 3px #000;
    text-shadow: 0px 0px 1px #000000, 0px 0px 3px #000000, 0px 0px 5px #000000;
}

#comments a {
    text-decoration: underline;
}

#comments.pagecomments {
    border-radius: 0 0 6px 6px;
}

.comment-feed-link {
    margin: 0 10px 10px;
}

.comment-feed-link a {
    text-decoration: none;
}

.commentlist {
    margin: 3px;
    padding: 0;
}

.comment,
.trackback,
.pingback {
    list-style: none;
    padding: 10px;
    border-radius: 4px;
    margin: 16px 0;
}

.comment-meta a,
.comment-author a {
    text-decoration: none;
}

#comments a:visited {
    color: #555;
}

.avatar {
    text-align: center;
    vertical-align: text-top;
}

.bypostauthor {
    border-color: #404040;
}

.reply a {
    text-decoration: none;
}

#comments .children {
    padding: 0;
}

.comment-respond a {
    text-decoration: none;
}

.comment-form-comment textarea {
    width: 100%;
    color: #ffffff;
    box-sizing: border-box;
}

#submit {
    font-size: 1.4em;
    color: #000000;
    padding: 6px;
    border: 1px solid #bfbfbf;
    border-radius: 6px;
}

#content #submit:hover,
#content #submit:focus,
#content #submit:active {
    text-decoration: underline;
    border: 1px solid #c5c5c5;
}

.pagination,
.post-navigation {
    padding: 0 6px;
    border-radius: 0 0 6px 6px;
}

.pagination {
    text-align: center;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    clear: both;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active {
    text-decoration: underline;
    color: #000;
}

.post-navigation .nav-next {
    text-align: right;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    word-break: break-all;
    word-break: break-word;
}


/*---background for the blocks and whole body- ALSO SIDEBARS --*/

#main-body {
    position: relative;
    width: 75%;
    min-width: 1271px;
    margin: auto;
    background: #111111;
    /* height: 800px; */
    /**
	 * ? The "padding" below may look like I have made a typo and that the padding should match on both sides,
	 * ? But, Because the right side repeat image is a smaller the width than the left side, you have to adjust the padding to compensate.
	 */
    /*padding: 0 60px 0 77px;*/
    display: flex;
    justify-content: space-between;
}

#main-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/sbl.png);
    background-repeat: repeat-y;
    width: 89px;
    height: 100%;
}

#main-body::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/sbr.png);
    background-repeat: repeat-y;
    width: 89px;
    height: 100%;
}


/** ------------------------------------------Header section starts------------------------------------------*/

.hd-body {
    height: 392px;
    margin: auto;
}

.hd-row1 {
    position: relative;
    height: 47px;
}

.hd-row1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/HD/r1.png);
    background-repeat: no-repeat;
    width: 640px;
    height: 47px;
    height: 100%;
    z-index: 10;
}

.hd-row1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/HD/hd_04.png);
    background-repeat: no-repeat;
    width: 623px;
    height: 47px;
    height: 100%;
}

.hd-row1-inner {
    content: '';
    top: 0;
    left: 640px;
    right: 623px;
    background: url(images/HD/ths.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 47px;
}


/*---- ROW 1 END----*/

.hd-row2 {
    position: relative;
    height: 220px;
}

.hd-row2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/HD/r2.png);
    background-repeat: no-repeat;
    width: 94px;
    height: 220px;
    height: 100%;
    z-index: 10;
}

.hd-row2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/HD/hd_10.png);
    background-repeat: no-repeat;
    width: 94px;
    height: 220px;
    height: 100%;
}

.hd-row2-inner-1 {
    position: absolute;
    top: 0;
    left: 94px;
    background: url(images/HD/logo.png);
    background-repeat: no-repeat;
    width: 546px;
    height: 220px;
    z-index: 10;
}

.hd-row2-inner-2 {
    content: '';
    top: 0;
    left: 640px;
    right: 623px;
    background: url(images/HD/mhts.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 220px;
}

.hd-row2-inner-3 {
    position: absolute;
    top: 0;
    right: 94px;
    background: url(images/HD/logo2.png);
    background-repeat: no-repeat;
    width: 529px;
    height: 220px;
}


/*---- ROW 2 END----*/

.hd-row3 {
    position: relative;
    height: 35px;
}

.hd-row3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(images/HD/r3.png);
    background-repeat: no-repeat;
    width: 640px;
    height: 35px;
    height: 100%;
    z-index: 10;
}

.hd-row3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(images/HD/hd_13.png);
    background-repeat: no-repeat;
    width: 623px;
    height: 35px;
    height: 100%;
}

.hd-row3-inner {
    content: '';
    top: 0;
    left: 640px;
    right: 623px;
    background: url(images/HD/mhbs.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 35px;
}


/*----------- row 3 ends ---------- */

.hd-row4 {
    position: relative;
    height: 62px;
}

.hd-row4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/HD/r4.png);
    background-repeat: no-repeat;
    width: 89px;
    height: 62px;
    height: 100%;
    z-index: 10;
}

.hd-row4::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/HD/hd_20.png);
    background-repeat: no-repeat;
    width: 97px;
    height: 62px;
    height: 100%;
}

.hd-row4-inner-1 {
    position: absolute;
    top: 0;
    left: 89px;
    background: url(images/HD/nav.png);
    background-repeat: no-repeat;
    width: 365px;
    height: 62px;
}

.hd-row4-inner-2 {
    position: absolute;
    top: 0;
    left: 454px;
    background: url(images/HD/hd_16.png);
    background-repeat: no-repeat;
    width: 186px;
    height: 62px;
}

.hd-row4-inner-3 {
    content: '';
    top: 0;
    left: 640px;
    right: 623px;
    background: url(images/HD/mhnavs.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 62px;
}

.hd-row4-inner-4 {
    position: absolute;
    top: 0;
    right: 382px;
    background: url(images/HD/hd_18.png);
    background-repeat: no-repeat;
    width: 241px;
    height: 62px;
}

.hd-row4-inner-5 {
    position: absolute;
    top: 0;
    right: 97px;
    background: url(images/HD/marq.png);
    background-repeat: no-repeat;
    width: 285px;
    height: 62px;
}


/*---- ROW 4 END----*/

.hd-row5 {
    position: relative;
    height: 28px;
}

.hd-row5::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(images/HD/hd_21.png);
    background-repeat: no-repeat;
    width: 640px;
    height: 28px;
    height: 100%;
    z-index: 10;
}

.hd-row5::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(images/HD/hd_23.png);
    background-repeat: no-repeat;
    width: 623px;
    height: 35px;
    height: 100%;
}

.hd-row5-inner {
    content: '';
    top: 0;
    left: 640px;
    right: 623px;
    background: url(images/HD/hbs.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 28px;
}


/** ------------------------------------------Header section ends------------------------------------------*/


/** ------------------------------------------blocks 1 section starts------------------------------------------*/

.side-blocks {
    height: 100%;
    width: 252px;
}

.block-top {
    position: relative;
    background: url(images/BLK/blk_26.png);
    background-repeat: no-repeat;
    padding: 50px 0px 0px 10px;
    text-align: center;
    width: 252px;
    height: 51px;
}

.block-content {
    position: relative;
    background: url(images/BLK/blkcon.png);
    background-repeat: repeat-y;
    width: 252px;
    height: 100%;
}

.block-bottom {
    position: relative;
    background: url(images/BLK/blk_33.png);
    background-repeat: no-repeat;
    width: 252px;
    height: 89px;
}


/** ------------------------------------------blocks 1 section ends------------------------------------------*/


/** ------------------------------------------blocks 2 section starts------------------------------------------*/

.side-blocks2 {
    height: 100%;
    width: 252px;
}

.block2-top {
    position: relative;
    background: url(images/BLK2/blk_26.png);
    background-repeat: no-repeat;
    padding: 50px 0px 0px 10px;
    text-align: center;
    width: 252px;
    height: 51px;
}

.block2-content {
    position: relative;
    background: url(images/BLK2/blkcon.png);
    background-repeat: repeat-y;
    width: 252px;
    height: 100%;
}

.block2-bottom {
    position: relative;
    background: url(images/BLK2/blk_33.png);
    background-repeat: no-repeat;
    width: 252px;
    height: 89px;
}


/** ------------------------------------------blocks 2 section ends------------------------------------------*/


/** ------------------------------------------content blocks section starts------------------------------------------*/

.center-content {
    width: 100%;
}

.content-pos-1 {
    position: relative;
    height: 28px;
    padding: 0 29px;
}

.content-pos-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/TBL/content_27.png);
    background-repeat: no-repeat;
    width: 29px;
    height: 28px;
}

.content-pos-1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/TBL/content_30.png);
    background-repeat: no-repeat;
    width: 29px;
    height: 28px;
}

.content-pos-1-inner {
    background: url(images/TBL/tblts.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 28px;
}

.content-pos-2 {
    position: relative;
    padding: 0 10px;
    /* height: 41px; */
}

.content-pos-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/TBL/tblsbl.png);
    background-repeat: repeat-y;
    width: 29px;
    height: 100%;
}

.content-pos-2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/TBL/tblsbr.png);
    background-repeat: repeat-y;
    width: 29px;
    height: 100%;
}

.content-pos-2-inner {
    background: url(images/TBL/tblcon.png);
    width: 100%;
    /*height: 100%;*/
    padding: 10px 35px;
}

.content-pos-3 {
    position: relative;
    padding: 0 29px;
    height: 29px;
}

.content-pos-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/TBL/content_43.png);
    background-repeat: no-repeat;
    width: 29px;
    height: 28px;
}

.content-pos-3::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/TBL/content_45.png);
    background-repeat: no-repeat;
    width: 29px;
    height: 28px;
}

.content-pos-3-inner {
    background: url(images/TBL/tblbs.png);
    width: 100%;
    height: 28px;
}


/** ------------------------------------------content blocks section ends------------------------------------------*/


/** ------------------------------------------footer section starts------------------------------------------*/

.footer-background {
    /* background: url(../images/FOOTER/footerback.png); */
    /* background-repeat: repeat-x; */
    height: 224px;
}

.ft-row1 {
    position: relative;
    height: 106px;
}

.ft-row1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/FT/fr1.png);
    background-repeat: no-repeat;
    width: 680px;
    height: 106px;
    height: 100%;
}

.ft-row1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/FT/ft_33.png);
    background-repeat: no-repeat;
    width: 573px;
    height: 106px;
    height: 100%;
}

.ft-row1-inner {
    content: '';
    top: 0;
    left: 680px;
    right: 573px;
    background: url(images/FT/fts.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 106px;
}


/** -------------- FT ROW 1 ENDS ----------------**/

.ft-row2 {
    position: relative;
    height: 44px;
}

.ft-row2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/FT/fr2.png);
    background-repeat: no-repeat;
    width: 680px;
    height: 44px;
    height: 100%;
}

.ft-row2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/FT/ft_38.png);
    background-repeat: no-repeat;
    width: 82px;
    height: 44px;
    height: 100%;
}

.ft-row2-inner-1 {
    content: '';
    top: 0;
    left: 680px;
    right: 573px;
    background: url(images/FT/mfts.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 44px;
}

.ft-row2-inner-2 {
    position: absolute;
    top: 0;
    right: 146px;
    background: url(images/FT/ft_36.png);
    background-repeat: no-repeat;
    width: 427px;
    height: 44px;
}

.ft-row2-inner-3 {
    position: absolute;
    top: 0;
    right: 82px;
    background: url(images/FT/topbutton.png);
    background-repeat: no-repeat;
    width: 64px;
    height: 44px;
}


/*---- FT ROW 2 END----*/

.ft-row3 {
    position: relative;
    height: 44px;
}

.ft-row3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/FT/fr3.png);
    background-repeat: no-repeat;
    width: 108px;
    height: 44px;
    height: 100%;
}

.ft-row3::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/FT/ft_45.png);
    background-repeat: no-repeat;
    width: 104px;
    height: 44px;
    height: 100%;
}

.ft-row3-inner-1 {
    position: absolute;
    top: 0;
    left: 108px;
    background: url(images/FT/scrollcontent.png);
    background-repeat: no-repeat;
    width: 436px;
    height: 44px;
}

.ft-row3-inner-2 {
    position: absolute;
    top: 0;
    left: 544px;
    background: url(images/FT/ft_41.png);
    background-repeat: no-repeat;
    width: 136px;
    height: 44px;
}

.ft-row3-inner-3 {
    content: '';
    top: 0;
    left: 680px;
    right: 573px;
    background: url(images/FT/mfbs.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 44px;
}

.ft-row3-inner-4 {
    position: absolute;
    top: 0;
    right: 382px;
    background: url(images/FT/ft_43.png);
    background-repeat: no-repeat;
    width: 191px;
    height: 44px;
}

.ft-row3-inner-5 {
    position: absolute;
    top: 0;
    right: 104px;
    background: url(images/FT/copyright.png);
    background-repeat: no-repeat;
    width: 278px;
    height: 44px;
}


/*---- FT ROW 3 END----*/

.ft-row4 {
    position: relative;
    height: 30px;
}

.ft-row4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(images/FT/fr4.png);
    background-repeat: no-repeat;
    width: 680px;
    height: 30px;
    height: 100%;
}

.ft-row4::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    background: url(images/FT/ft_48.png);
    background-repeat: no-repeat;
    width: 573px;
    height: 30px;
    height: 100%;
}

.ft-row4-inner {
    content: '';
    top: 0;
    left: 680px;
    right: 573px;
    background: url(images/FT/fbs.png);
    background-repeat: repeat-x;
    width: 100%;
    height: 30px;
}


/** ------------------------------------------footer section ends------------------------------------------*/