.GliderContainer{
position: relative; /* Do not change this value */
width: 402px; /*Set Designs to 400x250*/
height: 252px; /* Set height to be able to contain height of largest content shown*/
border: 2px solid;
border-color:#ffffff;
overflow: hidden;
z-index:95;
}
/*
	Total wrapper width: 350px+5px+5px=360px
	Or width of wrapper div itself plus any left and right CSS border and padding
	Adjust related containers below according to comments
*/

.GliderInfo{ /*style for each glide content DIV within wrapper.*/
position: absolute; /* Do not change this value */
background: white;
padding: 1px;
visibility: hidden;
width: 400px;
z-index:96;
}
/*
 Total glidecontent width: 330px+10px+10px=350px
	Or width of wrapper div itself (not counting wrapper border/padding)
*/

.GliderCtr{ /*style for DIV used to contain toggler links. */
width: 400px;
margin-top: -15px;
text-align: center; 
/*light yellow*//*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*/
}
/*
 Total contenttoggler width: 350px+5px+5px=360px
	Or total width of wrapper div (counting wrapper border/padding)
*/

.GliderCtr a{ /*style for every navigational link within toggler */
display: -moz-inline-box;
display: inline-block;
border: 2px solid #666666;
padding: 1px 1px;
text-decoration: none;

position:relative;
top:-10px;
height:8px;
width:8px;
background:#FFFF99; 
z-index:97;
}
.GliderCtr a:hover{
border-color: #666666;
background:#FFFF99; /*FFFF99 light yellow*/
}
.GliderCtr a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
border-color:black;
background:Yellow; /*FFFF99 light yellow*/
}
.GliderCtr a.toc{ /*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
}
.GliderCtr a.prev, .GliderCtr a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
}
.GliderCtr a.prev:hover, .GliderCtr a.next:hover{
background:#666666;
color: white;
}

