
#main {
	position: relative;
	width: 600px;
	height: 330px;
}

#main ul li {
	position: absolute;
	display: none;
	width: 600px;
	height: 330px;
	top: 0;
}

#main ul li.active{
	display: block;
}

#mainBtn {
}

#mainBtn a {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -25px;
	z-index: 2;
}
#prevBtn {
	left: 0;
}
#nextBtn {
	right: 0;
}
#allBtn{ width:160px; margin: 0 auto; }


#bullets {
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 0;
	width: 600px;
	height: 10px;
	letter-spacing: -0.4em;
	text-align: center;
} 
#bullets li {
	display: inline-block;
	margin: 5px;
	letter-spacing: 0;
	width: 10px;
	height: 10px;
	overflow: hidden;
	background-image: url(/store/techo/2014/planner/images/bullet.png);
	background-position: 0 -20px;
	background-repeat: no-repeat;
}
#bullets li.current {
	background-position: 0 0;
}
#bullets li:hover {
    opacity: .5;
    -moz-opacity: .5;
    -ms-filter: "alpha(opacity=50)";
    filter: alpha(opacity=50);
    cursor: pointer;
}

#bullets li.current:hover {
    opacity: 1;
    -moz-opacity: 1;
    -ms-filter: "alpha(opacity=100)";
    filter: alpha(opacity=100);
    cursor: default;
}
