/* Start of CMSMS style sheet 'Home Page 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'}

*/

div#calendar2 {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #dddddd;  /* #FFE9AF;   */
  font-size: 80%;
}

div#calendar2 h2 {
   /* line-height: 2em;*/
   background: #fff;
}


/* make all links red */
.calendar tr td a
{
  color: 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: 90%; /* 120%; */
}
#cal-list h2, cal-upcominglist h2
{
  font-size: 80%; /* 110%; */
}


/** small calendar rules (assuming table_id='small') **/
/* border on for #small */


#small{
  margin: 0px;
  border-collapse:    collapse;
  /*border: 1px solid black; */
}

div#small h1 {
  font-size:  1.2em;
  padding-bottom: 0.5em;
  text-align: center;
}

div#small h2 {
   color: #000; 
   font-size: 1em; 
   text-align: left; 
/* some air around the text */
   padding-left: 0em;
   padding-bottom: 0px;
/* set borders around header */
   border-bottom: 0px solid #e7ab0b; 
   border-left: 0px solid #e7ab0b; 
   line-height: 1em;
   background: #dddddd; /* #FFE9AF; */

/* and some air under the border */
   margin: 0 0 0 0;
}

.calendar-event{
  padding-bottom:  1em;
}

/* nice squares for the #small table */
#small th
{
  border: 1px solid black;
  padding: 3px;
  /* width: 75px; */
}

#small td {
  border: 1px solid black;
  vertical-align: top;
  padding: 3px;
  /* height: 75px; */
  /* width: 75px;  */
}

/* format summaries nicely in #big */
#small ul
{
  margin: 0px;
  padding: 0px;
  padding-left: 5px;
}

#small li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #small */
#small td
{
  background-color: silver;
}

#small .calendar-day
{
  background-color: #80ff80;
}

#small .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 'Home Page Calendar' */

