/* =CSS Reset
--------------------------------------------------------------------------------------------------*/

/* 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 {
	display: block;
}
html, body {
	height: 100%;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* End CSS Reset
--------------------------------------------------------------------------------------------------*/

/* Setting up the fonts */
body {
  font: 14px Open Sans, sans-serif;
  line-height: 24px;
  color:#000000;
}


@font-face {
    font-family: Open Sans;
    src: url(OpenSans-Regular.ttf);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Open Sans Bold;
    src: url(OpenSans-Bold.ttf);
    font-weight: bold;
    font-style: normal;
}

h1 {font-family: "Open Sans Bold"; font-size:60px; line-height: 72px;}
h2 {font-family: "Georgia Regular", Times, serif; font-size:36px; letter-spacing:.3em; text-transform:uppercase;}
h3 {font-family: "Open Sans Bold"; font-size:44px; line-height: 60px;}
h4 {font-family: "Open Sans Bold"; font-size:28px; line-height: 36px;}
h5 {font-family: "Georgia Regular", Times, serif; font-size:14px; letter-spacing:.3em; text-transform:uppercase;}
h6 {}

.button-above-grid {
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    background-color: #aa9b70;
    color: #ffffff;
    height: 45px;
    font-family: Open Sans;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding-left: 13px;
    padding-right: 13px;
    margin-left: 5px;
    margin-right: 5px;
    cursor: pointer;
}

.button-above-grid:hover {
    background-color: #866d4b;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.50);
    transition-duration: .25s;
}

.dropdown-above-grid {
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 45px;
    margin-left: 5px;
    margin-right: 5px;
    font-family: Open Sans;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #ffffff url('../img/DownChevron.png') no-repeat 95% 50%;
    padding: 9px;
    padding-right: 25px;
}

.slick-cell, .slick-column-name, .ui-dialog-title, .ui-dialog-content, .ui-widget-content {
    font-family: Open Sans;
}

input[type=checkbox],input[type=radio] {
-webkit-appearance:none;
}

input[type=checkbox],input[type=radio] {
-webkit-appearance:none;
background:#fff;
border-radius:3px;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border:3px solid #d5d5d5;
display:inline-block;
width:18px;
height:18px;
-webkit-border-radius: 3px;
vertical-align:text-top;
padding: 0;
}

input[type=checkbox]:hover {
border:3px solid #c5c5c5;
}
input[type=radio]:hover {
border:3px solid #c5c5c5;
}

input[type=checkbox]:checked:after {
content:"\00a0";
display:block;
width:3px;
height:6px;
border:solid #a5a5a5;
position:relative;
left:4px;
top:1px;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-o-transform:rotate(45deg);
border-width:0 2px 2px 0;
}

input[type=radio] {
-webkit-border-radius:50%;
}

input[type="radio"]:checked:after {
content:"\00a0";
display:block;
position:relative;
left:1px;
top:1px;
height:10px;
width:10px;
background:#a5a5a5;
-webkit-border-radius:50%;
}