footer {
	width: 100%;
	max-height: auto;
	background: #381A72; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(rgba(0,0,0, 0.55), rgba(0,0,0, 0.75)); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(rgba(0,0,0, 0.55), rgba(0,0,0, 0.75)); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(rgba(0,0,0, 0.55), rgba(0,0,0, 0.75)); /* For Firefox 3.6 to 15 */
    background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,1)); /* Standard syntax (must be last) */
	color: #000;
	font-family: Quicksand, sans-serif;
	padding: 20px 0px;
	/*text-shadow: 0.5px 0.5px 1px #DCDCDC;*/
}
.link-container {
	font-size: 11px;
	padding-bottom: 5px;
	text-align: center;
	width: 100%;
}
.links {
	font-size: 11px;
}
.links:link, .links:visited, .links-disabled  {
	color: #000;
	text-align: center;
    text-decoration: none;
    display: inline-block;
	border-bottom: 1px solid rgba(0,0,0,0.0);
}
.links:hover, .links:active {
    color: #1E90FF;
	border-bottom: 1px solid #1E90FF;
}
.links-disabled {
	color: #B0C4DE;
	border-bottom: 1px solid #B0C4DE;
}
.copyright {
	font-size: 13px;
	text-align: center;
	width: 100%;
}

/* Mobile */
@media (max-width: 320px) {
	.copyright {
		font-size: 10px;
	}
}
@media (min-width: 321px) and (max-width: 450px) {
	footer {
		font-size: 10px;
		padding: 10px 0px;
	}
	.links {
		font-size: 10px;
	}
	.copyright {
		font-size: 10px;
	}
}

/* Small Tablets */
@media (min-width: 451px) and (max-width: 768px) {
	footer {
		font-size: 11px;
		padding: 10px 0px;
	}
	.links {
		font-size: 10px;
	}
	.copyright {
		font-size: 10px;
	}
}