/* http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html */

.fb-clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.button {
    background: #647CAE url('images/fb_button_a.gif') no-repeat scroll top right;
    color: #444;
    display: block;
    float: left;
    font: normal 12px arial, sans-serif;
    height: 21px;
    margin-right: 6px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
}

a.button:hover {
  text-decoration: none;
}

a.button span {
    font: normal, "lucida grande",tahoma,verdana,arial,sans-serif;
    background: transparent url('images/fb_button_span.gif') no-repeat;
    display: block;
    line-height: 14px;
    padding: 4px 0 5px 33px;
    color: white; 
}

a.button:hover span {
  color: yellow;
}

div.fb-description {
  font-size: 10px;
  line-height: 11px;
}

