/*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: 210px; /*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: 210px;  /*For users with JS disabled: Height of each content*/
}

#hc1 li{
margin:0 3px 0 0; /*Spacing between each LI container*/
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;

}

#hc1 li .hpanel{
padding: 3px; /*Padding inside each content*/
background: #15588f;
color: #ffffff;

}

#hc1 li .hpanel a{
color: #ffffff;
text-decoration: none;

}
#hc1 li .hpanel a:hover{
color: #ffffff;
text-decoration: underline;

}

#hc1 li .hpanel img{
float:left; padding-right:8px; width:120px; height:90px;

}

#hc2 li{
margin:0 3px 0 0; /*Spacing between each LI container*/
font-size: 16px;
font-family: Arial, Helvetica, sans-serif;

}

#hc2 li .hpanel{
padding: 3px; /*Padding inside each content*/
background: #e5e5e5;
color: #000000;

}

#hc2 li .hpanel a{
color: #0678a6;
text-decoration: none;

}
#hc2 li .hpanel a:hover{
color: #0678a6;
text-decoration: underline;

}

#hc2 li .hpanel img{
float:left; padding-right:8px; width:120px; height:90px;

}
