﻿/* Used as in <asp:buttonlink cssclass="button" */
/* div.buttonText is a special button, because usual styles didn't apply for login control*/
a.button, a.buttonLeft, div.buttonText
{
    display:block;
    float:right;
    background-color:#f5f5f5;
    border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;
    font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
    text-decoration:none;
    font-weight:bold;
    cursor:pointer;
    color:#0060BF;
    padding-bottom: 3px;
    padding-top: 5px;
    padding-left: 4px;
    padding-right: 4px;
    text-align:center;
    white-space:nowrap;
}

/*button hovers*/
a.button:hover, a.buttonLeft:hover, div.buttonText:hover
{
    background-color:#D6FEFF;
    border:1px solid #CADBED;
    color: #69702A;
}

a.button img, a.buttonLeft img
{
    height:16px;    
    width:16px;    
}

/*div.buttonText{}*/

a.buttonLeft
{
    display:inline-block;
    float:left;
}

