/*
   New Perspectives on HTML and CSS
   Additional Cases
   Case 1

   Young Notes Tables Style Sheet
   Author: David Katelansky
   Date:   08/06/2015

   Filename:         tstyles.css
   Supporting Files: none

*/

table.fees
{
   font-size: 14px;
   border: 10px solid rgb(68, 76, 169);
    border-collapse: collapse;
	margin: 10px auto 10px auto;
	width: 400px;
}

table.fees thead
{
   background-color: ivory;
}

table.fees td, th
{
   border: 1px solid black;
   padding: 5px;
   vertical-align: text-top;
}

table.fees td
{     
   text-align: right;  
}

table.fees td:first-child
{
   text-align: left;
}

table.fees td:nth-child(2), table.fees td:nth-child(3)
{
   background-color: rgb(232, 232, 255);
}