<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * This &lt;div&gt; element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
}
.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}
.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}
.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
    width:100%;
    height: 75px;
}
/**
 * The buttons are added dynamically by jCarousel before
 * the &lt;ul&gt; list (inside the &lt;div&gt; described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}
.jcarousel-prev {
    z-index: 3;
    display: none;
}
.jcarousel-container-vertical {
    width:100%;
    /*height: 291px;*/
	height: 420px;
    padding: 0;
}
.jcarousel-clip-vertical {
    width:100%;
    /*height: 291px;*/
	height: 420px;
}
.jcarousel-item {
    width:100%;
    height: 95px;
}
.jcarousel-item-vertical {
    margin-bottom: 0px;
}
.jcarousel-item-placeholder {
    background: #fff;
    color: #000;
}
/*  Vertical Buttons    */
.jcarousel-next-vertical {
    position: absolute;
    bottom: 9px;
    left: 100px;
    width:20%;
    height: 33px;
    cursor: pointer;
    background: transparent url(../images/next-vertical.png) no-repeat 0 0;
}
.jcarousel-next-vertical:hover {
    background-position: 0 -32px;
}
.jcarousel-next-vertical:active {
    background-position: 0 -64px;
}
.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}
.jcarousel-prev-vertical {
    position: absolute;
    top: 7px;
    left: 100px;
    width:20%;
    height: 33px;
    cursor: pointer;
    background: transparent url(../images/prev-vertical.png) no-repeat 0 0;
}
.jcarousel-prev-vertical:hover {
    background-position: 0 -32px;
}
.jcarousel-prev-vertical:active {
    background-position: 0 -64px;
}
.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -96px;
}
/* Slide Show */
#slideshow-main {
    /*width:100%;*/
    float:left; 
    /*margin-right:3px;*/   
}
#slideshow-main ul {
    margin:0; 
    padding:0; 
    width:100%;
}
#slideshow-main li {
    width:100%;
    /*height:290px; */
    display:none;
    position:relative;
}
#slideshow-main li.active {
    display:block !important;
}
#slideshow-main li span.opacity {
    position:absolute;
    bottom:0; left:0;
    display:block; 
    width:100%;
    height:60px;
    background:#000;
    filter:alpha(opacity=50); 
    -moz-opacity:0.5; 
    -khtml-opacity: 0.5; 
    opacity: 0.5;
    z-index:500;
}
#slideshow-main li span.content {
    position:absolute;
    bottom:0; left:0;
    display:block; 
    width:100%;
    height:60px;
    z-index:1000;
}
#slideshow-main li span.content h1 {
    font-size:14px;
    margin:5px 0;
    padding:0 10px;;
    color:#42e2e8;
}
#slideshow-main li span.content p {
    /*font-size:11px;*/
    margin:5px 0;
    /*padding:0 10px;;*/
    /*color:#42e2e8;*/
}
#slideshow-carousel {
    float:left; 
    /*width:100%;*/
    position:relative;
    /*min-height: 300px;
    max-height: 300px;
    */overflow: hidden;
}
#scrollContent{
    overflow: hidden;
    height: 420px;
}
#slideshow-carousel ul {
    margin:0; 
    padding:0;
    list-style:none;
}
#slideshow-carousel li {
    background:#fff; 
    /*height:97px;*/
	height:165px; 
    position:relative;
	margin-bottom:5px;
}
#slideshow-carousel li:last-child{margin-bottom:0px;}
/*#slideshow-carousel li .arrow {
    left:3px; 
    top:28px; 
    position:absolute; 
    width:100%;
    height:40px; 
    background:url(../images/arrow_white.png) no-repeat 0 0; 
    display:block;
}*/
#slideshow-carousel li a {
    background:#000; 
    display:block; 
    width:100%;
    outline: none;
    /*height:95px;*/
}
#slideshow-carousel .active {
    filter:alpha(opacity=100); 
    -moz-opacity:1.0; 
    -khtml-opacity: 1.0; 
    opacity: 1.0;
}
#slideshow-carousel .faded {
    filter:alpha(opacity=50); 
    -moz-opacity:0.5; 
    -khtml-opacity: 0.5; 
    opacity: 0.5;
}
.sliderr img{min-height:165px; max-height:165px;}</pre></body></html>