@charset "UTF-8";
/* CSS Document */
		<style type="text/css">
			.slideshow_box {
				background-color: #fff;
				width: 100%;
				height: 400px;
				position: relative; float:left;
			}
			#carousel img {
				display: block;
				float: left;
			}
			#prev, #next {
				background-color: #6666cc;
				display: block;
				height: 400px;
				width: 50%;
				padding-top:258px;
				top: 0;
				position: absolute;
			}
			#prev:hover, #next:hover {
				background-color: #8686d6;
				background-color: rgba(255, 255, 255, 0.8);
			}
			#prev {
				left: -495px;
			}
			#next {
				right: -495px;
			}
			#pager {
				left: 50%;
				bottom: 10px;
				padding-left:30px;
				padding-top:10px;
				padding-bottom:10px;
			}
			#pager a {
				border: 2px solid #fcc7ac;
				border-radius: 10px;
				display: inline-block;
				width: 10px;
				height: 10px;
				margin: 0 5px 0 0;
			}
			#pager a:hover {
				background-color: rgba(255, 153, 102, 0.5);
			}
			#pager a span {
				display: none;
			}
			#pager a.selected {
				background-color: #fde688;
			}
		</style>
