/*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: 200px; /*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: 200px;  /*For users with JS disabled: Height of each content*/
}

.haccordion li .hpanel {overflow: hidden; position: relative; float: left; width:300px; height:225px }
.haccordion li .hpanel .overlay { position: absolute; bottom: 20px; left: 0; width: 270px; height: 40px; padding: 5px; text-align: left; background: url(../images/overlay_black.png) repeat; }
.haccordion li .hpanel .overlay a {font-size: 13px; font-weight: bold; color: #fff; font-family: verdana}
.haccordion li .hpanel .textbottom {position: absolute; top: 10px; left: 0; padding: 0px; color: #fff; background: #000; line-height: 200%}


