/* CSS Document */

.buttonLink {
    width: 5em;
    margin-right: 2px;
    text-align: center;
    letter-spacing: 2px;
}
.buttonLink a {
    display: block;
    color: #222;
    text-decoration: none;
    font-size: 95%;
    font-weight: bold;
    line-height: 2;
    border: solid 1px #efefef;
    border-radius: 5px;
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.2);
    background: -moz-linear-gradient(top, #eee, #999);
    background: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#999));
    /*IE6 IE7 */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#e7ff71, endcolorstr=#bce200));
    /* IE8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#e7ff71, endcolorstr=#bce200))";
    zoom: 1;
}
.buttonLink a:hover {
    position: relative;
    top: 1px;
    left: 1px;
    box-shadow: none;
    border: solid 1px #bce200;
    background: -moz-linear-gradient(top, #bce200, #e7ff71);
    background: -webkit-gradient(linear, left top, left bottom, from(#bce200), to(#e7ff71));
    /*IE6 IE7 */
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#bce200, endcolorstr=#e7ff71));
    /* IE8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startcolorstr=#bce200, endcolorstr=#e7ff71))";
    zoom: 1;
}