body {
    margin: 0;
    padding: 0;
    line-height: 1.5em;
    overflow-x: hidden; /* Hide scrollbars */
}

.logo {
    height: 100px;
    width: 180px;
}
.logo33 {
    height: 100px;
    width: 250px;
    float: right;
}

.logo2 {
    height: 100px;
    width: 250px;
    float: left;
}

a:link {
    text-decoration: none;
}

b {
    font-size: 110%;
}

em {
    color: red;
}

#maincontainer {
    width: 100%; /*Width of main container*/
    margin: 0 auto; /*Center container on page*/
}

#topsection {
    background: #fff;
    height: auto; /*Height of top section*/
    border-bottom: 0px solid red;
}

#topsectionA {
    background: #F1F3F4;
    height: auto; /*Height of top section*/
    border-bottom: 0px solid red;
}

#topsection2 {
    background: #EEEEEE;
    height: auto; /*Height of top section*/
    border-bottom: 5px solid red;
    border-top: 1px solid #0D94CB;
}

#topsection h1 {
    margin: 0;
    padding-top: 15px;
}

#contentwrapper {
    float: left;
    width: 100%;
}

#contentcolumn {
    margin: 0 190px 0 180px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
}

#leftcolumn {
    float: left;
    width: 180px; /*Width of left column in pixel*/
    margin-left: -100%; /*Set margin to that of -(MainContainerWidth)*/
    background: #F1F3F4;


}

#rightcolumn {
    float: left;
    width: 190px; /*Width of right column*/
    margin-left: -190px; /*Set left margin to -(RightColumnWidth)*/
    background: #2D2F33;
}

#footer {
    clear: left;
    width: 100%;
    background: black;
    color: #FFF;
    text-align: center;
    padding: 4px 0;
}

#footer a {
    color: #FFFF80;
}

.innertube {
    margin: 10px; /*Margins for inner DIV inside each column (to provide padding)*/
    margin-top: 0;
}

.overlay {
    position: relative;
    display: inline-block;
    background: #fff;

}

.overlay > img {
    vertical-align: middle;

}

.overlay::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ED2027;
    opacity: 0;
    transition: .5s ease;
    cursor: pointer;

}

.overlay:hover::before {
    opacity: 0.23;
    border: 3px solid #000;
}

/*#######################ZOOM CSS*/
/*#######################ZOOM CSS*/
/*#######################ZOOM CSS*/


#container_zoom_tt img:hover {
    margin-top: 90px;
    transition: transform ease-in-out 1s;
    z-index: 99999;
    transform: scale(1.3);
}


input[type=checkbox] {
display: none;

}

.container_zoom img {
    margin: 0px;
   padding: 0px;
    transition: transform 0.25s ease;
    cursor: zoom-in;
}

input[type=checkbox]:checked ~ label > img {
    margin-top: 110px;
    transform: scale(1.4);
    cursor: zoom-out;

}















/*#######################ZOOM CSS*/
/*#######################ZOOM CSS*/
/*#######################ZOOM CSS*/
/* ####### responsive layout CSS ####### */

@media (max-width: 840px) {
    /* 1st level responsive layout break point- drop right column down*/
    #maincontainer {
        width: 100%;
    }

    #leftcolumn {

        display: none;
        /*
        margin-left: -100%;
        z-index: -9999;
        */

    }

    #rightcolumn {
        display: none;
        /*
         float: none;
         width: 100%;
         margin-left: 0;
         clear: both;
         */
    }

    #contentcolumn {
        margin-right: 0;
    }
}

@media (max-width: 600px) {


    #leftcolumn {
     display:none;
        /*
    float: none;
    width: 100%;
    clear: both;
    margin-left: 0;
    */
}

#contentcolumn {
    margin-left: 0;
}

}