﻿.reviewTile {
	width: 100px;
	height: 100px;
	float: left;
	margin: 2px;
	cursor: pointer;
	-moz-background-size: contain;
	-o-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
    overflow:hidden;
}

.reviewTileDesc {
	width: 100%;
	height: 0px;
	-moz-transition: ease 1s;
	-o-transition: ease 1s;
	-webkit-transition: ease 1s;
	transition: ease 1s;
	z-index: 1;
	overflow: hidden;
	position: absolute;
}

.reviewPageDescriptionAlign {
	width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.reviewUserImage {
	/*width: 300px;*/
	height: 300px;
	background-repeat: no-repeat;
	/*box-shadow: #000 0px 0px 3px;*/
	-moz-background-size: contain;
	-o-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
}

.reviewPersionName {
	/*background-color: rgba(255, 106, 0, 0.5);*/
	background-color: rgba(255, 255, 255,0.4);
	margin: 2px;
	padding: 2px;
	font-size: 11px;
	-moz-transition: ease 1s;
	-o-transition: ease 1s;
	-webkit-transition: ease 1s;
	transition: ease 1s;
	position: absolute;
	bottom: 0px;
	top: auto;
	height: 10%;
	width: 92%;
}

.reviewTile:hover .reviewPersionName {
	/*background-color: rgba(255, 106, 0, 0.5);*/
	background-color: rgba(255, 255, 255,0.9);
	-moz-transition: ease 1s;
	-o-transition: ease 1s;
	-webkit-transition: ease 1s;
	transition: ease 1s;
	height: 40%;
}


.reviewCloseButton {
	float: right;
	/*color: #fff;*/
	width: 25px;
	height:25px;
	/*background-color: #f00; 
	text-align: center;*/
	cursor: pointer;
	background-image: url(../../Images/closeButton.png);
	-moz-background-size: contain;
	-o-background-size: contain;
	-webkit-background-size: contain;
	background-size: contain;
	background-repeat:no-repeat;
}