﻿/********************
 * FEATURE CAROUSEL *
 ********************/

@media screen and (min-width: 1200px) {
	#featureCarousel {
		height: 450px;
		width: 960px;
		position: relative;
		margin: 0 auto;
	}
	#featureCarousel img {
		border: 0;
	}
	#featureCarousel .feature {
		position: absolute;
		top: -1000px;
		left: -1000px;
		cursor: pointer;
		background: #000000;
	}
	#featureCarousel .feature>div {
		color: #666666;
		width: 100%;
	}
	#featureCarousel .feature>div p {
		margin: 0;
		padding: 5px;
		font-size: 16px;
		color: #333333;
		text-align: center;
		margin-top: 10px;
		font-family: "微软雅黑";
	}
	#featureCarousel .blipsContainer {
		position: absolute;
		color: white;
		right: 25px;
		top: 210px;
		padding: 0;
		margin: 0;
		display: none;
	}
	#featureCarousel .blipsContainer .blip {
		margin: 3px;
		height: 14px;
		width: 14px;
		color: white;
		text-align: center;
		font-size: 10px;
		border: 1px dotted black;
	}
	#featureCarousel .blipsContainer .blipSelected {
		color: white;
		font-weight: bold;
		background-color: black;
	}
	#featureCarousel .leftButton {
		background: url(../image/prev.png) no-repeat;
		width: 40px;
		height: 40px;
		display: block;
		position: absolute;
		top: 150px;
		left: -50px;
	}
	#featureCarousel .leftButton:hover,
	#featureCarousel .rightButton:hover {
		background-position: 0 -50px;
	}
	#featureCarousel .rightButton {
		background: url(../image/next.png) no-repeat;
		width: 40px;
		height: 40px;
		display: block;
		position: absolute;
		top: 150px;
		right: -50px;
	}
}