/*
	Drive Way Doctors Intern-ship
	
	Author: Saad Mohammed
	Date: 2/24/2014
	
	FileName: gallery.css
	Supporting Files: asphalt.jpg
*/

 
*{
	font-family: Verdana, Geneva, sans-serif;
	font-size: 100%;
	color: white;
}

body{
	background-image: url(gallery-bg.jpg);	/* sets the background */
	background-size: 100%;
	background-repeat: no-repeat;
	position: relative;
	width: 98%;
	min-width: 1000px;
	max-width: 1400px; 
	}
/* Header Styles*/
header img {
	float: left;
	width: 45%;
}
/* horizontal navigation list */
nav.horizontal {
	margin-left: 10%;
	text-decoration: none;
	}
nav.horizontal li {
	display: block;
	float: left;
	width: 15%;
	padding: 5px 0px;
	text-align: center;
	}
nav.horizontal li a {
	color: white;
	text-decoration: none;
	font-size: 18px;
	}
nav.horizontal li a:hover {
	background-color: #FFFF6C;
	border: 2px solid rgb(215, 181, 151);
	color: black;
	}
/* Section styles */
section {
	clear: left;
	float: left;
	margin-left: 12%;
	margin-top: 20px;
	width: 58%;
	}
section p {
	margin-left: 27%;
	font-size: 20px;
	color: gold;
}
/* Figure box styles */
figure {
	clear: left;
	float: left;
	width: 125%;
	}
figure div{
	overflow: auto;
	white-space: nowrap;
	}
figure div img {
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	}
figure figcaption {
	background: black;
	font-size: 80%;
	font-weight: italic;
	text-align: center;
	margin-top: 5px;
	}
/*Like us button */
#likeUs {
border: 2px solid blue;
top: 50%;
margin-top: -52px;
cursor: pointer;
width: 35px;
height: 90px;
position: fixed;
right: 0;
text-indent: -9999px;
z-index: 999;
display: inline-block;
}
