/*
   New Perspectives on HTML and CSS
   Final Project

   News Table Style Sheet
   Author: Robert Peterson
   Date:   04/01/2016

   Filename:         table.css
   Supporting files: 


/* Styles for the table */

   table.newslinks {
       font-size: 22px;
       margin: 0 auto;
       border-collapse: collapse;
       
   }    
  table.newslinks td {
       padding-top: 0px;
       padding-right: 5px;
       padding-left: 5px;
       padding-bottom: 0px;
   }
  table.newslinks caption {
       font-size: 24px;
       letter-spacing: 0px;
       text-align: center;
       margin-bottom: 10px;
   }
  table.newslinks thead tr {
       border-top: 2px solid gray;
       border-bottom: 2px solid gray;
       border-left: 2px solid gray;
       border-right: 2px solid gray;
       
   }
  table.newslinks thead th {
       padding-top: 0px;
       padding-right: 7px;
       padding-left: 7px;
       padding-bottom: 0px;
       letter-spacing: 1px;
   }
     
  
  table.newslinks tbody tr {
       text-align: center;
       height: 50px;
       border-top: 1px dotted gray;
       border-bottom: 1px dotted gray;
       border-left: 1px dotted gray;
       border-right: 1px dotted gray;
       
       
   }
 
  
 
                  

*/

