
/* get rid of those system borders being generated for A tags */
a:active {
    outline: none;
}:focus {
    -moz-outline-style: none;
}

/*
 root element for the scrollable.
 when scrolling occurs this element stays still.
 */
.scrollable {
    /* required settings */
    position: relative;
    overflow: hidden;
    width: 680px;
    height: 280px;
}
/*
 root element for scrollable items. Must be absolutely positioned
 and it should have a extremely large width to accomodate scrollable items.
 it's enough that you set the width and height for the root element and
 not for this element.
 */
.scrollable .items {
    /* this cannot be too large */
    width: 20000em;
    position: absolute;
    clear: both;
}

.items div {
    float: left;
    width: 680px;
	height:268px;
    padding: 0 0 0 4px;
	border-bottom:1px solid #cccccc;
	border-top:1px solid #cccccc;
}

.items div li {
    width: 135px;
    float: left;
    height: 200px;
	margin:22px 0 0 0;
	padding:27px 0 0 0;
    list-style-type: none;
    text-align: center;
    border-right: 1px solid #cccccc;
}

.items div p li:hover {
    background-color: #f9f9f9;
	
}

.items div li a {
    text-decoration: none;
    color: #333;
	font-size:17px;
}
.items div li a:hover , .items p:hover{
	color:Red;
}
.items p {
	border-top:1px solid #ccc;
	padding:5px 0 0 0;
	font-size:11px;
	color:#888;
	width:100px;
	margin:10px auto;
}
/* single scrollable item */
.scrollable img {
    padding: 2px;
}

/* active item */
.scrollable .active {
    border: 2px solid #000;
    position: relative;
    cursor: default;
}

/* this makes it possible to add next button beside scrollable */
.scrollable {
    float: left;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
    display: block;
    width: 20px;
    height: 30px;
    float: left;
	position:absolute;
    cursor: pointer;
    font-size: 12px;
}

/* right */
a.right {
	background: url(../images/arrow_right.gif) no-repeat 0 0;
    clear: right;
	z-index:100;
	right:0px;
	top:79px;
}

a.right:hover {
    background: url(../images/arrow_right_hover.gif) no-repeat 0 0;
}

a.right:active {
    background: url(../images/arrow_right_active.gif) no-repeat 0 0;
}

/* left */
a.left {
	background: url(../images/arrow_left.gif) no-repeat 0 0;
    left:-26px;
	z-index:100;
	top:79px;
}

a.left:hover {
	background: url(../images/arrow_left_hover.gif) no-repeat 0 0;
}

a.left:active {
    background: url(../images/arrow_left_active.gif) no-repeat 0 0;
}

/* up and down */
a.up, a.down {
    background: url(vert_large.png) no-repeat;
    float: none;
    margin: 10px 50px;
}

/* up */
a.up:hover {
    background-position: -30px 0;
}

a.up:active {
    background-position: -60px 0;
}

/* down */
a.down {
    background-position: 0 -30px;
}

a.down:hover {
    background-position: -30px -30px;
}

a.down:active {
    background-position: -60px -30px;
}

/* disabled navigational button */
a.disabled {
    visibility: hidden !important;
}

/* position and dimensions of the navigator */
.navi {
    margin-left: 328px;
    width: 200px;
    height: 20px;
}

/* items inside navigator */
.navi a {
    width: 8px;
    height: 8px;
    float: left;
    margin: 3px;
    background: url(../img/scrollable/arrow/navigator.png) 0 0 no-repeat;
    display: block;
    font-size: 1px;
}

/* mouseover state */
.navi a:hover {
    background-position: 0 -8px;
}

/* active state (current page state) */
.navi a.active {
    background-position: 0 -16px;
}

