/*
   New Perspectives on HTML and CSS
   Tutorial 5
   Case Problem 3

   Dome Table Style Sheet
   Author: David Platter	
   Date:   2/23/16

   Filename:         jobstable.css
   Supporting files: bottom.jpg, bottomleft.jpg, bottomright.jpg,
                     left.jpg,right.jpg, tableback.jpg,
                     top.jpg, topleft.jpg, topright.jpg

*/


/* Styles for jobsToDo table */

table.jobsToDo 
	{
	
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin: 0px 0px 20px 20px;
	float: right;
	border-collapse: collapse;
	background: url("menatwork.jpg") no-repeat center top;
	}

/* Style for padding */

table.jobsToDo td
	{
	padding: 0px 5px 0px 5px;
	}

/* Styles for the table caption */

table.jobsToDo caption
	{
	font-size: 18px;
	letter-spacing: 5px;
	margin-bottom; 10px;
	caption-side: top;
	text-align: center;
	}

/* Table header styles */

table.jobsToDo thead
	

	

	table.jobsToDo thead tr
 	{
	height: 40px;
	padding: 0px 5px 0px 5px;
	letter-spacing: 2px;

	}

	{
	background-color: rgb(203, 50, 203);
	color: white;
	color: rgba(255, 255, 255, 0.5);
	}





/* Footer row height rule */

table.jobsToDo tfoot tr

	{
	height: 40px;
	}

/* Table body styles */

table.jobsToDo tbody tr
	{
	border-top: 1px dotted gray;
	height: 50px;
	}




/* column width styles */

table.jobsToDo tbody td:
firstColumn
	{
	col width="25%";
	}

middleColumns
	{
	col width="50%";
	}
lastColumn
	{
	col width="25%";
	}