

.button_arrow_left_text {
  display: none;
}
.button_arrow_left {
  display: inline-block;
  background-image: url(../con/button_left_arrow.png);
  border: 0px none;
  height: 0px;
  width: 0px;
  padding: 5px;
  margin-right: 4px !important;
  background-repeat: no-repeat;
}

.button_arrow_right_text {
  display: none;
}
.button_arrow_right {
  display: inline-block;
  background-image: url(../con/button_right_arrow.png);
  border: 0px none;
  height: 0px;
  width: 0px;
  padding: 5px;
  margin-left: 4px !important;
  background-repeat: no-repeat;
}

button:hover .button_arrow_right {
  display: inline-block;
  background-image: url(../con/button_right_arrow_hover.png);
  border: 0px none;
  height: 0px;
  width: 0px;
  padding: 5px;
  margin-left: 4px !important;
  background-repeat: no-repeat;
}

button {
  position: relative;

  /*text and colors*/
  font-size: 12px;
  color: #00000a;
  font-family: "Arial Narrow", "Arial";
  text-align: right;
  vertical-align: middle;
  text-decoration: none;
  font-weight: normal;

  /*size*/
  padding: 4px 12px 4px 12px;
  
  height: auto;

  /*border*/
  border: 1px solid #5e88a2;
  -moz-border-radius: .stitched;
  -webkit-border-radius: .stitched;
  border-radius: .stitched;

  background: #ffffff; /* for non-css3 browsers */

  /* gradients */
  background: linear-gradient(#ffffff, #5e88a2);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#5e88a2)); /* for webkit browsers */
  background: -moz-linear-gradient(top,  #ffffff, #5e88a2); /* for firefox 3.6+ */
  background: -ms-linear-gradient(#ffffff, #5e88a2);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffffff', endColorstr='#5e88a2');
  -pie-background: linear-gradient(#ffffff, #5e88a2);

position: relative;
  behavior: url(/hub/css/PIE.htc);
}
button:link {
  color: #00000a;
  text-decoration: none;
  width: 100px;
}
button:hover {
  position: relative;
  text-decoration: none;
  color: #000;
  background: #ccc; /* for non-css3 browsers */

  /*gradients */
  background: linear-gradient(#cccccc, #aaaaaa);
  background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), to(#aaaaaa)); /* for webkit browsers */
  background: -moz-linear-gradient(top,  #cccccc, #aaaaaa); /* for firefox 3.6+ */
  background: -ms-linear-gradient(#cccccc, #aaaaaa);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#cccccc', endColorstr='#aaaaaa');
  -pie-background: linear-gradient(#cccccc, #aaaaaa);
  behavior: url(/hub/css/PIE.htc);
}
button img {
  margin-bottom: 0px;
  padding-bottom: 0px;
}
