/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
a {
	cursor: pointer;
}

a.buttonSave{
background: transparent url('../images/common/square-green-left.gif') no-repeat top left;
display: block;
float: left;
font: normal 12px Arial; /* 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: 9px; /* Width of left menu image */
text-decoration: none;
}

a:link.buttonSave, a:visited.buttonSave, a:active.buttonSave {
	color: #494949; /*button text color*/
}

a.buttonSave span{
background: transparent url('../images/common/square-green-right.gif') no-repeat top right;
display: block;
padding: 4px 9px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}

a.buttonSave:hover{ /* Hover state CSS */
background-position: bottom left;
}

a.buttonSave:hover span{ /* Hover state CSS */
background-position: bottom right;
color: black;
}


/*------*/

a.buttonProceed{
background: transparent url('../images/common/square-blue-left.gif') no-repeat top left;
display: block;
float: left;
font: normal 12px Arial; /* 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: 9px; /* Width of left menu image */
text-decoration: none;
}

a:link.buttonProceed, a:visited.buttonProceed, a:active.buttonProceed{
color: #494949; /*button text color*/
}

a.buttonProceed span{
background: transparent url('../images/common/square-blue-right.gif') no-repeat top right;
display: block;
padding: 4px 9px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}

a.buttonProceed:hover{ /* Hover state CSS */
background-position: bottom left;
}

a.buttonProceed:hover span{ /* Hover state CSS */
background-position: bottom right;
color: black;
}


/*------------*/

a.buttonCancel{
background: transparent url('../images/common/square-red-left.gif') no-repeat top left;
display: block;
float: left;
font: normal 12px Arial; /* 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: 9px; /* Width of left menu image */
text-decoration: none;
}

a:link.buttonCancel, a:visited.buttonCancel, a:active.buttonCancel{
color: #494949; /*button text color*/
}

a.buttonCancel span{
background: transparent url('../images/common/square-red-right.gif') no-repeat top right;
display: block;
padding: 4px 9px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}

a.buttonCancel:hover{ /* Hover state CSS */
background-position: bottom left;
}

a.buttonCancel:hover span{ /* Hover state CSS */
background-position: bottom right;
color: black;
}


/*------------------------*/

a.buttonReset{
background: transparent url('../images/common/square-orange-left.gif') no-repeat top left;
display: none;
float: left;
font: normal 12px Arial; /* 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: 9px; /* Width of left menu image */
text-decoration: none;
}

a:link.buttonReset, a:visited.buttonReset, a:active.buttonReset{
color: #494949; /*button text color*/
}

a.buttonReset span{
background: transparent url('../images/common/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*/
}

a.buttonReset:hover{ /* Hover state CSS */
background-position: bottom left;
}

a.buttonReset:hover span{ /* Hover state CSS */
background-position: bottom right;
color: black;
}



/*------------------------*/

a.buttonOkay {
background: transparent url('../images/common/square-gray-left.gif') no-repeat top left;
display: block;
float: left;
font: normal 12px Arial; /* 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: 9px; /* Width of left menu image */
text-decoration: none;
}

a:link.buttonOkay, a:visited.buttonOkay, a:active.buttonOkay{
color: #494949; /*button text color*/
}

a.buttonOkay span{
background: transparent url('../images/common/square-gray-right.gif') no-repeat top right;
display: block;
padding: 4px 9px 4px 0; /*Set 9px below to match value of 'padding-left' value above*/
}

a.buttonOkay:hover{ /* Hover state CSS */
background-position: bottom left;
}

a.buttonOkay:hover span{ /* Hover state CSS */
background-position: bottom right;
color: black;
}

.buttonContainer{ /* Container you can use to surround a CSS button to clear float */
overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
width: 100%;
}
