/* Start of CMSMS style sheet 'Calendar CSS example' */
/*
Example stylesheet for Calendar module

For using this "big"-class insert something like this in your page
or template;

{cms_module module='Calendar' table_id='big'}

*/


/** large calendar rules (assuming table_id='big') **/
/* border on for #big */



#big{
  width:100%;
  margin: 0px;
  border-collapse:    collapse;
  border: 1px solid #000;
}

/* nice squares for the #big table */
#big th
{
  border: 1px solid black;
  padding: 3px;
  width: 75px;
}

#big td {
  border: 1px solid black;
  vertical-align: top;
  padding: 3px;
  height: 75px;
  width: 75px;
}

/* format summaries nicely in #big */
#big ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 5px;
}

#big li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #big */
#big td
{
  background-color: transparent;
}

#big .calendar-day
{
  background-color: #99B200;
}

#big .calendar-today
{
  font-weight: normal;
  background-color: #99B200;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}

.calendar-date-from {
font-style:italic;
padding:0px 0px 8px 0px;
}
/* End of 'Calendar CSS example' */

