body{
	background: url('background.png') repeat #303030;
	text-align: center;
}
h1.titulo{
	margin-top: 50px;
	font-family: Calligraffitti;
	font-size: 40px;
	font-weight: bold;
	color: #cdcdcd;
	text-shadow: #101010 0 1px 1px;
}
#contenido{
	width: 360px;
	overflow: hidden;
	margin: auto;
	margin-bottom: 10px;
}
#contenido ul{
	width: 360px;
	height: auto;
	display: block;
	padding: 5px;
}
#contenido ul li{
	display: block;
	float: left;
	width: 100px;
	height: 150px;
	margin-right: 20px;
	margin-top: 20px;
}
#contenido ul li img{
	display: block;
	border-radius: 4px;
	box-shadow: #000000 0 0 5px;
	cursor: pointer;
}
.info{
	display: none;
	position: absolute;
	width: 300px;
	/*height: 200px;*/
	border-radius: 0 6px 6px 6px;
	margin-left: 100px;
	border: 1px solid #000000;
	padding: 5px;
	text-align: left;
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #cfcfcf 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#cfcfcf));
	background: -webkit-linear-gradient(top, #ffffff 0%,#cfcfcf 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#cfcfcf 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#cfcfcf 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cfcfcf',GradientType=0 );
	background: linear-gradient(top, #ffffff 0%,#cfcfcf 100%);
	box-shadow: #000000 0 0 5px;
}

.info h1{
	font-family: Arial;
	font-weight: bold;
	font-size: 16px;
	padding: 2px;
}
.info p{
	font-family: Arial;
	font-size: 11px;
	text-align: left;
	color: #111111;
	line-height: 14px;
}
.info p b{
	font-weight: bold;
}
.info p hr{
	border: 0;
}
#contenido ul li:hover div.info{
	display: block;
}
#contenido ul li:hover img{
	border-radius: 4px 0 4px 4px;
}
/***********/
#pie{
	position: fixed;
	bottom: 0;
	right: 0;
	padding: 10px;
	font-family: Arial;
	font-weight: bold;
	font-size: 14px;
}
#pie a{
	background: #101010;
	color: #808080;
	text-decoration: none;
	padding: 3px 10px;
	border: 1px solid #000000;
	border-radius: 3px;
}
#pie a:hover{ background: #151515;  color: #909090;}