body{
	background-color: rgba(37,37,37,1);
}

.centered-box {
	width: 1024px;

}

* html .centered-box { 
	position:absolute;
}

#nav {
	float: right;
	padding: 42px 0px 0px 30px;
}

#nav li {
	float: left;
	margin: 0px 0px 0px 5px;
}

#nav li a {
	padding: 5px 15px;
	font-weight: bold;
	color: #ccc;/*must be first so it gets used in an older brower */
	color: rgba(255,255,255,0.7);/* uses this if the browser supports it */
	text-shadow: -3px 3px 3px rgba(0,0,0,0.7);/*x first, y second, blur radius then color  */
	-webkit-border-radius: 14px 5px;/* This is how you make rounded corners */
	-moz-border-radius: 14px 5px;/* mozilla */
	border-radius: 14px 5px;/* chrome */
	-o-transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

#nav li a:hover,
#nav li a:focus {
	color: #fff;
	background: rgba(255,255,255,0.15);
}

ul.gallery
{
	clear: both;
}

ul.gallery li
{
	float: left;
	margin: 0px 10px;
	padding: 10px;
	border: 1px solid #ffffff;
}

ul.gallery li a img
{
	float: left;
	width: 200px;
	-webkit-transition: -webkit-transform 0.5s ease-in-out;
	-moz-transition: -moz-transform 0.5s ease-in-out;
	transition: transform 0.5s ease-in-out;
}

ul.gallery li a:hover img,
ul.gallery li a:focus img
{
	-webkit-transform: scale(1.5) translate(40px, 40px);
	-moz-transform: scale(1.5) translate(40px, 40px);
	-o-transform: scale(1.5) translate(40px, 40px);
	transform: scale(1.5) translate(40px, 40px);
	-webkit-box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
	-moz-box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
	box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
}

ul.gallery li b img
{
	float: left;
	width: 200px;
	-webkit-transition: -webkit-transform 0.5s ease-in-out;
	-moz-transition: -moz-transform 0.5s ease-in-out;
	transition: transform 0.5s ease-in-out;
}

ul.gallery li b:hover img,
ul.gallery li b:focus img
{
	-webkit-transform: scale(1.5) rotate(-10deg);
	-moz-transform: scale(1.5) rotate(-10deg);
	-o-transform: scale(1.5) rotate(-10deg);
	transform: scale(1.5) rotate(-10deg);
	-webkit-box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
	-moz-box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
	box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
}

ul.gallery li c img
{
	float: left;
	width: 200px;
	-webkit-transition: -webkit-transform 0.5s ease-in-out;
	-moz-transition: -moz-transform 0.5s ease-in-out;
	transition: transform 0.5s ease-in-out;
}

ul.gallery li c:hover img,
ul.gallery li c:focus img
{
	-webkit-transform: scale(1.5) skew(-5deg, 30deg);
	-moz-transform: scale(1.5) skew(-5deg, 30deg);
	-o-transform: scale(1.5) skew(-5deg, 30deg);
	transform: scale(1.5) skew(-5deg, 30deg);
	-webkit-box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
	-moz-box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
	box-shadow: -10px 10px 10px rgba(0,0,0,0.7);
}

ol#things {
	clear: both;
}

ol#things li {
	position: relative;
	float: left;
	margin: 0 15px 0 0;
	padding: 10px;
	background: #444; /* backup for non-RGBA */
	background: rgba(255,255,255, 0.1);
	list-style: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

ol#things li a {
	float: left;
	width: 200px;
	height: 135px;
	background: url(barb.jpg) no-repeat top left;
}

ol#things li a img {
	position: absolute;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
}

ol#things li#things-1 a {
	width: 200px;
	top: 20px;
	left: 10px;
}

ol#things li#things-2 a {
	width: 200px;
	top: 20px;
	left: 10px;
}

ol#things li#things-3 a {
	width: 200px;
	top: 20px;
	left: 10px;
}

ol#things li#things-4 a {
	width: 200px;
	top: 20px;
	left: 10px;
}

ol#things li#things-1 a:hover img {
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	-o-transform: scale(1.25);
	transform: scale(1.25);
}

ol#things li#things-2 a:hover img {
	top: 25px;
	left: 60px;
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	-o-transform: scale(1.25);
	transform: scale(1.25);
}

ol#things li#things-3 a:hover img {
	left: 60px;
}

ol#things li#things-4 a:hover img {
	-webkit-transform: rotate(-15deg);
	-moz-transform: rotate(-15deg);
	-o-transform: rotate(-15deg);
	transform: rotate(-15deg);
}

#footer-logos
{
	clear: both;
	text-align: center;
}

#footer-logos li
{
	display: inline;
}

#footer-logos a img
{
	opacity: 0.25;
	-o-transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#footer-logos a:hover img,
#footer-logos a:focus img
{
	opacity: 0.75;
}