html, body {
	height: 100%;
	width: 100%;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

#title { display: none; }

#slider {
	height: 100%;
	width: 100%;
	position: fixed;
	z-index: 1;
}

.cycle-slideshow { width: 50% }
.cycle-slideshow img { width: 100%; height: auto }


#logo {
	background: url(img/shadow.png) bottom right no-repeat;
	position: fixed;
	z-index: 5;
	right: -2%;
	bottom: -14%;
	height: 100%;
	width: 70%;
	min-width: 400px;
	max-width: 900px;
	background-size: 100%;
	pointer-events: none;
}

#menu {
	position: absolute;
	z-index: 6;
	width: 100%;
	height: 50px;
	background: black;
	left: 0;
	bottom: 3%;
	text-transform: uppercase;
	font-size: 1.5em;
	line-height: 50px;
	text-align: right;
	box-shadow: 10px 0px 5px black;
}

#menu a, .slide h1 {
	font-family: Helvetica, Arial, sans-serif;
}

.slide h1 {
	color: #790000;
	width: 100%;
	border-bottom: 1px solid black;
	text-transform: uppercase;
	letter-spacing: 3px;
}

#menu a, #title {
	-webkit-margin-before: 0;
	-webkit-margin-after: 0;
	margin-right: 10%;
	float: right;
	text-decoration: none;
	color: white;
	font-weight: bold;
	letter-spacing: 5px;
}

#menu a:hover {
	color: #790000;
}

.slide {
	position: fixed;
	z-index: 4;
	height: 100%;
	width: 35%;
	padding: 50px;
	color: black;
	left: 2%;
	display: none;
	background: url(img/concrete.jpg) no-repeat #efede6;
	border-right: 10px black solid;
	border-left: 10px black solid;
	border-bottom: 10px black solid;
	padding-bottom: 150px;
}

.slidecontent {
	height: 800px;
}

.slidecontent p {
	font-size: 1.15em;
	line-height: 1.05em;
}

.int {
	color: #790000;
	text-transform: uppercase;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
}

.int.j1 {
	color: black;
}

@media only screen and (max-width : 900px) {

	#menu {
		bottom: 0;
		text-align: center;
		font-size: 1em;
		height: 100px;
	}
	
	#menu a {
		float: none;
	}
	
	#menu a.view {
		margin-right: 0;
	}
	
	#logo {
		display: none;
		height: 0px;
		width: 0px;
	}
	
	#title {
		display: block;
		width: 100%;
		margin-right: 0;
	}
	
	.cycle-slideshow { height: 50% }
	.cycle-slideshow img { height: 100%; width: auto }
	
	.slide {
		width: 100%;
		left: 0;
		border: 0;
		padding: 0;
		height: calc(100% - 100px);
	}

	.slidecontent {
		overflow-y: auto;
		padding: 10px;
		height: 100%;
	}
	
}