body {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font: 28px 'Trebuchet MS', Arial, Helvetica, sans-serif;
	color: white;
}
a {
	color: white;
	text-decoration: none;
}
a:hover {
	
}
img {
	border: none;
	width:100%;
  height:auto
}
#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;
}
#nav:hover, #footer:hover, #albums:hover {
	background-color: rgba(0,0,0,.9);
}
#nav, #albums {
	border-bottom: 2px solid white;
}
#content {
	margin: 170px 0 200px;
	z-index: 1;
}
#nav {
	top: 0;
	height: 68px;
	margin: 0;
    text-align: center;
}
#nav * {
	line-height: 68px;
	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: 96px;
	top: 70px;
	margin: 0;
	font-size: 0;
}
#albums li {
	display: inline-block;
	font-size: 22px;
}
#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: <?php echo IMAGE_THUMB_SIZE; ?>px;
	height: <?php echo IMAGE_THUMB_SIZE; ?>px;
	position: relative;
	overflow: hidden;
}
#images li a:nth-child(1) {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: <?php echo IMAGE_THUMB_SIZE; ?>px;
	height: <?php echo IMAGE_THUMB_SIZE; ?>px;
}
#images li a:nth-child(2) {
	bottom: 0;
	padding: 30px 10px;
	position: absolute;
	text-align: center;
	text-decoration: none;
	width: <?php echo IMAGE_THUMB_SIZE - 20; ?>px;
	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;
}
