/*
  IT-270 SNHU Final Project

      Author: Troy Williams
      Date:   08/06/15

      Filename:         table.css
   

*/

/* Table body styles */

table.homeTableSpecs tbody td {
	padding: 3px;
}

table.homeTableSpecs tbody tr {
	height: 57px;
	text-align: center;  
}

table.homeTableSpecs tbody tr:nth-of-type(even){
	background-color: rgba(255, 255, 255, 0.60)
}

table.homeTableSpecs tbody tr:nth-of-type(odd){
	background-color: rgba(152, 228, 215, 0.60);
}

/* Styles for the table caption */
table.homeTableSpecs caption {
		font-size: 18px;
		letter-spacing: 5px;
		text-align: center;
		margin-bottom: 1px;
}

/* Table header styles */
table.homeTableSpecs thead  tr{
	background: url("../images/top.jpg") repeat;
	border-bottom: 2px solid gray;
	height: 10px;
}

table.homeTableSpecs thead  th{
	padding: 1px;
	text-align: center;
	
}

table.homeTableSpecs thead tr th:first-of-type {
	background: url("../images/topleft.jpg") no-repeat;
	
}

table.homeTableSpecs thead tr th:last-of-type {
	background: url("../images/topright.jpg") no-repeat;
	
}

/*Table footer styles */
table.homeTableSpecs tfoot {
	border-top: 2px solid gray;
	text-align: center;
	height: 10px;	
}


/* Styles for the first column */
table.homeTableSpecs col.firstColumn {
	width: 5%;
}

/* Styles for the middle column */
table.homeTableSpecs col.middleColumn {
	width: 5%;
}

/* Styles for the last column */
table.homeTableSpecs col.lastColumn {
	width: 5%;
}

