
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_87f8a268d0306d1c9bc78c83.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5a81bbc0c781468c553f5cb2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_99380af86b2351e30ff25502.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1b213b77f286bd803c39502d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cfc8240492c415ecd5b0fbc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.074000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dc186a1f05c489132326248b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3a298a03cfb69354da9a551a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_61e48dcdea54fe4d259ee92a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9fb56dfaa9c71244171e8f02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.989746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ad17d9fb9ae7dae976ecd1d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897949;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3e{transform:matrix(0.245074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245074,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.245151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245151,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245577,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245656,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.245687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245687,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246043,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246062,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246184,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246639,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246670,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247010,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247105,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247136,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247737,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247840,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248041,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248239,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248390,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248416,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248423,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248684,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248763,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249153,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249624,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250031,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250215,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250256,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250892,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250923,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251244,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251481,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251636,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251667,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251990,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252227,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252407,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252895,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253144,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253158,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253653,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.253978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253978,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254127,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.254340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254340,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.254421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254421,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254533,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.254536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254536,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254553,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254660,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.254699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254699,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254864,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.254983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254983,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.033600px;}
.ls2{letter-spacing:0.062700px;}
.ls4{letter-spacing:0.125400px;}
.ls5{letter-spacing:0.188100px;}
.ls6{letter-spacing:0.250800px;}
.ls7{letter-spacing:0.313500px;}
.ls3{letter-spacing:0.376200px;}
.ls8{letter-spacing:0.689700px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-17.242500px;}
.ws4c{word-spacing:-16.302000px;}
.ws2{word-spacing:-15.990000px;}
.ws3c{word-spacing:-15.863100px;}
.ws1{word-spacing:-15.612300px;}
.ws32{word-spacing:-14.922600px;}
.ws26{word-spacing:-14.734500px;}
.ws4a{word-spacing:-6.646200px;}
.ws11{word-spacing:-4.702500px;}
.ws2c{word-spacing:-4.639800px;}
.ws2a{word-spacing:-4.263600px;}
.ws33{word-spacing:-4.012800px;}
.ws2e{word-spacing:-3.950100px;}
.ws28{word-spacing:-3.887400px;}
.ws1e{word-spacing:-3.824700px;}
.ws27{word-spacing:-3.573900px;}
.ws24{word-spacing:-3.448500px;}
.ws23{word-spacing:-3.385800px;}
.ws21{word-spacing:-3.323100px;}
.ws22{word-spacing:-3.197700px;}
.ws25{word-spacing:-3.135000px;}
.ws36{word-spacing:-3.009600px;}
.ws35{word-spacing:-2.946900px;}
.ws39{word-spacing:-2.884200px;}
.ws13{word-spacing:-2.758800px;}
.ws17{word-spacing:-2.633400px;}
.ws1d{word-spacing:-2.508000px;}
.ws18{word-spacing:-2.445300px;}
.ws15{word-spacing:-2.319900px;}
.ws29{word-spacing:-2.257200px;}
.ws2d{word-spacing:-2.194500px;}
.ws14{word-spacing:-2.131800px;}
.ws37{word-spacing:-2.069100px;}
.ws1b{word-spacing:-2.006400px;}
.ws3b{word-spacing:-1.943700px;}
.ws53{word-spacing:-1.920000px;}
.ws52{word-spacing:-1.860000px;}
.ws1a{word-spacing:-1.442100px;}
.ws38{word-spacing:-1.191300px;}
.ws30{word-spacing:-1.065900px;}
.ws2f{word-spacing:-0.940500px;}
.ws1c{word-spacing:-0.752400px;}
.ws31{word-spacing:-0.689700px;}
.ws3a{word-spacing:-0.564300px;}
.ws10{word-spacing:-0.501600px;}
.ws34{word-spacing:-0.438900px;}
.ws1f{word-spacing:-0.376200px;}
.ws20{word-spacing:-0.313500px;}
.ws19{word-spacing:-0.250800px;}
.ws5{word-spacing:-0.188100px;}
.ws2b{word-spacing:-0.125400px;}
.ws3{word-spacing:-0.066000px;}
.ws12{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.564300px;}
.ws16{word-spacing:0.689700px;}
.wsc{word-spacing:1.254000px;}
.wsa{word-spacing:1.379400px;}
.ws4f{word-spacing:1.740000px;}
.ws4d{word-spacing:1.818300px;}
.ws40{word-spacing:2.508000px;}
.ws43{word-spacing:3.072300px;}
.ws3e{word-spacing:3.323100px;}
.ws3d{word-spacing:3.573900px;}
.ws7{word-spacing:3.636600px;}
.ws51{word-spacing:4.380000px;}
.ws6{word-spacing:4.890600px;}
.ws3f{word-spacing:4.953300px;}
.ws48{word-spacing:5.141400px;}
.wsd{word-spacing:5.956500px;}
.ws9{word-spacing:6.332700px;}
.wsf{word-spacing:6.646200px;}
.ws46{word-spacing:6.708900px;}
.ws8{word-spacing:7.147800px;}
.ws50{word-spacing:7.320000px;}
.ws47{word-spacing:8.088300px;}
.ws44{word-spacing:8.464500px;}
.ws45{word-spacing:10.533600px;}
.wsb{word-spacing:11.286000px;}
.ws4b{word-spacing:14.734500px;}
.ws49{word-spacing:17.305200px;}
.ws41{word-spacing:20.252100px;}
.ws42{word-spacing:21.255300px;}
.ws4e{word-spacing:24.014100px;}
._3{margin-left:-10.440000px;}
._2{margin-left:-6.942600px;}
._4{margin-left:-4.950000px;}
._6{margin-left:-3.843510px;}
._0{margin-left:-2.610000px;}
._5{margin-left:-1.271130px;}
._1{width:1.722600px;}
._9{width:2.755500px;}
._d{width:4.394010px;}
._e{width:5.802090px;}
._8{width:6.867930px;}
._10{width:8.276400px;}
._f{width:20.001300px;}
._11{width:475.794000px;}
._b{width:504.702000px;}
._a{width:506.880000px;}
._c{width:508.134000px;}
._7{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fs7{font-size:42.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:48.837000px;}
.y1a{bottom:49.389150px;}
.y127{bottom:91.891350px;}
.y126{bottom:104.491350px;}
.y125{bottom:117.091350px;}
.ydb{bottom:127.660500px;}
.y2a{bottom:127.704825px;}
.y93{bottom:136.344600px;}
.y4d{bottom:139.893450px;}
.y71{bottom:139.926150px;}
.y124{bottom:142.291350px;}
.yb7{bottom:146.344725px;}
.yda{bottom:153.160500px;}
.y29{bottom:153.208050px;}
.y123{bottom:154.891350px;}
.y92{bottom:161.844600px;}
.y70{bottom:165.426150px;}
.yb6{bottom:171.847950px;}
.y112{bottom:174.883950px;}
.yd9{bottom:178.660500px;}
.y28{bottom:178.708050px;}
.y4c{bottom:179.331750px;}
.y6f{bottom:190.926150px;}
.y111{bottom:197.397825px;}
.y91{bottom:200.183250px;}
.yd8{bottom:204.160500px;}
.y27{bottom:204.208050px;}
.y4b{bottom:204.831750px;}
.yb5{bottom:212.289450px;}
.y6e{bottom:216.421200px;}
.y110{bottom:219.891450px;}
.y90{bottom:225.683250px;}
.y26{bottom:229.708050px;}
.y4a{bottom:230.331750px;}
.yb4{bottom:237.789450px;}
.yd7{bottom:243.139575px;}
.y8f{bottom:251.183250px;}
.y49{bottom:255.831750px;}
.y6d{bottom:258.210750px;}
.y10f{bottom:260.254575px;}
.y25{bottom:261.036150px;}
.yb3{bottom:263.289450px;}
.yd6{bottom:268.642800px;}
.y8e{bottom:276.683250px;}
.y48{bottom:281.331750px;}
.y10e{bottom:282.748200px;}
.y6c{bottom:283.710750px;}
.yb2{bottom:288.789600px;}
.yd5{bottom:294.142800px;}
.y8d{bottom:302.183250px;}
.y10d{bottom:305.273550px;}
.y6b{bottom:309.210750px;}
.yb1{bottom:314.289600px;}
.y47{bottom:319.023000px;}
.yd4{bottom:319.642800px;}
.y8c{bottom:327.683250px;}
.y6a{bottom:334.710750px;}
.y10c{bottom:342.862200px;}
.y46{bottom:344.523000px;}
.yb0{bottom:352.181700px;}
.y8b{bottom:353.183250px;}
.yd3{bottom:360.080625px;}
.y69{bottom:360.210750px;}
.y10b{bottom:365.355825px;}
.y45{bottom:370.023000px;}
.yaf{bottom:377.681700px;}
.yd2{bottom:385.583850px;}
.y68{bottom:385.714725px;}
.y10a{bottom:387.849450px;}
.y5{bottom:389.142000px;}
.y8a{bottom:393.331200px;}
.y44{bottom:401.351100px;}
.yae{bottom:403.181700px;}
.yd1{bottom:411.083850px;}
.y67{bottom:411.217950px;}
.y89{bottom:418.831200px;}
.y21{bottom:425.222550px;}
.yad{bottom:428.675250px;}
.y109{bottom:429.278475px;}
.yd0{bottom:436.583850px;}
.y88{bottom:444.331200px;}
.y20{bottom:446.224800px;}
.y66{bottom:451.628100px;}
.y108{bottom:451.772100px;}
.yac{bottom:454.178475px;}
.ycf{bottom:462.083850px;}
.y43{bottom:464.880000px;}
.y87{bottom:469.827975px;}
.y4{bottom:473.662800px;}
.y107{bottom:474.265725px;}
.y65{bottom:477.128100px;}
.yab{bottom:479.681700px;}
.y1f{bottom:486.722550px;}
.y42{bottom:490.380000px;}
.y86{bottom:495.331200px;}
.yce{bottom:502.521525px;}
.y64{bottom:502.631925px;}
.yf1{bottom:504.205275px;}
.yaa{bottom:511.009650px;}
.y113{bottom:515.391975px;}
.y41{bottom:515.880000px;}
.y19{bottom:517.914450px;}
.y3{bottom:523.165800px;}
.y85{bottom:526.659300px;}
.ycd{bottom:528.024750px;}
.yf0{bottom:529.708500px;}
.y1e{bottom:530.218425px;}
.y40{bottom:541.380000px;}
.y18{bottom:543.414450px;}
.y63{bottom:543.449625px;}
.y1d{bottom:552.712050px;}
.ycc{bottom:553.524750px;}
.yef{bottom:555.208500px;}
.y106{bottom:555.760050px;}
.y3f{bottom:566.880000px;}
.y17{bottom:568.915425px;}
.y62{bottom:568.952850px;}
.ya9{bottom:570.730500px;}
.y2{bottom:572.668800px;}
.y105{bottom:578.260050px;}
.ycb{bottom:579.024750px;}
.yee{bottom:580.695000px;}
.y84{bottom:590.992200px;}
.y3e{bottom:592.380000px;}
.y1c{bottom:593.209800px;}
.y16{bottom:594.418650px;}
.y61{bottom:594.452850px;}
.ya8{bottom:596.230500px;}
.y104{bottom:600.759900px;}
.yca{bottom:604.524750px;}
.yed{bottom:606.198225px;}
.y83{bottom:616.492200px;}
.y3d{bottom:617.880000px;}
.y60{bottom:619.952850px;}
.ya7{bottom:621.730500px;}
.y1{bottom:622.171800px;}
.yec{bottom:631.701450px;}
.y1b{bottom:633.703650px;}
.y103{bottom:638.348550px;}
.y15{bottom:640.769625px;}
.yc9{bottom:641.031900px;}
.y82{bottom:641.989350px;}
.y5f{bottom:645.452850px;}
.ya6{bottom:647.223225px;}
.y3c{bottom:655.746300px;}
.yeb{bottom:657.204675px;}
.y102{bottom:660.864150px;}
.y22{bottom:662.639400px;}
.y14{bottom:666.272850px;}
.yc8{bottom:666.531900px;}
.y5e{bottom:670.952850px;}
.ya5{bottom:672.726450px;}
.y3b{bottom:681.246300px;}
.y81{bottom:682.995150px;}
.y101{bottom:683.357775px;}
.y13{bottom:691.745550px;}
.yc7{bottom:692.031900px;}
.y5d{bottom:696.452850px;}
.yea{bottom:697.646175px;}
.ya4{bottom:698.229675px;}
.y3a{bottom:706.746300px;}
.y80{bottom:708.495150px;}
.y12{bottom:717.248775px;}
.yc6{bottom:717.531900px;}
.y5c{bottom:721.952850px;}
.y100{bottom:722.513925px;}
.ye9{bottom:723.149400px;}
.ya3{bottom:723.732900px;}
.y39{bottom:732.239475px;}
.y6{bottom:732.303000px;}
.y7f{bottom:733.991925px;}
.yc5{bottom:743.031900px;}
.yff{bottom:745.007550px;}
.y5b{bottom:747.452850px;}
.ye8{bottom:748.649400px;}
.y7e{bottom:759.495150px;}
.ya2{bottom:760.569150px;}
.y11{bottom:763.599750px;}
.yc4{bottom:768.531900px;}
.y122{bottom:770.073900px;}
.y5a{bottom:772.941600px;}
.y38{bottom:773.746875px;}
.ye7{bottom:774.149400px;}
.y7d{bottom:784.995150px;}
.yfe{bottom:785.041500px;}
.ya1{bottom:786.069000px;}
.y121{bottom:788.073900px;}
.y10{bottom:789.102975px;}
.y37{bottom:799.250100px;}
.ye6{bottom:799.649400px;}
.yc3{bottom:799.860150px;}
.y120{bottom:806.073900px;}
.yfd{bottom:807.541500px;}
.y7c{bottom:810.491925px;}
.ya0{bottom:811.569000px;}
.y59{bottom:813.053925px;}
.yf{bottom:814.606200px;}
.y11f{bottom:824.073900px;}
.y36{bottom:824.750100px;}
.yfc{bottom:830.046750px;}
.y7b{bottom:835.995150px;}
.y9f{bottom:837.069000px;}
.ye5{bottom:837.538275px;}
.y58{bottom:838.557150px;}
.ye{bottom:840.109425px;}
.y35{bottom:850.250100px;}
.y7a{bottom:861.495150px;}
.y9e{bottom:862.569000px;}
.ye4{bottom:863.041500px;}
.yc2{bottom:863.571600px;}
.y57{bottom:864.057150px;}
.yd{bottom:865.612650px;}
.yfb{bottom:870.080700px;}
.y34{bottom:875.750100px;}
.y9d{bottom:888.069000px;}
.ye3{bottom:888.541500px;}
.yc1{bottom:889.071600px;}
.y56{bottom:889.557150px;}
.yfa{bottom:892.580700px;}
.y79{bottom:892.823400px;}
.y11e{bottom:904.053900px;}
.yc{bottom:911.540400px;}
.y9c{bottom:913.566750px;}
.ye2{bottom:914.041500px;}
.yc0{bottom:914.568375px;}
.yf9{bottom:915.087825px;}
.y33{bottom:915.116250px;}
.y11d{bottom:922.053900px;}
.y55{bottom:930.009900px;}
.y119{bottom:935.986200px;}
.yb{bottom:937.033950px;}
.ye1{bottom:939.541500px;}
.y11c{bottom:940.053900px;}
.ybf{bottom:940.071600px;}
.y32{bottom:940.616250px;}
.y9b{bottom:952.503450px;}
.y78{bottom:954.907500px;}
.y54{bottom:955.509900px;}
.y11b{bottom:958.053900px;}
.y118{bottom:958.488675px;}
.yf8{bottom:960.937200px;}
.ya{bottom:962.537175px;}
.ye0{bottom:965.040900px;}
.ybe{bottom:965.571600px;}
.y31{bottom:966.116250px;}
.y11a{bottom:976.053900px;}
.y9a{bottom:978.006675px;}
.y77{bottom:980.407500px;}
.y117{bottom:980.982300px;}
.y53{bottom:981.009900px;}
.yf7{bottom:983.462400px;}
.y9{bottom:988.040400px;}
.y30{bottom:991.616250px;}
.y99{bottom:1003.509900px;}
.ydf{bottom:1005.482400px;}
.y76{bottom:1005.907500px;}
.ybd{bottom:1006.050675px;}
.y52{bottom:1006.509900px;}
.y8{bottom:1013.540400px;}
.y116{bottom:1020.138450px;}
.yf6{bottom:1021.051050px;}
.y98{bottom:1029.009900px;}
.y2f{bottom:1030.979175px;}
.yde{bottom:1030.982400px;}
.y75{bottom:1031.404275px;}
.ybc{bottom:1031.553900px;}
.y51{bottom:1032.009900px;}
.y115{bottom:1042.632075px;}
.yf5{bottom:1043.544675px;}
.y97{bottom:1054.509900px;}
.y2e{bottom:1056.482400px;}
.y74{bottom:1056.907500px;}
.ybb{bottom:1057.046325px;}
.y50{bottom:1057.509900px;}
.y7{bottom:1061.354550px;}
.yf4{bottom:1066.038300px;}
.y114{bottom:1081.114200px;}
.y2d{bottom:1081.982400px;}
.y73{bottom:1082.407500px;}
.yba{bottom:1082.549550px;}
.y96{bottom:1093.485750px;}
.y4f{bottom:1097.611125px;}
.yf3{bottom:1103.626950px;}
.ydd{bottom:1107.482400px;}
.y2c{bottom:1107.483150px;}
.y72{bottom:1107.907500px;}
.y95{bottom:1118.988975px;}
.y4e{bottom:1123.114350px;}
.yb9{bottom:1123.116450px;}
.yf2{bottom:1126.120575px;}
.y94{bottom:1144.492200px;}
.ydc{bottom:1148.614200px;}
.y2b{bottom:1148.614350px;}
.yb8{bottom:1148.616450px;}
.y23{bottom:1196.768550px;}
.h19{height:33.550781px;}
.h1a{height:34.719727px;}
.hc{height:45.325500px;}
.h18{height:47.929688px;}
.hd{height:49.434000px;}
.h17{height:49.599609px;}
.h7{height:50.086523px;}
.hf{height:50.943750px;}
.h15{height:51.770361px;}
.h9{height:51.827692px;}
.h5{height:51.831592px;}
.h16{height:51.832192px;}
.h13{height:51.833992px;}
.h11{height:51.844492px;}
.h10{height:51.851392px;}
.h6{height:51.857392px;}
.h12{height:51.861892px;}
.h8{height:51.940792px;}
.h14{height:52.290820px;}
.he{height:52.921080px;}
.hb{height:53.625000px;}
.ha{height:55.704000px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:146.862327px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:34.015800px;}
.xd{left:43.534575px;}
.x6{left:54.756450px;}
.x1{left:65.818200px;}
.xf{left:68.161050px;}
.xc{left:76.360200px;}
.xb{left:77.928450px;}
.xe{left:80.972700px;}
.x3{left:86.567700px;}
.xa{left:92.565450px;}
.x9{left:99.735300px;}
.x2{left:105.403200px;}
.x14{left:162.588450px;}
.x11{left:170.078700px;}
.x13{left:198.693450px;}
.x15{left:209.565300px;}
.x7{left:219.188850px;}
.x4{left:225.593700px;}
.x10{left:575.217150px;}
.x5{left:704.412450px;}
.x12{left:829.400550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.029867pt;}
.ls2{letter-spacing:0.055733pt;}
.ls4{letter-spacing:0.111467pt;}
.ls5{letter-spacing:0.167200pt;}
.ls6{letter-spacing:0.222933pt;}
.ls7{letter-spacing:0.278667pt;}
.ls3{letter-spacing:0.334400pt;}
.ls8{letter-spacing:0.613067pt;}
.ws4{word-spacing:-15.326667pt;}
.ws4c{word-spacing:-14.490667pt;}
.ws2{word-spacing:-14.213333pt;}
.ws3c{word-spacing:-14.100533pt;}
.ws1{word-spacing:-13.877600pt;}
.ws32{word-spacing:-13.264533pt;}
.ws26{word-spacing:-13.097333pt;}
.ws4a{word-spacing:-5.907733pt;}
.ws11{word-spacing:-4.180000pt;}
.ws2c{word-spacing:-4.124267pt;}
.ws2a{word-spacing:-3.789867pt;}
.ws33{word-spacing:-3.566933pt;}
.ws2e{word-spacing:-3.511200pt;}
.ws28{word-spacing:-3.455467pt;}
.ws1e{word-spacing:-3.399733pt;}
.ws27{word-spacing:-3.176800pt;}
.ws24{word-spacing:-3.065333pt;}
.ws23{word-spacing:-3.009600pt;}
.ws21{word-spacing:-2.953867pt;}
.ws22{word-spacing:-2.842400pt;}
.ws25{word-spacing:-2.786667pt;}
.ws36{word-spacing:-2.675200pt;}
.ws35{word-spacing:-2.619467pt;}
.ws39{word-spacing:-2.563733pt;}
.ws13{word-spacing:-2.452267pt;}
.ws17{word-spacing:-2.340800pt;}
.ws1d{word-spacing:-2.229333pt;}
.ws18{word-spacing:-2.173600pt;}
.ws15{word-spacing:-2.062133pt;}
.ws29{word-spacing:-2.006400pt;}
.ws2d{word-spacing:-1.950667pt;}
.ws14{word-spacing:-1.894933pt;}
.ws37{word-spacing:-1.839200pt;}
.ws1b{word-spacing:-1.783467pt;}
.ws3b{word-spacing:-1.727733pt;}
.ws53{word-spacing:-1.706667pt;}
.ws52{word-spacing:-1.653333pt;}
.ws1a{word-spacing:-1.281867pt;}
.ws38{word-spacing:-1.058933pt;}
.ws30{word-spacing:-0.947467pt;}
.ws2f{word-spacing:-0.836000pt;}
.ws1c{word-spacing:-0.668800pt;}
.ws31{word-spacing:-0.613067pt;}
.ws3a{word-spacing:-0.501600pt;}
.ws10{word-spacing:-0.445867pt;}
.ws34{word-spacing:-0.390133pt;}
.ws1f{word-spacing:-0.334400pt;}
.ws20{word-spacing:-0.278667pt;}
.ws19{word-spacing:-0.222933pt;}
.ws5{word-spacing:-0.167200pt;}
.ws2b{word-spacing:-0.111467pt;}
.ws3{word-spacing:-0.058667pt;}
.ws12{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.501600pt;}
.ws16{word-spacing:0.613067pt;}
.wsc{word-spacing:1.114667pt;}
.wsa{word-spacing:1.226133pt;}
.ws4f{word-spacing:1.546667pt;}
.ws4d{word-spacing:1.616267pt;}
.ws40{word-spacing:2.229333pt;}
.ws43{word-spacing:2.730933pt;}
.ws3e{word-spacing:2.953867pt;}
.ws3d{word-spacing:3.176800pt;}
.ws7{word-spacing:3.232533pt;}
.ws51{word-spacing:3.893333pt;}
.ws6{word-spacing:4.347200pt;}
.ws3f{word-spacing:4.402933pt;}
.ws48{word-spacing:4.570133pt;}
.wsd{word-spacing:5.294667pt;}
.ws9{word-spacing:5.629067pt;}
.wsf{word-spacing:5.907733pt;}
.ws46{word-spacing:5.963467pt;}
.ws8{word-spacing:6.353600pt;}
.ws50{word-spacing:6.506667pt;}
.ws47{word-spacing:7.189600pt;}
.ws44{word-spacing:7.524000pt;}
.ws45{word-spacing:9.363200pt;}
.wsb{word-spacing:10.032000pt;}
.ws4b{word-spacing:13.097333pt;}
.ws49{word-spacing:15.382400pt;}
.ws41{word-spacing:18.001867pt;}
.ws42{word-spacing:18.893600pt;}
.ws4e{word-spacing:21.345867pt;}
._3{margin-left:-9.280000pt;}
._2{margin-left:-6.171200pt;}
._4{margin-left:-4.400000pt;}
._6{margin-left:-3.416453pt;}
._0{margin-left:-2.320000pt;}
._5{margin-left:-1.129893pt;}
._1{width:1.531200pt;}
._9{width:2.449333pt;}
._d{width:3.905787pt;}
._e{width:5.157413pt;}
._8{width:6.104827pt;}
._10{width:7.356800pt;}
._f{width:17.778933pt;}
._11{width:422.928000pt;}
._b{width:448.624000pt;}
._a{width:450.560000pt;}
._c{width:451.674667pt;}
._7{width:462.352000pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:43.410667pt;}
.y1a{bottom:43.901467pt;}
.y127{bottom:81.681200pt;}
.y126{bottom:92.881200pt;}
.y125{bottom:104.081200pt;}
.ydb{bottom:113.476000pt;}
.y2a{bottom:113.515400pt;}
.y93{bottom:121.195200pt;}
.y4d{bottom:124.349733pt;}
.y71{bottom:124.378800pt;}
.y124{bottom:126.481200pt;}
.yb7{bottom:130.084200pt;}
.yda{bottom:136.142667pt;}
.y29{bottom:136.184933pt;}
.y123{bottom:137.681200pt;}
.y92{bottom:143.861867pt;}
.y70{bottom:147.045467pt;}
.yb6{bottom:152.753733pt;}
.y112{bottom:155.452400pt;}
.yd9{bottom:158.809333pt;}
.y28{bottom:158.851600pt;}
.y4c{bottom:159.406000pt;}
.y6f{bottom:169.712133pt;}
.y111{bottom:175.464733pt;}
.y91{bottom:177.940667pt;}
.yd8{bottom:181.476000pt;}
.y27{bottom:181.518267pt;}
.y4b{bottom:182.072667pt;}
.yb5{bottom:188.701733pt;}
.y6e{bottom:192.374400pt;}
.y110{bottom:195.459067pt;}
.y90{bottom:200.607333pt;}
.y26{bottom:204.184933pt;}
.y4a{bottom:204.739333pt;}
.yb4{bottom:211.368400pt;}
.yd7{bottom:216.124067pt;}
.y8f{bottom:223.274000pt;}
.y49{bottom:227.406000pt;}
.y6d{bottom:229.520667pt;}
.y10f{bottom:231.337400pt;}
.y25{bottom:232.032133pt;}
.yb3{bottom:234.035067pt;}
.yd6{bottom:238.793600pt;}
.y8e{bottom:245.940667pt;}
.y48{bottom:250.072667pt;}
.y10e{bottom:251.331733pt;}
.y6c{bottom:252.187333pt;}
.yb2{bottom:256.701867pt;}
.yd5{bottom:261.460267pt;}
.y8d{bottom:268.607333pt;}
.y10d{bottom:271.354267pt;}
.y6b{bottom:274.854000pt;}
.yb1{bottom:279.368533pt;}
.y47{bottom:283.576000pt;}
.yd4{bottom:284.126933pt;}
.y8c{bottom:291.274000pt;}
.y6a{bottom:297.520667pt;}
.y10c{bottom:304.766400pt;}
.y46{bottom:306.242667pt;}
.yb0{bottom:313.050400pt;}
.y8b{bottom:313.940667pt;}
.yd3{bottom:320.071667pt;}
.y69{bottom:320.187333pt;}
.y10b{bottom:324.760733pt;}
.y45{bottom:328.909333pt;}
.yaf{bottom:335.717067pt;}
.yd2{bottom:342.741200pt;}
.y68{bottom:342.857533pt;}
.y10a{bottom:344.755067pt;}
.y5{bottom:345.904000pt;}
.y8a{bottom:349.627733pt;}
.y44{bottom:356.756533pt;}
.yae{bottom:358.383733pt;}
.yd1{bottom:365.407867pt;}
.y67{bottom:365.527067pt;}
.y89{bottom:372.294400pt;}
.y21{bottom:377.975600pt;}
.yad{bottom:381.044667pt;}
.y109{bottom:381.580867pt;}
.yd0{bottom:388.074533pt;}
.y88{bottom:394.961067pt;}
.y20{bottom:396.644267pt;}
.y66{bottom:401.447200pt;}
.y108{bottom:401.575200pt;}
.yac{bottom:403.714200pt;}
.ycf{bottom:410.741200pt;}
.y43{bottom:413.226667pt;}
.y87{bottom:417.624867pt;}
.y4{bottom:421.033600pt;}
.y107{bottom:421.569533pt;}
.y65{bottom:424.113867pt;}
.yab{bottom:426.383733pt;}
.y1f{bottom:432.642267pt;}
.y42{bottom:435.893333pt;}
.y86{bottom:440.294400pt;}
.yce{bottom:446.685800pt;}
.y64{bottom:446.783933pt;}
.yf1{bottom:448.182467pt;}
.yaa{bottom:454.230800pt;}
.y113{bottom:458.126200pt;}
.y41{bottom:458.560000pt;}
.y19{bottom:460.368400pt;}
.y3{bottom:465.036267pt;}
.y85{bottom:468.141600pt;}
.ycd{bottom:469.355333pt;}
.yf0{bottom:470.852000pt;}
.y1e{bottom:471.305267pt;}
.y40{bottom:481.226667pt;}
.y18{bottom:483.035067pt;}
.y63{bottom:483.066333pt;}
.y1d{bottom:491.299600pt;}
.ycc{bottom:492.022000pt;}
.yef{bottom:493.518667pt;}
.y106{bottom:494.008933pt;}
.y3f{bottom:503.893333pt;}
.y17{bottom:505.702600pt;}
.y62{bottom:505.735867pt;}
.ya9{bottom:507.316000pt;}
.y2{bottom:509.038933pt;}
.y105{bottom:514.008933pt;}
.ycb{bottom:514.688667pt;}
.yee{bottom:516.173333pt;}
.y84{bottom:525.326400pt;}
.y3e{bottom:526.560000pt;}
.y1c{bottom:527.297600pt;}
.y16{bottom:528.372133pt;}
.y61{bottom:528.402533pt;}
.ya8{bottom:529.982667pt;}
.y104{bottom:534.008800pt;}
.yca{bottom:537.355333pt;}
.yed{bottom:538.842867pt;}
.y83{bottom:547.993067pt;}
.y3d{bottom:549.226667pt;}
.y60{bottom:551.069200pt;}
.ya7{bottom:552.649333pt;}
.y1{bottom:553.041600pt;}
.yec{bottom:561.512400pt;}
.y1b{bottom:563.292133pt;}
.y103{bottom:567.420933pt;}
.y15{bottom:569.573000pt;}
.yc9{bottom:569.806133pt;}
.y82{bottom:570.657200pt;}
.y5f{bottom:573.735867pt;}
.ya6{bottom:575.309533pt;}
.y3c{bottom:582.885600pt;}
.yeb{bottom:584.181933pt;}
.y102{bottom:587.434800pt;}
.y22{bottom:589.012800pt;}
.y14{bottom:592.242533pt;}
.yc8{bottom:592.472800pt;}
.y5e{bottom:596.402533pt;}
.ya5{bottom:597.979067pt;}
.y3b{bottom:605.552267pt;}
.y81{bottom:607.106800pt;}
.y101{bottom:607.429133pt;}
.y13{bottom:614.884933pt;}
.yc7{bottom:615.139467pt;}
.y5d{bottom:619.069200pt;}
.yea{bottom:620.129933pt;}
.ya4{bottom:620.648600pt;}
.y3a{bottom:628.218933pt;}
.y80{bottom:629.773467pt;}
.y12{bottom:637.554467pt;}
.yc6{bottom:637.806133pt;}
.y5c{bottom:641.735867pt;}
.y100{bottom:642.234600pt;}
.ye9{bottom:642.799467pt;}
.ya3{bottom:643.318133pt;}
.y39{bottom:650.879533pt;}
.y6{bottom:650.936000pt;}
.y7f{bottom:652.437267pt;}
.yc5{bottom:660.472800pt;}
.yff{bottom:662.228933pt;}
.y5b{bottom:664.402533pt;}
.ye8{bottom:665.466133pt;}
.y7e{bottom:675.106800pt;}
.ya2{bottom:676.061467pt;}
.y11{bottom:678.755333pt;}
.yc4{bottom:683.139467pt;}
.y122{bottom:684.510133pt;}
.y5a{bottom:687.059200pt;}
.y38{bottom:687.775000pt;}
.ye7{bottom:688.132800pt;}
.y7d{bottom:697.773467pt;}
.yfe{bottom:697.814667pt;}
.ya1{bottom:698.728000pt;}
.y121{bottom:700.510133pt;}
.y10{bottom:701.424867pt;}
.y37{bottom:710.444533pt;}
.ye6{bottom:710.799467pt;}
.yc3{bottom:710.986800pt;}
.y120{bottom:716.510133pt;}
.yfd{bottom:717.814667pt;}
.y7c{bottom:720.437267pt;}
.ya0{bottom:721.394667pt;}
.y59{bottom:722.714600pt;}
.yf{bottom:724.094400pt;}
.y11f{bottom:732.510133pt;}
.y36{bottom:733.111200pt;}
.yfc{bottom:737.819333pt;}
.y7b{bottom:743.106800pt;}
.y9f{bottom:744.061333pt;}
.ye5{bottom:744.478467pt;}
.y58{bottom:745.384133pt;}
.ye{bottom:746.763933pt;}
.y35{bottom:755.777867pt;}
.y7a{bottom:765.773467pt;}
.y9e{bottom:766.728000pt;}
.ye4{bottom:767.148000pt;}
.yc2{bottom:767.619200pt;}
.y57{bottom:768.050800pt;}
.yd{bottom:769.433467pt;}
.yfb{bottom:773.405067pt;}
.y34{bottom:778.444533pt;}
.y9d{bottom:789.394667pt;}
.ye3{bottom:789.814667pt;}
.yc1{bottom:790.285867pt;}
.y56{bottom:790.717467pt;}
.yfa{bottom:793.405067pt;}
.y79{bottom:793.620800pt;}
.y11e{bottom:803.603467pt;}
.yc{bottom:810.258133pt;}
.y9c{bottom:812.059333pt;}
.ye2{bottom:812.481333pt;}
.yc0{bottom:812.949667pt;}
.yf9{bottom:813.411400pt;}
.y33{bottom:813.436667pt;}
.y11d{bottom:819.603467pt;}
.y55{bottom:826.675467pt;}
.y119{bottom:831.987733pt;}
.yb{bottom:832.919067pt;}
.ye1{bottom:835.148000pt;}
.y11c{bottom:835.603467pt;}
.ybf{bottom:835.619200pt;}
.y32{bottom:836.103333pt;}
.y9b{bottom:846.669733pt;}
.y78{bottom:848.806667pt;}
.y54{bottom:849.342133pt;}
.y11b{bottom:851.603467pt;}
.y118{bottom:851.989933pt;}
.yf8{bottom:854.166400pt;}
.ya{bottom:855.588600pt;}
.ye0{bottom:857.814133pt;}
.ybe{bottom:858.285867pt;}
.y31{bottom:858.770000pt;}
.y11a{bottom:867.603467pt;}
.y9a{bottom:869.339267pt;}
.y77{bottom:871.473333pt;}
.y117{bottom:871.984267pt;}
.y53{bottom:872.008800pt;}
.yf7{bottom:874.188800pt;}
.y9{bottom:878.258133pt;}
.y30{bottom:881.436667pt;}
.y99{bottom:892.008800pt;}
.ydf{bottom:893.762133pt;}
.y76{bottom:894.140000pt;}
.ybd{bottom:894.267267pt;}
.y52{bottom:894.675467pt;}
.y8{bottom:900.924800pt;}
.y116{bottom:906.789733pt;}
.yf6{bottom:907.600933pt;}
.y98{bottom:914.675467pt;}
.y2f{bottom:916.425933pt;}
.yde{bottom:916.428800pt;}
.y75{bottom:916.803800pt;}
.ybc{bottom:916.936800pt;}
.y51{bottom:917.342133pt;}
.y115{bottom:926.784067pt;}
.yf5{bottom:927.595267pt;}
.y97{bottom:937.342133pt;}
.y2e{bottom:939.095467pt;}
.y74{bottom:939.473333pt;}
.ybb{bottom:939.596733pt;}
.y50{bottom:940.008800pt;}
.y7{bottom:943.426267pt;}
.yf4{bottom:947.589600pt;}
.y114{bottom:960.990400pt;}
.y2d{bottom:961.762133pt;}
.y73{bottom:962.140000pt;}
.yba{bottom:962.266267pt;}
.y96{bottom:971.987333pt;}
.y4f{bottom:975.654333pt;}
.yf3{bottom:981.001733pt;}
.ydd{bottom:984.428800pt;}
.y2c{bottom:984.429467pt;}
.y72{bottom:984.806667pt;}
.y95{bottom:994.656867pt;}
.y4e{bottom:998.323867pt;}
.yb9{bottom:998.325733pt;}
.yf2{bottom:1000.996067pt;}
.y94{bottom:1017.326400pt;}
.ydc{bottom:1020.990400pt;}
.y2b{bottom:1020.990533pt;}
.yb8{bottom:1020.992400pt;}
.y23{bottom:1063.794267pt;}
.h19{height:29.822917pt;}
.h1a{height:30.861979pt;}
.hc{height:40.289333pt;}
.h18{height:42.604167pt;}
.hd{height:43.941333pt;}
.h17{height:44.088542pt;}
.h7{height:44.521354pt;}
.hf{height:45.283333pt;}
.h15{height:46.018099pt;}
.h9{height:46.069059pt;}
.h5{height:46.072526pt;}
.h16{height:46.073059pt;}
.h13{height:46.074659pt;}
.h11{height:46.083993pt;}
.h10{height:46.090126pt;}
.h6{height:46.095459pt;}
.h12{height:46.099459pt;}
.h8{height:46.169593pt;}
.h14{height:46.480729pt;}
.he{height:47.040960pt;}
.hb{height:47.666667pt;}
.ha{height:49.514667pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:130.544291pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:30.236267pt;}
.xd{left:38.697400pt;}
.x6{left:48.672400pt;}
.x1{left:58.505067pt;}
.xf{left:60.587600pt;}
.xc{left:67.875733pt;}
.xb{left:69.269733pt;}
.xe{left:71.975733pt;}
.x3{left:76.949067pt;}
.xa{left:82.280400pt;}
.x9{left:88.653600pt;}
.x2{left:93.691733pt;}
.x14{left:144.523067pt;}
.x11{left:151.181067pt;}
.x13{left:176.616400pt;}
.x15{left:186.280267pt;}
.x7{left:194.834533pt;}
.x4{left:200.527733pt;}
.x10{left:511.304133pt;}
.x5{left:626.144400pt;}
.x12{left:737.244933pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  