@charset "utf-8";
/* CSS Document */

/*zero out all margins and padding*/
* {
	margin:0px;
	padding:0px;
}
/*set black background and standardize font size*/
body {
	background-color:#000000;
	font-size:62.5%;
}
/*fixes Firefox quirk that outlines link*/
a {
	outline:none;
}
/*remove borders from image links*/
a:link img, a:visited img, a:hover img, a:active img {
	border:none;
}
/*main "window" with persistant background image for entire website*/
div#container {
	width:786px;
	height:568px;
	margin-top:25px;
	margin-left:auto;
	margin-right:auto;
	background-image:url(../assets/background.jpg);
	background-repeat:no-repeat;
}
/*div for all navigation*/
div#nav {
	width:213px;
	height:568px;
	float:left;
}
div#nav img#description {
	margin-top:114px;
}
div#nav ul {
	margin-top:204px;
}
div#nav ul li {
	list-style:none;
}
/*main content window*/
div#content {
	width:573px;
	height:568px;
	float:right;
}
div#content img {
	margin-top:66px;
}
/*gallery page navigation*/
div#nav table {
	width:192px;
	height:262px;
	margin-top:14px;
	margin-left:14px;
}
div#nav table tr#first img {
	margin-top:0px;
}
div#nav table tr img {
	margin-top:10px;
}
