/*
 * Lean Slider v1.0
 * http://dev7studios.com/lean-slider
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.slider-wrapper { 
    position: relative; 
    background: transparent;
	padding: 2px;
}
.lean-slider { 
	height: 530px;
    position: relative; 
    *zoom: 1;
	overflow: hidden;
}
.lean-slider:before,
.lean-slider:after {
    content: " ";
    display: table;
}
.lean-slider:after {
    clear: both;
}
.lean-slider-slide { 
    float: left;
    margin-right: -100%;
	display: block;
    position: relative;
    opacity: 0;
	-webkit-transition: opacity 0.6s linear;
    -moz-transition: opacity 0.6s linear;
    -ms-transition: opacity 0.6s linear;
    -o-transition: opacity 0.6s linear;
    transition: opacity 0.6s linear;
}
.lean-slider-slide.current {
	display: block;
	opacity: 1;
}
.lean-slider-slide img,
.current img{ 
	display: block;
	width: 323px !important;
	-moz-box-shadow: 0 0 3px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.4);
    box-shadow: 0 0 3px rgba(0,0,0,0.4);
}
.lean-slider-slide span,
.lean-spider-slide p
{
	margin: 0px;
	margin-top: 5px;
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	font-weight: bold;
}
.lean-slider-slide a:link,
.lean-slider-slide a:visited,
.lean-slider-slide a:hover,
.lean-slider-slide a:active,
.lean-slider-slide a{
	color: white;
	display: none;
	cursor:none;
	pointer-events: none;
}
.lean-slider-slide.current a:link,
.lean-slider-slide.current a:visited,
.lean-slider-slide.current a:hover,
.lean-slider-slide.current a:active,
.lean-slider-slide.current a{
	color: white;
	display: inline;
	cursor: auto;
	pointer-events: auto;
}
#slider-direction-nav {
    position: absolute;
    left: 0;
    top: 60%;
    width: 100%;
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    opacity: 0.2;
}
.slider-wrapper:hover #slider-direction-nav {
	opacity: 1;
}
#slider-direction-nav a {
    float: left;
    display: block;
    width: 26px;
    height: 37px;
    background: url(arrows.png) no-repeat 0 0;
    text-indent: -9999px;
}
#slider-direction-nav .lean-slider-next {
    float: right;
    background-position: 100% 0;
}

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-width : 480px) {
    #slider-direction-nav,
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {	
	#slider-direction-nav,
}