/* Start of CMSMS style sheet 'Calendar CSS example' */
#cal-calendar td.spacer {
height: 2px;
border: 0px;
}

#cal-calendar table {
border:1px solid #00000;
}

/*
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 */

/* 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: red;
  font-size: 120%;
}
#cal-list h2, cal-upcominglist h2
{
  font-size: 110%;
}

/** large calendar rules (assuming table_id='big') **/
/* border on for #cal-calendar */
#cal-calendar{
  margin: 0px;
  border-collapse:    collapse;

}

/* nice squares for the #cal-calendar table */
#cal-calendar th
{
  border: 1px solid white;
  padding: 5px;
  width: 100px;
  background-color: #f0f0f0; 
color: black;
text-align: center;
letter-spacing: -1px;
}

#cal-calendar td {
border: 1px solid white;
background-color: #f9f9f9;
  vertical-align: top;
  padding: 3px;
  height: 100px;
  width: 100px;
text-align: left;
color: #000000;
}

/* format summaries nicely in #cal-calendar */
#cal-calendar ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 5px;
}

#cal-calendar li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
font-size: 80%;
line-height: 15px;
padding-top: 5px;
}

/* background colours for #cal-calendar */
#cal-calendar td
{
}

#cal-calendar .calendar-day
{
  background-color: #f0f0f0;
}

#cal-calendar .calendar-today
{
  font-weight: normal;
  background-color: #f0f0f0;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}
.calendar-month {
padding: 20px;
text-align: center;
font-size: 90%;
}

.calendar-month span {
font-size: 150%;
padding: 0 30px 0 30px;
font-weight: bold;

/* End of 'Calendar CSS example' */

