.featured { 
		width: auto; 
		min-width: 40px; 
		margin: 0 auto; 
	 } 

		.featured ul {
			width: auto;
			margin: 80px auto;
			list-style: none;
			float: left;
			padding: 10px;
		}

			.featured ul li {
				width: 200px;
				float: left;
				margin: 0 10px 10px 0;
				-webkit-filter: sepia(.7);
				position: relative;
				-webkit-transition: .8s;
			}

				.featured ul li:hover {
					-webkit-filter: sepia(0);
					z-index: 1;
				}

			.featured ul li:nth-child(3n) {
				margin-right: 0;
			}

			.featured ul li:nth-last-child(-n+3) {
				margin-bottom: 0;
			}

				.featured ul li img {
					-webkit-transition: .8s;
					max-width: 100%;
					box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
					float: left;
					border: 8px solid white;
					border-bottom-width: 30px;
					-moz-box-sizing: border-box;
					-webkit-box-sizing: border-box;
					box-sizing: border-box;
				}

		
				.featured ul li:nth-child(1) img {
					-webkit-transform: translate(-10px, 20px) rotate(-10deg);
				}

				.featured ul li:nth-child(2) img {
					-webkit-transform: translate(-20px, 70px) rotate(10deg);
				}

				.featured ul li:nth-child(3) img {
					-webkit-transform: translate(-40px, 5px) rotate(13deg);
				}

				.featured ul li:nth-child(4) img {
					-webkit-transform: translate(-20px, 20px) rotate(5deg);
				}

				.featured ul li:nth-child(5) img {
					-webkit-transform: translate(-30px, 50px) rotate(-10deg);
				}

				.featured ul li:nth-child(6) img {
					-webkit-transform: translate(-40px) rotate(5deg);
				}
				
				.featured ul li:nth-child(7) img {
					-webkit-transform: translate(-10px, 20px) rotate(-10deg);
				}

				.featured ul li:nth-child(8) img {
					-webkit-transform: translate(-20px, 70px) rotate(10deg);
				}

				.featured ul li:nth-child(9) img {
					-webkit-transform: translate(-40px, 5px) rotate(13deg);
				}

				.featured ul li:nth-child(10) img {
					-webkit-transform: translate(-20px, 20px) rotate(5deg);
				}

				.featured ul li:nth-child(11) img {
					-webkit-transform: translate(-30px, 50px) rotate(-10deg);
				}

				.featured ul li:nth-child(12) img {
					-webkit-transform: translate(-40px) rotate(5deg);
				}
					.featured ul li img:hover {
						box-shadow: 0 0 5px rgba(0, 0, 0, .5), 0 0 15px rgba(0, 0, 0, .7);
						-webkit-transform: scale(2);
					}
