/* defaults, globals, and miscellaneous
==============================================================================*/
* { /* removes defaults from all elements */
	margin: 0;
	padding: 0;
	}

body {
	background: #fff url(/bg/bg.png) no-repeat fixed bottom right;
	text-align: center;
	font: Calibri;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}

a {
	text-decoration: none;
	}


/* container for everything on page
==============================================================================*/
#container{
	position: absolute;
		top: 50%;
		left: 50%;
	width: 900px;
		margin-left: -400px;
	height: 600px;
		margin-top: -340px;
	overflow: hidden;
}
.slideshow {
	background:url(../bg/slideBG.png) no-repeat center;
	overflow: hidden;
}
/* navigation
==============================================================================*/
#nav {
	margin: 0 auto;
	height: 480px;
	list-style: none;
}
	
#nav li {
	float: left;
	height: 480px;
	width: 200px;
	}

#nav li a {
	display: block;
	width:200px;
	height: 480px;
	text-indent: -5000px;
	overflow: hidden;
	background-position: top;
	}
	
	#navPhoto {
		background: url(/images/photoSplash.png) no-repeat;
		}
	#navWeb {
		background: url(../images/webSplash.png) no-repeat;
		}
	#navVideo {
		background: url(../images/videoSplash.png) no-repeat;
		}
	#navContact {
		background: url(../images/contactSplash.png) no-repeat;
		}

#nav li a:hover {
	background-position: bottom;
	}

