﻿/*Main Container*/
.hrzContainer {
	width:100%; /* total space for the accordion    */
}
.hrzContainer ul{
	list-style-type: none;
	margin: 0px;
	padding-left: 10px;	/* Starting point for the first item in the accordion */
}
.hrzContainer li{
	display: inline; 
	margin: 0px;   /* Internal positioning */
	padding: 0px;
}
/*Handle*/
.handle {
	float: left;
	width: 44px;         /* width of each blade */
	height: 260px;       /* heigth of each blade */
	margin-top: -5px;    /* top margin before the blade starts */   
	margin-left: -4px;   /* external space between blades */
	margin-right: -4px;  /* external space between blades */
	background:  url(../images/blade.png) no-repeat;
}
.handleOver{	
	background: url(../images/blade_glow.png) no-repeat;
}
.handleSelected{
	background: url(../images/blade_sel.png) no-repeat;
}
/*Content Container*/
.contentWrapper{
	width: 200px;
}
.contentInnerWrapper{
	text-align: justify;
	padding-top: 0px;
	padding-left: 5px;
	padding-right: 10px;
}
.contentWrapper h3{
	border-bottom: 1px solid silver;
	color: rgb(210, 161, 24);
}
/*Animation Start*/
.contentStart {
	padding-left: 0px;	
	float: left;
	width: 2px;
	height: 260px;	
	overflow: hidden;
}
/*Animation End*/
.contentEnd {
	padding-left: 24px;
	float: left;	
	width: 200px;
}
