/*
      New Perspectives on HTML, CSS, and JavaScript
      Final Project
      Author: Michael LaTour
      Date: 11/8/15
      IT 270

*/

/* Table Menu Styles */
table.menu, survey {
    border: 10px outset burlywood;
    border-collapse: collapse;
    font-size: 11px;
    width: 55%;
    margin: 0px auto;
}

table.menu th, table.menu td {
    border: 2px solid gray;
}

/* Table Header Styles */

table.menu thead {
    background-color: lightyellow;
    color: black;
}


table.menu tbody td {
    padding: 5px;
    vertical-align: top;
    text-align: center;
}

/* Styles for the first column */

table.menu col.firstCol{
    width: 200px;  
}


/* Styles for table caption */

table.menu caption {
    caption-side: bottom;
    text-align: right;
}

caption {
    color:red;
}