.showingContainer {
	position: relative;
	width: 100%;
	height: 65px;
	border-bottom: 1px solid #ccc;
	overflow: hidden;
}

.showingContainer.last {
	border-bottom: none;
}

.showingHoverContainer {
	position: relative;
	width: 100%;
	height: 32px;
	background-color: #fff;
}

.showingDate {
	float: left;
	width: 132px;
	height: 100%;
	overflow: hidden;
	line-height: 15px;
}

.showingDate .dayOfWeek { font-size: 11px; }
.showingDate .day { font-size: 15px; }
.showingDate .month { font-size: 11px; }
.showingDate .time { font-size: 13px; }

.showingPrice {
	float: right;
	line-height: 12pt;
	font-size: 10pt;
	text-align: right;
}

.showingLocation {
	clear: both;
}

.showingLocation a {
	text-decoration: underline;
	font-size: 8pt;
	color: #747474;
}

.showingLocation a:hover {
	color: #ccc;
}

.showingOver, .showingOverBG {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.showingOver { display: none; }

.showingOverBG {
	background-color: #efefef;
	opacity: 0.75;						/* Firefox, Safari, Chrome, Opera */
	-ms-filter: "alpha(opacity=75)";	/* IE 8 */
	filter: alpha(opacity=75);			/* IE 4-7 */
	zoom: 1;							/* Trigger hasLayout in IE 7 and lower */
}

.showingHoverContainer:hover .showingOver {
	display: block;
}

.showingBtnTop, .showingBtnBottom {
	width: 120px;
	padding: 0;
	text-align: center;
	font-size: 9px;
	line-height: 12px;
}

.showingBtnTop.addMyActivity .remove { display: none; }
.showingBtnTop.removeMyActivity .add { display: none; }

.showingBtnBottom {
	background-color: #e32c43;
	color: #fff;
}

a.showingBtnBottom:hover {
	background-color: #555555;
	color: #fff;
}


