@charset "utf-8";
/* CSS Document */


/****************************************
*  http://meyerweb.com/eric/tools/css/reset/ 
*    v2.0 | 20110126
*    License: none (public domain)
****************************************/

* {
  box-sizing: border-box;
}

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;
}

body {
  line-height: 1;
}

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;
}

/****************************************
*  FNI Reset
****************************************/

html, body {
  border: 0px;
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
}

div, iframe, img, form, table, td, th {
  border: 0px;
  margin: 0px;
  padding: 0px;
}

a, h2, h3, h4, h4, h5, h6, label, li, p {
  border: 0px;
  margin: 0px;
  padding: 0px;
}

fieldset, legend {
  margin: 0px;
  padding: 0px;
}

object {
  display: block;
}

td {
  text-align: left;
  vertical-align: top;
}

img {
  display: block;
}

/****************************************
*  Address the W3C and IE box sizing differences
****************************************/

html {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}


/****************************************
*  Be rid of Microsoft's "clear field" X on input fields
****************************************/

::-ms-clear {
  display: none;
  height: 0px;
  width: 0px;
}

/****************************************
*  Be rid of the textarea stretch thumb by default
****************************************/

textarea {
  resize: none;
}

/****************************************
*  Useful Tools
****************************************/

div.grow {
  height: 100%;
  width: 100%;
}

table.grow {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
}

table.debug {
  border-collapse: collapse;
  border-spacing: 0px;
}

table.debug > tbody > tr > td,
table.debug > tbody > tr > th {
  border: 1px solid black;
}

div.void {
  border: 0px;
  font-size: 1px;
  height: 1px;
  line-height: 1px;
  margin: 0px;
  max-height: 1px;
  max-width: 1px;
  padding: 0px;
  visibility: hidden;
  width: 1px;
}

div.measure {
  border: 0px;
  margin: 0px;
  padding: 0px;
}

div.wraprel {
  position: relative;
}

div.wrapabs {
  position: absolute;
}

img.inline {
  display: inline;
}

span.valignguide {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

td img {
  display: block;
}

.clickable {
  cursor: pointer;
}

.deterrent {
  position: absolute;
  top: -999px;
}

.noshow {
  display: none;
}

.tallest {
  height: 100%;
}

.widest {
  width: 100%;
}

/****************************************
*  Standardize element appearance on mobile device
****************************************/

a[href^=tel] { 
  text-decoration: none;
  display: inline !important;
}

html,
body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}