@charset "UTF-8";
/* CSS Document */
body{
	max-width:1980px;
	min-width:1024px;
	min-height:662px;
	width:100%;
	padding:0;
}

/* navigation bar */

nav{
	position:fixed;
	z-index:999;
	top:0;
	left:0;
	width:100%;
	min-width:1024px;
	height:80px;
	background:url(../images/nav/navBack.png) repeat-x;
	padding:0px;
	font-size:17pt;
}

#homeLink{
	display:table-cell;
	float:left;
	background:url(../images/ViOS%20Tree-01.svg) no-repeat;
	background-size:100%;
	width:15%;
	height:8.2vw;
	min-height:84px;

}

#homeLink a{
	display:block;
	color:#fff;
	float:left;
	text-align:center;
	width:100%;
	height:100%;
	padding-top:10%;
	padding-right:10%;
	-webkit-box-sizing:border-box;
	   -moz-box-sizing:border-box;
			box-sizing:border-box;
	-webkit-transition:-webkit-filter .5s ease;
	   -moz-transition:-webkit-filter .5s ease;
		-ms-transition:filter .5s ease;
		 -o-transition:-webkit-filter .5s ease;
			transition:opacity .5s ease;
	opacity:.1;
	filter: alpha(opacity=10);
	-webkit-filter:opacity(.1);
	
}

#homeLink a:hover{
	opacity:.7;
	filter:alpha(opacity=70);
	-webkit-filter:opacity(.7);
}
#homeLink a:active{
	opacity:1;
	filter:alpha(opacity=100);
	-webkit-filter:opacity(1);
}

nav h1{
	font-size:20pt;
	margin:20px 5% 0;
	width:40%;
	text-align:center;
	display:block;
	float:left;
	top:0;
	padding:3pt 0;
	border:#fff 2px solid;
	background:url(../images/nav/headerBack.png);
	background-size:100%;
}

	/* social media links */
	nav ul{
		display:block;
		position:relative;
		float:right;
		margin-top:0;
		height:100%;
		padding:0;
		list-style:none;
	}
	
	nav ul li{
		display:inline;
		float:left;
	}
	
	nav ul li a{
		display:block;
		margin:10px 10px;
		width:30px;
		height:30px;
		
	}
	
	nav ul li a span{
		display:none;
	}
	
	#facebook:hover, #twitter:hover, #google:hover, #soundcloud:hover{
		background-position:0px -30px;
	}
	
	#facebook:active, #twitter:active, #google:active, #soundcloud:active{
		background-position:0px -60px;
	}
		
		#facebook{
			background:url(../images/nav/facebookSprite.png) no-repeat 0px 0px;
		}
		#twitter{
			background:url(../images/nav/twitterSprite.png) no-repeat 0px 0px;
		}
		#google{
			background:url(../images/nav/googleSprite.png) no-repeat 0px 0px;
		}
		#soundcloud{
			background:url(../images/nav/soundcloudSprite.png) no-repeat 0px 0px;
		}
		
/* main content */

main{
	width:55%;
	margin:100px auto 300px auto;
	font-size:14pt;
}

#define{
	display:block;
	position:relative;
	border:#7D7D7D 2px solid;
	background:url(../images/main/greyBacker.png) repeat-y;
	background-size:cover;
	padding:0px 20px;
	top:40px;
	margin-bottom:100px;
}
#define img{
	position:relative;
	width:30%;
	margin:10px 35%;
}

h2{
	text-align:center;
}

/* photo styling */
section h1{
	display:block;
	position:relative;
}

section{
	clear:both;
	margin-top:10px;
	margin-bottom:15px;
}

.sectionTitle{
	display:block;
	position:absolute;
	left:0;
	height:200px;
	background:#C8B7B7;
	width:100vw;
}

.post{
	display:block;
	position:relative;
	clear:both;
	width:100%;
	padding:20px 0;
}

.photo{
	display:block;
	position:relative;
	float:left;
	padding:0;
}

.caption{
	display:block;
	position:absolute;
	width:100%;
	bottom:4px;
	left:0;
	background:#000;
	opacity:0;
	filter:alpha(opacity=0);
	padding:5px 10px;
	-webkit-box-sizing:border-box;
	   -moz-box-sizing:border-box;
			box-sizing:border-box;
	-webkit-transition:-webkit-filter .5s;
	   -moz-transition:-webkit-filter .5s;
		-ms-transition:filter .5s;
		 -o-transition:-webkit-filter .5s;
			transition:opacity .5s;
}

.caption p{
	padding:0;
	margin:0;
	font-size:10pt;
}

.caption span{
	color:#4B4B4B;
	font-size:8pt;
	float:right;
}

.caption span a{
	color:#4B4B4B;
}
.caption span a:hover{
	color:#fff;
}

.caption:hover, .photo:hover .caption{
	opacity:.8;
	filter:alpha(opacity=80);
}

.photo img{
	max-width:100%;
	max-height:100%;
	padding:0;
	margin:0;
}


/* contact form */
table{
	padding:0;
}
td{
	font-size:9pt;
}
th, td, td span{
	padding:0;
	-webkit-transition:color .5s, visibility .5s, border .5s;
	   -moz-transition:color .5s, visibility .5s, border .5s;
		-ms-transition:color .5s, visibility .5s, border .5s;
		 -o-transition:color .5s, visibility .5s, border .5s;
			transition:color .5s, visibility .5s, border .5s;
}
th{
	padding-top:30px;
	text-align:left;
	font-weight:200;
}
input, textarea{
	background:none;
	border:#fff 1px solid;
	padding:5px;
	color:#fff;
	margin:0;
	outline:none;
}
input:focus, textarea:focus{
	outline:none;
}

select:focus{
	outline:#991b1e ridge 3px;
}
input[disabled]{
	border:none 0px;
}

input[type="submit"]:active{
	color:#420B0D;
	border-color:#991b1e;
}

input[type="submit"]:focus, input[type="submit"]:hover{
	border-color:#991b1e;
}

.required[value]{
	color:#991b1e;
}
.required[value]:focus{
	color:#fff;
}


/* footer */
footer{
	position:fixed;
	bottom:0;
	height:150px;
	width:100%;
	background:url(../images/footer/footerBack.png) repeat-x;
	font-size:10px;
	color:#494949;
	z-index:100;
}
footer a{
	color:#4A4A4A;
}
footer a:hover{
	color:#707070;
}

#leftFooter{
	position:absolute;
	display:block;
	float:left;
	bottom:5px;
	left:0;
}

#rightFooter{
	position:absolute;
	display:block;
	float:right;
	bottom:5px;
	right:1%;
}

#middleFooter{
	position:absolute;
	bottom:5px;
	margin:0 85% 0 15%; 
	text-align:center;
}
