/*
  A grey based theme, inspired by Blinksale and their ColorBurn widget. http://firewheeldesign.com
  
  AUTHOR: Geoffrey Grosenbach http://nubyonrails.com
  
  Colors: 
    dk: 787888
    lt: 4f4f5b
    lter: a8a8a8
    white: ffffff
*/

/* TODO */

.calendar {
  margin: auto;
  color: black;
  text-align: center;
}

thead tr {
  color: black;
}

.monthName {
    color:#7cad0e;
    font-size: 16px;
    font-weight: bold;
}

.monthName th {
  font-weight: normal;
  text-align: right;
  padding-top: 10px;
  padding-bottom: 5px;
  color: white;
}

.dayName th {
  font-size: 12px;
  padding: 4px 4px 3px 4px;
  background-color: #e4e4e4;
  color: #5b5b5b;
  border-bottom: 1px solid white;
  text-align: center;
  font-weight:bold;
}

.otherMonth, .day, .specialDay {
  padding: 4px;
  text-align:center;
  /*border-right: 1px solid #111111;*/
}

.otherMonth {
  color: #999999;
  background-color: white;
}

.day, .specialDay {
 /* border-bottom: 1px solid #111111;*/
    background-color: white;
    font-weight:bold;
}
.specialDay {
  background-color: white;
  color: white;
}
.specialDay a, .specialDay a:visited, .specialDay a:hover {
  color: white;
  background-color: #7cad0e;
  text-decoration: none;
  padding: 4px 7px;
}
.specialDay a:hover {
  color: white;
  background-color: #7cad0e;
}
.weekendDay {
  background-color: white;
}
.today {
	background-color: white;
	color: black;
        border: 1px solid black;
}

.calendar_prev_month {
    background:transparent url(/images/calendar_prev.png) no-repeat scroll left top;
    overflow:hidden;
    text-indent:-1000px;
    width:16px;
    height:16px;
    display:block;
}

.calendar_next_month {
    background:transparent url(/images/calendar_next.png) no-repeat scroll right top;
    overflow:hidden;
    width:100%;
    height:16px;
    display:block;
}