/* 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: #FF0000/*#808080*/; 
  font-weight: bold;
}

/* highlight "today" for the small calendar */
.calendar-today
{
  font-weight: bold;
}

/* 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: 1px;
  font-size: 1.5em;
}

/* tidy up text sizes for lists */
#cal-list h1, #cal-upcominglist h1
{
  color: red;
/*  font-size: 50%; */
  font-size: 1.5em
}
#cal-list h2, cal-upcominglist h2
{
  font-size: 0.9em;
}

/** large calendar rules (assuming table_id='big') **/
/* border on for #big */
#big{
  margin: 0px;
  border-collapse:    collapse;
  border: 0px solid black;
}

/* nice squares for the #big table */
#big th
{
  font-size: 0.5em
  border: 1px solid black;
  text-align:center;
  padding: 0px;
  width: 4px;
}

#big td {
  font-size: 0.5em
  border: 1px solid black;
  vertical-align: top;
  text-align:center;
  padding: 0px;
  height: 5px;
  width: 4px;
}

/* format summaries nicely in #big */
#big ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 1px;
}

#big li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
#big h1
{
  font-size: 0.9em
}
#big h2
{
  font-size: 0.8em
}
#big h3
{
  font-size: 0.6em
}


/* background colours for #big */
#big th
{
  background-color: #DEC1A2;
}

#big td
{
  background-color: #EEEEE0;
}

#big .calendar-day
{
  background-color: #E9E1E1;
}

#big .calendar-today
{
  font-weight: normal;
  background-color: #D2CBC6;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
 font-size: 0.6em 
 display: none;
}



#big .calendar-date-from
{
 font-size: 0.7em 
}

#big .calendar-summary
{
 font-size: 0.7em 
}
#big .calendar-returnlink
{
 font-size: 0.7em 
}

#big .a {
text-decoration: none;
color: #286ea0;
}

#big .a:hover {
text-decoration: underline;
color: #286ea0;
}

/* End of 'Calendar' */

