/* Generic styles for buttons */
a.button {
	background-color: transparent;
	background-repeat: repeat-y; /* Makes sure the background is displayed if the span overflows */
	background-attachment: scroll;
	background-position: right top;
    color: #FFFFFF;
    display: inline-block;
    text-decoration: none;
    cursor:pointer;
	outline: none;
	/*overflow: hidden;*/
}

a.button span.slider {
    background-color: transparent;
	background-repeat: repeat-y; /* Makes sure the background is displayed if the span overflows */
	background-attachment: scroll;
	background-position: left top;
    display: inline-block;
    cursor: pointer;
    text-align: center;
	/*overflow: hidden;*/
}

a.button:hover {
    background-position: bottom right;
}

a.button:hover span.slider {
    background-position: bottom left;
}

a.button.fixed span.slider {
	display: block;
}

a.button.icon span.slider span.icon {
	position: relative;
}

a.button span.slider span.icon {
	display: inline-block;
	line-height: 0;
	font-size: 0;
}

a.button span.slider span.text {
	display: inline-block;
	position: relative;
}

a.button span.slider span.icon div.iconContainer {
	float: none;
	display: inline-block;
	margin: 0 5px 0 0;
	padding: 0;
	font-size: 0px;
	line-height: 0px;
}

/* EOF Generic styles for buttons */

/* Generic styles for 12px buttons */
a.button.s12 {
	font: bold 12px arial;
    height: 24px;
    padding-right: 3px; /* sliding doors padding */
}

a.button.s12 span.slider {
	padding: 0 5px 0 8px;
	height: 24px;
}

a.button.s12.icon span.slider {
	padding: 0 8px 0 8px;
}

a.button.s12 span.slider span.text {
	top: 4px;
}

a.button.s12_icon span.slider span.icon {
	top: 3px;
}

a.button.s12.icon span.slider span.text {
	top: -1px;
}
/* EOF Generic styles for 12px buttons */

/* Generic styles for 24px buttons */
a.button.s24 {
	font: bold 24px arial;
    height: 41px;
    padding-right: 10px; /* sliding doors padding */
}

a.button.s24 span.slider {
	height: 41px;
	padding: 0px 5px 0px 15px;
}

a.button.s24 span.slider span.text {
	top: 6px;
}

a.button.s24_icon span.slider span.icon {
	top: 7px;
}

a.button.s24_icon span.slider span.text {
	top: 6px;
}

/* Generic styles for 24px buttons */


/* Styles for green buttons */
a.button.s12_green {
	background-image: url('/images/buttons/btngreen12_a.png');
}

a.button.s12_green span.slider {
	background-image: url('/images/buttons/btngreen12_span.png');
}

a.button.s24_green {
	background-image: url('/images/buttons/btngreen24_a.png');
}

a.button.s24_green span.slider {
	background-image: url('/images/buttons/btngreen24_span.png');
}
/* EOF Styles for green buttons */


/* Styles for blue buttons */
a.button.s12_blue {
	background-image: url('/images/buttons/btnblue12_a.png');
}

a.button.s12_blue span.slider {
	background-image: url('/images/buttons/btnblue12_span.png');
}

a.button.s24_blue {
	background-image: url('/images/buttons/btnblue24_a.png');
}

a.button.s24_blue span.slider {
	background-image: url('/images/buttons/btnblue24_span.png');
}
/* EOF Styles for blue buttons */


/* Styles for grey buttons */
a.button.s12_grey {
	background-image: url('/images/buttons/btngrey12_a.png');
	cursor: default;
}

a.button.s12_grey span.slider {
	background-image: url('/images/buttons/btngrey12_span.png');
	color: #b6b6b6;
	cursor: default;
}

a.button.s24_grey {
	background-image: url('/images/buttons/btngrey24_a.png');
	cursor: default;
}

a.button.s24_grey span.slider {
	background-image: url('/images/buttons/btngrey24_span.png');
	color: #b6b6b6;
	cursor: default;
}
/* EOF Styles for grey buttons */

/* Styles for red buttons */
a.button.s12_red {
    background-image: url('/images/buttons/btnred12_a.png');
}

a.button.s12_red span.slider {
    background-image: url('/images/buttons/btnred12_span.png');
}

a.button.s24_red {
    background-image: url('/images/buttons/btnred24_a.png');
}

a.button.s24_red span.slider {
    background-image: url('/images/buttons/btnred24_span.png');
}
/* EOF Styles for red buttons */
