@charset "utf-8";
/* Don't directly style buttons in this file.  Load this stylesheet first so styles can be overridden in the main css */

/* main button container */
a.button {
	display: inline-block;
	vertical-align: middle;
	margin: 2px 0 0 0;  /* top margin compensates for shadow */
	height: 26px;
	font-size: 10pt;
	color: #fff;
	cursor: pointer;
	outline: 0;

	white-space:nowrap;

	text-decoration: none;
	font-style: normal;
	font-weight:normal;
}

a.button span {
	zoom: 1;
	display: block;
	height: 26px;
	line-height: 24px;
	background: url(../images/buttons/buttons.png) no-repeat;
	white-space:nowrap;
	text-decoration: none;
	font-style: normal;
	font-weight:normal;
}

/* wrapper for left elements (icon and label), provides left background */
a.button span._buttonLeft {
	float:left;
	background-position: 0px 0px;
}

/* icon floats left of label within buttonLeft */
a.button span._buttonIcon {
	zoom: 1;
	display: block;
	width: 16px;
	height: 16px;
	margin: 4px 0px 0px 6px;
	line-height:20px;
	float: left;
}

/* label text */
a.button span._buttonLabel {
	float:left;
	padding: 0 0 0 6px;
	background: none;
	overflow: hidden;
	text-align: center;
	white-space:nowrap;
	color: #fff;
}

/* right button border */
a.button span._buttonRight {
	overflow: hidden;
	float: right;
	width: 10px;
	background-position: 100% 0px;
}

/* state classes */
a.button-over span._buttonLeft, a.button-focus span._buttonLeft {
	background-position:0 -32px;
}
a.button-over span._buttonRight, a.button-focus span._buttonRight {
	background-position:100% -32px;
}

a.button-over span._buttonIcon, a.button-focus span._buttonIcon, a.button-down span._buttonIcon {
	background-position: 0 -16px;
}

a.button-down span._buttonLeft {
	background-position:0 -64px;
}
a.button-down span._buttonRight {
	background-position:100% -64px;
}

/*** small buttons ***/
a.button-small {
	margin: 2px 0 0 0;  /* top margin compensates for shadow */
	height: 20px;
	font-size: 8pt;
}

a.button-small span {
	zoom: 1;
	display: block;
	height: 20px;
	line-height: 18px;
}


a.button-small span._buttonLeft {
	background-position: 0px -100px;
}

a.button-small span._buttonIcon {
	width: 12px;
	height: 12px;
	margin: 3px 0px 0px 5px;
	line-height:12px;
	float: left;
}

a.button-small span._buttonRight {
	background-position: 100% -100px;
}

a.button-small-over span._buttonLeft, a.button-small-focus span._buttonLeft {
	background-position:0 -132px;
}
a.button-small-over span._buttonRight, a.button-small-focus span._buttonRight {
	background-position:100% -132px;
}

a.button-small-over span._buttonIcon, a.button-small-focus span._buttonIcon, a.button-small-down span._buttonIcon {
	background-position: 0 -12px;
}

a.button-small-down span._buttonLeft {
	background-position:0 -164px;
}
a.button-small-down span._buttonRight {
	background-position:100% -164px;
}


