/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}
.slides,
.flex-control-nav,
.flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider { position:relative;margin: 0; padding: 0; background:#e9e9e9;}
.flexslider img.SliderTxt{ position:absolute; top:50px; left:40px; z-index:99999;}

.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {width: 100%; display: block;}
.flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .slides element */
.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;} 
html[xmlns] .slides {display: block;} 
* html .slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {display: block;}

/* FlexSlider Default Theme*/
.flexslider {
	position: relative;
	overflow:visible;
	height:646px;
	zoom: 1;
	margin-bottom:15px;/* 下のメニューの高さと揃える */
}


.flex-viewport {
	max-height: 2000px;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	transition: all 1s ease;
	border-top:4px solid #fff; /* 外枠の設定 */
	border-right:4px solid #fff;
	border-left:4px solid #fff;
	border-bottom:4px solid #fff;
}

.loading.slider  .flex-viewport {
	max-height: 300px;
}
.flexslider .slides {
	zoom: 1;
}
.carousel li {
	margin-right: 5px
}
/* Control Nav */
.flex-control-nav {/* スライド下部の設定 */
	line-height: 100%;
	font-size:0;
	width: 100%;
	position: absolute;
	text-align: center;
}

.flex-control-nav li {
	font-size:0;
	margin: 0 7px;
	display: inline-block;
	zoom: 1;
	*display: inline;
}

.flex-control-paging li a {/* 下部ポイントの設定 */
	margin-top:12px;
	width: 25px;
	height: 12px;
	display: block;
	background: #000000;/* 下部ポイントの色 */
	cursor: pointer;
	text-indent: -9999px;
}

.flex-control-paging li a:hover {/* 下部ポイントの選択中の色 */
	background: #559124;
}
.flex-control-paging li a.flex-active {/* 下部ポイントの選択中の色 */
	background: #559124;
	cursor: default;
}
.flex-prev {/* 左側ボタンの設定 */
	background:url(../../images/slider_arrow_prev.gif) no-repeat left top;
	opacity: 0.9;/* 透明度 */
	height: 70px;
	width: 30px;
	position: absolute;
	left: 0px;
	bottom: 40%;
	text-indent: -9999px;
}
.flex-next {/* 右側ボタンの設定 */
	background:url(../../images/slider_arrow_next.gif) no-repeat left top;
	opacity: 0.9;/* 透明度 */
	height: 70px;
	width: 30px;
	position: absolute;
	right: 0px;
	bottom: 40%;
	text-indent: -9999px;
}
