@charset "UTF-8";
/* ID styles */
* {padding: 0; margin: 0;}

/* the tiles */
#tilecontainer{
	background-color:transparent;
	position:relative;
	left:-15px;
	border:none;
	width:1030px;
	height:100%;
	/* overflow:auto; */
	font-size: 10px;
	color:#888;
	}

#tilecontainer .tiletiny{
	width:90px;
	height:90px;
	padding-top:0px;
	padding-bottom:0px;
	padding-left:0;
	padding-right:0;
	position:relative; /* to we can absolutely position the description div */
}

#tilecontainer .tilesmall{
	width:190px;
	height:190px;
	padding-top:0;
	padding-bottom:0;
	padding-left:0;
	padding-right:0;
	float:left; /* important */
	position:relative; /* to we can absolutely position the description div */
}

#tilecontainer .tilebig{
	width:390px;
	height:390px;
	padding-top:0;
	padding-bottom:0;
	padding-left:0;
	padding-right:0;
	float:left; /* important */
	position:relative; /* to absolutely position the description div */
}

#tilecontainer .description{
	position:absolute; /* absolute position (so we can position it where we want)*/
	top:-1px; /* position will be on bottom */
	left:-1px;
	height:100%;
	width:100%;
	border-style:solid;
	border-width:1px;
	padding-top:0px;
	background-color:transparent;
	/* styling below */
	font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size:10px;
	color:white;
	/* filter:alpha(opacity=00);  IE transparency */
	opacity: 0.0;
   	transition: opacity .5s ease-in-out;
   	-moz-transition: opacity .5s ease-in-out;
   	-webkit-transition: opacity .5s ease-in-out;
}


#tilecontainer .description:hover {
      opacity: 0.7;
      }

#tilecontainer .description_content{
	position:absolute;
	width:100%;
	background-color:black;
	bottom:0px;
	padding:0px;
	margin:0px;
	line-height:20px;
}

/* the table */
table#tiletable{
	background-color:transparent;
	border:0px;

	.tinytiletable_parent {
		padding: 0px;
	}
}

table#tiletable td{
	padding:5px;
	text-align:center;
}

table#tinytiletable{
	background-color:transparent;
	border:0px;
}

table#tinytiletable td{
	padding:5px;
	text-align:center;
}

