/*

      New Perspectives on HTML, CSS, and JavaScript
      Final Project
      Author: Michael LaTour
      Date: 11/8/15
      IT 270

*/


#calendar_table {
   background-color: white; 
   font-size: 10px; 
   width: 70%;
   margin: 0px auto;
}

#calendar_head {
   font-weight: bold;
   text-align: center;
   font-size: 18px;
   color:  white;
   background-color: burlywood;
   width: 100%;

   -moz-border-radius-topleft: 10px;
   -webkit-border-top-left-radius: 10px;
   border-top-left-radius: 10px;

   -moz-border-radius-topright: 10px;
   -webkit-border-top-right-radius: 10px;
   border-top-right-radius: 10px;
} 

.calendar_weekdays {
   background-color: white;
   font-size: 12px; 
}

.calendar_dates {
   text-align: left; 
   vertical-align: top;
   font-size: 10px;
   padding: 5px;
   border: 1px solid gray;
   background-color: white;
   height: 60px;
}

#calendar_today {
   font-weight: bold; 
   color: lightyellow; 
   background-color: burlywood;
   border: 1px solid black;
}


