/*
 * 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
 */
 
.lean-slider { 
    position: relative; 
    *zoom: 1;
}
.lean-slider:before,
.lean-slider:after {
    content: " ";
    display: table;
}
.lean-slider:after {
    clear: both;
}

.lean-slider-slide { 
    float: left;
    width: 100%;
    margin-right: -100%;
    display: none; 
}
.lean-slider-slide.current { display: block; }

.slide{
	position:relative;
}
.slidy{
	clear:both;
	margin:0 auto;
	width:1024px;
	padding:0;
	position:relative;
	text-align:right;
}
.slidetitle{
	width:100%;
	padding:0;
	margin:0 auto;
	position:absolute;
	z-index:9;
	top:80px;
}
.slidetitle h2{
	font-size:24px;
	color:#fff;
	font-weight:normal;
	width:700px;
	float:right;
	display:block;
	clear:both;
	line-height:1.2;
}
.slidetitle h3{
	font-size:15px;
	color:#fff;
	font-weight:normal;
	width:390px;
	float:right;
	display:block;
	clear:both;
	line-height:1.2;
	margin:10px 0 10px 0;
}
.slidetitle a{
	width:100px;
	height:25px;
	background:url(../images/link_bg.png) no-repeat;
	clear:both;
	display:block;
	float:right;
	color:#b4fc91;
	padding:5px 63px 0 0;
	font-size:14px;
	text-decoration:none;
}
.slidetitle a:hover{
	color:#fff;
}

/* ====================== Responsive Design =========================== */
/* ----------- 1024px ----------- */
@media only screen 
and (max-width:1024px) {
.slidy {
	width:96%;
	padding:0 2%;
}
}
