/*
   IT-270 Final Project

   PC Tables Style Sheet
   Author: Jacob Talbot
   Date:   26 March 2016

   Filename:         pctable.css
   Supporting Files: 

*/

/* Styles for Pricing Table */

table.pricing {
	border: 10px outset rgb(97, 30, 2);
	border-collapse: collapse;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75;
	width: 100%;
	}

table.pricing th, table.pricing td {
	border: 1px solid gray;
	}

/* Table Header Style */

table.pricing thead {
	background-color: rgb(255, 255, 99);
	color: black;
	}

table.pricing thead tr {
	height: 50px;
	}

/* Table Body Style */

table.pricing tbody tr {
	background-color: gray;
	background-color: rgba(255, 255, 255, 0.8);
	height: 40px;
	}

table.pricing tbody td {
	padding: 5px;
	vertical-align: top;
	text-align: center;
	}

/* Table Caption Styles */

table.pricing caption {
	color: rgb(255, 255, 99);
	caption-side: bottom;
	text-align: right;
	}
