/* -------------------------------------------------------------- 
  
   buttons.css
   * Gives you some great CSS-only buttons.
   
   Created by Kevin Hale [particletree.com]
   * particletree.com/features/rediscovering-the-button-element

   See Readme.txt in this folder for instructions.

-------------------------------------------------------------- */

/* BUTTONS */

.buttons a, .buttons button{
    display:block;
    float:left;
    margin:0;
    background-color:#fff;
    border:1px #819fba solid;

    font-family:"Lucida Grande", "Lucida Sans Unicode", Arial, Tahoma, Verdana, sans-serif;
    font-size:100%;
    line-height:130%;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding:2px 5px 2px 5px; /* Links */
}
.buttons button{
    width:auto;
    overflow:visible;
    padding:1px 5px 1px 5px; /* IE6 */
}
.buttons button[type]{
    padding:1px 5px 1px 5px; /* Firefox */
    line-height:17px; /* Safari */
}

*:first-child+html button[type]{
    padding:0px 5px 0px 5px; /* IE7 */
}
.buttons button img, .buttons a img{
    margin:0 0 -3px 0 !important;
	padding:0;    
    border:none;
    width:14px;
    height:14px;
}


/* STANDARD */

.buttons button:hover, .buttons a:hover{
    background-color:#dff4ff;
    border:1px solid #5f7589;
    color:#336699;
}
.buttons a:active{
    background-color:#6299c5;
    border:1px solid #819fba;
    color:#fff;
}

/* POSITIVE */

.buttons button.positive, .buttons a.positive{
    color:#529214;
}
.buttons a.positive:hover, .buttons button.positive:hover{
    background-color:#E6EFC2;
    border:1px solid #529214;
    color:#529214;
}
.buttons a.positive:active{
    background-color:#529214;
    border:1px solid #529214;
    color:#fff;
}

/* NEGATIVE */

.buttons a.negative, .buttons button.negative{
    color:#d12f19;
}
.buttons a.negative:hover, button.negative:hover{
    background-color:#fbe3e4;
    border:1px solid #d12f19;
    color:#d12f19;
}
.buttons a.negative:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}