@charset "utf-8";
/* CSS Document */

#showing {
background: url(../../images/bgs/showing.gif) 28px 0 no-repeat;
	height: 250px;
	width: 590px;
	margin-bottom: 10px;
	position: relative;
	padding-top:5px;
	z-index:1002;
	border:0px solid red;
}


#showing a {
	border: none;
}

#showing h2 {
	color: #006093;
	font-size: 0em;	/* 18px */
	font-weight: normal;
	margin: 0;
}

/*  
    root element for the scrollable.  
    when scrolling occurs this element stays still.  
*/ 
div.scrollable { 
    /* required settings */ 
    position:relative; 
    overflow:hidden;          
    width: 490px;
	height: 204px;
	top: 10px;
	left: 27px;
} 
*html div.scrollable { top:0; }

 
/*  
    root element for scrollable items. Must be absolutely positioned 
    and it should have a super large width to accomodate scrollable items. 
    it's enough that you set width and height for the root element and 
    not for this element. 
*/ 
div.scrollable div.items {
    /* this cannot be too large */ 
    width:20000em;     
    position:absolute;
  border: 0px solid #f00;
}

div.scrollable div.items img {
  border: 0px solid #084977;
	padding: 1px;
	width:115px;
	height:171px;
} 
 
/*  
    a single item. must be floated on horizontal scrolling 
    typically this element is the one that *you* will style 
    the most. 
*/ 
div.scrollable div.items div {float: left; width: 117px; height: 225px;	margin-right: 7px;	position: relative;	background: #003a6b url(../../images/buttons/buyNow.gif) 0 172px no-repeat;}
div.scrollable div.items div.advanced  {background: #003a6b url(../../images/buttons/advanceBooking.gif) 0 172px no-repeat;}
div.scrollable div.items div.advanced.item-hover {background: #c65df5 url(../../images/buttons/advanceBooking.gif) -130px 172px no-repeat;}

div.scrollable div.items div.soldOut  {background: #003a6b url(../../images/buttons/soldOut.gif) 0 172px no-repeat;}
div.scrollable div.items div.soldOut.item-hover {background: #E33524 url(../../images/buttons/soldOut.gif) -130px 172px no-repeat;}

div.scrollable div.items div.limited  {background: #003a6b url(../../images/buttons/limited.gif) 0 172px no-repeat;}
div.scrollable div.items div.limited.item-hover {background: #FD8C5E url(../../images/buttons/limited.gif) -130px 172px no-repeat;}

div.scrollable div.items div.item-hover {	background:#BFDF31 url(../../images/buttons/buyNow.gif) -130px 172px no-repeat;	cursor:pointer;}

	*html div.scrollable div.items div {background: #BFDF31 url(../../images/buttons/buyNow.gif) -130px 172px no-repeat !important;}
	*html div.scrollable div.items div.limited  {background: #C6460B url(../../images/buttons/limited.gif) -130px 172px no-repeat !important;}
	*html div.scrollable div.items div.advanced  {background: #c65df5 url(../../images/buttons/advanceBooking.gif) -130px 172px no-repeat !important;}
	*html div.scrollable div.items div.soldOut  {background: #E33524 url(../../images/buttons/soldOut.gif) -130px 172px no-repeat !important;}
	div.scrollable div.items div.item-hover img { padding-top: 3px !important; }


div.scrollable div.items div a {display: block;	margin: 0;	width: 115px; border:0px solid red !important;}
div.scrollable div.items div h3 {	font-size: 1em;	text-align: center;	padding: 0;	margin: 0;	display:none;}
div.scrollable div.items div p {	font-weight: bold;	text-align: center;	padding: 0;	margin: 0 0 5px 0;}

div.scrollable div.items div a.ticket-btn {	background: url(../i/showing-tickets-btn.png) no-repeat; display: block;height: 22px;	width: 117px;	text-indent: -9999px;	margin: 0 0;	position: absolute;
	bottom: 25px;}

div.scrollable div.items div a.ticket-btn:hover {	background-position: 0 -22px;}
 
/* you may want to setup some decorations to active item */ 
div.items div.active { }

/* this makes it possible to add next button beside scrollable */
div.scrollable {
	/*float:left;*/		
}

/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	width:28px;
	height:201px;
	background: url(../../images/buttons/prev.gif) 0 50px no-repeat;
	cursor:pointer;
	position: absolute;
}

a.prev, a.prevPage {
	top: 25px;
	left: 0px;
}

a.next, a.nextPage {
	bottom: 25px;
	right: 46px;
}

/* mouseover state */
a.prev:hover, a.next:hover, a.prevPage:hover, a.nextPage:hover {
	background-position: -30px 50px; cursor:pointer;
}

a.prev:active, a.next:active, a.prevPage:active, a.nextPage:active {
top:27px;	
}

/* disabled navigational button */
a.disabled {
	/*visibility:hidden !important;*/		
}

/* next button uses another background image */
a.next, a.nextPage {
	background: url(../../images/buttons/next.gif) 0 50px  no-repeat; 
	/*clear:right;*/
}

/*********** navigator ***********/

/* position and dimensions of the navigator */
div.navi {
	padding-top: 0;
	margin-bottom:10px;
	margin-left:50px;
	width:150px;
	height:15px;
	position:relative;
	float:right;
	left:-75px;
}

/* items inside navigator */
div.navi a {
	width:10px;
	height:10px;
	float:right;
	padding:0 !important;
	margin:3px;
	background: url(../../images/pageElements/ball.gif) 0 -11px no-repeat;     
	cursor:pointer;	
}

/* mouseover state */
div.navi a:hover {
	background-position:0 0px;   
}

/* active state (current page state) */
div.navi a.active {
	background: url(../../images/pageElements/ball.gif) 0 0px no-repeat; 
	position:relative; top:2px;    
 
}
