body {
    background-color: white;
    font-family: sans-serif;

    background-image: linear-gradient(bottom, #eee 0%, #fbfbfb 100%);
    background-image: -o-linear-gradient(bottom, #eee 0%, #fbfbfb 100%);
    background-image: -moz-linear-gradient(bottom, #eee 0%, #fbfbfb 100%);
    background-image: -webkit-linear-gradient(bottom, #eee 0%, #fbfbfb 100%);
    background-image: -ms-linear-gradient(bottom, #eee 0%, #fbfbfb 100%);
}

.uc-button-push-surround {

    border-radius: 5px;
    border-bottom: 3px solid white;

    width: 150px;
    margin: 0 auto;

    text-align: center;

    padding: 10px 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0, 0.1);

    background-image: linear-gradient(bottom, white 0%, white 50%, #eee 100%);
    background-image: -o-linear-gradient(bottom, white 0%, white 50%, #eee 100%);
    background-image: -moz-linear-gradient(bottom, white 0%, white 50%, #eee 100%);
    background-image: -webkit-linear-gradient(bottom, white 0%, white 50%, #eee 100%);
    background-image: -ms-linear-gradient(bottom, white 0%, white 50%, #eee 100%);

    overflow: hidden;
}

.uc-button-push {
    vertical-align: middle;
    text-align: center;
    padding: 8px 24px;

    border: 5px solid white;
    border-radius: 5px;
    box-shadow: 0 6px 8px rgba(0,0,0, 0.5), inset 0 1px 1px rgba(0,0,0, 0.05);

    background-color: white;
    background-image: linear-gradient(bottom, white 0%, white 50%, #f3f3f3 100%);
    background-image: -o-linear-gradient(bottom, white 0%, white 50%, #f3f3f3 100%);
    background-image: -moz-linear-gradient(bottom, white 0%, white 50%, #f3f3f3 100%);
    background-image: -webkit-linear-gradient(bottom, white 0%, white 50%, #f3f3f3 100%);
    background-image: -ms-linear-gradient(bottom, white 0%, white 50%, #f3f3f3 100%);
}

.uc-button-push > span {
    font-weight: normal;
    font-size: 150%;
    text-decoration: none;

    color: transparent;
    background-color: rgba(0,0,0, 0.5);
    text-shadow: 0px 2px 3px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;

}

.uc-button-push:hover, .pressed {
    color: #88C9F2;
}

.uc-button-push:active, .pressed {
    color: rgb(199,230,249) ;
    box-shadow: 0 2px 4px rgba(0,0,0, 0.3);
}