/* BIG BLUE BUTTON */
a.bigBlueBtn {
	cursor: pointer;
	background: transparent url('../img/buttons/blue-big-left-button.png') no-repeat top left;
	display: block;
	float: left;
	font: 16px "CompatilFactLTW01-Bold"; /* Change 13px as desired */
	line-height:37px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
	height: 45px; /* Height of button background height */
	padding-left: 29px; /* Width of left menu image */
	text-decoration: none;
}
a.bigBlueBtn span  {
	cursor: pointer;
	background: transparent url('../img/buttons/blue-big-right-button.png') no-repeat top right;
	display: block;
	padding: 4px 29px 4px 0; /*Set 29px below to match value of 'padding-left' value above*/
}

/* SMALL BLUE BUTTON */
a.smallBlueBtn {
	cursor: pointer;
	background: transparent url('../img/buttons/blue-small-left-button.png') no-repeat top left;
	display: block;
	float: left;
	font: 16px "CompatilFactLTW01-Bold"; /* Change 13px as desired */
	line-height:25px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
	height: 33px; /* Height of button background height */
	padding-left: 19px; /* Width of left menu image */
	text-decoration: none;
}
a.smallBlueBtn span {
	cursor: pointer;
	background: transparent url('../img/buttons/blue-small-right-button.png') no-repeat top right;
	display: block;
	padding: 4px 19px 4px 0; /*Set 19px below to match value of 'padding-left' value above*/
}

/* SMALL WHITE BUTTON */
a.smallWhiteBtn {
	cursor: pointer;
	background: transparent url('../img/buttons/white-small-left-button.png') no-repeat top left;
	display: block;
	float: left;
	font: 15px "CompatilFactLTW01-Bold"; /* Change 13px as desired */
	line-height:25px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
	height: 33px; /* Height of button background height */
	padding-left: 17px; /* Width of left menu image */
	text-decoration: none;
}
a.smallWhiteBtn span {
	cursor: pointer;
	background: transparent url('../img/buttons/white-small-right-button.png') no-repeat top right;
	display: block;
	padding: 4px 17px 4px 0; /*Set 17px below to match value of 'padding-left' value above*/
}

/* SMALL LITE BLUE BUTTON */
a.smallLiteBlueBtn {
	cursor: pointer;
	background: transparent url('../img/buttons/liteblue-small-left-button.png') no-repeat top left;
	display: block;
	float: left;
	font: 15px "CompatilFactLTW01-Bold"; /* Change 13px as desired */
	line-height:25px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
	height: 33px; /* Height of button background height */
	padding-left: 17px; /* Width of left menu image */
	text-decoration: none;
	color: #19A9DB; /*button text color*/
}
a.smallLiteBlueBtn span {
	cursor: pointer;
	background: transparent url('../img/buttons/liteblue-small-right-button.png') no-repeat top right;
	display: block;
	padding: 4px 17px 4px 0; /*Set 17px below to match value of 'padding-left' value above*/
	color: #19A9DB; /*button text color*/
}

/* BUTTON EFFECTS */
a:link.bigBlueBtn,   a:visited.bigBlueBtn,   a:active.bigBlueBtn,
a:link.smallBlueBtn, a:visited.smallBlueBtn, a:active.smallBlueBtn {
	color: #FFFFFF; /*button text color*/
	text-shadow: 1px 1px 0px #158db9;	
}

a:link.smallWhiteBtn, a:visited.smallWhiteBtn, a:active.smallWhiteBtn,
a:link.smallLiteBlueBtn, a:visited.smallLiteBlueBtn, a:active.smallLiteBlueBtn {
	color: #19A9DB; /*button text color*/
	text-shadow: 1px 1px 0px #FFFFFF;	
}

a.bigBlueBtn:hover, a.smallBlueBtn:hover, a.smallWhiteBtn:hover, a.smallLiteBlueBtn:hover  { /* Hover state CSS */
	background-position: bottom left;
}

a.bigBlueBtn:hover span, a.smallBlueBtn:hover span, a.smallWhiteBtn:hover span, a.smallLiteBlueBtn:hover span   { /* Hover state CSS */
	background-position: bottom right;
	color: #FFFFFF;
	text-shadow: 1px 1px 0px #158db9;	
}
a.smallWhiteBtn:hover span, a.smallLiteBlueBtn:hover span  { /* Hover state CSS */
	background-position: bottom right;
	color: #19A9DB;
	text-shadow: 1px 1px 0px #FFFFFF;	
}

.buttonwrapper { /* Container you can use to surround a CSS button to clear float */
	overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
	width: 100%;
}

/* SUBMIT BUTTONS IN FORMS */
.btnSubmitTarifrechner {
	background: #19a9de;
	color: #FFF;
	font-family:"CompatilFactLTW01-Bold";font-size:17px;
	line-height:30px; 
	display: block;
	text-decoration: none;
	text-shadow: 1px 1px 0px #158db9;
	padding:0 10px 3px 10px;
	height: 35px;  
	border: 1px solid #19a9de;
	cursor:pointer;
	
	/* BORDER */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
	/*
	-webkit-box-shadow: 2px 2px 2px #d6d6d6;
	-moz-box-shadow: 2px 2px 2px #d6d6d6;*/	
}
.btnSubmitTarifrechner:hover { background: #30b2e1; }
.btnSubmitTarifrechner:active { background: #19a9de; }

.btnSubmitTarifrechnerDisabled {
	background: #c7e1ec;
	color: #e7f2f7;
	font-family:"CompatilFactLTW01-Bold";font-size:17px;
	line-height:30px; 
	display: block;
	text-decoration: none;
	text-shadow: 1px 1px 0px #aabcc4;
	padding:0 10px 3px 10px;
	height: 35px;  
	border: 1px solid #c7e1ec;
	/*cursor:pointer;*/
	
	/* BORDER */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;	
	/*
	-webkit-box-shadow: 2px 2px 2px #d6d6d6;
	-moz-box-shadow: 2px 2px 2px #d6d6d6;*/	
}
.btnSubmitTarifrechnerDisabled:hover { background: #c7e1ec; }
.btnSubmitTarifrechnerDisabled:active { background: #c7e1ec; }


.btnSubmitTarifrechner img, .btnSubmitTarifrechnerDisabled img  { margin:0 0 -1px 6px; }
.ie7 .btnSubmitTarifrechner, .ie7 .btnSubmitTarifrechnerDisabled  { padding:0; }