/*Overall CSS for each Horizontal Accordion.
	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: 150px; /*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: 150px;  /*For users with JS disabled: Height of each content*/
}


/*CSS for example Accordion #hc1*/

#hc1 {width:645px; height:165px; border:0px dotted #333333;}

#hc1 li{
	width:350px;
	height:150px;
	margin:5px 5px 0px 0px; /*Spacing between each LI container*/
}

#hc1 li .hpanel{
	width:350px;
	padding: 5px; /*Padding inside each content*/
	margin: 0px;
}

#hc1 li .hpanel table{
	width:310px;
	height:150px;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
	position:relative;
	float:right;
	overflow:hidden;
}

#hc1 li .hpanel table td{
	border:1px dotted #999999;
}
/*******************************/
