/* Start of CMSMS style sheet '928 Calendar CSS' */
/*
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; */
  color: yellow;
}

/* highlight "today" for the small calendar */
.calendar-today
{
  font-weight: bold;
}

.calendar-month
{
  font-size: 18px;
  font-weight: bold;
  color: blue;
}

/* display the "upcominglist" as one line per entry (assuming table_id='cal-upcominglist') */
.calendar-upcominglist .calendar-date-title
,.calendar-upcominglist .calendar-summary-title
{
  display: none;
}

div .calendar-upcominglist
{
 margin: 0.5em 0 0em 0em;  /* margin for the entire div surrounding the news list */
  border: 1px solid #000; 
  background: #FFE9AF; 
  text-align: left;
}

.calendar-upcominglist h2
,.calendar-upcominglist .calendar-date
,.calendar-upcominglist .calendar-summary
{
  display: inline;
  margin-right: 5px;
  margin-left: 5px;
  color:black;
}

/* tidy up text sizes for lists */
#cal-list h1, .calendar-upcominglist h1
{
  color: #CC0000;
  text-align:center;

}
#cal-list h2, .calendar-upcominglist h2
{
color : #333333;
font-weight:bold;
margin-top:25px;

}

/** large calendar rules (assuming table_id='small') **/
/* border on for #small */
#small{
  background: #FFE9AF;
  margin: 0px;
  border-collapse:    collapse;
  border: 1px solid black;
  font-size: 12px;
}
 

/** large calendar rules (assuming table_id='big') **/
/* border on for #big */

#big{
  $my_img='uploads/images/Calendrier2010/parade%20castelet%202007-22.JPG';
  margin: 0px;
  border-collapse:    collapse;
  border: 2px solid blue; 
  /* background-image: url(uploads/images/Calendrier2010/parade%20castelet%202007-22.JPG); */
  /* background-image: url( GetBackgroundImage(); ); */
  background-image: url('uploads/images/Calendrier2010/parade%20castelet%202007-22.JPG'); 
  background-repeat: repeat-y;
  background-position: center;
  background-color: transparent;
}

/* nice squares for the #big table */
#big th
{
  background-color: silver; 
  border: 1px solid blue;
  padding: 3px;
  width: 75px;
}

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

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

#big li
{
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  background-color: blue; 
}

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

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

#big .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 '928 Calendar CSS' */

