@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Jua|Ubuntu');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/* CSS Document */
body
{
	background:#f9f9fa;
	font-family: 'Open Sans', sans-serif;
	font-size:14px;
	color:#171695;
}

a:link {
	color: #171695;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #171695;
}
a:hover {
	text-decoration: underline;
	color: #48CDD4;
}
a:active {
	text-decoration: none;
	color: #171695;
}
#pie{
	width:100%;
	height:40px;
	position:fixed;
    bottom:0;
    left:0;
	background:#F9F9FA;
	color:#CCCCCC;
}
.normal{
	display:block;
}
.responsive{
	display:none;
}
@media all and (max-width:480px){
	#pie{
		width:100%;
		height:60px;
		position:fixed;
		bottom:0;
		left:0;
		background:#F9F9FA;
		color:#CCCCCC;
	}
	.normal{
		display:none;
	}
	.responsive{
		display:block;
	}
}
	