
    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_d2ab6a563b86da58bca28dc4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.024000;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_a7ca804e8fa32dbe36954302.woff')format("woff");}.ff3{font-family:ff3;line-height:0.869141;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_ddf66c933a9d3ab39130bebb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024000;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_8276e0b1d9aed1a214abf74d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_546909654fc90c281ac572b1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_7aeff2d41350991f5e297bfe.woff')format("woff");}.ff7{font-family:ff7;line-height:1.130371;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_4c4702e7c59e8e54869f8a25.woff')format("woff");}.ff8{font-family:ff8;line-height:0.751953;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_cc1c8c983e943a2a9dd597a8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.715820;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_2d12975f5a9bd2c8f176dfc4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.955078;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_d76192f2b85f2cad11603f76.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_e6384049f4ea51d61a6d6ab6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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_4bff2f4a817264df29160e6d.woff')format("woff");}.ffd{font-family:ffd;line-height:1.130371;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v2{vertical-align:-39.168000px;}
.v3{vertical-align:-5.280000px;}
.v1{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-0.768000px;}
.ls36{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.684000px;}
.ls4e{letter-spacing:-0.548400px;}
.ls45{letter-spacing:-0.524400px;}
.ls53{letter-spacing:-0.481200px;}
.ls46{letter-spacing:-0.472200px;}
.ls37{letter-spacing:-0.413400px;}
.ls4f{letter-spacing:-0.381600px;}
.ls58{letter-spacing:-0.377400px;}
.lsd{letter-spacing:-0.293400px;}
.ls59{letter-spacing:-0.232200px;}
.ls3{letter-spacing:-0.213000px;}
.ls38{letter-spacing:-0.208800px;}
.ls19{letter-spacing:-0.184200px;}
.ls30{letter-spacing:-0.042000px;}
.ls0{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.074400px;}
.ls39{letter-spacing:0.149184px;}
.ls3e{letter-spacing:0.165600px;}
.ls4b{letter-spacing:0.178800px;}
.lse{letter-spacing:0.213000px;}
.ls3f{letter-spacing:0.216000px;}
.ls44{letter-spacing:0.252000px;}
.ls50{letter-spacing:0.377400px;}
.lsa{letter-spacing:0.413400px;}
.ls3a{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.452400px;}
.ls1e{letter-spacing:0.548640px;}
.ls43{letter-spacing:0.576000px;}
.ls2{letter-spacing:0.648000px;}
.ls2e{letter-spacing:0.672000px;}
.ls15{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.722466px;}
.ls41{letter-spacing:0.900000px;}
.ls3b{letter-spacing:0.924000px;}
.ls1d{letter-spacing:1.794000px;}
.ls29{letter-spacing:22.608000px;}
.ls2c{letter-spacing:22.968000px;}
.ls56{letter-spacing:23.016000px;}
.ls28{letter-spacing:23.040000px;}
.ls2f{letter-spacing:23.160000px;}
.ls49{letter-spacing:24.480000px;}
.ls5{letter-spacing:25.877808px;}
.ls22{letter-spacing:26.078880px;}
.ls20{letter-spacing:27.317808px;}
.ls7{letter-spacing:27.398880px;}
.ls6{letter-spacing:28.008000px;}
.ls4d{letter-spacing:28.032000px;}
.ls8{letter-spacing:28.080000px;}
.ls1f{letter-spacing:28.104480px;}
.ls2b{letter-spacing:28.200000px;}
.ls23{letter-spacing:28.260000px;}
.ls51{letter-spacing:28.757808px;}
.ls52{letter-spacing:28.838880px;}
.ls47{letter-spacing:29.196000px;}
.ls21{letter-spacing:29.448000px;}
.ls13{letter-spacing:29.520000px;}
.ls9{letter-spacing:29.628000px;}
.ls12{letter-spacing:29.700000px;}
.ls4c{letter-spacing:32.328000px;}
.lsb{letter-spacing:33.333120px;}
.ls4{letter-spacing:33.630240px;}
.ls35{letter-spacing:33.768000px;}
.lsc{letter-spacing:33.840000px;}
.lsf{letter-spacing:34.560000px;}
.ls1a{letter-spacing:36.264960px;}
.ls32{letter-spacing:40.500000px;}
.ls17{letter-spacing:93.477600px;}
.ls16{letter-spacing:93.528000px;}
.ls10{letter-spacing:97.509600px;}
.ls11{letter-spacing:97.560000px;}
.ls1b{letter-spacing:99.525600px;}
.ls1c{letter-spacing:99.576000px;}
.ls54{letter-spacing:99.645600px;}
.ls40{letter-spacing:99.696000px;}
.ls26{letter-spacing:106.077600px;}
.ls27{letter-spacing:106.128000px;}
.ls57{letter-spacing:106.197600px;}
.ls55{letter-spacing:106.248000px;}
.ls31{letter-spacing:106.257600px;}
.ls48{letter-spacing:106.308000px;}
.ls34{letter-spacing:120.837600px;}
.ls18{letter-spacing:120.888000px;}
.ls3c{letter-spacing:121.017600px;}
.ls3d{letter-spacing:121.068000px;}
.ls33{letter-spacing:126.648000px;}
.ls2d{letter-spacing:126.885600px;}
.ls2a{letter-spacing:126.936000px;}
.ls1{letter-spacing:134.899200px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,79,143),0 0.015em rgb(0,79,143),0.015em 0 rgb(0,79,143),0 -0.015em  rgb(0,79,143);}
.sc4{text-shadow:-0.015em 0 rgb(77,75,70),0 0.015em rgb(77,75,70),0.015em 0 rgb(77,75,70),0 -0.015em  rgb(77,75,70);}
.sc3{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(38,38,35),0 0.015em rgb(38,38,35),0.015em 0 rgb(38,38,35),0 -0.015em  rgb(38,38,35);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,79,143);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(77,75,70);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(38,38,35);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws34{word-spacing:-119.520000px;}
.ws24{word-spacing:-83.664000px;}
.ws25{word-spacing:-83.520000px;}
.ws0{word-spacing:-66.893472px;}
.ws45{word-spacing:-46.837440px;}
.ws47{word-spacing:-40.072032px;}
.ws23{word-spacing:-40.032000px;}
.ws46{word-spacing:-39.839832px;}
.ws7{word-spacing:-36.829440px;}
.ws35{word-spacing:-36.305040px;}
.ws3{word-spacing:-33.266592px;}
.ws2{word-spacing:-33.226560px;}
.ws29{word-spacing:-32.813160px;}
.ws18{word-spacing:-30.024000px;}
.ws32{word-spacing:-29.959878px;}
.ws2d{word-spacing:-29.346720px;}
.ws22{word-spacing:-28.462752px;}
.ws8{word-spacing:-28.422720px;}
.ws44{word-spacing:-28.045320px;}
.ws42{word-spacing:-27.981552px;}
.ws20{word-spacing:-27.738720px;}
.ws21{word-spacing:-27.694752px;}
.ws49{word-spacing:-26.861472px;}
.ws48{word-spacing:-26.821440px;}
.ws1d{word-spacing:-25.052592px;}
.ws19{word-spacing:-23.670960px;}
.ws39{word-spacing:-23.397360px;}
.ws38{word-spacing:-23.332992px;}
.ws27{word-spacing:-23.258592px;}
.ws26{word-spacing:-23.218560px;}
.ws1a{word-spacing:-20.056032px;}
.ws5{word-spacing:-20.016000px;}
.ws4a{word-spacing:-16.813440px;}
.ws1b{word-spacing:-15.027960px;}
.ws2e{word-spacing:-4.708800px;}
.ws36{word-spacing:-4.655520px;}
.ws17{word-spacing:-4.392000px;}
.ws1e{word-spacing:-3.965280px;}
.ws9{word-spacing:-3.898176px;}
.ws2f{word-spacing:-3.804480px;}
.ws43{word-spacing:-3.408480px;}
.ws37{word-spacing:-3.206880px;}
.ws30{word-spacing:-3.177648px;}
.ws31{word-spacing:-2.601600px;}
.ws33{word-spacing:-2.424480px;}
.ws1c{word-spacing:-2.340288px;}
.ws2c{word-spacing:-2.104992px;}
.ws3a{word-spacing:-0.885120px;}
.wse{word-spacing:-0.119160px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:0.000840px;}
.ws14{word-spacing:0.226200px;}
.ws4{word-spacing:0.432000px;}
.ws10{word-spacing:0.473280px;}
.ws2b{word-spacing:0.862560px;}
.ws11{word-spacing:0.924480px;}
.ws2a{word-spacing:1.333440px;}
.ws41{word-spacing:1.504656px;}
.wsb{word-spacing:1.681824px;}
.wsd{word-spacing:2.219808px;}
.wsf{word-spacing:3.502560px;}
.wsa{word-spacing:3.662208px;}
.ws13{word-spacing:3.795840px;}
.wsc{word-spacing:3.860856px;}
.ws40{word-spacing:23.832480px;}
.ws3e{word-spacing:24.418080px;}
.ws1f{word-spacing:25.097760px;}
.ws3b{word-spacing:25.234560px;}
.ws3f{word-spacing:25.473240px;}
.ws3d{word-spacing:25.978080px;}
.ws3c{word-spacing:26.502240px;}
.ws16{word-spacing:26.532000px;}
.ws15{word-spacing:28.043856px;}
.ws28{word-spacing:28.739232px;}
.ws6{word-spacing:83.732760px;}
._7{margin-left:-5037.172320px;}
._1e{margin-left:-13.834560px;}
._1f{margin-left:-12.193920px;}
._20{margin-left:-10.598400px;}
._8{margin-left:-9.214128px;}
._f{margin-left:-7.704960px;}
._5{margin-left:-6.264000px;}
._3{margin-left:-4.569120px;}
._0{margin-left:-2.736000px;}
._2{margin-left:-1.442880px;}
._1{width:1.442880px;}
._4{width:3.383040px;}
._18{width:4.418304px;}
._9{width:5.506560px;}
._a{width:7.611408px;}
._19{width:18.896304px;}
._13{width:21.456000px;}
._17{width:23.418144px;}
._c{width:24.558000px;}
._11{width:26.043840px;}
._12{width:28.545120px;}
._1b{width:29.924160px;}
._15{width:31.451520px;}
._10{width:34.915584px;}
._d{width:36.101520px;}
._e{width:37.147872px;}
._1a{width:38.701920px;}
._16{width:41.918448px;}
._1d{width:53.416800px;}
._1c{width:54.766080px;}
._b{width:1111.522944px;}
._21{width:2202.454080px;}
._14{width:5088.004320px;}
._6{width:5118.244320px;}
.fc6{color:rgb(72,169,218);}
.fc5{color:rgb(77,75,70);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(128,0,0);}
.fc2{color:rgb(38,38,35);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,79,143);}
.fs0{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs19{font-size:60.624000px;}
.fsa{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs10{font-size:83.520000px;}
.fs11{font-size:83.664000px;}
.fs15{font-size:88.036930px;}
.fs14{font-size:88.188718px;}
.fs17{font-size:96.480000px;}
.fs18{font-size:96.624000px;}
.fsd{font-size:102.240000px;}
.fsc{font-size:102.384000px;}
.fs12{font-size:107.769345px;}
.fs13{font-size:107.921133px;}
.fs3{font-size:108.000000px;}
.fsf{font-size:108.144000px;}
.fs8{font-size:119.520000px;}
.fs7{font-size:119.664000px;}
.fs4{font-size:132.480000px;}
.fs9{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fs5{font-size:168.480000px;}
.fs16{font-size:168.624000px;}
.fs1{font-size:240.480000px;}
.fs2{font-size:240.624000px;}
.y0{bottom:0.000000px;}
.y187{bottom:7.452000px;}
.y207{bottom:7.812000px;}
.y208{bottom:8.172000px;}
.y1{bottom:8.568000px;}
.y185{bottom:8.640000px;}
.y209{bottom:15.840000px;}
.y60{bottom:32.076000px;}
.y1b{bottom:38.520000px;}
.y142{bottom:46.008000px;}
.y1f8{bottom:48.528000px;}
.y6d{bottom:51.300000px;}
.y5f{bottom:53.676000px;}
.ydb{bottom:59.760000px;}
.y1a{bottom:60.120000px;}
.ye3{bottom:61.560000px;}
.y1b1{bottom:70.092000px;}
.y5e{bottom:75.276000px;}
.ye9{bottom:75.960000px;}
.y1f7{bottom:79.164000px;}
.y184{bottom:79.632000px;}
.yb2{bottom:80.172000px;}
.yea{bottom:80.385000px;}
.yda{bottom:80.460000px;}
.yd1{bottom:80.490000px;}
.ycf{bottom:80.670000px;}
.y19{bottom:81.756000px;}
.yee{bottom:82.512000px;}
.y206{bottom:83.520000px;}
.y9d{bottom:86.148000px;}
.y6c{bottom:87.300000px;}
.y164{bottom:89.784000px;}
.y219{bottom:93.348000px;}
.y1b0{bottom:95.292000px;}
.y11f{bottom:96.120000px;}
.y181{bottom:96.336000px;}
.y1e7{bottom:96.552000px;}
.y5d{bottom:96.876000px;}
.y4{bottom:97.632000px;}
.y15e{bottom:101.268000px;}
.yc0{bottom:104.580000px;}
.yb1{bottom:105.408000px;}
.y141{bottom:107.244000px;}
.yed{bottom:107.748000px;}
.yfc{bottom:110.052000px;}
.y9c{bottom:111.348000px;}
.y183{bottom:112.068000px;}
.y106{bottom:112.428000px;}
.y18{bottom:113.148000px;}
.y5b{bottom:114.300000px;}
.y5c{bottom:118.512000px;}
.y205{bottom:119.520000px;}
.y163{bottom:120.384000px;}
.y1af{bottom:120.528000px;}
.y1e6{bottom:121.788000px;}
.y6b{bottom:123.336000px;}
.y173{bottom:130.140000px;}
.yb0{bottom:130.608000px;}
.y15d{bottom:131.868000px;}
.y11e{bottom:132.120000px;}
.ybf{bottom:135.180000px;}
.y9b{bottom:136.548000px;}
.y105{bottom:137.628000px;}
.y140{bottom:137.880000px;}
.y5a{bottom:139.500000px;}
.y1f6{bottom:140.364000px;}
.yfb{bottom:140.652000px;}
.yec{bottom:143.748000px;}
.y182{bottom:144.468000px;}
.yd2{bottom:146.160000px;}
.ye0{bottom:147.960000px;}
.y17{bottom:149.148000px;}
.y162{bottom:151.020000px;}
.y218{bottom:153.465000px;}
.y204{bottom:155.520000px;}
.yaf{bottom:155.805000px;}
.ye5{bottom:156.030000px;}
.ye2{bottom:156.060000px;}
.yd8{bottom:156.090000px;}
.y4c{bottom:157.935000px;}
.y6a{bottom:159.330000px;}
.y9a{bottom:161.790000px;}
.y15c{bottom:162.465000px;}
.y104{bottom:162.825000px;}
.ybe{bottom:165.810000px;}
.y172{bottom:166.170000px;}
.y180{bottom:168.375000px;}
.y13f{bottom:168.480000px;}
.yeb{bottom:168.945000px;}
.y1ae{bottom:170.925000px;}
.y1f5{bottom:171.000000px;}
.y1e5{bottom:172.185000px;}
.y217{bottom:172.830000px;}
.ye4{bottom:181.230000px;}
.ye1{bottom:181.260000px;}
.yd7{bottom:181.290000px;}
.y161{bottom:181.620000px;}
.y16{bottom:185.190000px;}
.y99{bottom:186.990000px;}
.y4b{bottom:190.335000px;}
.y59{bottom:191.370000px;}
.y203{bottom:191.550000px;}
.y15b{bottom:193.110000px;}
.y69{bottom:195.330000px;}
.y1bb{bottom:195.660000px;}
.y1ad{bottom:196.170000px;}
.ybd{bottom:196.410000px;}
.y1e4{bottom:197.430000px;}
.y196{bottom:198.794999px;}
.y1f4{bottom:201.600000px;}
.y171{bottom:202.170000px;}
.y8a{bottom:202.470000px;}
.y11d{bottom:204.150000px;}
.y17f{bottom:204.375000px;}
.y216{bottom:204.510000px;}
.ye8{bottom:204.990000px;}
.yae{bottom:206.250000px;}
.yfa{bottom:208.905000px;}
.y160{bottom:212.250000px;}
.y34{bottom:212.685000px;}
.y1d5{bottom:213.450000px;}
.y1c5{bottom:215.175000px;}
.y2a{bottom:215.820000px;}
.y15{bottom:221.190000px;}
.y1ac{bottom:221.370000px;}
.y103{bottom:221.970000px;}
.y4a{bottom:222.765000px;}
.y15a{bottom:223.710000px;}
.y58{bottom:223.770000px;}
.y78{bottom:224.790000px;}
.ybc{bottom:227.055000px;}
.y89{bottom:227.670000px;}
.y195{bottom:229.394990px;}
.y13e{bottom:229.710000px;}
.ye7{bottom:230.190000px;}
.yad{bottom:231.450000px;}
.ydf{bottom:231.660000px;}
.yd5{bottom:231.690000px;}
.y84{bottom:232.200000px;}
.y128{bottom:233.130000px;}
.y215{bottom:233.355000px;}
.yf9{bottom:234.105000px;}
.yd6{bottom:234.360000px;}
.yd9{bottom:236.160000px;}
.y170{bottom:238.215000px;}
.y17e{bottom:240.405000px;}
.yc9{bottom:242.175000px;}
.y15f{bottom:242.850000px;}
.y1d4{bottom:244.050000px;}
.y1c4{bottom:245.775000px;}
.y29{bottom:246.450000px;}
.y1ab{bottom:246.570000px;}
.y102{bottom:247.170000px;}
.y1e3{bottom:247.830000px;}
.y77{bottom:250.020000px;}
.y1f2{bottom:250.890000px;}
.y88{bottom:252.870000px;}
.y1d7{bottom:254.310000px;}
.y49{bottom:255.165000px;}
.ye6{bottom:255.390000px;}
.y57{bottom:256.215000px;}
.yac{bottom:256.650000px;}
.yde{bottom:256.860000px;}
.yd4{bottom:256.890000px;}
.y14{bottom:257.190000px;}
.ybb{bottom:257.655000px;}
.yf8{bottom:259.350000px;}
.y193{bottom:260.025000px;}
.y194{bottom:260.025009px;}
.y13d{bottom:260.310000px;}
.y98{bottom:261.870000px;}
.y83{bottom:262.830000px;}
.y202{bottom:263.595000px;}
.y214{bottom:265.035000px;}
.ya{bottom:266.430000px;}
.y127{bottom:269.130000px;}
.y101{bottom:272.370000px;}
.y16f{bottom:274.215000px;}
.y1d3{bottom:274.680000px;}
.y76{bottom:275.220000px;}
.y11c{bottom:276.195000px;}
.y17d{bottom:276.405000px;}
.y1f1{bottom:281.520000px;}
.y68{bottom:281.550000px;}
.yab{bottom:281.880000px;}
.ydc{bottom:282.090000px;}
.yd3{bottom:282.135000px;}
.yf7{bottom:284.550000px;}
.y33{bottom:284.730000px;}
.y159{bottom:284.940000px;}
.y115{bottom:286.710000px;}
.y48{bottom:287.610000px;}
.yba{bottom:288.255000px;}
.y56{bottom:288.615000px;}
.y192{bottom:290.625000px;}
.y82{bottom:293.430000px;}
.y1aa{bottom:297.000000px;}
.y213{bottom:297.075000px;}
.y1e2{bottom:298.260000px;}
.y201{bottom:299.595000px;}
.y130{bottom:299.880000px;}
.y1a0{bottom:301.170000px;}
.y87{bottom:303.300000px;}
.y1b8{bottom:303.690000px;}
.y9{bottom:304.950000px;}
.y126{bottom:305.130000px;}
.y1d2{bottom:305.280000px;}
.y1c3{bottom:307.005000px;}
.y19e{bottom:307.050000px;}
.yf6{bottom:309.750000px;}
.y16e{bottom:310.245000px;}
.y1f0{bottom:312.120000px;}
.y11b{bottom:312.225000px;}
.y17c{bottom:312.450000px;}
.yc8{bottom:314.205000px;}
.y158{bottom:315.540000px;}
.y67{bottom:317.595000px;}
.yb9{bottom:318.885000px;}
.y47{bottom:320.010000px;}
.y32{bottom:320.730000px;}
.y55{bottom:321.045000px;}
.y191{bottom:321.270000px;}
.y13c{bottom:321.555000px;}
.y1a9{bottom:322.200000px;}
.yd0{bottom:322.560000px;}
.y114{bottom:322.710000px;}
.y1e1{bottom:323.460000px;}
.y81{bottom:324.030000px;}
.y10f{bottom:324.690000px;}
.y86{bottom:328.500000px;}
.y212{bottom:328.785000px;}
.y13{bottom:329.220000px;}
.y12f{bottom:330.510000px;}
.yaa{bottom:332.280000px;}
.y28{bottom:333.255000px;}
.y97{bottom:333.900000px;}
.y200{bottom:335.625000px;}
.y14e{bottom:337.170000px;}
.y1b7{bottom:339.735000px;}
.ydd{bottom:341.850000px;}
.y1ef{bottom:342.720000px;}
.y157{bottom:346.140000px;}
.y138{bottom:346.245000px;}
.y10b{bottom:346.320000px;}
.y16d{bottom:346.860000px;}
.y1a8{bottom:347.430000px;}
.y17b{bottom:348.450000px;}
.y1e0{bottom:348.690000px;}
.yb8{bottom:349.485000px;}
.yc7{bottom:350.205000px;}
.y190{bottom:351.870000px;}
.y13b{bottom:352.155000px;}
.y46{bottom:352.410000px;}
.y54{bottom:353.445000px;}
.y66{bottom:353.595000px;}
.y85{bottom:353.730000px;}
.y80{bottom:354.675000px;}
.y39{bottom:356.580000px;}
.y31{bottom:356.730000px;}
.ya9{bottom:357.510000px;}
.yf5{bottom:360.180000px;}
.y12e{bottom:361.110000px;}
.y27{bottom:363.855000px;}
.y12{bottom:365.250000px;}
.y1d1{bottom:366.510000px;}
.y1c2{bottom:368.250000px;}
.y19d{bottom:368.280000px;}
.y96{bottom:369.900000px;}
.y10a{bottom:371.550000px;}
.y1ff{bottom:371.625000px;}
.y14d{bottom:373.215000px;}
.y1ee{bottom:373.350000px;}
.y1ba{bottom:375.735000px;}
.y156{bottom:376.770000px;}
.y3c{bottom:376.995000px;}
.y125{bottom:377.175000px;}
.yb7{bottom:380.085000px;}
.y137{bottom:382.245000px;}
.y20{bottom:382.710000px;}
.y11a{bottom:384.225000px;}
.y17a{bottom:384.450000px;}
.yce{bottom:384.480000px;}
.y45{bottom:384.840000px;}
.y7f{bottom:385.275000px;}
.yf4{bottom:385.380000px;}
.y53{bottom:385.845000px;}
.y3{bottom:393.735000px;}
.y211{bottom:395.430000px;}
.y75{bottom:395.715000px;}
.y38{bottom:396.180000px;}
.y10e{bottom:396.720000px;}
.y1d0{bottom:397.110000px;}
.y1a7{bottom:397.830000px;}
.y16c{bottom:398.700000px;}
.y1c1{bottom:398.850000px;}
.y19c{bottom:398.880000px;}
.y1df{bottom:399.090000px;}
.y11{bottom:401.250000px;}
.y1ed{bottom:403.950000px;}
.y8{bottom:406.155000px;}
.y155{bottom:407.370000px;}
.y1fe{bottom:407.670000px;}
.ya8{bottom:407.910000px;}
.y19f{bottom:409.215000px;}
.y109{bottom:410.145000px;}
.yb6{bottom:410.730000px;}
.y1b6{bottom:411.765000px;}
.y3b{bottom:413.025000px;}
.y18f{bottom:413.100000px;}
.y124{bottom:413.205000px;}
.y13a{bottom:413.385000px;}
.y189{bottom:414.150000px;}
.y7e{bottom:415.905000px;}
.y44{bottom:417.240000px;}
.y52{bottom:418.290000px;}
.y1f{bottom:418.710000px;}
.y179{bottom:420.480000px;}
.yc6{bottom:422.250000px;}
.y1a6{bottom:423.030000px;}
.y1de{bottom:424.290000px;}
.y74{bottom:426.315000px;}
.y1cf{bottom:427.755000px;}
.y30{bottom:428.760000px;}
.y1c0{bottom:429.450000px;}
.y19b{bottom:429.480000px;}
.y113{bottom:430.740000px;}
.y26{bottom:432.825000px;}
.ya7{bottom:433.155000px;}
.y1ec{bottom:434.595000px;}
.y108{bottom:435.345000px;}
.y37{bottom:435.810000px;}
.y10{bottom:437.295000px;}
.y154{bottom:438.015000px;}
.y65{bottom:438.630000px;}
.yb5{bottom:441.330000px;}
.y95{bottom:441.930000px;}
.y18e{bottom:443.700000px;}
.y139{bottom:443.985000px;}
.y14c{bottom:445.215000px;}
.y7d{bottom:446.505000px;}
.y1b5{bottom:447.765000px;}
.y1a5{bottom:448.275000px;}
.y3a{bottom:449.025000px;}
.y1dd{bottom:449.535000px;}
.y43{bottom:449.670000px;}
.y51{bottom:450.690000px;}
.y90{bottom:453.030000px;}
.y136{bottom:454.290000px;}
.y1e{bottom:454.710000px;}
.y119{bottom:456.270000px;}
.y178{bottom:456.480000px;}
.y16b{bottom:456.689987px;}
.y16a{bottom:456.690000px;}
.y73{bottom:456.915000px;}
.ya6{bottom:458.355000px;}
.y1bf{bottom:460.080000px;}
.y107{bottom:460.590000px;}
.yf3{bottom:461.010000px;}
.y12d{bottom:462.675000px;}
.y25{bottom:463.425000px;}
.y20c{bottom:463.605000px;}
.y2f{bottom:464.790000px;}
.y1eb{bottom:465.195000px;}
.y2{bottom:465.735000px;}
.y112{bottom:466.770000px;}
.y153{bottom:468.615000px;}
.y10d{bottom:468.750000px;}
.yb4{bottom:471.960000px;}
.y18d{bottom:474.300000px;}
.y64{bottom:474.660000px;}
.y36{bottom:475.410000px;}
.y1f3{bottom:477.105000px;}
.y94{bottom:477.975000px;}
.y210{bottom:478.980000px;}
.y20d{bottom:479.445000px;}
.y1fd{bottom:479.670000px;}
.y14b{bottom:481.245000px;}
.y50{bottom:483.120000px;}
.ya5{bottom:483.555000px;}
.y1b9{bottom:483.765000px;}
.y123{bottom:485.250000px;}
.yf2{bottom:486.210000px;}
.y169{bottom:487.289978px;}
.y168{bottom:487.290000px;}
.y72{bottom:487.545000px;}
.y1ce{bottom:488.955000px;}
.y135{bottom:490.320000px;}
.y1be{bottom:490.680000px;}
.y19a{bottom:490.710000px;}
.y118{bottom:492.300000px;}
.y177{bottom:492.510000px;}
.y12c{bottom:493.275000px;}
.y24{bottom:494.070000px;}
.yc5{bottom:494.280000px;}
.y1ea{bottom:495.795000px;}
.y1a4{bottom:498.675000px;}
.y152{bottom:499.215000px;}
.y1dc{bottom:499.935000px;}
.y2e{bottom:500.790000px;}
.y1cc{bottom:501.945000px;}
.yb3{bottom:502.560000px;}
.y8f{bottom:503.460000px;}
.y18c{bottom:504.930000px;}
.y7{bottom:507.030000px;}
.y147{bottom:508.320000px;}
.yf{bottom:509.295000px;}
.y93{bottom:513.975000px;}
.y20b{bottom:514.050000px;}
.y42{bottom:514.470000px;}
.y35{bottom:515.055000px;}
.y4f{bottom:515.520000px;}
.y1fc{bottom:515.700000px;}
.y14a{bottom:517.245000px;}
.y71{bottom:518.145000px;}
.y1cd{bottom:519.585000px;}
.y1b4{bottom:519.810000px;}
.y122{bottom:521.250000px;}
.y1bd{bottom:521.280000px;}
.y199{bottom:521.310000px;}
.y12b{bottom:523.905000px;}
.y1db{bottom:525.165000px;}
.y1e9{bottom:526.425000px;}
.y1ca{bottom:527.144989px;}
.y1cb{bottom:527.145000px;}
.y188{bottom:528.300000px;}
.y176{bottom:528.510000px;}
.y8e{bottom:528.660000px;}
.y1d6{bottom:529.845000px;}
.y100{bottom:531.180000px;}
.ya4{bottom:533.985000px;}
.ycd{bottom:536.295000px;}
.yf1{bottom:536.655000px;}
.y7c{bottom:538.350000px;}
.y111{bottom:538.815000px;}
.y10c{bottom:540.795000px;}
.y20f{bottom:542.340000px;}
.y146{bottom:544.350000px;}
.ye{bottom:545.325000px;}
.y63{bottom:546.660000px;}
.y41{bottom:546.915000px;}
.y1d{bottom:547.170000px;}
.y4e{bottom:547.920000px;}
.y1da{bottom:550.365000px;}
.y1fb{bottom:551.700000px;}
.y1bc{bottom:551.910000px;}
.y1c8{bottom:552.390000px;}
.y1c9{bottom:552.390015px;}
.y149{bottom:553.290000px;}
.y12a{bottom:554.505000px;}
.y1b3{bottom:555.810000px;}
.yff{bottom:556.380000px;}
.y121{bottom:557.280000px;}
.y3e{bottom:558.150000px;}
.ya3{bottom:559.185000px;}
.y151{bottom:560.445000px;}
.y134{bottom:562.350000px;}
.y117{bottom:564.330000px;}
.y20a{bottom:564.480000px;}
.y175{bottom:564.555000px;}
.y23{bottom:565.530000px;}
.y18b{bottom:566.175000px;}
.yc4{bottom:566.310000px;}
.ycc{bottom:566.895000px;}
.y167{bottom:566.925000px;}
.y7b{bottom:568.950000px;}
.y2d{bottom:572.835000px;}
.y110{bottom:574.815000px;}
.y1c7{bottom:577.590000px;}
.y8d{bottom:579.090000px;}
.y70{bottom:579.390000px;}
.y145{bottom:580.350000px;}
.yd{bottom:581.325000px;}
.yc3{bottom:582.330000px;}
.y198{bottom:582.555000px;}
.y62{bottom:582.690000px;}
.y1c{bottom:583.200000px;}
.ya2{bottom:584.385000px;}
.y129{bottom:585.150000px;}
.y92{bottom:586.005000px;}
.y1e8{bottom:587.625000px;}
.y1fa{bottom:587.730000px;}
.y1a3{bottom:588.675000px;}
.y148{bottom:589.290000px;}
.y150{bottom:591.045000px;}
.y1b2{bottom:591.840000px;}
.y5{bottom:592.560000px;}
.y3d{bottom:594.180000px;}
.y22{bottom:596.160000px;}
.y18a{bottom:596.775000px;}
.ycb{bottom:597.525000px;}
.y133{bottom:598.350000px;}
.y7a{bottom:599.580000px;}
.y116{bottom:600.330000px;}
.y1d9{bottom:600.810000px;}
.yf0{bottom:603.360000px;}
.y8c{bottom:604.290000px;}
.y20e{bottom:606.090000px;}
.y2c{bottom:608.835000px;}
.ya1{bottom:609.630000px;}
.y6f{bottom:609.990000px;}
.y40{bottom:611.715000px;}
.y4d{bottom:612.750000px;}
.yc2{bottom:612.975000px;}
.y197{bottom:613.155000px;}
.y144{bottom:616.395000px;}
.yc{bottom:617.370000px;}
.yfe{bottom:618.630000px;}
.y61{bottom:618.690000px;}
.y1a2{bottom:619.275000px;}
.y14f{bottom:621.690000px;}
.y91{bottom:622.005000px;}
.y1f9{bottom:623.730000px;}
.y1d8{bottom:626.010000px;}
.yca{bottom:628.125000px;}
.y120{bottom:629.280000px;}
.y8b{bottom:629.490000px;}
.y79{bottom:630.180000px;}
.yef{bottom:633.990000px;}
.y132{bottom:634.350000px;}
.ya0{bottom:634.830000px;}
.y174{bottom:636.555000px;}
.y1c6{bottom:638.895000px;}
.y166{bottom:642.314987px;}
.y165{bottom:642.315000px;}
.yc1{bottom:643.575000px;}
.yfd{bottom:643.830000px;}
.y1a1{bottom:649.905000px;}
.y143{bottom:652.395000px;}
.y9f{bottom:660.030000px;}
.y3f{bottom:692.460000px;}
.y186{bottom:726.630000px;}
.y6{bottom:729.900000px;}
.y131{bottom:730.260000px;}
.yb{bottom:734.940000px;}
.y2b{bottom:735.660000px;}
.y21{bottom:737.820000px;}
.y6e{bottom:738.540000px;}
.y9e{bottom:747.900000px;}
.h1d{height:39.864375px;}
.h1{height:44.104320px;}
.h25{height:48.746880px;}
.h26{height:48.862944px;}
.h20{height:52.101562px;}
.hb{height:58.032000px;}
.ha{height:58.148064px;}
.h10{height:67.317120px;}
.h12{height:67.433184px;}
.h1f{height:70.957765px;}
.h1e{height:71.080106px;}
.h1c{height:75.884766px;}
.h23{height:77.762880px;}
.h24{height:77.878944px;}
.hd{height:82.405440px;}
.hc{height:82.521504px;}
.h1a{height:86.862092px;}
.h1b{height:86.984433px;}
.h4{height:87.048000px;}
.hf{height:87.164064px;}
.h8{height:96.333120px;}
.h7{height:96.449184px;}
.h5{height:106.778880px;}
.h9{height:116.064000px;}
.he{height:116.180064px;}
.h19{height:118.380234px;}
.h11{height:126.140625px;}
.h6{height:135.794880px;}
.h22{height:135.910944px;}
.h13{height:176.760000px;}
.h2{height:193.826880px;}
.h3{height:193.942944px;}
.h18{height:279.720000px;}
.h17{height:340.920000px;}
.h15{height:353.160000px;}
.h16{height:502.920000px;}
.h14{height:529.560000px;}
.h21{height:794.160000px;}
.h0{height:810.000000px;}
.w3{width:230.400000px;}
.w5{width:275.400000px;}
.w1{width:459.360000px;}
.w2{width:553.680000px;}
.w4{width:678.600000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x38{left:9.000000px;}
.x16{left:10.800000px;}
.x1{left:21.960000px;}
.x23{left:98.640000px;}
.x39{left:122.724000px;}
.x3c{left:125.496000px;}
.x45{left:133.455000px;}
.x3f{left:135.504000px;}
.x3b{left:142.884000px;}
.x46{left:144.000000px;}
.x42{left:148.320000px;}
.x2{left:152.490000px;}
.x4{left:161.025000px;}
.x1d{left:163.260000px;}
.xd{left:165.990000px;}
.x1e{left:167.790000px;}
.x6{left:169.530000px;}
.x28{left:170.895000px;}
.x10{left:172.650000px;}
.x3{left:173.775000px;}
.x17{left:174.960000px;}
.x1f{left:176.550000px;}
.x29{left:178.020000px;}
.x1b{left:180.360000px;}
.xc{left:182.265000px;}
.xb{left:184.890000px;}
.xa{left:186.510000px;}
.x3e{left:195.045000px;}
.x5{left:201.705000px;}
.x37{left:203.550000px;}
.x1c{left:205.635000px;}
.x19{left:207.615000px;}
.x18{left:208.800000px;}
.x11{left:210.090000px;}
.x27{left:214.455000px;}
.x1a{left:215.640000px;}
.x20{left:217.230000px;}
.x9{left:227.775000px;}
.x2e{left:241.815000px;}
.x2f{left:275.685000px;}
.x21{left:328.680000px;}
.x7{left:392.400000px;}
.x2c{left:467.175000px;}
.x24{left:479.010000px;}
.x32{left:487.410003px;}
.x26{left:529.410000px;}
.x35{left:532.050018px;}
.x30{left:546.089997px;}
.xe{left:560.850000px;}
.x2a{left:587.775000px;}
.x2b{left:593.205000px;}
.x40{left:651.990000px;}
.x2d{left:665.895000px;}
.x3d{left:690.300018px;}
.x36{left:705.960000px;}
.x33{left:769.350000px;}
.x31{left:771.150000px;}
.x22{left:787.680000px;}
.x47{left:805.470000px;}
.x12{left:807.555000px;}
.x49{left:810.900000px;}
.x8{left:816.045000px;}
.x14{left:841.395000px;}
.x13{left:844.995000px;}
.x15{left:861.555000px;}
.x25{left:884.730000px;}
.x48{left:916.740000px;}
.xf{left:952.770000px;}
.x44{left:958.215000px;}
.x34{left:1039.065033px;}
.x41{left:1100.310000px;}
.x43{left:1392.375000px;}
.x3a{left:1396.365000px;}
@media print{
.v2{vertical-align:-34.816000pt;}
.v3{vertical-align:-4.693333pt;}
.v1{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-0.682667pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.608000pt;}
.ls4e{letter-spacing:-0.487467pt;}
.ls45{letter-spacing:-0.466133pt;}
.ls53{letter-spacing:-0.427733pt;}
.ls46{letter-spacing:-0.419733pt;}
.ls37{letter-spacing:-0.367467pt;}
.ls4f{letter-spacing:-0.339200pt;}
.ls58{letter-spacing:-0.335467pt;}
.lsd{letter-spacing:-0.260800pt;}
.ls59{letter-spacing:-0.206400pt;}
.ls3{letter-spacing:-0.189333pt;}
.ls38{letter-spacing:-0.185600pt;}
.ls19{letter-spacing:-0.163733pt;}
.ls30{letter-spacing:-0.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.066133pt;}
.ls39{letter-spacing:0.132608pt;}
.ls3e{letter-spacing:0.147200pt;}
.ls4b{letter-spacing:0.158933pt;}
.lse{letter-spacing:0.189333pt;}
.ls3f{letter-spacing:0.192000pt;}
.ls44{letter-spacing:0.224000pt;}
.ls50{letter-spacing:0.335467pt;}
.lsa{letter-spacing:0.367467pt;}
.ls3a{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.402133pt;}
.ls1e{letter-spacing:0.487680pt;}
.ls43{letter-spacing:0.512000pt;}
.ls2{letter-spacing:0.576000pt;}
.ls2e{letter-spacing:0.597333pt;}
.ls15{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.642192pt;}
.ls41{letter-spacing:0.800000pt;}
.ls3b{letter-spacing:0.821333pt;}
.ls1d{letter-spacing:1.594667pt;}
.ls29{letter-spacing:20.096000pt;}
.ls2c{letter-spacing:20.416000pt;}
.ls56{letter-spacing:20.458667pt;}
.ls28{letter-spacing:20.480000pt;}
.ls2f{letter-spacing:20.586667pt;}
.ls49{letter-spacing:21.760000pt;}
.ls5{letter-spacing:23.002496pt;}
.ls22{letter-spacing:23.181227pt;}
.ls20{letter-spacing:24.282496pt;}
.ls7{letter-spacing:24.354560pt;}
.ls6{letter-spacing:24.896000pt;}
.ls4d{letter-spacing:24.917333pt;}
.ls8{letter-spacing:24.960000pt;}
.ls1f{letter-spacing:24.981760pt;}
.ls2b{letter-spacing:25.066667pt;}
.ls23{letter-spacing:25.120000pt;}
.ls51{letter-spacing:25.562496pt;}
.ls52{letter-spacing:25.634560pt;}
.ls47{letter-spacing:25.952000pt;}
.ls21{letter-spacing:26.176000pt;}
.ls13{letter-spacing:26.240000pt;}
.ls9{letter-spacing:26.336000pt;}
.ls12{letter-spacing:26.400000pt;}
.ls4c{letter-spacing:28.736000pt;}
.lsb{letter-spacing:29.629440pt;}
.ls4{letter-spacing:29.893547pt;}
.ls35{letter-spacing:30.016000pt;}
.lsc{letter-spacing:30.080000pt;}
.lsf{letter-spacing:30.720000pt;}
.ls1a{letter-spacing:32.235520pt;}
.ls32{letter-spacing:36.000000pt;}
.ls17{letter-spacing:83.091200pt;}
.ls16{letter-spacing:83.136000pt;}
.ls10{letter-spacing:86.675200pt;}
.ls11{letter-spacing:86.720000pt;}
.ls1b{letter-spacing:88.467200pt;}
.ls1c{letter-spacing:88.512000pt;}
.ls54{letter-spacing:88.573867pt;}
.ls40{letter-spacing:88.618667pt;}
.ls26{letter-spacing:94.291200pt;}
.ls27{letter-spacing:94.336000pt;}
.ls57{letter-spacing:94.397867pt;}
.ls55{letter-spacing:94.442667pt;}
.ls31{letter-spacing:94.451200pt;}
.ls48{letter-spacing:94.496000pt;}
.ls34{letter-spacing:107.411200pt;}
.ls18{letter-spacing:107.456000pt;}
.ls3c{letter-spacing:107.571200pt;}
.ls3d{letter-spacing:107.616000pt;}
.ls33{letter-spacing:112.576000pt;}
.ls2d{letter-spacing:112.787200pt;}
.ls2a{letter-spacing:112.832000pt;}
.ls1{letter-spacing:119.910400pt;}
.ws34{word-spacing:-106.240000pt;}
.ws24{word-spacing:-74.368000pt;}
.ws25{word-spacing:-74.240000pt;}
.ws0{word-spacing:-59.460864pt;}
.ws45{word-spacing:-41.633280pt;}
.ws47{word-spacing:-35.619584pt;}
.ws23{word-spacing:-35.584000pt;}
.ws46{word-spacing:-35.413184pt;}
.ws7{word-spacing:-32.737280pt;}
.ws35{word-spacing:-32.271147pt;}
.ws3{word-spacing:-29.570304pt;}
.ws2{word-spacing:-29.534720pt;}
.ws29{word-spacing:-29.167253pt;}
.ws18{word-spacing:-26.688000pt;}
.ws32{word-spacing:-26.631003pt;}
.ws2d{word-spacing:-26.085973pt;}
.ws22{word-spacing:-25.300224pt;}
.ws8{word-spacing:-25.264640pt;}
.ws44{word-spacing:-24.929173pt;}
.ws42{word-spacing:-24.872491pt;}
.ws20{word-spacing:-24.656640pt;}
.ws21{word-spacing:-24.617557pt;}
.ws49{word-spacing:-23.876864pt;}
.ws48{word-spacing:-23.841280pt;}
.ws1d{word-spacing:-22.268971pt;}
.ws19{word-spacing:-21.040853pt;}
.ws39{word-spacing:-20.797653pt;}
.ws38{word-spacing:-20.740437pt;}
.ws27{word-spacing:-20.674304pt;}
.ws26{word-spacing:-20.638720pt;}
.ws1a{word-spacing:-17.827584pt;}
.ws5{word-spacing:-17.792000pt;}
.ws4a{word-spacing:-14.945280pt;}
.ws1b{word-spacing:-13.358187pt;}
.ws2e{word-spacing:-4.185600pt;}
.ws36{word-spacing:-4.138240pt;}
.ws17{word-spacing:-3.904000pt;}
.ws1e{word-spacing:-3.524693pt;}
.ws9{word-spacing:-3.465045pt;}
.ws2f{word-spacing:-3.381760pt;}
.ws43{word-spacing:-3.029760pt;}
.ws37{word-spacing:-2.850560pt;}
.ws30{word-spacing:-2.824576pt;}
.ws31{word-spacing:-2.312533pt;}
.ws33{word-spacing:-2.155093pt;}
.ws1c{word-spacing:-2.080256pt;}
.ws2c{word-spacing:-1.871104pt;}
.ws3a{word-spacing:-0.786773pt;}
.wse{word-spacing:-0.105920pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:0.000747pt;}
.ws14{word-spacing:0.201067pt;}
.ws4{word-spacing:0.384000pt;}
.ws10{word-spacing:0.420693pt;}
.ws2b{word-spacing:0.766720pt;}
.ws11{word-spacing:0.821760pt;}
.ws2a{word-spacing:1.185280pt;}
.ws41{word-spacing:1.337472pt;}
.wsb{word-spacing:1.494955pt;}
.wsd{word-spacing:1.973163pt;}
.wsf{word-spacing:3.113387pt;}
.wsa{word-spacing:3.255296pt;}
.ws13{word-spacing:3.374080pt;}
.wsc{word-spacing:3.431872pt;}
.ws40{word-spacing:21.184427pt;}
.ws3e{word-spacing:21.704960pt;}
.ws1f{word-spacing:22.309120pt;}
.ws3b{word-spacing:22.430720pt;}
.ws3f{word-spacing:22.642880pt;}
.ws3d{word-spacing:23.091627pt;}
.ws3c{word-spacing:23.557547pt;}
.ws16{word-spacing:23.584000pt;}
.ws15{word-spacing:24.927872pt;}
.ws28{word-spacing:25.545984pt;}
.ws6{word-spacing:74.429120pt;}
._7{margin-left:-4477.486507pt;}
._1e{margin-left:-12.297387pt;}
._1f{margin-left:-10.839040pt;}
._20{margin-left:-9.420800pt;}
._8{margin-left:-8.190336pt;}
._f{margin-left:-6.848853pt;}
._5{margin-left:-5.568000pt;}
._3{margin-left:-4.061440pt;}
._0{margin-left:-2.432000pt;}
._2{margin-left:-1.282560pt;}
._1{width:1.282560pt;}
._4{width:3.007147pt;}
._18{width:3.927381pt;}
._9{width:4.894720pt;}
._a{width:6.765696pt;}
._19{width:16.796715pt;}
._13{width:19.072000pt;}
._17{width:20.816128pt;}
._c{width:21.829333pt;}
._11{width:23.150080pt;}
._12{width:25.373440pt;}
._1b{width:26.599253pt;}
._15{width:27.956907pt;}
._10{width:31.036075pt;}
._d{width:32.090240pt;}
._e{width:33.020331pt;}
._1a{width:34.401707pt;}
._16{width:37.260843pt;}
._1d{width:47.481600pt;}
._1c{width:48.680960pt;}
._b{width:988.020395pt;}
._21{width:1957.736960pt;}
._14{width:4522.670507pt;}
._6{width:4549.550507pt;}
.fs0{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs19{font-size:53.888000pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs10{font-size:74.240000pt;}
.fs11{font-size:74.368000pt;}
.fs15{font-size:78.255049pt;}
.fs14{font-size:78.389971pt;}
.fs17{font-size:85.760000pt;}
.fs18{font-size:85.888000pt;}
.fsd{font-size:90.880000pt;}
.fsc{font-size:91.008000pt;}
.fs12{font-size:95.794973pt;}
.fs13{font-size:95.929896pt;}
.fs3{font-size:96.000000pt;}
.fsf{font-size:96.128000pt;}
.fs8{font-size:106.240000pt;}
.fs7{font-size:106.368000pt;}
.fs4{font-size:117.760000pt;}
.fs9{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fs5{font-size:149.760000pt;}
.fs16{font-size:149.888000pt;}
.fs1{font-size:213.760000pt;}
.fs2{font-size:213.888000pt;}
.y0{bottom:0.000000pt;}
.y187{bottom:6.624000pt;}
.y207{bottom:6.944000pt;}
.y208{bottom:7.264000pt;}
.y1{bottom:7.616000pt;}
.y185{bottom:7.680000pt;}
.y209{bottom:14.080000pt;}
.y60{bottom:28.512000pt;}
.y1b{bottom:34.240000pt;}
.y142{bottom:40.896000pt;}
.y1f8{bottom:43.136000pt;}
.y6d{bottom:45.600000pt;}
.y5f{bottom:47.712000pt;}
.ydb{bottom:53.120000pt;}
.y1a{bottom:53.440000pt;}
.ye3{bottom:54.720000pt;}
.y1b1{bottom:62.304000pt;}
.y5e{bottom:66.912000pt;}
.ye9{bottom:67.520000pt;}
.y1f7{bottom:70.368000pt;}
.y184{bottom:70.784000pt;}
.yb2{bottom:71.264000pt;}
.yea{bottom:71.453333pt;}
.yda{bottom:71.520000pt;}
.yd1{bottom:71.546667pt;}
.ycf{bottom:71.706667pt;}
.y19{bottom:72.672000pt;}
.yee{bottom:73.344000pt;}
.y206{bottom:74.240000pt;}
.y9d{bottom:76.576000pt;}
.y6c{bottom:77.600000pt;}
.y164{bottom:79.808000pt;}
.y219{bottom:82.976000pt;}
.y1b0{bottom:84.704000pt;}
.y11f{bottom:85.440000pt;}
.y181{bottom:85.632000pt;}
.y1e7{bottom:85.824000pt;}
.y5d{bottom:86.112000pt;}
.y4{bottom:86.784000pt;}
.y15e{bottom:90.016000pt;}
.yc0{bottom:92.960000pt;}
.yb1{bottom:93.696000pt;}
.y141{bottom:95.328000pt;}
.yed{bottom:95.776000pt;}
.yfc{bottom:97.824000pt;}
.y9c{bottom:98.976000pt;}
.y183{bottom:99.616000pt;}
.y106{bottom:99.936000pt;}
.y18{bottom:100.576000pt;}
.y5b{bottom:101.600000pt;}
.y5c{bottom:105.344000pt;}
.y205{bottom:106.240000pt;}
.y163{bottom:107.008000pt;}
.y1af{bottom:107.136000pt;}
.y1e6{bottom:108.256000pt;}
.y6b{bottom:109.632000pt;}
.y173{bottom:115.680000pt;}
.yb0{bottom:116.096000pt;}
.y15d{bottom:117.216000pt;}
.y11e{bottom:117.440000pt;}
.ybf{bottom:120.160000pt;}
.y9b{bottom:121.376000pt;}
.y105{bottom:122.336000pt;}
.y140{bottom:122.560000pt;}
.y5a{bottom:124.000000pt;}
.y1f6{bottom:124.768000pt;}
.yfb{bottom:125.024000pt;}
.yec{bottom:127.776000pt;}
.y182{bottom:128.416000pt;}
.yd2{bottom:129.920000pt;}
.ye0{bottom:131.520000pt;}
.y17{bottom:132.576000pt;}
.y162{bottom:134.240000pt;}
.y218{bottom:136.413333pt;}
.y204{bottom:138.240000pt;}
.yaf{bottom:138.493333pt;}
.ye5{bottom:138.693333pt;}
.ye2{bottom:138.720000pt;}
.yd8{bottom:138.746667pt;}
.y4c{bottom:140.386667pt;}
.y6a{bottom:141.626667pt;}
.y9a{bottom:143.813333pt;}
.y15c{bottom:144.413333pt;}
.y104{bottom:144.733333pt;}
.ybe{bottom:147.386667pt;}
.y172{bottom:147.706667pt;}
.y180{bottom:149.666667pt;}
.y13f{bottom:149.760000pt;}
.yeb{bottom:150.173333pt;}
.y1ae{bottom:151.933333pt;}
.y1f5{bottom:152.000000pt;}
.y1e5{bottom:153.053333pt;}
.y217{bottom:153.626667pt;}
.ye4{bottom:161.093333pt;}
.ye1{bottom:161.120000pt;}
.yd7{bottom:161.146667pt;}
.y161{bottom:161.440000pt;}
.y16{bottom:164.613333pt;}
.y99{bottom:166.213333pt;}
.y4b{bottom:169.186667pt;}
.y59{bottom:170.106667pt;}
.y203{bottom:170.266667pt;}
.y15b{bottom:171.653333pt;}
.y69{bottom:173.626667pt;}
.y1bb{bottom:173.920000pt;}
.y1ad{bottom:174.373333pt;}
.ybd{bottom:174.586667pt;}
.y1e4{bottom:175.493333pt;}
.y196{bottom:176.706665pt;}
.y1f4{bottom:179.200000pt;}
.y171{bottom:179.706667pt;}
.y8a{bottom:179.973333pt;}
.y11d{bottom:181.466667pt;}
.y17f{bottom:181.666667pt;}
.y216{bottom:181.786667pt;}
.ye8{bottom:182.213333pt;}
.yae{bottom:183.333333pt;}
.yfa{bottom:185.693333pt;}
.y160{bottom:188.666667pt;}
.y34{bottom:189.053333pt;}
.y1d5{bottom:189.733333pt;}
.y1c5{bottom:191.266667pt;}
.y2a{bottom:191.840000pt;}
.y15{bottom:196.613333pt;}
.y1ac{bottom:196.773333pt;}
.y103{bottom:197.306667pt;}
.y4a{bottom:198.013333pt;}
.y15a{bottom:198.853333pt;}
.y58{bottom:198.906667pt;}
.y78{bottom:199.813333pt;}
.ybc{bottom:201.826667pt;}
.y89{bottom:202.373333pt;}
.y195{bottom:203.906657pt;}
.y13e{bottom:204.186667pt;}
.ye7{bottom:204.613333pt;}
.yad{bottom:205.733333pt;}
.ydf{bottom:205.920000pt;}
.yd5{bottom:205.946667pt;}
.y84{bottom:206.400000pt;}
.y128{bottom:207.226667pt;}
.y215{bottom:207.426667pt;}
.yf9{bottom:208.093333pt;}
.yd6{bottom:208.320000pt;}
.yd9{bottom:209.920000pt;}
.y170{bottom:211.746667pt;}
.y17e{bottom:213.693333pt;}
.yc9{bottom:215.266667pt;}
.y15f{bottom:215.866667pt;}
.y1d4{bottom:216.933333pt;}
.y1c4{bottom:218.466667pt;}
.y29{bottom:219.066667pt;}
.y1ab{bottom:219.173333pt;}
.y102{bottom:219.706667pt;}
.y1e3{bottom:220.293333pt;}
.y77{bottom:222.240000pt;}
.y1f2{bottom:223.013333pt;}
.y88{bottom:224.773333pt;}
.y1d7{bottom:226.053333pt;}
.y49{bottom:226.813333pt;}
.ye6{bottom:227.013333pt;}
.y57{bottom:227.746667pt;}
.yac{bottom:228.133333pt;}
.yde{bottom:228.320000pt;}
.yd4{bottom:228.346667pt;}
.y14{bottom:228.613333pt;}
.ybb{bottom:229.026667pt;}
.yf8{bottom:230.533333pt;}
.y193{bottom:231.133333pt;}
.y194{bottom:231.133341pt;}
.y13d{bottom:231.386667pt;}
.y98{bottom:232.773333pt;}
.y83{bottom:233.626667pt;}
.y202{bottom:234.306667pt;}
.y214{bottom:235.586667pt;}
.ya{bottom:236.826667pt;}
.y127{bottom:239.226667pt;}
.y101{bottom:242.106667pt;}
.y16f{bottom:243.746667pt;}
.y1d3{bottom:244.160000pt;}
.y76{bottom:244.640000pt;}
.y11c{bottom:245.506667pt;}
.y17d{bottom:245.693333pt;}
.y1f1{bottom:250.240000pt;}
.y68{bottom:250.266667pt;}
.yab{bottom:250.560000pt;}
.ydc{bottom:250.746667pt;}
.yd3{bottom:250.786667pt;}
.yf7{bottom:252.933333pt;}
.y33{bottom:253.093333pt;}
.y159{bottom:253.280000pt;}
.y115{bottom:254.853333pt;}
.y48{bottom:255.653333pt;}
.yba{bottom:256.226667pt;}
.y56{bottom:256.546667pt;}
.y192{bottom:258.333333pt;}
.y82{bottom:260.826667pt;}
.y1aa{bottom:264.000000pt;}
.y213{bottom:264.066667pt;}
.y1e2{bottom:265.120000pt;}
.y201{bottom:266.306667pt;}
.y130{bottom:266.560000pt;}
.y1a0{bottom:267.706667pt;}
.y87{bottom:269.600000pt;}
.y1b8{bottom:269.946667pt;}
.y9{bottom:271.066667pt;}
.y126{bottom:271.226667pt;}
.y1d2{bottom:271.360000pt;}
.y1c3{bottom:272.893333pt;}
.y19e{bottom:272.933333pt;}
.yf6{bottom:275.333333pt;}
.y16e{bottom:275.773333pt;}
.y1f0{bottom:277.440000pt;}
.y11b{bottom:277.533333pt;}
.y17c{bottom:277.733333pt;}
.yc8{bottom:279.293333pt;}
.y158{bottom:280.480000pt;}
.y67{bottom:282.306667pt;}
.yb9{bottom:283.453333pt;}
.y47{bottom:284.453333pt;}
.y32{bottom:285.093333pt;}
.y55{bottom:285.373333pt;}
.y191{bottom:285.573333pt;}
.y13c{bottom:285.826667pt;}
.y1a9{bottom:286.400000pt;}
.yd0{bottom:286.720000pt;}
.y114{bottom:286.853333pt;}
.y1e1{bottom:287.520000pt;}
.y81{bottom:288.026667pt;}
.y10f{bottom:288.613333pt;}
.y86{bottom:292.000000pt;}
.y212{bottom:292.253333pt;}
.y13{bottom:292.640000pt;}
.y12f{bottom:293.786667pt;}
.yaa{bottom:295.360000pt;}
.y28{bottom:296.226667pt;}
.y97{bottom:296.800000pt;}
.y200{bottom:298.333333pt;}
.y14e{bottom:299.706667pt;}
.y1b7{bottom:301.986667pt;}
.ydd{bottom:303.866667pt;}
.y1ef{bottom:304.640000pt;}
.y157{bottom:307.680000pt;}
.y138{bottom:307.773333pt;}
.y10b{bottom:307.840000pt;}
.y16d{bottom:308.320000pt;}
.y1a8{bottom:308.826667pt;}
.y17b{bottom:309.733333pt;}
.y1e0{bottom:309.946667pt;}
.yb8{bottom:310.653333pt;}
.yc7{bottom:311.293333pt;}
.y190{bottom:312.773333pt;}
.y13b{bottom:313.026667pt;}
.y46{bottom:313.253333pt;}
.y54{bottom:314.173333pt;}
.y66{bottom:314.306667pt;}
.y85{bottom:314.426667pt;}
.y80{bottom:315.266667pt;}
.y39{bottom:316.960000pt;}
.y31{bottom:317.093333pt;}
.ya9{bottom:317.786667pt;}
.yf5{bottom:320.160000pt;}
.y12e{bottom:320.986667pt;}
.y27{bottom:323.426667pt;}
.y12{bottom:324.666667pt;}
.y1d1{bottom:325.786667pt;}
.y1c2{bottom:327.333333pt;}
.y19d{bottom:327.360000pt;}
.y96{bottom:328.800000pt;}
.y10a{bottom:330.266667pt;}
.y1ff{bottom:330.333333pt;}
.y14d{bottom:331.746667pt;}
.y1ee{bottom:331.866667pt;}
.y1ba{bottom:333.986667pt;}
.y156{bottom:334.906667pt;}
.y3c{bottom:335.106667pt;}
.y125{bottom:335.266667pt;}
.yb7{bottom:337.853333pt;}
.y137{bottom:339.773333pt;}
.y20{bottom:340.186667pt;}
.y11a{bottom:341.533333pt;}
.y17a{bottom:341.733333pt;}
.yce{bottom:341.760000pt;}
.y45{bottom:342.080000pt;}
.y7f{bottom:342.466667pt;}
.yf4{bottom:342.560000pt;}
.y53{bottom:342.973333pt;}
.y3{bottom:349.986667pt;}
.y211{bottom:351.493333pt;}
.y75{bottom:351.746667pt;}
.y38{bottom:352.160000pt;}
.y10e{bottom:352.640000pt;}
.y1d0{bottom:352.986667pt;}
.y1a7{bottom:353.626667pt;}
.y16c{bottom:354.400000pt;}
.y1c1{bottom:354.533333pt;}
.y19c{bottom:354.560000pt;}
.y1df{bottom:354.746667pt;}
.y11{bottom:356.666667pt;}
.y1ed{bottom:359.066667pt;}
.y8{bottom:361.026667pt;}
.y155{bottom:362.106667pt;}
.y1fe{bottom:362.373333pt;}
.ya8{bottom:362.586667pt;}
.y19f{bottom:363.746667pt;}
.y109{bottom:364.573333pt;}
.yb6{bottom:365.093333pt;}
.y1b6{bottom:366.013333pt;}
.y3b{bottom:367.133333pt;}
.y18f{bottom:367.200000pt;}
.y124{bottom:367.293333pt;}
.y13a{bottom:367.453333pt;}
.y189{bottom:368.133333pt;}
.y7e{bottom:369.693333pt;}
.y44{bottom:370.880000pt;}
.y52{bottom:371.813333pt;}
.y1f{bottom:372.186667pt;}
.y179{bottom:373.760000pt;}
.yc6{bottom:375.333333pt;}
.y1a6{bottom:376.026667pt;}
.y1de{bottom:377.146667pt;}
.y74{bottom:378.946667pt;}
.y1cf{bottom:380.226667pt;}
.y30{bottom:381.120000pt;}
.y1c0{bottom:381.733333pt;}
.y19b{bottom:381.760000pt;}
.y113{bottom:382.880000pt;}
.y26{bottom:384.733333pt;}
.ya7{bottom:385.026667pt;}
.y1ec{bottom:386.306667pt;}
.y108{bottom:386.973333pt;}
.y37{bottom:387.386667pt;}
.y10{bottom:388.706667pt;}
.y154{bottom:389.346667pt;}
.y65{bottom:389.893333pt;}
.yb5{bottom:392.293333pt;}
.y95{bottom:392.826667pt;}
.y18e{bottom:394.400000pt;}
.y139{bottom:394.653333pt;}
.y14c{bottom:395.746667pt;}
.y7d{bottom:396.893333pt;}
.y1b5{bottom:398.013333pt;}
.y1a5{bottom:398.466667pt;}
.y3a{bottom:399.133333pt;}
.y1dd{bottom:399.586667pt;}
.y43{bottom:399.706667pt;}
.y51{bottom:400.613333pt;}
.y90{bottom:402.693333pt;}
.y136{bottom:403.813333pt;}
.y1e{bottom:404.186667pt;}
.y119{bottom:405.573333pt;}
.y178{bottom:405.760000pt;}
.y16b{bottom:405.946655pt;}
.y16a{bottom:405.946667pt;}
.y73{bottom:406.146667pt;}
.ya6{bottom:407.426667pt;}
.y1bf{bottom:408.960000pt;}
.y107{bottom:409.413333pt;}
.yf3{bottom:409.786667pt;}
.y12d{bottom:411.266667pt;}
.y25{bottom:411.933333pt;}
.y20c{bottom:412.093333pt;}
.y2f{bottom:413.146667pt;}
.y1eb{bottom:413.506667pt;}
.y2{bottom:413.986667pt;}
.y112{bottom:414.906667pt;}
.y153{bottom:416.546667pt;}
.y10d{bottom:416.666667pt;}
.yb4{bottom:419.520000pt;}
.y18d{bottom:421.600000pt;}
.y64{bottom:421.920000pt;}
.y36{bottom:422.586667pt;}
.y1f3{bottom:424.093333pt;}
.y94{bottom:424.866667pt;}
.y210{bottom:425.760000pt;}
.y20d{bottom:426.173333pt;}
.y1fd{bottom:426.373333pt;}
.y14b{bottom:427.773333pt;}
.y50{bottom:429.440000pt;}
.ya5{bottom:429.826667pt;}
.y1b9{bottom:430.013333pt;}
.y123{bottom:431.333333pt;}
.yf2{bottom:432.186667pt;}
.y169{bottom:433.146647pt;}
.y168{bottom:433.146667pt;}
.y72{bottom:433.373333pt;}
.y1ce{bottom:434.626667pt;}
.y135{bottom:435.840000pt;}
.y1be{bottom:436.160000pt;}
.y19a{bottom:436.186667pt;}
.y118{bottom:437.600000pt;}
.y177{bottom:437.786667pt;}
.y12c{bottom:438.466667pt;}
.y24{bottom:439.173333pt;}
.yc5{bottom:439.360000pt;}
.y1ea{bottom:440.706667pt;}
.y1a4{bottom:443.266667pt;}
.y152{bottom:443.746667pt;}
.y1dc{bottom:444.386667pt;}
.y2e{bottom:445.146667pt;}
.y1cc{bottom:446.173333pt;}
.yb3{bottom:446.720000pt;}
.y8f{bottom:447.520000pt;}
.y18c{bottom:448.826667pt;}
.y7{bottom:450.693333pt;}
.y147{bottom:451.840000pt;}
.yf{bottom:452.706667pt;}
.y93{bottom:456.866667pt;}
.y20b{bottom:456.933333pt;}
.y42{bottom:457.306667pt;}
.y35{bottom:457.826667pt;}
.y4f{bottom:458.240000pt;}
.y1fc{bottom:458.400000pt;}
.y14a{bottom:459.773333pt;}
.y71{bottom:460.573333pt;}
.y1cd{bottom:461.853333pt;}
.y1b4{bottom:462.053333pt;}
.y122{bottom:463.333333pt;}
.y1bd{bottom:463.360000pt;}
.y199{bottom:463.386667pt;}
.y12b{bottom:465.693333pt;}
.y1db{bottom:466.813333pt;}
.y1e9{bottom:467.933333pt;}
.y1ca{bottom:468.573324pt;}
.y1cb{bottom:468.573333pt;}
.y188{bottom:469.600000pt;}
.y176{bottom:469.786667pt;}
.y8e{bottom:469.920000pt;}
.y1d6{bottom:470.973333pt;}
.y100{bottom:472.160000pt;}
.ya4{bottom:474.653333pt;}
.ycd{bottom:476.706667pt;}
.yf1{bottom:477.026667pt;}
.y7c{bottom:478.533333pt;}
.y111{bottom:478.946667pt;}
.y10c{bottom:480.706667pt;}
.y20f{bottom:482.080000pt;}
.y146{bottom:483.866667pt;}
.ye{bottom:484.733333pt;}
.y63{bottom:485.920000pt;}
.y41{bottom:486.146667pt;}
.y1d{bottom:486.373333pt;}
.y4e{bottom:487.040000pt;}
.y1da{bottom:489.213333pt;}
.y1fb{bottom:490.400000pt;}
.y1bc{bottom:490.586667pt;}
.y1c8{bottom:491.013333pt;}
.y1c9{bottom:491.013347pt;}
.y149{bottom:491.813333pt;}
.y12a{bottom:492.893333pt;}
.y1b3{bottom:494.053333pt;}
.yff{bottom:494.560000pt;}
.y121{bottom:495.360000pt;}
.y3e{bottom:496.133333pt;}
.ya3{bottom:497.053333pt;}
.y151{bottom:498.173333pt;}
.y134{bottom:499.866667pt;}
.y117{bottom:501.626667pt;}
.y20a{bottom:501.760000pt;}
.y175{bottom:501.826667pt;}
.y23{bottom:502.693333pt;}
.y18b{bottom:503.266667pt;}
.yc4{bottom:503.386667pt;}
.ycc{bottom:503.906667pt;}
.y167{bottom:503.933333pt;}
.y7b{bottom:505.733333pt;}
.y2d{bottom:509.186667pt;}
.y110{bottom:510.946667pt;}
.y1c7{bottom:513.413333pt;}
.y8d{bottom:514.746667pt;}
.y70{bottom:515.013333pt;}
.y145{bottom:515.866667pt;}
.yd{bottom:516.733333pt;}
.yc3{bottom:517.626667pt;}
.y198{bottom:517.826667pt;}
.y62{bottom:517.946667pt;}
.y1c{bottom:518.400000pt;}
.ya2{bottom:519.453333pt;}
.y129{bottom:520.133333pt;}
.y92{bottom:520.893333pt;}
.y1e8{bottom:522.333333pt;}
.y1fa{bottom:522.426667pt;}
.y1a3{bottom:523.266667pt;}
.y148{bottom:523.813333pt;}
.y150{bottom:525.373333pt;}
.y1b2{bottom:526.080000pt;}
.y5{bottom:526.720000pt;}
.y3d{bottom:528.160000pt;}
.y22{bottom:529.920000pt;}
.y18a{bottom:530.466667pt;}
.ycb{bottom:531.133333pt;}
.y133{bottom:531.866667pt;}
.y7a{bottom:532.960000pt;}
.y116{bottom:533.626667pt;}
.y1d9{bottom:534.053333pt;}
.yf0{bottom:536.320000pt;}
.y8c{bottom:537.146667pt;}
.y20e{bottom:538.746667pt;}
.y2c{bottom:541.186667pt;}
.ya1{bottom:541.893333pt;}
.y6f{bottom:542.213333pt;}
.y40{bottom:543.746667pt;}
.y4d{bottom:544.666667pt;}
.yc2{bottom:544.866667pt;}
.y197{bottom:545.026667pt;}
.y144{bottom:547.906667pt;}
.yc{bottom:548.773333pt;}
.yfe{bottom:549.893333pt;}
.y61{bottom:549.946667pt;}
.y1a2{bottom:550.466667pt;}
.y14f{bottom:552.613333pt;}
.y91{bottom:552.893333pt;}
.y1f9{bottom:554.426667pt;}
.y1d8{bottom:556.453333pt;}
.yca{bottom:558.333333pt;}
.y120{bottom:559.360000pt;}
.y8b{bottom:559.546667pt;}
.y79{bottom:560.160000pt;}
.yef{bottom:563.546667pt;}
.y132{bottom:563.866667pt;}
.ya0{bottom:564.293333pt;}
.y174{bottom:565.826667pt;}
.y1c6{bottom:567.906667pt;}
.y166{bottom:570.946655pt;}
.y165{bottom:570.946667pt;}
.yc1{bottom:572.066667pt;}
.yfd{bottom:572.293333pt;}
.y1a1{bottom:577.693333pt;}
.y143{bottom:579.906667pt;}
.y9f{bottom:586.693333pt;}
.y3f{bottom:615.520000pt;}
.y186{bottom:645.893333pt;}
.y6{bottom:648.800000pt;}
.y131{bottom:649.120000pt;}
.yb{bottom:653.280000pt;}
.y2b{bottom:653.920000pt;}
.y21{bottom:655.840000pt;}
.y6e{bottom:656.480000pt;}
.y9e{bottom:664.800000pt;}
.h1d{height:35.435000pt;}
.h1{height:39.203840pt;}
.h25{height:43.330560pt;}
.h26{height:43.433728pt;}
.h20{height:46.312500pt;}
.hb{height:51.584000pt;}
.ha{height:51.687168pt;}
.h10{height:59.837440pt;}
.h12{height:59.940608pt;}
.h1f{height:63.073569pt;}
.h1e{height:63.182317pt;}
.h1c{height:67.453125pt;}
.h23{height:69.122560pt;}
.h24{height:69.225728pt;}
.hd{height:73.249280pt;}
.hc{height:73.352448pt;}
.h1a{height:77.210749pt;}
.h1b{height:77.319496pt;}
.h4{height:77.376000pt;}
.hf{height:77.479168pt;}
.h8{height:85.629440pt;}
.h7{height:85.732608pt;}
.h5{height:94.914560pt;}
.h9{height:103.168000pt;}
.he{height:103.271168pt;}
.h19{height:105.226875pt;}
.h11{height:112.125000pt;}
.h6{height:120.706560pt;}
.h22{height:120.809728pt;}
.h13{height:157.120000pt;}
.h2{height:172.290560pt;}
.h3{height:172.393728pt;}
.h18{height:248.640000pt;}
.h17{height:303.040000pt;}
.h15{height:313.920000pt;}
.h16{height:447.040000pt;}
.h14{height:470.720000pt;}
.h21{height:705.920000pt;}
.h0{height:720.000000pt;}
.w3{width:204.800000pt;}
.w5{width:244.800000pt;}
.w1{width:408.320000pt;}
.w2{width:492.160000pt;}
.w4{width:603.200000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x38{left:8.000000pt;}
.x16{left:9.600000pt;}
.x1{left:19.520000pt;}
.x23{left:87.680000pt;}
.x39{left:109.088000pt;}
.x3c{left:111.552000pt;}
.x45{left:118.626667pt;}
.x3f{left:120.448000pt;}
.x3b{left:127.008000pt;}
.x46{left:128.000000pt;}
.x42{left:131.840000pt;}
.x2{left:135.546667pt;}
.x4{left:143.133333pt;}
.x1d{left:145.120000pt;}
.xd{left:147.546667pt;}
.x1e{left:149.146667pt;}
.x6{left:150.693333pt;}
.x28{left:151.906667pt;}
.x10{left:153.466667pt;}
.x3{left:154.466667pt;}
.x17{left:155.520000pt;}
.x1f{left:156.933333pt;}
.x29{left:158.240000pt;}
.x1b{left:160.320000pt;}
.xc{left:162.013333pt;}
.xb{left:164.346667pt;}
.xa{left:165.786667pt;}
.x3e{left:173.373333pt;}
.x5{left:179.293333pt;}
.x37{left:180.933333pt;}
.x1c{left:182.786667pt;}
.x19{left:184.546667pt;}
.x18{left:185.600000pt;}
.x11{left:186.746667pt;}
.x27{left:190.626667pt;}
.x1a{left:191.680000pt;}
.x20{left:193.093333pt;}
.x9{left:202.466667pt;}
.x2e{left:214.946667pt;}
.x2f{left:245.053333pt;}
.x21{left:292.160000pt;}
.x7{left:348.800000pt;}
.x2c{left:415.266667pt;}
.x24{left:425.786667pt;}
.x32{left:433.253336pt;}
.x26{left:470.586667pt;}
.x35{left:472.933349pt;}
.x30{left:485.413331pt;}
.xe{left:498.533333pt;}
.x2a{left:522.466667pt;}
.x2b{left:527.293333pt;}
.x40{left:579.546667pt;}
.x2d{left:591.906667pt;}
.x3d{left:613.600016pt;}
.x36{left:627.520000pt;}
.x33{left:683.866667pt;}
.x31{left:685.466667pt;}
.x22{left:700.160000pt;}
.x47{left:715.973333pt;}
.x12{left:717.826667pt;}
.x49{left:720.800000pt;}
.x8{left:725.373333pt;}
.x14{left:747.906667pt;}
.x13{left:751.106667pt;}
.x15{left:765.826667pt;}
.x25{left:786.426667pt;}
.x48{left:814.880000pt;}
.xf{left:846.906667pt;}
.x44{left:851.746667pt;}
.x34{left:923.613363pt;}
.x41{left:978.053333pt;}
.x43{left:1237.666667pt;}
.x3a{left:1241.213333pt;}
}




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