
    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_b9090fb42c056a877f2de250.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_1089d5214a8805d0175a661b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969036;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_31c675299f0abef1e3d822ab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966789;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_d66acc134059c8f07232c61c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.038574;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_d16dcf2de781ea9206369547.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_220595211dfac74de6c8e20a.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_558d4040560482a7c56f3425.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_25e2187c938dd48b6fefc866.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_25b796474e26b41bb167ebe8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.038574;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_2e250fab242b9567fd3ef797.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_27120641b2a0c75209699dd2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;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:ffc;src:url('chunks/assets/font_3b4df626d9226bc8d3c314f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710938;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:ffd;src:url('chunks/assets/font_82106f5c681a15eadce00027.woff2')format("woff");}.ffd{font-family:ffd;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;}
.mb{transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245172,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245268,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245304,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246672,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246981,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246995,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247266,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248201,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m2f{transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248414,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248435,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248557,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248761,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248935,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249419,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249864,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,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);}
.m4a{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250419,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250478,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250519,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250615,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250773,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250828,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251077,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251108,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251366,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251493,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251586,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251852,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251916,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252215,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252261,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252388,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252687,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252902,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253213,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253266,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253289,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254019,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;}
.ls2{letter-spacing:0.062700px;}
.ls4{letter-spacing:0.125400px;}
.ls3{letter-spacing:0.188100px;}
.ls1{letter-spacing:0.250800px;}
.ls7{letter-spacing:0.877800px;}
.ls6{letter-spacing:0.940500px;}
.ls5{letter-spacing:1.191300px;}
.ls8{letter-spacing:1.254000px;}
.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;}
}
.ws2{word-spacing:-17.242500px;}
.ws67{word-spacing:-16.866300px;}
.ws43{word-spacing:-16.803600px;}
.ws44{word-spacing:-16.552800px;}
.ws45{word-spacing:-16.490100px;}
.ws65{word-spacing:-15.863100px;}
.ws68{word-spacing:-15.800400px;}
.ws66{word-spacing:-15.737700px;}
.ws1e{word-spacing:-14.671800px;}
.ws62{word-spacing:-10.157400px;}
.ws61{word-spacing:-6.583500px;}
.ws71{word-spacing:-5.768400px;}
.ws63{word-spacing:-5.643000px;}
.ws15{word-spacing:-4.702500px;}
.ws3e{word-spacing:-4.639800px;}
.ws27{word-spacing:-4.577100px;}
.ws23{word-spacing:-4.451700px;}
.ws37{word-spacing:-4.389000px;}
.ws30{word-spacing:-4.326300px;}
.ws31{word-spacing:-4.138200px;}
.ws26{word-spacing:-4.012800px;}
.ws20{word-spacing:-3.887400px;}
.ws48{word-spacing:-3.762000px;}
.ws2e{word-spacing:-3.699300px;}
.ws35{word-spacing:-3.636600px;}
.ws25{word-spacing:-3.573900px;}
.ws2a{word-spacing:-3.511200px;}
.ws14{word-spacing:-3.448500px;}
.ws36{word-spacing:-3.385800px;}
.ws38{word-spacing:-3.323100px;}
.ws2f{word-spacing:-3.260400px;}
.ws22{word-spacing:-3.197700px;}
.ws13{word-spacing:-3.072300px;}
.ws8{word-spacing:-3.009600px;}
.ws32{word-spacing:-2.821500px;}
.ws42{word-spacing:-2.633400px;}
.ws1d{word-spacing:-2.382600px;}
.ws1a{word-spacing:-2.319900px;}
.ws29{word-spacing:-2.257200px;}
.ws17{word-spacing:-2.131800px;}
.ws4e{word-spacing:-2.069100px;}
.ws24{word-spacing:-2.006400px;}
.ws2d{word-spacing:-1.943700px;}
.ws84{word-spacing:-1.920000px;}
.ws83{word-spacing:-1.860000px;}
.ws28{word-spacing:-1.755600px;}
.ws40{word-spacing:-1.692900px;}
.ws19{word-spacing:-1.630200px;}
.ws2b{word-spacing:-1.567500px;}
.ws3d{word-spacing:-1.504800px;}
.ws1b{word-spacing:-1.442100px;}
.ws16{word-spacing:-1.379400px;}
.ws33{word-spacing:-1.316700px;}
.ws1c{word-spacing:-1.254000px;}
.ws3a{word-spacing:-1.191300px;}
.ws3c{word-spacing:-1.128600px;}
.wsc{word-spacing:-1.065900px;}
.ws39{word-spacing:-0.940500px;}
.ws2c{word-spacing:-0.877800px;}
.ws87{word-spacing:-0.840000px;}
.ws18{word-spacing:-0.815100px;}
.ws41{word-spacing:-0.752400px;}
.ws12{word-spacing:-0.689700px;}
.ws34{word-spacing:-0.627000px;}
.ws5d{word-spacing:-0.564300px;}
.ws21{word-spacing:-0.501600px;}
.ws3f{word-spacing:-0.438900px;}
.ws3b{word-spacing:-0.376200px;}
.ws6d{word-spacing:-0.250800px;}
.ws11{word-spacing:-0.188100px;}
.ws1f{word-spacing:-0.125400px;}
.ws1{word-spacing:-0.066000px;}
.ws10{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.062700px;}
.ws4d{word-spacing:0.250800px;}
.ws7d{word-spacing:0.564300px;}
.ws56{word-spacing:0.815100px;}
.ws54{word-spacing:1.128600px;}
.ws3{word-spacing:1.191300px;}
.ws53{word-spacing:1.254000px;}
.ws77{word-spacing:1.379400px;}
.ws80{word-spacing:1.740000px;}
.ws4{word-spacing:1.755600px;}
.ws85{word-spacing:1.860000px;}
.wsa{word-spacing:1.881000px;}
.ws86{word-spacing:1.932000px;}
.ws5{word-spacing:2.006400px;}
.ws7{word-spacing:2.131800px;}
.wse{word-spacing:2.194500px;}
.ws5b{word-spacing:2.382600px;}
.ws51{word-spacing:3.323100px;}
.ws6e{word-spacing:3.762000px;}
.ws5c{word-spacing:4.326300px;}
.ws82{word-spacing:4.380000px;}
.ws50{word-spacing:4.827900px;}
.ws70{word-spacing:4.890600px;}
.ws57{word-spacing:5.016000px;}
.ws7c{word-spacing:5.329500px;}
.ws9{word-spacing:5.454900px;}
.wsb{word-spacing:5.768400px;}
.ws6c{word-spacing:6.081900px;}
.ws75{word-spacing:6.207300px;}
.ws58{word-spacing:6.646200px;}
.ws60{word-spacing:7.022400px;}
.ws81{word-spacing:7.320000px;}
.ws6{word-spacing:7.524000px;}
.ws4f{word-spacing:7.649400px;}
.ws5f{word-spacing:8.527200px;}
.ws78{word-spacing:8.652600px;}
.ws69{word-spacing:9.028800px;}
.ws46{word-spacing:9.154200px;}
.ws7a{word-spacing:9.216900px;}
.ws6f{word-spacing:9.718500px;}
.wsf{word-spacing:10.282800px;}
.ws59{word-spacing:10.721700px;}
.ws7e{word-spacing:11.348700px;}
.ws49{word-spacing:11.724900px;}
.ws76{word-spacing:11.850300px;}
.ws73{word-spacing:12.163800px;}
.ws6b{word-spacing:12.226500px;}
.ws47{word-spacing:13.480500px;}
.ws74{word-spacing:13.605900px;}
.ws5a{word-spacing:13.794000px;}
.ws7b{word-spacing:14.295600px;}
.ws52{word-spacing:14.797200px;}
.ws5e{word-spacing:15.424200px;}
.ws79{word-spacing:20.753700px;}
.ws4b{word-spacing:21.756900px;}
.ws55{word-spacing:23.951400px;}
.ws6a{word-spacing:24.390300px;}
.ws4c{word-spacing:26.271300px;}
.ws72{word-spacing:27.525300px;}
.ws7f{word-spacing:29.218200px;}
.ws64{word-spacing:29.970600px;}
.ws4a{word-spacing:51.852900px;}
._3{margin-left:-7.218000px;}
._4{margin-left:-5.304600px;}
._0{margin-left:-3.600000px;}
._1{margin-left:-1.800000px;}
._2{width:1.782000px;}
._7{width:3.110100px;}
._f{width:4.263600px;}
._6{width:6.076800px;}
._b{width:9.028800px;}
._c{width:11.536800px;}
._11{width:13.455420px;}
._d{width:21.506100px;}
._e{width:61.546320px;}
._10{width:475.794000px;}
._12{width:496.056000px;}
._9{width:504.702000px;}
._8{width:506.880000px;}
._a{width:508.134000px;}
._5{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:180.000000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:46.959150px;}
.yc{bottom:47.337000px;}
.y152{bottom:91.891350px;}
.y151{bottom:104.491350px;}
.y150{bottom:117.091350px;}
.yf9{bottom:127.795950px;}
.ycc{bottom:128.389950px;}
.y83{bottom:129.529650px;}
.y39{bottom:129.821250px;}
.y13d{bottom:131.815050px;}
.y14f{bottom:142.291350px;}
.y5e{bottom:150.021750px;}
.yf8{bottom:151.794375px;}
.y38{bottom:153.821250px;}
.ycb{bottom:153.889950px;}
.y14e{bottom:154.891350px;}
.y82{bottom:155.029650px;}
.y13c{bottom:155.819175px;}
.ya7{bottom:164.525700px;}
.y5d{bottom:175.521750px;}
.yf7{bottom:175.792800px;}
.y37{bottom:179.318025px;}
.yca{bottom:179.389950px;}
.y13b{bottom:179.817600px;}
.y81{bottom:180.529650px;}
.ya6{bottom:190.025700px;}
.y11a{bottom:190.677825px;}
.yf6{bottom:199.791225px;}
.y5c{bottom:201.021750px;}
.y13a{bottom:202.311225px;}
.y36{bottom:204.821250px;}
.yc9{bottom:204.889950px;}
.y80{bottom:206.029650px;}
.ya5{bottom:215.525700px;}
.yf5{bottom:223.789650px;}
.y118{bottom:224.363400px;}
.y5b{bottom:226.518525px;}
.y35{bottom:230.321250px;}
.yc8{bottom:230.389950px;}
.y7f{bottom:231.520275px;}
.y139{bottom:236.639475px;}
.ya4{bottom:241.025700px;}
.y117{bottom:249.853200px;}
.y5a{bottom:252.021750px;}
.yc7{bottom:255.889950px;}
.y7e{bottom:257.023500px;}
.yf4{bottom:257.475225px;}
.y138{bottom:260.637900px;}
.y34{bottom:271.627050px;}
.y116{bottom:275.356425px;}
.y59{bottom:277.521750px;}
.yf3{bottom:282.978450px;}
.y137{bottom:284.649225px;}
.ya3{bottom:291.139950px;}
.y33{bottom:297.130275px;}
.yc6{bottom:302.852850px;}
.y58{bottom:303.021750px;}
.y7d{bottom:304.205250px;}
.y115{bottom:307.882050px;}
.yf2{bottom:308.481675px;}
.y136{bottom:308.647650px;}
.ya2{bottom:316.639950px;}
.y32{bottom:322.633500px;}
.yc5{bottom:328.352850px;}
.y57{bottom:328.521750px;}
.y7c{bottom:329.705250px;}
.y114{bottom:333.375975px;}
.ya1{bottom:342.139950px;}
.yf1{bottom:342.167250px;}
.y135{bottom:344.856900px;}
.y15{bottom:346.672650px;}
.y31{bottom:348.136725px;}
.yc4{bottom:353.849625px;}
.y7b{bottom:355.205250px;}
.y113{bottom:358.879200px;}
.ya0{bottom:367.639950px;}
.yf0{bottom:367.670475px;}
.y134{bottom:368.855325px;}
.y14{bottom:369.166275px;}
.y30{bottom:373.639950px;}
.y56{bottom:373.881450px;}
.yc3{bottom:379.352850px;}
.y7a{bottom:380.705250px;}
.y119{bottom:392.195625px;}
.y133{bottom:392.853750px;}
.y9f{bottom:393.139950px;}
.yef{bottom:393.173700px;}
.y2f{bottom:399.139950px;}
.y55{bottom:399.384675px;}
.yc2{bottom:404.852850px;}
.y79{bottom:406.202025px;}
.y13{bottom:406.665900px;}
.y132{bottom:416.852175px;}
.y3{bottom:417.619350px;}
.y9e{bottom:418.639950px;}
.y2e{bottom:424.639950px;}
.y54{bottom:424.887900px;}
.y112{bottom:425.874150px;}
.yee{bottom:426.859275px;}
.y12{bottom:429.159525px;}
.y78{bottom:431.705250px;}
.y25{bottom:431.930025px;}
.yc1{bottom:439.180950px;}
.y131{bottom:440.850600px;}
.y9d{bottom:444.139950px;}
.y53{bottom:450.387900px;}
.y111{bottom:451.374150px;}
.yed{bottom:452.362500px;}
.y77{bottom:457.205250px;}
.y24{bottom:457.433250px;}
.y130{bottom:464.851875px;}
.y11{bottom:466.659150px;}
.y2d{bottom:467.458650px;}
.y9c{bottom:469.639950px;}
.y52{bottom:475.887900px;}
.y110{bottom:476.863425px;}
.yec{bottom:477.865725px;}
.y23{bottom:482.930025px;}
.y12f{bottom:488.850300px;}
.y76{bottom:491.533350px;}
.y2c{bottom:492.958650px;}
.y9b{bottom:495.139950px;}
.y51{bottom:501.387900px;}
.yc0{bottom:502.819725px;}
.y10{bottom:504.158775px;}
.y22{bottom:508.433250px;}
.y10f{bottom:510.549000px;}
.yeb{bottom:511.551300px;}
.y2b{bottom:518.458650px;}
.y12e{bottom:525.012525px;}
.y50{bottom:526.887900px;}
.ybf{bottom:528.322950px;}
.y10e{bottom:536.052225px;}
.yea{bottom:537.036975px;}
.yf{bottom:538.660275px;}
.y9a{bottom:543.104400px;}
.y2a{bottom:543.958650px;}
.y12d{bottom:550.515750px;}
.y4f{bottom:552.387900px;}
.ybe{bottom:553.822950px;}
.y75{bottom:556.345125px;}
.y21{bottom:558.466875px;}
.ye{bottom:561.153900px;}
.y10d{bottom:561.555450px;}
.ye9{bottom:562.540200px;}
.y99{bottom:568.604400px;}
.y29{bottom:569.458650px;}
.y12c{bottom:576.018975px;}
.y4e{bottom:577.887900px;}
.ybd{bottom:579.322950px;}
.y74{bottom:581.848350px;}
.y20{bottom:583.970100px;}
.y2{bottom:589.426650px;}
.y98{bottom:594.104400px;}
.y28{bottom:594.958650px;}
.y10c{bottom:595.241025px;}
.yd{bottom:595.648500px;}
.ye8{bottom:596.225775px;}
.ybc{bottom:604.819725px;}
.y73{bottom:607.348350px;}
.y1f{bottom:609.473325px;}
.y12b{bottom:612.181200px;}
.y97{bottom:619.604400px;}
.y27{bottom:620.458650px;}
.y10b{bottom:620.744250px;}
.ye7{bottom:621.729000px;}
.y4d{bottom:623.242725px;}
.y16{bottom:624.587250px;}
.ybb{bottom:630.322950px;}
.y72{bottom:632.845125px;}
.y1e{bottom:634.976550px;}
.y12a{bottom:637.681200px;}
.y1{bottom:641.941650px;}
.y96{bottom:645.094725px;}
.y10a{bottom:646.210875px;}
.ye6{bottom:647.232225px;}
.y4c{bottom:648.745950px;}
.y26{bottom:654.786600px;}
.yba{bottom:655.822950px;}
.y71{bottom:658.348350px;}
.y129{bottom:663.181050px;}
.y95{bottom:670.597950px;}
.y4b{bottom:674.245950px;}
.y109{bottom:679.112700px;}
.yb9{bottom:681.322950px;}
.ye5{bottom:681.372375px;}
.y70{bottom:683.848350px;}
.y1d{bottom:686.513400px;}
.y94{bottom:696.101175px;}
.y128{bottom:698.982750px;}
.y4a{bottom:699.745950px;}
.y108{bottom:704.615925px;}
.yb8{bottom:706.822950px;}
.ye4{bottom:706.875600px;}
.y6f{bottom:709.345125px;}
.y1c{bottom:712.016625px;}
.y93{bottom:721.604400px;}
.y127{bottom:724.485975px;}
.y49{bottom:725.245950px;}
.y107{bottom:730.119150px;}
.y4{bottom:732.272850px;}
.yb7{bottom:732.319725px;}
.ye3{bottom:732.378825px;}
.y6e{bottom:734.848350px;}
.y1b{bottom:737.519850px;}
.y92{bottom:747.104400px;}
.yb6{bottom:757.822950px;}
.ye2{bottom:757.882050px;}
.y48{bottom:758.074050px;}
.y126{bottom:760.303350px;}
.y6d{bottom:760.348350px;}
.y1a{bottom:763.019850px;}
.y106{bottom:764.525775px;}
.y14d{bottom:770.073900px;}
.y91{bottom:772.604400px;}
.yb5{bottom:783.322950px;}
.ye1{bottom:783.374400px;}
.y125{bottom:785.799000px;}
.y6c{bottom:785.841900px;}
.y14c{bottom:788.073900px;}
.y105{bottom:790.029000px;}
.y90{bottom:798.104400px;}
.y14b{bottom:806.073900px;}
.y19{bottom:809.649300px;}
.y124{bottom:811.302225px;}
.y6b{bottom:811.345125px;}
.y104{bottom:815.532225px;}
.ye0{bottom:817.059975px;}
.y47{bottom:818.230350px;}
.y8f{bottom:823.604400px;}
.y14a{bottom:824.073900px;}
.yb4{bottom:832.816125px;}
.y18{bottom:835.152525px;}
.y123{bottom:836.805450px;}
.y6a{bottom:836.848350px;}
.y103{bottom:841.035450px;}
.y46{bottom:842.233500px;}
.ydf{bottom:842.563200px;}
.yb3{bottom:858.319350px;}
.y69{bottom:862.348350px;}
.y45{bottom:866.231925px;}
.yde{bottom:868.066425px;}
.y8e{bottom:872.584650px;}
.y122{bottom:872.622825px;}
.y102{bottom:874.721025px;}
.yb2{bottom:883.819350px;}
.yb{bottom:883.978575px;}
.y44{bottom:890.230350px;}
.yd5{bottom:896.419500px;}
.y8d{bottom:898.084650px;}
.y121{bottom:898.126050px;}
.y101{bottom:900.224250px;}
.ydd{bottom:901.752000px;}
.y149{bottom:904.053900px;}
.y68{bottom:909.214350px;}
.yb1{bottom:909.319350px;}
.ya{bottom:909.481800px;}
.y144{bottom:910.275375px;}
.y43{bottom:914.230350px;}
.yd4{bottom:921.919500px;}
.y148{bottom:922.053900px;}
.y8c{bottom:923.584650px;}
.y120{bottom:923.615250px;}
.y100{bottom:925.727475px;}
.ydc{bottom:927.246375px;}
.y67{bottom:934.714350px;}
.yb0{bottom:934.819350px;}
.y9{bottom:934.985025px;}
.y143{bottom:935.778600px;}
.y42{bottom:938.230350px;}
.y147{bottom:940.053900px;}
.yd3{bottom:947.419500px;}
.y8b{bottom:949.081425px;}
.y11f{bottom:949.118475px;}
.ydb{bottom:952.749600px;}
.y146{bottom:958.053900px;}
.y66{bottom:960.207900px;}
.yaf{bottom:960.319350px;}
.y8{bottom:960.488250px;}
.y142{bottom:961.281825px;}
.yff{bottom:961.544850px;}
.y41{bottom:962.230350px;}
.yd2{bottom:972.919500px;}
.y8a{bottom:974.584650px;}
.y145{bottom:976.053900px;}
.y11e{bottom:985.280700px;}
.y65{bottom:985.711125px;}
.yae{bottom:985.819350px;}
.y7{bottom:985.988250px;}
.y40{bottom:986.230350px;}
.y141{bottom:986.785050px;}
.yfe{bottom:987.048075px;}
.yda{bottom:987.422700px;}
.yd1{bottom:998.419500px;}
.y89{bottom:1000.084650px;}
.y3f{bottom:1010.230350px;}
.y11d{bottom:1010.783925px;}
.y64{bottom:1011.214350px;}
.yad{bottom:1011.319350px;}
.y6{bottom:1011.488250px;}
.y140{bottom:1012.288275px;}
.yfd{bottom:1012.551300px;}
.yd9{bottom:1012.925925px;}
.yd0{bottom:1023.916275px;}
.y88{bottom:1025.584650px;}
.y3e{bottom:1034.230350px;}
.y11c{bottom:1036.287150px;}
.y63{bottom:1036.711125px;}
.yac{bottom:1036.819350px;}
.y13f{bottom:1037.791500px;}
.yfc{bottom:1038.045975px;}
.yd8{bottom:1038.429150px;}
.ycf{bottom:1049.419500px;}
.y87{bottom:1051.084650px;}
.y3d{bottom:1058.230350px;}
.y5{bottom:1059.302550px;}
.y62{bottom:1062.214350px;}
.yab{bottom:1062.319350px;}
.y13e{bottom:1063.279500px;}
.yfb{bottom:1063.549200px;}
.yd7{bottom:1063.922175px;}
.y11b{bottom:1072.104525px;}
.yce{bottom:1074.919500px;}
.y61{bottom:1087.714350px;}
.yaa{bottom:1087.816125px;}
.yd6{bottom:1097.607750px;}
.y86{bottom:1097.610975px;}
.y3c{bottom:1102.115925px;}
.y60{bottom:1113.214350px;}
.ya9{bottom:1113.319350px;}
.ycd{bottom:1123.110975px;}
.y85{bottom:1123.114200px;}
.y3b{bottom:1126.114350px;}
.y5f{bottom:1147.542600px;}
.ya8{bottom:1147.647600px;}
.y84{bottom:1148.614200px;}
.y3a{bottom:1150.114350px;}
.y17{bottom:1194.940800px;}
.h16{height:34.125000px;}
.h8{height:45.325500px;}
.h15{height:48.750000px;}
.h9{height:49.434000px;}
.h7{height:50.273438px;}
.h5{height:50.943750px;}
.hb{height:50.956650px;}
.h14{height:50.960550px;}
.h10{height:50.965050px;}
.he{height:50.966250px;}
.h11{height:50.968050px;}
.h12{height:50.984550px;}
.h13{height:50.986950px;}
.hf{height:51.001050px;}
.hd{height:51.770361px;}
.hc{height:52.352051px;}
.ha{height:52.921080px;}
.h6{height:55.704000px;}
.h4{height:73.431164px;}
.h3{height:94.626000px;}
.h2{height:151.926545px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:34.015800px;}
.x7{left:49.377300px;}
.x4{left:54.758700px;}
.x9{left:56.419125px;}
.x10{left:68.161050px;}
.xe{left:78.036375px;}
.xc{left:94.272375px;}
.x2{left:96.296850px;}
.xd{left:98.439000px;}
.xb{left:100.207125px;}
.xf{left:102.405750px;}
.xa{left:103.605000px;}
.x8{left:105.526875px;}
.x15{left:162.588450px;}
.x12{left:170.078700px;}
.x1{left:182.921850px;}
.x14{left:198.693450px;}
.x16{left:209.565300px;}
.x5{left:219.188850px;}
.x3{left:515.131200px;}
.x11{left:579.747450px;}
.x13{left:829.425900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.055733pt;}
.ls4{letter-spacing:0.111467pt;}
.ls3{letter-spacing:0.167200pt;}
.ls1{letter-spacing:0.222933pt;}
.ls7{letter-spacing:0.780267pt;}
.ls6{letter-spacing:0.836000pt;}
.ls5{letter-spacing:1.058933pt;}
.ls8{letter-spacing:1.114667pt;}
.ws2{word-spacing:-15.326667pt;}
.ws67{word-spacing:-14.992267pt;}
.ws43{word-spacing:-14.936533pt;}
.ws44{word-spacing:-14.713600pt;}
.ws45{word-spacing:-14.657867pt;}
.ws65{word-spacing:-14.100533pt;}
.ws68{word-spacing:-14.044800pt;}
.ws66{word-spacing:-13.989067pt;}
.ws1e{word-spacing:-13.041600pt;}
.ws62{word-spacing:-9.028800pt;}
.ws61{word-spacing:-5.852000pt;}
.ws71{word-spacing:-5.127467pt;}
.ws63{word-spacing:-5.016000pt;}
.ws15{word-spacing:-4.180000pt;}
.ws3e{word-spacing:-4.124267pt;}
.ws27{word-spacing:-4.068533pt;}
.ws23{word-spacing:-3.957067pt;}
.ws37{word-spacing:-3.901333pt;}
.ws30{word-spacing:-3.845600pt;}
.ws31{word-spacing:-3.678400pt;}
.ws26{word-spacing:-3.566933pt;}
.ws20{word-spacing:-3.455467pt;}
.ws48{word-spacing:-3.344000pt;}
.ws2e{word-spacing:-3.288267pt;}
.ws35{word-spacing:-3.232533pt;}
.ws25{word-spacing:-3.176800pt;}
.ws2a{word-spacing:-3.121067pt;}
.ws14{word-spacing:-3.065333pt;}
.ws36{word-spacing:-3.009600pt;}
.ws38{word-spacing:-2.953867pt;}
.ws2f{word-spacing:-2.898133pt;}
.ws22{word-spacing:-2.842400pt;}
.ws13{word-spacing:-2.730933pt;}
.ws8{word-spacing:-2.675200pt;}
.ws32{word-spacing:-2.508000pt;}
.ws42{word-spacing:-2.340800pt;}
.ws1d{word-spacing:-2.117867pt;}
.ws1a{word-spacing:-2.062133pt;}
.ws29{word-spacing:-2.006400pt;}
.ws17{word-spacing:-1.894933pt;}
.ws4e{word-spacing:-1.839200pt;}
.ws24{word-spacing:-1.783467pt;}
.ws2d{word-spacing:-1.727733pt;}
.ws84{word-spacing:-1.706667pt;}
.ws83{word-spacing:-1.653333pt;}
.ws28{word-spacing:-1.560533pt;}
.ws40{word-spacing:-1.504800pt;}
.ws19{word-spacing:-1.449067pt;}
.ws2b{word-spacing:-1.393333pt;}
.ws3d{word-spacing:-1.337600pt;}
.ws1b{word-spacing:-1.281867pt;}
.ws16{word-spacing:-1.226133pt;}
.ws33{word-spacing:-1.170400pt;}
.ws1c{word-spacing:-1.114667pt;}
.ws3a{word-spacing:-1.058933pt;}
.ws3c{word-spacing:-1.003200pt;}
.wsc{word-spacing:-0.947467pt;}
.ws39{word-spacing:-0.836000pt;}
.ws2c{word-spacing:-0.780267pt;}
.ws87{word-spacing:-0.746667pt;}
.ws18{word-spacing:-0.724533pt;}
.ws41{word-spacing:-0.668800pt;}
.ws12{word-spacing:-0.613067pt;}
.ws34{word-spacing:-0.557333pt;}
.ws5d{word-spacing:-0.501600pt;}
.ws21{word-spacing:-0.445867pt;}
.ws3f{word-spacing:-0.390133pt;}
.ws3b{word-spacing:-0.334400pt;}
.ws6d{word-spacing:-0.222933pt;}
.ws11{word-spacing:-0.167200pt;}
.ws1f{word-spacing:-0.111467pt;}
.ws1{word-spacing:-0.058667pt;}
.ws10{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.055733pt;}
.ws4d{word-spacing:0.222933pt;}
.ws7d{word-spacing:0.501600pt;}
.ws56{word-spacing:0.724533pt;}
.ws54{word-spacing:1.003200pt;}
.ws3{word-spacing:1.058933pt;}
.ws53{word-spacing:1.114667pt;}
.ws77{word-spacing:1.226133pt;}
.ws80{word-spacing:1.546667pt;}
.ws4{word-spacing:1.560533pt;}
.ws85{word-spacing:1.653333pt;}
.wsa{word-spacing:1.672000pt;}
.ws86{word-spacing:1.717333pt;}
.ws5{word-spacing:1.783467pt;}
.ws7{word-spacing:1.894933pt;}
.wse{word-spacing:1.950667pt;}
.ws5b{word-spacing:2.117867pt;}
.ws51{word-spacing:2.953867pt;}
.ws6e{word-spacing:3.344000pt;}
.ws5c{word-spacing:3.845600pt;}
.ws82{word-spacing:3.893333pt;}
.ws50{word-spacing:4.291467pt;}
.ws70{word-spacing:4.347200pt;}
.ws57{word-spacing:4.458667pt;}
.ws7c{word-spacing:4.737333pt;}
.ws9{word-spacing:4.848800pt;}
.wsb{word-spacing:5.127467pt;}
.ws6c{word-spacing:5.406133pt;}
.ws75{word-spacing:5.517600pt;}
.ws58{word-spacing:5.907733pt;}
.ws60{word-spacing:6.242133pt;}
.ws81{word-spacing:6.506667pt;}
.ws6{word-spacing:6.688000pt;}
.ws4f{word-spacing:6.799467pt;}
.ws5f{word-spacing:7.579733pt;}
.ws78{word-spacing:7.691200pt;}
.ws69{word-spacing:8.025600pt;}
.ws46{word-spacing:8.137067pt;}
.ws7a{word-spacing:8.192800pt;}
.ws6f{word-spacing:8.638667pt;}
.wsf{word-spacing:9.140267pt;}
.ws59{word-spacing:9.530400pt;}
.ws7e{word-spacing:10.087733pt;}
.ws49{word-spacing:10.422133pt;}
.ws76{word-spacing:10.533600pt;}
.ws73{word-spacing:10.812267pt;}
.ws6b{word-spacing:10.868000pt;}
.ws47{word-spacing:11.982667pt;}
.ws74{word-spacing:12.094133pt;}
.ws5a{word-spacing:12.261333pt;}
.ws7b{word-spacing:12.707200pt;}
.ws52{word-spacing:13.153067pt;}
.ws5e{word-spacing:13.710400pt;}
.ws79{word-spacing:18.447733pt;}
.ws4b{word-spacing:19.339467pt;}
.ws55{word-spacing:21.290133pt;}
.ws6a{word-spacing:21.680267pt;}
.ws4c{word-spacing:23.352267pt;}
.ws72{word-spacing:24.466933pt;}
.ws7f{word-spacing:25.971733pt;}
.ws64{word-spacing:26.640533pt;}
.ws4a{word-spacing:46.091467pt;}
._3{margin-left:-6.416000pt;}
._4{margin-left:-4.715200pt;}
._0{margin-left:-3.200000pt;}
._1{margin-left:-1.600000pt;}
._2{width:1.584000pt;}
._7{width:2.764533pt;}
._f{width:3.789867pt;}
._6{width:5.401600pt;}
._b{width:8.025600pt;}
._c{width:10.254933pt;}
._11{width:11.960373pt;}
._d{width:19.116533pt;}
._e{width:54.707840pt;}
._10{width:422.928000pt;}
._12{width:440.938667pt;}
._9{width:448.624000pt;}
._8{width:450.560000pt;}
._a{width:451.674667pt;}
._5{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:160.000000pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:41.741467pt;}
.yc{bottom:42.077333pt;}
.y152{bottom:81.681200pt;}
.y151{bottom:92.881200pt;}
.y150{bottom:104.081200pt;}
.yf9{bottom:113.596400pt;}
.ycc{bottom:114.124400pt;}
.y83{bottom:115.137467pt;}
.y39{bottom:115.396667pt;}
.y13d{bottom:117.168933pt;}
.y14f{bottom:126.481200pt;}
.y5e{bottom:133.352667pt;}
.yf8{bottom:134.928333pt;}
.y38{bottom:136.730000pt;}
.ycb{bottom:136.791067pt;}
.y14e{bottom:137.681200pt;}
.y82{bottom:137.804133pt;}
.y13c{bottom:138.505933pt;}
.ya7{bottom:146.245067pt;}
.y5d{bottom:156.019333pt;}
.yf7{bottom:156.260267pt;}
.y37{bottom:159.393800pt;}
.yca{bottom:159.457733pt;}
.y13b{bottom:159.837867pt;}
.y81{bottom:160.470800pt;}
.ya6{bottom:168.911733pt;}
.y11a{bottom:169.491400pt;}
.yf6{bottom:177.592200pt;}
.y5c{bottom:178.686000pt;}
.y13a{bottom:179.832200pt;}
.y36{bottom:182.063333pt;}
.yc9{bottom:182.124400pt;}
.y80{bottom:183.137467pt;}
.ya5{bottom:191.578400pt;}
.yf5{bottom:198.924133pt;}
.y118{bottom:199.434133pt;}
.y5b{bottom:201.349800pt;}
.y35{bottom:204.730000pt;}
.yc8{bottom:204.791067pt;}
.y7f{bottom:205.795800pt;}
.y139{bottom:210.346200pt;}
.ya4{bottom:214.245067pt;}
.y117{bottom:222.091733pt;}
.y5a{bottom:224.019333pt;}
.yc7{bottom:227.457733pt;}
.y7e{bottom:228.465333pt;}
.yf4{bottom:228.866867pt;}
.y138{bottom:231.678133pt;}
.y34{bottom:241.446267pt;}
.y116{bottom:244.761267pt;}
.y59{bottom:246.686000pt;}
.yf3{bottom:251.536400pt;}
.y137{bottom:253.021533pt;}
.ya3{bottom:258.791067pt;}
.y33{bottom:264.115800pt;}
.yc6{bottom:269.202533pt;}
.y58{bottom:269.352667pt;}
.y7d{bottom:270.404667pt;}
.y115{bottom:273.672933pt;}
.yf2{bottom:274.205933pt;}
.y136{bottom:274.353467pt;}
.ya2{bottom:281.457733pt;}
.y32{bottom:286.785333pt;}
.yc5{bottom:291.869200pt;}
.y57{bottom:292.019333pt;}
.y7c{bottom:293.071333pt;}
.y114{bottom:296.334200pt;}
.ya1{bottom:304.124400pt;}
.yf1{bottom:304.148667pt;}
.y135{bottom:306.539467pt;}
.y15{bottom:308.153467pt;}
.y31{bottom:309.454867pt;}
.yc4{bottom:314.533000pt;}
.y7b{bottom:315.738000pt;}
.y113{bottom:319.003733pt;}
.ya0{bottom:326.791067pt;}
.yf0{bottom:326.818200pt;}
.y134{bottom:327.871400pt;}
.y14{bottom:328.147800pt;}
.y30{bottom:332.124400pt;}
.y56{bottom:332.339067pt;}
.yc3{bottom:337.202533pt;}
.y7a{bottom:338.404667pt;}
.y119{bottom:348.618333pt;}
.y133{bottom:349.203333pt;}
.y9f{bottom:349.457733pt;}
.yef{bottom:349.487733pt;}
.y2f{bottom:354.791067pt;}
.y55{bottom:355.008600pt;}
.yc2{bottom:359.869200pt;}
.y79{bottom:361.068467pt;}
.y13{bottom:361.480800pt;}
.y132{bottom:370.535267pt;}
.y3{bottom:371.217200pt;}
.y9e{bottom:372.124400pt;}
.y2e{bottom:377.457733pt;}
.y54{bottom:377.678133pt;}
.y112{bottom:378.554800pt;}
.yee{bottom:379.430467pt;}
.y12{bottom:381.475133pt;}
.y78{bottom:383.738000pt;}
.y25{bottom:383.937800pt;}
.yc1{bottom:390.383067pt;}
.y131{bottom:391.867200pt;}
.y9d{bottom:394.791067pt;}
.y53{bottom:400.344800pt;}
.y111{bottom:401.221467pt;}
.yed{bottom:402.100000pt;}
.y77{bottom:406.404667pt;}
.y24{bottom:406.607333pt;}
.y130{bottom:413.201667pt;}
.y11{bottom:414.808133pt;}
.y2d{bottom:415.518800pt;}
.y9c{bottom:417.457733pt;}
.y52{bottom:423.011467pt;}
.y110{bottom:423.878600pt;}
.yec{bottom:424.769533pt;}
.y23{bottom:429.271133pt;}
.y12f{bottom:434.533600pt;}
.y76{bottom:436.918533pt;}
.y2c{bottom:438.185467pt;}
.y9b{bottom:440.124400pt;}
.y51{bottom:445.678133pt;}
.yc0{bottom:446.950867pt;}
.y10{bottom:448.141133pt;}
.y22{bottom:451.940667pt;}
.y10f{bottom:453.821333pt;}
.yeb{bottom:454.712267pt;}
.y2b{bottom:460.852133pt;}
.y12e{bottom:466.677800pt;}
.y50{bottom:468.344800pt;}
.ybf{bottom:469.620400pt;}
.y10e{bottom:476.490867pt;}
.yea{bottom:477.366200pt;}
.yf{bottom:478.809133pt;}
.y9a{bottom:482.759467pt;}
.y2a{bottom:483.518800pt;}
.y12d{bottom:489.347333pt;}
.y4f{bottom:491.011467pt;}
.ybe{bottom:492.287067pt;}
.y75{bottom:494.529000pt;}
.y21{bottom:496.415000pt;}
.ye{bottom:498.803467pt;}
.y10d{bottom:499.160400pt;}
.ye9{bottom:500.035733pt;}
.y99{bottom:505.426133pt;}
.y29{bottom:506.185467pt;}
.y12c{bottom:512.016867pt;}
.y4e{bottom:513.678133pt;}
.ybd{bottom:514.953733pt;}
.y74{bottom:517.198533pt;}
.y20{bottom:519.084533pt;}
.y2{bottom:523.934800pt;}
.y98{bottom:528.092800pt;}
.y28{bottom:528.852133pt;}
.y10c{bottom:529.103133pt;}
.yd{bottom:529.465333pt;}
.ye8{bottom:529.978467pt;}
.ybc{bottom:537.617533pt;}
.y73{bottom:539.865200pt;}
.y1f{bottom:541.754067pt;}
.y12b{bottom:544.161067pt;}
.y97{bottom:550.759467pt;}
.y27{bottom:551.518800pt;}
.y10b{bottom:551.772667pt;}
.ye7{bottom:552.648000pt;}
.y4d{bottom:553.993533pt;}
.y16{bottom:555.188667pt;}
.ybb{bottom:560.287067pt;}
.y72{bottom:562.529000pt;}
.y1e{bottom:564.423600pt;}
.y12a{bottom:566.827733pt;}
.y1{bottom:570.614800pt;}
.y96{bottom:573.417533pt;}
.y10a{bottom:574.409667pt;}
.ye6{bottom:575.317533pt;}
.y4c{bottom:576.663067pt;}
.y26{bottom:582.032533pt;}
.yba{bottom:582.953733pt;}
.y71{bottom:585.198533pt;}
.y129{bottom:589.494267pt;}
.y95{bottom:596.087067pt;}
.y4b{bottom:599.329733pt;}
.y109{bottom:603.655733pt;}
.yb9{bottom:605.620400pt;}
.ye5{bottom:605.664333pt;}
.y70{bottom:607.865200pt;}
.y1d{bottom:610.234133pt;}
.y94{bottom:618.756600pt;}
.y128{bottom:621.318000pt;}
.y4a{bottom:621.996400pt;}
.y108{bottom:626.325267pt;}
.yb8{bottom:628.287067pt;}
.ye4{bottom:628.333867pt;}
.y6f{bottom:630.529000pt;}
.y1c{bottom:632.903667pt;}
.y93{bottom:641.426133pt;}
.y127{bottom:643.987533pt;}
.y49{bottom:644.663067pt;}
.y107{bottom:648.994800pt;}
.y4{bottom:650.909200pt;}
.yb7{bottom:650.950867pt;}
.ye3{bottom:651.003400pt;}
.y6e{bottom:653.198533pt;}
.y1b{bottom:655.573200pt;}
.y92{bottom:664.092800pt;}
.yb6{bottom:673.620400pt;}
.ye2{bottom:673.672933pt;}
.y48{bottom:673.843600pt;}
.y126{bottom:675.825200pt;}
.y6d{bottom:675.865200pt;}
.y1a{bottom:678.239867pt;}
.y106{bottom:679.578467pt;}
.y14d{bottom:684.510133pt;}
.y91{bottom:686.759467pt;}
.yb5{bottom:696.287067pt;}
.ye1{bottom:696.332800pt;}
.y125{bottom:698.488000pt;}
.y6c{bottom:698.526133pt;}
.y14c{bottom:700.510133pt;}
.y105{bottom:702.248000pt;}
.y90{bottom:709.426133pt;}
.y14b{bottom:716.510133pt;}
.y19{bottom:719.688267pt;}
.y124{bottom:721.157533pt;}
.y6b{bottom:721.195667pt;}
.y104{bottom:724.917533pt;}
.ye0{bottom:726.275533pt;}
.y47{bottom:727.315867pt;}
.y8f{bottom:732.092800pt;}
.y14a{bottom:732.510133pt;}
.yb4{bottom:740.281000pt;}
.y18{bottom:742.357800pt;}
.y123{bottom:743.827067pt;}
.y6a{bottom:743.865200pt;}
.y103{bottom:747.587067pt;}
.y46{bottom:748.652000pt;}
.ydf{bottom:748.945067pt;}
.yb3{bottom:762.950533pt;}
.y69{bottom:766.531867pt;}
.y45{bottom:769.983933pt;}
.yde{bottom:771.614600pt;}
.y8e{bottom:775.630800pt;}
.y122{bottom:775.664733pt;}
.y102{bottom:777.529800pt;}
.yb2{bottom:785.617200pt;}
.yb{bottom:785.758733pt;}
.y44{bottom:791.315867pt;}
.yd5{bottom:796.817333pt;}
.y8d{bottom:798.297467pt;}
.y121{bottom:798.334267pt;}
.y101{bottom:800.199333pt;}
.ydd{bottom:801.557333pt;}
.y149{bottom:803.603467pt;}
.y68{bottom:808.190533pt;}
.yb1{bottom:808.283867pt;}
.ya{bottom:808.428267pt;}
.y144{bottom:809.133667pt;}
.y43{bottom:812.649200pt;}
.yd4{bottom:819.484000pt;}
.y148{bottom:819.603467pt;}
.y8c{bottom:820.964133pt;}
.y120{bottom:820.991333pt;}
.y100{bottom:822.868867pt;}
.ydc{bottom:824.219000pt;}
.y67{bottom:830.857200pt;}
.yb0{bottom:830.950533pt;}
.y9{bottom:831.097800pt;}
.y143{bottom:831.803200pt;}
.y42{bottom:833.982533pt;}
.y147{bottom:835.603467pt;}
.yd3{bottom:842.150667pt;}
.y8b{bottom:843.627933pt;}
.y11f{bottom:843.660867pt;}
.ydb{bottom:846.888533pt;}
.y146{bottom:851.603467pt;}
.y66{bottom:853.518133pt;}
.yaf{bottom:853.617200pt;}
.y8{bottom:853.767333pt;}
.y142{bottom:854.472733pt;}
.yff{bottom:854.706533pt;}
.y41{bottom:855.315867pt;}
.yd2{bottom:864.817333pt;}
.y8a{bottom:866.297467pt;}
.y145{bottom:867.603467pt;}
.y11e{bottom:875.805067pt;}
.y65{bottom:876.187667pt;}
.yae{bottom:876.283867pt;}
.y7{bottom:876.434000pt;}
.y40{bottom:876.649200pt;}
.y141{bottom:877.142267pt;}
.yfe{bottom:877.376067pt;}
.yda{bottom:877.709067pt;}
.yd1{bottom:887.484000pt;}
.y89{bottom:888.964133pt;}
.y3f{bottom:897.982533pt;}
.y11d{bottom:898.474600pt;}
.y64{bottom:898.857200pt;}
.yad{bottom:898.950533pt;}
.y6{bottom:899.100667pt;}
.y140{bottom:899.811800pt;}
.yfd{bottom:900.045600pt;}
.yd9{bottom:900.378600pt;}
.yd0{bottom:910.147800pt;}
.y88{bottom:911.630800pt;}
.y3e{bottom:919.315867pt;}
.y11c{bottom:921.144133pt;}
.y63{bottom:921.521000pt;}
.yac{bottom:921.617200pt;}
.y13f{bottom:922.481333pt;}
.yfc{bottom:922.707533pt;}
.yd8{bottom:923.048133pt;}
.ycf{bottom:932.817333pt;}
.y87{bottom:934.297467pt;}
.y3d{bottom:940.649200pt;}
.y5{bottom:941.602267pt;}
.y62{bottom:944.190533pt;}
.yab{bottom:944.283867pt;}
.y13e{bottom:945.137333pt;}
.yfb{bottom:945.377067pt;}
.yd7{bottom:945.708600pt;}
.y11b{bottom:952.981800pt;}
.yce{bottom:955.484000pt;}
.y61{bottom:966.857200pt;}
.yaa{bottom:966.947667pt;}
.yd6{bottom:975.651333pt;}
.y86{bottom:975.654200pt;}
.y3c{bottom:979.658600pt;}
.y60{bottom:989.523867pt;}
.ya9{bottom:989.617200pt;}
.ycd{bottom:998.320867pt;}
.y85{bottom:998.323733pt;}
.y3b{bottom:1000.990533pt;}
.y5f{bottom:1020.037867pt;}
.ya8{bottom:1020.131200pt;}
.y84{bottom:1020.990400pt;}
.y3a{bottom:1022.323867pt;}
.y17{bottom:1062.169600pt;}
.h16{height:30.333333pt;}
.h8{height:40.289333pt;}
.h15{height:43.333333pt;}
.h9{height:43.941333pt;}
.h7{height:44.687500pt;}
.h5{height:45.283333pt;}
.hb{height:45.294800pt;}
.h14{height:45.298267pt;}
.h10{height:45.302267pt;}
.he{height:45.303333pt;}
.h11{height:45.304933pt;}
.h12{height:45.319600pt;}
.h13{height:45.321733pt;}
.hf{height:45.334267pt;}
.hd{height:46.018099pt;}
.hc{height:46.535156pt;}
.ha{height:47.040960pt;}
.h6{height:49.514667pt;}
.h4{height:65.272145pt;}
.h3{height:84.112000pt;}
.h2{height:135.045818pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:30.236267pt;}
.x7{left:43.890933pt;}
.x4{left:48.674400pt;}
.x9{left:50.150333pt;}
.x10{left:60.587600pt;}
.xe{left:69.365667pt;}
.xc{left:83.797667pt;}
.x2{left:85.597200pt;}
.xd{left:87.501333pt;}
.xb{left:89.073000pt;}
.xf{left:91.027333pt;}
.xa{left:92.093333pt;}
.x8{left:93.801667pt;}
.x15{left:144.523067pt;}
.x12{left:151.181067pt;}
.x1{left:162.597200pt;}
.x14{left:176.616400pt;}
.x16{left:186.280267pt;}
.x5{left:194.834533pt;}
.x3{left:457.894400pt;}
.x11{left:515.331067pt;}
.x13{left:737.267467pt;}
}




    .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; }
  