/* This is the submit button styles */
#formsubmitbutton > input[type=submit] {
  display: block;
  margin: 0 auto 2em;
  padding: .8em 1.5em;
   /* Font-size is the root value that determines size of spinner parts. Change this to whatever you want and spinner elements will size to match. */
  font-size: 20px;
  font-weight: bold;
  border-radius: 1em;
  border: none;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 1s;
	background: #FF3600;
	color: white;
	width: 10em;
	-webkit-transition: all 300ms linear;
	box-shadow:  2px 2px 6px #bebebe,
             	-2px -2px 6px #ffffff;
  	border-style: none;
		
}

/* focus/disabled styles, you can change this for accessibility */

#formsubmitbutton > input[type=submit]:focus, 
#formsubmitbutton > input[type=submit]:disabled {
  outline: none;
  background: #aaa;
}
#buttonreplacement > img {
  display: block;
  margin: 0 auto;
	height: 2em;
}
#buttonreplacement {
  display: block;
  margin: 0 auto 2em;
  padding: .8em 1.5em;
   /* Font-size is the root value that determines size of spinner parts. Change this to whatever you want and spinner elements will size to match. */
  font-size: 20px;
  font-weight: bold;
  border-radius: 1em;
  border: none;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 1s;
	background: white;
	width: 8em;
	-webkit-transition: all 300ms linear;
	box-shadow:  2px 2px 6px #bebebe,
             	-2px -2px 6px #ffffff;
  	border-style: none;

}
