@charset "UTF-8";
/* CSS Document */

/************ Scrollable **************/
/* root element for scrollable */ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 580px;  
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute;
	width: 270px; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
}

/* single scrollable item */
.items div {
	color:#666666;
	line-height: 1.6em;
}

.items div h1 {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 6px;
	padding: 8px 15px 8px 15px;
	background-color:#F0F0F0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #DDDDDD;
}

.items div h1 a {
	display: block;
}

.items div p {
	margin-bottom: 0px;
	padding: 0 15px 15px 15px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons below the scrollable */
#actions {
	margin: 15px 15px 10px 15px;	
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
	display: block;
	background-image: url(../_images/buttons/locator_next.gif);
	background-repeat: no-repeat;
	background-position: right 50%;
	padding-right: 20px;
}

.prevPage {
	display: block;
	float: left;
	background-image: url(../_images/buttons/locator_prev.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
	padding-left: 20px;
}
/************ Scrollable **************/

/************ Tooltip **************/
#tooltip {
	display:none;
	font-size:12px;
	color: #ffffff;
	height:70px;
	width:160px;
	padding:25px;
	background-color: transparent;
	background-image: url(../_images/tooltip/black_arrow.png);
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 100;
}

#form-tooltip { 
    background-color:#000; 
    border:1px solid #fff; 
    padding:10px 15px; 
    width:200px; 
    display:none; 
    color:#fff; 
    text-align:left; 
    font-size:11px; 
 
    /* outline radius for mozilla/firefox only */ 
    -moz-box-shadow:0 0 10px #000; 
    -webkit-box-shadow:0 0 10px #000; 
}
/************ Tooltip **************/

/************ jQuery UI override **************/
/* Component containers
----------------------------------*/
.ui-widget { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; }

/************ jQuery UI override **************/