/* CSS Document */
#my-glider{
	width:622px;
	height:200px;
	float:left;
	display:inline;
	overflow:hidden;
	position:relative;
	padding:0 40px;
}
div.scroller { 
	/* modify width and height of scrolling section if necessary	*/
	/*display:block;*/
	width:622px; 
	height: 200px;
	overflow: hidden;
	position:relative;
}
div.scroller div.section {
		/* modify width and height of each section as needed (should match the size of the scroller window)	*/		
	width:622px;
	height:200px;
	overflow:hidden;
	float:left;
	color:#333333;
}
div.scroller div.content {
	width: 9999px;
}
div.section .pic{
	float:left;
	display:inline;
	height:149px;
	width:149px; /* Also specified in  .stripViewer  above */
	background:url(../img/bg-gliderpic.gif) top left no-repeat;
	margin:0 20px 0 26px;
	padding:10px;
	overflow:hidden
}
div.section .pic table{
	width:149px;
	height:149px;
	vertical-align:middle;
	overflow:hidden
}
div.section .pic td{
	height:149px;
	vertical-align:middle;
	text-align:center;
}
div.section .pic img{
	width:135px;
}
div.section .text{
	float:left;
	display:inline;
	width:380px;
}
div.section .text h2{
	float:left;
	display:inline;
	width:100%;
	font-size:18px;
	color:#666;
	padding:20px 0 0 0;
}
div.section .text span{
	float:left;
	display:inline;
	width:100%;
	font-size:12px;
	color:#999;
	padding:10px 0 0 0;
	text-align:justify
}
div.section .text a.btn{
	float:right;
	display:inline;
	width: 106px;
	height:28px;
	background:url(../img/btn-seedetails.gif) top left no-repeat;
	margin:20px 0 0 0;
}

#my-glider a.next {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 200px;
	width: 40px;
	background: url("../img/arrow-left.jpg") no-repeat top right;
}
#my-glider a.prev {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	height: 200px;
	width: 40px;
	background: url("../img/arrow-right.jpg") no-repeat top left;
}
#my-glider a.next:HOVER {
	background: url("../img/arrow-left.jpg") no-repeat top left;
}
#my-glider a.prev:HOVER {
	background: url("../img/arrow-right.jpg") no-repeat top right;
}
