/*Overall CSS for each Horizontal Accordion.
        Most settings should be kept as it.
        Customize each Accordion by styling each Accordion's ID attribute instead.
*/



.haccordion{
padding: 0;
}

.haccordion ul{
margin: 0;
padding: 0;
list-style: none;
overflow: hidden; /*leave as is*/
}


.haccordion li{
margin: 0;
padding: 0;
display: block; /*leave as is*/
width: 100%; /*For users with JS disabled: Width of each content*/
height: 400px; /*For users with JS disabled: Height of each content*/
overflow: hidden; /*leave as is*/
float: left; /*leave as is*/
}

.haccordion li .hpanel{
width: 100%; /*For users with JS disabled: Width of each content*/
height: 400px;  /*For users with JS disabled: Height of each content*/
}

/* My Shit   */

#hc1 li{
margin:0 0px 0 0; /*Spacing between each LI container*/
}

#hc1 li .hpanel{
padding: 0px; /*Padding inside each content*/
background: transparent;
}

.hcontent
{
        float:right;
        width:400px;
        height:397px;
        border: 1px;
        background: #1d1314;
}

.himg
{
        float:left;
        padding-right:0px;
        width:80px;
        height:400px;
}



