﻿/* BUTTONS */
.buttons /* the container */
{
    margin-bottom:8px;
	width: 351px;
}

.buttons a, .buttons button{
    color:#777777;
    background-color:#F5F5F5;
    border:1px solid #dddddd;

    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
 
    cursor:pointer;    
    text-align:center;    
    
    font-size:15px;
    font-weight:normal;    
    /*height:36px;*/
    /*line-height:36px;*/
    
    text-decoration:none;
    /*text-transform:uppercase;*/
    
    display:block; 
    float:left;   
    padding:6px 14px 6px 12px;
    margin:0 2px 0 0;
}


.buttons a, .buttons button{
    width:auto;
    overflow:visible;
}


.buttons button img, .buttons a img
{
    width:16px;
    height:16px;
    margin-right:2px;
    vertical-align:-3px;    
    border:0; 
}




/* STANDARD */
button:hover, .buttons a:hover{
    background-color:#C2DAF0;
    border:1px solid #9BBAE2;
    color:#145591;
}


/* POSITIVE */

button.positive, .buttons a.positive{
    color:#529214;
}
.buttons a.positive:hover, button.positive:hover{
    background-color:#E6EFC2;
    border:1px solid #C6D880;    
    color:#529214;
}


/* NEGATIVE */

.buttons a.negative, button.negative{
    color:#D12F19;
}
.buttons a.negative:hover, button.negative:hover{
    background-color:#FBE3E4;
    border:1px solid #FBC2C4;
    color:#D12F19;
}


/* DISABLED */
button.disabled, .buttons a.disabled, .buttons a.disabled:hover, button.disabled:hover{
    background-color:#F5F5F5;
    border:1px solid #DDDDDD;    
    color:#bbbbbb;
    cursor:auto;
}
