/*
   New Perspectives on HTML, CSS, and JavaScript
   Tutorial 5
   Case Problem 2

   CCC Calendar Table style sheet
   Author: Lewis Kern
   Date:   3/1/2014

   Filename:         calendar.css
   Supporting Files: bottom.jpg, bottomleft.jpg, bottomright.jpg,
                     left.jpg, right.jpg, top.jpg,
                     tab.jpg, topleft.jpg, topright.jpg, redtab.jpg

*/


#calendar_table {
   font-size: 10px; 
   font-family: Tahoma, Geneva, sans-serif;
   margin-left:5%;
   padding: 10px;
   width: 90%;
}

#calendar_head {
   color: white; 
   letter-spacing: 5px;
   height: 25px;
   line-height: 25px;
   font-size: 16px;

   background-color: rgb(119,136,153); 
}

.calendar_weekdays {
   background-color: white;
   width: 14%; 
   font-size: 14px; 
   border-bottom: 3px solid gray;
}

.calendar_dates {
   text-align: left; 
   vertical-align: top;
   font-size: 12px;
   padding: 3px;
   border: 1px dotted gray;
   background-color: white;
   height: 60px;
}

#calendar_today {
   font-weight: bold; 
   color: white; 
   background-color: rgb(119,136,153);
   border: 1px solid black;
}


