

/* BUTTONS		
----------------------------------------------*/
#printButton {
	position:relative;
	top: -110px;
	left: 120px;
}

.buttonWrap, .buttonGreenWrap {
	background-image: url(../imgs/button-left.gif);	/*background*/
	/*background-image: url(../imgs/bg-buttonOrangeLeft.gif);					*/
	background-color: #EDEFF9;		/*bg color if no image*/
	background-repeat: no-repeat;
	background-position: top left;
	cursor: pointer;
	display: inline-block;
	
	text-decoration: none;
	padding: 0px 0px 0px 0px;		/*Set left padding to show left edge*/
	/*margin: 0px 0px 0px 0px;		Set gap to next element*/
	color: #FFFFFF;					/*color of text*/
}
.buttonWrap .buttonBg, .buttonGreenWrap .buttonGreenBg {
	background-image: url(../imgs/button-right.gif);	/*background*/
	/*background-image: url(../imgs/bg-buttonOrangeRight.gif);					*/
	/*background-color: #EDEFF9;		bg color if no image*/
	background-repeat: no-repeat;
	background-position: top right;
	text-decoration: none;
	display: inline-block;
	padding: 0px;
	margin: 0px;
}
.buttonWrap .buttonText, .buttonGreenWrap .buttonGreenText {
	text-decoration: none;
	display: inline;	
	padding: 0px 6px 0px 7px;		/*left and right padding*/
	margin: 0px 0px 0px 0px;
	line-height: 29px;				/*height of button*/	
	height: 29px;					/*height of button*/
	font-family: "Arial", Helvetica, sans-serif;
	font-size: 12px;				/*text size*/
	font-weight: bold;
}

/*GREEN BUTTONS*/
.buttonGreenWrap {
	background-image: url(../imgs/bg-buttonGreenLeft.gif);	/*background*/
	/*background-color: #E0FBD3;		bg color if no image*/
	color: #1D4B07;					/*color of text*/
	/*margin: 0px 0px 0px 0px;		Set gap to next element*/
}	
.buttonGreenWrap .buttonGreenBg {
	background-image: url(../imgs/bg-buttonGreenRight.gif);	/*background*/
	/*background-color: #E0FBD3;		bg color if no image*/
}
.buttonGreenWrap .buttonGreenText {
	line-height: 22px;				/*height of button*/	
	height: 22px;					/*height of button*/
}

/*BUTTON HOVERS*/
.buttonWrap:hover {
	color: #FFFFFF;
	background-image: url(../imgs/button-left-on.gif);
 }
.buttonWrap .buttonBg:hover  { 
	text-decoration: none;
	/*background-color: #B8F69A;*/
	background-image: url(../imgs/button-right-on.gif);
 }
 

/*GREEN BUTTON HOVERS*/
.buttonGreenWrap:hover {
	color: #1D4B07;
	background-image: url(../imgs/bg-buttonGreenLeftHover.gif);
 }
.buttonGreenWrap .buttonGreenBg:hover  { 
	text-decoration: none;
	/*background-color: #B8F69A;*/
	background-image: url(../imgs/bg-buttonGreenRightHover.gif);
 }
 
 
 /*TEXT COLOR FOR GREEN LinkButton's*/
a.buttonGreenWrap:link, a.buttonGreenWrap:visited, a.buttonGreenWrap:active {
 	text-decoration: none;	color: #1D4B07;
 }
