/* -------------------------------------------------------------- 
  
   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.

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

a.button, button {
  display:block;
  float:left;
  
  margin:0;
/*  margin:0 0.583em 0.667em 0; */
  padding:5px 0px 5px 0px;    /* Links */

border-bottom: 1px solid #6592a9;

  font-size:100%;
  line-height:130%;
  text-decoration:none;

  cursor:pointer;
}


/* Button colors
-------------------------------------------------------------- */

/* Standard */
button:hover, a.button:hover{
  background-color:#cae6ef;

}
a.button:active{
  background-color:#6592a9;
}


/* Sidebar */
body .sidebar {
	width:207px;
}


