/* Start of CMSMS style sheet 'Calendário CSS exemplo v1.5.6' */
/*
Example stylesheet for Calendar module

For using this "big"-class insert something like this in your page
or template;

{cms_module module='Calendar'}

*/



/* make all links red */
.calendar tr td a 
{
  align: center;
  color: red;
}

/* highlight "today" for the small calendar */
.calendar-today
{
  color: #ffffff;   /* RPS I added this line RPS */
  font-weight: bold;
}

/* RPS added this vvv RPS */
/* CHANGE default link styles*/
a, a:link a:active { 
       color: red; 
       display: inline;
/* set all links to have underline */
	text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: inherit;
/* this is a bluish color, you change this for all default link colors */
	color: #700000;
}
a:visited {
/* keeps the underline */
	text-decoration: underline;
	background-color: inherit;
/* a different color is used for visited links */
	color: #18507C;
}
a:hover {
/* remove underline on hover */
	text-decoration: none;
	background-color: inherit;
/* using a different color makes the hover obvious */
	color: #385C72;
}
/* RPS added this ^^^ RPS */

/* display the "upcominglist" as one line per entry (assuming default class and id names) */
#cal-upcominglist .calendar-date-title
,#cal-upcominglist .calendar-summary-title
{
  display: none;
}

/* RPS #cal-upcominglist h2 RPS */
/* RPS ,#cal-upcominglist .calendar-date RPS */
/* RPS ,#cal-upcominglist .calendar-summary RPS */
/* RPS { RPS */
/* RPS   display: inline; RPS */
/* RPS   margin-right: 5px; RPS */ 
/* RPS } RPS */

/* 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 default class and id names) **/
/* border on for #cal-calendar */
/* RPS #cal-calendar{ RPS */
/* RPS   margin: 0px; RPS */
/* RPS  border-collapse:    collapse; RPS */
/* RPS   border: 1px solid black; RPS */
/* RPS } RPS */

/* nice squares for the #cal-calendar table */
/* RPS #cal-calendar th RPS */
/* RPS { RPS */
/* RPS   border: 1px solid black; RPS */
/* RPS   padding: 3px; RPS */
/* RPS   width: 75px; RPS */
/* RPS } RPS */

/* RPS #cal-calendar td { RPS */
/* RPS   border: 1px solid black; RPS */
/* RPS   vertical-align: top; RPS */
/* RPS   padding: 3px; RPS */
/* RPS   height: 75px; RPS */
/* RPS   width: 75px; RPS */
/* RPS } RPS */

/* format summaries nicely in #cal-calendar */
/* RPS #cal-calendar ul RPS */
/* RPS { RPS */
/* RPS   margin: 0px; RPS */
/* RPS   padding: 0px; RPS */
/* RPS   padding-left: 5px; RPS */
/* RPS } RPS */

/* RPS #cal-calendar li RPS */
/* RPS { RPS */
/* RPS   list-style-type: none; RPS */
/* RPS   padding: 0px; RPS */
/* RPS   margin: 0px; RPS */
/* RPS } RPS */

/* background colours for #cal-calendar */
#cal-calendar td
{
  text-align: center;
  background-color: white; /* RPS silver; RPS */
}

#cal-calendar a, a:link a:active 
{
   text-align: center;
   vertical-align:middle; 
   font-weight: bold;
   display: inline;
}

#cal-calendar .calendar-day
{
  text-align: left;
  background-color: white; /* RPS #80ff80; */
}

#cal-calendar .calendar-today
{
  font-weight: bold;
  color: #b75433;    /* RPS I added this RPS */
  background-color: #a2aab1;
}

.calendar-event .calendar-date-title,
.calendar-event .calendar-summary-title,
.calendar-event .calendar-details-title
{
  display: none;
}
/* End of 'Calendário CSS exemplo v1.5.6' */

