/* 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'}

*/



/* make all links black */
.calendar tr td a
{
  color: #000;
}

.calendar-next a {
  color: #ff7200;
  text-decoration: none;
}

.calendar-prev a {
  color: #ff7200;
  text-decoration: none;
}

.calendar-next a:hover {
  color: #ff0000;
}

.calendar-prev a:hover {
  color: #ff0000;
}

/* 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 #big */
#big {
  margin: 0px;
  /*border-collapse: collapse;*/
  border-spacing: 0px; 
  border: 1px solid black;
}

/* nice squares for the #big table */
#big th
{
  border: 2px solid white;
  width: 86px;
  background-color: #ffd40e; /* aaaacc;*/
  text-align: center;
  padding: 5px;
}

#big td {
  border: 2px solid white;
  vertical-align: top;
  padding: 1px;
  height: 86px;
  width: 86px;
}

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

#big li
{
  list-style-type: none;
  border: 1px solid black;
  border-top: 4px solid #f58226;
  background-color: #fff;
  padding: 3px;
  margin: 3px;
  margin-bottom: 4px;
  font-size: 83%;
  font-weight: bolder;
  font-style: italic;
}

/* background colours for #big */
#big td
{
/*background:url('uploads/site-pics/calendar-bg.png');*/
background-color: #fffca7; /*d6d6ea;*/
}

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

#big .calendar-today
{
  font-weight: normal;
  background-color: #ffff6b; /*#fdfece;*/ /*f4f4fe;*/ /*was c2c2cc*/
  border: 1px solid black;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}

#big .extra-days {
  background-color: #e8e8e8;
}

.calendar-month {
  font-size: 1.5em;
  vertical-align: bottom;
  padding-bottom: 2px;
}

.calendar-month span {
  font-size:1.5em;
}

.date-div {
  float: right;
  background-color: #fffef5; /*f3f3f3;*/
  border-left: 1px solid #808080;
  border-bottom: 1px solid #808080;
  padding: 0px 3px 1px;
  margin-left: 3px;
}
 
/* End of 'Calendar CSS example' */

