html, body {
	height: 100%;
}

body, ul, li, section, p, h1 {
	padding: 0;
	margin: 0;
}
body {
	background: url('src/background.png') repeat center top;
	font: 12px Helvetica, Arial, Verdana;
}
a, img {
	border: 0;
	outline: none;
}

#shadow {
	position: absolute;
	width: 100%;
	height: 4px;
	top: 0;
	left: 0;
	background: url('src/shadow.png') repeat-x;
}

#noaliasing {
	display: block;
	background: url('src/head.png') repeat-x center top;
	
	width: 100%;
}
#noaliasing > div {
	background: url('src/light.png') no-repeat center top;
	min-height: 250px;
	padding-top: 82px;
}

a {
	display: block;
	width: 340px;
	margin: 0 auto 0 auto;
	text-decoration: none;
}

#logo {
	margin: 0 auto 30px auto;
	width: 282px;
	height: 62px;
	background: url('src/logo.png') no-repeat;
}
#logo span {
	display: none;
}

#flip {
	position: relative;
	height: 71px;
}

#panel_front {
	margin-left: 10px;
	width: 320px;
	height: 46px;
	background: url('src/panel_front.png') no-repeat;
	color: #FFF;
	font-size: 17px;
	text-align: center;
	padding-top: 25px;
	text-shadow: rgba(0,0,0,0.75) 0 1px 0;
}
#panel_back {
	margin-left: 10px;
	width: 320px;
	height: 41px;
	background: url('src/panel_back.png') no-repeat;
	color: #9d9d9d;
	font-size: 12px;
	text-align: center;
	padding-top: 30px;
	text-shadow: rgba(0,0,0,0.75) 0 1px 0;
	
	display: none;
}
#panel_back strong {
	color: #fff;
}


a:hover #panel_front {
	display: none;
}
a:hover #panel_back {
	display: block;
}	

@media all and (-webkit-transform-3d) {
	a {
		-webkit-perspective: 1000;
	}
	#flip {
		-webkit-transform-style: preserve-3d;
		-webkit-transition: -webkit-transform 0.5s;
    }
	a:hover #flip {
		-webkit-transform: rotateY(180deg);
	}
	a:hover #panel_front {
		display: block;
	}
	#flip > div {
		position: absolute;
		-webkit-backface-visibility: hidden;
	}
	#panel_back {
		display: block;
       	-webkit-transform: rotateY(180deg);
	}
}
