.newscontainer{
position: relative; /* Do not change this value */
width: 180px;
height: 270px; /* Set height to be able to contain height of largest content shown*/
border: 3px solid #333; /* cadre div */
overflow: hidden;
background: #dcdcdc;
}
/*
	Total wrapper width: 180px+5px+5px=190px
	Or width of wrapper div itself plus any left and right CSS border and padding
	Adjust related containers below according to comments
*/


.news{ /*style for each glide content DIV within wrapper.*/
position: absolute; /* Do not change this value */
background: white;
padding: 5px;
visibility: hidden;
width: 170px;
font-size: 0.8em;
text-align: right;
}
.color1{
	background: #696969;
}
.color2{
	background: #797979;
}

.color3{
	background: #898989;
}

.boutonnews{ /*style for DIV used to contain toggler links. */
width: 180px;
margin-top: 6px;
text-align: center; /*How to align pagination links: "left", "center", or "right"
background: white; /*always declare an explicit background color for fade effect to properly render in IE*/
}


.boutonnews a{ /*style for every navigational link within toggler */
display: -moz-inline-box;
display: inline-block;
/*border: 1px solid black;
color: #2e6ab1;
padding: 1px 3px;
margin-right: 3px;
font-weight: bold;
text-decoration: none;*/
}

.boutonnews a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
/*background: #E4EFFA;
color: black;*/
}

.boutonnews a:hover{
/*background: #E4EFFA;
color: black;*/
}

