#InfoDivWrapper {
	display: block;
	padding: 1em;
}

#InfoDiv{
	display: table;
	margin: 1em auto;
	position: relative;
	visibility: hidden;
	opacity: 0;

	padding: 1em;
	border: 1px solid #D6D6D6;
	-webkit-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
	background-color: #FCFCFC;
	font-family: "Verdana",sans-serif;
	font-size: 1.3em;
	
	
	-moz-transition: opacity 2s ease;
    -ms-transition: opacity 2s ease;
    -o-transition: opacity 2s ease;
    -webkit-transition: opacity 2s ease;
    transition: opacity 2s ease;	
}

#InfoDiv h1 {
	display: block;
	padding-bottom: 0.2em;
	padding-left: 0.5em;
	font-size: 1.5em;
	text-align: center;
}

#EntriesWrapper {
	width: auto;
	display: table;
	border-spacing:0.5em;
}

.EntriesRow {
	display: table-row;
}

.Entry{
	display: table-cell;
	width: 310px;
	min-height: 150px;	
	vertical-align: top;		
	padding: 0.5em;	
	transition: all 1s ease;
}

.Entry:hover {
	
	max-height: 999em;
}

.Entry a, .Entry a:hover{
	color: white;
	font-family: "Verdana",sans-serif;
	font-size: 1em;
	font-decoration: underline;
	font-weight: normal;
	background-color:transparent;
}

.container {
  position: relative;
  width: 310px;
  min-height: 150px;
}

.front {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  
  	font-family: "Verdana",sans-serif;
	font-size: 21px;
	
	transition: .6s ease;
}

.moreinfo {
  position: absolute;

  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .6s ease;
}

.container:hover .moreinfo {
	height: 100%;
}

.container:hover .front {
	text-shadow: 0 0 17px white;
   color: transparent !important;
}


.moreinfotext {
  position: absolute;
  width: 310px;
  height: 150px;
  
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);

 
    	font-family: "Verdana",sans-serif;
	font-size: 14px;
	
	box-shadow: inset 0px 0px 310px 150px rgba(0, 0, 0, .2);
}

.moreinfotextheader {
	text-align: center;
	padding: 5px;

  	font-family: "Verdana",sans-serif;
	font-size: 14px;
	font-weight: bold;
	
	box-shadow: inset 0px 0px 310px 150px rgba(0, 0, 0, .15), 0px 0px 3px 0px rgba(255,255,255,0.9);
	

}

.moreinfo span {
	display: block;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
}

.moreinfotext a {
	text-decoration: underline;
}

.moreinfotext img {
-webkit-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
-moz-box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
box-shadow: 0px 0px 5px 0px rgba(255,255,255,1);
}

