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

a.squarebutton{
background: transparent url('../images/square-orange-left.gif') no-repeat top left;
display: block;
float: center;
font:bold 11px Arial, verdana, Tahoma; /* Change 12px as desired */
line-height: 15px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
height: 23px; /* Height of button background height */
padding-left: 5px; /* Width of left menu image */
text-decoration: none;
}

a:link.squarebutton, a:visited.squarebutton, a:active.squarebutton{
color: #5F5E5C; /*button text color*/
}

a.squarebutton span{
background: transparent url('../images/square-orange-right.gif') no-repeat top right;
display: block;
padding: 4px 9px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
text-decoration: none;
}

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: #5F5E5C;
text-decoration: none;;
}


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


/* CSS Document */
a.greybutton{
background: transparent url('../images/btn_grey_lft.gif') no-repeat top left;
display: block;
float: center;
font:bold 11px Arial, verdana, Tahoma; /* Change 12px as desired */
line-height: 15px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 23px) */
height: 23px; /* Height of button background height */
padding-left: 5px; /* Width of left menu image */
text-decoration: none;
}

a:link.greybutton, a:visited.greybutton, a:active.greybutton{
color: #5F5E5C; /*button text color*/
}

a.greybutton span{
background: transparent url('../images/btn_grey_bg.gif') no-repeat top right;
display: block;
padding: 4px 9px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
text-decoration: none;
}

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

a.greybutton:hover span{ /* Hover state CSS */
background-position: bottom right;
color: #5F5E5C;
text-decoration: none;;
}



