@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 {
  color : #000000;
  font-weight: bold;
  font-size: 9pt;
}

/* list info - monospace font must be used */
ul#days, ul.weeks {
  font-family : 'courier new', monospace;
  list-style-type : none;
  margin : 6px 0 6px -40px;
}

ul#days li span, ul.weeks li a {
  margin: auto 2px;
}

/* day-box span styles - adjust with padding */ 
ul#days li span {
  background-color : #c1001d;
  border : 1px solid #82000e;
  cursor : help;
  font-weight : bold;
  color : #fff;
  padding : 0 1px;
}

/* active links boxes default state - adjust with padding */
ul.weeks li a.al, ul.weeks li a.na  { 
  color : #FFF;
  text-decoration : none;
  background-color : #787878;
  border : 1px solid #999;
  padding : 0 1px;
}

/* 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   { 
  background : transparent;
  color : #a4a4a4;
  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 : #aeaeae;
  border : 1px solid #000;
  text-decoration : none;
  cursor : pointer;
}

/* not used link boxes - color and background should match - adjust with padding */
ul.weeks li a.nu { 
  color : #eee;
  padding : 0 1px;
  border : 1px solid #ccc;
  background-color : #eee;
  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;
}
a:link.fleche {
	color:#c1001d;	
}
a:visited.fleche {
	color:#c1001d;	
}
a:hover.fleche {
	color:#c1001d;	
}
/* End Styles */
