
    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_5509ebb228bc7301852390d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_82ba7c663f1801b2eb40d663.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_5536b92ddad067bd2345b614.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_1fe67f1fbf2e2a92d1ed52c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_3993d281804e99fe7f11c341.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_cec2dd150fa72389e4d556f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_fee5e6775d21246163fe7094.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_4f1b38c51850d7ec128485c8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;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_c5c2438396f56f2a431c5070.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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;}
.m26{transform:matrix(0.189313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189313,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.190587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190587,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.192597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192597,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.193146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193146,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.233327,0.000002,0.000000,0.250000,0,0);-ms-transform:matrix(0.233327,0.000002,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233327,0.000002,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.233327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233327,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.237729,0.000000,-0.079235,0.237111,0,0);-ms-transform:matrix(0.237729,0.000000,-0.079235,0.237111,0,0);-webkit-transform:matrix(0.237729,0.000000,-0.079235,0.237111,0,0);}
.m4{transform:matrix(0.238194,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.238194,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238194,0.000001,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.238194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238194,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.239663,0.000000,-0.079880,0.236895,0,0);-ms-transform:matrix(0.239663,0.000000,-0.079880,0.236895,0,0);-webkit-transform:matrix(0.239663,0.000000,-0.079880,0.236895,0,0);}
.m25{transform:matrix(0.240629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240629,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.243482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243482,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245109,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245191,0.000000,0.000001,0.250000,0,0);-ms-transform:matrix(0.245191,0.000000,0.000001,0.250000,0,0);-webkit-transform:matrix(0.245191,0.000000,0.000001,0.250000,0,0);}
.m1d{transform:matrix(0.245191,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.245191,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245191,0.000001,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245191,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248302,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249076,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249208,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.m22{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);}
.m5{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250651,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252649,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252921,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253388,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253642,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253781,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254072,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254274,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.255272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255272,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255971,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.257449,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257449,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257449,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.257539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257539,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);}
.v4{vertical-align:-65.762040px;}
.v11{vertical-align:-64.575783px;}
.vd{vertical-align:-60.155430px;}
.vf{vertical-align:-51.520589px;}
.v8{vertical-align:-45.289008px;}
.v7{vertical-align:-43.855357px;}
.v9{vertical-align:-42.139339px;}
.v6{vertical-align:-21.139420px;}
.ve{vertical-align:-13.526811px;}
.v10{vertical-align:-3.177997px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:14.250931px;}
.v3{vertical-align:21.018359px;}
.va{vertical-align:22.428281px;}
.v5{vertical-align:31.425408px;}
.vb{vertical-align:43.567472px;}
.v2{vertical-align:44.743681px;}
.v1{vertical-align:75.989452px;}
.ls2b{letter-spacing:-1.458000px;}
.ls2c{letter-spacing:-0.900000px;}
.ls2a{letter-spacing:-0.738000px;}
.ls25{letter-spacing:-0.378600px;}
.ls5{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.350400px;}
.lsd{letter-spacing:-0.322800px;}
.ls13{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.028080px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.lsa{letter-spacing:0.037440px;}
.ls2d{letter-spacing:0.148080px;}
.ls7{letter-spacing:0.208080px;}
.ls2e{letter-spacing:0.217440px;}
.ls2f{letter-spacing:0.269280px;}
.lse{letter-spacing:0.281768px;}
.ls22{letter-spacing:0.288166px;}
.ls26{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.369360px;}
.ls6{letter-spacing:0.378600px;}
.ls29{letter-spacing:0.378720px;}
.ls8{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.522720px;}
.ls12{letter-spacing:0.648097px;}
.ls21{letter-spacing:1.347516px;}
.ls1b{letter-spacing:1.425776px;}
.ls27{letter-spacing:2.700000px;}
.lsb{letter-spacing:39.319463px;}
.ls1f{letter-spacing:43.826048px;}
.ls15{letter-spacing:43.994114px;}
.ls1d{letter-spacing:99.428592px;}
.ls1c{letter-spacing:99.452333px;}
.ls1e{letter-spacing:99.594505px;}
.ls16{letter-spacing:99.876084px;}
.ls18{letter-spacing:122.488720px;}
.ls17{letter-spacing:122.500504px;}
.lsc{letter-spacing:170.991713px;}
.lsf{letter-spacing:171.859698px;}
.ls14{letter-spacing:212.141987px;}
.ls24{letter-spacing:279.533995px;}
.ls23{letter-spacing:344.100310px;}
.ls11{letter-spacing:358.823896px;}
.ls10{letter-spacing:625.436364px;}
.ls19{letter-spacing:1143.790059px;}
.ls1a{letter-spacing:1213.669410px;}
.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;}
}
.ws1a{word-spacing:-46.308455px;}
.ws10{word-spacing:-46.307600px;}
.ws3a{word-spacing:-45.934823px;}
.ws2e{word-spacing:-44.990525px;}
.ws0{word-spacing:-24.300000px;}
.ws17{word-spacing:-22.980392px;}
.ws25{word-spacing:-22.774933px;}
.ws4{word-spacing:-21.438600px;}
.ws5{word-spacing:-21.420000px;}
.ws37{word-spacing:-21.401400px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws7{word-spacing:-21.031920px;}
.ws8{word-spacing:-20.737200px;}
.ws16{word-spacing:-20.709600px;}
.ws3{word-spacing:-20.700000px;}
.ws3b{word-spacing:-20.322000px;}
.ws3c{word-spacing:-19.602000px;}
.ws1e{word-spacing:-1.467952px;}
.ws32{word-spacing:-0.372258px;}
.ws9{word-spacing:-0.323561px;}
.ws1c{word-spacing:-0.084351px;}
.wsf{word-spacing:-0.084349px;}
.ws13{word-spacing:-0.084210px;}
.ws2c{word-spacing:-0.084092px;}
.ws39{word-spacing:-0.083670px;}
.wsc{word-spacing:-0.083498px;}
.ws36{word-spacing:-0.083430px;}
.ws29{word-spacing:-0.083354px;}
.ws14{word-spacing:-0.083073px;}
.ws15{word-spacing:-0.082926px;}
.ws2d{word-spacing:-0.081950px;}
.ws11{word-spacing:-0.042175px;}
.ws34{word-spacing:-0.041786px;}
.ws20{word-spacing:-0.041484px;}
.ws6{word-spacing:0.000000px;}
.ws30{word-spacing:95.767546px;}
.ws2a{word-spacing:132.029755px;}
.ws2f{word-spacing:133.052011px;}
.wsd{word-spacing:148.284126px;}
.wsb{word-spacing:156.014698px;}
.ws19{word-spacing:162.032106px;}
.ws33{word-spacing:173.136767px;}
.ws18{word-spacing:175.842272px;}
.ws27{word-spacing:177.950490px;}
.ws38{word-spacing:209.526773px;}
.ws28{word-spacing:211.192091px;}
.ws24{word-spacing:225.435427px;}
.wsa{word-spacing:233.858548px;}
.ws2b{word-spacing:262.313966px;}
.ws35{word-spacing:264.280397px;}
.ws31{word-spacing:300.440784px;}
.ws12{word-spacing:336.663788px;}
.wse{word-spacing:352.436165px;}
.ws23{word-spacing:365.820443px;}
.ws21{word-spacing:424.348695px;}
.ws22{word-spacing:508.973973px;}
.ws26{word-spacing:578.092560px;}
.ws1f{word-spacing:624.599116px;}
.ws1b{word-spacing:660.693593px;}
.ws1d{word-spacing:874.984552px;}
._41{margin-left:-798.198515px;}
._3d{margin-left:-488.928476px;}
._3b{margin-left:-439.857974px;}
._3a{margin-left:-436.334776px;}
._46{margin-left:-404.520992px;}
._44{margin-left:-369.841639px;}
._45{margin-left:-350.644999px;}
._42{margin-left:-349.291155px;}
._28{margin-left:-338.650941px;}
._43{margin-left:-329.650867px;}
._33{margin-left:-326.714851px;}
._39{margin-left:-305.372505px;}
._34{margin-left:-259.193135px;}
._38{margin-left:-245.233890px;}
._26{margin-left:-239.006879px;}
._2f{margin-left:-233.797892px;}
._4f{margin-left:-229.812055px;}
._48{margin-left:-212.781596px;}
._49{margin-left:-211.382391px;}
._4a{margin-left:-207.408394px;}
._31{margin-left:-202.753973px;}
._47{margin-left:-196.419730px;}
._4b{margin-left:-192.155791px;}
._5d{margin-left:-184.690865px;}
._37{margin-left:-183.426703px;}
._5c{margin-left:-178.825390px;}
._5f{margin-left:-175.890586px;}
._3c{margin-left:-173.975894px;}
._32{margin-left:-172.808800px;}
._58{margin-left:-168.469699px;}
._5e{margin-left:-166.354066px;}
._5a{margin-left:-162.336154px;}
._30{margin-left:-158.143327px;}
._36{margin-left:-153.803371px;}
._59{margin-left:-143.993485px;}
._55{margin-left:-136.910587px;}
._50{margin-left:-133.047361px;}
._54{margin-left:-130.463016px;}
._53{margin-left:-129.193738px;}
._4c{margin-left:-120.122698px;}
._4e{margin-left:-116.778211px;}
._4d{margin-left:-111.306935px;}
._27{margin-left:-109.540511px;}
._56{margin-left:-108.490558px;}
._57{margin-left:-105.687706px;}
._52{margin-left:-102.862476px;}
._35{margin-left:-100.427379px;}
._25{margin-left:-92.789649px;}
._3e{margin-left:-82.889967px;}
._51{margin-left:-60.124774px;}
._5b{margin-left:-58.881442px;}
._3f{margin-left:-35.168944px;}
._40{margin-left:-30.634446px;}
._2e{margin-left:-7.903172px;}
._18{margin-left:-6.065280px;}
._15{margin-left:-4.043520px;}
._12{margin-left:-2.778240px;}
._1{margin-left:-1.158720px;}
._0{width:1.392000px;}
._8{width:2.969520px;}
._63{width:4.008960px;}
._2{width:5.054400px;}
._3{width:6.296160px;}
._6{width:7.804800px;}
._9{width:9.771840px;}
._b{width:10.951200px;}
._c{width:12.268800px;}
._17{width:13.669200px;}
._16{width:14.826240px;}
._23{width:16.005600px;}
._11{width:17.585520px;}
._d{width:19.375200px;}
._21{width:22.320960px;}
._20{width:23.755680px;}
._22{width:26.114400px;}
._a{width:27.273120px;}
._10{width:28.452480px;}
._19{width:29.484000px;}
._1a{width:30.852480px;}
._62{width:32.087520px;}
._1e{width:37.194000px;}
._1d{width:38.363760px;}
._13{width:39.508560px;}
._7{width:41.593920px;}
._2a{width:44.332560px;}
._4{width:45.573840px;}
._29{width:46.921680px;}
._5{width:47.956320px;}
._6c{width:50.374800px;}
._61{width:52.292400px;}
._64{width:57.664320px;}
._65{width:59.319840px;}
._6a{width:62.273520px;}
._6b{width:63.479280px;}
._1f{width:66.781680px;}
._14{width:67.981680px;}
._2c{width:69.056160px;}
._67{width:71.488800px;}
._66{width:72.510000px;}
._2b{width:78.996480px;}
._69{width:82.240560px;}
._68{width:83.313360px;}
._60{width:84.913920px;}
._1b{width:92.327040px;}
._1c{width:93.570000px;}
._e{width:96.349920px;}
._f{width:98.034720px;}
._24{width:104.373360px;}
._2d{width:332.455962px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(0,112,192);}
.fc4{color:transparent;}
.fc3{color:rgb(17,4,31);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1c{font-size:41.484395px;}
.fs20{font-size:41.748398px;}
.fs8{font-size:41.749830px;}
.fs24{font-size:41.786433px;}
.fs6{font-size:41.793027px;}
.fs19{font-size:41.858638px;}
.fs28{font-size:41.908746px;}
.fs14{font-size:42.033744px;}
.fs22{font-size:42.045383px;}
.fs10{font-size:42.175089px;}
.fs1b{font-size:42.175867px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:81.186062px;}
.fsa{font-size:81.949954px;}
.fs29{font-size:82.074415px;}
.fsb{font-size:82.642255px;}
.fs1d{font-size:82.822780px;}
.fs16{font-size:82.925678px;}
.fs15{font-size:83.072970px;}
.fs1f{font-size:83.354220px;}
.fs25{font-size:83.429874px;}
.fs9{font-size:83.498481px;}
.fs27{font-size:83.669987px;}
.fs18{font-size:83.719672px;}
.fs7{font-size:83.727817px;}
.fs21{font-size:84.091957px;}
.fs13{font-size:84.210068px;}
.fs4{font-size:84.240000px;}
.fsf{font-size:84.348999px;}
.fs1a{font-size:84.350556px;}
.fsd{font-size:85.357912px;}
.fs17{font-size:87.433237px;}
.fs12{font-size:88.868552px;}
.fs3{font-size:95.760000px;}
.fs1e{font-size:106.511021px;}
.fs5{font-size:107.528706px;}
.fs26{font-size:108.326070px;}
.fs23{font-size:108.853955px;}
.fs11{font-size:109.002342px;}
.fse{font-size:109.140547px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y139{bottom:3.238818px;}
.y108{bottom:3.238888px;}
.ya4{bottom:3.714166px;}
.y102{bottom:3.933876px;}
.y3{bottom:3.960000px;}
.y9b{bottom:4.251524px;}
.y105{bottom:4.251561px;}
.y67{bottom:4.296667px;}
.ycc{bottom:4.296682px;}
.yce{bottom:4.296684px;}
.yad{bottom:4.571370px;}
.y85{bottom:4.682181px;}
.y78{bottom:4.682248px;}
.y71{bottom:4.749921px;}
.y7e{bottom:4.749932px;}
.y13d{bottom:4.785892px;}
.yd4{bottom:5.214247px;}
.yd7{bottom:5.214258px;}
.yda{bottom:5.214265px;}
.ydd{bottom:5.214276px;}
.ya{bottom:5.220000px;}
.yba{bottom:5.844929px;}
.yc1{bottom:5.844935px;}
.yc3{bottom:5.844937px;}
.ybe{bottom:5.844946px;}
.yf0{bottom:5.864635px;}
.y75{bottom:6.821517px;}
.y6b{bottom:6.821532px;}
.y81{bottom:6.821548px;}
.y11e{bottom:7.259235px;}
.y9{bottom:7.380000px;}
.ye4{bottom:7.464120px;}
.ye7{bottom:7.464139px;}
.y110{bottom:7.588174px;}
.yee{bottom:7.843354px;}
.yf5{bottom:8.059255px;}
.ya1{bottom:8.999603px;}
.y87{bottom:9.070535px;}
.y6e{bottom:9.070584px;}
.y9f{bottom:9.071038px;}
.yf9{bottom:9.106929px;}
.yb4{bottom:9.142740px;}
.y13b{bottom:9.142748px;}
.y12b{bottom:9.178493px;}
.yb5{bottom:9.178532px;}
.yfa{bottom:9.239162px;}
.yfb{bottom:9.239165px;}
.y11a{bottom:9.239172px;}
.y103{bottom:9.239235px;}
.y119{bottom:9.311431px;}
.y130{bottom:11.158506px;}
.y76{bottom:12.071546px;}
.y82{bottom:12.071618px;}
.y6c{bottom:12.071622px;}
.ye2{bottom:12.892699px;}
.yea{bottom:12.892701px;}
.ydf{bottom:12.892703px;}
.ye0{bottom:13.249714px;}
.y120{bottom:13.290707px;}
.y125{bottom:13.290711px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y66{bottom:17.329309px;}
.ycb{bottom:17.329327px;}
.ye1{bottom:18.499759px;}
.ye3{bottom:18.499777px;}
.yb8{bottom:19.276969px;}
.ybc{bottom:19.276985px;}
.ya3{bottom:20.035612px;}
.y68{bottom:20.737177px;}
.ycd{bottom:20.737203px;}
.yb0{bottom:20.856618px;}
.yd3{bottom:21.570755px;}
.yd6{bottom:21.570765px;}
.yd9{bottom:21.570773px;}
.ydc{bottom:21.570784px;}
.yf2{bottom:21.947680px;}
.yc5{bottom:22.036414px;}
.ye6{bottom:23.784546px;}
.ye9{bottom:23.784565px;}
.yf3{bottom:24.105204px;}
.y2{bottom:24.660000px;}
.ya0{bottom:25.284963px;}
.yc2{bottom:27.300701px;}
.yc0{bottom:27.300707px;}
.yc7{bottom:27.300714px;}
.y134{bottom:27.333389px;}
.y132{bottom:27.333395px;}
.yb9{bottom:28.098707px;}
.ybd{bottom:28.098723px;}
.y126{bottom:28.640167px;}
.y124{bottom:28.640176px;}
.y122{bottom:28.640186px;}
.yaf{bottom:28.714673px;}
.ya5{bottom:33.141315px;}
.ya6{bottom:33.176664px;}
.yef{bottom:33.423805px;}
.yae{bottom:33.928827px;}
.yac{bottom:34.034878px;}
.yc4{bottom:35.069862px;}
.yd5{bottom:35.106789px;}
.yd8{bottom:35.106800px;}
.ydb{bottom:35.106808px;}
.yde{bottom:35.106818px;}
.y135{bottom:35.147850px;}
.yf1{bottom:35.223720px;}
.ye5{bottom:36.891959px;}
.ye8{bottom:36.891978px;}
.ya2{bottom:38.427488px;}
.y9e{bottom:38.498186px;}
.y11f{bottom:38.499114px;}
.yc6{bottom:40.332664px;}
.y131{bottom:40.344969px;}
.y133{bottom:40.344974px;}
.y12f{bottom:40.454410px;}
.ybb{bottom:41.567878px;}
.ybf{bottom:41.567894px;}
.yf4{bottom:42.923437px;}
.y121{bottom:43.736202px;}
.y123{bottom:43.736212px;}
.y8{bottom:44.640000px;}
.yed{bottom:49.759551px;}
.y14d{bottom:95.256000px;}
.y31{bottom:98.856000px;}
.yb6{bottom:110.916000px;}
.y14c{bottom:122.796000px;}
.y54{bottom:122.976000px;}
.y65{bottom:123.015000px;}
.y30{bottom:126.576000px;}
.yfe{bottom:131.115000px;}
.yb3{bottom:134.190000px;}
.yb2{bottom:143.136000px;}
.y69{bottom:144.036000px;}
.y14b{bottom:150.510000px;}
.y53{bottom:150.870000px;}
.y2f{bottom:154.470000px;}
.yff{bottom:156.630000px;}
.yab{bottom:166.440000px;}
.y14a{bottom:178.410000px;}
.y52{bottom:178.590000px;}
.y2e{bottom:182.190000px;}
.y64{bottom:183.450000px;}
.yb1{bottom:187.410000px;}
.yfd{bottom:197.670000px;}
.y149{bottom:206.130000px;}
.y51{bottom:206.310000px;}
.y2d{bottom:209.910000px;}
.y63{bottom:211.170000px;}
.yfc{bottom:225.570000px;}
.yaa{bottom:228.450000px;}
.y148{bottom:233.850000px;}
.y50{bottom:234.030000px;}
.y2c{bottom:237.630000px;}
.y62{bottom:238.890000px;}
.yf8{bottom:248.864980px;}
.ya9{bottom:256.170000px;}
.yf7{bottom:257.790000px;}
.y147{bottom:261.570000px;}
.y4f{bottom:261.930000px;}
.y2b{bottom:265.530000px;}
.y61{bottom:266.790000px;}
.yec{bottom:283.965000px;}
.ya8{bottom:284.070000px;}
.y146{bottom:289.470000px;}
.y4e{bottom:289.650000px;}
.y2a{bottom:293.250000px;}
.y60{bottom:294.510000px;}
.y9d{bottom:307.365000px;}
.yf6{bottom:307.830000px;}
.y145{bottom:317.190000px;}
.y4d{bottom:317.370000px;}
.y29{bottom:320.970000px;}
.y5f{bottom:322.230000px;}
.ya7{bottom:332.850000px;}
.y144{bottom:344.955000px;}
.y4c{bottom:345.135000px;}
.yd2{bottom:348.764959px;}
.y28{bottom:348.915000px;}
.y5e{bottom:349.995000px;}
.yeb{bottom:372.675000px;}
.y143{bottom:372.855000px;}
.y4b{bottom:373.035000px;}
.y9c{bottom:373.935000px;}
.y27{bottom:376.635000px;}
.y5d{bottom:377.895000px;}
.y9a{bottom:397.139959px;}
.y142{bottom:400.575000px;}
.y4a{bottom:400.755000px;}
.y99{bottom:401.655000px;}
.y26{bottom:404.355000px;}
.y5c{bottom:405.615000px;}
.yd1{bottom:415.335000px;}
.y141{bottom:428.295000px;}
.y49{bottom:428.475000px;}
.y98{bottom:429.555000px;}
.y25{bottom:432.075000px;}
.y5b{bottom:433.335000px;}
.yd0{bottom:443.055000px;}
.y140{bottom:456.015000px;}
.y48{bottom:456.375000px;}
.y97{bottom:457.275000px;}
.y24{bottom:459.975000px;}
.y5a{bottom:461.235000px;}
.yca{bottom:466.439959px;}
.y13f{bottom:479.414959px;}
.y13e{bottom:483.915000px;}
.y47{bottom:484.095000px;}
.y96{bottom:484.995000px;}
.ycf{bottom:487.515000px;}
.y23{bottom:487.695000px;}
.y59{bottom:488.955000px;}
.y13a{bottom:507.164959px;}
.y13c{bottom:511.664959px;}
.y46{bottom:511.815000px;}
.y95{bottom:512.715000px;}
.y138{bottom:513.090000px;}
.y22{bottom:515.415000px;}
.y137{bottom:516.135000px;}
.y58{bottom:516.675000px;}
.yc9{bottom:526.755000px;}
.y12e{bottom:539.339959px;}
.y45{bottom:539.535000px;}
.y94{bottom:540.615000px;}
.y21{bottom:543.315000px;}
.y57{bottom:544.395000px;}
.yb7{bottom:549.989959px;}
.y136{bottom:566.355000px;}
.y44{bottom:567.435000px;}
.y93{bottom:568.335000px;}
.y20{bottom:571.035000px;}
.y56{bottom:572.295000px;}
.yc8{bottom:576.975000px;}
.y43{bottom:595.155000px;}
.y55{bottom:595.515000px;}
.y92{bottom:596.055000px;}
.y1f{bottom:598.755000px;}
.y12d{bottom:607.785000px;}
.y42{bottom:622.905000px;}
.y91{bottom:623.805000px;}
.y1e{bottom:626.505000px;}
.y12c{bottom:635.505000px;}
.y41{bottom:650.805000px;}
.y90{bottom:651.705000px;}
.y1d{bottom:654.405000px;}
.y12a{bottom:658.739959px;}
.y129{bottom:663.239959px;}
.y128{bottom:667.725000px;}
.y40{bottom:678.525000px;}
.y8f{bottom:679.425000px;}
.y1c{bottom:682.125000px;}
.y11d{bottom:691.139919px;}
.y3f{bottom:706.245000px;}
.y8e{bottom:707.145000px;}
.y1b{bottom:709.845000px;}
.y127{bottom:719.565000px;}
.y3e{bottom:733.965000px;}
.y8d{bottom:735.045000px;}
.y1a{bottom:737.745000px;}
.y3d{bottom:761.865000px;}
.y8c{bottom:762.765000px;}
.y19{bottom:765.465000px;}
.y11c{bottom:766.725000px;}
.y3c{bottom:789.585000px;}
.y118{bottom:789.914919px;}
.y8b{bottom:790.485000px;}
.y18{bottom:793.185000px;}
.y11b{bottom:798.945000px;}
.y3b{bottom:817.305000px;}
.y8a{bottom:818.205000px;}
.y17{bottom:820.905000px;}
.y117{bottom:826.845000px;}
.y3a{bottom:845.025000px;}
.y89{bottom:846.105000px;}
.y16{bottom:848.805000px;}
.y116{bottom:854.745000px;}
.y39{bottom:872.970000px;}
.y88{bottom:873.870000px;}
.y15{bottom:876.570000px;}
.y115{bottom:882.510000px;}
.y80{bottom:897.014919px;}
.y86{bottom:900.090000px;}
.y38{bottom:900.690000px;}
.y14{bottom:904.290000px;}
.y84{bottom:904.590000px;}
.y114{bottom:905.639919px;}
.y83{bottom:909.150000px;}
.y113{bottom:913.290000px;}
.y37{bottom:928.410000px;}
.y13{bottom:932.010000px;}
.y112{bottom:936.239919px;}
.y7f{bottom:936.870000px;}
.y111{bottom:943.890000px;}
.y36{bottom:956.310000px;}
.y12{bottom:959.910000px;}
.y7d{bottom:960.014919px;}
.y7c{bottom:964.590000px;}
.y10f{bottom:967.064919px;}
.y10e{bottom:974.670000px;}
.y35{bottom:984.030000px;}
.y11{bottom:987.630000px;}
.y7b{bottom:992.490000px;}
.y10d{bottom:1002.390000px;}
.y34{bottom:1011.750000px;}
.y10{bottom:1015.350000px;}
.y7a{bottom:1020.210000px;}
.y10c{bottom:1030.290000px;}
.y33{bottom:1039.470000px;}
.yf{bottom:1043.250000px;}
.y74{bottom:1043.340000px;}
.y79{bottom:1046.414919px;}
.y77{bottom:1050.914919px;}
.y73{bottom:1055.490000px;}
.y10b{bottom:1058.010000px;}
.y32{bottom:1067.370000px;}
.ye{bottom:1070.970000px;}
.y72{bottom:1078.664919px;}
.y109{bottom:1081.139919px;}
.y70{bottom:1083.164919px;}
.y10a{bottom:1085.639919px;}
.y107{bottom:1087.139919px;}
.y6f{bottom:1087.710000px;}
.y106{bottom:1090.230000px;}
.yd{bottom:1095.090000px;}
.y6a{bottom:1110.689919px;}
.y101{bottom:1113.539919px;}
.y6d{bottom:1113.764919px;}
.y104{bottom:1118.039919px;}
.y100{bottom:1122.630000px;}
.yc{bottom:1122.810000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h62{height:17.999850px;}
.h1e{height:18.000939px;}
.h51{height:18.000980px;}
.h1c{height:20.700152px;}
.h1a{height:20.700233px;}
.h5b{height:22.500274px;}
.h17{height:22.500315px;}
.h1d{height:25.199247px;}
.h15{height:25.199328px;}
.h2e{height:27.000188px;}
.h61{height:27.000229px;}
.h7{height:27.576000px;}
.h4b{height:28.800206px;}
.h4f{height:28.800267px;}
.h49{height:31.499408px;}
.h19{height:31.500468px;}
.h12{height:31.500549px;}
.h59{height:38.705500px;}
.hf{height:38.711608px;}
.h45{height:40.694409px;}
.h41{height:40.714665px;}
.h13{height:40.954789px;}
.h55{height:40.990695px;}
.h36{height:41.061525px;}
.h34{height:41.081964px;}
.h50{height:41.244714px;}
.h4e{height:41.371950px;}
.h3c{height:41.372714px;}
.h25{height:41.392543px;}
.h2{height:41.400000px;}
.hd{height:52.198814px;}
.h38{height:52.198854px;}
.h4{height:53.709961px;}
.h27{height:53.998903px;}
.h20{height:58.498449px;}
.h39{height:58.499570px;}
.hc{height:59.066719px;}
.h5c{height:60.300114px;}
.h40{height:61.200063px;}
.h3b{height:63.800994px;}
.h32{height:64.802085px;}
.h6{height:66.757500px;}
.h54{height:67.501242px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.h43{height:76.716217px;}
.h58{height:77.278550px;}
.h5f{height:77.500960px;}
.h33{height:77.546981px;}
.h2d{height:78.001220px;}
.h24{height:78.129908px;}
.h3a{height:78.131350px;}
.h56{height:78.663124px;}
.h1b{height:79.640038px;}
.h16{height:80.389383px;}
.h52{height:80.429398px;}
.h63{height:80.511475px;}
.h31{height:80.986744px;}
.h18{height:81.068501px;}
.h48{height:81.245588px;}
.h30{height:81.387017px;}
.h2f{height:81.531577px;}
.h4a{height:81.807609px;}
.h57{height:81.841122px;}
.h5a{height:81.881859px;}
.h14{height:81.908422px;}
.h5e{height:82.076662px;}
.h60{height:82.117516px;}
.h37{height:82.125401px;}
.h35{height:82.166279px;}
.h29{height:82.316232px;}
.h4d{height:82.490597px;}
.h4c{height:82.531657px;}
.h2c{height:82.606458px;}
.h2a{height:82.647577px;}
.ha{height:82.676953px;}
.h22{height:82.742744px;}
.h3e{height:82.744271px;}
.h26{height:82.783930px;}
.h1f{height:83.732444px;}
.hb{height:84.898125px;}
.h46{height:85.021275px;}
.h44{height:85.131103px;}
.h42{height:95.536960px;}
.h9{height:96.508125px;}
.h23{height:99.127312px;}
.he{height:99.600564px;}
.h5d{height:100.339138px;}
.h53{height:100.828102px;}
.h28{height:100.965548px;}
.h21{height:101.093563px;}
.h2b{height:103.463076px;}
.h3d{height:103.883462px;}
.h10{height:116.986616px;}
.h3f{height:126.352930px;}
.h47{height:146.292987px;}
.h11{height:147.895431px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:11.699761px;}
.wc{width:11.699792px;}
.w26{width:15.299823px;}
.w10{width:16.199874px;}
.w9{width:16.199894px;}
.w11{width:16.199935px;}
.w22{width:18.000600px;}
.wa{width:22.499444px;}
.w1d{width:24.299869px;}
.wd{width:24.299950px;}
.we{width:25.199874px;}
.wb{width:25.199889px;}
.w1e{width:25.199909px;}
.w24{width:26.999420px;}
.w8{width:37.799835px;}
.w15{width:44.999906px;}
.w14{width:52.198127px;}
.w25{width:52.198147px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w20{width:69.301780px;}
.w1f{width:70.200459px;}
.w1c{width:72.000861px;}
.w17{width:88.200892px;}
.w1a{width:94.496351px;}
.w1b{width:106.194804px;}
.w16{width:107.999956px;}
.w7{width:118.800059px;}
.w23{width:128.704830px;}
.w13{width:133.197193px;}
.w21{width:142.202738px;}
.w19{width:200.927709px;}
.w12{width:204.156585px;}
.w18{width:367.189825px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:1.035740px;}
.x18{left:2.699925px;}
.x77{left:4.731597px;}
.x1b{left:6.607419px;}
.x2{left:8.640000px;}
.x33{left:12.793490px;}
.x22{left:15.670400px;}
.x7{left:19.800000px;}
.x36{left:22.731888px;}
.x1{left:31.860000px;}
.x41{left:35.464448px;}
.x47{left:37.834041px;}
.x3a{left:39.749348px;}
.x15{left:40.869574px;}
.x3e{left:42.219826px;}
.x5e{left:45.709232px;}
.x66{left:46.737581px;}
.x4a{left:48.175699px;}
.x50{left:49.849805px;}
.x4b{left:51.154769px;}
.x45{left:54.593321px;}
.x13{left:56.897415px;}
.x30{left:58.618439px;}
.x4{left:59.970000px;}
.x5d{left:62.353432px;}
.x14{left:63.462099px;}
.x5c{left:67.335191px;}
.x55{left:69.435258px;}
.x7a{left:70.949469px;}
.x49{left:73.725960px;}
.x3b{left:75.572192px;}
.x48{left:77.070386px;}
.x64{left:79.261272px;}
.x60{left:80.313858px;}
.x46{left:82.752481px;}
.x5{left:84.959987px;}
.x79{left:86.343841px;}
.x4f{left:88.405483px;}
.x38{left:91.398252px;}
.x59{left:93.872757px;}
.x63{left:96.727575px;}
.x44{left:97.749579px;}
.x34{left:99.854720px;}
.x74{left:100.925515px;}
.xa{left:103.895987px;}
.x2a{left:110.195987px;}
.x71{left:113.303891px;}
.x2b{left:115.439990px;}
.x73{left:117.997885px;}
.x37{left:125.514013px;}
.x8{left:127.475987px;}
.x72{left:129.632654px;}
.x35{left:136.897881px;}
.x6f{left:139.739990px;}
.x54{left:144.554242px;}
.x5b{left:149.945602px;}
.x32{left:152.108756px;}
.x58{left:155.857441px;}
.x52{left:177.023519px;}
.x5a{left:183.983438px;}
.x3d{left:185.489980px;}
.x31{left:189.990248px;}
.x57{left:192.940754px;}
.x67{left:199.469987px;}
.x75{left:205.664980px;}
.x70{left:209.009987px;}
.x68{left:210.539980px;}
.x4c{left:215.669987px;}
.xe{left:216.929987px;}
.x7b{left:220.065000px;}
.x76{left:221.789987px;}
.xb{left:236.369987px;}
.x3f{left:237.629987px;}
.x2c{left:240.389980px;}
.x16{left:246.269987px;}
.x40{left:249.764980px;}
.x51{left:252.138012px;}
.x2d{left:256.529987px;}
.x4e{left:257.721452px;}
.x3c{left:260.669987px;}
.x53{left:268.828457px;}
.x78{left:270.209987px;}
.x69{left:281.264980px;}
.xf{left:285.734987px;}
.x61{left:288.074987px;}
.x43{left:294.734987px;}
.x6a{left:297.434987px;}
.xc{left:313.274987px;}
.x5f{left:328.394987px;}
.x39{left:331.634987px;}
.x21{left:334.514980px;}
.xd{left:351.614987px;}
.x4d{left:355.753498px;}
.x23{left:359.714987px;}
.x10{left:368.894987px;}
.x62{left:373.439959px;}
.x24{left:374.489959px;}
.x11{left:375.914987px;}
.x17{left:378.464959px;}
.x25{left:386.174987px;}
.x12{left:389.234987px;}
.x1d{left:410.864959px;}
.x19{left:416.234987px;}
.x1e{left:433.334987px;}
.x1a{left:440.564959px;}
.x9{left:446.474987px;}
.x1f{left:450.989959px;}
.x1c{left:456.734987px;}
.x6b{left:463.739959px;}
.x20{left:467.204987px;}
.x65{left:479.624987px;}
.x26{left:482.489959px;}
.x6c{left:488.984987px;}
.x56{left:494.744987px;}
.x27{left:498.704987px;}
.x7e{left:516.164959px;}
.x7f{left:532.364987px;}
.x6d{left:536.339959px;}
.x6e{left:552.524987px;}
.x7c{left:556.439959px;}
.x7d{left:571.784987px;}
.x2e{left:707.639919px;}
.x2f{left:723.929987px;}
.x28{left:783.614919px;}
.x3{left:792.690000px;}
.x6{left:797.550000px;}
.x29{left:807.989987px;}
@media print{
.v4{vertical-align:-58.455147pt;}
.v11{vertical-align:-57.400696pt;}
.vd{vertical-align:-53.471493pt;}
.vf{vertical-align:-45.796079pt;}
.v8{vertical-align:-40.256896pt;}
.v7{vertical-align:-38.982540pt;}
.v9{vertical-align:-37.457190pt;}
.v6{vertical-align:-18.790595pt;}
.ve{vertical-align:-12.023832pt;}
.v10{vertical-align:-2.824886pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:12.667494pt;}
.v3{vertical-align:18.682986pt;}
.va{vertical-align:19.936250pt;}
.v5{vertical-align:27.933696pt;}
.vb{vertical-align:38.726642pt;}
.v2{vertical-align:39.772161pt;}
.v1{vertical-align:67.546179pt;}
.ls2b{letter-spacing:-1.296000pt;}
.ls2c{letter-spacing:-0.800000pt;}
.ls2a{letter-spacing:-0.656000pt;}
.ls25{letter-spacing:-0.336533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.311467pt;}
.lsd{letter-spacing:-0.286933pt;}
.ls13{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.lsa{letter-spacing:0.033280pt;}
.ls2d{letter-spacing:0.131627pt;}
.ls7{letter-spacing:0.184960pt;}
.ls2e{letter-spacing:0.193280pt;}
.ls2f{letter-spacing:0.239360pt;}
.lse{letter-spacing:0.250460pt;}
.ls22{letter-spacing:0.256147pt;}
.ls26{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.328320pt;}
.ls6{letter-spacing:0.336533pt;}
.ls29{letter-spacing:0.336640pt;}
.ls8{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.464640pt;}
.ls12{letter-spacing:0.576086pt;}
.ls21{letter-spacing:1.197792pt;}
.ls1b{letter-spacing:1.267356pt;}
.ls27{letter-spacing:2.400000pt;}
.lsb{letter-spacing:34.950633pt;}
.ls1f{letter-spacing:38.956487pt;}
.ls15{letter-spacing:39.105879pt;}
.ls1d{letter-spacing:88.380970pt;}
.ls1c{letter-spacing:88.402074pt;}
.ls1e{letter-spacing:88.528449pt;}
.ls16{letter-spacing:88.778741pt;}
.ls18{letter-spacing:108.878862pt;}
.ls17{letter-spacing:108.889336pt;}
.lsc{letter-spacing:151.992634pt;}
.lsf{letter-spacing:152.764176pt;}
.ls14{letter-spacing:188.570655pt;}
.ls24{letter-spacing:248.474662pt;}
.ls23{letter-spacing:305.866942pt;}
.ls11{letter-spacing:318.954574pt;}
.ls10{letter-spacing:555.943435pt;}
.ls19{letter-spacing:1016.702274pt;}
.ls1a{letter-spacing:1078.817253pt;}
.ws1a{word-spacing:-41.163071pt;}
.ws10{word-spacing:-41.162312pt;}
.ws3a{word-spacing:-40.830954pt;}
.ws2e{word-spacing:-39.991577pt;}
.ws0{word-spacing:-21.600000pt;}
.ws17{word-spacing:-20.427015pt;}
.ws25{word-spacing:-20.244385pt;}
.ws4{word-spacing:-19.056533pt;}
.ws5{word-spacing:-19.040000pt;}
.ws37{word-spacing:-19.023467pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws7{word-spacing:-18.695040pt;}
.ws8{word-spacing:-18.433067pt;}
.ws16{word-spacing:-18.408533pt;}
.ws3{word-spacing:-18.400000pt;}
.ws3b{word-spacing:-18.064000pt;}
.ws3c{word-spacing:-17.424000pt;}
.ws1e{word-spacing:-1.304846pt;}
.ws32{word-spacing:-0.330896pt;}
.ws9{word-spacing:-0.287610pt;}
.ws1c{word-spacing:-0.074978pt;}
.wsf{word-spacing:-0.074977pt;}
.ws13{word-spacing:-0.074853pt;}
.ws2c{word-spacing:-0.074748pt;}
.ws39{word-spacing:-0.074373pt;}
.wsc{word-spacing:-0.074221pt;}
.ws36{word-spacing:-0.074160pt;}
.ws29{word-spacing:-0.074093pt;}
.ws14{word-spacing:-0.073843pt;}
.ws15{word-spacing:-0.073712pt;}
.ws2d{word-spacing:-0.072844pt;}
.ws11{word-spacing:-0.037489pt;}
.ws34{word-spacing:-0.037143pt;}
.ws20{word-spacing:-0.036875pt;}
.ws6{word-spacing:0.000000pt;}
.ws30{word-spacing:85.126707pt;}
.ws2a{word-spacing:117.359783pt;}
.ws2f{word-spacing:118.268454pt;}
.wsd{word-spacing:131.808112pt;}
.wsb{word-spacing:138.679732pt;}
.ws19{word-spacing:144.028538pt;}
.ws33{word-spacing:153.899348pt;}
.ws18{word-spacing:156.304242pt;}
.ws27{word-spacing:158.178213pt;}
.ws38{word-spacing:186.246020pt;}
.ws28{word-spacing:187.726303pt;}
.ws24{word-spacing:200.387047pt;}
.wsa{word-spacing:207.874265pt;}
.ws2b{word-spacing:233.167970pt;}
.ws35{word-spacing:234.915909pt;}
.ws31{word-spacing:267.058475pt;}
.ws12{word-spacing:299.256700pt;}
.wse{word-spacing:313.276591pt;}
.ws23{word-spacing:325.173727pt;}
.ws21{word-spacing:377.198840pt;}
.ws22{word-spacing:452.421309pt;}
.ws26{word-spacing:513.860054pt;}
.ws1f{word-spacing:555.199214pt;}
.ws1b{word-spacing:587.283193pt;}
.ws1d{word-spacing:777.764046pt;}
._41{margin-left:-709.509791pt;}
._3d{margin-left:-434.603089pt;}
._3b{margin-left:-390.984866pt;}
._3a{margin-left:-387.853134pt;}
._46{margin-left:-359.574215pt;}
._44{margin-left:-328.748123pt;}
._45{margin-left:-311.684444pt;}
._42{margin-left:-310.481027pt;}
._28{margin-left:-301.023058pt;}
._43{margin-left:-293.022993pt;}
._33{margin-left:-290.413201pt;}
._39{margin-left:-271.442227pt;}
._34{margin-left:-230.393897pt;}
._38{margin-left:-217.985680pt;}
._26{margin-left:-212.450559pt;}
._2f{margin-left:-207.820349pt;}
._4f{margin-left:-204.277382pt;}
._48{margin-left:-189.139196pt;}
._49{margin-left:-187.895459pt;}
._4a{margin-left:-184.363017pt;}
._31{margin-left:-180.225754pt;}
._47{margin-left:-174.595316pt;}
._4b{margin-left:-170.805147pt;}
._5d{margin-left:-164.169658pt;}
._37{margin-left:-163.045958pt;}
._5c{margin-left:-158.955902pt;}
._5f{margin-left:-156.347187pt;}
._3c{margin-left:-154.645240pt;}
._32{margin-left:-153.607822pt;}
._58{margin-left:-149.750843pt;}
._5e{margin-left:-147.870281pt;}
._5a{margin-left:-144.298804pt;}
._30{margin-left:-140.571846pt;}
._36{margin-left:-136.714107pt;}
._59{margin-left:-127.994209pt;}
._55{margin-left:-121.698300pt;}
._50{margin-left:-118.264321pt;}
._54{margin-left:-115.967126pt;}
._53{margin-left:-114.838878pt;}
._4c{margin-left:-106.775731pt;}
._4e{margin-left:-103.802854pt;}
._4d{margin-left:-98.939497pt;}
._27{margin-left:-97.369343pt;}
._56{margin-left:-96.436051pt;}
._57{margin-left:-93.944627pt;}
._52{margin-left:-91.433312pt;}
._35{margin-left:-89.268781pt;}
._25{margin-left:-82.479688pt;}
._3e{margin-left:-73.679970pt;}
._51{margin-left:-53.444244pt;}
._5b{margin-left:-52.339060pt;}
._3f{margin-left:-31.261284pt;}
._40{margin-left:-27.230619pt;}
._2e{margin-left:-7.025042pt;}
._18{margin-left:-5.391360pt;}
._15{margin-left:-3.594240pt;}
._12{margin-left:-2.469547pt;}
._1{margin-left:-1.029973pt;}
._0{width:1.237333pt;}
._8{width:2.639573pt;}
._63{width:3.563520pt;}
._2{width:4.492800pt;}
._3{width:5.596587pt;}
._6{width:6.937600pt;}
._9{width:8.686080pt;}
._b{width:9.734400pt;}
._c{width:10.905600pt;}
._17{width:12.150400pt;}
._16{width:13.178880pt;}
._23{width:14.227200pt;}
._11{width:15.631573pt;}
._d{width:17.222400pt;}
._21{width:19.840853pt;}
._20{width:21.116160pt;}
._22{width:23.212800pt;}
._a{width:24.242773pt;}
._10{width:25.291093pt;}
._19{width:26.208000pt;}
._1a{width:27.424427pt;}
._62{width:28.522240pt;}
._1e{width:33.061333pt;}
._1d{width:34.101120pt;}
._13{width:35.118720pt;}
._7{width:36.972373pt;}
._2a{width:39.406720pt;}
._4{width:40.510080pt;}
._29{width:41.708160pt;}
._5{width:42.627840pt;}
._6c{width:44.777600pt;}
._61{width:46.482133pt;}
._64{width:51.257173pt;}
._65{width:52.728747pt;}
._6a{width:55.354240pt;}
._6b{width:56.426027pt;}
._1f{width:59.361493pt;}
._14{width:60.428160pt;}
._2c{width:61.383253pt;}
._67{width:63.545600pt;}
._66{width:64.453333pt;}
._2b{width:70.219093pt;}
._69{width:73.102720pt;}
._68{width:74.056320pt;}
._60{width:75.479040pt;}
._1b{width:82.068480pt;}
._1c{width:83.173333pt;}
._e{width:85.644373pt;}
._f{width:87.141973pt;}
._24{width:92.776320pt;}
._2d{width:295.516411pt;}
.fs1c{font-size:36.875018pt;}
.fs20{font-size:37.109687pt;}
.fs8{font-size:37.110960pt;}
.fs24{font-size:37.143496pt;}
.fs6{font-size:37.149357pt;}
.fs19{font-size:37.207678pt;}
.fs28{font-size:37.252219pt;}
.fs14{font-size:37.363328pt;}
.fs22{font-size:37.373674pt;}
.fs10{font-size:37.488968pt;}
.fs1b{font-size:37.489660pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:72.165388pt;}
.fsa{font-size:72.844403pt;}
.fs29{font-size:72.955036pt;}
.fsb{font-size:73.459782pt;}
.fs1d{font-size:73.620249pt;}
.fs16{font-size:73.711713pt;}
.fs15{font-size:73.842640pt;}
.fs1f{font-size:74.092640pt;}
.fs25{font-size:74.159888pt;}
.fs9{font-size:74.220872pt;}
.fs27{font-size:74.373322pt;}
.fs18{font-size:74.417486pt;}
.fs7{font-size:74.424726pt;}
.fs21{font-size:74.748407pt;}
.fs13{font-size:74.853394pt;}
.fs4{font-size:74.880000pt;}
.fsf{font-size:74.976888pt;}
.fs1a{font-size:74.978272pt;}
.fsd{font-size:75.873700pt;}
.fs17{font-size:77.718433pt;}
.fs12{font-size:78.994268pt;}
.fs3{font-size:85.120000pt;}
.fs1e{font-size:94.676463pt;}
.fs5{font-size:95.581072pt;}
.fs26{font-size:96.289840pt;}
.fs23{font-size:96.759071pt;}
.fs11{font-size:96.890970pt;}
.fse{font-size:97.013819pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y139{bottom:2.878949pt;}
.y108{bottom:2.879012pt;}
.ya4{bottom:3.301481pt;}
.y102{bottom:3.496779pt;}
.y3{bottom:3.520000pt;}
.y9b{bottom:3.779133pt;}
.y105{bottom:3.779165pt;}
.y67{bottom:3.819259pt;}
.ycc{bottom:3.819273pt;}
.yce{bottom:3.819275pt;}
.yad{bottom:4.063440pt;}
.y85{bottom:4.161938pt;}
.y78{bottom:4.161998pt;}
.y71{bottom:4.222152pt;}
.y7e{bottom:4.222162pt;}
.y13d{bottom:4.254126pt;}
.yd4{bottom:4.634886pt;}
.yd7{bottom:4.634896pt;}
.yda{bottom:4.634903pt;}
.ydd{bottom:4.634912pt;}
.ya{bottom:4.640000pt;}
.yba{bottom:5.195493pt;}
.yc1{bottom:5.195498pt;}
.yc3{bottom:5.195500pt;}
.ybe{bottom:5.195507pt;}
.yf0{bottom:5.213009pt;}
.y75{bottom:6.063571pt;}
.y6b{bottom:6.063584pt;}
.y81{bottom:6.063598pt;}
.y11e{bottom:6.452653pt;}
.y9{bottom:6.560000pt;}
.ye4{bottom:6.634773pt;}
.ye7{bottom:6.634790pt;}
.y110{bottom:6.745044pt;}
.yee{bottom:6.971870pt;}
.yf5{bottom:7.163782pt;}
.ya1{bottom:7.999647pt;}
.y87{bottom:8.062698pt;}
.y6e{bottom:8.062741pt;}
.y9f{bottom:8.063145pt;}
.yf9{bottom:8.095048pt;}
.yb4{bottom:8.126880pt;}
.y13b{bottom:8.126887pt;}
.y12b{bottom:8.158661pt;}
.yb5{bottom:8.158695pt;}
.yfa{bottom:8.212589pt;}
.yfb{bottom:8.212591pt;}
.y11a{bottom:8.212598pt;}
.y103{bottom:8.212654pt;}
.y119{bottom:8.276828pt;}
.y130{bottom:9.918672pt;}
.y76{bottom:10.730263pt;}
.y82{bottom:10.730327pt;}
.y6c{bottom:10.730330pt;}
.ye2{bottom:11.460177pt;}
.yea{bottom:11.460178pt;}
.ydf{bottom:11.460180pt;}
.ye0{bottom:11.777523pt;}
.y120{bottom:11.813961pt;}
.y125{bottom:11.813966pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y66{bottom:15.403830pt;}
.ycb{bottom:15.403847pt;}
.ye1{bottom:16.444230pt;}
.ye3{bottom:16.444246pt;}
.yb8{bottom:17.135083pt;}
.ybc{bottom:17.135098pt;}
.ya3{bottom:17.809433pt;}
.y68{bottom:18.433046pt;}
.ycd{bottom:18.433069pt;}
.yb0{bottom:18.539216pt;}
.yd3{bottom:19.174004pt;}
.yd6{bottom:19.174014pt;}
.yd9{bottom:19.174021pt;}
.ydc{bottom:19.174030pt;}
.yf2{bottom:19.509049pt;}
.yc5{bottom:19.587924pt;}
.ye6{bottom:21.141819pt;}
.ye9{bottom:21.141836pt;}
.yf3{bottom:21.426848pt;}
.y2{bottom:21.920000pt;}
.ya0{bottom:22.475523pt;}
.yc2{bottom:24.267289pt;}
.yc0{bottom:24.267295pt;}
.yc7{bottom:24.267301pt;}
.y134{bottom:24.296345pt;}
.y132{bottom:24.296351pt;}
.yb9{bottom:24.976628pt;}
.ybd{bottom:24.976643pt;}
.y126{bottom:25.457926pt;}
.y124{bottom:25.457934pt;}
.y122{bottom:25.457943pt;}
.yaf{bottom:25.524154pt;}
.ya5{bottom:29.458947pt;}
.ya6{bottom:29.490368pt;}
.yef{bottom:29.710049pt;}
.yae{bottom:30.158958pt;}
.yac{bottom:30.253225pt;}
.yc4{bottom:31.173211pt;}
.yd5{bottom:31.206034pt;}
.yd8{bottom:31.206044pt;}
.ydb{bottom:31.206051pt;}
.yde{bottom:31.206061pt;}
.y135{bottom:31.242533pt;}
.yf1{bottom:31.309973pt;}
.ye5{bottom:32.792853pt;}
.ye8{bottom:32.792869pt;}
.ya2{bottom:34.157767pt;}
.y9e{bottom:34.220610pt;}
.y11f{bottom:34.221434pt;}
.yc6{bottom:35.851257pt;}
.y131{bottom:35.862194pt;}
.y133{bottom:35.862199pt;}
.y12f{bottom:35.959475pt;}
.ybb{bottom:36.949225pt;}
.ybf{bottom:36.949239pt;}
.yf4{bottom:38.154166pt;}
.y121{bottom:38.876624pt;}
.y123{bottom:38.876633pt;}
.y8{bottom:39.680000pt;}
.yed{bottom:44.230712pt;}
.y14d{bottom:84.672000pt;}
.y31{bottom:87.872000pt;}
.yb6{bottom:98.592000pt;}
.y14c{bottom:109.152000pt;}
.y54{bottom:109.312000pt;}
.y65{bottom:109.346667pt;}
.y30{bottom:112.512000pt;}
.yfe{bottom:116.546667pt;}
.yb3{bottom:119.280000pt;}
.yb2{bottom:127.232000pt;}
.y69{bottom:128.032000pt;}
.y14b{bottom:133.786667pt;}
.y53{bottom:134.106667pt;}
.y2f{bottom:137.306667pt;}
.yff{bottom:139.226667pt;}
.yab{bottom:147.946667pt;}
.y14a{bottom:158.586667pt;}
.y52{bottom:158.746667pt;}
.y2e{bottom:161.946667pt;}
.y64{bottom:163.066667pt;}
.yb1{bottom:166.586667pt;}
.yfd{bottom:175.706667pt;}
.y149{bottom:183.226667pt;}
.y51{bottom:183.386667pt;}
.y2d{bottom:186.586667pt;}
.y63{bottom:187.706667pt;}
.yfc{bottom:200.506667pt;}
.yaa{bottom:203.066667pt;}
.y148{bottom:207.866667pt;}
.y50{bottom:208.026667pt;}
.y2c{bottom:211.226667pt;}
.y62{bottom:212.346667pt;}
.yf8{bottom:221.213315pt;}
.ya9{bottom:227.706667pt;}
.yf7{bottom:229.146667pt;}
.y147{bottom:232.506667pt;}
.y4f{bottom:232.826667pt;}
.y2b{bottom:236.026667pt;}
.y61{bottom:237.146667pt;}
.yec{bottom:252.413333pt;}
.ya8{bottom:252.506667pt;}
.y146{bottom:257.306667pt;}
.y4e{bottom:257.466667pt;}
.y2a{bottom:260.666667pt;}
.y60{bottom:261.786667pt;}
.y9d{bottom:273.213333pt;}
.yf6{bottom:273.626667pt;}
.y145{bottom:281.946667pt;}
.y4d{bottom:282.106667pt;}
.y29{bottom:285.306667pt;}
.y5f{bottom:286.426667pt;}
.ya7{bottom:295.866667pt;}
.y144{bottom:306.626667pt;}
.y4c{bottom:306.786667pt;}
.yd2{bottom:310.013297pt;}
.y28{bottom:310.146667pt;}
.y5e{bottom:311.106667pt;}
.yeb{bottom:331.266667pt;}
.y143{bottom:331.426667pt;}
.y4b{bottom:331.586667pt;}
.y9c{bottom:332.386667pt;}
.y27{bottom:334.786667pt;}
.y5d{bottom:335.906667pt;}
.y9a{bottom:353.013297pt;}
.y142{bottom:356.066667pt;}
.y4a{bottom:356.226667pt;}
.y99{bottom:357.026667pt;}
.y26{bottom:359.426667pt;}
.y5c{bottom:360.546667pt;}
.yd1{bottom:369.186667pt;}
.y141{bottom:380.706667pt;}
.y49{bottom:380.866667pt;}
.y98{bottom:381.826667pt;}
.y25{bottom:384.066667pt;}
.y5b{bottom:385.186667pt;}
.yd0{bottom:393.826667pt;}
.y140{bottom:405.346667pt;}
.y48{bottom:405.666667pt;}
.y97{bottom:406.466667pt;}
.y24{bottom:408.866667pt;}
.y5a{bottom:409.986667pt;}
.yca{bottom:414.613297pt;}
.y13f{bottom:426.146630pt;}
.y13e{bottom:430.146667pt;}
.y47{bottom:430.306667pt;}
.y96{bottom:431.106667pt;}
.ycf{bottom:433.346667pt;}
.y23{bottom:433.506667pt;}
.y59{bottom:434.626667pt;}
.y13a{bottom:450.813297pt;}
.y13c{bottom:454.813297pt;}
.y46{bottom:454.946667pt;}
.y95{bottom:455.746667pt;}
.y138{bottom:456.080000pt;}
.y22{bottom:458.146667pt;}
.y137{bottom:458.786667pt;}
.y58{bottom:459.266667pt;}
.yc9{bottom:468.226667pt;}
.y12e{bottom:479.413297pt;}
.y45{bottom:479.586667pt;}
.y94{bottom:480.546667pt;}
.y21{bottom:482.946667pt;}
.y57{bottom:483.906667pt;}
.yb7{bottom:488.879964pt;}
.y136{bottom:503.426667pt;}
.y44{bottom:504.386667pt;}
.y93{bottom:505.186667pt;}
.y20{bottom:507.586667pt;}
.y56{bottom:508.706667pt;}
.yc8{bottom:512.866667pt;}
.y43{bottom:529.026667pt;}
.y55{bottom:529.346667pt;}
.y92{bottom:529.826667pt;}
.y1f{bottom:532.226667pt;}
.y12d{bottom:540.253333pt;}
.y42{bottom:553.693333pt;}
.y91{bottom:554.493333pt;}
.y1e{bottom:556.893333pt;}
.y12c{bottom:564.893333pt;}
.y41{bottom:578.493333pt;}
.y90{bottom:579.293333pt;}
.y1d{bottom:581.693333pt;}
.y12a{bottom:585.546630pt;}
.y129{bottom:589.546630pt;}
.y128{bottom:593.533333pt;}
.y40{bottom:603.133333pt;}
.y8f{bottom:603.933333pt;}
.y1c{bottom:606.333333pt;}
.y11d{bottom:614.346594pt;}
.y3f{bottom:627.773333pt;}
.y8e{bottom:628.573333pt;}
.y1b{bottom:630.973333pt;}
.y127{bottom:639.613333pt;}
.y3e{bottom:652.413333pt;}
.y8d{bottom:653.373333pt;}
.y1a{bottom:655.773333pt;}
.y3d{bottom:677.213333pt;}
.y8c{bottom:678.013333pt;}
.y19{bottom:680.413333pt;}
.y11c{bottom:681.533333pt;}
.y3c{bottom:701.853333pt;}
.y118{bottom:702.146594pt;}
.y8b{bottom:702.653333pt;}
.y18{bottom:705.053333pt;}
.y11b{bottom:710.173333pt;}
.y3b{bottom:726.493333pt;}
.y8a{bottom:727.293333pt;}
.y17{bottom:729.693333pt;}
.y117{bottom:734.973333pt;}
.y3a{bottom:751.133333pt;}
.y89{bottom:752.093333pt;}
.y16{bottom:754.493333pt;}
.y116{bottom:759.773333pt;}
.y39{bottom:775.973333pt;}
.y88{bottom:776.773333pt;}
.y15{bottom:779.173333pt;}
.y115{bottom:784.453333pt;}
.y80{bottom:797.346594pt;}
.y86{bottom:800.080000pt;}
.y38{bottom:800.613333pt;}
.y14{bottom:803.813333pt;}
.y84{bottom:804.080000pt;}
.y114{bottom:805.013261pt;}
.y83{bottom:808.133333pt;}
.y113{bottom:811.813333pt;}
.y37{bottom:825.253333pt;}
.y13{bottom:828.453333pt;}
.y112{bottom:832.213261pt;}
.y7f{bottom:832.773333pt;}
.y111{bottom:839.013333pt;}
.y36{bottom:850.053333pt;}
.y12{bottom:853.253333pt;}
.y7d{bottom:853.346594pt;}
.y7c{bottom:857.413333pt;}
.y10f{bottom:859.613261pt;}
.y10e{bottom:866.373333pt;}
.y35{bottom:874.693333pt;}
.y11{bottom:877.893333pt;}
.y7b{bottom:882.213333pt;}
.y10d{bottom:891.013333pt;}
.y34{bottom:899.333333pt;}
.y10{bottom:902.533333pt;}
.y7a{bottom:906.853333pt;}
.y10c{bottom:915.813333pt;}
.y33{bottom:923.973333pt;}
.yf{bottom:927.333333pt;}
.y74{bottom:927.413333pt;}
.y79{bottom:930.146594pt;}
.y77{bottom:934.146594pt;}
.y73{bottom:938.213333pt;}
.y10b{bottom:940.453333pt;}
.y32{bottom:948.773333pt;}
.ye{bottom:951.973333pt;}
.y72{bottom:958.813261pt;}
.y109{bottom:961.013261pt;}
.y70{bottom:962.813261pt;}
.y10a{bottom:965.013261pt;}
.y107{bottom:966.346594pt;}
.y6f{bottom:966.853333pt;}
.y106{bottom:969.093333pt;}
.yd{bottom:973.413333pt;}
.y6a{bottom:987.279928pt;}
.y101{bottom:989.813261pt;}
.y6d{bottom:990.013261pt;}
.y104{bottom:993.813261pt;}
.y100{bottom:997.893333pt;}
.yc{bottom:998.053333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h62{height:15.999866pt;}
.h1e{height:16.000835pt;}
.h51{height:16.000871pt;}
.h1c{height:18.400135pt;}
.h1a{height:18.400207pt;}
.h5b{height:20.000244pt;}
.h17{height:20.000280pt;}
.h1d{height:22.399331pt;}
.h15{height:22.399403pt;}
.h2e{height:24.000167pt;}
.h61{height:24.000203pt;}
.h7{height:24.512000pt;}
.h4b{height:25.600183pt;}
.h4f{height:25.600237pt;}
.h49{height:27.999474pt;}
.h19{height:28.000416pt;}
.h12{height:28.000488pt;}
.h59{height:34.404889pt;}
.hf{height:34.410318pt;}
.h45{height:36.172808pt;}
.h41{height:36.190814pt;}
.h13{height:36.404257pt;}
.h55{height:36.436174pt;}
.h36{height:36.499134pt;}
.h34{height:36.517301pt;}
.h50{height:36.661968pt;}
.h4e{height:36.775066pt;}
.h3c{height:36.775745pt;}
.h25{height:36.793372pt;}
.h2{height:36.800000pt;}
.hd{height:46.398945pt;}
.h38{height:46.398982pt;}
.h4{height:47.742188pt;}
.h27{height:47.999025pt;}
.h20{height:51.998622pt;}
.h39{height:51.999618pt;}
.hc{height:52.503750pt;}
.h5c{height:53.600101pt;}
.h40{height:54.400056pt;}
.h3b{height:56.711995pt;}
.h32{height:57.601853pt;}
.h6{height:59.340000pt;}
.h54{height:60.001104pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.h43{height:68.192193pt;}
.h58{height:68.692045pt;}
.h5f{height:68.889742pt;}
.h33{height:68.930650pt;}
.h2d{height:69.334418pt;}
.h24{height:69.448807pt;}
.h3a{height:69.450089pt;}
.h56{height:69.922777pt;}
.h1b{height:70.791145pt;}
.h16{height:71.457230pt;}
.h52{height:71.492798pt;}
.h63{height:71.565755pt;}
.h31{height:71.988217pt;}
.h18{height:72.060890pt;}
.h48{height:72.218301pt;}
.h30{height:72.344016pt;}
.h2f{height:72.472513pt;}
.h4a{height:72.717874pt;}
.h57{height:72.747664pt;}
.h5a{height:72.783874pt;}
.h14{height:72.807486pt;}
.h5e{height:72.957033pt;}
.h60{height:72.993348pt;}
.h37{height:73.000356pt;}
.h35{height:73.036693pt;}
.h29{height:73.169984pt;}
.h4d{height:73.324975pt;}
.h4c{height:73.361473pt;}
.h2c{height:73.427963pt;}
.h2a{height:73.464513pt;}
.ha{height:73.490625pt;}
.h22{height:73.549106pt;}
.h3e{height:73.550463pt;}
.h26{height:73.585715pt;}
.h1f{height:74.428839pt;}
.hb{height:75.465000pt;}
.h46{height:75.574467pt;}
.h44{height:75.672091pt;}
.h42{height:84.921742pt;}
.h9{height:85.785000pt;}
.h23{height:88.113166pt;}
.he{height:88.533835pt;}
.h5d{height:89.190345pt;}
.h53{height:89.624979pt;}
.h28{height:89.747154pt;}
.h21{height:89.860945pt;}
.h2b{height:91.967179pt;}
.h3d{height:92.340855pt;}
.h10{height:103.988103pt;}
.h3f{height:112.313715pt;}
.h47{height:130.038211pt;}
.h11{height:131.462605pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:10.399788pt;}
.wc{width:10.399815pt;}
.w26{width:13.599843pt;}
.w10{width:14.399888pt;}
.w9{width:14.399906pt;}
.w11{width:14.399942pt;}
.w22{width:16.000533pt;}
.wa{width:19.999506pt;}
.w1d{width:21.599883pt;}
.wd{width:21.599956pt;}
.we{width:22.399888pt;}
.wb{width:22.399901pt;}
.w1e{width:22.399919pt;}
.w24{width:23.999485pt;}
.w8{width:33.599853pt;}
.w15{width:39.999917pt;}
.w14{width:46.398335pt;}
.w25{width:46.398353pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w20{width:61.601582pt;}
.w1f{width:62.400408pt;}
.w1c{width:64.000765pt;}
.w17{width:78.400793pt;}
.w1a{width:83.996757pt;}
.w1b{width:94.395382pt;}
.w16{width:95.999961pt;}
.w7{width:105.600052pt;}
.w23{width:114.404293pt;}
.w13{width:118.397505pt;}
.w21{width:126.402434pt;}
.w19{width:178.602408pt;}
.w12{width:181.472520pt;}
.w18{width:326.390956pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:0.920658pt;}
.x18{left:2.399934pt;}
.x77{left:4.205864pt;}
.x1b{left:5.873262pt;}
.x2{left:7.680000pt;}
.x33{left:11.371991pt;}
.x22{left:13.929244pt;}
.x7{left:17.600000pt;}
.x36{left:20.206123pt;}
.x1{left:28.320000pt;}
.x41{left:31.523954pt;}
.x47{left:33.630259pt;}
.x3a{left:35.332753pt;}
.x15{left:36.328510pt;}
.x3e{left:37.528734pt;}
.x5e{left:40.630428pt;}
.x66{left:41.544516pt;}
.x4a{left:42.822844pt;}
.x50{left:44.310938pt;}
.x4b{left:45.470906pt;}
.x45{left:48.527396pt;}
.x13{left:50.575480pt;}
.x30{left:52.105279pt;}
.x4{left:53.306667pt;}
.x5d{left:55.425273pt;}
.x14{left:56.410755pt;}
.x5c{left:59.853503pt;}
.x55{left:61.720229pt;}
.x7a{left:63.066194pt;}
.x49{left:65.534187pt;}
.x3b{left:67.175282pt;}
.x48{left:68.507010pt;}
.x64{left:70.454464pt;}
.x60{left:71.390096pt;}
.x46{left:73.557761pt;}
.x5{left:75.519988pt;}
.x79{left:76.750081pt;}
.x4f{left:78.582651pt;}
.x38{left:81.242891pt;}
.x59{left:83.442451pt;}
.x63{left:85.980067pt;}
.x44{left:86.888515pt;}
.x34{left:88.759751pt;}
.x74{left:89.711569pt;}
.xa{left:92.351988pt;}
.x2a{left:97.951988pt;}
.x71{left:100.714570pt;}
.x2b{left:102.613324pt;}
.x73{left:104.887009pt;}
.x37{left:111.568012pt;}
.x8{left:113.311988pt;}
.x72{left:115.229026pt;}
.x35{left:121.687005pt;}
.x6f{left:124.213324pt;}
.x54{left:128.492659pt;}
.x5b{left:133.284979pt;}
.x32{left:135.207783pt;}
.x58{left:138.539948pt;}
.x52{left:157.354239pt;}
.x5a{left:163.540834pt;}
.x3d{left:164.879982pt;}
.x31{left:168.880221pt;}
.x57{left:171.502893pt;}
.x67{left:177.306655pt;}
.x75{left:182.813315pt;}
.x70{left:185.786655pt;}
.x68{left:187.146649pt;}
.x4c{left:191.706655pt;}
.xe{left:192.826655pt;}
.x7b{left:195.613333pt;}
.x76{left:197.146655pt;}
.xb{left:210.106655pt;}
.x3f{left:211.226655pt;}
.x2c{left:213.679982pt;}
.x16{left:218.906655pt;}
.x40{left:222.013315pt;}
.x51{left:224.122678pt;}
.x2d{left:228.026655pt;}
.x4e{left:229.085735pt;}
.x3c{left:231.706655pt;}
.x53{left:238.958628pt;}
.x78{left:240.186655pt;}
.x69{left:250.013315pt;}
.xf{left:253.986655pt;}
.x61{left:256.066655pt;}
.x43{left:261.986655pt;}
.x6a{left:264.386655pt;}
.xc{left:278.466655pt;}
.x5f{left:291.906655pt;}
.x39{left:294.786655pt;}
.x21{left:297.346649pt;}
.xd{left:312.546655pt;}
.x4d{left:316.225332pt;}
.x23{left:319.746655pt;}
.x10{left:327.906655pt;}
.x62{left:331.946630pt;}
.x24{left:332.879964pt;}
.x11{left:334.146655pt;}
.x17{left:336.413297pt;}
.x25{left:343.266655pt;}
.x12{left:345.986655pt;}
.x1d{left:365.213297pt;}
.x19{left:369.986655pt;}
.x1e{left:385.186655pt;}
.x1a{left:391.613297pt;}
.x9{left:396.866655pt;}
.x1f{left:400.879964pt;}
.x1c{left:405.986655pt;}
.x6b{left:412.213297pt;}
.x20{left:415.293322pt;}
.x65{left:426.333322pt;}
.x26{left:428.879964pt;}
.x6c{left:434.653322pt;}
.x56{left:439.773322pt;}
.x27{left:443.293322pt;}
.x7e{left:458.813297pt;}
.x7f{left:473.213322pt;}
.x6d{left:476.746630pt;}
.x6e{left:491.133322pt;}
.x7c{left:494.613297pt;}
.x7d{left:508.253322pt;}
.x2e{left:629.013261pt;}
.x2f{left:643.493322pt;}
.x28{left:696.546594pt;}
.x3{left:704.613333pt;}
.x6{left:708.933333pt;}
.x29{left:718.213322pt;}
}




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