@charset "utf-8";
/* CSS Document */



/* default link style - needed to make the :active work correctly in IE */
.gallery a, a:visited, a:hover, a:active {
color:#8CC63F;
}
.gallery {
padding:0; 
margin: 8px 0 0 0; 
list-style-type:none; 
position:relative; 
width:375px;
}
/* make the list horizontal float:left;*/
.gallery li {
display:inline;
}
/* style the link text to be central in a surrounding box */
.gallery li a, .gallery li a:visited {
font-size:11px;
float:left; 
text-decoration:none; 
color:#fff; 
background:#8CC63F; 
text-align:center; 
width:13px; 
height:13px; 
line-height:24px; 
border:1px solid #8CC63F;
margin:2px;
}
/* position the images using an absolute position and hide them from view */
.gallery li a img {
position:absolute; 
top:-290px;
left:0;
visibility:hidden; 
border:0;
}
.gallery li a img.order {
z-index:1;
}
/* fix the top position for the landscape images */
.gallery li a img.landscape {
top:-290px;
}
/* fix the left position for the portrait images */
.gallery li a img.portrait {
left:0;

}
/* style the hover background color for the text boxes */
.gallery li a:hover {
background:#ffffff;
}
/* style the active/focus colors for the text boxes (required for IE) */
.gallery li a:active, .gallery li a:focus {
background:#fff; 
color:#c6df9b;
}
/* make the images visible on active/focus */
.gallery li a:active img, .gallery li a:focus img {
visibility:visible;

}
