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

.jcarousel-list li,
.jcarousel-item {
    float: left;
    list-style: none;
    /* We set the width/height explicitly. No width/height causes infinite loops. */
	width:177px;
	height:111px;
	margin:0 11px 0 0;
}
.jcarousel-list li a {
	cursor:pointer;
}
.jcarousel-list img {
	width:169px;
	height:103px;
	padding:3px;
	background-color:#fff;
	color:inherit;
	border: 1px solid #CECECE;
	}
/**
 * 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;
}

/********************************************************************/

ul.topnav {
	list-style: none;
	padding:0;	
	margin: 0;
	float: left;
	background: #222;
	background:url(topnav_bg.gif) repeat-x;
}
ul.topnav li {
	float: left;
	margin: 0;	
	padding: 0 0px 0 0;
	position: relative; /*--Declare X and Y axis base--*/
}
ul.topnav li a{
	font:bold 11px/24px "Lucida Sans Unicode", Arial, Verdana, tahoma;
	color:#4A4A4A;
	text-decoration: none;
	width:101px;
	text-align:center;
	display:block;
	float:left;
	color: #fff;
	border-top:#E1F5FE 1px solid;
	border-right:#E1F5FE 1px solid;
	border-left:#E1F5FE 1px solid;
	position:relative;
	background:#4A4A4A;
	top:3px;
	z-index:200000;
}

ul.topnav li a:hover{
	background: url(topnav_hover.gif) no-repeat center top;
	font:bold 14px/24px "Lucida Sans Unicode", Arial, Verdana, tahoma;
	color:#000;
	background-color: #fff;
	border-bottom:solid 4px #fff;
	top:3px;
}

ul.topnav li ul.subnav {
	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
	left:0; top:25px;
	background:#333;
	display:none;
	float:left;
}
ul.topnav li ul.subnav li a {
	font:normal 12px/24px "Lucida Sans Unicode", Arial, Verdana, tahoma;
	font-weight:normal;
	border:none;
	}
ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
	/*background: #222 url(dropdown_linkbg.gif) no-repeat 10px center; */
	font:normal 12px/24px "Lucida Sans Unicode", Arial, Verdana, tahoma;
}

