﻿/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */
.jcarousel-container {
    position: relative;
    width: 930px;
    margin-left: 15px;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0px 0px 0px 22px;
    overflow: hidden;
    position: relative;
    width: 880px;
    
}

.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: 220px;
    width: 90px;
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next
{
    z-index: 3;
    display: block;
    background: red;
    width: 29px;
    height: 90px;
    position: absolute;
    top: 0px;
    right: 0px;
    overflow: hidden;
    cursor: pointer;
}

.jcarousel-prev 
{
    z-index: 3;
    display: none;
    display: block;
    background: green;
    width: 29px;
    height: 90px;
	position: absolute;
    top: 0px;
    left: 0px;
    cursor: pointer;
    background: url('homepage-next-prev-buttons.gif') 0px -90px no-repeat;
}


/* St Marys Theme Starts */

.carouselStMarys .jcarousel-container {
    -moz-border-radius: 10px;
    background: #F0F6F9;
    border: 1px solid #346F97;    
}

.carouselStMarys .jcarousel-container-horizontal {}

.carouselStMarys .jcarousel-clip-horizontal {}

.carouselStMarys .jcarousel-item { width: 220px; height: 90px; }

.carouselStMarys .jcarousel-item-horizontal { margin-right: 0px; }

.carouselStMarys .jcarousel-item-placeholder { background: #fff; color: #000; }















/**
 *  Horizontal Buttons
 */


.jcarousel-next-horizontal,
.jcarousel-next-horizontal:active 
{
    background: url('homepage-next-prev-buttons.gif') -29px 0px no-repeat;	
}

.jcarousel-next-horizontal:hover
{
    background: url('homepage-next-prev-buttons.gif') -58px 0px no-repeat;	
}


.jcarousel-next-disabled-horizontal,
.jcarousel-next-disabled-horizontal:hover,
.jcarousel-next-disabled-horizontal:active {
    cursor: default;
    background: url('homepage-next-prev-buttons.gif') 0px 0px no-repeat;
}

.jcarousel-prev-horizontal,
.jcarousel-prev-horizontal:active 
{
    background: url('homepage-next-prev-buttons.gif') -29px -90px no-repeat;	
}

.jcarousel-prev-horizontal:hover
{
    background: url('homepage-next-prev-buttons.gif') -58px -90px no-repeat;	
}

.jcarousel-prev-disabled-horizontal,
.jcarousel-prev-disabled-horizontal:hover,
.jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background: url('homepage-next-prev-buttons.gif') 0px -90px no-repeat;
}


/*
.carouselStMarys .jcarousel-prev-horizontal {
    position: absolute;
    top: 43px;
    left: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    background: transparent url(prev-horizontal.png) no-repeat 0 0;
}

.carouselStMarys .jcarousel-prev-horizontal:hover {
    background-position: -32px 0;
}

.carouselStMarys .jcarousel-prev-horizontal:active {
    background-position: -64px 0;
}

.carouselStMarys .jcarousel-prev-disabled-horizontal,
.carouselStMarys .jcarousel-prev-disabled-horizontal:hover,
.carouselStMarys .jcarousel-prev-disabled-horizontal:active {
    cursor: default;
    background-position: -96px 0;
}
*/