@charset "utf-8";
/* CSS Document */

body {
	background-image: url(img/Asphalt.jpg);
	background-color: #000;
	background-size: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	font: normal 0.9em/150% 'Arimo', arial, verdana, sans-serif;
	text-shadow: 0 0 1px transparent; /* google font pixelation fix */
}
.wrap { /*Creates white background behind text */
	position: relative;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 20px;
	margin: 0;
	box-shadow: 0px 0px 0px 2px #999999;
	color: #000;
}
.header-logo { /*Displays logo on top of page */
	display: block;
	position: relative;
	width: 100%;
	height: 200px;
	background: url(img/logo.fw.png) no-repeat center;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	margin: 5% 0 -2% 0;
	padding: 0;
}
h1.phone {
	font-family: bello-pro, serif;
	font-size: 3em;
	font-weight: 400;
	color: #e0eff2;
	text-shadow: -4px 3px 0 #2b0404;
}
.border {
	border: 5px solid #2b0404;
}
/*---------------------------------
	TOP NAVBAR
-----------------------------------*/
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #000;
	color: #fff;
	z-index: 1000;
}
.navbar #phone {
	position: absolute;
	top: 0;
	right: 0;
	padding: 1em 1.3em;
	font-size: 1.2em;
	line-height: 100%;
	color: #efefef;
	text-decoration: none;
}
.navbar span {
	color: #2b0404;
}
.navbar ul {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.navbar li {
	margin: 0;
	padding: 0;
	list-style-type: 0;
	display: inline-block;
}
.navbar li a {
	display: inline-block;
	color: #efefef;
	padding: 1em 1.3em;
	text-decoration: none;
	text-transform: uppercase;
	line-height: 100%;
	font-size: 1.2em;
}

.navbar li.current>a,  .navbar li.current>a:hover,  .navbar li.current.hover>a {
	/* background: rgb(122,188,255); /* Old browsers */
		/* background: -moz-linear-gradient(top, rgba(122,188,255,1) 0%, rgba(96,171,248,1) 44%, rgba(64,150,238,1) 100%); /* FF3.6+ */
		/*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(122,188,255,1)), color-stop(44%,rgba(96,171,248,1)), color-stop(100%,rgba(64,150,238,1))); /* Chrome,Safari4+ */
		/*background: -webkit-linear-gradient(top, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* Chrome10+,Safari5.1+ */
		/*background: -o-linear-gradient(top, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* Opera11.10+ */
		/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7abcff', endColorstr='#4096ee',GradientType=0 ); /* IE6-9 */
		/*background: linear-gradient(top, rgba(122,188,255,1) 0%,rgba(96,171,248,1) 44%,rgba(64,150,238,1) 100%); /* W3C */
		
	background: rgb(43, 4, 4);
	background: -moz-linear-gradient(310deg, rgb(43, 4, 4) 30%, rgb(123, 4, 4) 70%);
	background: -webkit-linear-gradient(310deg, rgb(43, 4, 4) 30%, rgb(123, 4, 4) 70%);
	background: -o-linear-gradient(310deg, rgb(43, 4, 4) 30%, rgb(123, 4, 4) 70%);
	background: -ms-linear-gradient(310deg, rgb(43, 4, 4) 30%, rgb(123, 4, 4) 70%);
	background: linear-gradient(40deg, rgb(43, 4, 4) 30%, rgb(123, 4, 4) 70%);
	color: #fff;
	text-shadow: 0px -1px 0 rgba(0,0,0,0.2);
	cursor: default;
}
.navbar li a:hover,  .navbar li.hover>a {
	background: #f5f5f5;
	color: #828282;
}