/*--------------------------------------------------
---------- Universal Page Styles
--------------------------------------------------*/

html{
	overflow: hidden;
	font-family: sans-serif;
	cursor: default;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
}

body{
	margin: 0;
	padding: 0;
}

#container{
	position: absolute;
	top: 106px;
	bottom: 93px;
	left: 10px;
	right: 10px;
}

.ie8back{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	bottom: 0;
}

a{
	text-decoration: none;
	color: white;
	border: none;
}

a:active{
	border: none;
}

img{
	border: none;
}

#header{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: .8;
	background-color: black;
	height: 42px;
	padding-top: 10px;
}

#logo{
	height: 28px;
	position: absolute;
	left: 10%;
	top: 10px;
	z-index: 10;
	border: none;
	opacity: .5;
	padding: 0;
	margin: 0;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#logo:hover{
	opacity: 1;
}

#pageTitle{
	font-family: sans-serif;
	font-size: 20px;
	font-weight: 8;
	color: white;
	position: absolute;
	right: 10%;
	opacity: .75;
}

#footer {
	font-family: sans-serif;
	font-size: 12px;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	color: white;
	opacity: .8;
	background-color: black;
	height: 16px;
	padding: 8px 0;
}

#copyright{
	position: absolute;
	bottom: 8px;
	left: 10px;
	opacity: .5;
}

#email{
	position: absolute;
	bottom: 8px;
	right: 10px;
	opacity: .5;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#email:hover{
	opacity: 1;
}

#email a{
	color: white;
	text-decoration:none;
}

#disclaimer{
	background-color: yellow;
	padding: 10px;
	font-size: 18px;
	position: fixed;
	bottom: 40px;
	left: 10%;
	opacity: 1;
	width: 80%;
	text-align: center;
}

#disclaimer a{
	color: blue;
}

/*--------------------------------------------------
---------- Navigation Styles
--------------------------------------------------*/

#nav{
	position: fixed;
	width: 600px;
	left: 50%;
	top: 54px;
	margin-left: -300px;
	padding-top: 6px;
	margin-top: -2px;
	height: 8px;
	color: black;
	color: rgba(255, 255, 255, 0);
	background-color: black;
	background-color: rgba(0, 0, 0, .6);
	-moz-border-radius: 0 0 8px 8px;
	border-radius: 0 0 8px 8px;
	text-align: center;
	
	-webkit-transition: height 0.5s ease-in-out;
	-moz-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}

#nav:hover{
	height: 26px;
}

.navLink{
	color: white;
	font-size: 16px;
	padding: 0 4px;
	margin-left: 12px;
	margin-right: 12px;
	opacity: 0;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#nav:hover .navLink{
	font-size: 16px;
	opacity: .4;
}

#nav:hover .navLink:hover{
	opacity: 1;
}

/*--------------------------------------------------
---------- Tab and Button Styles
--------------------------------------------------*/

.tab{
	margin: 0;
	width: 350px;
	color: white;
	padding: 8px 14px;
	position: absolute;
	-moz-border-radius: 8px 8px 0 0;
	border-radius: 8px 8px 0 0;
	background-color: black;
	background-color: rgba(0, 0, 0, .8);
}

.tab.large{
	top: -46px;
	height: 30px;
	width: 350px;
	padding: 8px 14px;
}

.tab.small{
	top: -39px;
	height: 23px;
	width: 268px;
	padding: 8px 10px;
}

.tab.left{
	left: 0;
}

.tab.right{
	right: 0;
}

.button{
	position: absolute;
	margin: 0;
	top: -46px;
	width: 260px;
	color: white;
	padding: 8px 14px;
	-moz-border-radius: 8px;
	border-radius: 8px;
	background-color: black;
	background-color: rgba(0, 0, 0, .8);
}

.button.back{
	left: 0;
	text-align: right;
}

.button.forward{
	right: 0;
}

.arrows{
	color: white;
	position: absolute;
	background-color: transparent;
}

.back .arrows{
	left: 40px;
	background-color: transparent;
	
	-webkit-transition: left 0.5s ease-in-out;
	-moz-transition: left 0.5s ease-in-out;
	-o-transition: left 0.5s ease-in-out;
	transition: left 0.5s ease-in-out;
}

.forward .arrows{
	right: 40px;
	background-color: transparent;
	
	-webkit-transition: right 0.5s ease-in-out;
	-moz-transition: right 0.5s ease-in-out;
	-o-transition: right 0.5s ease-in-out;
	transition: right 0.5s ease-in-out;
}

.back:hover .arrows{
	left: 14px;
	background-color: transparent;
}

.forward:hover .arrows{
	right: 14px;
	background-color: transparent;
}

#project:hover .arrows{
	right: 14px;
	background-color: transparent;
}

/*--------------------------------------------------
---------- Home Page
--------------------------------------------------*/

#menu{
	display: block;
	position:absolute;
	bottom: 15%;
	left: 10%;
	margin: 0;
	padding: 0;
}

.menuItem {
	position: relative;
	color:white;
	margin-bottom: 16px;
	left: 0px;
	
	-webkit-transition: left 0.5s ease-in-out;
	-moz-transition: left 0.5s ease-in-out;
	-o-transition: left 0.5s ease-in-out;
	transition: left 0.5s ease-in-out;
}

.menuItem:hover{
	left: 45px;
	cursor:default;
}

.menuText{
	font-size: 40px;
	font-family: sans-serif;
	background-color: black;
	background-color: rgba(0, 0, 0, .6);
	padding: 4px 10px;
	border-radius: 5px;
}

/*--------------------------------------------------
---------- Contact Page
--------------------------------------------------*/

#contactMain{
	width: 45%;
	position: absolute;
	right: 5%;
	color: white;
	margin-top: 75px;
	padding-bottom: 50px;
}

#about{
	padding: 16px;
	background-color: black;
	background-color: rgba(0, 0, 0, .8);
}

#about .tab.large.left{
	width: 40%;
}

#about img{
	width: 50%;
}

#about a{
	opacity: .5;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#about a:hover{
	opacity: 1;
}

/*--------------------------------------------------
---------- Photography Page
--------------------------------------------------*/

#num{
	position: absolute;
	left: 50%;
	margin-left: -50px;
	bottom: 60px;
	color: white;
	width: 100px;
	text-align: center;
}

#bullets{
	position: absolute;
	left: 0;
	bottom: 35px;
	width: 100%;
	text-align: center;
}

#bullets a{
	padding: 0 5px;
	font-size: 20px;
	opacity: .25;
}

.photo.arrows{
	bottom: 59px;
	font-size: 18px;
}

.prev.arrows{
	left: 50%;
	margin-left: -60px;
	opacity: .25;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

.next.arrows{
	right: 50%;
	margin-right: -60px;
	opacity: .25;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

.prev.arrows:hover{
	opacity: 1;
}

.next.arrows:hover{
	opacity: 1;
}

#bullets a:hover{
	opacity: 1;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#bullets .current{
	opacity: 1;
}

.navArea{
	height:100%;
	width: 30%;
	position: absolute;
	top:0;
}

#prevArea{
	left:0;
}

#nextArea{
	right:0;
}

.photoNav{
	position:absolute;
	top: 50%;
	width: 160px;
	color: white;
	font-size: 28px;
	font-family: sans-serif;
	background-color: black;
	background-color: rgba(0, 0, 0, .5);
	-moz-border-radius: 15px;
	border-radius: 15px;
	padding: 20px;
}

#prev{
	left:-200px;
	text-align: right;
	
	-webkit-transition: left 0.5s ease-in-out;
	-moz-transition: left 0.5s ease-in-out;
	-o-transition: left 0.5s ease-in-out;
	transition: left 0.5s ease-in-out;
}

#next{
	right:-200px;
	text-align: left;
	
	-webkit-transition: right 0.5s ease-in-out;
	-moz-transition: right 0.5s ease-in-out;
	-o-transition: right 0.5s ease-in-out;
	transition: right 0.5s ease-in-out;
}

.navArea:hover #prev{
	left:-80px;
}

.navArea:hover #next{
	right:-80px;
}

/*--------------------------------------------------
---------- Reel Page
--------------------------------------------------*/

#motionMain{
	width: 900px;
	height: 506px;
	position:absolute;
	left: 50%;
	top: 50%;
	margin-left: -450px;
	margin-top: -220px;
	background-color: black;
	background-color: rgba(0, 0, 0, .8);
}

/*--------------------------------------------------
---------- Portfolio Page
--------------------------------------------------*/

#portfolioMain{
	width: 900px;
	position:absolute;
	left: 50%;
	margin-top: 140px;
	margin-left: -450px;
}

#project{
	position: relative;
	margin-bottom: 80px;
}

#project.left {
	float: left;
}

#project.right {
	float: right;
}

/*.over{
	position: relative;
	top: -236px;
	opacity: 0;
	
	-webkit-transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-o-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

#project:hover .over{
	opacity: 1;
}*/

/*--------------------------------------------------
---------- Project Page
--------------------------------------------------*/

#projectMain{
	width: 900px;
	position:absolute;
	left: 50%;
	margin-top: 80px;
	margin-left: -450px;
	padding-bottom: 50px;
	color: white;
}

#details{
	width: 100%;
	height: 277px;
	margin-top: 75px;
	margin-bottom: 20px;
	position: relative;
	background-color: black;
	background-color: rgba(0, 0, 0, .8);
	-moz-border-radius: 0 8px 8px 8px;
	border-radius: 0 8px 8px 8px;
}

#projdesc{
	position: absolute;
	top: 15px;
	left: 12px;
	width: 600px;
	margin-bottom: 20px;
}

#projdesc a{
	text-decoration: underline;
}

#tools{
	position: absolute;
	top: 15px;
	right: 12px;
	width: 225px;
	margin-bottom: 20px;
}

#process{
	position: absolute;
	top: 106px;
	left: 14px;
	width: 872px;
}

.col3left {
	width: 280px;
	height: 157px;
	position: absolute;
}

.col3right {
	width: 280px;
	height: 157px;
	position: absolute;
	right: 0;
}

.col3mid {
	width: 280px;
	height: 157px;
	position: absolute;
	left: 296px;
}

.col3{
	padding-bottom: 40px;
}