/* root element for scrollable */
.references {
    /* required settings */
    position:relative;
    overflow:hidden;

    /* vertical scrollers have typically larger height than width */
    height: 580px;
    width: 400px;
	margin:0; padding:0;
}

/* root element for scrollable items */
.references_items {
    position:absolute;

    /* this time we have very large space for height */
    height:20000em;
	margin:0; padding:0;
}

/* single scrollable item */
.references_item {
	margin:0; padding:0;
    height:129px;
	overflow:hidden;
}

/* the action buttons above the scrollable */
#references_actions {
    width:auto;
	padding: 5px 0 22px 0;
}

#references_actions a {
    cursor:pointer;
}

#references_actions a:hover {
    color:#000;
}

.disabled {
    visibility:hidden;
}

.referencesNext {
    float:right;
	font-family: 'Lato', sans-serif; font-weight: 400; font-size: 13px; color:#333;
	text-align: left; color: #1e90ff; 
}

.referencesPrev {
    float:left;
	font-family: 'Lato', sans-serif; font-weight: 400; font-size: 13px; color:#333;
	text-align: left; color: #1e90ff; 
}
