* {
  margin: 0;
  padding: 0;
}

/* Basic Type Presets */
h2 {
  line-height: 28px;
  font-family: Helvetica, sans-serif;
  margin-bottom: 20px;
}

#header {
  height: 25px;
  text-align: center;
  font: 12px/25px Helvetica, sans-serif;
  background: #eee;
}

#header a {
	color: blue;
}


.buttonText {
  font: 18px/1.5 Helvetica, Arial, sans-serif;
}

a {
  color: white;
  text-decoration: none;
}



#button2 {
  background: white;
  color: white;
  border: 4px solid #eee;
  height: 48px;
  width: 265px;
  margin: 10px  10px 10px 10px;
  overflow: hidden;
  display: block;
  text-align: center;
  line-height: 48px;
  
  /*Transition*/
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
  -ms-transition: All 0.5s ease;
  transition: All 0.5s ease;
  
  /*Rounded Corners*/
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  
  /*Gradient*/
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  
  
  border-right-color:#e6eeff;
  border-top-color:#e6eeff;
  
  border-left-color:lightsteelblue;
  border-bottom-color:lightsteelblue;
  /*Shadow*/
  -webkit-box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.6);
}
#button2:hover {
  background-color: #ff3434;
}
