/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}



html * {
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}

*,:after,:before {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

html, body {
/* you need to set this to assign to the main element a min height of 100% */
	height: 100%;
}

body, table, td, p, input, textarea, select {
    /* font-family: "Open Sans", Arial, Helvetica, Tahoma, Verdana, Geneva, sans-serif; */
	font-family: "Montserrat",Arial,Helvetica,Tahoma,Verdana,Geneva,sans-serif;
    color: #000;
    font-size: 20px;
    line-height: 130%;
    font-weight: 400;
}
body {
  background-color: #fff;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}


a {
	color: #369c47;
    text-decoration: underline;
	}
a:hover {
	color: #84c341;
	}
	
b, strong {
     color: #222; 
	font-weight: 600;
	}


/* ----------------------------------------- */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */


/* ----------------------------------------- */

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}



/* ----------------------------------------- */


HR {
	border-top: 1px solid #D1D1D1;
	color: none;
	background-color: #FFFFFF;
	height: 1px;
	}


FORM {
	padding: 0;
	margin-top: 0px;
	margin-bottom: 0px;
	}

INPUT, TEXTAREA, SELECT {
	border: 1px solid #C2BFAF;
	color: #393939;
	font-size: 14px;
	padding: 3px 5px;
	}



/*---------------------------------- FORM STYLES ----------------------------------*/



div.button-wrapper {
	clear: both;
	display: inline-block;
	margin: 30px 6px;
	}
.button, .btn {
	/* display: inline-block;
	background: #369c47;
	background-image: -webkit-linear-gradient(top, #369c47, #2d873a);
	background-image: -moz-linear-gradient(top, #369c47, #2d873a);
	background-image: -ms-linear-gradient(top, #369c47, #2d873a);
	background-image: -o-linear-gradient(top, #369c47, #2d873a);
	background-image: linear-gradient(to bottom, #369c47, #2d873a);
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	border-radius: 0.3em;
	font-family: "Montserrat", "Open Sans", Arial, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
	text-shadow: 1px 1px 3px #666666;
	color: #ffffff;
	font-size: 14px;
	padding: 0.4em 0.7em;
	margin: 0;
	text-decoration: none; */
	background-color: rgb(234,179,0);
	border-radius: 5px;
	border: none;
	padding: 8px 15px;
	font-family: "Montserrat",Arial,Helvetica,Tahoma,Verdana,Geneva,sans-serif;
	font-weight: bold;
	letter-spacing: -0.04em;
	text-shadow: 0px 1px 2px rgba(0,0,0,0.2);
	font-size: 87%;
	color: #fff;
	text-decoration: none;
	}
.button:hover, .btn:hover {
	/* background: #40b550;
	color: #ffffff;
	text-decoration: none; */
	color: #fff;
	background-color: rgb(249,201,65);
	cursor: pointer;
	}

div.button2-wrapper {
	clear: both;
	display: inline-block;
	margin: 0 0 10px 0;
	}
.button2 {
	font-family: "Montserrat", "Open Sans", Arial, Helvetica, Tahoma, Verdana, Geneva, sans-serif;
	border: none;
	border-radius: 5px;
	color: #fff;
	background-color: #bbb;
	text-decoration: none;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
	font-size: 14px;
	line-height: 14px;
	padding: 5px 7px 5px 7px;
	vertical-align: top;
	background: #bbb;
/*
	background-image: -webkit-linear-gradient(top, #ccc, #bbb);
	background-image: -moz-linear-gradient(top, #ccc, #bbb);
	background-image: -ms-linear-gradient(top, #ccc, #bbb);
	background-image: -o-linear-gradient(top, #ccc, #bbb);
	background-image: linear-gradient(to bottom, #ccc, #bbb);
*/
/*
	-webkit-border-radius: 0.3em;
	-moz-border-radius: 0.3em;
	border-radius: 0.3em;
	font-family: "Montserrat",Arial,Helvetica,Tahoma,Verdana,Geneva,sans-serif;
	text-shadow: 1px 1px 3px #666666;
	color: #ffffff;
	font-size: 14px;
	padding: 0.4em 0.7em;
	text-decoration: none;
*/
	}
.button2:hover {
	background: #ccc;
	color: #ffffff;
	text-decoration: none;
	}



/*---------------------------------- END FORM STYLES ----------------------------------*/
