.customButton {

    display:inline-block;
    background:  no-repeat;
    cursor:pointer;
    color:#ffffff;
    font-family:arial;
    font-size:17px;
    padding:26px 26px;
    text-decoration:none;
    text-shadow:0px 1px 0px #2f6627;
}

.arrowButton {
    position: relative;
}
.arrowButton:before {
    content:"";
    position: absolute;
    left: 100%;
    top: 26px;
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-left: 26px solid red;
    border-bottom: 13px solid transparent;
}

.customButtonVertical {


    background:  no-repeat;
    cursor:pointer;

    padding:22px;

}
.customButton:hover {

}
.customButton:active {
    position:relative;
    top:1px;
}

.alphafive {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default;
}