/*
 * jQuery FlexSlider v1.4
 * http://flex.madebymufffin.com
 *
 * Copyright 2011, Tyler Smith
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
/* Reset Styles
***********************/
 img,ol, ul, li {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
}

#container {width: 360px; height:270px;margin: 0 auto;overflow:hidden;border-radius:1px;border:1px solid #fff;}
/* FlexSlider Necessary Styles
*********************************/ 
.flexslider {width: 360px; height:270px;min-height:270px;margin: 0; padding: 0;}
.flexslider .slides li {display:none;width:360px;height:270px;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width:360px; height:270px;display: block;}

/* FlexSlider Default Theme
*********************************/
.flexslider {background: #fff; border: 0px solid #fff; position: relative; -webkit-border-radius: 1px; -moz-border-radius: 1px; -o-border-radius: 1px; border-radius: 1px;}
.flexslider .slides  li {position: relative;}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flexslider-container {position: relative;}


/* Direction Nav */
.flex-direction-nav li a {width: 52px; height: 52px; margin: -10px 0 0; display: block; background: url(img/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px;} /* set negative margin-top equal to half the height on the directional-nav for perfect vertical centering */
.flex-direction-nav li a.nextt1 {background-position: -52px 0; right: 0px;}
.flex-direction-nav li a.prevv1 {background-position: 0 0; left: 0px;}

/* Control Nav */
.flex-control-nav {margin-left: -31px; position: absolute; bottom: 10px; right: 20px;} /* set negative margin-left equal to half the width on the control-nav for perfect centering */
.flex-control-nav li {margin: 0 0 0 10px; float: left;}
.flex-control-nav li a {width: 20px; height: 19px; display: block; background: url(img/bg_control_nav.png) no-repeat 0 0; cursor: pointer; text-indent: -9999px;}
.flex-control-nav li a:hover {background-position: 0 -18px;}
.flex-control-nav li a.active {background-position: 0 -36px; cursor: default;}