@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: left;
	margin: 0 auto;
	width:360px;
	position:relative;
	top:0px;
	left:-30px;
}

/* calendar heading color */
span.titre_info
{
font-weight:bold;
margin:0 0 5px 0;
}
p.calendar, p.calendar a
{
	color : #a8a770;
	font-weight: bold;
	font-size: 10pt;
 text-align: center;
  padding: 0 ;
	margin: 0;
}

p.calendar a
{
	font-family: Verdana, Geneva, sans-serif;
	text-decoration: none;
	color: #a8a770;
}

/* 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
{

	list-style-type : none;
	font-weight : bold;
	color : #a8a770;
	padding : 0 1px;
	margin:0 12px 0 12px;
}

ul.weeks li a.al, ul.weeks li a.na, ul.weeks li a.nu
{
	width: 17px;
	height:  9px;
	padding : 8px;
	display: inline-block;
}

/* active links boxes default state - adjust with padding */
ul.weeks li a.al, ul.weeks li a.na
{
	color : #fff;
	text-decoration : none;
	background : url('../img/calendar_off.gif');
}

ul.weeks li a.al { background : url('../img/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 : #b5b925;
	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('../img/tip_top.gif') no-repeat;
}

.tipsCalendar .tip
{
	background: transparent url('../img/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('../img/tip_bottom.gif') no-repeat;
}

.tipsCalendar hr
{
	height: 1px;
	padding: 0;
	margin: 5px 0;
	border: 1px dashed #fff;
}
