body{
	margin: 0px;
	padding: 0px;
	background-color:#fff;
	color:#515151;

	font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
	-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased !important;

	font-size:14px;
}
ul{
	padding: 0px;
	margin: 0px;
	text-align: center;
}
li{
	list-style-type: none;
	display: inline-block;
	padding:0 10px;
}
a:link,a:active,a:visited{
	color: #000;
	text-decoration: none;
}
a:hover{
	color: #000;
	text-decoration: none;
}

.content{
	width: 100%;
	text-align: center;
}

#logo {
	width:144px;
	margin: auto;
	margin-top: 220px;
	animation: 0.5s ease-out 0s 1 fadeInZoomIn;
}
#logo img {
	width: 144px;
	height: 144px;
}


/*
	footer
*/
#footer{
	position: fixed;
	width: 100%;
	height:30px;
	color:#7f7f7f;
	bottom: 30px;
}
#footer .container{
	width: 100%;
	margin: auto;
	text-align: center;
}
#footer .links{
	padding-top: 5px;
}
#footer .copyright{
	padding: 10px;
	text-align: center;
}
.links ul{
	text-align: right;
}
.links ul.center{
	height: 40px;
	text-align: center;
}
.links a{
	color: #999;
	text-decoration: none;
}
.links a:hover{
	color: #2b2b2b;
	text-decoration:underline;
}

.disable-select {
    user-select: none; /* supported by Chrome and Opera */
   -webkit-user-select: none; /* Safari */
   -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
   -ms-user-select: none; /* Internet Explorer/Edge */
}
.animated {
	-webkit-animation-duration: 0.8s;
	-moz-animation-duration: 0.8s;
	-o-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
}
@keyframes fadeInZoomIn {
	0% {
		opacity: 0;
		transform: scale(0.1);
	}
	100% {
		opacity: 1.0;
		transform: scale(1.0);
	}
}

.clear{display:table;content:" ";clear:both}