/*
 * Sexy Buttons
 * 
 * DESCRIPTION:
 * 	Sexy, skinnable HTML/CSS buttons with icons.
 * 
 * PROJECT URL: 
 * 	http://code.google.com/p/sexybuttons/
 * 
 * AUTHOR:
 * 	Richard Davies
 * 	http://www.richarddavies.us
 * 	Richard@richarddavies.us
 * 
 * VERSION:
 * 	1.1
 * 
 * LICENSE:
 * 	Apache License 2.0  (http://www.apache.org/licenses/LICENSE-2.0)
 * 	Creative Commons 3.0 Attribution  (http://creativecommons.org/licenses/by/3.0/)
 * 
 * CREDITS:
 * 	Inspired by, derived from, and thanks to:
 * 	http://www.p51labs.com/simply-buttons-v2/
 * 	http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html
 * 	http://www.zurb.com/article/266/super-awesome-buttons-with-css3-and-rgba
 * 	http://www.elctech.com/snippets/make-your-buttons-look-super-awesome
 * 
 * USAGE:
 * 	Simply add class="sexybutton [skin]" to a <button> or <a> element and wrap the label text with double <span>s.
 * 	You can optionally add a "silk" icon to the button text by using a third <span> with class to identify the icon.   
 * 
 * EXAMPLE: 
 * 	<button id="btn1" class="sexybutton" name="btn1" type="submit" value="Submit">
 * 		<span><span><span class="ok">Submit</span></span></span>
 * 	</button>
 */


/* 
 *	Generic styles for all Sexy Buttons
 */

.sexybutton {
	display: inline-block;
	margin: 0;
	padding: 0;
	font: bold 13px "Helvetica Neue", Helvetica, Arial, clean, sans-serif !important;
	text-decoration: none !important;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.20);
	background: none;
	border: none;
	white-space: nowrap;
	cursor: pointer;
	user-select: none;
	-moz-user-select: none;
	
	/* Fix extra width padding in IE */
	_width: 0;
	overflow: visible;
}

.sexybutton span {
	display: block;						/* Prevents :active from working in IE--oh well! */
	height: 24px;
	padding-right: 12px;
	background-repeat: no-repeat;
	background-position: right top;
}

.sexybutton span span {
	padding-right: 0;
	padding-left: 12px;
	line-height: 24px;
	background-position: left top;
}

.sexybutton span span span {
	padding-left: 21px;
	background-image: none;
	background-repeat: no-repeat;
	background-position: left center;
	/* IE6 still requires a PNG transparency fix */ 
	/* _background-image: none;		Or just hide icons from the undeserving IE6 */
	/* _padding-left: 0;					Or just hide icons from the undeserving IE6 */
}

.sexybutton span span span.after {
	padding-left: 0px;
	padding-right: 21px;
	background-position: right center;
	/* IE6 still requires a PNG transparency fix */ 
	/* _padding-right: 0;					Or just hide icons from the undeserving IE6 */
}

.sexybutton[disabled],
.sexybutton[disabled]:hover,
.sexybutton[disabled]:focus,
.sexybutton[disabled]:active,
.sexybutton.disabled,
.sexybutton.disabled:hover,
.sexybutton.disabled:focus,
.sexybutton.disabled:active {
	color: #333 !important;
	cursor: inherit;
	text-shadow: none; 
	opacity: 0.33;
}

.sexybutton:hover span,
.sexybutton:focus span {
	background-position: 100% -24px;
}

.sexybutton:hover span span,
.sexybutton:focus span span {
	background-position: 0% -24px;
}

.sexybutton:active span {
	background-position: 100% -48px;
}

.sexybutton:active span span {
	background-position: 0% -48px;
}

.sexybutton[disabled] span,
.sexybutton.disabled span {
	background-position: 100% -72px;
}

.sexybutton[disabled] span span,
.sexybutton.disabled span span {
	background-position: 0% -72px;
}

.sexybutton:hover span span span,
.sexybutton:focus span span span,
.sexybutton:active span span span,
.sexybutton[disabled] span span span,
.sexybutton.disabled span span span {
	background-position: left center;
}

.sexybutton:hover span span span.after,
.sexybutton:focus span span span.after,
.sexybutton:active span span span.after,
.sexybutton[disabled] span span span.after,
.sexybutton.disabled span span span.after {
	background-position: right center;
}

.sexybutton img {
	margin-right: 5px;
	vertical-align: text-top;
	/* IE6 Hack */
	_margin-top: 4px;
	_vertical-align: text-bottom;
	/* IE6 still requires a PNG transparency fix */ 
	/* _display: none;		Or just hide icons from the undeserving IE6 */
}

.sexybutton img.after {
	margin-right: 0;
	margin-left: 5px;
	/* IE6 still requires a PNG transparency fix */ 
	/* _margin-left: 0;		Or just hide icons from the undeserving IE6 */
}

.sexybutton.sexymedium	{ font-size: 15px !important; }
.sexybutton.sexylarge	{ font-size: 18px !important; }


/*
 * Button Skins
 * 
 * .PNG background images with alpha transparency are also supplied if you'd rather use them instead of the 
 * default .GIF images. (Just beware of IE6's lack of support.) 
 * 
 * Additional skins can be added below. The http://image.tacomart.com/SexyButtons/images/skins/ButtonTemplate.psd can be used to create new skins.
 * Prefix the skin name with "sexy" to avoid any potential conflicts with other class names. 
 */

/* Silver Button Skin (the default skin) */

.sexybutton,
.sexybutton.sexysilver {
	color: #666 !important;
}
	
.sexybutton:hover,
.sexybutton:focus,
.sexybutton.sexysilver:hover,
.sexybutton.sexysilver:focus {
	color: #333 !important;
}
	
.sexybutton span,
.sexybutton.sexysilver span {
	background-image: url(http://image.tacomart.com/SexyButtons/images/skins/silver/button_right.gif);
}

.sexybutton span span,
.sexybutton.sexysilver span span {
	background-image: url(http://image.tacomart.com/SexyButtons/images/skins/silver/button_left.gif);
}

/* Orange Button Skin */

.sexybutton.sexyorange,
.sexybutton.sexyorange:hover,
.sexybutton.sexyorange:focus {
	color: white !important;
}
	
.sexybutton.sexyorange[disabled],
.sexybutton.sexyorange[disabled]:hover,
.sexybutton.sexyorange[disabled]:active,
.sexybutton.sexyorange[disabled]:focus,
.sexybutton.sexyorange.disabled,
.sexybutton.sexyorange.disabled:hover,
.sexybutton.sexyorange.disabled:active,
.sexybutton.sexyorange.disabled:focus {
	color: #333 !important;
}
	
.sexybutton.sexyorange span {
	background-image: url(http://image.tacomart.com/SexyButtons/images/skins/orange/button_right.gif);
}

.sexybutton.sexyorange span span {
	background-image: url(http://image.tacomart.com/SexyButtons/images/skins/orange/button_left.gif);
}

/* Yellow Button Skin */

.sexybutton.sexyyellow,
.sexybutton.sexyyellow:hover,
.sexybutton.sexyyellow:focus {
	color: #994800 !important;
}
	
.sexybutton.sexyyellow span {
	background-image: url(http://image.tacomart.com/SexyButtons/images/skins/yellow/button_right.gif);
	color: #000 !important;
/*	font-family: verdana ;*/	
	font-family: arial ;	
}

.sexybutton.sexyyellow span span {
	background-image: url(http://image.tacomart.com/SexyButtons/images/skins/yellow/button_left.gif);
}


/* 
 * Simple Skin Buttons
 */

.sexybutton.sexysimple { 
	position: relative; 
	padding: 5px 10px 5px;
	font: inherit;
	font-size: 13px !important;
	font-style: normal !important; 
	font-weight: bold !important; 
	color: #fff !important;
	line-height: 1; 
	background-image: url(http://image.tacomart.com/SexyButtons/images/skins/simple/awesome-overlay-sprite.png);
	background-repeat: repeat-x;
	background-position: 0 0;
	
	/* Special effects */
	text-shadow: 0 -1px 1px rgba(0,0,0,0.25), -2px 0 1px rgba(0,0,0,0.25); 
	border-radius: 5px; 
	-moz-border-radius: 5px; 
	-webkit-border-radius: 5px; 
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.5); 
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
	
	/* IE only stuff */
	border-bottom: 1px solid transparent\9;
	_background-image: none;
	
	/* Cross browser inline block hack - http://blog.mozilla.com/webdev/2009/02/20/cross-browser-inline-block/ */
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: middle;
	*display: inline !important;
	position: relative;
	
	/* Force hasLayout in IE */
	zoom: 1;
	
	/* Disable text selection (Firefox only)*/
	-moz-user-select: none;
}

.sexybutton.sexysimple::selection {
	background: transparent;
}

.sexybutton.sexysimple:hover,
.sexybutton.sexysimple:focus {
	background-position: 0 -50px; 
	color: #fff !important;
}

.sexybutton.sexysimple:active { 
	background-position: 0 -100px; 
	-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.7); 
	/* Unfortunately, Safari doesn't support inset yet */
	-webkit-box-shadow: none;
	
	/* IE only stuff */
	border-bottom: 0\9;
	border-top: 1px solid #666\9;
}

.sexybutton.sexysimple[disabled], 
.sexybutton.sexysimple.disabled { 
	background-position: 0 -150px; 
	color: #333 !important;
	text-shadow: none; 
}

.sexybutton.sexysimple[disabled]:hover,
.sexybutton.sexysimple[disabled]:focus,
.sexybutton.sexysimple[disabled]:active,
.sexybutton.sexysimple.disabled:hover,
.sexybutton.sexysimple.disabled:focus,
.sexybutton.sexysimple.disabled:active {
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.5); 
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.5);
} 

.sexybutton.sexysimple span {
	height: auto;
	padding-left: 24px;
	padding-right: 0;
	background-position: left center;
	background-repeat: no-repeat;
	/* IE6 still requires a PNG transparency fix */ 
	/* _padding-left: 0;		Or just hide icons from the undeserving IE6 */
}

.sexybutton.sexysimple span.after {
	padding-left: 0;
	padding-right: 24px;
	background-position: right center;
	/* IE6 still requires a PNG transparency fix */ 
	/* _padding-right: 0;		Or just hide icons from the undeserving IE6 */
}

/* Simple button colors */
.sexybutton.sexysimple					{ background-color: #333; }		/* Default */
.sexybutton.sexysimple.sexyblack	{ background-color: #333; }
.sexybutton.sexysimple.sexyblack1        { background-color: #e1e1e1; }
.sexybutton.sexysimple.sexyblack2        { background-color: #c2c2c2; }
.sexybutton.sexysimple.sexyblack3        { background-color: #959595; }
.sexybutton.sexysimple.sexyblack4        { background-color: #363636; }
.sexybutton.sexysimple.sexyred		{ background-color: #a90118; }
.sexybutton.sexysimple.sexyorange	{ background-color: #ff8a00; }
.sexybutton.sexysimple.sexygold         { background-color: #f16522; }
.sexybutton.sexysimple.sexyyellow	{ background-color: #EEEE00; }
.sexybutton.sexysimple.sexygreenyellow	{ background-color: #8fc63d; }
.sexybutton.sexysimple.sexygoldnrod	{ background-color: #37b44a; }
.sexybutton.sexysimple.sexygreen	{ background-color: #59a901; }
.sexybutton.sexysimple.sexyaqua		{ background-color: #00aeef; }
.sexybutton.sexysimple.sexyblue		{ background-color: #015ea9; }
.sexybutton.sexysimple.sexyskyblue	{ background-color: #0072bc; }
.sexybutton.sexysimple.sexydarkblue	{ background-color: #2f3192; }
.sexybutton.sexysimple.sexyteal		{ background-color: #2daebf; }
.sexybutton.sexysimple.sexymagenta	{ background-color: #a9014b; }
.sexybutton.sexysimple.sexypurple	{ background-color: #9d01a9; }
.sexybutton.sexysimple.sexydarkviolet	{ background-color: #91278f; }
.sexybutton.sexysimple.sexydeeppink	{ background-color: #ee105a; }
.sexybutton.sexysimple.sexyred1          { background-color: #f7977a; }
.sexybutton.sexysimple.sexyred2          { background-color: #f16c4d; }
.sexybutton.sexysimple.sexyred3          { background-color: #9d0a0f; }
.sexybutton.sexysimple.sexyred4          { background-color: #790000; }
.sexybutton.sexysimple.sexyorange1       { background-color: #fbad82; }
.sexybutton.sexysimple.sexyorange2       { background-color: #f68e54; }
.sexybutton.sexysimple.sexyorange3       { background-color: #a1410d; }
.sexybutton.sexysimple.sexyorange4       { background-color: #7b3000; }
.sexybutton.sexysimple.sexygold1          { background-color: #fdc68c; }
.sexybutton.sexysimple.sexygold2          { background-color: #fbaf5a; }
.sexybutton.sexysimple.sexygold3          { background-color: #a36209; }
.sexybutton.sexysimple.sexygold4          { background-color: #7c4900; }
.sexybutton.sexysimple.sexyyellow1       { background-color: #fff799; }
.sexybutton.sexysimple.sexyyellow2       { background-color: #fff467; }
.sexybutton.sexysimple.sexyyellow3       { background-color: #aba000; }
.sexybutton.sexysimple.sexyyellow4       { background-color: #827a00; }
.sexybutton.sexysimple.sexygreenyellow1  { background-color: #c6df9c; }
.sexybutton.sexysimple.sexygreenyellow2  { background-color: #acd372; }
.sexybutton.sexysimple.sexygreenyellow3  { background-color: #588528; }
.sexybutton.sexysimple.sexygreenyellow4  { background-color: #3e6617; }
.sexybutton.sexysimple.sexygoldnrod1     { background-color: #a4d49d; }
.sexybutton.sexysimple.sexygoldnrod2     { background-color: #7dc473; }
.sexybutton.sexysimple.sexygoldnrod3     { background-color: #197b30; }
.sexybutton.sexysimple.sexygoldnrod4     { background-color: #045f20; }
.sexybutton.sexysimple.sexygreen1        { background-color: #81ca9d; }
.sexybutton.sexysimple.sexygreen2        { background-color: #39b778; }
.sexybutton.sexysimple.sexygreen3        { background-color: #007236; }
.sexybutton.sexysimple.sexygreen4        { background-color: #005824; }
.sexybutton.sexysimple.sexyteal1     { background-color: #7bcdc9; }
.sexybutton.sexysimple.sexyteal2     { background-color: #16bcb4; }
.sexybutton.sexysimple.sexyteal3     { background-color: #00736a; }
.sexybutton.sexysimple.sexyteal4     { background-color: #005951; }
.sexybutton.sexysimple.sexyaqua1         { background-color: #6ccff7; }
.sexybutton.sexysimple.sexyaqua2         { background-color: #00bff3; }
.sexybutton.sexysimple.sexyaqua3         { background-color: #0076a4; }
.sexybutton.sexysimple.sexyaqua4         { background-color: #005b7e; }
.sexybutton.sexysimple.sexyskyblue1         { background-color: #7ca6d8; }
.sexybutton.sexysimple.sexyskyblue2         { background-color: #438ccb; }
.sexybutton.sexysimple.sexyskyblue3         { background-color: #004a80; }
.sexybutton.sexysimple.sexyskyblue4         { background-color: #003562; }
.sexybutton.sexysimple.sexyblue1     { background-color: #8293ca; }
.sexybutton.sexysimple.sexyblue2     { background-color: #5573b7; }
.sexybutton.sexysimple.sexyblue3     { background-color: #003370; }
.sexybutton.sexysimple.sexyblue4     { background-color: #002056; }
.sexybutton.sexysimple.sexydarkblue1     { background-color: #8881be; }
.sexybutton.sexysimple.sexydarkblue2     { background-color: #5e5ca7; }
.sexybutton.sexysimple.sexydarkblue3     { background-color: #1d1363; }
.sexybutton.sexysimple.sexydarkblue4     { background-color: #0c004b; }
.sexybutton.sexysimple.sexypurple1       { background-color: #a286bd; }
.sexybutton.sexysimple.sexypurple2       { background-color: #855fa8; }
.sexybutton.sexysimple.sexypurple3       { background-color: #450e61; }
.sexybutton.sexysimple.sexypurple4       { background-color: #30004a; }
.sexybutton.sexysimple.sexydarkviolet1   { background-color: #bc8cbf; }
.sexybutton.sexysimple.sexydarkviolet2   { background-color: #a763a9; }
.sexybutton.sexysimple.sexydarkviolet3   { background-color: #62055f; }
.sexybutton.sexysimple.sexydarkviolet4   { background-color: #4b0048; }
.sexybutton.sexysimple.sexymagenta1      { background-color: #f49bc1; }
.sexybutton.sexysimple.sexymagenta2      { background-color: #ef6ea8; }
.sexybutton.sexysimple.sexymagenta3      { background-color: #ed008c; }
.sexybutton.sexysimple.sexymagenta4      { background-color: #7a0045; }
.sexybutton.sexysimple.sexydeeppink1     { background-color: #f5999d; }
.sexybutton.sexysimple.sexydeeppink2     { background-color: #f16d7e; }
.sexybutton.sexysimple.sexydeeppink3     { background-color: #9d0039; }
.sexybutton.sexysimple.sexydeeppink4     { background-color: #7a0026; }



/* Simple button sizes */
.sexybutton.sexysimple.sexysmall          { padding: 4px 7px 5px; font-size: 10px !important; }
.sexybutton.sexysimple.sexysmall:active   { padding: 5px 7px 4px; }
.sexybutton.sexysimple                    { /* default */ }
.sexybutton.sexysimple:active             { padding: 6px 10px 4px; }
.sexybutton.sexysimple.sexymedium         { /* default */ }
.sexybutton.sexysimple.sexymedium:active  { padding: 6px 10px 4px; }
.sexybutton.sexysimple.sexylarge          { padding: 8px 14px 8px; font-size: 14px !important; }
.sexybutton.sexysimple.sexylarge:active   { padding: 9px 14px 7px; }
.sexybutton.sexysimple.sexyxl             { padding: 8px 14px 8px; font-size: 16px !important; }
.sexybutton.sexysimple.sexyxl:active      { padding: 9px 14px 7px; }
.sexybutton.sexysimple.sexyxxl            { padding: 8px 14px 8px; font-size: 20px !important; }
.sexybutton.sexysimple.sexyxxl:active     { padding: 9px 14px 7px; }
.sexybutton.sexysimple.sexyxxxl           { padding: 8px 14px 8px; font-size: 26px !important; }
.sexybutton.sexysimple.sexyxxxl:active    { padding: 9px 14px 7px; }

.sexybutton.sexysimple.sexysmall[disabled]:active,
.sexybutton.sexysimple.sexysmall.disabled:active   	{ padding: 4px 7px 5px; }
.sexybutton.sexysimple[disabled]:active,
.sexybutton.sexysimple.disabled:active 	            { padding: 5px 10px 5px; }
.sexybutton.sexysimple.sexymedium[disabled]:active,
.sexybutton.sexysimple.sexymedium.disabled:active 		{ padding: 6px 10px 4px; }
.sexybutton.sexysimple.sexylarge[disabled]:active,
.sexybutton.sexysimple.sexylarge.disabled:active   	{ padding: 8px 14px 8px; }
.sexybutton.sexysimple.sexyxl[disabled]:active,
.sexybutton.sexysimple.sexyxl.disabled:active	      { padding: 8px 14px 8px; }
.sexybutton.sexysimple.sexyxxl[disabled]:active,
.sexybutton.sexysimple.sexyxxl.disabled:active 		   { padding: 8px 14px 8px; }
.sexybutton.sexysimple.sexyxxxl[disabled]:active,
.sexybutton.sexysimple.sexyxxxl.disabled:active    	{ padding: 8px 14px 8px; }


/*
 * Icon Definitions
 */

/* Silk Icons - http://www.famfamfam.com/lab/icons/silk/ */
/* (Obviously not all Silk icons are defined here. Feel free to define any other icons that you may need.) */

.sexybutton span.ok				{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/tick.png) !important; }
.sexybutton span.cancel			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/cross.png) !important; }
.sexybutton span.add				{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/add.png) !important; }
.sexybutton span.delete			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/delete.png) !important; }
.sexybutton span.download		{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/arrow_down.png) !important; }
.sexybutton span.download2		{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/package_down.png) !important; }
.sexybutton span.upload			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/arrow_up.png) !important; }
.sexybutton span.search			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/magnifier.png) !important; }
.sexybutton span.find			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/find.png) !important; }
.sexybutton span.first			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/resultset_first.png) !important; }
.sexybutton span.prev			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/resultset_previous.png) !important; }
.sexybutton span.next			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/resultset_next.png) !important; }
.sexybutton span.last			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/resultset_last.png) !important; }
.sexybutton span.play			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/play_blue.png) !important; }
.sexybutton span.pause			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/pause_blue.png) !important; }
.sexybutton span.rewind			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/rewind_blue.png) !important; }
.sexybutton span.forward		{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/forward_blue.png) !important; }
.sexybutton span.stop			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/stop_blue.png) !important; }
.sexybutton span.reload			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/reload.png) !important; }
.sexybutton span.sync			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/arrow_refresh.png) !important; }
.sexybutton span.save			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/disk.png) !important; }
.sexybutton span.email			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/email.png) !important; }
.sexybutton span.print			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/printer.png) !important; }
.sexybutton span.heart			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/heart.png) !important; }
.sexybutton span.like			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/thumb_up.png) !important; }
.sexybutton span.dislike		{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/thumb_down.png) !important; }
.sexybutton span.accept			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/accept.png) !important; }
.sexybutton span.decline		{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/decline.png) !important; }
.sexybutton span.help			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/help.png) !important; }
.sexybutton span.home			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/house.png) !important; }
.sexybutton span.info			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/information.png) !important; }
.sexybutton span.cut				{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/cut.png) !important; }
.sexybutton span.copy			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/page_white_copy.png) !important; }
.sexybutton span.paste			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/paste_plain.png) !important; }
.sexybutton span.erase			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/erase.png) !important; }
.sexybutton span.undo			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/arrow_undo.png) !important; }
.sexybutton span.redo			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/arrow_redo.png) !important; }
.sexybutton span.edit			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/pencil.png) !important; }
.sexybutton span.calendar		{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/date.png) !important; }
.sexybutton span.user			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/user.png) !important; }
.sexybutton span.settings		{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/cog.png) !important; }
.sexybutton span.cart			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/cart.png) !important; }
.sexybutton span.wand			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/wand.png) !important; }
.sexybutton span.wrench			{ background-image: url(http://image.tacomart.com/SexyButtons/images/icons/silk/wrench.png) !important; }

