/* Start of CMSMS style sheet 'MRM: Scrollable' */
/*
	root element for the scrollable.
	when scrolling occurs this element stays still.
*/
.news .scrollable {
    /* required settings */
	float:left;
    position: relative;
    overflow: hidden;
    width: 500px;
    height: 320px;
    /* custom decorations */
}
.users .scrollable {
	/* required settings */
	float: left;
	position: relative;
	overflow: hidden;
	width: 410px;
	height: 285px;
	margin: 20px 0 0;
}
/*
	root element for scrollable items. Must be absolutely positioned
	and it should have a extremely large width to accomodate scrollable items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.scrollArea .scrollable .items {
    /* this cannot be too large */
    width: 20000em;
    position: absolute;
    clear: both;
}
/* single scrollable item */
.scrollArea .scrollable .item {
    float: left;
    margin: 0 10px 0 0;
    padding: 0;
}
/* News */
.news .scrollable .item .newsContainer {
	float: left;
	width: 240px;
    height: 200px;
}
.news .scrollable .item .newsTop {
	float: left;
	background: url(/_include/img/news_sprite.png) no-repeat top left;
	width: 50%;
	height: 6px;
	position: relative;
}
.news .scrollable .item .newsTop .newsTopRight {
	float: left;
	width: 200px;
	height: 6px;
	background: url(/_include/img/news_sprite.png) no-repeat top right;
	position: absolute;
	top: 0;
	right: -120px;
}
.news .scrollable .item .newsBottom {
	float: left;
	background: url(/_include/img/news_sprite.png) no-repeat bottom left;
	width: 50%;
	height: 6px;
	position: relative;
}
.news .scrollable .item .newsBottom .newsBottomRight {
	float: left;
	background: url(/_include/img/news_sprite.png) no-repeat right -486px;
	width: 200px;
	height: 6px;
overflow:hidden;
	position: absolute;
	top: 0;
	right: -120px;
}
.news .scrollable .item .newsCenter {
	float: left;
	width: 220px;
	background: #fff;
/*
	border-left: 3px solid #e3e3ee;
	border-right: 3px solid #e3e3ee;
*/
	padding: 0 10px 0;
	height: 300px;
}
.news .scrollable .item .newsCenter .newsSidebar {
	float: left;
	width: 100%;
}
.news .scrollable .item .newsCenter .newsSidebar img {
	border: 1px solid #e3e3ee;
        display:block;
        z-index:10;
        position:relative;
}
.news .scrollable .item .newsCenter .newsContent {
	float: left;
	width: 100%;
}
.news .scrollable .item .newsCenter .date {
	font-size: 11px;
	text-transform: uppercase;
	color: #c3bfe6;
}
.news .scrollable .item .newsCenter .headline {
	font-size: 15px;
	text-transform: uppercase;
	line-height: 18px;
	font-weight: bold;
	color: #4d41b9;
	margin: 0 0 5px;
}

/* Users */
.users .scrollable .item .usersContainer {
	width: 130px;
	float: left;
}
.users .scrollable .item .usersContainer .userElement {
	float: left;
	width: 130px;
margin: 0 0 35px 0;
}

/* active item */
.scrollable .active {
}






/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url(/_include/img/scrollable/arrow/hori_large.png) no-repeat;
	display:block;
	width:30px;
	height:30px;
	float:left;
	cursor:pointer;
	font-size:1px;
}

/* right */
a.right { background-position: 0 -30px; clear:right; margin-right: 0px; }
a.right:hover { background-position:-30px -30px; }
a.right:active { background-position:-60px -30px; }

/* left */
a.left { margin-left: 0px; }
a.left:hover { background-position:-30px 0; }
a.left:active { background-position:-60px 0; }

/* up and down */
a.up, a.down		{ 
	background:url(/_include/img/scrollable/arrow/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	

/* End of 'MRM: Scrollable' */

