/*
   Website Final Project

   RMNP Page Table Style Sheet
   Author: Daniel Whiting
   Date: 1/28/2016 

   Filename: mountaintable.css
*/

/* Styles for the mountainSpecs table */

table.mountainSpecs {
	font-size: 16px;
	margin-bottom: 20px;
	margin-left: 20px;
	float: right;
	border: 2px solid gray;
	border-collapse: collapse;
	background-image: url(tableback.png);
	background-position: bottom right;
	background-repeat: no-repeat;
	background-size: cover;
	width: 40%;
	
	-moz-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;

}

table.mountainSpecs td {
	padding: 0px 5px;
}

/* Style for table headers */

table.mountainSpecs thead {
	border-bottom: 2px solid gray;
	background: rgb(221, 238, 255);

}

table.mountainSpecs thead tr {
	height: 40px;
}

table.mountainSpecs thead th {
	padding: 0px 5px;
	letter-spacing: 2px;
}

/* Style for table caption */

table.mountainSpecs caption {
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 5px;
	text-align: center;
	margin-bottom: 10px;
}

/* Style for the table footer */

table.mountainSpecs tfoot {
	border-top: 2px solid gray;
	text-align: center;
	background-color: rgba(255, 255, 255, 0.6);
}

table.mountainSpecs tfoot tr {
		height: 40px;
		padding: 0px 20px;
}


/* Style for the table body */

table.mountainSpecs tbody tr {
	height: 50px;
	border-bottom: 1px solid gray;
	background: rgb(221, 238, 255);
}


}

table.mountainSpecs tbody tr:nth-of-type(even) {
	background-color: rgb(152, 228, 215);
	background-color: rgba(152, 228, 215, 0.6);
}

table.mountainSpecs tbody tr:nth-of-type(odd) {
	background-color: rgba(255, 255, 255, 0.6);
}

/* Styles for columns */

table.mountainSpecs col.firstColumn {
	width: 33%;
}

table.mountainSpecs col.middleColumn {
	text-align: center;
	width: 34%;
}

table.mountainSpecs col.lastColumn {
	width: 33%;
}
