/* button styles */

	a.but {
		display: block;
		position: relative;
		z-index: 1000;
		height: 29px; /* height of the button graphics */
		padding-right: 10px; /* right image width is 15px. make smaller if desired */
		text-decoration: none;
		color: #595959 !important;
		font: bold 100% Verdana, Arial, Helvetica, sans-serif;	
		text-align: center;
		}	
	a.but span {
		position: relative;
		display: block;
		line-height: 19px; /* CHANGE THIS VALUE ACCORDING TO BUTTON HEIGHT */
		height: 24px;
		padding: 5px 0px 0px 9px; /* set right padding equal to width of right image width (above) */
		} 
	
	a.but:hover { cursor:pointer; color:black; text-decoration:none; }
	
	/* orange button */	
	a.but_orange { background: transparent url('/images/buttons/button_orange_right.gif') no-repeat scroll top right; }
	a.but_orange:hover { background: transparent url('/images/buttons/button_orange_right_hover.gif') no-repeat scroll top right; }
	a.but_orange span { background: transparent url('/images/buttons/button_orange_left.gif') no-repeat; }
	a.but_orange:hover span { background: transparent url('/images/buttons/button_orange_left_hover.gif') no-repeat; } 

	/* light green button */
	a.but_ltgreen{background: transparent url('/images/buttons/button_ltgreen_right.gif') no-repeat scroll top right;}
	a.but_ltgreen:hover{background: transparent url('/images/buttons/button_ltgreen_right_hover.gif') no-repeat scroll top right; }
	a.but_ltgreen span{background: transparent url('/images/buttons/button_ltgreen_left.gif') no-repeat;}
	a.but_ltgreen:hover span {background: transparent url('/images/buttons/button_ltgreen_left_hover.gif') no-repeat; } 

	/* yellow button */
	a.but_yellow{background: transparent url('/images/buttons/button_yellow_right.gif') no-repeat scroll top right;}
	a.but_yellow:hover{background: transparent url('/images/buttons/button_yellow_right_hover.gif') no-repeat scroll top right; }
	a.but_yellow span{background: transparent url('/images/buttons/button_yellow_left.gif') no-repeat;}
	a.but_yellow:hover span {background: transparent url('/images/buttons/button_yellow_left_hover.gif') no-repeat; } 

/* end button styles */

