/*Overall CSS for each Horizontal Accordion.
	Most settings should be kept as it.
	Customize each Accordion by styling each Accordion's ID attribute instead.
*/
*{
padding:0;
margin:0;
font-family:Arial;
font-size:11px;
}



div{
padding:0;
margin:0;
}


body{
	background-color:#FEFEFE;
	color:#6c6c6c;
	width:100%;
	margin:0 auto;
}

.header{
	width:100%;
	border:1px solid #f8f9f9;
	height:30px;
	background-image: url(imgs/bkg.gif);
	background-repeat: repeat-x;
	margin-top: 4px;
	color: #FFFFFF;
	font-size: 16px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	padding-top: 3px;
}
.wrap {
	height: 480px;
	width: 990px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

.haccordion{
padding: 0;
}

.haccordion ul{
	margin: 0 2px;
	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: 412px; /*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: 470px;  /*For users with JS disabled: Height of each content*/
}

