/* expandable rightward button CSS */

/* wrap submit buttons for sizing and positioning */
span.btn {
	float:right;
	vertical-align:top;	/* necessary for Safari, can be :top, :middle, or :bottom;  */
	margin-left:10px;	/* in case the float doesn't work */
	margin-right:5px;
	/* background-color:#996600; */	/* use to diagnose errors */
	}

/* wrap button text for sizing and positioning */
a.txt {
	display:inline-table;	/* enables setting height of inline element */
	height:15px;	/* set explicitely */
	vertical-align:inherit;
	background-image:url(btnc.jpg);	/* will stretch in both direction
		to fill the inline tag without the use of background-repeat: */
	color:#000066;	/* deep navy blue text. Set explicitely to override <a> defaults */
	font-size:8pt;
	cursor:default;
	text-decoration:none;
	}

/* pseudoclass does background <img> substitution for a.txt above */
a.txt:hover { background-image:url(btnc_h.jpg); }

img.btnl {
	vertical-align:inherit;	/* must be same as CSS for a.txt above */
	border:none;
	}

img.btnr {
	vertical-align:inherit;	/* must be same as CSS for a.txt above */
	border:none;
	}

/*the hidden submit btn */
input.sbmt {
	visibility:hidden;
	width:0px;
	border:none;
	}
