
/* container for slides */
.images {
    position:relative;
    height:350px;
    width:981px;
    float:left;
    margin:0px;
}

.images.news {
    height:200px;
}

.images.pic {

    height:165px;
}

.images.talks{
    height: 445px;
}

.images.sounds{
    height: 410px;
}

.images.speakers{
    height: 530px;
    margin: -11px 0 0 0;
}

.images.doc{
    height: 210px
}


/* container for slides */
.images.conf {
    position:relative;
    width: 720px;
    height: 422px;
    float:left;
    margin:0px;
}

/* single slide */
.slide.conf {
    display: none;
    position:absolute;
    width: 720px;
    top:0;
    left:0;
    margin:0px;
    padding:0px;
}

/* single slide */
.slide {
    display: none;
    position:absolute;
    width: 981px;
    top:0;
    left:0;
    margin:0px;
    padding:0px;
    
    font-size:12px;
}
.slide:first-child {
  display:inline;
}

/* tabs (those little circles below slides) */
.slidetabs {
    clear:both;
    margin-right: 33px;
    margin-top: -40px;
    float: right;
    display: inline;
}

/* tabs (those little circles below slides) */
.slidetabs.conf {
    clear:both;
    margin-right: 0px;
    margin-top: 10px;
    margin-left: 330px;
    display: block !important;
    position: absolute;
    bottom: 15px;
}

.rtl .slidetabs{
    float:left !important;
    margin-left: 33px;
    margin-right: 0px;
}

/* single tab */
.slidetabs a {
    width:15px;
    height:15px;
    float:left;
    margin:3px;
    background:url(images/navigator1.png) 0 0 no-repeat;
    display:block;
    font-size:1px;
}

.slidetabs.conf a{
    background:url(images/navigator2.png) 0 0 no-repeat;
}

/* mouseover state */
.slidetabs a:hover {
    background-position:0 -15px;
}

/* active state (current page state) */
.slidetabs a.current {
    background-position:0 -30px;
}

/* prev and next buttons */
.forward, .backward {
    float:left;
    margin-left: 5px;
    margin-top:140px;
    background:#fff url(images/hori_large.png) no-repeat;
    display:block;
    width:30px;
    height:30px;
    cursor:pointer;
    font-size:1px;
    text-indent:-9999em;
}

/* next */
.forward { background-position: 0 -30px; clear:right; }
.forward:hover { background-position:-30px -30px; }
.forward:active	{ background-position:-60px -30px; }


/* prev */
.backward:hover	{ background-position:-30px 0; }
.backward:active { background-position:-60px 0; }

/* disabled navigational button. is not needed when tabs are
   configured with rotate: true */
.disabled {
    visibility:hidden !important;
}

.navi {
width:100%;
margin-bottom: 20px;
height:20px;
text-align: center;
}


/* items inside navigator */
.navi a {
width:15px;
height:15px;
margin:3px;
background:url(images/navigator2.png) 0 0 no-repeat;
display:inline-block;
font-size:1px;
bottom: 0;
}

/* mouseover state */
.navi a:hover {
background-position:0 -15px;
}

/* active state (current page state) */
.navi a.active {
background-position:0 -30px;
}


/*
root element for the scrollable.  when scrolling occurs this
element stays still.
*/
.scrollable {
  /* required settings */
  position:relative;
  overflow:hidden;
  width: 717px;
  height:422px;
}
 
/*
root element for scrollable items. Must be absolutely positioned
and it should have a extremely large width to accommodate scrollable
items.  it's enough that you set width and height for the root element
and not for this element.
*/
.scrollable .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.
*/
.items div {
  float:left;
}