.button-blue{     background: #4477a1;     background: -webkit-gradient(linear, left top, left bottom, from(#81a8cb), to(#4477a1) );     background: -moz-linear-gradient(-90deg, #81a8cb, #4477a1);     filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#81a8cb', endColorstr='#4477a1'); }   .button-blue:hover{     background: #81a8cb;     background: -webkit-gradient(linear, left top, left bottom, from(#4477a1), to(#81a8cb) );     background: -moz-linear-gradient(-90deg, #4477a1, #81a8cb);     filter:  progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#4477a1', endColorstr='#81a8cb'); }   .button-blue:active{     background: #4477a1; }
.button-red        {            background: #D82741;            background: -webkit-gradient(linear, left top, left bottom, from(#E84B6E), to(#D82741) );            background: -moz-linear-gradient(-90deg, #E84B6E, #D82741);            filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#E84B6E', EndColorStr='#D82741');        }        .button-red:hover        {            background: #E84B6E;            background: -webkit-gradient(linear, left top, left bottom, from(#D82741), to(#E84B6E) );            background: -moz-linear-gradient(-90deg, #D82741, #E84B6E);            filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#D82741', EndColorStr='#E84B6E');        }                .button-red:active        {            background: #D82741;        } 