/*ページ設定部分（style.cssなどで設定していれば削除する）*/
* {
	margin: 0;
	padding: 0;
}
body {
	background: #fff;
	font-family: Arial;
}
#container {
	width: 900px;
	margin: 100px auto;
}
a {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #ff0000;
	text-decoration: underline;
}
/*ここまでページ設定部分*/


/*ここからCloud Carouselの設定*/

#carousel1 {
	position: relative;
	width: 900px;
	height: 400px;
	background: #000;
	overflow: scroll;
}
#title {
	display: none;
	color: #ffff00;
	font-size: 1.4em;
	font-weight: bold;
	margin: 20px 0 0 20px;
	text-transform: uppercase;
}
#alt {
	display: none;
	color: #ffffff;
	margin: 5px 0 0 30px;
	font-size: 1em;
}
.left {
	display: none;
	background: url(../images/left.png);
	width: 40px;
	height: 40px;
	background-position: 0px 0px;
}
.right {
	display: none;
	background: url(../images/right.png);
	width: 40px;
	height: 40px;
	background-position: 0px 0px;
}
