/*-------------------------
	Simple reset
--------------------------*/


*{
	margin:0;
	padding:0;
}


/*-------------------------
	General Styles
--------------------------*/




/*----------------------------
	The Header
-----------------------------*/


/*----------------------------
	The Main Div
-----------------------------*/


#carousel{
	margin-top:50px;
	text-align:center;
	height:auto;
	
	/* Initially hidden */
	opacity:0;
	
	/* Will animate the transition */
	-moz-transition:0.4s opacity;
	-webkit-transition:0.4s opacity;
	transition:0.4s opacity;
}

#carousel.active{
	opacity:1;
}

#carousel li{
	display:none;
	list-style:none;
	width:700px;
	height:500px;
	margin: 50px 18px 0;
	position:relative;
	
	-moz-transition:0.4s all;
	-webkit-transition:0.4s all;
	transition:0.4s all;
}

#carousel li.visible{
	display:inline-block;
}

#carousel li a img{
	border:none;
}

#carousel li img{
	display:block;
	width:700px;
	height:400px;
	max-width:700px;
	max-height:400px;
	position:relative;
	border-collapse: separate;
  	border-spacing: 10px 50px;
	z-index:10;
}

#carousel li .img{
	border-collapse: separate;
  	border-spacing: 10px 50px;
}

#carousel li .num{
	font-family:'ng_ex'; 
	font-size:20px; 
	color:#2aa5ec;
}


#carousel li .tit{
	font-weight:bold; 
	padding-top:10px; 
	font-size:20px; 
	color:#454545;
}

#carousel li .txt{
	padding-top:15px; 
	font-size:15px; 
	color:#555; 
	line-height:22px; 
	letter-spacing:-1px;
}



/* Creating the cradle below the thumbnails.
	Uses % so that it grows with the image. */
	
#carousel li:after{
	content:'';
	background-size:contain;
	bottom: 4%;
    content: "";
    height: 50px;
    left: -6.5%;
    position: absolute;
    right: -6.5%;
    width: auto;
    z-index: 1;
}
/* 
#carousel li:hover{
	height: 197px;
    margin-top: -152px;
    width: 222px;
}
 */
.arrow{
	background:url('/images/front/arrows.png') no-repeat;
	width:28px;
	height:35px;
	opacity:0.8;
	text-indent:-999px;
	overflow:hidden;
	cursor:pointer;
	display:none;
	
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-428px;
	margin-top:25px;
}

.arrow:hover{
	opacity:1;
}

.arrow.next{
	margin-left:400px;
	background-position:top right;
}



