/** Author: Christopher Mungas **/
/** Date: May 20th, 2009 **/

/** Tutorial 7, Case 2 **/
/** Screen, TV, and TTY Style Sheet **/
/** ================================================================================== **/
  
body {
  width: 1000px; height: 800px;
  font-family: sans-serif; font-size: 10pt;
  background-color: #000033;
  text-align: center}

#wrap {
  width: 900px; height: 700px;
  margin: 0px auto; margin-top: 25px; padding: 0px;
  background-color: white; border: 1pt solid grey;}

#calendar {
  font-size: 7pt; margin: 0px auto; margin-top: 25px}
#calendar a:hover {
  text-decoration: underline}
#calendar th {
  font-size: 9pt; background-color: rgb(190,0,0); color: white; border: 1pt solid #000033}
#title {
  font-size: 14pt; background-color: rgb(190,0,0); color: white}
#prevmonth {
  font-size: 11pt; background-color: white; color: rgb(190,0,0)}

#calendar .callink {
  font-size: 11pt; background-color: white; color: rgb(190,0,0)}
.callink a:link {
  font-family: sans-serif; font-size: .9em; font-weight: bold; color: rgb(190,0,0); text-decoration: none}
.callink a:visited {
  font-family: sans-serif; font-size: .9em; font-weight: bold; color: rgb(190,0,0); text-decoration: none}
.callink a:hover {
  font-family: sans-serif; font-size: 1.0em; font-weight: bold; color: black; text-decoration: none;
  background-color: white}
.callink a:active {
  font-family: sans-serif; font-size: .9em; font-weight: bold; color: rgb(190,0,0); text-decoration: none}
 
#calendar td {
  text-align: right; vertical-align: top; height: 115px; width: 115px; padding: 2px;
  background-color: white; border: 1px solid black}

#calendar td.prev {
  background-color: rgb(215,215,215)}   
#calendar td.next {
  background-color: rgb(215,215,215)}    

#calendar th.prev {
  background-color: white; border: 1px solid black}
#calendar th.next {
  background-color: white; border: 1px solid black}
#calendar .weekend {
  background-color: lightblue}

.date {
  float: left; font-size: 9pt; font-weight: bold; color: rgb(190,0,0)}
.prevdate {
  float: left; font-size: 9pt; color: rgb(190,0,0)}
.nextdate {
  float: left; font-size: 9pt; color: rgb(190,0,0)}





