@charset "utf-8";

/*
  root element for the scrollable.
  when scrolling occurs this element stays still.
  */
.scrollable {

    position:relative;
    overflow:hidden;
    width: 600px;
	min-height:440px;

}
.ie7 .scrollable, .ie8 .scrollable {min-height:440px;}

/*
   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.item {
    float:left;
    width:600px;
}


/* this makes it possible to add next button beside scrollable */
.scrollable {
    float:left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
    background:url(../images/myaccount/buttons.png) no-repeat;
    display:block;
    width:34px;
    height:27px;
    float:left;
    margin:10px;
    cursor:pointer;
    font-size:1px;
}

/* right */
a.right { background-position: 0 -27px; clear:right; margin-right: 0px;}
a.right:hover { background-position:-34px -27px; }
a.right:active { background-position:-68px -27px; }


/* left */
a.left { margin-left: 0px; }
a.left:hover  { background-position:-34px 0; }
a.left:active { background-position:-68px 0; }


/* disabled navigational button */
a.disabled {
    visibility:hidden !important;
}



/* position and dimensions of the navigator */
.navi {
    margin:7px 0 0 230px;
    width:200px;
    height:23px;
	float:left;
}


/* items inside navigator */
.navi a {
    width:23px;
    height:23px;
    float:left;
    margin:3px;
    background:url(../images/myaccount/navigator.png) 0 0 no-repeat;
    display:block;
    font-size:1px;
	cursor:pointer;
}

/* mouseover state */
.navi a:hover {
    background-position:0 -23px;
}

/* active state (current page state) */
.navi a.active {
    background-position:0 -46px;
}