body {
	overflow: hidden;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:16px;
}
#logo {
	height: 600px;
	width: 600px;
	position: absolute;
	bottom: -200;
	right: 100;
	z-index: 0;
}
#logo::before {
	-webkit-animation: spinX 9s linear infinite;
	content: '';
	background: url("/images/portalis_spin.gif") no-repeat center center;
	position: absolute;
	right: -300;
	bottom: 0;
	width: 100%;
	height: 100%;
}
 @-webkit-keyframes spinX {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
