@charset "utf-8";
/* CSS Document */

.clear {
    clear: both;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.spacer-10 {
    clear: both;
    height: 10px;
    width: 100%;
}
.spacer-20 {
    clear: both;
    height: 20px;
    width: 100%;
}
.spacer-30 {
    clear: both;
    height: 30px;
    width: 100%;
}
.spacer-40 {
    clear: both;
    height: 40px;
    width: 100%;
}
.spacer-45 {
    clear: both;
    height: 45px;
    width: 100%;
}
.mt20{
    margin-top:20px;
}
.mb20{
    margin-bottom: 20px;
}
.mt10{
    margin-top:10px;
}
.mb10{
    margin-bottom: 10px;
}




/* button
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	padding: 6px 10px;
    font-weight: bold;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}


/* color styles
---------------------------------------------- */

/* black */
.button.orange {
	color: white;
	border: solid 1px #ce4d00;
	background: #ee9560;
	background: -webkit-gradient(linear, left top, left bottom, from(#ee9560), to(#e6671b));
	background: -moz-linear-gradient(top,  #ee9560,  #e6671b);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee9560', endColorstr='#e6671b');
}
.button.orange:hover {
	background: #ee9560;
	background: -webkit-gradient(linear, left top, left bottom, from(#e48e5a), to(#d55000));
	background: -moz-linear-gradient(top,  #e48e5a,  #d55000);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e48e5a', endColorstr='#d55000');
}
.button.orange:active {
	color: white;
	background: -webkit-gradient(linear, left top, left bottom, from(#e6671b), to(#ee9560));
	background: -moz-linear-gradient(top,  #e6671b,  #ee9560);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6671b', endColorstr='#ee9560');
}