 /*--- СТИЛИ КНОПОК ---*/

 button,
 input[type="submit"] { position: relative;
                        vertical-align: middle;
                        padding: 7px 13px;
                        -moz-border-radius: 5px;
                        -webkit-border-radius: 5px;
                        border-radius: 5px;
                        font: normal 14px 'Roboto', sans-serif;
                        color: #555;
                        text-decoration: none;
                        display: inline-block;
                        *display: inline;/*IE*/ 
                        border: 1px solid #ccc; 
                        outline: none;
                        background-color: #f0f0f0 }

   button:active,
   input[type="submit"]:active { top: 1px }
   button[disabled]:active { top: 0 }

   button:hover,
   button:visited,
   input[type="submit"]:hover { border: 1px solid #bbb; background-color: #f8f8f8 }
   button[disabled]:hover { border: 1px solid #ccc; background-color: #efefef }

   button.small { font-size: 13px; padding: 5px 10px }
   button.medium { font-size: 15px; padding: 10px 15px }
   button.large { font-size: 16px; padding: 15px 25px }
   button[disabled] { color: #ccc; cursor: default; background-color: #efefef }
	
   .square { -moz-border-radius: 0;                         /*-- квадратный стиль --*/
             -webkit-border-radius: 0;
             border-radius: 0 }

   button.lgreen,                                             
   input[type=submit].lgreen { color: #333;
                              border: none;
                              background-color: #e1e8e6 }
     button.lgreen:hover { background-color: #d5e6da }
     button[disabled].lgreen { border: none; color: #ccc; cursor: default; background-color: #efefef }    