/* ==================================================================================================== ]]-- The Grid - Gallery Index -- */

#gallery-index {
	margin: 0 auto;
	}

.album-container {
	margin: 0 15px 30px;
	padding: 0;
	width: 300px;
	height: 150px;
	border: 0px solid #E6E6E6;
	background-color: #FFFFFF;
	color: #4D4D4D;
	text-align: left;
	float: left;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	-webkit-box-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.5 );
	-moz-box-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.5 );
	box-shadow: 0px 0px 0px rgba( 0, 0, 0, 0.5 );
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px; 
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	}

.album-container:hover, .album-container:focus {
	border-color: #CCCCCC;
	background-color: #F2F2F2;
	color: #333333;
	}

.album-content {
	margin: 0;
	padding: 10px;
	}

.album-thumbnail-container {
	margin: 0 10px 0 0;
	padding: 0;
	height: 150px;
	float: left;
	}

.album-thumbnail {
	margin: 0;
	padding: 0px;
	border: 0px solid #000000;
	background-color: #FFFFFF;
	max-width: 100px;
	max-height: 100px;
	}

.album-copy {
	margin: 0;
	padding: 0;
	text-align: left;
	line-height: 1.4em;
	}

.album-title {
	margin: 0 0 10px;
	padding: 0;
	background-color: inherit;
	font-family: Futura, 'Century Gothic', AppleGothic, sans-serif;
	font-weight: bold;
	font-size: 14px;
	}

.album-description {
	margin: 0;
	padding: 0;
	background-color: inherit;
	font-family: Futura, 'Century Gothic', AppleGothic, sans-serif;
	font-size: 12px;
	}


.locked {
	margin: 5px;
	padding: 8px;
	background: transparent url(../images/lock.png) no-repeat center;
	position: absolute;
	top: 0;
	right: 0;	
	}

.locked span {
	display: none;
	}

.unlocked {
	display: none;
	}

/* By default, we tilt all our cells -2 degrees */
.album-container {
	-webkit-transform: rotate(-2deg);
	-moz-transform: rotate(-2deg);

	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	}
 
/* Rotate all even cells 2 degrees */
.album-container:nth-child(even) {
	-webkit-transform: rotate(2deg);
	-moz-transform: rotate(2deg);
	}
 
/* Don't rotate every third cell, but offset its position */
.album-container:nth-child(3n) {
	-webkit-transform: none;
	-moz-transform: none;
	position: relative;
	top: -5px;
	}
 
/* Rotate every fifth cell by 5 degrees and offset it */
.album-container:nth-child(5n) {
	-webkit-transform: rotate(5deg);
	-moz-transform: rotate(5deg);
	position: relative;
	right: 5px;
	}
 
/* Keep default rotate for every eighth, but offset it */
.album-container:nth-child(8n) {
	position: relative;
	top: 8px;
	right: 5px;
	}
 
/* Keep default rotate for every eleventh, but offset it */
.album-container:nth-child(11n) {
	position: relative;
	top: 3px;
	left: -5px;
	}

.album-container:hover {
	-moz-transform: scale(1.1) rotate(0deg);
	-webkit-transform: scale(1.1) rotate(0deg);
	transform:scale(1.1) rotate(0deg);

	-webkit-box-shadow: 2px 2px 2px rgba( 0, 0, 0, 0.5 );
	-moz-box-shadow: 2px 2px 2px rgba( 0, 0, 0, 0.5 );
	box-shadow: 2px 2px 2px rgba( 0, 0, 0, 0.5 );

	}


