@charset "UTF-8";
/* CSS Document */

/* General code */

body {
	background: black;
	color: #fff;
    margin: 0;
	font: 18px "Josefin Sans Std Light", "Arial Narrow", Arial, "Helvetica Neue", Helvetica, Geneva, sans-serif;
    text-align:center;
}

a {
	color: 	orange;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

#nav {
	text-align: left;
	padding: 10px;
}

img {
	margin-bottom: 8px;
	border: 2px solid orange;
}

img a:hover {
}

a:hover img {
	border: 2px solid orangered;
}

.footing {  font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; font-style: normal; font-weight: normal; color: #999999; letter-spacing: 4pt}

/* column management */

#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}

#container .column {
  position: relative;
  float: left;
	background: rgb(50, 38, 03);
}
#center {
  width: 100%;
}

#photos {
	clear: both;
	margin: 0 auto;
	text-align: center;
}

#photos div {
	margin: 10px 26px 0 5px;
	width: 220px;
/* I found this solution to the IE6 vs. rest of the world display problem here: http://blog.hedgerwow.com/2007/11/14/item-list-grid-real-world-practice-with-displayinline-block-across-browsers/ */
display:-moz-inline-stack;/*Firefox need this to simulate display:inline-block*/
display:inline-block; /*IE does not apply this to Block Element, and Firefox does not render this, too*/
_overflow:hidden;/*fix IE6 to expanded content*/
zoom:1;/*trigger hasLayout*/
*display:inline;/*once hasLayout is true, set display:inline to block element will make display:inline behave like display:inline-block*/
}


