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

a.squarebutton{
	background-color: transparent;
	background-image: url('images/designImages/buttons/hdspNavButtons_left.png');
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	float: right; /* Change 12px as desired */
	line-height: 12px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
	height: 20px; /* Height of button background height */
	padding-left: 15px; /* Width of left menu image */
	text-decoration: none;
	font-family: Tahoma, Verdana, Arial, sans-serif;
	font-size: 11px;
	font-weight: bold;
	width: 130px;
}

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

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

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

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

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

