/* 
444444 blauw
333333 midden blauw
0089c0 donker blauw
bbbbbb grijs
4d4d4d donker grijs
*/

.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: bold 14px/100% "Trebuchet MS", Arial, Helvetica, sans-serif;
	overflow: hidden;
	padding: .4em 1em .5em 1em;
	margin: 6px 0;
	width: 90%;
	height: 20px;
	line-height: 20px;

	background: #333333;
	background: -moz-linear-gradient(0% 100% 90deg, #333333, #000000);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#000000), to(#333333));
	border-top: 1px solid #444444;
	border-right: 1px solid #444444;
	border-bottom: 1px solid #444444;
	border-left: 1px solid #444444;
	-moz-box-shadow: inset 0 1px 0 0 #000000, 0 1px 2px 0 #bbbbbb;
	-webkit-box-shadow: inset 0 1px 0 0 #000000, 0 1px 2px 0 #bbbbbb;
	box-shadow: inset 0 1px 0 0 #000000, 0 1px 2px 0 #bbbbbb;
	color: #fff;
	text-shadow: 0 -1px 1px #000000;
	-webkit-background-clip: padding-box;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;	
}
 
.button:hover {
	background: #444444;
	background: -moz-linear-gradient(0% 100% 90deg, #444444, #333333);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#333333), to(#444444));
	border-top: 1px solid #333333;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #333333;
	-moz-box-shadow: inset 0 1px 0 0 #4d4d4d;
	-webkit-box-shadow: inset 0 1px 0 0 #4d4d4d;
	cursor: pointer;
	text-shadow: 0 -1px 1px #82480;
	-webkit-background-clip: padding-box;
}
 
.button:active {
	background: #444444;
	border: 1px solid #444444;
	border-bottom: 1px solid #444444;
	-moz-box-shadow: inset 0 0 6px 3px #333333, 0 1px 0 0 #fff;
	-webkit-box-shadow: inset 0 0 6px 3px #333333, 0 1px 0 0 #fff;
	text-shadow: 0 -1px 1px #82480;
	-webkit-background-clip: padding-box;
}
 
.button:after {
        content: url(../img/arrow.png);
        width:  50px;
	margin: -8px;
	margin-right: -15px;
        float: right;
	overflow: hidden;
}
