@charset "utf-8";
/* CSS Document */
.marqueeItem {
	width:auto;
	height:auto;
	overflow:hidden;
	display:inline-block;
	position:relative;
	margin:0 auto;
	text-align:center;
	border:0px solid red;
}
.marqueeItemOverlay {
	position:absolute;
	bottom:-200px;
	right:0;
	width:100%;
	height:100%;
	background:#666;
	background: rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out; /* Firefox 4 */
	-webkit-transition: all 0.3s ease-out; /* Safari and Chrome */
	-o-transition: all 0.3s ease-out; /* Opera */
}
.marqueeItem:hover .marqueeItemOverlay {
	bottom:0;
}
.marqueeItemTitle {
	position:absolute;
	bottom:10px;
	right:0;
	width:100%;
	height:25px;
	line-height:22px;
	display:inline-block;
	text-align:center;
	color:#FFF;
	font-size:15px;
	font-family:"Yekan",tahoma;
	background:#434343;
	transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out; /* Firefox 4 */
	-webkit-transition: all 0.3s ease-out; /* Safari and Chrome */
	-o-transition: all 0.3s ease-out; /* Opera */
}
.marqueeItemTitle:hover {
	color:#FF0;
}
