/*styles.css*/





body{

	background:url(backgrounds/starry_sky_stock_by_budgie.jpg);
	margin:0;
	padding:0;
	



}

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}



h1,h2,h3,h4,h5,h6{
	Margin:0;
	text-align:center;

}
	


#wrapper {
	
	width:960px;
	margin:auto;
	padding:0;
	text-align:justify;
	
}




#header {
	
	height:220px;
	margin-top:20px;
	margin-bottom:20px;
	padding:0;

}



/*Make HTML5 layout elements block elements for older browsers*/

header, nav, aside, article, footer, section{
display:block;
}






/*Style for <a> tags in the nav section*/

nav a	{
background: url(navback.png) center repeat-x, url(navhover.png) center repeat-x;
color:white;
text-decoration:none;
outline:none;
padding: 15px 10px;
display:block;
float:left;
box-sizing:border-box;
width:12.5%;
text-align:center;

border-top:10px;

}

/*Unvisited and visited link styling*/

nav a:link, nav a:visited {
background: url(navback.png);
}
/*Styling for hover, tap, and current page*/
nav a:hover, nav a:active  {
background: url(navhover.png);
color:black;
}

/*Section containing multiple columns*/
.columns{
	display:table;
	border-collapse:collapse;
	width:100%;
	/*Border is optional, style to taste*/
	
	
		
}

/*Aside columns in columns div*/
.columns aside{
	display:table-cell;
	/*use any width and padding you like*/
	width:20%;
	padding:10px;
	background-color:#fbf0ca;
	border-right:solid 1px #000000;
	text-align:center;
	

}

/*Main article in columns*/
.columns article{
	display:table-cell;
	padding:5%;
	background-color:#ffffff;
	
}


/*suppress bullets in lists*/

ul{	
	list-style-type:none;

}



/*Float image to left of paragraph*/
img.floatLeft{
	float:left;
	margin-right: 20px;
}

/*Float image to right of paragraph*/
img.floatRight{
	float:right;
	margin-left: 20px;
}

/*Center image between margins*/
div.center{
	width: 100%;
	text-align:center;
}


/* center the table and put one blank line above and below*/

table{
	
	margin:1em auto;
	border-collapse:collapse;


}



/*borders around all cells and add top/bottom and side paddings*/

td{

	border:solid 1px gray;
	padding:5px 8px;
	
}

tr:nth-child(odd){
	background-color:#cef;
}

tr:nth-child(even){
	background-color:#ffd9b7;

}



td:nth-child(1) (3){
	background-color:#cef;
}

td:nth-child(2)(4){
	background-color:#ffd9b7
}