html, body
{
	width: 100%;
	height: 100%;
	background: #fff;
	font: 10pt "Trebuchet MS";
	background: #eee;
}

	#header
	{
		height: 30px;
		line-height: 30px;
		text-align: center;
		top: 0;
		left: 0;
		right: 0;
		padding: 20px;
		font-size: 2.5em;
		color: #fff;
		background: #333;
	}

	#content
	{
		margin: auto;
		max-width: 960px;
		left: 0;
		right: 0;
		padding-top: 15px;
		padding-bottom: 15px;
		z-index: 1;
	}
	
		a:active, a:visited, a:link
		{
			color: #000;
			text-decoration: none;
		}
		
		h2
		{
			font-size: 1.5em;
		}
		
		.overlay
		{
			position: fixed;
			top: 0;
			right: 0;
			bottom: 0;
			left: 0;
			z-index: 1;
			background: #000;
			opacity: .8;
			display: none;
		}

		#content div
		{
			display: inline-block;
		}
		
		.caixa
		{
			float: left;
			display: inline-block;
			width: 195px;
			height: 150px;
			margin: 20px;
			margin-right: 0;
			margin-bottom: 0;
			text-align: left;
			background: #fff;
			padding: 10px;
			box-shadow: 0 0 5px #ddd;
		}

			ul.caixa:hover
			{
				cursor: pointer;
				background: #ffffcc;
			}

			.caixa .imagem
			{
				width: 100%;
				height: 110px;
				overflow: hidden;
				background: #333;
			}

				.caixa .imagem img
				{
					margin-top: -15px;
					width: 100%;
				}
				
			.caixa .titulo
			{
				margin-top: 10px;
			}
			
			.caixa .descricao
			{
				font-size: 1.2em;
				display: none;
			}
			
			.galeria
			{	
				width: 800px;
				position: fixed;
				top: 50%;
				right: 50%;
				bottom: 50%;
				left: 50%;
				color: #fff;
				background: #000;
				margin-top: -290px;
				margin-left: -400px;
				z-index: 2;
				display: none;
			}
				
				.galeria ul
				{
					width: 100%;
				}
			
					.galeria li
					{
						float: left;
						display: inline-block;
					}
					
					.galeria .titulo
					{
						text-align: left;
					}
					
					.galeria .titulo, .galeria .fechar
					{
						width: 670px;
						height: 20px;
						font-size: 2em;
						padding: 0;
						padding-left: 15px;
						margin: 0;
						height: 50px;
						line-height: 50px;
					}
					
					.galeria .fechar
					{
						width: 85px;
						text-align: right;
						padding-right: 15px;
						font-size: 1em;
					}
					
					.galeria .embed
					{
						clear: both;
					}