/* 
    Document   : rightPromoContentGlider
    Created on : May 20, 2010, 8:20:22 AM
    Author     : jcrossley
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

.glidecontentwrapperRight{
	position: relative; /* Do not change this value */
	width: 298px;
	height: 121px; /* Set height to be able to contain height of largest content shown*/
	border: 0px solid red;
	overflow: hidden;
	background-color: #CCCCCC;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
/*
	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
*/


.glidecontentRight{ /*style for each glide content DIV within wrapper.*/
	position: absolute; /* Do not change this value */
	background-color: #C0C0C0;
	visibility: hidden;
	width: 297px;
	height: 121px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
/*
 Total glidecontent width: 330px+10px+10px=350px
	Or width of wrapper div itself (not counting wrapper border/padding)
*/

.glidecontenttogglerRight{ /*style for DIV used to contain toggler links. */
	width: 293px;
	text-align: center;
	background-color: none;
	margin: 2px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	height:6px;
 line-height: 3px;
 vertical-align:top;
}
/*
 Total contenttoggler width: 350px+5px+5px=360px
	Or total width of wrapper div (counting wrapper border/padding)
*/

.glidecontenttogglerRight a{ /*style for every navigational link within toggler */
display: -moz-inline-box;
display: inline-block;
border: 1px solid #C0C0C0;
color: #2e6ab1;
padding: 0px 1px 1px 4px;
margin-right: 3px;
font-size: 10px;
text-decoration: none;
line-height: 3px;
 vertical-align:top;



}

.glidecontenttogglerRight a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
	background-color: #FD8A35;
	color: black;
	line-height: 3px;
	font-size: 1px;
	vertical-align:top;

}

.glidecontenttogglerRight a:hover{
background-color: #E4EFFA;
color: black;
line-height: 3px;
font-size: 1px;
 vertical-align:top;

}

.glidecontenttogglerRight a.toc{ /*style for individual toggler links (page 1, page 2, etc). ".toc" class auto generated! */
line-height: 3px;
font-size: 1px;
background-color: none;
}

.glidecontenttogglerRight a.prev, .glidecontenttogglerRight a.next{ /*style for "prev" and "next" toggler links. ".prev" and ".next" classes auto generated! */
	background-color: #00B700;
	line-height: 3px;
	font-size: 1px;
	vertical-align:top;
}

.glidecontenttogglerRight a.prev:hover, .glidecontenttogglerRight a.next:hover{
background-color: #1A48A4;
color: white;
line-height: 3px;
font-size: 1px;
 vertical-align:top;
}

