body {
	margin: 0;
	background: black;
	font: 14px 'Trebuchet MS', Arial, Helvetica, sans-serif;
	color: white;
}
a {
	color: white;
	text-decoration: none;
}
a:hover {
	
}
img {
	border: none;
}
#content, #nav, #footer, #albums {
	padding: 0 30px;
}
#nav, #footer, #albums {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 2;
	background-color: rgba(0,0,0,.5);
	transition: background-color .4s ease 0s;
	-moz-transition: background-color .4s ease 0s;
	-webkit-transition: background-color .4s ease 0s;
	-o-transition: background-color .4s ease 0s;
	-ms-transition: background-color .4s ease 0s;
}

#albums {
background-color: #C32C1E;	
}


#nav:hover, #footer:hover, #albums:hover {
	background-color: rgba(0,0,0,.9);
}
#nav, #albums {
	border-bottom: 2px solid white;
}
#content {
	margin: 100px 0 200px;
	z-index: 1;
}
#nav {
	top: 0;
	height: 48px;
	margin: 0;
}
#nav * {
	line-height: 48px;
	display: inline-block;
}
#nav .current:after {
	content: " <<";
}
#nav .current:only-child:after {
	content: "";
}
#nav a:after {
	content: " >> ";
}
#footer {
	border-top: 2px solid white;
	bottom: 0;
	padding-top: 14px;
	padding-bottom: 14px;
}
#albums {
	height: 48px;
	top: 50px;
	margin: 0;
	font-size: 0;
}
#albums li {
	display: inline-block;
	font-size: 14px;
}
#albums li a {
	display: block;
	line-height: 48px;
	padding: 0 12px;
	border-right: 1px solid gray;
	transition: background-color .2s ease 0s;
	-moz-transition: background-color .2s ease 0s;
	-webkit-transition: background-color .2s ease 0s;
	-o-transition: background-color .2s ease 0s;
	-ms-transition: background-color .2s ease 0s;
}
#albums li:nth-child(1) a {
	border-left: 1px solid gray;
}
#albums li a:hover {
	background-color: #333;
}
#images {
	padding: 0;
	overflow: auto;
	width: 100%;
}
#images li {
	display: block;
	float: left;
	font-size: 14px;
	width: 300px;
	height: 300px;
	position: relative;
	overflow: hidden;
}
#images li a:nth-child(1) {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: 300px;
	height: 300px;
}
#images li a:nth-child(2) {
	bottom: 0;
	padding: 30px 10px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	width: 280px;
	opacity: 0;
	background-color: rgba(0,0,0,.6);
	transition: opacity .3s ease 0s;
	-moz-transition: opacity .3s ease 0s;
	-webkit-transition: opacity .3s ease 0s;
	-o-transition: opacity .3s ease 0s;
	-ms-transition: opacity .3s ease 0s;
}
#images li:hover a:nth-child(2) {
	opacity: 1;
}
#image {
	text-align: center;
}
#content > p, #image > p {
	padding: 20px;
	text-align: center;
}
