/*
 * jQuery FlexSlider v1.8
 * http://flex.madebymufffin.com
 *
 * Copyright 2011, Tyler Smith
 * Free to use under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
/* Browser Resets */
.flex-container a:active, .photoslider a:active {
	outline: none;
}
.slides, .flex-control-nav, .flex-direction-nav {
	margin: 0;
	padding: 0;
	list-style: none;
}
/* FlexSlider Necessary Styles
*********************************/ 
.photoslider {
	width: 100%;
	margin: 0;
	padding: 0;
}
.photoslider .slides > li {
	display: none;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
.photoslider .slides img {
	max-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
*********************************/
.photoslider {
	width: 100%;
	background: #fff;
	position: relative;
	zoom: 1;
}
.photoslider .slides {
	zoom: 1;
}
.photoslider .slides > li {
	position: relative;
}
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flex-container {
	zoom: 1;
	position: relative;
}
/* Caption style */
/* IE rgba() hack */
.flex-caption {
	background:none;
-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000, endColorstr=#4C000000);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000, endColorstr=#4C000000);
	zoom: 1;
}
.flex-caption {
	width: 96%;
	padding: 2%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .3);
	color: #fff;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .3);
	font-size: 14px;
	line-height: 18px;
}
/* Control Nav */
ol.flex-control-nav {
	position: absolute;
	width: 960px;
	left: 50%;
	top: 390px;
	margin: 0 auto 0 -480px;
	z-index: 999;
	overflow: hidden;
}
ol.flex-control-nav li {
	float: left;
	display: inline;
    /display: inline; /* IE用ハック */
	width: 12px;
	margin-right: 5px;
	zoom: 1;
	text-indent: 9999px;
}
ol.flex-control-nav li a {
	width: 12px;
	height: 12px;
	display: block;
	background: url(../img/top/dot.png) no-repeat -12px 0;
	cursor: pointer;
	zoom: 1;
	overflow: hidden;
}
ol.flex-control-nav li a:hover {
	background-position: 0 0;
}
ol.flex-control-nav li a.active {
	background-position: 0 0;
	cursor: default;
}

/*.flex-direction-nav li a {
	position: absolute;
	display: block;
	width: 23px;
	height: 42px;
	top: 190px;
	text-indent: -5000px;
	z-index: 999;
	zoom: 1;
}
.flex-direction-nav li a.next {
	right: 30px;
	background: url(../img/top/mainimg_arrow_right.png) no-repeat;
}
.flex-direction-nav li a.prev {
	left: 30px;
	background: url(../img/top/mainimg_arrow_left.png) no-repeat;
}*/