@charset "utf-8";
/* CSS Document */

/***
THIS NEEDS TO BE ADDED TO THE MASTER PAGE OF THE PAGE THAT THE NEWS TICKER WILL LIVE
***/
.glidecontentwrapper{
	position: relative; /* Do not change this value */
	width: 330px;
	height: 230px; /* Set height to be able to contain height of largest content shown*/
	border: 1px solid #333;
	overflow: hidden;
	float:left;
}



.glidecontent{ /*style for each glide content DIV within wrapper.*/
	position: absolute; /* Do not change this value */
	background: white;
	padding: 10px;
	width: 320px;
}


.glidecontenttoggler{ /*style for DIV used to contain toggler links. */
	width: 60px;
	margin-bottom: 6px;
	float:right;
}


.glidecontenttoggler a{ /*style for every navigational link within toggler */
	display: -moz-inline-box;
	display: inline-block;
	border: 1px solid #000;
	color: #2e6ab1;
	padding: 1px 3px;
	margin-right: 3px;
	font-weight: bold;
	text-decoration: none;
}

.glidecontenttoggler a.selected{ /*style for selected page's toggler link. ".selected" class auto generated! */
	background: #E4EFFA;
	color: #000;
}

.glidecontenttoggler a:hover{
	background: #E4EFFA;
	color: #000;
}

.glidecontenttoggler a.toc{ 
}

.glidecontenttoggler a.prev, .glidecontenttoggler a.next{ 
}

.glidecontenttoggler a.prev:hover, .glidecontenttoggler a.next:hover{
	background: #1A48A4;
	color: #fff;
}


