@charset "utf-8";
/* CSS Document */
/* all */
body {
	background-image: url(Background.svg);
	background-repeat: repeat;
}
a {
	text-decoration: none;
}
/* Tag Ball */
#lb {
	display: block;
	width: 500px;
	height: 430px;
	margin-top: -50px;
	margin-left: auto;
	margin-right: auto;
}
ul.ball {
	width: 500px;
	height: 500px;
	float: left
}
/*-------- jQuery.ball base --------*/
.ball {
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden
}
ul.ball, ol.ball {
	list-style-type: none;
	list-style-position: inside
}
.ball li {
	margin: 0;
	padding: 0;
	white-space: nowrap;
	display: inline-block;
	cursor: default;
}
.ball a {
	text-decoration: none;
	margin: 0;
	padding: 0;
	border: solid 1px transparent
}
.ball a:hover {
	border-color: #700
}
/*------- jQuery.ball design -------*/
.ball {
	border: solid 0px #333;
	font-size: 30px;
	font-weight: bold
}
.ball li {
	color: #000
}
.ball li a {
	border-color: grey
}
.ball li a:hover {
	border-color: #090
}
/* wings and title */
#warpper {
	width: 1000px;
	margin-top: 0px;
	margin-left: -500px;
	left: 50%;
	position:absolute;
	text-align: center;
}
#warpper:hover #left {
	-moz-transform: rotate(10deg);
	-webkit-transform: rotate(10deg);
	-ms-transform: rotate(10deg);
}
#warpper:hover #right {
	-moz-transform: rotate(-10deg);
	-webkit-transform: rotate(-10deg);
	-ms-transform: rotate(-10deg);
}
#title {
	display: inline;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 100px;
	color: black;
	text-shadow: gray 5px 5px 5px;
}
.wing {
	display: inline-block;
	height: 120px;
	-moz-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
}
.wing img{
	height:120px;
	width:180px;
	border:0;
}
#left {
	-moz-transform-origin: bottom right;
	-webkit-transform-origin: bottom right;
	-ms-transform-origin: bottom right;
}
#right {
	-moz-transform-origin: bottom left;
	-webkit-transform-origin: bottom left;
	-ms-transform-origin: bottom left;
}
