/* Start of CMSMS style sheet 'calendar' */
/*
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'}

*/



/* make all links red */
.calendar tr td a
{
  color: #002e65;
}

/* highlight "today" for the small calendar */
.calendar-today
{
  font-weight: bold;
  background-color: #002e65;
  color: #ffffff;
}
.calendar-today a:link {color: #ffffff;}
.calendar-today a:visited {color: #ffffff;}
.calendar-today a:hover {color: #ffffff;}
.calendar-today a:active {color: #ffffff;}

/* display the "upcominglist" as one line per entry (assuming table_id='cal-upcominglist') */
#cal-upcominglist .calendar-date-title
,#cal-upcominglist .calendar-summary-title
{
  display: none;
}

#cal-upcominglist h2
,#cal-upcominglist .calendar-date
,#cal-upcominglist .calendar-summary
{
  display: inline;
  margin-right: 5px;
}

/* tidy up text sizes for lists */
#cal-list h1, #cal-upcominglist h1
{
  color: #354d69;
  font-size: 120%;
}
#cal-list h2, cal-upcominglist h2
{
  font-size: 110%;
}

/** large calendar rules (assuming table_id='big') **/
/* border on for #big */
#big{
  margin: 0px;
  border-collapse:    collapse;
  border: 3px; 
  border-color: #000000;
}

/* nice squares for the #big table */
#big th
{
  border: 1px;
  border-color: #000000;
  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: #ede4c7;
}

#big .calendar-day
{
  background-color: #adb79f;
}

#big .calendar-today
{
  font-weight: normal;
  background-color: #adb79f;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}

/** large calendar rules (assuming table_id='small') **/
/* border on for #small */
#small{
  margin: 0px;
  border-collapse:    collapse;
  border: 1px #52461d;
  width: 184px;
  overflow:hidden;
}

.small {font-size: 10px;}

/* nice squares for the #small table */
#small th
{
  border: 1px #8a9b76;
  padding: 0px;
  width: 15px;
 font: 10px;
}

#small td { 
  border: 1px solid black;
  vertical-align: top;
  padding: 0px;
  height: 15px;
  width: 15px;
  font: 10px;
  overflow:hidden;
}

/* format summaries nicely in #small */
#small ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 0px;
}

#small li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #small */
#small td
{
  background-color: #ede4c7;
font: 10px;
}

#small .calendar-day
{
  background-color: #adb79f;
font: 10px;
}

#small .calendar-today
{
  font-weight: normal;
  background-color: #adb79f;
font: 10px;
}

/* End of 'calendar' */

