﻿@charset "utf-8";
/* CSS Document */


/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable-wrapper {
    position:relative;
    width: 612px;
    height: 512px;
}

.scrollable-wrapper:hover .browse {
    visibility:visible;
}

.scrollable {

    /* required settings */
    position:relative;
    overflow:hidden;
    width: 600px;
    height:500px;

    /* custom decorations */
    border:6px outset #dae6ef;
}

/*
   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.
*/
.scrollable .items {
    /* this cannot be too large */
    width:20000em;
    position:absolute;
    clear:both;
}

.items div {
    float:left;
    width:600px;
}

/* single scrollable item */
.scrollable img {
    float:left;
    margin:0;
    background-color:#fff;
    padding:0;
    border:none;
    width:300px;
    height:250px;
}

/* active item */
.scrollable .active {
    border:2px solid #000;
    position:relative;
    cursor:default;
}

.banner-large, .banner-large img {
    width:600px !important;
    height:500px !important;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
    float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
    /*background:url(../images/hori_arrow.png) no-repeat;*/
    display:block;
    width:51px;
    height:50px;
    cursor:pointer;
    font-size:1px;
    visibility:hidden;
}

/* right */
/*a.right { position:absolute; background-position: 0 -30px; left:565px; top:235px; z-index:999; }
a.right:hover { background-position:-30px -30px; }
a.right:active { background-position:-60px -30px; }*/
a.right {
    position: absolute;
    right: 13px;
    top: 230px;
    z-index: 999;
    background: url(../images/arrows_banner.png) no-repeat;
    background-position: 100% 0;
    opacity: 0.7;
}
    a.right:hover {
        background-position:100% 100%;
    }


/* left */
/*a.left { position:absolute; margin-left: 0px; left:15px; top:235px; z-index:999; }
a.left:hover  { background-position:-30px 0; }
a.left:active { background-position:-60px 0; }*/
a.left {
    position: absolute;
    left: 13px;
    top: 230px;
    z-index: 999;
    background: url(../images/arrows_banner.png) no-repeat;
    background-position: 0 0;
}
    a.left:hover {
        background-position:0 100%;
    }


/* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}

/* carousel pagination */
.banner-pagination {
	height:36px;
    width:180px;
	margin:13px auto 0 auto;
}
.banner-pagination ul {
	display:inline-block;
    *display:inline;
	margin-bottom:0;
	margin-left:0;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
    *zoom:1;
	-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);
	-moz-box-shadow:0 1px 2px rgba(0,0,0,0.05);
	box-shadow:0 1px 2px rgba(0,0,0,0.05);
}
.banner-pagination li {
	display:inline;
}
.banner-pagination a {
	float:left;
	padding:0 12px;
	line-height:30px;
	text-decoration:none;
	border:1px solid #ddd;
	border-left-width:0;
    color:#08c;
}
.banner-pagination a:hover, .pagination .active a {
	background-color:#f5f5f5;
}
.banner-pagination .active a {
	color:#666;
	cursor:default;
    background-color:#f5f5f5;
}
.banner-pagination .disabled span, .banner-pagination .disabled a, .banner-pagination .disabled a:hover {
	color:#999;
	cursor:default;
	background-color:transparent;
}
.banner-pagination li:first-child a {
	border-left-width:1px;
	-webkit-border-radius:3px 0 0 3px;
	-moz-border-radius:3px 0 0 3px;
	border-radius:3px 0 0 3px;
}
.banner-pagination li:last-child a {
	-webkit-border-radius:0 3px 3px 0;
	-moz-border-radius:0 3px 3px 0;
	border-radius:0 3px 3px 0;
}
.banner-pagination-centered {
	text-align:center;
}
.banner-pagination-right {
	text-align:right;
}


/* Image Pouout */
.adipoli-wrapper
{
    margin:auto;
    position:relative;
    display: inline-block;
    cursor:pointer;
}
.adipoli-wrapper>img
{
    position: absolute;
    z-index: 1;
}
.adipoli-before
{
    position: absolute;
    z-index: 5;
}
.adipoli-after
{
    position: absolute;
    z-index: 10;
}
.adipoli-slice {
    display:block;
    position:absolute;
    z-index:15;
    height:100%;
}
.adipoli-box
{
    display:block;
    position:absolute;
    z-index:15;
}
