
    .myButton {
        
        -moz-box-shadow:inset 0px 1px 0px 0px #EEEEEE;
        -webkit-box-shadow:inset 0px 1px 0px 0px #EEEEEE;
        box-shadow:inset 0px 1px 0px 0px #EEEEEE;
        
        background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #B9B9B9), color-stop(1, #E5E5E5));
        background:-moz-linear-gradient(top, #B9B9B9 5%, #E5E5E5 100%);
        background:-webkit-linear-gradient(top, #B9B9B9 5%, #E5E5E5 100%);
        background:-o-linear-gradient(top, #B9B9B9 5%, #E5E5E5 100%);
        background:-ms-linear-gradient(top, #B9B9B9 5%, #E5E5E5 100%);
        background:linear-gradient(to bottom, #B9B9B9 5%, #E5E5E5 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#B9B9B9', endColorstr='#E5E5E5',GradientType=0);
        
        background-color:#B9B9B9;
        
        -moz-border-radius:3px;
        -webkit-border-radius:3px;
        border-radius:3px;
        
        border:1px solid #ADADAD;
        
        display:inline-block;
        padding:4px 24px;
        text-decoration:none;

font-family:"Simplified Arabic";
font-weight:bold;
font-size: 13px;
color:#000000;
        
        text-shadow:0px 1px 0px #ffffff;
        
    }
    .myButton:hover {
        
        background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #E5E5E5), color-stop(1, #B9B9B9));
        background:-moz-linear-gradient(top, #E5E5E5 5%, #B9B9B9 100%);
        background:-webkit-linear-gradient(top, #E5E5E5 5%, #B9B9B9 100%);
        background:-o-linear-gradient(top, #E5E5E5 5%, #B9B9B9 100%);
        background:-ms-linear-gradient(top, #E5E5E5 5%, #B9B9B9 100%);
        background:linear-gradient(to bottom, #E5E5E5 5%, #B9B9B9 100%);
        filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#E5E5E5', endColorstr='#B9B9B9',GradientType=0);
        
        background-color:#E5E5E5;
    }
    .myButton:active {
        position:relative;
        top:1px;
    }
