@charset "utf-8";
/* CSS Document */

footer{
	width:100%;
	background-color:#333;
	color:#fff;
	direction:rtl;
	min-height:100px;
}
footer > ul{
	flex-direction:row;
	align-content:flex-end;
}
footer > ul > a > li{
	display:inline-block;
	padding:10px;
	color:#fff;
}
footer > ul > a > li:hover{
	text-shadow:#FBFBFB;
	transition:ease-in-out;
	transform:scale(1.1,1.1);
}
.footer-ads{
	width: 150px;
	max-width: 150px;
	float: right;
	position: fixed;
	bottom: 20px;
	right: 20px;
	border: solid thin #333;
	padding: 1px;
}
.footer-ads:hover{
	cursor: pointer;
}
.footer-ads a{
	color: #000;
}
.footer-ads a:hover{
	text-decoration: none;
}
.footer-ads-close{
	width: 20px;
	height: 20px;
	display: block;
	background-color: #ffbb00;
	color: #000;
	font-weight: bold;
	float: left;
	position: absolute;
	border-radius: 10px;
	text-align: center;
	font-size: 10px;
	line-height: 20px;
	margin: 2px;
}
.footer-ads-close:hover{
	box-shadow: 0px 0px 5px #222;
}
.footer-ads-close:active .footer-ads{
	display: none;
}
.footer-ads-img{
	width: 100%;
	max-width: 150px;
}
.footer-ads-description{
	background-color: #ffbb00;
	display: block;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
}


@media only screen and (max-width:500px)
{
.footer-ads{
	bottom: 0px;
	right: 0px;
}
}