@charset "utf-8";
/* CSS Document */
body { 
	background-attachment:fixed;
	background:url(bg.jpg);
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
}
#head {
	background:url(logo.jpg);
	width:900px;
	height:250px;
	margin:auto auto;
	border-top-left-radius:15px;
	border-top-right-radius:15px;
	padding:15px 15px 15px 15px;
}

#menu {
	background:#50B63E;
	width:920px;
	margin:auto auto;
	padding:15px 15px 15px 15px;
	text-align:center;
	z-index:999;
	-moz-box-shadow: 0 0 20px #000;
    -webkit-box-shadow: 0 0 20px #000;
}
#menuelements {
	display:inline-block;
	background:url(images/btn_normal.jpg);
	/*background-color:#4fa52d;*/
	width:150px;
	text-align:center;
	border-radius:5px;
	height:30px;
	transition: background 0.3s linear 0s, color 0.3s linear 0s;
	padding-top:5px;
	color:#000;
}
#menuelements:hover {
	background:url(images/btn_hover.jpg);
	/*background-color:#fff;*/
	width:150px;
	text-align:center;
	height:30px;
}
#corpus {
	background: #FFF;
	width: 900px;
	margin: auto auto;
	padding: 15px 15px 15px 15px;
}

#copyright { 
	font-family:Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
	font-size:12px;
	text-align:center;
	color:#FFF;
	background:#50B63E;
	width:900px;
	margin:auto auto;
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
	padding:15px 15px 15px 15px;
}
#copyright, a:link {
	color: #000;
	text-decoration: none;
	font-weight:bold;
}
a:visited {
	text-decoration: none;
	color: #000;
	font-weight:bold;
}
a:hover {
	text-decoration: none;
	color: #000;
	font-weight:bold;
}
a:active {
	text-decoration: none;
	color: #000;
	font-weight:bold;
}
.flip_container { 
	width:1000px;
	text-align:center;
	margin: auto auto;
	padding-left:25px;
}
.flip3D{ 
	width:300px;
	height:200px;
	float:left;
	border-radius:15px;
		}
.flip3D > .front{
	position:absolute;
	-webkit-transform: perspective( 600px ) rotateY( 0deg );
	transform: perspective( 600px ) rotateY( 0deg );
	background:#Fff; width:250px; height:200px; border-radius: 7px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: -webkit-transform .5s linear 0s;
	transition: transform .5s linear 0s;
	-moz-box-shadow: 0 0 20px #000;
    -webkit-box-shadow: 0 0 20px #000;
}
.flip3D > .back{
		position:absolute;
	-webkit-transform: perspective( 600px ) rotateY( 180deg );
	transform: perspective( 600px ) rotateY( 180deg );
	background: #fc0; width:250px; height:200px; border-radius: 7px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: -webkit-transform .5s linear 0s;
	transition: transform .5s linear 0s;
	-moz-box-shadow: 0 0 20px #000;
    -webkit-box-shadow: 0 0 20px #000;
}
.flip3D:hover > .front{
	-webkit-transform: perspective( 600px ) rotateY( -180deg );
	transform: perspective( 600px ) rotateY( -180deg );
}
.flip3D:hover > .back{
	-webkit-transform: perspective( 600px ) rotateY( 0deg );
	transform: perspective( 600px ) rotateY( 0deg );
}
.goTop{
	position:fixed;
	top:90%;
	right:10%;
	z-index:99999999999999;
	}