@charset "utf-8";
/* CSS Document */
		
/*Accounting for device browser viewport and IE10's snap mode*/
@viewport {
	width: device-width;
}
@-o-viewport {
	width: device-width;
}
@-ms-viewport {
	width: device-width;
}

/*creating responsive body size and a standard grey background color*/		
body {
	background-color: #C5C0A7;
	margin: 0;
	width: auto;
	height: auto;
}

/*HEADER*/
	
.header {
	background-color: rgba(21,56,75,0.8);
	margin: 0 0 1vw 0;
	width: 100vw;
}
	
#logo img {
	max-width: 95vw;
	max-height: 20vw;
	margin: 1vw 0 0 2vw;
}
		
div.call {
	position: absolute;
	top: 9vw;
	right: 30vw;
	-ms-transform: rotate(-15deg);
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg);
	font-family: 'Rosario', sans-serif;
	font-size: 3.5vw;
	color: #ffffff;
	text-shadow: 2px 2px #9a1217;
}
		
div.phone a {
	text-decoration: none;
	position: absolute;
	top: 12vw;
	right: 13vw;
	font-size: 3.25vw;
	color: #ffffff;
}

/*horizontal navigation bar*/
		
#nav {
	position: relative;
	width: 100%;
	top: 100%;		
}
		
#nav ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border: 0px;
	overflow: hidden;
}
		
#nav li {
	float: left;
	padding: 0 2vw 2vw 2vw;
}
		
#nav a {
	text-decoration: none;
	text-shadow: 3px 3px #333333;
	display: block;
	width: auto;
	color: #ffffff;
	font-family: 'Rosario', sans-serif;
	font-size: 1.85vw;
}

#nav a:hover {
	color: #9A1217;
}

/*adding special formatting to nav items that are active pages*/
.header #nav li.on a {
	color: #9A1217;
	text-shadow: 2px 2px #999;
}
	
/*formatting home page text as a caption to the slide show*/	
		
#caption p {
	position: absolute;
	left: 3%;
	width: 30%;
	margin: 0;
}
	
/*SLIDE SHOW*/
		
#slideshow {
	position: relative;
	width: 65vw;
}
		
#slideshow IMG {
	position: absolute;
	top: 0;
	left: 50%;
	width: 65vw;
	z-index:8;
	opacity: 0.0;
}
		
#slideshow IMG.active {
	z-index:10;
	opacity: 1.0;
}
		
#slideshow IMG.last-active {
	z-index:9;
}

/*regular page formatting*/

#content {
	margin: 1vw 2vw;
	font-family: 'Rosario', sans-serif;
	min-height: 400px;
}

#about {
	float: left;	
	padding: 0 8vw 0 2vw;
	width: 19vw;
	height: auto;
}

#ourbusiness {
	display: inline;
	float: left;
	width: 65vw;
	min-height: 35vw;
	padding: 3vw 0;
}

/*GALLERY*/

/*clearfix*/

.clear {
	clear:both;
	}
	
/*nomargin for right hand photos in gallery*/
div.nomargin {
	margin-right: 0px;
}

.pic {
	float: left;
	margin: 0 15px 15px 0;
	border: 5px solid white;
	width: 200px;
	height: 250px;
}
	
.pic a {
	width: 200px;
	height: 250px;
	text-indent: -99999px;
	display: block;
}
		
/*FOOTER*/

/*footer icons*/
img.wide {
	width: 10vw;
	height: auto;
}
		
img.narrow {
	width: 4vw;
	height: auto;
}
		
footer ul {
	list-style-type: none;
	margin: 0;
}
		
footer li {
	float: left;
	padding: 0 2vw 0 0;
}

footer p {
	clear: both;
	font-size: smaller;
	text-indent: 38px;
}

/*ACCOUNTING FOR DIFFERENT DEVICES*/

/*Narrow devices including iPhone 6*/	
@media (max-width: 520px) {
	#body {width: 65vw;}
	#nav ul {display: none;}
	#caption p {width: 65vw; top: 63.5vw; left:13%;}
	#slideshow IMG {left:10%; width: 75vw;}
	footer {position: absolute; bottom: -85vw;}
}
		
@media (min-width: 520px) {
	#nav select {display: none;}	
}

@media (min-width: 520px) and (max-width: 672px) {
	/*#footer {bottom: -95vw;}*/
}
	
/*Narrow and short including iPhone 5 and landscape view*/	
@media (max-height: 560px) and (max-width: 520px) {
	.header {position: relative; top: 0;}
	#content {position: relative; top: 0;}
	#caption p {top: 35vw;}
	#slideshow {position: absolute; top: 0;}
	/*#footer {position: relative;}*/
}
		
@media (min-width: 1000px) {
	#caption p {font-size: 140%;}
	/*#footer {bottom: -28vw; left: 1%;}*/
}
