/* Set border and padding values moved inward */
 
/* Stepper */
.stepper{
    width: 150px;
    height: 32px;  
    position: relative;
    display: inline-block;
}
.stepper .stepper-input{
    width: 80px;
    height: 32px;  
    color: #000;
    background: #FFF;
    border:1px #CCC solid;
    margin: 0 0 0 34px;
    padding: 0;
    text-align:center;
    font-family:Arial;
    font-weight:bold;
    font-size:12pt;
    float:left;
}
.stepper:hover .stepper-input, .stepper .stepper-input:focus {
    background-color: #F9F9F9;
}
.stepper .stepper-step {
    width: 35px;
    height: 32px;  
    background: #EEE url(stepper.png) no-repeat;
    border:1px #CCC solid;
    cursor: pointer;
    display: block;
    position: absolute;
    text-indent: -99999px;
    border:1px #CCC solid;
}
.stepper .stepper-step:hover {
    background-color: #F9F9F9;
}
 
/* Up and Down arrows */
.stepper .stepper-step.up {
    background-position: center top;
    top: 0;
    float:left;
    margin:0 0 0 113px;
}
.stepper .stepper-step.down {
    background-position: center bottom;
    float:left;
    margin:0;
}
 
/* Disabled */
.stepper.disabled .stepper-input {
    background: #FFF;
    border: 1px solid #EEE;
    color: #CCC;
}
.stepper.disabled .stepper-step, .stepper.disabled .stepper-step:hover {
    background: #F9F9F9;
    border: 1px solid #EEE;
    cursor: default;
}
.stepper.disabled .stepper-step.up {
    background: #F9F9F9 url(stepper.png) no-repeat;
    background-position: center top;
    border-bottom: none;
    top: 0;
}
.stepper.disabled .stepper-step.down {
    background: #F9F9F9 url(stepper.png) no-repeat;
    background-position: center bottom;
    bottom: 0;
}