
@font-face {
	font-family: dpbold;
	src: url(lemance-bold.otf);
}
@font-face {
	font-family: dpitalic;
	src: url(lemance-lightitalic.otf);
}
:root {
	--dpgreen: rgb(43, 121, 83);
}
html {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}
.dpbold {
	font-family: dpbold;
}
.dpitalic {
	font-family: dpitalic;
}
.dpbutton {
	font-family: 'Open Sans', sans-serif;
	box-sizing: border-box;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	line-height: 1.5;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	border-radius: 0;
	border: 0px solid #000 !important;
	outline: 0;
	box-shadow: none;
	overflow: hidden;
	text-decoration: none;
	display: inline-block;
	background-color: #FFF;
	font-weight: bold;
	color: #000 !important;
	padding: 8px 20px 8px 20px;
	font-size: 17px;
	text-transform: uppercase;
	cursor: pointer;
}

.dpbutton:hover {
	color: #FFF !important;
	background-color: #000;
	text-indent: 0px;
	text-decoration: none;
	width: auto;
}

.dpbutton:disabled {
	color: #959595 !important;
	background-color: #d0d0d0;
	cursor: not-allowed;
}

.dpbuttonarrow {
	padding: 8px 40px 8px 20px;

	background-image: url('arrow_right.png');
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: right 13px center;
}

.dpbuttonarrow:hover {
	background-image: url('arrow_right_white.png');
}

.bordered {
	border: 1px solid #000 !important;
}