@charset "utf-8";
/* CSS Document */

/*
  +------------------------------------------------------------------+
  | MikeCherim.com                                                   |
  | CSS: List Calendar                                               |
  | Cascading Style Sheet                                            |
  | Copyright March 2006                                             |
  | Use with attribution by visible link please!                     |
  | Attribute to: <a href="http://green-beast.com/">Mike Cherim</a>  |
  +------------------------------------------------------------------+
*/ 

/* 
  NOTE: To get this to work properly, margin and padding must be set
  to 0 (zero). This can be done site-wide or simply for the container
  used to hold this calandar and its elements where needed.
 
  Site wide:
  * {
    margin : 0;
    padding : 0;
  }

  Play around with it and you'll get it right.
*/


/* div for the calendar markup - text must be centered */
div#calendar {
	text-align: center;
	margin: 0 auto;
}

/* calendar heading color */
p.calendar, p.calendar a {
  color : #000000;
  font-weight: bold;
  font-size: 10pt;
  text-align: left;
  padding: 0;
  margin: 10px 0;
  
}

p.calendar a {
	font-family: Verdana, Geneva, sans-serif;
	text-decoration: none;
	color: #720046;
}

/* list info - monospace font must be used */
#contenuDroit ul#days, #contenuDroit ul.weeks {
  font-family : Arial;
  list-style-type : none;
  margin : 3px 0;
  padding: 0;
}
#contenuDroit ul#days li, #contenuDroit ul.weeks li {
	list-style-type : none;
	margin: 0;
	padding: 0;
}

ul#days li span, ul.weeks li a {
  margin: auto 2px;
}

/* day-box span styles - adjust with padding */ 
ul#days li span {
  background-color : #0e5795;
  border : 1px solid #2e3b49;
  cursor : help;
  font-weight : bold;
  color : #fff;
  padding : 0 1px;
}

ul.weeks li a.al, ul.weeks li a.na, ul.weeks li a.nu  {
	width: 20px;
	height: 18px;
	padding : 2px 0 0 0;
	display: inline-block;
}

/* active links boxes default state - adjust with padding */
ul.weeks li a.al, ul.weeks li a.na  { 
  color : #ffffff;
  text-decoration : none;
  background : url('../images/calendar_off.gif');
}

ul.weeks li a.al {
	background : url('../images/calendar_on.gif');
}

/* all states of not-used links */
ul.weeks li a.na, ul.weeks li a.na:hover, ul.weeks li a.na:focus, ul.weeks li a.na:active   { 
  color : #fff;
  cursor : default;
}

/* hover and focus state of active links */
ul.weeks li a.al:hover, ul.weeks li a.al:focus, ul.weeks li a.al:active {
  color: #fff;
  background-color : #0c89cb;
  text-decoration : none;
  cursor : pointer;
}

/* not used link boxes - color and background should match - adjust with padding */
ul.weeks li a.nu { 
  color : #fff;
  background-color : #fff;
  cursor : default;
}

/* to hide link separators */
span.sep {
  display : none;
}

/* this needs to be in conditional comment for IE only */
div#calendar {
  font-size :8pt;
  letter-spacing : 0.001em;
}

/* End Styles */

.tipsCalendar {
    -moz-opacity: .90;
    opacity: .90;
	filter: alpha(opacity=90);
	width:200px;
}

.tipsCalendar .tip-top {
	height: 5px;
	background: transparent url('../images/tip_top.gif') no-repeat;
}

.tipsCalendar .tip {
	background: transparent url('../images/tip_body.gif') repeat-y;
	color: #fff;
	padding: 0 13px;
	width: auto;
}

.tipsCalendar .tip-title {
	border-bottom: 1px dashed #fff;
	font-weight: bold;
	padding-bottom: 5px;
	margin-bottom: 5px;
	text-align: center;
}

.tipsCalendar .tip-text {

}

.tipsCalendar .tip-bottom {
	height: 5px;
	background: transparent url('../images/tip_bottom.gif') no-repeat;
}

.tipsCalendar hr {
	height: 1px;
	padding: 0;
	margin: 5px 0;
	border: 1px dashed #fff;
}