.samplebutton {
	width: 350px;
	height: 40px;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
}

.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	-webkit-border-radius: .5em;
	-moz-border-radius: .5em;
	border-radius: 0;
	-webkit-box-shadow: 2px 2px 4px 0px #8c8d8e;
	-moz-box-shadow: 2px 2px 4px 0px #8c8d8e;
	box-shadow: 2px 2px 4px 0px #8c8d8e;
	border-collapse: separate;
}

.button:hover {
	text-decoration: none;
}

.button:active {
	position: relative;
	top: 1px;
}

/* Blue #6699DF */
.btn-blue {
	color: #ffffff !important;
	border: 1px solid #1c458c;
	background: #6699DF !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#80a8eb),	to(#5585d7)) !important;
	background: -moz-linear-gradient(top, #80a8eb, #6699DF) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80a8eb',	endColorstr='#6699DF');
	background-image: -ms-linear-gradient(top, #80a8eb, #5585d7) !important;
}

.btn-blue:hover {
	background: #6699DF !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#9dbaeb),	to(#5585d7)) !important;
	background: -moz-linear-gradient(top, #9dbaeb, #6699DF) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dbaeb',	endColorstr='#6699DF');
	background-image: -ms-linear-gradient(top, #9dbaeb, #5585d7) !important;
}

.btn-blue:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#6699DF),	to(#9dbaeb)) !important;
	background: -moz-linear-gradient(top, #6699DF, #9dbaeb) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6699DF',	endColorstr='#9dbaeb');
	background-image: -ms-linear-gradient(top, #6699DF, #9dbaeb) !important;
}

.btn-gray, .btn-blue:disabled {
	color: #333333 !important;
	border: 1px solid #666666 !important;
	background: #cccccc !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#cccccc),to(#b3b3b3)) !important;
	background: -moz-linear-gradient(top, #cccccc, #b3b3b3) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc',	endColorstr='#b3b3b3');
	background-image: -ms-linear-gradient(top, #cccccc, #b3b3b3) !important;
}

.btn-gray:hover {
	background: #cccccc !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#cccccc),to(#ffffff)) !important;
	background: -moz-linear-gradient(top, #cccccc, #ffffff) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc',	endColorstr='#ffffff');
	background-image: -ms-linear-gradient(top, #cccccc, #ffffff) !important;
}

.btn-gray:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#cccccc),to(#b3b3b3)) !important;
	background: -moz-linear-gradient(top, #cccccc, #b3b3b3) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc',	endColorstr='#b3b3b3');
	background-image: -ms-linear-gradient(top, #cccccc, #b3b3b3) !important;
}

.btn-gray:disabled {
	color: #b3b3b3 !important;
	background: #cccccc !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#cccccc),to(#ffffff)) !important;
	background: -moz-linear-gradient(top, #cccccc, #ffffff) !important;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc',	endColorstr='#ffffff');
	background-image: -ms-linear-gradient(top, #cccccc, #ffffff) !important;
}

.btn-green {
	color: #ffffff;
	border: 0px solid;
	background: #669933;
}

.btn-green:hover {
	background: #66aa33;
}

.btn-green:active {
	background: #669933;
}

.btn-green:disabled {
	color: #cccccc;
	background: #e7ffcf;
}

.stf-ui-input-text {
	padding-left: 7px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid #aba8a3;
	height:27px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;
    font-family: "Myriad Pro", Myriad, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", "Helvetical", Helvetica, "Arial", Arial, sans-serif;
    font-size:12px;
}

input:focus {  /* <--less specific, overridden by above */
    outline: none;
}

input::-webkit-input-placeholder { /* WebKit browsers */
    font-style: italic;
}
input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-style: italic;
}
input::-moz-placeholder { /* Mozilla Firefox 19+ */
   font-style: italic;
}
input:-ms-input-placeholder { /* Internet Explorer 10+ */
    font-style: italic;
}

textarea::-webkit-input-placeholder { /* WebKit browsers */
    font-style: italic;
}
textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-style: italic;
}
textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-style: italic;
}
textarea:-ms-input-placeholder { /* Internet Explorer 10+ */
    font-style: italic;
}

.stf-ui-input-text-area {
    padding-left: 7px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid #aba8a3;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;
    font-family: "Myriad Pro", Myriad, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", "Helvetical", Helvetica, "Arial", Arial, sans-serif;
}

.stf-ui-input-select {
	height: 25px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border: 1px solid #aba8a3;
	background-color: #f2f1f0;	
	padding: 2px;
    font-family: "Myriad Pro", Myriad, Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", "Helvetical", Helvetica, "Arial", Arial, sans-serif;
}
