/* These styles are for a calendar in the main content column. */

/* specific divs */
.calendar * {
  margin: 0;
  display: inline;
}

.calendar {
  background: #D5C2A2;
  width: 100%;
 }

.calendar h2 {
  font-size: 20;
 }

.calendar h3 {
  font-size: 16;
 }

.eventdaylist {
  background: #FFFFFF;
  width: 100%;
  min-width: 100px;
  min-height: 400px;
  height: 500px;
  float: left;
  overflow: auto;
  font-family: arial;
  font-size: 12;
}

li.event {
  display: block;
  float:left;
  width: 100%;
}

.time {
  float: left;
  width: 22%;
  margin-left: 15px;
  }

.description {
  float: right;
  width: 70%;
  }

