/*
 *  SliderNav - A Simple Content Slider with a Navigation Bar
 *  Copyright 2010 Monjurul Dolon, http://mdolon.com/
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://devgrow.com/slidernav
 */
 

.slider {
	width: 160px;
	min-height: 220px;
	display: block;
	position: relative;
	overflow: hidden;
	height: 220px;
	margin-left: 9px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #36F;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #36F;
}
.pad {
	padding-bottom: 60px;
}
.pad img {
	border: 1px solid #FFF;
	box-shadow: rgba(0,0,1, 0.3) 3px 3px 3px;
	-moz-box-shadow: rgba(0,0,1, 0.3) 3px 3px 3px;
	-webkit-box-shadow: rgba(0,0,1, 0.3) 3px 3px 3px;
	float: left;
}
.pad span {
	display: block;
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
	position:relative;
	top: 10px;
	left: 0px;
	float: left;
	text-decoration: none;
	font-size: 14px;
	width: 58px;
	height: 42px;
	line-height: normal;
	text-align: center;
	background-color: #FFF;
	padding-top: 3px;
	padding-right: 2px;
	border: 1px solid #999;
	overflow: hidden;
}
