﻿@charset "utf-8";

/* =======================================

	CommonElements

======================================= */
body {
	overflow-y: scroll;
}
*html body {overflow-y: auto;} /* IE6 */
*:first-child+html body {overflow-y: auto;} /* IE7 */


#container {
	width: 100%;
	text-align: center;
}

/* .listCover
------------------------- */
.listCover {
	margin: 0 auto;
	text-align: center;
}

/* .listItem
------------------------- */
.listCover .listItem {
	padding: 5px 0;
	text-align: center;
	display: inline-block;
	*display: inline;
	*zoom: 1;
	cursor: pointer;
}
.listCover .listItem img {
	width: 155px;
}
.listCover .active {
	background: url(../images/activeArrow.gif) no-repeat bottom center;
}
.listCover .listItem .selfRep {
	display: none;
}

/* .expandField
------------------------- */
.expandField {
	padding: 10px 0;
	width: 100%;
	text-align: left;
	display: block;
	background: #222;
	float: left;
	position: relative;
	overflow: hidden;
}
.expandField .btnClose {
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	display: block;
	background: url(../images/btnClose.gif) no-repeat top left;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
}
@media screen and (max-width: 400px) {
	.expandField .btnClose {
		width: 30px;
		height: 30px;
		background-size: 30px 30px;
	}
}

.expandField .btnPrev {
	display: none!important;
	top: 170px;
	left: 0;
	width: 60px;
	height: 60px;
	display: block;
	background: url(../images/btnPrev.gif) no-repeat top left;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
}
.expandField .btnNext {
	display: none!important;
	top: 170px;
	right: 0;
	width: 60px;
	height: 60px;
	display: block;
	background: url(../images/btnNext.gif) no-repeat top left;
	position: absolute;
	overflow: hidden;
	cursor: pointer;
}
.expandField .selfRepInner {
	padding: 30px 65px;
	text-align: center;
	position: relative;
}
.expandField .selfRepInner .secLeft,
.expandField .selfRepInner .secRight {
	width: 50%;
	float: left;
}
.expandField .selfRepInner .secLeft {
	text-align: center;
}
.expandField .selfRepInner .secRight {
	text-align: left;
	color: #fff;
}

.secRight h1{
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 15px;
}
.secRight p{
	font-size: 15px;
	margin-bottom: 10px;
}
.secRight a{
	display: inline-block;
	font-size: 15px;
	color: #FFF;
	border: 2px solid #FFF;
	border-radius: 30px;
    padding: 5px 40px 4px 20px;
	background: url(../images/btnNext.gif) no-repeat top 2px right 10px;
    background-size: 28px auto;
}

.secLeft img{
	width: 250px;
	padding-right: 20px;
	-moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


/* ===========================================
	SizeAdjustment
=========================================== */
@media screen and (max-width: 768px) {
	.expandField .selfRepInner .secLeft img {
		width: 80%;
	}
}
@media screen and (max-width: 768px) {
	.expandField .selfRepInner{
		padding: 15px;
	}
	.expandField .selfRepInner .secLeft {
		display: none;
	}
	.expandField .selfRepInner .secRight {
		width: 100%;
		float: none;
	}
}
	
/* =======================================
	ClearFix
======================================= */
.listCover:before,
.listCover:after,
.expandField .selfRepInner:before,
.expandField .selfRepInner:after {
	content: " ";
	display: table;
}
.listCover:after,
.expandField .selfRepInner:after {clear: both;}
.listCover,
.expandField .selfRepInner {*zoom: 1;}
