/*
    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
#content-slider-wrapper {
	display: block;
	overflow: hidden;
	width: 954px;
	z-index: -1;
}
#content-slider {
	background: transparent url(/pix/uno-cs-bg.jpg) no-repeat 0 -10px;
	display: block;
	float: left;
    position: relative;
    overflow: hidden;
    width: 954px;
    height: 320px;
}
.prev-next-wrapper {
	border: 0;
	cursor: pointer;
	display: block;
	float: left;
	position: absolute;
	text-align: center;
	text-decoration: none;
	line-height: 322px;
	width: 60px;
	height: 322px;
	top: 0;
	z-index: 100;
}
.prev-next-wrapper:hover	{ border: 0; text-decoration: none; }
.prev-next-wrapper.left		{ background: transparent url(/pix/pil_vanster.png) no-repeat center center; left: 0px;}
.prev-next-wrapper.right	{ background: transparent url(/pix/pil_hoger.png) no-repeat center center; right: 0px;}
.prev-next-wrapper.disabled	{ opacity: 0.5; }

#content-slider ul,
#content-slider ul li {
	list-style: none;
	margin: 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 width and height for the root element and
    not for this element.
*/
#content-slider .items {
    /* this cannot be too large */
    width: 20000em;
    position: absolute;
}

/*
    a single item. must be floated in horizontal scrolling.
    typically, this element is the one that *you* will style
    the most.
*/
#content-slider .items li {
	display: block;
	float: left;
	width: 954px;
	height: 320px;
	overflow: hidden;
	background: transparent;
}
#content-slider .items li div {
	float: left;
	position: relative;
	font-size: 2em;
	height: 100%;
}
#content-slider .items li div.item-text-wrapper	{
	padding: 8% 2% 0 10%;
	vertical-align: middle;
	width: 28%;
}
#content-slider .items li div.item-image-wrapper { width: 60%; }

#content-slider .items li div.item-text-wrapper p,
#content-slider .items li div.item-text-wrapper strong	{ display: inline; line-height: 1.25em; }

/* Button */			
#content-slider .items li div.item-text-wrapper a,
#content-slider .items li div.item-text-wrapper a:visited {
	background: #00960a url(/pix/alert-overlay.png) repeat-x; 
	display: inline-block;
	padding: 8px 14px 9px;
	color: #fff; 
	text-decoration: none;
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;
	margin-top: 1em;
	clear: left;
}
#content-slider .items li div.item-text-wrapper a			{ background-color: #090; color: #fff; }
#content-slider .items li div.item-text-wrapper a:active	{ top: 1px; }
#content-slider .items li div.item-text-wrapper a:hover		{ background-color: #15a34a; }

/* you may want to setup some decorations to active the item */
#content-slider .items .active {}

/* Navigation styles */
ul.navi {
	list-style: none;
	text-align: center;
}

ul.navi li {
	background: transparent url(/pix/navigator.png) no-repeat top left;
	cursor: pointer;
	display: inline-block;
	list-style: none;
	position: relative;
	margin: 4px 4px 0 0;
	padding: 0;
	width: 8px;
	height: 8px;
	zoom: 1;
	*display: inline;
}
ul.navi li:hover { background-position:0 -8px; }
ul.navi li.active { background-position:0 -16px; }

/*
    SIDEBAR

    root element for the scrollable.
    when scrolling occurs this element stays still.
*/
#sidebar #content-slider-wrapper {
	display: block;
	overflow: hidden;
	width: 220px;
	z-index: -1;
}
#sidebar #content-slider {
	background: transparent url(/pix/uno-cs-sb-bg.jpg) no-repeat 0 -10px;
	display: block;
	float: left;
	position: relative;
	overflow: hidden;
	width: 220px;
	height: 180px;
}
#sidebar .prev-next-wrapper {
	border: 0;
	cursor: pointer;
	display: block;
	float: left;
	position: absolute;
	text-align: center;
	text-decoration: none;
	line-height: 322px;
	width: 60px;
	height: 202px;
	top: 0;
	z-index: 100;
}
#sidebar .prev-next-wrapper:hover	{ border: 0; text-decoration: none; }
#sidebar .prev-next-wrapper.left		{ background: transparent url(/pix/pil_vanster.png) no-repeat center center; left: 0px;}
#sidebar .prev-next-wrapper.right	{ background: transparent url(/pix/pil_hoger.png) no-repeat center center; right: 0px;}
#sidebar .prev-next-wrapper.disabled	{ opacity: 0.5; }

#sidebar #content-slider ul,
#sidebar #content-slider ul li {
	list-style: none;
	margin: 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 width and height for the root element and
    not for this element.
*/
#sidebar #content-slider .content-slider-items {
    /* this cannot be too large */
    width: 20000em;
    position: absolute;
}

/*
    a single item. must be floated in horizontal scrolling.
    typically, this element is the one that *you* will style
    the most.
*/
#sidebar #content-slider .content-slider-items li {
	display: block;
	float: left;
	width: 220px;
	height: 180px;
	overflow: hidden;
}
#sidebar #content-slider .content-slider-items li .content,
#sidebar #content-slider .content-slider-items li .content:hover,
#sidebar #content-slider .content-slider-items li .content:active{
	float: left;
	position: relative;
	font-size: 2em;
	height: 70px;
	width: 180px;
	text-align: center;
	vertical-align: middle;
	margin: 20px;
	text-decoration: none;
	border: none;
	
	background: #F00 url(/pix/awesome-neg70.png) repeat-x top center;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);

}
#sidebar #content-slider .content-slider-items li .content:hover {
	background: #F00 url(/pix/awesome70.png) repeat-x top center;
}

#sidebar #content-slider .content-slider-items li .content.alt,
#sidebar #content-slider .content-slider-items li .content.alt:hover,
#sidebar #content-slider .content-slider-items li .content.alt:active{
	background: transparent !important;
	-moz-border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;

}
#sidebar #content-slider .content-slider-items li .content h2 {
	/*background: #F00 url(/pix/uno_aqua.png) no-repeat top center;*/
	text-align: center;
	color: #FFF;
	font-size: 20px;
	line-height: 23px;
	vertical-align: middle;
}
#sidebar #content-slider .content-slider-items li .content.alt h2 {
	color: #777;
}
#sidebar table {
	width: 100%;
	height: 100%;

}
#sidebar table td {
	vertical-align: middle;
	text-align: center;
	padding: 0;
}
#sidebar #content-slider .content-slider-items li div.item-text-wrapper	{
	padding: 8% 2% 0 10%;
	vertical-align: middle;
	width: 28%;
}
#sidebar #content-slider .content-slider-items li div.item-image-wrapper { width: 60%; }

#sidebar #content-slider .content-slider-items li div.item-text-wrapper p,
#sidebar #content-slider .content-slider-items li div.item-text-wrapper strong	{ display: inline; line-height: 1.25em; }

/* Button */
#sidebar #content-slider .content-slider-items li div.item-text-wrapper a,
#sidebar #content-slider .content-slider-items li div.item-text-wrapper a:visited {
	background: #00960a url(/pix/alert-overlay.png) repeat-x;
	display: inline-block;
	padding: 8px 14px 9px;
	color: #fff;
	text-decoration: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25);
	border-bottom: 1px solid rgba(0,0,0,0.25);
	position: relative;
	cursor: pointer;
	margin-top: 1em;
	clear: left;
}
#sidebar #content-slider .content-slider-items li div.item-text-wrapper a			{ background-color: #111; color: #fff; }
#sidebar #content-slider .content-slider-items li div.item-text-wrapper a:active	{ top: 1px; }
#sidebar #content-slider .content-slider-items li div.item-text-wrapper a:hover		{ background-color: #15a34a; }

/* you may want to setup some decorations to active the item */
#sidebar #content-slider .content-slider-items .active {}

/* Navigation styles */
#sidebar #content-slider-navigation {
	position: absolute;
	bottom: 0;
	width: 80px;
	height: 18px;
	margin: 0 80px 50px 80px;
	z-index: 100;

}
#sidebar #content-slider-navigation a {
	color: #AAA;
	
	float: left;
	border: none;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	width: 10px;
	height: 16px;
	margin-right: 5px;
	vertical-align: middle;
	font-weight: bold;
	text-decoration: none;
}

#sidebar #content-slider-navigation a:hover,
#sidebar #content-slider-navigation a:active{
	color: #888;
}
#sidebar #content-slider-navigation a.activeSlide {
	color: #777;
}

#sidebar .knapp,
#sidebar .knapp .content:hover,
#sidebar .knapp .content:active{
	float: left;
	position: relative;
	font-size: 2em;
	height: 70px;
	width: 150px;
	text-align: center;
	vertical-align: middle;
	margin: 70px 35px 20px;
	text-decoration: none;
	border: none;

	background: #F00 url(/pix/awesome-neg70.png) repeat-x top center;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);

}
#sidebar a .knapp,
#sidebar a:hover .knapp,
#sidebar a:active .knapp{
	border: none;
	text-decoration: none;
}

#sidebar .knapp h3{
	/*background: #F00 url(/pix/uno_aqua.png) no-repeat top center;*/
	text-decoration: none;
	text-align: center;
	color: #FFF !important;
	font-size: 20px;
	line-height: 23px;
	vertical-align: middle;
	margin: 11px 10px;
}

#sidebar #content-slider.alt {
	background-position: 0 0;
}
#sidebar #content-slider.alt .content-slider-items {
	top: -20px;
}
#sidebar #content-slider.alt .content-slider-items li {
	height: 75px;
}
