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

.calendar-event
{
border-bottom:1px solid #CCCCCC;
margin:0;
padding:7px;
}

#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: 1px solid #CCCCCC;
}

/* nice squares for the #big table */
#big th
{
  border: 1px solid #CCCCCC;
  padding: 3px;
  width: 75px;
}

#big td {
  border: 1px solid #CCCCCC;
  vertical-align: top;
  padding: 3px;
  height: 75px;
  width: 75px;
}

/* format summaries nicely in #big */
#big ul li
{
  margin: 0px;
  padding: 0px;
  padding-left: 0px;
background: none;
font-size:0.6em;
}

/*#big li
{
background: none;  
list-style-type: none;
  padding: 0px;
padding-left: 0px;
  margin: 0px;
font-size:0.6em;
}*/

/* background colours for #big */
#big td
{
  background-color: #EFEFEF;
}

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

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

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

#big .calendar-month
{
 font-size: 1.5em;
font-weight: bold;
margin: 10 auto;
  border-collapse: collapse;
  text-align: center;
  padding: 10px 0px 10px 0px;
}
#big.calendar-list
{
}


/** Start small calendar rules (assuming table_id='small') **/
/* border on for #small */

div#calendar {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  padding-bottom: 3px;
  border: 2px solid #00447A; 
  background: #FFFFFF; /*B8B9BB; */
}

div#calendar h2 {
   line-height: 2em;
   background: #ffffff;
}

div#all-events {
  margin: 2em 0 1em 1em;  /* margin for the entire div surrounding the news list */
  padding-bottom: 3px;
  border: 2px solid #CCCCCC; /*00447A; */
}

#small {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  border: 2px solid #CCCCCC; /*00447A;*/
}

/* nice squares for the #small table */
#small th
{
  /*border: 2px solid #00447A;*/
  background-color: #FFFFFF; 
  padding: 1px;
  width: 20px;
  /*color: #00447A;*/
  text-align: center;
  font: bold 10px/20px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
  color: #666;
  text-decoration: none; 
}

#small td {
  /*border: 1px solid #00447A;*/
  text-align: center;
  font: 10px/20px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;
  color: #868686; 
}


/* format summaries nicely in #small */
#small ul
{
display: none;  
margin: 0px;
  padding: 0px;
  padding-left: 0px;
}

#small li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}

/* background colours for #small */
#small td
{
  background-color: #FFFFFF;/*B8B9BB;*/
}

#small .calendar-month
{
  width: auto;
  margin: 10px 0 0 0;
  border-collapse: collapse;
  border: 2px solid #B8B9BB;
  background-color: #f3f3f3;
  /*font: bold 10px Lucida Grande, Verdana, Arial, Helvetica, sans-serif;*/
  text-align: center;
  padding: 3px 0px 3px 0px;
}

#small .calendar-day
{
  background-color: #FFFFFF; 
}


#small .calendar-today
{
  font-weight: bold;
	color: #868686;
	background-color: transparent;
	border: 1px solid #eeb211;
	padding: 1px;
}

/** End small calendar rules  **/
/* End of 'Calendar CSS example' */

