/* CSS Document */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

a.squarebutton{
	background-color: transparent;
	background-image: url('images/designImages/navButtons/jwNavButtons_left.jpg');
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	float: left; /* Change 12px as desired */
	line-height: 23px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
	height: 31px; /* Height of button background height */
	padding-left: 30px; /* Width of left menu image */
	text-decoration: none;
	margin-right: 24px;
}

a:link.squarebutton, a:visited.squarebutton, a:active.squarebutton{
/*color: #75829F; button text color*/
	color: white;
}

a.squarebutton span{
	background-color: transparent;
	background-image: url('images/designImages/navButtons/jwNavButtons_right.jpg');
	background-repeat: no-repeat;
	background-position: right top;
	display: block;
	padding: 4px 30px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}

a.squarebutton:hover{ /* Hover state CSS */
	background-position: bottom left;
	text-decoration: none;
}

a.squarebutton:hover span{ /* Hover state CSS */
	background-position: bottom right;
	color: white;
}

.buttonwrapper{ /* Container you can use to surround a CSS button to clear float */
	margin-left:0px;
	overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
	width: 100%;
	/*background-color: #e1e1b0;  light gold */
}

