	

/* The tab itself */

#followTab {

  /* No bullets */
  list-style: none;

  /* Position and float the tab */  
  position: fixed;
  z-index: 1;
  right: 0;
  top: 220px;
  
  /* Give the tab width and padding */
  width: 24px;
  padding: 15px 5px;
  
  /* Add the curved white border */
  border: 3px solid #fff;
  border-right: none;
  -moz-border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  border-radius: 10px 0 0 10px;
  
  /* Add the drop shadow */
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, .6);
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, .6);
  box-shadow: 0 0 7px rgba(0, 0, 0, .6);
  
  /* Add the semitransparent gradient background */
  background: rgba(33, 61, 98, .75);
  background: -moz-linear-gradient(top, rgba(0, 51, 102,  .75), rgba(0, 51, 153, .75));
  background: -webkit-gradient( linear, left top, left bottom, from( rgba(0, 51, 102, .75) ), to( rgba(0, 51, 153,  .75) ) );
  background: linear-gradient(top, rgba(0, 51, 102,  .75), rgba(0, 51, 153,  .75));
  filter: progid:DXImageTransform.Microsoft.Gradient( startColorStr='#c0f33408', endColorStr='#c0ef5b0a', GradientType=0 );
}

/* Items within the tab */

#followTab li {
  margin: 0 0 0 0;
  line-height: 0;
}

#followTab li:first-child {
  margin-top: 0;
}

/* General style for buttons within the tab */

#followTab a {
  display: block;
  width: 24px;
  background-image: url("images/support_button.png");
  background-repeat:no-repeat;
}

#followTab a span {
  display: none;
}

/* "Newsletter" button */

#followTab a.newsletter {
  height: 78px;
  background-position: 0 0;
}

#followTab a.newsletter:hover {
  background-position: 0 0;
}

