/* ------------------------------------------------------------------------- */
/* --------------------------------- BUTTON -------------------------------- */
/* ------------------------------------------------------------------------- */

.button {
    background-repeat: repeat-x;
    display: inline;
    font-size: 110%;
    font-weight: bold;
    text-decoration: none;
    margin-right: 8px;
    padding: 5px 8px 15px 8px;
    position: relative;
}
.webkit .button {
    padding-top: 6px;
}
.button input {
    background: transparent; 
    border: none; 
    color: inherit;
    cursor: pointer;
    font-family: "Trebuchet MS", Verdana, Arial;
    font-size: 1em;
    font-weight: bold;
    margin: 0; 
    padding: 0;
}
.button b.left, .button b.right {
    background-repeat: no-repeat;
    top: 0px;
    height: 32px;
    position: absolute;
}
.button b.left {
    width: 6px;
    left: -6px;
}
.button b.right {
    width: 8px;
	right: -8px;
}
.button:hover {
    text-decoration: none;
}

.short-button {
    padding: 3px 5px 12px 5px;
}
.short-button b.left {
    width: 5px;
    left: -5px;
}
.short-button b.right {
    width: 7px;
    right: -7px;
}

