/** SLIDER WIDGET */
.slider-arrow {
    float: left;
    width: 20px;
    text-align: center;
    font: 14pt sans-serif;
    background: #D8D8D8;
    color: #B9B9B9;
    padding: 136px 0;
    -webkit-user-select: none;
    user-select: none;
}
.slider-arrow.left {
    border-radius: 5px 0 0 5px;
}
.slider-arrow.right {
    border-radius: 0 5px 5px 0;
}
.slider-arrow.enabled {
    color: #FF8400;
    cursor: pointer;
}
.slider-arrow.enabled:hover {
	background: #E7E7E7;
    color: #FF6600;
}

.slider-container {
    float: left;
    overflow: hidden;
    width: 880px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.slider-content {
	float: left;
	width: 840px;
	padding: 0px 20px 25px;
}

.slider-pages {
	float: right;
	margin-top: -20px;
	margin-right: 50px;
    position: relative;
    z-index: 5;
	clear: both;
}
.slider-pages:empty {
	display: none;
}
.slider-page {
	float: left;
	padding: 2px 10px 1px;
    font-size: 10pt;
    text-align: center;
	background: #BBB;
    color: white;
    margin-right: 5px;
	border-radius: 5px 5px 0 0;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
	min-width: 30px;
	box-sizing: border-box;
}
.slider-page:hover {
	background: #AAA;
}
.slider-page.enabled {
    background: #FF8400;
    color: #FFFFFF;
}
.slider-page.enabled:hover {
    background: #FF6600;
}

/** CLIENT WIDGET */
.client-widget {
    width: 145px;
    float: left;
    padding: 25px 20px 5px 3px;
}

.client-widget .image-widget {
	margin-bottom: 10px;
	width: 145px;
	height: 80px;
}
.client-widget strong {
	font-size: 10pt;
	text-transform: uppercase;
}
.client-widget a {
	float: right;
	background: rgba(255, 255, 255, 0.4);
	padding: 4px 8px;
	font-size: 9.5pt;
	color: #E43700;
	border-radius: 5px;
}
.client-widget a:hover {
	background-color: white;
	color: #FF4700;
}

/** PUBLISH WIDGET */
.publish-widget {
    width: 185px;
    float: left;
    padding: 25px 20px 5px 5px;
}

.publish-widget .image-widget {
	margin-bottom: 10px;
	width: 185px;
	height: 120px;
}
.publish-widget strong {
	font-size: 10pt;
	text-transform: uppercase;
}
.publish-widget a:hover {
	background-color: white;
	color: #FF4700;
}

.publish-footer {
    font-size: 8pt;
    padding-top: 5px;
    border-top: 1px black solid;
}
.publish-access {
    font-weight: bold;
}
.publish-downloads {
    font-size: 7pt;
    color: #8A8A8A;
}

.publish-download {
	float: right;
	padding: 5px 10px;
	text-align: center;
	background-color: #FF8400;
	border-radius: 5px;
	color: #FFF;
	font-size: 10pt;
	cursor: pointer;
}
.publish-download:hover {
	background-color: #FF6600;
}

/** LABEL WIDGET */
.label-widget {
    padding: 5px 10px;
    text-align: center;
    background-color: #A00;
    color: white;
    border-radius: 10px;
    font-size: 10pt;
    font-weight: bold;
    float: right;
}
.label-widget.error {
    background-color: #900;
}