    /*
    	New Perspectives on HTML, CSS, and JavaScript
        7-4 Final Project: Website
        
        Author: Brooks C.
        Date:	05/30/2016
        
        Filename: 		recipe.css
        Supporting files: brewing.htm

    */
table class {
	border: none;
}

table {
	text-align: center;
	clear: both;	
	border: none;
    	font-size: 14px; 
	position: relative;
	bottom: 65px;
	margin: 0px auto;
    	width: 50%;
   
}

th {

   
    -moz-box-shadow: 3px 0px 5px rgb(101, 101, 101),
                      -3px 0px 5px rgb(101, 101, 101);
    -webkit-box-shadow: 3px 0px 5px rgb(101, 101, 101),
                      -3px 0px 5px rgb(101, 101, 101);
    box-shadow: 3px 0px 5px rgb(101, 101, 101),
              -3px 0px 5px rgb(101, 101, 101);
   background-color: rgba(141,163,163,1.00); 
   color: white; 
   font-variant: small-caps;
   font-weight: bold;
   letter-spacing: 2px;
   padding: 5px;
   text-align: left;
}

td {

    -moz-box-shadow: 5px 0px 10px rgb(101, 101, 101),
                      -5px 0px 10px rgb(101, 101, 101);
    -webkit-box-shadow: 5px 0px 10px rgb(101, 101, 101),
                      -5px 0px 10px rgb(101, 101, 101);
    box-shadow: 5px 0px 10px rgb(101, 101, 101),
              -5px 0px 10px rgb(101, 101, 101);
   color: white;
   vertical-align: top; 
   background-color: rgba(101, 101, 101, 0.65);
   padding: 10px;
}

td a {
   text-decoration: none; 
}

