/* 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'}

*/

.calendar {
  color: #fff;
}

/* make all links yellow */
.calendar tr td a
{
  color: #fbbf00;
  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: 5px;
}

/* tidy up text sizes for lists */
#cal-list h1, #cal-upcominglist h1
{
  color: #fbbf00;
  font-size: 120%;
}

.calendar-upcominglist {
  width: 150px;
  margin: 0 0 0 10px !important;
  margin: 0;
  clear: none;
}

.calendar-upcominglist h2
{
  font-size: 1.5em;
  color: #ffbf00;
  width: 150px;
  text-align: center;
  margin: 0 0 10px 0;
}

.calendar-upcominglist h3
{
  font-size: 1em;
  color: #f00ffb;
  width: 145px;
  text-align: left;
  margin: 0;
}

#sidebar .calendar-event {
  margin: 2px 0 25px 0;
  border-bottom: 1px solid #fff;
  line-height: 130%;
  width: 150px;
}

.calendar-date-from a:hover {
  color: #f00ffb;
}

.calendar-event a:hover {
  color: #fff;
}


/** large calendar rules (assuming table_id='big') **/
/* border on for #big */
#big{
width: 415px;
  margin: 20px 11px 20px 21px;

display: inline;
}

/* nice squares for the #big table */
#big th
{
  border: 1px solid black;
  padding: 3px;
  width: 75px;
  background-color: #700000;
  color: #fff;
  text-align: center;
}

#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: #003870;
}

#big .calendar-month {
  font-size: 2.25em;
  font-weight: 900;
  color: #fbbf00;
  margin-bottom: .5em;

}

#big .calendar-day
{
  background-color: #80ff80;
}

#big .calendar-today
{
  font-weight: normal;
  background-color: #8080ff;
}



.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}
/* End of 'Calendar CSS example' */

