/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */
/* =============================================================================
   HTML5 display definitions
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
[hidden] {
  display: none;
}
/* =============================================================================
   Base
   ========================================================================== */
/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
  color: #222;
}
body {
  margin: 0;
  font-size: 1em;
  line-height: 1.4;
}
/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */
::-moz-selection {
  background: #fe57a1;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #fe57a1;
  color: #fff;
  text-shadow: none;
}
/* =============================================================================
   Links
   ========================================================================== */
a {
  color: #00e;
}
a:visited {
  color: #551a8b;
}
a:hover {
  color: #06e;
}
a:focus {
  outline: thin dotted;
}
/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover,
a:active {
  outline: 0;
}
/* =============================================================================
   Typography
   ========================================================================== */
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
ins {
  background: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
/* Redeclare monospace font family: h5bp.com/j */
pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
/* Improve readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:before,
q:after {
  content: "";
  content: none;
}
small {
  font-size: 85%;
}
/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* =============================================================================
   Lists
   ========================================================================== */
ul,
ol {
  margin: 1em 0;
  padding: 0 0 0 40px;
}
dd {
  margin: 0 0 0 40px;
}
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* =============================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle;
}
/*
 * Correct overflow not hidden in IE9
 */
svg:not(:root) {
  overflow: hidden;
}
/* =============================================================================
   Figures
   ========================================================================== */
figure {
  margin: 0;
}
/* =============================================================================
   Forms
   ========================================================================== */
form {
  margin: 0;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
/* Indicate that 'label' will shift focus to the associated form element */
label {
  cursor: pointer;
}
/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */
legend {
  border: 0;
  *margin-left: -7px;
  padding: 0;
  white-space: normal;
}
/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button,
input {
  line-height: normal;
}
/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
  *overflow: visible;
}
/*
 * Re-set default cursor for disabled elements
 */
button[disabled],
input[disabled] {
  cursor: default;
}
/*
 * Consistent box sizing and appearance
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  *width: 13px;
  *height: 13px;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}
/* Colors for form validity */
input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}
/* =============================================================================
   Tables
   ========================================================================== */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td {
  vertical-align: top;
}
/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: black;
  padding: 0.2em 0;
}
/* ==|== primary styles =====================================================
   Author:
   ========================================================================== */
/* ==|== media queries ======================================================
   EXAMPLE Media Query for Responsive Design.
   This example overrides the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */
/* For image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  *line-height: 0;
}
.ir br {
  display: none;
}
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/* Contain floats: h5bp.com/q */
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }
  /* Black prints faster: h5bp.com/s */
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  /* Don't show links for images, or javascript/internal links */
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  /* h5bp.com/t */
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
html.webkit #main *::-webkit-scrollbar {
  width: 18px;
  height: 18px;
}
html.webkit #main *::-webkit-scrollbar:vertical {
  -webkit-border-image: url('../../img/scrollbar-horizontal-top.png') 0 0 0 11;
  border-color: transparent;
  border-width: 0 0 0 11px;
  background-image: url('../../img/scrollbar-horizontal.png');
  background-repeat: repeat-x;
}
html.webkit #main *::-webkit-scrollbar-thumb:vertical {
  -webkit-border-image: url('../../img/scrollbar-horizontal-thumb.png') 0 10 0 10;
  border-color: transparent;
  border-width: 0 10px;
  min-width: 29px;
}
html.webkit #main *::-webkit-scrollbar:vertical {
  -webkit-border-image: url('../../img/scrollbar-vertical-top.png') 11 0 0 0;
  border-color: transparent;
  border-width: 11px 0 0 0;
  background-image: url('../../img/scrollbar-vertical.png');
  background-repeat: repeat-y;
}
html.webkit #main *::-webkit-scrollbar-thumb:vertical {
  -webkit-border-image: url('../../img/scrollbar-vertical-thumb.png') 10 0 10 0;
  border-color: transparent;
  border-width: 10px 0;
  min-height: 29px;
}
::-moz-selection {
  background: #61a3d3;
  color: #ffffff;
  text-shadow: none;
}
::selection {
  background: #61a3d3;
  color: #ffffff;
  text-shadow: none;
}
html h1,
html h2,
html h3,
html h4,
html h5,
html h6 {
  font-family: 'BodoniSeventytwoITCW01- 731145', cursive;
  line-height: 1.2em;
  margin-top: 0;
  margin-bottom: 0.5em;
}
html h2 {
  font-size: 35px;
}
html p {
  margin: 0;
}
html p + p {
  margin-top: 1em;
}
html img {
  max-width: 100%;
  width: auto\9;
  /* ie8 */

  height: auto;
}
html a {
  color: #555555;
  text-decoration: none;
}
html a:active,
html a:visited {
  color: #555555;
}
html a:hover {
  color: #2d455d;
}
html .current_page_item > a,
html .current_page_parent > a,
html .current_page_ancestor > a {
  color: #043465;
}
html input[type="text"],
html textarea {
  border-radius: 2px;
  border: 1px solid #c4c4c4;
  padding: 3px;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
}
html .alignleft {
  display: inline;
  float: left;
  margin-right: 1.625em;
}
html .alignright {
  display: inline;
  float: right;
  margin-left: 1.625em;
}
html .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
html,
html body {
  width: 100%;
  height: 100%;
  min-height: 306px;
  min-width: 1150px;
  overflow: auto;
  color: #555555;
}
html body {
  position: relative;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.4em;
}
html body > #background {
  position: absolute;
  width: 100%;
  top: 100px;
  bottom: 100px;
}
html body > header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background-color: #ffffff;
}
html body > header > nav {
  *zoom: 1;
  position: relative;
  top: 0px;
  width: 1110px;
  height: 100px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
}
html body > header > nav:before,
html body > header > nav:after {
  display: table;
  content: "";
}
html body > header > nav:after {
  clear: both;
}
html body > header > nav > ul {
  list-style-type: none;
}
html body > header > nav > ul > li {
  float: left;
  line-height: 100px;
}
html body > header > nav > ul > li.home,
html body > header > nav > ul > li.home.current_page_item {
  width: 190px;
  height: 100px;
  background-image: url('../../img/nav-home.png');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
html body > header > nav > ul > li.home > a,
html body > header > nav > ul > li.home.current_page_item > a {
  display: block;
  width: 100%;
  height: 100%;
  color: transparent !important;
  font-size: 0px;
}
html body > header > nav > ul > li.current_page_item,
html body > header > nav > ul > li.current_page_parent,
html body > header > nav > ul > li.current_page_ancestor {
  background-image: url('../../img/nav-current-item.png');
  background-position: center bottom;
  background-repeat: no-repeat;
}
html body > header > nav > ul > li.current_page_item > .sub-menu,
html body > header > nav > ul > li.current_page_parent > .sub-menu,
html body > header > nav > ul > li.current_page_ancestor > .sub-menu {
  list-style-type: none;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  height: 40px;
  line-height: 40px;
  font-weight: normal;
  text-align: center;
  word-spacing: 0;
  font-size: 0;
}
html body > header > nav > ul > li.current_page_item > .sub-menu > li,
html body > header > nav > ul > li.current_page_parent > .sub-menu > li,
html body > header > nav > ul > li.current_page_ancestor > .sub-menu > li {
  display: inline-block;
  font-size: 12px;
  margin: 0 10px;
}
html body > header > nav > ul > li.current_page_item > .sub-menu > li > a,
html body > header > nav > ul > li.current_page_parent > .sub-menu > li > a,
html body > header > nav > ul > li.current_page_ancestor > .sub-menu > li > a {
  height: 40px;
  line-height: 40px;
}
html body > header > nav > ul > li > .sub-menu,
html body > header > nav > ul > li.page-template-page-sidebar-nav-php > .sub-menu,
html body > header > nav > ul > li.page-template-page-om-new-element-php > .sub-menu {
  display: none;
}
html body > header > nav > ul > li + li {
  margin-left: 1em;
}
html body > #main {
  position: absolute;
  min-height: 60px;
  top: 100px;
  bottom: 110px;
  width: 1150px;
  padding-bottom: 46px;
  overflow-y: hidden;
  left: 50%;
  margin-left: -575px;
}
html body > #main > .page,
html body > #main > .post {
  position: relative;
  width: 450px;
  max-height: 100%;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
  border-top: solid 3px #043465;
  border-bottom: solid 3px #043465;
  -webkit-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
  -moz-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
  -o-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
  box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
}
html body > footer {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1110px;
  height: 100px;
  margin-left: -555px;
  z-index: 1000;
  background-color: #ffffff;
  overflow: hidden;
}
html body > footer > .facebook {
  float: left;
  padding-left: 60px;
  width: 150px;
  padding-top: 10px;
  height: 40px;
  line-height: 1.4em;
  margin: 25px 0;
  font-size: 12px;
  background-image: url('../../img/facebook.png');
  background-size: 50px 50px;
  background-repeat: no-repeat;
}
html body > footer > .facebook:hover {
  text-decoration: underline;
}
html body > footer > .payoff {
  position: absolute;
  width: 475px;
  height: 80px;
  left: 50%;
  top: 50%;
  margin-left: -238px;
  margin-top: -40px;
  background-image: url('../../img/payoff.png');
  background-size: 100%;
  background-repeat: no-repeat;
}
html body > footer > .contact {
  float: right;
  margin-top: 1em;
  line-height: 1.4em;
  font-size: 12px;
}
html #main > .page.page-template-page-centered-php {
  position: absolute;
  width: 900px;
  left: 50%;
  margin-left: -450px;
}
html #main > .page.page-template-page-contact-form-php > header {
  margin-bottom: 2em;
}
html #main > .page.page-template-page-contact-form-php > form .align-left {
  float: left;
}
html #main > .page.page-template-page-contact-form-php > form .align-right {
  float: right;
}
html #main > .page.page-template-page-contact-form-php > form p {
  *zoom: 1;
}
html #main > .page.page-template-page-contact-form-php > form p:before,
html #main > .page.page-template-page-contact-form-php > form p:after {
  display: table;
  content: "";
}
html #main > .page.page-template-page-contact-form-php > form p:after {
  clear: both;
}
html #main > .page.page-template-page-contact-form-php > form p + p {
  margin-top: 1.5em;
}
html #main > .page.page-template-page-contact-form-php > form input[type="text"] {
  width: 45%;
}
html #main > .page.page-template-page-contact-form-php > form textarea {
  display: block;
  width: 98%;
  height: 6em;
  resize: none;
}
html #main > .page.page-template-page-contact-form-php > form input[type="checkbox"] {
  margin: 0 5px;
}
html #main > .page.page-template-page-contact-form-php > form input[type="submit"] {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  float: right;
  width: 134px;
  height: 32px;
  background-image: url('../../img/contact-form-submit.png');
  background-size: 100%;
  color: transparent;
  font-size: 0px;
}
html #main > .page.page-template-page-contact-form-php > form .error {
  color: red;
  margin-top: 0.5em;
}
html body > #main > .page-template-page-sidebar-nav-php {
  width: 450px;
}
html body > #main > .page-template-page-sidebar-nav-php > nav {
  position: relative;
  float: left;
  width: 150px;
}
html body > #main > .page-template-page-sidebar-nav-php > nav > header {
  position: relative;
  padding-right: 20px;
}
html body > #main > .page-template-page-sidebar-nav-php > nav > ul {
  list-style: none;
  margin: 20px 0;
}
html body > #main > .page-template-page-sidebar-nav-php > nav > ul > li {
  height: 26px;
  line-height: 26px;
  font-size: 14px;
}
html body > #main > .page-template-page-sidebar-nav-php > nav > ul > li + li {
  border-top: solid 1px #cdd6e0;
}
html body > #main > .page-template-page-sidebar-nav-php > nav:after {
  position: absolute;
  top: 0;
  bottom: -20px;
  right: 0;
  content: ' ';
  border-right: solid 1px #cdd6e0;
}
html body > #main > .page-template-page-sidebar-nav-php > article {
  position: relative;
  float: left;
  width: 262px;
  padding-left: 20px;
}
html body > #main > .page-template-page-sidebar-nav-php > article:before {
  position: absolute;
  top: 0;
  bottom: -20px;
  left: -1px;
  content: ' ';
  border-right: solid 1px #cdd6e0;
}
html body > #main > .page-template-page-om-new-element-php {
  width: 600px;
}
html body > #main > .page-template-page-om-new-element-php h2 {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
}
html body > #main > .page-template-page-om-new-element-php > nav {
  position: relative;
  float: left;
  width: 150px;
}
html body > #main > .page-template-page-om-new-element-php > nav > header {
  position: relative;
  padding-right: 20px;
}
html body > #main > .page-template-page-om-new-element-php > nav > ul {
  list-style: none;
  margin: 20px 0;
}
html body > #main > .page-template-page-om-new-element-php > nav > ul > li {
  height: 26px;
  line-height: 26px;
  font-size: 14px;
}
html body > #main > .page-template-page-om-new-element-php > nav > ul > li + li {
  border-top: solid 1px #cdd6e0;
}
html body > #main > .page-template-page-om-new-element-php > nav:after {
  position: absolute;
  top: 0;
  bottom: -20px;
  right: 0;
  content: ' ';
  border-right: solid 1px #cdd6e0;
}
html body > #main > .page-template-page-om-new-element-php > article {
  position: relative;
  float: left;
  width: 412px;
  padding-left: 20px;
}
html body > #main > .page-template-page-om-new-element-php > article:before {
  position: absolute;
  top: 0;
  bottom: -20px;
  left: -1px;
  content: ' ';
  border-right: solid 1px #cdd6e0;
}
@media all and (max-width: 1149px), all and (max-height: 700px) {
  html.backgroundsize h1,
  html.backgroundsize h2,
  html.backgroundsize h3,
  html.backgroundsize h4,
  html.backgroundsize h5,
  html.backgroundsize h6 {
    font-family: 'BodoniSeventytwoITCW01- 731145', cursive;
    line-height: 1.2em;
    margin-top: 0;
    margin-bottom: 0.5em;
  }
  html.backgroundsize h2 {
    font-size: 30px;
  }
  html.backgroundsize p {
    margin: 0;
  }
  html.backgroundsize p + p {
    margin-top: 1em;
  }
  html.backgroundsize img {
    max-width: 100%;
    width: auto\9;
    /* ie8 */
  
    height: auto;
  }
  html.backgroundsize a {
    color: #555555;
    text-decoration: none;
  }
  html.backgroundsize a:active,
  html.backgroundsize a:visited {
    color: #555555;
  }
  html.backgroundsize a:hover {
    color: #2d455d;
  }
  html.backgroundsize .current_page_item > a,
  html.backgroundsize .current_page_parent > a,
  html.backgroundsize .current_page_ancestor > a {
    color: #043465;
  }
  html.backgroundsize input[type="text"],
  html.backgroundsize textarea {
    border-radius: 2px;
    border: 1px solid #c4c4c4;
    padding: 3px;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.9);
  }
  html.backgroundsize .alignleft {
    display: inline;
    float: left;
    margin-right: 1.43em;
  }
  html.backgroundsize .alignright {
    display: inline;
    float: right;
    margin-left: 1.43em;
  }
  html.backgroundsize .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  html.backgroundsize,
  html.backgroundsize body {
    width: 100%;
    height: 100%;
    min-height: 282px;
    min-width: 1012px;
    overflow: auto;
    color: #555555;
  }
  html.backgroundsize body {
    position: relative;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.4em;
  }
  html.backgroundsize body > #background {
    position: absolute;
    width: 100%;
    top: 88px;
    bottom: 88px;
  }
  html.backgroundsize body > header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 88px;
    z-index: 1000;
    background-color: #ffffff;
  }
  html.backgroundsize body > header > nav {
    *zoom: 1;
    position: relative;
    top: 0px;
    width: 976px;
    height: 88px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: bold;
  }
  html.backgroundsize body > header > nav:before,
  html.backgroundsize body > header > nav:after {
    display: table;
    content: "";
  }
  html.backgroundsize body > header > nav:after {
    clear: both;
  }
  html.backgroundsize body > header > nav > ul {
    list-style-type: none;
  }
  html.backgroundsize body > header > nav > ul > li {
    float: left;
    line-height: 88px;
  }
  html.backgroundsize body > header > nav > ul > li.home,
  html.backgroundsize body > header > nav > ul > li.home.current_page_item {
    width: 167px;
    height: 88px;
    background-image: url('../../img/nav-home.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  html.backgroundsize body > header > nav > ul > li.home > a,
  html.backgroundsize body > header > nav > ul > li.home.current_page_item > a {
    display: block;
    width: 100%;
    height: 100%;
    color: transparent !important;
    font-size: 0px;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item,
  html.backgroundsize body > header > nav > ul > li.current_page_parent,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor {
    background-image: url('../../img/nav-current-item.png');
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.current_page_parent > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor > .sub-menu {
    list-style-type: none;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: 35px;
    line-height: 35px;
    font-weight: normal;
    text-align: center;
    word-spacing: 0;
    font-size: 0;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item > .sub-menu > li,
  html.backgroundsize body > header > nav > ul > li.current_page_parent > .sub-menu > li,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor > .sub-menu > li {
    display: inline-block;
    font-size: 11px;
    margin: 0 9px;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item > .sub-menu > li > a,
  html.backgroundsize body > header > nav > ul > li.current_page_parent > .sub-menu > li > a,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor > .sub-menu > li > a {
    height: 35px;
    line-height: 35px;
  }
  html.backgroundsize body > header > nav > ul > li > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.page-template-page-sidebar-nav-php > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.page-template-page-om-new-element-php > .sub-menu {
    display: none;
  }
  html.backgroundsize body > header > nav > ul > li + li {
    margin-left: 1em;
  }
  html.backgroundsize body > #main {
    position: absolute;
    min-height: 64px;
    top: 88px;
    bottom: 97px;
    width: 1012px;
    padding-bottom: 42px;
    overflow-y: hidden;
    left: 50%;
    margin-left: -506px;
  }
  html.backgroundsize body > #main > .page,
  html.backgroundsize body > #main > .post {
    position: relative;
    width: 396px;
    max-height: 100%;
    padding: 18px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.9);
    border-top: solid 3px #043465;
    border-bottom: solid 3px #043465;
    -webkit-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
    -moz-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
    -o-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
    box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
  }
  html.backgroundsize body > footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 976px;
    height: 88px;
    margin-left: -488px;
    z-index: 1000;
    background-color: #ffffff;
    overflow: hidden;
  }
  html.backgroundsize body > footer > .facebook {
    float: left;
    padding-left: 53px;
    width: 132px;
    padding-top: 9px;
    height: 35px;
    line-height: 1.4em;
    margin: 22px 0;
    font-size: 11px;
    background-image: url('../../img/facebook.png');
    background-size: 44px 44px;
    background-repeat: no-repeat;
  }
  html.backgroundsize body > footer > .facebook:hover {
    text-decoration: underline;
  }
  html.backgroundsize body > footer > .payoff {
    position: absolute;
    width: 418px;
    height: 70px;
    left: 50%;
    top: 50%;
    margin-left: -209px;
    margin-top: -35px;
    background-image: url('../../img/payoff.png');
    background-size: 100%;
    background-repeat: no-repeat;
  }
  html.backgroundsize body > footer > .contact {
    float: right;
    margin-top: 1em;
    line-height: 1.4em;
    font-size: 11px;
  }
  html.backgroundsize #main > .page.page-template-page-centered-php {
    position: absolute;
    width: 792px;
    left: 50%;
    margin-left: -396px;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > header {
    margin-bottom: 2em;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form .align-left {
    float: left;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form .align-right {
    float: right;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p {
    *zoom: 1;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p:before,
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p:after {
    display: table;
    content: "";
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p:after {
    clear: both;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p + p {
    margin-top: 1.5em;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form input[type="text"] {
    width: 45%;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form textarea {
    display: block;
    width: 98%;
    height: 6em;
    resize: none;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form input[type="checkbox"] {
    margin: 0 4px;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form input[type="submit"] {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    float: right;
    width: 118px;
    height: 28px;
    background-image: url('../../img/contact-form-submit.png');
    background-size: 100%;
    color: transparent;
    font-size: 0px;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form .error {
    color: red;
    margin-top: 0.5em;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php {
    width: 396px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav {
    position: relative;
    float: left;
    width: 132px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > header {
    position: relative;
    padding-right: 18px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > ul {
    list-style: none;
    margin: 18px 0;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > ul > li {
    height: 23px;
    line-height: 23px;
    font-size: 12px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > ul > li + li {
    border-top: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav:after {
    position: absolute;
    top: 0;
    bottom: -18px;
    right: 0;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > article {
    position: relative;
    float: left;
    width: 228px;
    padding-left: 18px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > article:before {
    position: absolute;
    top: 0;
    bottom: -18px;
    left: -1px;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php {
    width: 528px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php h2 {
    font-family: inherit;
    font-size: inherit;
    font-weight: bold;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav {
    position: relative;
    float: left;
    width: 132px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > header {
    position: relative;
    padding-right: 18px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > ul {
    list-style: none;
    margin: 18px 0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > ul > li {
    height: 23px;
    line-height: 23px;
    font-size: 12px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > ul > li + li {
    border-top: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav:after {
    position: absolute;
    top: 0;
    bottom: -18px;
    right: 0;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > article {
    position: relative;
    float: left;
    width: 360px;
    padding-left: 18px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > article:before {
    position: absolute;
    top: 0;
    bottom: -18px;
    left: -1px;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
}
@media all and (max-width: 1024px), all and (max-height: 500px) {
  html.backgroundsize h1,
  html.backgroundsize h2,
  html.backgroundsize h3,
  html.backgroundsize h4,
  html.backgroundsize h5,
  html.backgroundsize h6 {
    font-family: 'BodoniSeventytwoITCW01- 731145', cursive;
    line-height: 1.2em;
    margin-top: 0;
    margin-bottom: 0.5em;
  }
  html.backgroundsize h2 {
    font-size: 22.5px;
  }
  html.backgroundsize p {
    margin: 0;
  }
  html.backgroundsize p + p {
    margin-top: 1em;
  }
  html.backgroundsize img {
    max-width: 100%;
    width: auto\9;
    /* ie8 */
  
    height: auto;
  }
  html.backgroundsize a {
    color: #555555;
    text-decoration: none;
  }
  html.backgroundsize a:active,
  html.backgroundsize a:visited {
    color: #555555;
  }
  html.backgroundsize a:hover {
    color: #2d455d;
  }
  html.backgroundsize .current_page_item > a,
  html.backgroundsize .current_page_parent > a,
  html.backgroundsize .current_page_ancestor > a {
    color: #043465;
  }
  html.backgroundsize input[type="text"],
  html.backgroundsize textarea {
    border-radius: 2px;
    border: 1px solid #c4c4c4;
    padding: 2px;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.9);
  }
  html.backgroundsize .alignleft {
    display: inline;
    float: left;
    margin-right: 1.0725em;
  }
  html.backgroundsize .alignright {
    display: inline;
    float: right;
    margin-left: 1.0725em;
  }
  html.backgroundsize .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  html.backgroundsize,
  html.backgroundsize body {
    width: 100%;
    height: 100%;
    min-height: 238px;
    min-width: 759px;
    overflow: auto;
    color: #555555;
  }
  html.backgroundsize body {
    position: relative;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 9px;
    line-height: 1.4em;
  }
  html.backgroundsize body > #background {
    position: absolute;
    width: 100%;
    top: 66px;
    bottom: 66px;
  }
  html.backgroundsize body > header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;
    z-index: 1000;
    background-color: #ffffff;
  }
  html.backgroundsize body > header > nav {
    *zoom: 1;
    position: relative;
    top: 0px;
    width: 733px;
    height: 66px;
    margin: 0 auto;
    font-size: 11px;
    font-weight: bold;
  }
  html.backgroundsize body > header > nav:before,
  html.backgroundsize body > header > nav:after {
    display: table;
    content: "";
  }
  html.backgroundsize body > header > nav:after {
    clear: both;
  }
  html.backgroundsize body > header > nav > ul {
    list-style-type: none;
  }
  html.backgroundsize body > header > nav > ul > li {
    float: left;
    line-height: 66px;
  }
  html.backgroundsize body > header > nav > ul > li.home,
  html.backgroundsize body > header > nav > ul > li.home.current_page_item {
    width: 125px;
    height: 66px;
    background-image: url('../../img/nav-home.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  html.backgroundsize body > header > nav > ul > li.home > a,
  html.backgroundsize body > header > nav > ul > li.home.current_page_item > a {
    display: block;
    width: 100%;
    height: 100%;
    color: transparent !important;
    font-size: 0px;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item,
  html.backgroundsize body > header > nav > ul > li.current_page_parent,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor {
    background-image: url('../../img/nav-current-item.png');
    background-position: center bottom;
    background-repeat: no-repeat;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.current_page_parent > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor > .sub-menu {
    list-style-type: none;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    height: 26px;
    line-height: 26px;
    font-weight: normal;
    text-align: center;
    word-spacing: 0;
    font-size: 0;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item > .sub-menu > li,
  html.backgroundsize body > header > nav > ul > li.current_page_parent > .sub-menu > li,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor > .sub-menu > li {
    display: inline-block;
    font-size: 8px;
    margin: 0 7px;
  }
  html.backgroundsize body > header > nav > ul > li.current_page_item > .sub-menu > li > a,
  html.backgroundsize body > header > nav > ul > li.current_page_parent > .sub-menu > li > a,
  html.backgroundsize body > header > nav > ul > li.current_page_ancestor > .sub-menu > li > a {
    height: 26px;
    line-height: 26px;
  }
  html.backgroundsize body > header > nav > ul > li > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.page-template-page-sidebar-nav-php > .sub-menu,
  html.backgroundsize body > header > nav > ul > li.page-template-page-om-new-element-php > .sub-menu {
    display: none;
  }
  html.backgroundsize body > header > nav > ul > li + li {
    margin-left: 1em;
  }
  html.backgroundsize body > #main {
    position: absolute;
    min-height: 74px;
    top: 66px;
    bottom: 73px;
    width: 759px;
    padding-bottom: 32px;
    overflow-y: hidden;
    left: 50%;
    margin-left: -379.5px;
  }
  html.backgroundsize body > #main > .page,
  html.backgroundsize body > #main > .post {
    position: relative;
    width: 297px;
    max-height: 100%;
    padding: 13px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #ffffff;
    background: rgba(255, 255, 255, 0.9);
    border-top: solid 3px #043465;
    border-bottom: solid 3px #043465;
    -webkit-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
    -moz-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
    -o-box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
    box-shadow: 2px 1px 3px 0px rgba(0, 0, 0, 0.29);
  }
  html.backgroundsize body > footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 733px;
    height: 66px;
    margin-left: -366.5px;
    z-index: 1000;
    background-color: #ffffff;
    overflow: hidden;
  }
  html.backgroundsize body > footer > .facebook {
    float: left;
    padding-left: 40px;
    width: 99px;
    padding-top: 7px;
    height: 26px;
    line-height: 1.4em;
    margin: 17px 0;
    font-size: 8px;
    background-image: url('../../img/facebook.png');
    background-size: 33px 33px;
    background-repeat: no-repeat;
  }
  html.backgroundsize body > footer > .facebook:hover {
    text-decoration: underline;
  }
  html.backgroundsize body > footer > .payoff {
    position: absolute;
    width: 314px;
    height: 53px;
    left: 50%;
    top: 50%;
    margin-left: -157px;
    margin-top: -26px;
    background-image: url('../../img/payoff.png');
    background-size: 100%;
    background-repeat: no-repeat;
  }
  html.backgroundsize body > footer > .contact {
    float: right;
    margin-top: 1em;
    line-height: 1.4em;
    font-size: 8px;
  }
  html.backgroundsize #main > .page.page-template-page-centered-php {
    position: absolute;
    width: 594px;
    left: 50%;
    margin-left: -297px;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > header {
    margin-bottom: 2em;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form .align-left {
    float: left;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form .align-right {
    float: right;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p {
    *zoom: 1;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p:before,
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p:after {
    display: table;
    content: "";
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p:after {
    clear: both;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form p + p {
    margin-top: 1.5em;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form input[type="text"] {
    width: 45%;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form textarea {
    display: block;
    width: 98%;
    height: 6em;
    resize: none;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form input[type="checkbox"] {
    margin: 0 3px;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form input[type="submit"] {
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
    float: right;
    width: 88px;
    height: 21px;
    background-image: url('../../img/contact-form-submit.png');
    background-size: 100%;
    color: transparent;
    font-size: 0px;
  }
  html.backgroundsize #main > .page.page-template-page-contact-form-php > form .error {
    color: red;
    margin-top: 0.5em;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php {
    width: 297px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav {
    position: relative;
    float: left;
    width: 99px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > header {
    position: relative;
    padding-right: 13px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > ul {
    list-style: none;
    margin: 13px 0;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > ul > li {
    height: 17px;
    line-height: 17px;
    font-size: 9px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav > ul > li + li {
    border-top: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > nav:after {
    position: absolute;
    top: 0;
    bottom: -13px;
    right: 0;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > article {
    position: relative;
    float: left;
    width: 167px;
    padding-left: 13px;
  }
  html.backgroundsize body > #main > .page-template-page-sidebar-nav-php > article:before {
    position: absolute;
    top: 0;
    bottom: -13px;
    left: -1px;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php {
    width: 396px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php h2 {
    font-family: inherit;
    font-size: inherit;
    font-weight: bold;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav {
    position: relative;
    float: left;
    width: 99px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > header {
    position: relative;
    padding-right: 13px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > ul {
    list-style: none;
    margin: 13px 0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > ul > li {
    height: 17px;
    line-height: 17px;
    font-size: 9px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav > ul > li + li {
    border-top: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > nav:after {
    position: absolute;
    top: 0;
    bottom: -13px;
    right: 0;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > article {
    position: relative;
    float: left;
    width: 266px;
    padding-left: 13px;
  }
  html.backgroundsize body > #main > .page-template-page-om-new-element-php > article:before {
    position: absolute;
    top: 0;
    bottom: -13px;
    left: -1px;
    content: ' ';
    border-right: solid 1px #cdd6e0;
  }
}
