/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Sep 20, 2017, 2:28:01 PM
    Author     : petr.kabrt
*/
#body{
    line-height: 10vw;
    height: 100px;
    text-align: center;
}

.fwdButton {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #d61111), color-stop(1, #d41313));
	background:-moz-linear-gradient(top, #d61111 5%, #d41313 100%);
	background:-webkit-linear-gradient(top, #d61111 5%, #d41313 100%);
	background:-o-linear-gradient(top, #d61111 5%, #d41313 100%);
	background:-ms-linear-gradient(top, #d61111 5%, #d41313 100%);
	background:linear-gradient(to bottom, #d61111 5%, #d41313 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d61111', endColorstr='#d41313',GradientType=0);
	background-color:#d61111;
	display:compact;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:10px;
	padding:6px 15px;
	text-decoration:none;
}
.fwdButton:hover {
	background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #d41313), color-stop(1, #d61111));
	background:-moz-linear-gradient(top, #d41313 5%, #d61111 100%);
	background:-webkit-linear-gradient(top, #d41313 5%, #d61111 100%);
	background:-o-linear-gradient(top, #d41313 5%, #d61111 100%);
	background:-ms-linear-gradient(top, #d41313 5%, #d61111 100%);
	background:linear-gradient(to bottom, #d41313 5%, #d61111 100%);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d41313', endColorstr='#d61111',GradientType=0);
	background-color:#d41313;
}
.fwdButton:active {
	position:relative;
	top:1px;
}