﻿.button {
	background:#ededed;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #c0c0c0) );
	background:-webkit-linear-gradient( center top, #ffffff 5%, #c0c0c0 100% );
	background:-moz-linear-gradient( center top, #ffffff 5%, #c0c0c0 100% );
	background:-ms-linear-gradient( center top, #ffffff 5%, #c0c0c0 100% );
	background:-o-linear-gradient( center top, #ffffff 5%, #c0c0c0 100% );
	background:linear-gradient( center top, #ffffff 5%, #c0c0c0 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#c0c0c0');
	zoom: 1;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	border-radius:4px;
	border:1px solid #808080;
	display:inline-block;
	color:#000000;
	font-weight:normal;
	text-decoration:none;
	/*/text-align:center;*/
    cursor:pointer;
}
.button:hover {
	background:#83A7C8;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffffff), color-stop(1, #86aac9) );
	background:-webkit-linear-gradient( center top, #ffffff 5%, #86aac9 100% );
	background:-moz-linear-gradient( center top, #ffffff 5%, #86aac9 100% );
	background:-ms-linear-gradient( center top, #ffffff 5%, #86aac9 100% );
	background:-o-linear-gradient( center top, #ffffff 5%, #86aac9 100% );
	background:linear-gradient( center top, #ffffff 5%, #86aac9 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#86aac9');
	zoom: 1;
}
.button:active {
	/* om vi vill ha lite rörelse
	position:relative;
	top:1px;
	left:1px;
	*/
	background:#86aac9;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #86aac9), color-stop(1, #c3dcf4) );
	background:-webkit-linear-gradient( center top, #86aac9 5%, #c3dcf4 100% );
	background:-moz-linear-gradient( center top, #86aac9 5%, #c3dcf4 100% );
	background:-ms-linear-gradient( center top, #86aac9 5%, #c3dcf4 100% );
	background:-o-linear-gradient( center top, #86aac9 5%, #c3dcf4 100% );
	background:linear-gradient( center top, #86aac9 5%, #c3dcf4 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#86aac9', endColorstr='#c3dcf4');
	zoom: 1;
}
 .button:focus > span {
    /* om nått ska hända med själva texten när vi trycker ner */
}
 .button > span {
	/* texten står inom en span */
	height:inherit;
	width:inherit;
	text-align:center;
	display:table-cell;
	vertical-align:middle;
}
.button:focus {
    border: 1px solid #cc8500;
}
/* This imageless css button was generated by CSSButtonGenerator.com */


.button[disabled="disabled"] {
    color: #AAA;
    background: #DDD;
}

    .button > img {
        float: left;
        margin: 6px;
    }