/**
 * This <div> 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;
}

#sidebar .jcarousel-list {
	background:#E8E8E8 none repeat scroll 0 0;
	padding:14px;}



.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. 
    width: 75px;
    height: 75px;
    
    Don't appear to need these at all..
    */
}

/**
 * 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: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
} 
*/

/* VERTICAL CAROUSEL */



.jcarousel-container-vertical {
    width: 200px;
    height: 375px;
    padding: 10px 0px;
}

#employment .jcarousel-container-vertical {height:400px;}

.jcarousel-clip-vertical {
    width:  200px;
    height: 375px;
}

#employment .jcarousel-clip-vertical {height:400px;}

.jcarousel-item-vertical {
    margin-bottom: 5px;
}

#sidebar .jcarousel-item-vertical img {border:1px solid #CBC9C9;}

#sidebar .jcarousel-item-vertical h3 {font-size:13px;line-height:1.2em;}

#employment ul {padding:20px 25px!important;}

#employment li {padding:0!important;}

/**
 *  Vertical Buttons
 */
.jcarousel-next-vertical {
    width: 93px;
    height: 15px;
    cursor: pointer;
    background: transparent url("/networkpr/theme/jcarousel/next-vertical.png") no-repeat 0 0;
}

.jcarousel-next-vertical:hover {
    background-position: 0 -15px;
}

.jcarousel-next-vertical:active {
    background-position: 0 -15px;
}

.jcarousel-next-disabled-vertical,
.jcarousel-next-disabled-vertical:hover,
.jcarousel-next-disabled-vertical:active {
    cursor: default;
    background-position: 0 -15px;
}

.jcarousel-prev-vertical {
    width: 93px;
    height: 15px;
    cursor: pointer;
    background: transparent url("/networkpr/theme/jcarousel/prev-vertical.png") no-repeat 0 0;
}

.jcarousel-prev-vertical:hover {
    background-position: 0 -15px;
}

.jcarousel-prev-vertical:active {
    background-position: 0 -15px;
}

.jcarousel-prev-disabled-vertical,
.jcarousel-prev-disabled-vertical:hover,
.jcarousel-prev-disabled-vertical:active {
    cursor: default;
    background-position: 0 -15px;
}




