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


body {
	width: 100%;
	height: auto;
	background-image: url("light_textured_backround.jpg");/*http://www.momorialcards.com/texturebackgrounds.html is where I found the background*/
	background-size: 100%;
}


/*Header*/

header {
float: left;
margin: auto;
}

header #logo {
	margin: 0 15px 0 0;
	float: left;
}


header nav{
    float: right;
	
    
}

header nav ul li{
    list-style: none;
    display: block;
    float: right;
    margin: 50px;
}

header nav ul li a{
    text-decoration: none;  
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
	color: black;
}

header nav ul li a:hover{
    color: #B9B9B9;
}
 

/*Layout*/

	#container {
	width: 960px;
	margin: auto;
}

	div#content {
	width: 758px;
	float: left;
	margin-top: 100px;
	}	

	div#sidebar {
	width: 202px;
	float: left;
	clear: both;

	}

	div#sidebar section {
	text-align: center;
	}

	div#content table { 
	width: 600px;
	margin-left: 10%;
	border: 3px solid;
	border-color: brown;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	color: brown;
	}


	div#content th {
	color: black;
	}

	div#content th, td {
	border: 2px solid #fff;
	}

	div#content tr:nth-child(2n+1){
	background-color: rgba(255,255,255,1);	
	}

	footer {
	clear: left;
	float: none;
	padding: 15px 0 30px 0;
	text-align: center;
	} 
	
/*Design and Fonts*/
h1, h2, h3, h4, p, address{
	font-family: 'Open Sans', sans-serif;
	color: brown;
}



h2 { 
	font-size: 25px;
}

h3 {
	font-size: 20px;
}

p { 
	font-size: 15px;
}

/*Smaller Laptops or Desktops*/
@media screen and (max-width: 960px){
div#content table { 
	width: 500px; /* Only made change to size of table*/
	margin-left: 10%;
	border: 3px solid;
	border-color: brown;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	color: brown;
	}


}


/*Tablet Size*/	

@media screen and (max-width: 758px){
	header #logo, nav {
	margin: auto;
	float: left;
	clear: both;
	}


	header nav ul li{
    list-style: none;
   	float: none;
    margin: 1%;
	display: block;
	clear: both;
	}

	#container {
	width: 758px;
	margin: auto;
	}

	div#content {
	width: 600px;
	float: left;
	}	

	div#sidebar {
	width: 158px;
	float: left;
	clear: both;

	}

	div#sidebar section {
	text-align: center;
	}

	div#content table { 
	width: 500px;
	border: 3px solid;
	border-color: brown;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	color: brown;
	}

}

/*Phones*/

@media screen and (max-width: 524px){
header {
	float: left;
	width: auto;
}

header #logo {
	float: left;
	width: 400px;
	height: auto;
	clear: both;
	margin: auto;
}

header nav{
    float: left;
	
    
}

header nav ul li{
    list-style: none;
	float: none;
	display: block;
	text-align: center;
  
}

	div#container, #content, #sidebar {
	width: 524px;
	height: auto;
	margin: auto;
}

div#sidebar img {
		width: 65px;
		height: auto;
		
	}

	div#content table { 
	width: 200px;
	height: auto;
	float: left;
	border: 3px solid;
	border-color: brown;
	font-family: 'Open Sans', sans-serif;
	text-align: center;
	color: brown;
	margin: auto;
	margin-top: -100px;
	
	}

	
}


	
	
	
	
	
	
	
	
