
    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_6220e2b30af0e06125280e9a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950000;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_eb01c8ac4d0a67d5a98c50d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.808000;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_65b21d59585a90a6754bef31.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;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_ffd96879eaf9edefde097d39.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_845faef88717d88d6810a267.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_8b3715afeef4e0409ee55cb1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_152b16306683796f5c758590.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.912109;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_f0852c908e56098d0d1ae234.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.928000;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_a6ae8ca5b250f5649a607263.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.928000;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_69b844cf08c7ac9554956088.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.330566;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_b7f6b4eb4a923587f7e0fb4d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_d6338b88c2b45423b4f72de5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948000;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_29112bb5db82b3c0347a3832.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.943000;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.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m1{transform:matrix(0.208326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208326,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.v2{vertical-align:-19.800600px;}
.v5{vertical-align:-9.000600px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:16.123200px;}
.v3{vertical-align:19.812600px;}
.v1{vertical-align:21.600600px;}
.lsd{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.432000px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.048000px;}
.ls10{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.384000px;}
.ls6{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.594000px;}
.lsf{letter-spacing:0.702000px;}
.lsc{letter-spacing:0.810000px;}
.ls12{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.960000px;}
.lsa{letter-spacing:1.080000px;}
.ls5{letter-spacing:10.933200px;}
.ls9{letter-spacing:11.070000px;}
.ls2{letter-spacing:17.454600px;}
.ls4{letter-spacing:18.599400px;}
.ls7{letter-spacing:18.600600px;}
.ls3{letter-spacing:22.866000px;}
.ls0{letter-spacing:27.345000px;}
.ls1{letter-spacing:31.195200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-16.500000px;}
.wsf{word-spacing:-15.000000px;}
.wse{word-spacing:-14.202000px;}
.ws11{word-spacing:-14.040000px;}
.ws4{word-spacing:-13.500000px;}
.ws19{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.550000px;}
.ws18{word-spacing:-10.500000px;}
.wsc{word-spacing:-10.476000px;}
.ws6{word-spacing:-9.450000px;}
.ws10{word-spacing:-3.672000px;}
.ws5{word-spacing:0.000000px;}
.ws14{word-spacing:2.176200px;}
.ws13{word-spacing:2.367000px;}
.ws16{word-spacing:2.727600px;}
.wsa{word-spacing:4.911600px;}
.ws7{word-spacing:5.594400px;}
.ws3{word-spacing:6.392400px;}
.ws0{word-spacing:7.200600px;}
.ws8{word-spacing:8.917200px;}
.ws9{word-spacing:12.102000px;}
.ws15{word-spacing:12.163800px;}
.ws17{word-spacing:13.103400px;}
.ws12{word-spacing:13.347600px;}
.wsb{word-spacing:17.889600px;}
.wsd{word-spacing:24.826800px;}
._1{margin-left:-11.070000px;}
._6{margin-left:-6.014400px;}
._11{margin-left:-3.999600px;}
._4{margin-left:-2.858400px;}
._2{margin-left:-1.404000px;}
._0{width:1.404000px;}
._5{width:2.634000px;}
._3{width:3.888000px;}
._b{width:4.964400px;}
._9{width:6.051600px;}
._7{width:7.772400px;}
._f{width:9.342000px;}
._a{width:10.638000px;}
._c{width:12.258000px;}
._d{width:14.798400px;}
._12{width:16.065000px;}
._e{width:17.712000px;}
._8{width:19.605600px;}
._10{width:20.728800px;}
._14{width:32.673600px;}
._15{width:35.154000px;}
._13{width:44.550000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:37.800000px;}
.fsa{font-size:39.000000px;}
.fsb{font-size:42.000000px;}
.fs5{font-size:46.200000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:115.200000px;}
.fs8{font-size:203.904672px;}
.y0{bottom:0.000000px;}
.y64{bottom:7.586096px;}
.y15d{bottom:43.675200px;}
.yda{bottom:43.675650px;}
.y1{bottom:45.583500px;}
.y131{bottom:45.583650px;}
.y16b{bottom:86.636100px;}
.yd9{bottom:87.213150px;}
.ya4{bottom:87.969900px;}
.y115{bottom:88.024650px;}
.y54{bottom:91.050450px;}
.y130{bottom:91.954200px;}
.y16a{bottom:102.888000px;}
.ya3{bottom:104.304900px;}
.y114{bottom:104.359650px;}
.y12f{bottom:105.454200px;}
.yd8{bottom:106.465050px;}
.y53{bottom:107.466450px;}
.y12e{bottom:118.954200px;}
.ya2{bottom:120.639900px;}
.y113{bottom:120.694650px;}
.y169{bottom:122.139900px;}
.y25{bottom:123.410100px;}
.y52{bottom:123.882450px;}
.yd7{bottom:125.710350px;}
.ya1{bottom:136.974900px;}
.y112{bottom:137.029650px;}
.y24{bottom:139.664100px;}
.y51{bottom:140.298450px;}
.y168{bottom:141.385350px;}
.yd6{bottom:151.346850px;}
.ya0{bottom:153.349200px;}
.y111{bottom:153.364650px;}
.y23{bottom:155.918100px;}
.y50{bottom:156.714450px;}
.y1ab{bottom:158.691150px;}
.y167{bottom:167.021850px;}
.y9f{bottom:169.684200px;}
.y110{bottom:169.699650px;}
.y22{bottom:172.172100px;}
.y4f{bottom:173.130450px;}
.yd5{bottom:174.850950px;}
.y1aa{bottom:174.945150px;}
.y1e1{bottom:175.127700px;}
.y9e{bottom:186.019200px;}
.y10f{bottom:186.034650px;}
.y21{bottom:188.426100px;}
.y4e{bottom:189.546450px;}
.y166{bottom:190.525800px;}
.y1a9{bottom:191.199150px;}
.y1e0{bottom:191.476200px;}
.y9d{bottom:202.354200px;}
.y10e{bottom:202.369650px;}
.y165{bottom:204.025800px;}
.y20{bottom:204.680100px;}
.y4d{bottom:205.962450px;}
.y1a8{bottom:207.453150px;}
.y1df{bottom:207.824700px;}
.y238{bottom:216.754950px;}
.y9c{bottom:218.689200px;}
.y10d{bottom:218.704650px;}
.y1f{bottom:220.934100px;}
.y200{bottom:222.033450px;}
.y4c{bottom:222.378450px;}
.y1a7{bottom:223.707150px;}
.y1de{bottom:224.173200px;}
.yd3{bottom:232.481550px;}
.y237{bottom:233.130450px;}
.y9b{bottom:235.024200px;}
.y10c{bottom:235.039650px;}
.y1e{bottom:237.174600px;}
.y1ff{bottom:238.233450px;}
.y4b{bottom:238.794450px;}
.y1a6{bottom:239.961150px;}
.y1dd{bottom:240.521700px;}
.y236{bottom:249.505950px;}
.yd2{bottom:249.613050px;}
.y10b{bottom:251.374650px;}
.y9a{bottom:251.426400px;}
.y1d{bottom:253.442100px;}
.y1fe{bottom:254.433450px;}
.y4a{bottom:255.210450px;}
.y1a5{bottom:256.215150px;}
.y164{bottom:256.586550px;}
.y1dc{bottom:256.870200px;}
.y235{bottom:265.881450px;}
.yd1{bottom:266.744550px;}
.y10a{bottom:267.709650px;}
.y99{bottom:267.761400px;}
.y1c{bottom:269.696100px;}
.y1fd{bottom:270.633450px;}
.y49{bottom:271.626450px;}
.y1a4{bottom:272.469150px;}
.y163{bottom:272.838450px;}
.y1db{bottom:273.218700px;}
.y234{bottom:282.256950px;}
.yd0{bottom:283.876050px;}
.y109{bottom:284.044650px;}
.y98{bottom:284.096400px;}
.y1b{bottom:285.950100px;}
.y1fc{bottom:286.833450px;}
.y48{bottom:288.042450px;}
.y1a3{bottom:288.723150px;}
.y1da{bottom:289.567200px;}
.y162{bottom:292.090500px;}
.y233{bottom:298.632450px;}
.y108{bottom:300.379650px;}
.y97{bottom:300.431400px;}
.ycf{bottom:301.007550px;}
.y1a{bottom:302.204100px;}
.y1fb{bottom:303.033450px;}
.y47{bottom:304.458450px;}
.y1a2{bottom:304.977150px;}
.y1d9{bottom:305.915700px;}
.y161{bottom:311.335950px;}
.y232{bottom:315.007950px;}
.y107{bottom:316.714650px;}
.y96{bottom:316.766400px;}
.yce{bottom:318.139050px;}
.y19{bottom:318.458100px;}
.y1fa{bottom:319.233450px;}
.y46{bottom:320.874450px;}
.y1a1{bottom:321.231150px;}
.y1d8{bottom:328.304100px;}
.y231{bottom:331.383450px;}
.y95{bottom:333.101400px;}
.y18{bottom:334.712100px;}
.ycd{bottom:335.270550px;}
.y1f9{bottom:335.433450px;}
.y160{bottom:336.972450px;}
.y45{bottom:337.290450px;}
.y1a0{bottom:337.485150px;}
.y106{bottom:339.092550px;}
.y230{bottom:347.758950px;}
.y94{bottom:349.436400px;}
.y17{bottom:350.952600px;}
.y1f8{bottom:351.633450px;}
.ycc{bottom:352.402050px;}
.y19f{bottom:353.693850px;}
.y44{bottom:353.725800px;}
.y15f{bottom:360.476250px;}
.y22f{bottom:364.134450px;}
.y93{bottom:365.771400px;}
.y16{bottom:367.220100px;}
.y1f7{bottom:367.833450px;}
.ycb{bottom:369.533550px;}
.y19e{bottom:369.947850px;}
.y43{bottom:370.141800px;}
.y63{bottom:372.120574px;}
.y15e{bottom:373.976250px;}
.y22e{bottom:380.509950px;}
.y92{bottom:382.106400px;}
.y15{bottom:383.474100px;}
.y1f6{bottom:384.033450px;}
.y19d{bottom:386.201850px;}
.y42{bottom:386.602950px;}
.yca{bottom:386.665050px;}
.y1d7{bottom:395.564100px;}
.y22d{bottom:396.885450px;}
.y91{bottom:398.441400px;}
.y14{bottom:399.728100px;}
.y1f5{bottom:400.233450px;}
.y19c{bottom:402.455850px;}
.y41{bottom:403.018950px;}
.yc9{bottom:403.796550px;}
.y12d{bottom:404.164800px;}
.y105{bottom:406.318200px;}
.y1d6{bottom:411.912600px;}
.y22c{bottom:413.260950px;}
.y90{bottom:414.776400px;}
.y13{bottom:415.982100px;}
.y1f4{bottom:416.433450px;}
.y12c{bottom:417.664800px;}
.y19b{bottom:418.709850px;}
.y40{bottom:419.434950px;}
.yc8{bottom:420.928050px;}
.y104{bottom:422.653200px;}
.y1d5{bottom:428.261100px;}
.y22b{bottom:429.636450px;}
.y8f{bottom:431.111400px;}
.y12b{bottom:431.164800px;}
.y12{bottom:432.236100px;}
.y1f3{bottom:432.633450px;}
.y19a{bottom:434.963850px;}
.y3f{bottom:435.850950px;}
.yc7{bottom:438.059550px;}
.y103{bottom:438.988200px;}
.y1d4{bottom:444.609600px;}
.y12a{bottom:444.664800px;}
.y22a{bottom:446.011950px;}
.y8e{bottom:447.446400px;}
.y11{bottom:448.490100px;}
.y1f2{bottom:448.833450px;}
.y199{bottom:451.217850px;}
.y3e{bottom:452.266950px;}
.yc6{bottom:455.191050px;}
.y102{bottom:455.323200px;}
.y1d3{bottom:460.958100px;}
.y229{bottom:462.387450px;}
.y8d{bottom:463.826250px;}
.y10{bottom:464.744100px;}
.y1f1{bottom:465.033450px;}
.y198{bottom:467.471850px;}
.y3d{bottom:468.682950px;}
.y149{bottom:470.077350px;}
.y101{bottom:471.644700px;}
.yc5{bottom:472.322550px;}
.y16f{bottom:475.147800px;}
.y1d2{bottom:477.306600px;}
.y228{bottom:478.762950px;}
.y8c{bottom:480.161250px;}
.yf{bottom:480.998100px;}
.y1f0{bottom:481.233450px;}
.y197{bottom:483.720300px;}
.y3c{bottom:485.098950px;}
.y148{bottom:486.412350px;}
.y100{bottom:487.993200px;}
.y16e{bottom:488.647800px;}
.yc4{bottom:489.454050px;}
.y1d1{bottom:493.655100px;}
.y227{bottom:495.138450px;}
.y8b{bottom:496.496250px;}
.ye{bottom:497.265600px;}
.y1ef{bottom:497.433450px;}
.y196{bottom:499.900650px;}
.y3b{bottom:501.540750px;}
.y16d{bottom:502.147800px;}
.y147{bottom:502.747350px;}
.yff{bottom:504.328200px;}
.yc3{bottom:506.585550px;}
.y1d0{bottom:510.003600px;}
.y226{bottom:511.513950px;}
.y8a{bottom:512.831250px;}
.yd{bottom:513.519600px;}
.y1ee{bottom:513.633450px;}
.y16c{bottom:515.647800px;}
.y195{bottom:516.154650px;}
.y3a{bottom:517.956750px;}
.y146{bottom:519.082350px;}
.yfe{bottom:520.663200px;}
.yc2{bottom:523.717050px;}
.y1cf{bottom:526.352100px;}
.y225{bottom:527.889450px;}
.y89{bottom:529.166250px;}
.yc{bottom:529.773600px;}
.y1ed{bottom:529.833450px;}
.y194{bottom:532.408650px;}
.y39{bottom:534.372750px;}
.y145{bottom:535.417350px;}
.yfd{bottom:536.998200px;}
.y1ce{bottom:542.700600px;}
.y224{bottom:544.264950px;}
.y88{bottom:545.501250px;}
.yb{bottom:546.027600px;}
.y1ec{bottom:546.033450px;}
.yc1{bottom:546.102750px;}
.y193{bottom:548.662650px;}
.y38{bottom:550.788750px;}
.y144{bottom:551.752350px;}
.yfc{bottom:553.333200px;}
.y1cd{bottom:559.049100px;}
.y223{bottom:560.640450px;}
.y87{bottom:561.836250px;}
.y1eb{bottom:562.233450px;}
.ya{bottom:562.281600px;}
.y192{bottom:564.916650px;}
.y37{bottom:567.211200px;}
.y143{bottom:568.087350px;}
.yfb{bottom:569.668200px;}
.y1cc{bottom:575.397600px;}
.yc0{bottom:576.798300px;}
.y222{bottom:577.015950px;}
.y86{bottom:578.171250px;}
.y1ea{bottom:578.433450px;}
.y191{bottom:581.170650px;}
.y36{bottom:583.653150px;}
.y142{bottom:584.422350px;}
.y9{bottom:584.593200px;}
.yfa{bottom:591.261900px;}
.y1cb{bottom:591.746100px;}
.y221{bottom:593.391450px;}
.ybf{bottom:593.929800px;}
.y85{bottom:594.523200px;}
.y1e9{bottom:594.633450px;}
.y190{bottom:597.424650px;}
.y35{bottom:600.069150px;}
.y141{bottom:600.757350px;}
.y1ca{bottom:608.094600px;}
.y220{bottom:609.766950px;}
.y1e8{bottom:610.833450px;}
.y84{bottom:610.858200px;}
.ybe{bottom:611.061300px;}
.y18f{bottom:613.678650px;}
.y34{bottom:616.485150px;}
.y140{bottom:617.092350px;}
.yf9{bottom:621.233100px;}
.y1c9{bottom:624.443100px;}
.y21f{bottom:626.142450px;}
.y1e7{bottom:627.033450px;}
.y83{bottom:627.204300px;}
.ybd{bottom:628.192800px;}
.y18e{bottom:629.932650px;}
.y33{bottom:632.901150px;}
.y13f{bottom:633.427350px;}
.yf8{bottom:637.554600px;}
.y1c8{bottom:640.791600px;}
.y21e{bottom:642.517950px;}
.y1e6{bottom:643.233450px;}
.y82{bottom:643.539300px;}
.ybc{bottom:645.324300px;}
.y18d{bottom:646.186650px;}
.y32{bottom:649.317150px;}
.y13e{bottom:649.762350px;}
.yf7{bottom:653.889600px;}
.y1c7{bottom:657.140100px;}
.y21d{bottom:658.893450px;}
.y1e5{bottom:659.433450px;}
.y81{bottom:659.885550px;}
.y18c{bottom:662.440650px;}
.ybb{bottom:662.455800px;}
.y61{bottom:664.064550px;}
.y31{bottom:665.758950px;}
.y13d{bottom:666.097350px;}
.yf6{bottom:670.224600px;}
.y1c6{bottom:673.488600px;}
.y21c{bottom:675.268950px;}
.y1e4{bottom:675.633450px;}
.y80{bottom:676.220550px;}
.y18b{bottom:678.694650px;}
.y60{bottom:679.064550px;}
.yba{bottom:679.587300px;}
.y30{bottom:682.174950px;}
.y13c{bottom:682.432350px;}
.yf5{bottom:686.559600px;}
.y1c5{bottom:689.823600px;}
.y21b{bottom:691.644450px;}
.y1e3{bottom:691.833450px;}
.y7f{bottom:692.589150px;}
.y5f{bottom:694.064550px;}
.y18a{bottom:694.948650px;}
.yb9{bottom:696.718800px;}
.y2f{bottom:698.590950px;}
.y13b{bottom:698.767350px;}
.yf4{bottom:702.908100px;}
.y1c4{bottom:706.192350px;}
.y21a{bottom:708.019950px;}
.y7e{bottom:708.924150px;}
.y5e{bottom:709.064550px;}
.y189{bottom:711.191400px;}
.yb8{bottom:713.850300px;}
.y1e2{bottom:714.071250px;}
.y2e{bottom:715.013400px;}
.y13a{bottom:715.102350px;}
.yf3{bottom:719.243100px;}
.y1c3{bottom:722.540850px;}
.y5d{bottom:724.064550px;}
.y219{bottom:724.395450px;}
.y7d{bottom:725.259150px;}
.y188{bottom:727.445400px;}
.yb7{bottom:730.981800px;}
.y139{bottom:731.437350px;}
.y2d{bottom:731.448750px;}
.yf2{bottom:735.578100px;}
.y1c2{bottom:738.889350px;}
.y5c{bottom:739.064550px;}
.y218{bottom:740.770950px;}
.y7c{bottom:741.594150px;}
.y187{bottom:743.574150px;}
.y2c{bottom:747.864750px;}
.yb6{bottom:748.113300px;}
.yf1{bottom:751.913100px;}
.y138{bottom:753.023550px;}
.y5b{bottom:754.064550px;}
.y1c1{bottom:755.253450px;}
.y217{bottom:757.146450px;}
.y7b{bottom:757.929150px;}
.y186{bottom:759.828150px;}
.y2b{bottom:764.280750px;}
.yb5{bottom:765.244800px;}
.yf0{bottom:768.248100px;}
.y5a{bottom:769.064550px;}
.y24f{bottom:770.383650px;}
.y1c0{bottom:771.601950px;}
.y216{bottom:773.521950px;}
.y7a{bottom:774.264150px;}
.y185{bottom:776.082150px;}
.y2a{bottom:780.716100px;}
.yb4{bottom:782.376300px;}
.y59{bottom:784.064550px;}
.yef{bottom:784.583100px;}
.y24e{bottom:785.383650px;}
.y1bf{bottom:787.950450px;}
.y137{bottom:788.947950px;}
.y215{bottom:789.897450px;}
.y79{bottom:790.599150px;}
.y184{bottom:792.336150px;}
.y129{bottom:795.833250px;}
.y29{bottom:797.132100px;}
.y58{bottom:799.064550px;}
.yb3{bottom:799.507800px;}
.y24d{bottom:800.383650px;}
.yee{bottom:800.918100px;}
.y1be{bottom:804.298950px;}
.y214{bottom:806.272950px;}
.y78{bottom:806.950950px;}
.y183{bottom:808.590150px;}
.y128{bottom:810.835650px;}
.y28{bottom:813.548100px;}
.y57{bottom:814.064550px;}
.y24c{bottom:815.383650px;}
.yb2{bottom:816.639300px;}
.yed{bottom:817.239600px;}
.y1bd{bottom:820.647450px;}
.y213{bottom:822.648450px;}
.y77{bottom:823.285950px;}
.y182{bottom:824.844150px;}
.y15c{bottom:825.811350px;}
.y127{bottom:825.834150px;}
.y56{bottom:829.064550px;}
.y27{bottom:829.964100px;}
.y24b{bottom:830.383650px;}
.yec{bottom:833.588100px;}
.yb1{bottom:833.770800px;}
.y1bc{bottom:836.995950px;}
.y212{bottom:839.023950px;}
.y76{bottom:839.649000px;}
.y181{bottom:841.098150px;}
.y15b{bottom:842.011350px;}
.y126{bottom:845.085150px;}
.y24a{bottom:847.633800px;}
.yeb{bottom:849.923100px;}
.yb0{bottom:850.902300px;}
.y26{bottom:852.424200px;}
.y55{bottom:852.572550px;}
.y1bb{bottom:853.344450px;}
.y211{bottom:855.399450px;}
.y75{bottom:855.984000px;}
.y136{bottom:856.051350px;}
.y180{bottom:857.352150px;}
.y15a{bottom:858.211350px;}
.y125{bottom:860.085150px;}
.y249{bottom:860.383650px;}
.yea{bottom:866.244600px;}
.yaf{bottom:868.035000px;}
.y1ba{bottom:869.692950px;}
.y210{bottom:871.774950px;}
.y74{bottom:872.319000px;}
.y135{bottom:872.386350px;}
.y17f{bottom:873.606150px;}
.y159{bottom:874.411350px;}
.y124{bottom:875.085150px;}
.y248{bottom:875.383650px;}
.ye9{bottom:882.625500px;}
.yae{bottom:885.166500px;}
.y1b9{bottom:886.059450px;}
.y20f{bottom:888.150450px;}
.y73{bottom:888.654000px;}
.y134{bottom:888.721350px;}
.y17e{bottom:889.860150px;}
.y247{bottom:890.383650px;}
.y158{bottom:890.611350px;}
.y123{bottom:894.341100px;}
.ye8{bottom:898.974000px;}
.y1b8{bottom:902.407950px;}
.y20e{bottom:904.525950px;}
.y72{bottom:904.989000px;}
.y133{bottom:905.056350px;}
.y246{bottom:905.383650px;}
.y17d{bottom:906.114150px;}
.y157{bottom:906.811350px;}
.yad{bottom:907.552200px;}
.y122{bottom:909.339600px;}
.ye7{bottom:915.309000px;}
.y1b7{bottom:918.756450px;}
.y245{bottom:920.383650px;}
.y20d{bottom:920.901450px;}
.y71{bottom:921.324000px;}
.y132{bottom:921.391350px;}
.y17c{bottom:922.368150px;}
.y156{bottom:923.011350px;}
.y121{bottom:924.338100px;}
.y8{bottom:925.761750px;}
.ye6{bottom:931.644000px;}
.y1b6{bottom:935.104950px;}
.y244{bottom:935.383650px;}
.y20c{bottom:937.276950px;}
.y70{bottom:937.726350px;}
.y17b{bottom:938.622150px;}
.y155{bottom:939.211350px;}
.y120{bottom:943.589100px;}
.yac{bottom:944.276250px;}
.y7{bottom:945.261750px;}
.ye5{bottom:947.979000px;}
.y243{bottom:950.383650px;}
.y1b5{bottom:951.453450px;}
.y20b{bottom:953.652450px;}
.y6f{bottom:954.061350px;}
.y17a{bottom:954.876150px;}
.y154{bottom:955.411350px;}
.y11f{bottom:958.589100px;}
.ye4{bottom:964.314000px;}
.y242{bottom:965.383650px;}
.y1b4{bottom:967.801950px;}
.y6{bottom:969.714900px;}
.y20a{bottom:970.027950px;}
.y6e{bottom:970.396350px;}
.y179{bottom:971.130150px;}
.y153{bottom:971.611350px;}
.y11e{bottom:973.589100px;}
.y241{bottom:980.383650px;}
.ye3{bottom:980.649000px;}
.y1b3{bottom:984.150450px;}
.y209{bottom:986.403450px;}
.y6d{bottom:986.731350px;}
.y178{bottom:987.384150px;}
.y152{bottom:987.811350px;}
.y11d{bottom:988.589100px;}
.y5{bottom:992.768700px;}
.y240{bottom:995.383650px;}
.ye2{bottom:996.984000px;}
.y1b2{bottom:1000.498950px;}
.y208{bottom:1002.778950px;}
.y6c{bottom:1003.066350px;}
.y177{bottom:1003.638150px;}
.y151{bottom:1004.011350px;}
.y11c{bottom:1007.844000px;}
.y23f{bottom:1010.383650px;}
.ye1{bottom:1013.330700px;}
.yab{bottom:1014.636900px;}
.y207{bottom:1019.154450px;}
.y6b{bottom:1019.401350px;}
.y176{bottom:1019.892150px;}
.y150{bottom:1020.211350px;}
.y1b1{bottom:1022.103300px;}
.y11b{bottom:1022.835900px;}
.y23e{bottom:1025.383650px;}
.y4{bottom:1029.291000px;}
.ye0{bottom:1029.679200px;}
.yaa{bottom:1031.768400px;}
.y206{bottom:1035.529950px;}
.y6a{bottom:1035.736350px;}
.y175{bottom:1036.146150px;}
.y14f{bottom:1036.411350px;}
.y11a{bottom:1037.834400px;}
.y23d{bottom:1040.383650px;}
.ydf{bottom:1046.014200px;}
.ya9{bottom:1048.899900px;}
.y205{bottom:1051.905450px;}
.y1b0{bottom:1051.945650px;}
.y69{bottom:1052.071350px;}
.y174{bottom:1052.400150px;}
.y14e{bottom:1052.611350px;}
.y23c{bottom:1055.383650px;}
.y3{bottom:1056.276600px;}
.yde{bottom:1062.335700px;}
.y119{bottom:1063.470900px;}
.ya8{bottom:1066.031400px;}
.y204{bottom:1068.280950px;}
.y1af{bottom:1068.294150px;}
.y68{bottom:1068.406350px;}
.y173{bottom:1068.654150px;}
.y14d{bottom:1068.811350px;}
.y23b{bottom:1070.383650px;}
.ydd{bottom:1078.684200px;}
.ya7{bottom:1083.162900px;}
.y1ae{bottom:1084.642650px;}
.y203{bottom:1084.656450px;}
.y67{bottom:1084.741350px;}
.y172{bottom:1084.908150px;}
.y14c{bottom:1085.011350px;}
.y23a{bottom:1085.383650px;}
.y118{bottom:1086.974850px;}
.ydc{bottom:1095.019200px;}
.ya6{bottom:1100.294400px;}
.y239{bottom:1100.383650px;}
.y117{bottom:1100.474850px;}
.y1ad{bottom:1100.991150px;}
.y202{bottom:1101.031950px;}
.y66{bottom:1101.076350px;}
.y171{bottom:1101.162150px;}
.y14b{bottom:1101.175350px;}
.y62{bottom:1102.653600px;}
.y116{bottom:1113.974850px;}
.ydb{bottom:1116.613050px;}
.y1ac{bottom:1117.339650px;}
.y14a{bottom:1117.375350px;}
.y201{bottom:1117.407450px;}
.y65{bottom:1117.411350px;}
.y170{bottom:1117.416150px;}
.ya5{bottom:1117.425900px;}
.yd4{bottom:1158.806250px;}
.y2{bottom:1159.131750px;}
.h2a{height:28.431000px;}
.h33{height:29.162109px;}
.h6{height:31.288770px;}
.h34{height:33.328125px;}
.h32{height:33.421875px;}
.h13{height:34.272000px;}
.ha{height:37.599609px;}
.h21{height:38.610000px;}
.h24{height:39.366000px;}
.h29{height:39.391800px;}
.h27{height:39.392400px;}
.h23{height:39.420000px;}
.h22{height:39.636000px;}
.h2{height:39.852000px;}
.h1e{height:40.664062px;}
.h12{height:42.132727px;}
.h1d{height:42.250927px;}
.h17{height:42.273127px;}
.h10{height:42.339127px;}
.h26{height:42.357127px;}
.h1c{height:42.363127px;}
.h1a{height:42.385327px;}
.h18{height:42.408127px;}
.he{height:42.415927px;}
.hf{height:42.416527px;}
.h25{height:42.419527px;}
.hc{height:42.442327px;}
.hb{height:42.442927px;}
.h30{height:42.457327px;}
.h11{height:42.468127px;}
.h1b{height:42.474727px;}
.h19{height:42.475327px;}
.h31{height:42.492727px;}
.hd{height:42.493927px;}
.h1f{height:42.517927px;}
.h2e{height:42.542527px;}
.h2c{height:42.565327px;}
.h28{height:42.663727px;}
.h2f{height:42.700927px;}
.h2d{height:42.814327px;}
.h2b{height:43.020727px;}
.h8{height:44.698242px;}
.h9{height:44.730469px;}
.h20{height:44.946000px;}
.h14{height:48.672000px;}
.h3{height:49.032000px;}
.h7{height:51.101370px;}
.h5{height:55.758413px;}
.h4{height:77.875200px;}
.h16{height:205.099426px;}
.h15{height:446.307759px;}
.h1{height:1190.250000px;}
.h0{height:1190.551485px;}
.w2{width:446.307759px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x2{left:-58.165950px;}
.x13{left:-56.359500px;}
.x0{left:0.000000px;}
.xb{left:32.064283px;}
.x1{left:63.779250px;}
.x3{left:65.276700px;}
.x9{left:66.817350px;}
.x4{left:68.317350px;}
.x8{left:72.817350px;}
.xc{left:85.040100px;}
.x12{left:86.783550px;}
.x18{left:87.805650px;}
.x5{left:89.577300px;}
.x19{left:94.665900px;}
.xd{left:106.302600px;}
.x17{left:209.630250px;}
.xa{left:223.301595px;}
.xf{left:339.317250px;}
.x16{left:446.799450px;}
.x6{left:449.354100px;}
.x14{left:451.572150px;}
.x15{left:454.474650px;}
.x10{left:469.500000px;}
.x7{left:470.613900px;}
.x11{left:472.931250px;}
.xe{left:491.103000px;}
@media print{
.v2{vertical-align:-17.600533pt;}
.v5{vertical-align:-8.000533pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.331733pt;}
.v3{vertical-align:17.611200pt;}
.v1{vertical-align:19.200533pt;}
.lsd{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.042667pt;}
.ls10{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.341333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.528000pt;}
.lsf{letter-spacing:0.624000pt;}
.lsc{letter-spacing:0.720000pt;}
.ls12{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.853333pt;}
.lsa{letter-spacing:0.960000pt;}
.ls5{letter-spacing:9.718400pt;}
.ls9{letter-spacing:9.840000pt;}
.ls2{letter-spacing:15.515200pt;}
.ls4{letter-spacing:16.532800pt;}
.ls7{letter-spacing:16.533867pt;}
.ls3{letter-spacing:20.325333pt;}
.ls0{letter-spacing:24.306667pt;}
.ls1{letter-spacing:27.729067pt;}
.ws2{word-spacing:-14.666667pt;}
.wsf{word-spacing:-13.333333pt;}
.wse{word-spacing:-12.624000pt;}
.ws11{word-spacing:-12.480000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws19{word-spacing:-10.666667pt;}
.ws1{word-spacing:-10.266667pt;}
.ws18{word-spacing:-9.333333pt;}
.wsc{word-spacing:-9.312000pt;}
.ws6{word-spacing:-8.400000pt;}
.ws10{word-spacing:-3.264000pt;}
.ws5{word-spacing:0.000000pt;}
.ws14{word-spacing:1.934400pt;}
.ws13{word-spacing:2.104000pt;}
.ws16{word-spacing:2.424533pt;}
.wsa{word-spacing:4.365867pt;}
.ws7{word-spacing:4.972800pt;}
.ws3{word-spacing:5.682133pt;}
.ws0{word-spacing:6.400533pt;}
.ws8{word-spacing:7.926400pt;}
.ws9{word-spacing:10.757333pt;}
.ws15{word-spacing:10.812267pt;}
.ws17{word-spacing:11.647467pt;}
.ws12{word-spacing:11.864533pt;}
.wsb{word-spacing:15.901867pt;}
.wsd{word-spacing:22.068267pt;}
._1{margin-left:-9.840000pt;}
._6{margin-left:-5.346133pt;}
._11{margin-left:-3.555200pt;}
._4{margin-left:-2.540800pt;}
._2{margin-left:-1.248000pt;}
._0{width:1.248000pt;}
._5{width:2.341333pt;}
._3{width:3.456000pt;}
._b{width:4.412800pt;}
._9{width:5.379200pt;}
._7{width:6.908800pt;}
._f{width:8.304000pt;}
._a{width:9.456000pt;}
._c{width:10.896000pt;}
._d{width:13.154133pt;}
._12{width:14.280000pt;}
._e{width:15.744000pt;}
._8{width:17.427200pt;}
._10{width:18.425600pt;}
._14{width:29.043200pt;}
._15{width:31.248000pt;}
._13{width:39.600000pt;}
.fs6{font-size:33.600000pt;}
.fsa{font-size:34.666667pt;}
.fsb{font-size:37.333333pt;}
.fs5{font-size:41.066667pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:102.400000pt;}
.fs8{font-size:181.248597pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:6.743196pt;}
.y15d{bottom:38.822400pt;}
.yda{bottom:38.822800pt;}
.y1{bottom:40.518667pt;}
.y131{bottom:40.518800pt;}
.y16b{bottom:77.009867pt;}
.yd9{bottom:77.522800pt;}
.ya4{bottom:78.195467pt;}
.y115{bottom:78.244133pt;}
.y54{bottom:80.933733pt;}
.y130{bottom:81.737067pt;}
.y16a{bottom:91.456000pt;}
.ya3{bottom:92.715467pt;}
.y114{bottom:92.764133pt;}
.y12f{bottom:93.737067pt;}
.yd8{bottom:94.635600pt;}
.y53{bottom:95.525733pt;}
.y12e{bottom:105.737067pt;}
.ya2{bottom:107.235467pt;}
.y113{bottom:107.284133pt;}
.y169{bottom:108.568800pt;}
.y25{bottom:109.697867pt;}
.y52{bottom:110.117733pt;}
.yd7{bottom:111.742533pt;}
.ya1{bottom:121.755467pt;}
.y112{bottom:121.804133pt;}
.y24{bottom:124.145867pt;}
.y51{bottom:124.709733pt;}
.y168{bottom:125.675867pt;}
.yd6{bottom:134.530533pt;}
.ya0{bottom:136.310400pt;}
.y111{bottom:136.324133pt;}
.y23{bottom:138.593867pt;}
.y50{bottom:139.301733pt;}
.y1ab{bottom:141.058800pt;}
.y167{bottom:148.463867pt;}
.y9f{bottom:150.830400pt;}
.y110{bottom:150.844133pt;}
.y22{bottom:153.041867pt;}
.y4f{bottom:153.893733pt;}
.yd5{bottom:155.423067pt;}
.y1aa{bottom:155.506800pt;}
.y1e1{bottom:155.669067pt;}
.y9e{bottom:165.350400pt;}
.y10f{bottom:165.364133pt;}
.y21{bottom:167.489867pt;}
.y4e{bottom:168.485733pt;}
.y166{bottom:169.356267pt;}
.y1a9{bottom:169.954800pt;}
.y1e0{bottom:170.201067pt;}
.y9d{bottom:179.870400pt;}
.y10e{bottom:179.884133pt;}
.y165{bottom:181.356267pt;}
.y20{bottom:181.937867pt;}
.y4d{bottom:183.077733pt;}
.y1a8{bottom:184.402800pt;}
.y1df{bottom:184.733067pt;}
.y238{bottom:192.671067pt;}
.y9c{bottom:194.390400pt;}
.y10d{bottom:194.404133pt;}
.y1f{bottom:196.385867pt;}
.y200{bottom:197.363067pt;}
.y4c{bottom:197.669733pt;}
.y1a7{bottom:198.850800pt;}
.y1de{bottom:199.265067pt;}
.yd3{bottom:206.650267pt;}
.y237{bottom:207.227067pt;}
.y9b{bottom:208.910400pt;}
.y10c{bottom:208.924133pt;}
.y1e{bottom:210.821867pt;}
.y1ff{bottom:211.763067pt;}
.y4b{bottom:212.261733pt;}
.y1a6{bottom:213.298800pt;}
.y1dd{bottom:213.797067pt;}
.y236{bottom:221.783067pt;}
.yd2{bottom:221.878267pt;}
.y10b{bottom:223.444133pt;}
.y9a{bottom:223.490133pt;}
.y1d{bottom:225.281867pt;}
.y1fe{bottom:226.163067pt;}
.y4a{bottom:226.853733pt;}
.y1a5{bottom:227.746800pt;}
.y164{bottom:228.076933pt;}
.y1dc{bottom:228.329067pt;}
.y235{bottom:236.339067pt;}
.yd1{bottom:237.106267pt;}
.y10a{bottom:237.964133pt;}
.y99{bottom:238.010133pt;}
.y1c{bottom:239.729867pt;}
.y1fd{bottom:240.563067pt;}
.y49{bottom:241.445733pt;}
.y1a4{bottom:242.194800pt;}
.y163{bottom:242.523067pt;}
.y1db{bottom:242.861067pt;}
.y234{bottom:250.895067pt;}
.yd0{bottom:252.334267pt;}
.y109{bottom:252.484133pt;}
.y98{bottom:252.530133pt;}
.y1b{bottom:254.177867pt;}
.y1fc{bottom:254.963067pt;}
.y48{bottom:256.037733pt;}
.y1a3{bottom:256.642800pt;}
.y1da{bottom:257.393067pt;}
.y162{bottom:259.636000pt;}
.y233{bottom:265.451067pt;}
.y108{bottom:267.004133pt;}
.y97{bottom:267.050133pt;}
.ycf{bottom:267.562267pt;}
.y1a{bottom:268.625867pt;}
.y1fb{bottom:269.363067pt;}
.y47{bottom:270.629733pt;}
.y1a2{bottom:271.090800pt;}
.y1d9{bottom:271.925067pt;}
.y161{bottom:276.743067pt;}
.y232{bottom:280.007067pt;}
.y107{bottom:281.524133pt;}
.y96{bottom:281.570133pt;}
.yce{bottom:282.790267pt;}
.y19{bottom:283.073867pt;}
.y1fa{bottom:283.763067pt;}
.y46{bottom:285.221733pt;}
.y1a1{bottom:285.538800pt;}
.y1d8{bottom:291.825867pt;}
.y231{bottom:294.563067pt;}
.y95{bottom:296.090133pt;}
.y18{bottom:297.521867pt;}
.ycd{bottom:298.018267pt;}
.y1f9{bottom:298.163067pt;}
.y160{bottom:299.531067pt;}
.y45{bottom:299.813733pt;}
.y1a0{bottom:299.986800pt;}
.y106{bottom:301.415600pt;}
.y230{bottom:309.119067pt;}
.y94{bottom:310.610133pt;}
.y17{bottom:311.957867pt;}
.y1f8{bottom:312.563067pt;}
.ycc{bottom:313.246267pt;}
.y19f{bottom:314.394533pt;}
.y44{bottom:314.422933pt;}
.y15f{bottom:320.423333pt;}
.y22f{bottom:323.675067pt;}
.y93{bottom:325.130133pt;}
.y16{bottom:326.417867pt;}
.y1f7{bottom:326.963067pt;}
.ycb{bottom:328.474267pt;}
.y19e{bottom:328.842533pt;}
.y43{bottom:329.014933pt;}
.y63{bottom:330.773844pt;}
.y15e{bottom:332.423333pt;}
.y22e{bottom:338.231067pt;}
.y92{bottom:339.650133pt;}
.y15{bottom:340.865867pt;}
.y1f6{bottom:341.363067pt;}
.y19d{bottom:343.290533pt;}
.y42{bottom:343.647067pt;}
.yca{bottom:343.702267pt;}
.y1d7{bottom:351.612533pt;}
.y22d{bottom:352.787067pt;}
.y91{bottom:354.170133pt;}
.y14{bottom:355.313867pt;}
.y1f5{bottom:355.763067pt;}
.y19c{bottom:357.738533pt;}
.y41{bottom:358.239067pt;}
.yc9{bottom:358.930267pt;}
.y12d{bottom:359.257600pt;}
.y105{bottom:361.171733pt;}
.y1d6{bottom:366.144533pt;}
.y22c{bottom:367.343067pt;}
.y90{bottom:368.690133pt;}
.y13{bottom:369.761867pt;}
.y1f4{bottom:370.163067pt;}
.y12c{bottom:371.257600pt;}
.y19b{bottom:372.186533pt;}
.y40{bottom:372.831067pt;}
.yc8{bottom:374.158267pt;}
.y104{bottom:375.691733pt;}
.y1d5{bottom:380.676533pt;}
.y22b{bottom:381.899067pt;}
.y8f{bottom:383.210133pt;}
.y12b{bottom:383.257600pt;}
.y12{bottom:384.209867pt;}
.y1f3{bottom:384.563067pt;}
.y19a{bottom:386.634533pt;}
.y3f{bottom:387.423067pt;}
.yc7{bottom:389.386267pt;}
.y103{bottom:390.211733pt;}
.y1d4{bottom:395.208533pt;}
.y12a{bottom:395.257600pt;}
.y22a{bottom:396.455067pt;}
.y8e{bottom:397.730133pt;}
.y11{bottom:398.657867pt;}
.y1f2{bottom:398.963067pt;}
.y199{bottom:401.082533pt;}
.y3e{bottom:402.015067pt;}
.yc6{bottom:404.614267pt;}
.y102{bottom:404.731733pt;}
.y1d3{bottom:409.740533pt;}
.y229{bottom:411.011067pt;}
.y8d{bottom:412.290000pt;}
.y10{bottom:413.105867pt;}
.y1f1{bottom:413.363067pt;}
.y198{bottom:415.530533pt;}
.y3d{bottom:416.607067pt;}
.y149{bottom:417.846533pt;}
.y101{bottom:419.239733pt;}
.yc5{bottom:419.842267pt;}
.y16f{bottom:422.353600pt;}
.y1d2{bottom:424.272533pt;}
.y228{bottom:425.567067pt;}
.y8c{bottom:426.810000pt;}
.yf{bottom:427.553867pt;}
.y1f0{bottom:427.763067pt;}
.y197{bottom:429.973600pt;}
.y3c{bottom:431.199067pt;}
.y148{bottom:432.366533pt;}
.y100{bottom:433.771733pt;}
.y16e{bottom:434.353600pt;}
.yc4{bottom:435.070267pt;}
.y1d1{bottom:438.804533pt;}
.y227{bottom:440.123067pt;}
.y8b{bottom:441.330000pt;}
.ye{bottom:442.013867pt;}
.y1ef{bottom:442.163067pt;}
.y196{bottom:444.356133pt;}
.y3b{bottom:445.814000pt;}
.y16d{bottom:446.353600pt;}
.y147{bottom:446.886533pt;}
.yff{bottom:448.291733pt;}
.yc3{bottom:450.298267pt;}
.y1d0{bottom:453.336533pt;}
.y226{bottom:454.679067pt;}
.y8a{bottom:455.850000pt;}
.yd{bottom:456.461867pt;}
.y1ee{bottom:456.563067pt;}
.y16c{bottom:458.353600pt;}
.y195{bottom:458.804133pt;}
.y3a{bottom:460.406000pt;}
.y146{bottom:461.406533pt;}
.yfe{bottom:462.811733pt;}
.yc2{bottom:465.526267pt;}
.y1cf{bottom:467.868533pt;}
.y225{bottom:469.235067pt;}
.y89{bottom:470.370000pt;}
.yc{bottom:470.909867pt;}
.y1ed{bottom:470.963067pt;}
.y194{bottom:473.252133pt;}
.y39{bottom:474.998000pt;}
.y145{bottom:475.926533pt;}
.yfd{bottom:477.331733pt;}
.y1ce{bottom:482.400533pt;}
.y224{bottom:483.791067pt;}
.y88{bottom:484.890000pt;}
.yb{bottom:485.357867pt;}
.y1ec{bottom:485.363067pt;}
.yc1{bottom:485.424667pt;}
.y193{bottom:487.700133pt;}
.y38{bottom:489.590000pt;}
.y144{bottom:490.446533pt;}
.yfc{bottom:491.851733pt;}
.y1cd{bottom:496.932533pt;}
.y223{bottom:498.347067pt;}
.y87{bottom:499.410000pt;}
.y1eb{bottom:499.763067pt;}
.ya{bottom:499.805867pt;}
.y192{bottom:502.148133pt;}
.y37{bottom:504.187733pt;}
.y143{bottom:504.966533pt;}
.yfb{bottom:506.371733pt;}
.y1cc{bottom:511.464533pt;}
.yc0{bottom:512.709600pt;}
.y222{bottom:512.903067pt;}
.y86{bottom:513.930000pt;}
.y1ea{bottom:514.163067pt;}
.y191{bottom:516.596133pt;}
.y36{bottom:518.802800pt;}
.y142{bottom:519.486533pt;}
.y9{bottom:519.638400pt;}
.yfa{bottom:525.566133pt;}
.y1cb{bottom:525.996533pt;}
.y221{bottom:527.459067pt;}
.ybf{bottom:527.937600pt;}
.y85{bottom:528.465067pt;}
.y1e9{bottom:528.563067pt;}
.y190{bottom:531.044133pt;}
.y35{bottom:533.394800pt;}
.y141{bottom:534.006533pt;}
.y1ca{bottom:540.528533pt;}
.y220{bottom:542.015067pt;}
.y1e8{bottom:542.963067pt;}
.y84{bottom:542.985067pt;}
.ybe{bottom:543.165600pt;}
.y18f{bottom:545.492133pt;}
.y34{bottom:547.986800pt;}
.y140{bottom:548.526533pt;}
.yf9{bottom:552.207200pt;}
.y1c9{bottom:555.060533pt;}
.y21f{bottom:556.571067pt;}
.y1e7{bottom:557.363067pt;}
.y83{bottom:557.514933pt;}
.ybd{bottom:558.393600pt;}
.y18e{bottom:559.940133pt;}
.y33{bottom:562.578800pt;}
.y13f{bottom:563.046533pt;}
.yf8{bottom:566.715200pt;}
.y1c8{bottom:569.592533pt;}
.y21e{bottom:571.127067pt;}
.y1e6{bottom:571.763067pt;}
.y82{bottom:572.034933pt;}
.ybc{bottom:573.621600pt;}
.y18d{bottom:574.388133pt;}
.y32{bottom:577.170800pt;}
.y13e{bottom:577.566533pt;}
.yf7{bottom:581.235200pt;}
.y1c7{bottom:584.124533pt;}
.y21d{bottom:585.683067pt;}
.y1e5{bottom:586.163067pt;}
.y81{bottom:586.564933pt;}
.y18c{bottom:588.836133pt;}
.ybb{bottom:588.849600pt;}
.y61{bottom:590.279600pt;}
.y31{bottom:591.785733pt;}
.y13d{bottom:592.086533pt;}
.yf6{bottom:595.755200pt;}
.y1c6{bottom:598.656533pt;}
.y21c{bottom:600.239067pt;}
.y1e4{bottom:600.563067pt;}
.y80{bottom:601.084933pt;}
.y18b{bottom:603.284133pt;}
.y60{bottom:603.612933pt;}
.yba{bottom:604.077600pt;}
.y30{bottom:606.377733pt;}
.y13c{bottom:606.606533pt;}
.yf5{bottom:610.275200pt;}
.y1c5{bottom:613.176533pt;}
.y21b{bottom:614.795067pt;}
.y1e3{bottom:614.963067pt;}
.y7f{bottom:615.634800pt;}
.y5f{bottom:616.946267pt;}
.y18a{bottom:617.732133pt;}
.yb9{bottom:619.305600pt;}
.y2f{bottom:620.969733pt;}
.y13b{bottom:621.126533pt;}
.yf4{bottom:624.807200pt;}
.y1c4{bottom:627.726533pt;}
.y21a{bottom:629.351067pt;}
.y7e{bottom:630.154800pt;}
.y5e{bottom:630.279600pt;}
.y189{bottom:632.170133pt;}
.yb8{bottom:634.533600pt;}
.y1e2{bottom:634.730000pt;}
.y2e{bottom:635.567467pt;}
.y13a{bottom:635.646533pt;}
.yf3{bottom:639.327200pt;}
.y1c3{bottom:642.258533pt;}
.y5d{bottom:643.612933pt;}
.y219{bottom:643.907067pt;}
.y7d{bottom:644.674800pt;}
.y188{bottom:646.618133pt;}
.yb7{bottom:649.761600pt;}
.y139{bottom:650.166533pt;}
.y2d{bottom:650.176667pt;}
.yf2{bottom:653.847200pt;}
.y1c2{bottom:656.790533pt;}
.y5c{bottom:656.946267pt;}
.y218{bottom:658.463067pt;}
.y7c{bottom:659.194800pt;}
.y187{bottom:660.954800pt;}
.y2c{bottom:664.768667pt;}
.yb6{bottom:664.989600pt;}
.yf1{bottom:668.367200pt;}
.y138{bottom:669.354267pt;}
.y5b{bottom:670.279600pt;}
.y1c1{bottom:671.336400pt;}
.y217{bottom:673.019067pt;}
.y7b{bottom:673.714800pt;}
.y186{bottom:675.402800pt;}
.y2b{bottom:679.360667pt;}
.yb5{bottom:680.217600pt;}
.yf0{bottom:682.887200pt;}
.y5a{bottom:683.612933pt;}
.y24f{bottom:684.785467pt;}
.y1c0{bottom:685.868400pt;}
.y216{bottom:687.575067pt;}
.y7a{bottom:688.234800pt;}
.y185{bottom:689.850800pt;}
.y2a{bottom:693.969867pt;}
.yb4{bottom:695.445600pt;}
.y59{bottom:696.946267pt;}
.yef{bottom:697.407200pt;}
.y24e{bottom:698.118800pt;}
.y1bf{bottom:700.400400pt;}
.y137{bottom:701.287067pt;}
.y215{bottom:702.131067pt;}
.y79{bottom:702.754800pt;}
.y184{bottom:704.298800pt;}
.y129{bottom:707.407333pt;}
.y29{bottom:708.561867pt;}
.y58{bottom:710.279600pt;}
.yb3{bottom:710.673600pt;}
.y24d{bottom:711.452133pt;}
.yee{bottom:711.927200pt;}
.y1be{bottom:714.932400pt;}
.y214{bottom:716.687067pt;}
.y78{bottom:717.289733pt;}
.y183{bottom:718.746800pt;}
.y128{bottom:720.742800pt;}
.y28{bottom:723.153867pt;}
.y57{bottom:723.612933pt;}
.y24c{bottom:724.785467pt;}
.yb2{bottom:725.901600pt;}
.yed{bottom:726.435200pt;}
.y1bd{bottom:729.464400pt;}
.y213{bottom:731.243067pt;}
.y77{bottom:731.809733pt;}
.y182{bottom:733.194800pt;}
.y15c{bottom:734.054533pt;}
.y127{bottom:734.074800pt;}
.y56{bottom:736.946267pt;}
.y27{bottom:737.745867pt;}
.y24b{bottom:738.118800pt;}
.yec{bottom:740.967200pt;}
.yb1{bottom:741.129600pt;}
.y1bc{bottom:743.996400pt;}
.y212{bottom:745.799067pt;}
.y76{bottom:746.354667pt;}
.y181{bottom:747.642800pt;}
.y15b{bottom:748.454533pt;}
.y126{bottom:751.186800pt;}
.y24a{bottom:753.452267pt;}
.yeb{bottom:755.487200pt;}
.yb0{bottom:756.357600pt;}
.y26{bottom:757.710400pt;}
.y55{bottom:757.842267pt;}
.y1bb{bottom:758.528400pt;}
.y211{bottom:760.355067pt;}
.y75{bottom:760.874667pt;}
.y136{bottom:760.934533pt;}
.y180{bottom:762.090800pt;}
.y15a{bottom:762.854533pt;}
.y125{bottom:764.520133pt;}
.y249{bottom:764.785467pt;}
.yea{bottom:769.995200pt;}
.yaf{bottom:771.586667pt;}
.y1ba{bottom:773.060400pt;}
.y210{bottom:774.911067pt;}
.y74{bottom:775.394667pt;}
.y135{bottom:775.454533pt;}
.y17f{bottom:776.538800pt;}
.y159{bottom:777.254533pt;}
.y124{bottom:777.853467pt;}
.y248{bottom:778.118800pt;}
.ye9{bottom:784.556000pt;}
.yae{bottom:786.814667pt;}
.y1b9{bottom:787.608400pt;}
.y20f{bottom:789.467067pt;}
.y73{bottom:789.914667pt;}
.y134{bottom:789.974533pt;}
.y17e{bottom:790.986800pt;}
.y247{bottom:791.452133pt;}
.y158{bottom:791.654533pt;}
.y123{bottom:794.969867pt;}
.ye8{bottom:799.088000pt;}
.y1b8{bottom:802.140400pt;}
.y20e{bottom:804.023067pt;}
.y72{bottom:804.434667pt;}
.y133{bottom:804.494533pt;}
.y246{bottom:804.785467pt;}
.y17d{bottom:805.434800pt;}
.y157{bottom:806.054533pt;}
.yad{bottom:806.713067pt;}
.y122{bottom:808.301867pt;}
.ye7{bottom:813.608000pt;}
.y1b7{bottom:816.672400pt;}
.y245{bottom:818.118800pt;}
.y20d{bottom:818.579067pt;}
.y71{bottom:818.954667pt;}
.y132{bottom:819.014533pt;}
.y17c{bottom:819.882800pt;}
.y156{bottom:820.454533pt;}
.y121{bottom:821.633867pt;}
.y8{bottom:822.899333pt;}
.ye6{bottom:828.128000pt;}
.y1b6{bottom:831.204400pt;}
.y244{bottom:831.452133pt;}
.y20c{bottom:833.135067pt;}
.y70{bottom:833.534533pt;}
.y17b{bottom:834.330800pt;}
.y155{bottom:834.854533pt;}
.y120{bottom:838.745867pt;}
.yac{bottom:839.356667pt;}
.y7{bottom:840.232667pt;}
.ye5{bottom:842.648000pt;}
.y243{bottom:844.785467pt;}
.y1b5{bottom:845.736400pt;}
.y20b{bottom:847.691067pt;}
.y6f{bottom:848.054533pt;}
.y17a{bottom:848.778800pt;}
.y154{bottom:849.254533pt;}
.y11f{bottom:852.079200pt;}
.ye4{bottom:857.168000pt;}
.y242{bottom:858.118800pt;}
.y1b4{bottom:860.268400pt;}
.y6{bottom:861.968800pt;}
.y20a{bottom:862.247067pt;}
.y6e{bottom:862.574533pt;}
.y179{bottom:863.226800pt;}
.y153{bottom:863.654533pt;}
.y11e{bottom:865.412533pt;}
.y241{bottom:871.452133pt;}
.ye3{bottom:871.688000pt;}
.y1b3{bottom:874.800400pt;}
.y209{bottom:876.803067pt;}
.y6d{bottom:877.094533pt;}
.y178{bottom:877.674800pt;}
.y152{bottom:878.054533pt;}
.y11d{bottom:878.745867pt;}
.y5{bottom:882.461067pt;}
.y240{bottom:884.785467pt;}
.ye2{bottom:886.208000pt;}
.y1b2{bottom:889.332400pt;}
.y208{bottom:891.359067pt;}
.y6c{bottom:891.614533pt;}
.y177{bottom:892.122800pt;}
.y151{bottom:892.454533pt;}
.y11c{bottom:895.861333pt;}
.y23f{bottom:898.118800pt;}
.ye1{bottom:900.738400pt;}
.yab{bottom:901.899467pt;}
.y207{bottom:905.915067pt;}
.y6b{bottom:906.134533pt;}
.y176{bottom:906.570800pt;}
.y150{bottom:906.854533pt;}
.y1b1{bottom:908.536267pt;}
.y11b{bottom:909.187467pt;}
.y23e{bottom:911.452133pt;}
.y4{bottom:914.925333pt;}
.ye0{bottom:915.270400pt;}
.yaa{bottom:917.127467pt;}
.y206{bottom:920.471067pt;}
.y6a{bottom:920.654533pt;}
.y175{bottom:921.018800pt;}
.y14f{bottom:921.254533pt;}
.y11a{bottom:922.519467pt;}
.y23d{bottom:924.785467pt;}
.ydf{bottom:929.790400pt;}
.ya9{bottom:932.355467pt;}
.y205{bottom:935.027067pt;}
.y1b0{bottom:935.062800pt;}
.y69{bottom:935.174533pt;}
.y174{bottom:935.466800pt;}
.y14e{bottom:935.654533pt;}
.y23c{bottom:938.118800pt;}
.y3{bottom:938.912533pt;}
.yde{bottom:944.298400pt;}
.y119{bottom:945.307467pt;}
.ya8{bottom:947.583467pt;}
.y204{bottom:949.583067pt;}
.y1af{bottom:949.594800pt;}
.y68{bottom:949.694533pt;}
.y173{bottom:949.914800pt;}
.y14d{bottom:950.054533pt;}
.y23b{bottom:951.452133pt;}
.ydd{bottom:958.830400pt;}
.ya7{bottom:962.811467pt;}
.y1ae{bottom:964.126800pt;}
.y203{bottom:964.139067pt;}
.y67{bottom:964.214533pt;}
.y172{bottom:964.362800pt;}
.y14c{bottom:964.454533pt;}
.y23a{bottom:964.785467pt;}
.y118{bottom:966.199867pt;}
.ydc{bottom:973.350400pt;}
.ya6{bottom:978.039467pt;}
.y239{bottom:978.118800pt;}
.y117{bottom:978.199867pt;}
.y1ad{bottom:978.658800pt;}
.y202{bottom:978.695067pt;}
.y66{bottom:978.734533pt;}
.y171{bottom:978.810800pt;}
.y14b{bottom:978.822533pt;}
.y62{bottom:980.136533pt;}
.y116{bottom:990.199867pt;}
.ydb{bottom:992.544933pt;}
.y1ac{bottom:993.190800pt;}
.y14a{bottom:993.222533pt;}
.y201{bottom:993.251067pt;}
.y65{bottom:993.254533pt;}
.y170{bottom:993.258800pt;}
.ya5{bottom:993.267467pt;}
.yd4{bottom:1030.050000pt;}
.y2{bottom:1030.339333pt;}
.h2a{height:25.272000pt;}
.h33{height:25.921875pt;}
.h6{height:27.812240pt;}
.h34{height:29.625000pt;}
.h32{height:29.708333pt;}
.h13{height:30.464000pt;}
.ha{height:33.421875pt;}
.h21{height:34.320000pt;}
.h24{height:34.992000pt;}
.h29{height:35.014933pt;}
.h27{height:35.015467pt;}
.h23{height:35.040000pt;}
.h22{height:35.232000pt;}
.h2{height:35.424000pt;}
.h1e{height:36.145833pt;}
.h12{height:37.451312pt;}
.h1d{height:37.556379pt;}
.h17{height:37.576113pt;}
.h10{height:37.634779pt;}
.h26{height:37.650779pt;}
.h1c{height:37.656113pt;}
.h1a{height:37.675846pt;}
.h18{height:37.696112pt;}
.he{height:37.703046pt;}
.hf{height:37.703579pt;}
.h25{height:37.706246pt;}
.hc{height:37.726513pt;}
.hb{height:37.727046pt;}
.h30{height:37.739846pt;}
.h11{height:37.749446pt;}
.h1b{height:37.755312pt;}
.h19{height:37.755846pt;}
.h31{height:37.771313pt;}
.hd{height:37.772379pt;}
.h1f{height:37.793712pt;}
.h2e{height:37.815579pt;}
.h2c{height:37.835846pt;}
.h28{height:37.923312pt;}
.h2f{height:37.956379pt;}
.h2d{height:38.057179pt;}
.h2b{height:38.240646pt;}
.h8{height:39.731771pt;}
.h9{height:39.760417pt;}
.h20{height:39.952000pt;}
.h14{height:43.264000pt;}
.h3{height:43.584000pt;}
.h7{height:45.423440pt;}
.h5{height:49.563033pt;}
.h4{height:69.222400pt;}
.h16{height:182.310600pt;}
.h15{height:396.718008pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.267987pt;}
.w2{width:396.718008pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x2{left:-51.703067pt;}
.x13{left:-50.097333pt;}
.x0{left:0.000000pt;}
.xb{left:28.501585pt;}
.x1{left:56.692667pt;}
.x3{left:58.023733pt;}
.x9{left:59.393200pt;}
.x4{left:60.726533pt;}
.x8{left:64.726533pt;}
.xc{left:75.591200pt;}
.x12{left:77.140933pt;}
.x18{left:78.049467pt;}
.x5{left:79.624267pt;}
.x19{left:84.147467pt;}
.xd{left:94.491200pt;}
.x17{left:186.338000pt;}
.xa{left:198.490307pt;}
.xf{left:301.615333pt;}
.x16{left:397.155067pt;}
.x6{left:399.425867pt;}
.x14{left:401.397467pt;}
.x15{left:403.977467pt;}
.x10{left:417.333333pt;}
.x7{left:418.323467pt;}
.x11{left:420.383333pt;}
.xe{left:436.536000pt;}
}




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