/*---------- left aligned button ----------*/
/*---------- credit www.css.illutic.nl ----*/
.btn {
	display: block;
	position: relative;
	background: #aaa;
	float: right;
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	background-color: #0099FF;
	height: 30px;
	width: 280px;
	padding-top: 10px;
}
.btn * { font-style: normal; display: block; position: relative; }
.btn i { background-position: top left; position: absolute; margin-bottom: -5px;  top: 0; left: 0; width: 5px; height: 5px; }
.btn span { background-position: bottom left; left: -5px; padding: 0 0 5px 10px; margin-bottom: -5px; }
.btn span i { background-position: bottom right; margin-bottom: 0; position: absolute; left: 100%; height: 100%; top: 0; }
.btn span span { background-position: top right; position: absolute; right: -10px; margin-left: 10px; top: -5px; height: 0; }

* html .btn span,
* html .btn i { float: left; width: auto; cursor: pointer; }

.btn.blue { background: #234f7d; }
.btn.green { background: #9d4; }
.btn.lime { background: #bbce00; }
.btn.pink { background: #e1a; }
.btn:hover { background-color: #00CC00; color: #fff; }
.btn:active { background-color: #000066; color: #fff; }
.btn[class] {
	background-image: url('../images/btn.png');
	background-position: bottom;
}

* html .btn { border: 3px double #aaa; }
* html .btn.blue { border-color: #234f7d; }
* html .btn.green { border-color: #9d4; }
* html .btn.lime { border-color: #bbce00; }
* html .btn.pink { border-color: #e1a; }
* html .btn:hover {
	border-color: #a00;
	font-weight: lighter;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #009900;
}
