/* CSS Document */

a.news_rss { /* definition of "image" calss in a tag */
display: block; /* a tag must be a block */
width: 84px; /* width of reactive image */
height: 34px; /* height of reactive imagehauteur de l'image réactive */
background-image: url("images/news_top_right_off.jpg"); /* starting image */
background-repeat: no-repeat;
}
a.news_rss:hover { /* definition of "image" class for a tag when hovering */
background-image: url("images/news_top_right_on.jpg"); /* target image */
}
a.calender_left_arrow { /* definition of "image" calss in a tag */
display: block; /* a tag must be a block */
width: 17px; /* width of reactive image */
height: 14px; /* height of reactive imagehauteur de l'image réactive */
background-image: url("images/left_arrow.jpg"); /* starting image */
background-repeat: no-repeat;
}
a.calender_left_arrow:hover { /* definition of "image" class for a tag when hovering */
background-image: url("images/left_arrow_on.jpg"); /* target image */
}
a.calender_right_arrow { /* definition of "image" calss in a tag */
display: block; /* a tag must be a block */
width: 17px; /* width of reactive image */
height: 14px; /* height of reactive imagehauteur de l'image réactive */
background-image: url("images/right_arrow.jpg"); /* starting image */
background-repeat: no-repeat;
}
a.calender_right_arrow:hover { /* definition of "image" class for a tag when hovering */
background-image: url("images/right_arrow_on.jpg"); /* target image */
}

