@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700|Merriweather+Sans:800);

@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
}

body {
	font: normal 1em Lato;
	font-weight: 100;
}

#table-speed {
	width: 288px;
	background: #EEEEEE;
	border: 1px solid #DDDDDD;
	display: inline-block;
	position: relative;
}

#table-speed a {
	color: #000000;
	text-decoration: none;
}

#table-speed a:hover {
	color: #FF0000;
}

#table-speed input[type=text] {
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	background: #FFFFFF;
	height: 20px;
	width: 271px;
	padding: 3px;
}

#table-speed textarea {
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	background: #FFFFFF;
	height: 50px;
	width: 271px;
	padding: 3px;
}

#table-speed input[type=submit] {
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	background: #AAAAAA;
	width: 80px;
	padding: 5px;
	margin: 3px;
	float: right;
}

#table-speed input[type=reset] {
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	background: #AAAAAA;
	width: 80px;
	padding: 5px;
	margin: 3px;
	float: right;
}

.box-speed {
	position: fixed;
	bottom: 0;
	right: 50px;
	margin-bottom: -320px;
	-o-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	-khtml-transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	-ms-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.box-speed:hover {
	position: fixed;
	bottom: 0;
	right: 50px;
	margin: 0px;
}

.button-speed {
	background: #228600;
	padding: 10px;
	margin-bottom: 0px;
	width: 270px;
	height: 30px;
	text-align: center;
	color: #FFFFFF;
	cursor: pointer;
	position: relative;
	z-index: 20;
	font-size: 18px;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-topright: 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	-webkit-box-shadow: 0px -2px 5px 1px rgba(0,0,0,1);
	-moz-box-shadow: 0px -2px 5px 1px rgba(0,0,0,1);
	box-shadow: 0px -2px 5px 1px rgba(0,0,0,1);
}

.button-speed:before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  border-style: solid;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: bottom;
  transition-property: bottom;
  left: calc(50% - 10px);
  bottom: 0;
  border-width: 10px 10px 0 10px;
  border-color: #228600 transparent transparent transparent;
  bottom: -10px;
}