/* 

  New Perspectives on HTML and CSS
  Final Project
  
  R.G. Zachrich Construction, Inc. Style Sheet
  Author: Jen Zachrich
  Date: 12/5/2012

  Filename:	links.css
  Supporting Files:   

*/



/* Page Body Styles */



body { 
	background-color: rgb(51,51,51); 
	position: relative;
	color: white; 
	width: 85%; 
	margin-right: auto; 
	margin-left: auto; }


/* Header Styles */

header {
	background-color: rgb(31,31,31);   
	}

header img {
	width: 20%; 
	}


/* General Navigation Styles */


nav a {
	text-decoration: none; 
	}

nav li {
	list-style: none; 
	}




/* Horizontal Navigation Styles */


nav.horizontalNAV li { 
	margin: 10px 0px; 
	float: right; 
	text-align: center; 
	font-size: 0.9em; 
	width: 18%;   
	font-family: 'Bebas Neue Regular', sans-serif;}

nav.horizontalNAV a {
	color: white; 
	display: block;  
	}

nav.horizontalNAV a:hover {
	background-color: rgb(105,96,87); 
	background-color: rgba(255,255,255, 0.3); 
	}



/* Left Image Section */


#LeftImages { 
	
	float: left; 
	clear: right;
	background: url("Red_back.jpg"); 
	border-bottom: 4px solid black; 
	height: 500px;
	width: 30%; 
	}

#LeftImages img {
	
	
	width: 32%; 
	margin: 15px 20px 10px 35px; 
	}


/* Main Section Styles */


#main { 
	float: left; 
	background-color: rgb(31,31,31); 
	border-bottom: 4px solid black; 
	height: 500px; 
	width: 40%; 
	}

#main img {
	float: left; 
	width: 100%; 
	height: 300px;
	}

#main h1 {
	background-color: black; 
	color: white; 
	text-align: center; 
	font-size: 1.5em; 
	margin-bottom: 5px;
	padding: 10px 0px; 
	font-family: 'Bebas Neue Regular', sans-serif; 
	letter-spacing: 1.5px;
	}

#main p {
	text-align: center; 
	font-family: "Bebas Neue Regular", sans-serif; 
	font-size: 1.0em; 
	}





/* Right Images Section Styles */


#RightImages { 

	float: left; 
	background: url("Red_back.jpg"); 
	border-bottom: 4px solid black;
	height: 500px; 
	width: 30%;
	}

#RightImages img {
	
	width: 32%; 
	margin: 15px 20px 10px 35px; 
	}





/* Section Address */



#address {
	float: left; 
	width: 100%; 
	background-color: rgb(31,31,31); 
	padding: 10px 0px; 
	height: 150px; 
	border-bottom: 4px solid black; 
	} 

#address p {
	margin: 12px 0px; 
	text-align: center; 
	font-family: 'Century', serif; 
	font-style: italic; 
	color: white; 
	letter-spacing: 2px; 
	font-size: 0.8em;
	position: relative; 
	top: 10px; 
}




