/*
 * jQuery Stepper
 * http://designpunct.com/projects/jquery.stepper.js
 *
 * Copyright 2010, Andrei Eftimie
 * Dual licensed under the MIT or GPL Version 2 licenses.
 *
 */

.stepper { 
	position: relative;
}
.arrows { display:none; }
.arrows_enabled { 
	display:block;
	margin:0px 3px 0px 0px;
	z-index:9999;
}

.stepper-plus, .stepper-minus { 
	display:block;
	width:18px;
	height:13px;
	text-indent:-9999px;
    border: 1px solid #375297;
} 


.stepper-plus {
	border-bottom:none;
	background:#677CC8 url(../../images/layout/ui/ui-icons_ffffff_256x240.png) 1px -17px no-repeat;
}

.stepper-minus {
	background:#677CC8 url(../../images/layout/ui/ui-icons_ffffff_256x240.png) -64px -17px no-repeat;
}

.stepper-plus:hover {
	background:#395295 url(../../images/layout/ui/ui-icons_ffffff_256x240.png) 1px -17px no-repeat;
}

.stepper-minus:hover {
	background:#395295 url(../../images/layout/ui/ui-icons_ffffff_256x240.png) -64px -17px no-repeat;
}