@import url(http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,700);

html, body {
	margin:0;
	padding:0;
	width:100%;
	height:100%;
	overflow:hidden;
	background-color:#eee;
	color: #444;
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	font-family: "Roboto Condensed", sans-serif;
}

.loader {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color:#444;
	z-index:3;
	font-size:60pt;
	color: rgba(255,255,255,.5);
	text-align:center;
}

	.loader .fa {
		position:relative;
		top:40%;
	}

.title {
	color: rgba(0,0,0,.75);
	width: 100%;
	position: absolute;
	top: 0;
	padding: 10px 0px;
	border-bottom:1px solid lightgray;
	z-index:2;
	height:17px;
	
}

	.title h1 {
		text-align:left;
		display:inline-block;
		margin:0px;
		margin-left:5%;
		padding:0;
		line-height:1em;
		font-family: "Roboto Condensed", sans-serif;
		font-size:12pt;
		text-transform:uppercase; 
		float:left;
	}
	
		.title h1 a{
			text-decoration:none;
			color:inherit;
		}
		
			.title h1 a .fa{
				display:none;
				margin-left:5px;
			}
			
			.title h1 a:hover .fa{
				display:inline;
				//border-bottom:2px solid rgba(0,0,0,.75);
			}
	
	.title .social {
		float:right;
		text-align:right;
		margin-right:5%;
		width:125px;
	}
	
		.title .social h1 {
			margin-right:10px;
			display:inline-block;
		}
		
		.title .social a {
			color:inherit;
			margin-right:10px;
			font-size:12pt;
		}
		
		.title .social a:hover i {
			border-bottom:2px solid rgba(0,0,0,.75);
		}

		
		
.slideshow {
	width:100%;
	height:100%;
	font-family:Helvetica, Arial, sans-serif;
	font-size:10pt;
}

	.slideshow img {
		display:block;
		max-width:100%;
		margin:auto;
		border:1px solid gray;
	}
	
	.slideshow img.visible {
		display:block;
	}
	
	.slideshow .nav {
		position:fixed;
		opacity:0;
		transition:.25s ease;
		width:50%;
		height:100%;
		top:0;
	}
		
		.slideshow .nav:hover {
			opacity:1;
			cursor:pointer;
		}
	
		.slideshow .nav .fa {
			color:rgba(0,0,0,1);
			font-size:30pt;
			opacity:.7;
			transition:.25s margin-left margin-right ease;
		}
	
		.slideshow .nav.right  {
			text-align:right;
			right:0px;
		}
		
			.slideshow .nav.right .fa {
				margin-right:20px;
			}
			
			.slideshow .nav.right:hover .fa {
				margin-right: 10px;
			}
		
		.slideshow .nav.left {
			text-align:left;
			left:0px;
		}
			
			.slideshow .nav.left .fa {
				margin-left:20px;
			}
			
			.slideshow .nav.left:hover .fa {
				margin-left: 10px;
			}
		
	.slideshow .caption {
		position:absolute;
		bottom:0;
		left:5%;
		width:90%;
	}
	
		.slideshow .caption .credit {
			color: #888;
			font-size:9pt;
			text-transform:uppercase;
			margin-top:5px;
		}