
    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_b0968b52fbaa1a9e5db47ead.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.963000;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_70e8cd284a61f5bc431d3a56.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_882eb86ab70ccd305f5d301a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.859000;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_ff153ee4b50c7a7e7f6c5743.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.729000;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_de7f19733ff331f98a4eb39e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963000;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_63f824d39ec976110d456cd9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.953000;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_432b06a917b3ea88b085eb51.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.865000;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_99a0d976b991651af5b66f11.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968000;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_50d21ffc963f3599670e5f49.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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_aa730ce2d514122a0fe0b0a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.963000;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_8b063f830fdaafbc170b8da7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.137667;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_e704ea66ed976016dabed44e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.962000;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_6e9fad0d226354eed9ea259a.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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_71384c9f4b49e91bc4033124.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.887000;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:fff;src:url('chunks/assets/font_40969a56fbe363ef9e3b30dc.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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:ff10;src:url('chunks/assets/font_8159b3cb52408829507f1247.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.741000;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-8.316864px;}
.ls9{letter-spacing:-2.457000px;}
.ls15{letter-spacing:-1.638000px;}
.ls16{letter-spacing:-1.386000px;}
.ls18{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-1.008000px;}
.ls5{letter-spacing:-0.693000px;}
.ls1a{letter-spacing:-0.648000px;}
.lsc{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.504000px;}
.ls14{letter-spacing:-0.441000px;}
.ls11{letter-spacing:-0.378000px;}
.ls13{letter-spacing:-0.126000px;}
.ls2{letter-spacing:-0.120000px;}
.lsf{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.063000px;}
.lsb{letter-spacing:0.126000px;}
.ls12{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.252000px;}
.ls3{letter-spacing:0.315000px;}
.lse{letter-spacing:0.441000px;}
.ls8{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.756000px;}
.ls17{letter-spacing:1.386000px;}
.ls7{letter-spacing:3.717000px;}
.ls19{letter-spacing:3.969000px;}
.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;}
}
.ws1{word-spacing:-98.554838px;}
.ws0{word-spacing:-96.891466px;}
.ws2{word-spacing:-57.318000px;}
.ws6{word-spacing:-24.672000px;}
.ws7{word-spacing:-13.980000px;}
.ws21{word-spacing:-3.969000px;}
.wsc{word-spacing:-3.717000px;}
.ws10{word-spacing:-1.620000px;}
.ws1e{word-spacing:-1.386000px;}
.ws13{word-spacing:-0.756000px;}
.wsd{word-spacing:-0.504000px;}
.wsa{word-spacing:-0.441000px;}
.ws9{word-spacing:-0.315000px;}
.ws11{word-spacing:-0.252000px;}
.wsf{word-spacing:-0.240000px;}
.ws17{word-spacing:-0.189000px;}
.ws8{word-spacing:-0.126000px;}
.ws3{word-spacing:0.000000px;}
.ws14{word-spacing:0.063000px;}
.ws4{word-spacing:0.120000px;}
.ws1a{word-spacing:0.126000px;}
.ws16{word-spacing:0.378000px;}
.ws1b{word-spacing:0.441000px;}
.ws12{word-spacing:0.630000px;}
.wsb{word-spacing:0.693000px;}
.ws15{word-spacing:1.008000px;}
.ws1f{word-spacing:1.260000px;}
.ws1d{word-spacing:1.386000px;}
.ws1c{word-spacing:1.638000px;}
.wse{word-spacing:2.457000px;}
.ws20{word-spacing:3.276000px;}
.ws19{word-spacing:5179.879200px;}
.ws18{word-spacing:6250.896000px;}
.ws22{word-spacing:6255.864000px;}
.ws5{word-spacing:6258.600000px;}
._5{margin-left:-2892.432898px;}
._4{margin-left:-1936.684200px;}
._22{margin-left:-19.383295px;}
._13{margin-left:-15.988200px;}
._12{margin-left:-6.737993px;}
._3{margin-left:-5.546098px;}
._1{margin-left:-4.320000px;}
._2{margin-left:-3.200098px;}
._0{margin-left:-2.079902px;}
._6{margin-left:-1.044898px;}
._7{width:1.745100px;}
._d{width:3.458700px;}
._c{width:5.481902px;}
._11{width:6.586207px;}
._a{width:7.711200px;}
._9{width:8.946902px;}
._e{width:10.075505px;}
._8{width:11.334602px;}
._18{width:13.741202px;}
._10{width:14.749202px;}
._1c{width:15.789302px;}
._14{width:16.852500px;}
._f{width:18.149398px;}
._b{width:19.445410px;}
._1d{width:21.054600px;}
._1e{width:22.635900px;}
._1b{width:23.795100px;}
._1a{width:24.966900px;}
._1f{width:26.001002px;}
._20{width:27.537300px;}
._15{width:30.945600px;}
._16{width:32.312700px;}
._19{width:33.869702px;}
._21{width:35.100893px;}
._17{width:36.179695px;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(112,111,111);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(135,135,135);}
.fc1{color:rgb(99,185,233);}
.fc0{color:rgb(79,76,77);}
.fs8{font-size:51.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:246.000000px;}
.fs0{font-size:415.843200px;}
.fs3{font-size:960.000000px;}
.y0{bottom:0.000000px;}
.y36{bottom:32.834700px;}
.ya{bottom:41.220000px;}
.y35{bottom:47.834700px;}
.yf7{bottom:95.845200px;}
.y28{bottom:95.960700px;}
.y9e{bottom:95.981700px;}
.ycb{bottom:96.034200px;}
.y121{bottom:96.049950px;}
.y75{bottom:96.165450px;}
.yf6{bottom:116.839950px;}
.y186{bottom:116.907450px;}
.y27{bottom:116.955450px;}
.y9d{bottom:116.976450px;}
.yca{bottom:117.028950px;}
.y120{bottom:117.044700px;}
.y74{bottom:117.160200px;}
.yf5{bottom:137.834700px;}
.y13e{bottom:137.859450px;}
.y185{bottom:137.906700px;}
.y26{bottom:137.950200px;}
.yc9{bottom:138.023700px;}
.y11f{bottom:138.039450px;}
.y73{bottom:138.154950px;}
.y13d{bottom:158.858700px;}
.y162{bottom:158.867700px;}
.y184{bottom:158.905950px;}
.y25{bottom:158.944950px;}
.y9c{bottom:158.981700px;}
.yc8{bottom:159.018450px;}
.y11e{bottom:159.034200px;}
.y72{bottom:159.149700px;}
.yf4{bottom:179.834700px;}
.y161{bottom:179.866950px;}
.y183{bottom:179.905200px;}
.y24{bottom:179.939700px;}
.y9b{bottom:179.976450px;}
.yc7{bottom:180.013200px;}
.y11d{bottom:180.028950px;}
.y71{bottom:180.144450px;}
.y13c{bottom:200.857200px;}
.y182{bottom:200.904450px;}
.y23{bottom:200.934450px;}
.y9a{bottom:200.971200px;}
.yc6{bottom:201.007950px;}
.y11c{bottom:201.023700px;}
.y70{bottom:201.139200px;}
.y13b{bottom:221.856450px;}
.y160{bottom:221.865450px;}
.y181{bottom:221.903700px;}
.y22{bottom:221.929200px;}
.y99{bottom:221.965950px;}
.yc5{bottom:222.002700px;}
.y11b{bottom:222.018450px;}
.y6f{bottom:222.133950px;}
.y13a{bottom:242.855700px;}
.y15f{bottom:242.864700px;}
.y21{bottom:242.923950px;}
.y98{bottom:242.960700px;}
.yc4{bottom:242.997450px;}
.y11a{bottom:243.013200px;}
.y6e{bottom:243.128700px;}
.yf3{bottom:243.233700px;}
.y139{bottom:263.854950px;}
.y15e{bottom:263.863950px;}
.y180{bottom:263.902200px;}
.y20{bottom:263.918700px;}
.y97{bottom:263.955450px;}
.y119{bottom:264.007950px;}
.y6d{bottom:264.123450px;}
.yf2{bottom:264.228450px;}
.y15d{bottom:284.863200px;}
.y17f{bottom:284.901450px;}
.y1f{bottom:284.913450px;}
.y96{bottom:284.950200px;}
.yc3{bottom:285.002700px;}
.y6c{bottom:285.118200px;}
.yf1{bottom:285.223200px;}
.y138{bottom:305.853450px;}
.y15c{bottom:305.862450px;}
.y1e{bottom:305.908200px;}
.y48{bottom:305.923950px;}
.y95{bottom:305.944950px;}
.yc2{bottom:305.997450px;}
.y6b{bottom:306.112950px;}
.yf0{bottom:306.217950px;}
.y137{bottom:326.852700px;}
.y17e{bottom:326.899950px;}
.y1d{bottom:326.902950px;}
.y47{bottom:326.918700px;}
.y94{bottom:326.939700px;}
.yc1{bottom:326.992200px;}
.y118{bottom:327.007950px;}
.yef{bottom:327.212700px;}
.y136{bottom:347.851950px;}
.y15b{bottom:347.860950px;}
.y1c{bottom:347.897700px;}
.y17d{bottom:347.899200px;}
.y46{bottom:347.913450px;}
.y93{bottom:347.934450px;}
.yc0{bottom:347.986950px;}
.y117{bottom:348.002700px;}
.y6a{bottom:348.118200px;}
.yee{bottom:348.207450px;}
.y7{bottom:352.018200px;}
.y15a{bottom:368.860200px;}
.y1b{bottom:368.892450px;}
.y45{bottom:368.908200px;}
.ybf{bottom:368.981700px;}
.y116{bottom:368.997450px;}
.y69{bottom:369.112950px;}
.yed{bottom:369.202200px;}
.y9{bottom:381.914100px;}
.y135{bottom:389.850450px;}
.y159{bottom:389.859450px;}
.y1a{bottom:389.887200px;}
.y17c{bottom:389.897700px;}
.y44{bottom:389.902950px;}
.y92{bottom:389.939700px;}
.ybe{bottom:389.976450px;}
.y115{bottom:389.992200px;}
.y68{bottom:390.107700px;}
.yec{bottom:390.196950px;}
.y134{bottom:410.849700px;}
.y158{bottom:410.858700px;}
.y19{bottom:410.881950px;}
.y17b{bottom:410.896950px;}
.y43{bottom:410.897700px;}
.y91{bottom:410.934450px;}
.ybd{bottom:410.971200px;}
.y114{bottom:410.986950px;}
.y67{bottom:411.102450px;}
.y133{bottom:431.848950px;}
.y18{bottom:431.876700px;}
.y42{bottom:431.892450px;}
.y17a{bottom:431.896200px;}
.y90{bottom:431.929200px;}
.ybc{bottom:431.965950px;}
.y113{bottom:431.981700px;}
.y66{bottom:432.097200px;}
.yeb{bottom:432.202200px;}
.y6{bottom:445.018200px;}
.y157{bottom:452.857200px;}
.y17{bottom:452.871450px;}
.y41{bottom:452.887200px;}
.y179{bottom:452.895450px;}
.y8f{bottom:452.923950px;}
.ybb{bottom:452.960700px;}
.y112{bottom:452.976450px;}
.y65{bottom:453.091950px;}
.yea{bottom:453.196950px;}
.y132{bottom:473.847450px;}
.y156{bottom:473.856450px;}
.y40{bottom:473.881950px;}
.y178{bottom:473.894700px;}
.y8e{bottom:473.918700px;}
.yba{bottom:473.955450px;}
.y64{bottom:474.086700px;}
.ye9{bottom:474.191700px;}
.y131{bottom:494.846700px;}
.y155{bottom:494.855700px;}
.y16{bottom:494.876700px;}
.y8d{bottom:494.913450px;}
.y111{bottom:494.981700px;}
.y63{bottom:495.081450px;}
.ye8{bottom:495.186450px;}
.y130{bottom:515.845950px;}
.y15{bottom:515.871450px;}
.y177{bottom:515.893200px;}
.y8c{bottom:515.908200px;}
.y19d{bottom:515.931450px;}
.yb9{bottom:515.960700px;}
.y110{bottom:515.976450px;}
.y62{bottom:516.076200px;}
.ye7{bottom:516.181200px;}
.y154{bottom:536.854200px;}
.y14{bottom:536.866200px;}
.y3f{bottom:536.881950px;}
.y176{bottom:536.892450px;}
.y8b{bottom:536.902950px;}
.y19c{bottom:536.930700px;}
.yb8{bottom:536.955450px;}
.y10f{bottom:536.971200px;}
.y61{bottom:537.070950px;}
.ye6{bottom:537.175950px;}
.y5{bottom:538.018200px;}
.y8{bottom:551.414100px;}
.y12f{bottom:557.844450px;}
.y153{bottom:557.853450px;}
.y13{bottom:557.860950px;}
.y3e{bottom:557.876700px;}
.y8a{bottom:557.897700px;}
.y19b{bottom:557.929950px;}
.yb7{bottom:557.950200px;}
.y10e{bottom:557.965950px;}
.y60{bottom:558.065700px;}
.ye5{bottom:558.170700px;}
.y12e{bottom:578.843700px;}
.y152{bottom:578.852700px;}
.y12{bottom:578.855700px;}
.y3d{bottom:578.871450px;}
.y175{bottom:578.890950px;}
.y89{bottom:578.892450px;}
.y19a{bottom:578.929200px;}
.yb6{bottom:578.944950px;}
.y10d{bottom:578.960700px;}
.y5f{bottom:579.060450px;}
.ye4{bottom:579.165450px;}
.y12d{bottom:599.842950px;}
.y11{bottom:599.850450px;}
.y151{bottom:599.851950px;}
.y3c{bottom:599.866200px;}
.y88{bottom:599.887200px;}
.y174{bottom:599.890200px;}
.y199{bottom:599.928450px;}
.yb5{bottom:599.939700px;}
.y10c{bottom:599.955450px;}
.y5e{bottom:600.055200px;}
.ye3{bottom:600.160200px;}
.y12c{bottom:620.842200px;}
.y10{bottom:620.845200px;}
.y150{bottom:620.851200px;}
.y3b{bottom:620.860950px;}
.y87{bottom:620.881950px;}
.yb4{bottom:620.934450px;}
.y10b{bottom:620.950200px;}
.y5d{bottom:621.049950px;}
.ye2{bottom:621.154950px;}
.y4{bottom:631.018200px;}
.yf{bottom:641.839950px;}
.y14f{bottom:641.850450px;}
.y3a{bottom:641.855700px;}
.y86{bottom:641.876700px;}
.y173{bottom:641.888700px;}
.y198{bottom:641.926950px;}
.yb3{bottom:641.929200px;}
.y10a{bottom:641.944950px;}
.y5c{bottom:642.044700px;}
.ye1{bottom:642.149700px;}
.ye{bottom:662.834700px;}
.y12b{bottom:662.840700px;}
.y39{bottom:662.850450px;}
.y85{bottom:662.871450px;}
.y172{bottom:662.887950px;}
.yb2{bottom:662.923950px;}
.y197{bottom:662.926200px;}
.y109{bottom:662.939700px;}
.y5b{bottom:663.039450px;}
.ye0{bottom:663.144450px;}
.y12a{bottom:683.839950px;}
.y38{bottom:683.845200px;}
.y14e{bottom:683.848950px;}
.y84{bottom:683.866200px;}
.y171{bottom:683.887200px;}
.yb1{bottom:683.918700px;}
.y196{bottom:683.925450px;}
.y108{bottom:683.934450px;}
.y5a{bottom:684.034200px;}
.ydf{bottom:684.139200px;}
.yd{bottom:704.834700px;}
.y129{bottom:704.839200px;}
.y37{bottom:704.839950px;}
.y14d{bottom:704.848200px;}
.y83{bottom:704.860950px;}
.y170{bottom:704.886450px;}
.yb0{bottom:704.913450px;}
.y195{bottom:704.924700px;}
.y107{bottom:704.929200px;}
.y59{bottom:705.028950px;}
.yde{bottom:705.133950px;}
.yc{bottom:725.834700px;}
.y128{bottom:725.838450px;}
.y14c{bottom:725.847450px;}
.y82{bottom:725.855700px;}
.y16f{bottom:725.885700px;}
.yaf{bottom:725.908200px;}
.y106{bottom:725.923950px;}
.y58{bottom:726.023700px;}
.ydd{bottom:726.128700px;}
.y14b{bottom:746.846700px;}
.y81{bottom:746.850450px;}
.yae{bottom:746.902950px;}
.y105{bottom:746.918700px;}
.y57{bottom:747.018450px;}
.ydc{bottom:747.123450px;}
.y3{bottom:751.738650px;}
.y127{bottom:767.836950px;}
.y80{bottom:767.845200px;}
.y16e{bottom:767.884200px;}
.yad{bottom:767.897700px;}
.y104{bottom:767.913450px;}
.y194{bottom:767.922450px;}
.ydb{bottom:768.118200px;}
.y126{bottom:788.836200px;}
.y7f{bottom:788.839950px;}
.y14a{bottom:788.845200px;}
.y16d{bottom:788.883450px;}
.yac{bottom:788.892450px;}
.y103{bottom:788.908200px;}
.y193{bottom:788.921700px;}
.y56{bottom:789.023700px;}
.yda{bottom:789.112950px;}
.y2{bottom:791.931000px;}
.y34{bottom:809.834700px;}
.y125{bottom:809.835450px;}
.y149{bottom:809.844450px;}
.yab{bottom:809.887200px;}
.y102{bottom:809.902950px;}
.y192{bottom:809.920950px;}
.y55{bottom:810.018450px;}
.yd9{bottom:810.107700px;}
.y33{bottom:830.834700px;}
.y148{bottom:830.843700px;}
.yaa{bottom:830.881950px;}
.y101{bottom:830.897700px;}
.y191{bottom:830.920200px;}
.y54{bottom:831.013200px;}
.yd8{bottom:831.102450px;}
.y32{bottom:851.834700px;}
.y147{bottom:851.842950px;}
.y16c{bottom:851.881200px;}
.y100{bottom:851.892450px;}
.y190{bottom:851.919450px;}
.y53{bottom:852.007950px;}
.yd7{bottom:852.097200px;}
.y1{bottom:859.112850px;}
.y31{bottom:872.834700px;}
.y146{bottom:872.842200px;}
.y16b{bottom:872.880450px;}
.ya9{bottom:872.887200px;}
.y18f{bottom:872.918700px;}
.y52{bottom:873.002700px;}
.yd6{bottom:873.091950px;}
.y30{bottom:893.834700px;}
.y145{bottom:893.841450px;}
.ya8{bottom:893.881950px;}
.y51{bottom:893.997450px;}
.yd5{bottom:894.086700px;}
.y2f{bottom:914.834700px;}
.y144{bottom:914.840700px;}
.ya7{bottom:914.876700px;}
.y16a{bottom:914.878950px;}
.y18e{bottom:914.917200px;}
.y50{bottom:914.992200px;}
.yd4{bottom:915.081450px;}
.y7e{bottom:915.212700px;}
.y2e{bottom:935.834700px;}
.ya6{bottom:935.871450px;}
.y169{bottom:935.878200px;}
.yff{bottom:935.887200px;}
.y18d{bottom:935.916450px;}
.yd3{bottom:936.076200px;}
.y7d{bottom:936.207450px;}
.y2d{bottom:956.834700px;}
.y143{bottom:956.839200px;}
.ya5{bottom:956.866200px;}
.y168{bottom:956.877450px;}
.yfe{bottom:956.881950px;}
.y4f{bottom:956.997450px;}
.yd2{bottom:957.070950px;}
.y7c{bottom:957.202200px;}
.y2c{bottom:977.834700px;}
.y142{bottom:977.838450px;}
.ya4{bottom:977.860950px;}
.yfd{bottom:977.876700px;}
.y18c{bottom:977.914950px;}
.y4e{bottom:977.992200px;}
.yd1{bottom:978.065700px;}
.y7b{bottom:978.196950px;}
.y141{bottom:998.837700px;}
.ya3{bottom:998.855700px;}
.yfc{bottom:998.871450px;}
.y167{bottom:998.875950px;}
.y18b{bottom:998.914200px;}
.y4d{bottom:998.986950px;}
.yd0{bottom:999.060450px;}
.y7a{bottom:999.191700px;}
.ya2{bottom:1019.850450px;}
.yfb{bottom:1019.866200px;}
.y166{bottom:1019.875200px;}
.y18a{bottom:1019.913450px;}
.y4c{bottom:1019.981700px;}
.ycf{bottom:1020.055200px;}
.y79{bottom:1020.186450px;}
.y2b{bottom:1034.834700px;}
.y140{bottom:1040.836200px;}
.ya1{bottom:1040.845200px;}
.yfa{bottom:1040.860950px;}
.y165{bottom:1040.874450px;}
.y189{bottom:1040.912700px;}
.y4b{bottom:1040.976450px;}
.yce{bottom:1041.049950px;}
.y124{bottom:1041.065700px;}
.y78{bottom:1041.181200px;}
.y2a{bottom:1061.834700px;}
.y13f{bottom:1061.835450px;}
.ya0{bottom:1061.839950px;}
.yf9{bottom:1061.855700px;}
.y164{bottom:1061.873700px;}
.y188{bottom:1061.911950px;}
.y4a{bottom:1061.971200px;}
.ycd{bottom:1062.044700px;}
.y123{bottom:1062.060450px;}
.y77{bottom:1062.175950px;}
.y9f{bottom:1082.834700px;}
.yf8{bottom:1082.850450px;}
.y163{bottom:1082.872950px;}
.y187{bottom:1082.911200px;}
.y49{bottom:1082.965950px;}
.ycc{bottom:1083.039450px;}
.y122{bottom:1083.055200px;}
.y76{bottom:1083.170700px;}
.y29{bottom:1091.412900px;}
.yb{bottom:1187.834700px;}
.h12{height:37.689000px;}
.h9{height:43.800000px;}
.ha{height:44.037000px;}
.he{height:44.340000px;}
.hc{height:44.400000px;}
.hf{height:44.793000px;}
.h11{height:46.614000px;}
.hb{height:50.526000px;}
.h7{height:51.768000px;}
.h10{height:53.280000px;}
.hd{height:54.840000px;}
.h8{height:71.040000px;}
.h4{height:87.600000px;}
.h3{height:88.800000px;}
.h5{height:182.040000px;}
.h2{height:307.723968px;}
.h6{height:681.600000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1785.750000px;}
.w2{width:1785.825000px;}
.x0{left:0.000000px;}
.x1{left:62.185050px;}
.x3{left:63.297600px;}
.x4{left:85.039350px;}
.x7{left:137.899350px;}
.x6{left:166.819350px;}
.x2{left:223.228350px;}
.x8{left:467.716500px;}
.x9{left:497.484000px;}
.x5{left:977.952600px;}
.xd{left:994.947750px;}
.xa{left:1007.721000px;}
.xb{left:1360.631250px;}
.xc{left:1582.017150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-7.392768pt;}
.ls9{letter-spacing:-2.184000pt;}
.ls15{letter-spacing:-1.456000pt;}
.ls16{letter-spacing:-1.232000pt;}
.ls18{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-0.896000pt;}
.ls5{letter-spacing:-0.616000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.448000pt;}
.ls14{letter-spacing:-0.392000pt;}
.ls11{letter-spacing:-0.336000pt;}
.ls13{letter-spacing:-0.112000pt;}
.ls2{letter-spacing:-0.106667pt;}
.lsf{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.056000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls12{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.224000pt;}
.ls3{letter-spacing:0.280000pt;}
.lse{letter-spacing:0.392000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.672000pt;}
.ls17{letter-spacing:1.232000pt;}
.ls7{letter-spacing:3.304000pt;}
.ls19{letter-spacing:3.528000pt;}
.ws1{word-spacing:-87.604301pt;}
.ws0{word-spacing:-86.125747pt;}
.ws2{word-spacing:-50.949333pt;}
.ws6{word-spacing:-21.930667pt;}
.ws7{word-spacing:-12.426667pt;}
.ws21{word-spacing:-3.528000pt;}
.wsc{word-spacing:-3.304000pt;}
.ws10{word-spacing:-1.440000pt;}
.ws1e{word-spacing:-1.232000pt;}
.ws13{word-spacing:-0.672000pt;}
.wsd{word-spacing:-0.448000pt;}
.wsa{word-spacing:-0.392000pt;}
.ws9{word-spacing:-0.280000pt;}
.ws11{word-spacing:-0.224000pt;}
.wsf{word-spacing:-0.213333pt;}
.ws17{word-spacing:-0.168000pt;}
.ws8{word-spacing:-0.112000pt;}
.ws3{word-spacing:0.000000pt;}
.ws14{word-spacing:0.056000pt;}
.ws4{word-spacing:0.106667pt;}
.ws1a{word-spacing:0.112000pt;}
.ws16{word-spacing:0.336000pt;}
.ws1b{word-spacing:0.392000pt;}
.ws12{word-spacing:0.560000pt;}
.wsb{word-spacing:0.616000pt;}
.ws15{word-spacing:0.896000pt;}
.ws1f{word-spacing:1.120000pt;}
.ws1d{word-spacing:1.232000pt;}
.ws1c{word-spacing:1.456000pt;}
.wse{word-spacing:2.184000pt;}
.ws20{word-spacing:2.912000pt;}
.ws19{word-spacing:4604.337067pt;}
.ws18{word-spacing:5556.352000pt;}
.ws22{word-spacing:5560.768000pt;}
.ws5{word-spacing:5563.200000pt;}
._5{margin-left:-2571.051465pt;}
._4{margin-left:-1721.497067pt;}
._22{margin-left:-17.229596pt;}
._13{margin-left:-14.211733pt;}
._12{margin-left:-5.989327pt;}
._3{margin-left:-4.929865pt;}
._1{margin-left:-3.840000pt;}
._2{margin-left:-2.844531pt;}
._0{margin-left:-1.848802pt;}
._6{margin-left:-0.928798pt;}
._7{width:1.551200pt;}
._d{width:3.074400pt;}
._c{width:4.872802pt;}
._11{width:5.854406pt;}
._a{width:6.854400pt;}
._9{width:7.952802pt;}
._e{width:8.956004pt;}
._8{width:10.075202pt;}
._18{width:12.214402pt;}
._10{width:13.110402pt;}
._1c{width:14.034935pt;}
._14{width:14.980000pt;}
._f{width:16.132798pt;}
._b{width:17.284809pt;}
._1d{width:18.715200pt;}
._1e{width:20.120800pt;}
._1b{width:21.151200pt;}
._1a{width:22.192800pt;}
._1f{width:23.112002pt;}
._20{width:24.477600pt;}
._15{width:27.507200pt;}
._16{width:28.722400pt;}
._19{width:30.106402pt;}
._21{width:31.200794pt;}
._17{width:32.159729pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:218.666667pt;}
.fs0{font-size:369.638400pt;}
.fs3{font-size:853.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:29.186400pt;}
.ya{bottom:36.640000pt;}
.y35{bottom:42.519733pt;}
.yf7{bottom:85.195733pt;}
.y28{bottom:85.298400pt;}
.y9e{bottom:85.317067pt;}
.ycb{bottom:85.363733pt;}
.y121{bottom:85.377733pt;}
.y75{bottom:85.480400pt;}
.yf6{bottom:103.857733pt;}
.y186{bottom:103.917733pt;}
.y27{bottom:103.960400pt;}
.y9d{bottom:103.979067pt;}
.yca{bottom:104.025733pt;}
.y120{bottom:104.039733pt;}
.y74{bottom:104.142400pt;}
.yf5{bottom:122.519733pt;}
.y13e{bottom:122.541733pt;}
.y185{bottom:122.583733pt;}
.y26{bottom:122.622400pt;}
.yc9{bottom:122.687733pt;}
.y11f{bottom:122.701733pt;}
.y73{bottom:122.804400pt;}
.y13d{bottom:141.207733pt;}
.y162{bottom:141.215733pt;}
.y184{bottom:141.249733pt;}
.y25{bottom:141.284400pt;}
.y9c{bottom:141.317067pt;}
.yc8{bottom:141.349733pt;}
.y11e{bottom:141.363733pt;}
.y72{bottom:141.466400pt;}
.yf4{bottom:159.853067pt;}
.y161{bottom:159.881733pt;}
.y183{bottom:159.915733pt;}
.y24{bottom:159.946400pt;}
.y9b{bottom:159.979067pt;}
.yc7{bottom:160.011733pt;}
.y11d{bottom:160.025733pt;}
.y71{bottom:160.128400pt;}
.y13c{bottom:178.539733pt;}
.y182{bottom:178.581733pt;}
.y23{bottom:178.608400pt;}
.y9a{bottom:178.641067pt;}
.yc6{bottom:178.673733pt;}
.y11c{bottom:178.687733pt;}
.y70{bottom:178.790400pt;}
.y13b{bottom:197.205733pt;}
.y160{bottom:197.213733pt;}
.y181{bottom:197.247733pt;}
.y22{bottom:197.270400pt;}
.y99{bottom:197.303067pt;}
.yc5{bottom:197.335733pt;}
.y11b{bottom:197.349733pt;}
.y6f{bottom:197.452400pt;}
.y13a{bottom:215.871733pt;}
.y15f{bottom:215.879733pt;}
.y21{bottom:215.932400pt;}
.y98{bottom:215.965067pt;}
.yc4{bottom:215.997733pt;}
.y11a{bottom:216.011733pt;}
.y6e{bottom:216.114400pt;}
.yf3{bottom:216.207733pt;}
.y139{bottom:234.537733pt;}
.y15e{bottom:234.545733pt;}
.y180{bottom:234.579733pt;}
.y20{bottom:234.594400pt;}
.y97{bottom:234.627067pt;}
.y119{bottom:234.673733pt;}
.y6d{bottom:234.776400pt;}
.yf2{bottom:234.869733pt;}
.y15d{bottom:253.211733pt;}
.y17f{bottom:253.245733pt;}
.y1f{bottom:253.256400pt;}
.y96{bottom:253.289067pt;}
.yc3{bottom:253.335733pt;}
.y6c{bottom:253.438400pt;}
.yf1{bottom:253.531733pt;}
.y138{bottom:271.869733pt;}
.y15c{bottom:271.877733pt;}
.y1e{bottom:271.918400pt;}
.y48{bottom:271.932400pt;}
.y95{bottom:271.951067pt;}
.yc2{bottom:271.997733pt;}
.y6b{bottom:272.100400pt;}
.yf0{bottom:272.193733pt;}
.y137{bottom:290.535733pt;}
.y17e{bottom:290.577733pt;}
.y1d{bottom:290.580400pt;}
.y47{bottom:290.594400pt;}
.y94{bottom:290.613067pt;}
.yc1{bottom:290.659733pt;}
.y118{bottom:290.673733pt;}
.yef{bottom:290.855733pt;}
.y136{bottom:309.201733pt;}
.y15b{bottom:309.209733pt;}
.y1c{bottom:309.242400pt;}
.y17d{bottom:309.243733pt;}
.y46{bottom:309.256400pt;}
.y93{bottom:309.275067pt;}
.yc0{bottom:309.321733pt;}
.y117{bottom:309.335733pt;}
.y6a{bottom:309.438400pt;}
.yee{bottom:309.517733pt;}
.y7{bottom:312.905067pt;}
.y15a{bottom:327.875733pt;}
.y1b{bottom:327.904400pt;}
.y45{bottom:327.918400pt;}
.ybf{bottom:327.983733pt;}
.y116{bottom:327.997733pt;}
.y69{bottom:328.100400pt;}
.yed{bottom:328.179733pt;}
.y9{bottom:339.479200pt;}
.y135{bottom:346.533733pt;}
.y159{bottom:346.541733pt;}
.y1a{bottom:346.566400pt;}
.y17c{bottom:346.575733pt;}
.y44{bottom:346.580400pt;}
.y92{bottom:346.613067pt;}
.ybe{bottom:346.645733pt;}
.y115{bottom:346.659733pt;}
.y68{bottom:346.762400pt;}
.yec{bottom:346.841733pt;}
.y134{bottom:365.199733pt;}
.y158{bottom:365.207733pt;}
.y19{bottom:365.228400pt;}
.y17b{bottom:365.241733pt;}
.y43{bottom:365.242400pt;}
.y91{bottom:365.275067pt;}
.ybd{bottom:365.307733pt;}
.y114{bottom:365.321733pt;}
.y67{bottom:365.424400pt;}
.y133{bottom:383.865733pt;}
.y18{bottom:383.890400pt;}
.y42{bottom:383.904400pt;}
.y17a{bottom:383.907733pt;}
.y90{bottom:383.937067pt;}
.ybc{bottom:383.969733pt;}
.y113{bottom:383.983733pt;}
.y66{bottom:384.086400pt;}
.yeb{bottom:384.179733pt;}
.y6{bottom:395.571733pt;}
.y157{bottom:402.539733pt;}
.y17{bottom:402.552400pt;}
.y41{bottom:402.566400pt;}
.y179{bottom:402.573733pt;}
.y8f{bottom:402.599067pt;}
.ybb{bottom:402.631733pt;}
.y112{bottom:402.645733pt;}
.y65{bottom:402.748400pt;}
.yea{bottom:402.841733pt;}
.y132{bottom:421.197733pt;}
.y156{bottom:421.205733pt;}
.y40{bottom:421.228400pt;}
.y178{bottom:421.239733pt;}
.y8e{bottom:421.261067pt;}
.yba{bottom:421.293733pt;}
.y64{bottom:421.410400pt;}
.ye9{bottom:421.503733pt;}
.y131{bottom:439.863733pt;}
.y155{bottom:439.871733pt;}
.y16{bottom:439.890400pt;}
.y8d{bottom:439.923067pt;}
.y111{bottom:439.983733pt;}
.y63{bottom:440.072400pt;}
.ye8{bottom:440.165733pt;}
.y130{bottom:458.529733pt;}
.y15{bottom:458.552400pt;}
.y177{bottom:458.571733pt;}
.y8c{bottom:458.585067pt;}
.y19d{bottom:458.605733pt;}
.yb9{bottom:458.631733pt;}
.y110{bottom:458.645733pt;}
.y62{bottom:458.734400pt;}
.ye7{bottom:458.827733pt;}
.y154{bottom:477.203733pt;}
.y14{bottom:477.214400pt;}
.y3f{bottom:477.228400pt;}
.y176{bottom:477.237733pt;}
.y8b{bottom:477.247067pt;}
.y19c{bottom:477.271733pt;}
.yb8{bottom:477.293733pt;}
.y10f{bottom:477.307733pt;}
.y61{bottom:477.396400pt;}
.ye6{bottom:477.489733pt;}
.y5{bottom:478.238400pt;}
.y8{bottom:490.145867pt;}
.y12f{bottom:495.861733pt;}
.y153{bottom:495.869733pt;}
.y13{bottom:495.876400pt;}
.y3e{bottom:495.890400pt;}
.y8a{bottom:495.909067pt;}
.y19b{bottom:495.937733pt;}
.yb7{bottom:495.955733pt;}
.y10e{bottom:495.969733pt;}
.y60{bottom:496.058400pt;}
.ye5{bottom:496.151733pt;}
.y12e{bottom:514.527733pt;}
.y152{bottom:514.535733pt;}
.y12{bottom:514.538400pt;}
.y3d{bottom:514.552400pt;}
.y175{bottom:514.569733pt;}
.y89{bottom:514.571067pt;}
.y19a{bottom:514.603733pt;}
.yb6{bottom:514.617733pt;}
.y10d{bottom:514.631733pt;}
.y5f{bottom:514.720400pt;}
.ye4{bottom:514.813733pt;}
.y12d{bottom:533.193733pt;}
.y11{bottom:533.200400pt;}
.y151{bottom:533.201733pt;}
.y3c{bottom:533.214400pt;}
.y88{bottom:533.233067pt;}
.y174{bottom:533.235733pt;}
.y199{bottom:533.269733pt;}
.yb5{bottom:533.279733pt;}
.y10c{bottom:533.293733pt;}
.y5e{bottom:533.382400pt;}
.ye3{bottom:533.475733pt;}
.y12c{bottom:551.859733pt;}
.y10{bottom:551.862400pt;}
.y150{bottom:551.867733pt;}
.y3b{bottom:551.876400pt;}
.y87{bottom:551.895067pt;}
.yb4{bottom:551.941733pt;}
.y10b{bottom:551.955733pt;}
.y5d{bottom:552.044400pt;}
.ye2{bottom:552.137733pt;}
.y4{bottom:560.905067pt;}
.yf{bottom:570.524400pt;}
.y14f{bottom:570.533733pt;}
.y3a{bottom:570.538400pt;}
.y86{bottom:570.557067pt;}
.y173{bottom:570.567733pt;}
.y198{bottom:570.601733pt;}
.yb3{bottom:570.603733pt;}
.y10a{bottom:570.617733pt;}
.y5c{bottom:570.706400pt;}
.ye1{bottom:570.799733pt;}
.ye{bottom:589.186400pt;}
.y12b{bottom:589.191733pt;}
.y39{bottom:589.200400pt;}
.y85{bottom:589.219067pt;}
.y172{bottom:589.233733pt;}
.yb2{bottom:589.265733pt;}
.y197{bottom:589.267733pt;}
.y109{bottom:589.279733pt;}
.y5b{bottom:589.368400pt;}
.ye0{bottom:589.461733pt;}
.y12a{bottom:607.857733pt;}
.y38{bottom:607.862400pt;}
.y14e{bottom:607.865733pt;}
.y84{bottom:607.881067pt;}
.y171{bottom:607.899733pt;}
.yb1{bottom:607.927733pt;}
.y196{bottom:607.933733pt;}
.y108{bottom:607.941733pt;}
.y5a{bottom:608.030400pt;}
.ydf{bottom:608.123733pt;}
.yd{bottom:626.519733pt;}
.y129{bottom:626.523733pt;}
.y37{bottom:626.524400pt;}
.y14d{bottom:626.531733pt;}
.y83{bottom:626.543067pt;}
.y170{bottom:626.565733pt;}
.yb0{bottom:626.589733pt;}
.y195{bottom:626.599733pt;}
.y107{bottom:626.603733pt;}
.y59{bottom:626.692400pt;}
.yde{bottom:626.785733pt;}
.yc{bottom:645.186400pt;}
.y128{bottom:645.189733pt;}
.y14c{bottom:645.197733pt;}
.y82{bottom:645.205067pt;}
.y16f{bottom:645.231733pt;}
.yaf{bottom:645.251733pt;}
.y106{bottom:645.265733pt;}
.y58{bottom:645.354400pt;}
.ydd{bottom:645.447733pt;}
.y14b{bottom:663.863733pt;}
.y81{bottom:663.867067pt;}
.yae{bottom:663.913733pt;}
.y105{bottom:663.927733pt;}
.y57{bottom:664.016400pt;}
.ydc{bottom:664.109733pt;}
.y3{bottom:668.212133pt;}
.y127{bottom:682.521733pt;}
.y80{bottom:682.529067pt;}
.y16e{bottom:682.563733pt;}
.yad{bottom:682.575733pt;}
.y104{bottom:682.589733pt;}
.y194{bottom:682.597733pt;}
.ydb{bottom:682.771733pt;}
.y126{bottom:701.187733pt;}
.y7f{bottom:701.191067pt;}
.y14a{bottom:701.195733pt;}
.y16d{bottom:701.229733pt;}
.yac{bottom:701.237733pt;}
.y103{bottom:701.251733pt;}
.y193{bottom:701.263733pt;}
.y56{bottom:701.354400pt;}
.yda{bottom:701.433733pt;}
.y2{bottom:703.938667pt;}
.y34{bottom:719.853067pt;}
.y125{bottom:719.853733pt;}
.y149{bottom:719.861733pt;}
.yab{bottom:719.899733pt;}
.y102{bottom:719.913733pt;}
.y192{bottom:719.929733pt;}
.y55{bottom:720.016400pt;}
.yd9{bottom:720.095733pt;}
.y33{bottom:738.519733pt;}
.y148{bottom:738.527733pt;}
.yaa{bottom:738.561733pt;}
.y101{bottom:738.575733pt;}
.y191{bottom:738.595733pt;}
.y54{bottom:738.678400pt;}
.yd8{bottom:738.757733pt;}
.y32{bottom:757.186400pt;}
.y147{bottom:757.193733pt;}
.y16c{bottom:757.227733pt;}
.y100{bottom:757.237733pt;}
.y190{bottom:757.261733pt;}
.y53{bottom:757.340400pt;}
.yd7{bottom:757.419733pt;}
.y1{bottom:763.655867pt;}
.y31{bottom:775.853067pt;}
.y146{bottom:775.859733pt;}
.y16b{bottom:775.893733pt;}
.ya9{bottom:775.899733pt;}
.y18f{bottom:775.927733pt;}
.y52{bottom:776.002400pt;}
.yd6{bottom:776.081733pt;}
.y30{bottom:794.519733pt;}
.y145{bottom:794.525733pt;}
.ya8{bottom:794.561733pt;}
.y51{bottom:794.664400pt;}
.yd5{bottom:794.743733pt;}
.y2f{bottom:813.186400pt;}
.y144{bottom:813.191733pt;}
.ya7{bottom:813.223733pt;}
.y16a{bottom:813.225733pt;}
.y18e{bottom:813.259733pt;}
.y50{bottom:813.326400pt;}
.yd4{bottom:813.405733pt;}
.y7e{bottom:813.522400pt;}
.y2e{bottom:831.853067pt;}
.ya6{bottom:831.885733pt;}
.y169{bottom:831.891733pt;}
.yff{bottom:831.899733pt;}
.y18d{bottom:831.925733pt;}
.yd3{bottom:832.067733pt;}
.y7d{bottom:832.184400pt;}
.y2d{bottom:850.519733pt;}
.y143{bottom:850.523733pt;}
.ya5{bottom:850.547733pt;}
.y168{bottom:850.557733pt;}
.yfe{bottom:850.561733pt;}
.y4f{bottom:850.664400pt;}
.yd2{bottom:850.729733pt;}
.y7c{bottom:850.846400pt;}
.y2c{bottom:869.186400pt;}
.y142{bottom:869.189733pt;}
.ya4{bottom:869.209733pt;}
.yfd{bottom:869.223733pt;}
.y18c{bottom:869.257733pt;}
.y4e{bottom:869.326400pt;}
.yd1{bottom:869.391733pt;}
.y7b{bottom:869.508400pt;}
.y141{bottom:887.855733pt;}
.ya3{bottom:887.871733pt;}
.yfc{bottom:887.885733pt;}
.y167{bottom:887.889733pt;}
.y18b{bottom:887.923733pt;}
.y4d{bottom:887.988400pt;}
.yd0{bottom:888.053733pt;}
.y7a{bottom:888.170400pt;}
.ya2{bottom:906.533733pt;}
.yfb{bottom:906.547733pt;}
.y166{bottom:906.555733pt;}
.y18a{bottom:906.589733pt;}
.y4c{bottom:906.650400pt;}
.ycf{bottom:906.715733pt;}
.y79{bottom:906.832400pt;}
.y2b{bottom:919.853067pt;}
.y140{bottom:925.187733pt;}
.ya1{bottom:925.195733pt;}
.yfa{bottom:925.209733pt;}
.y165{bottom:925.221733pt;}
.y189{bottom:925.255733pt;}
.y4b{bottom:925.312400pt;}
.yce{bottom:925.377733pt;}
.y124{bottom:925.391733pt;}
.y78{bottom:925.494400pt;}
.y2a{bottom:943.853067pt;}
.y13f{bottom:943.853733pt;}
.ya0{bottom:943.857733pt;}
.yf9{bottom:943.871733pt;}
.y164{bottom:943.887733pt;}
.y188{bottom:943.921733pt;}
.y4a{bottom:943.974400pt;}
.ycd{bottom:944.039733pt;}
.y123{bottom:944.053733pt;}
.y77{bottom:944.156400pt;}
.y9f{bottom:962.519733pt;}
.yf8{bottom:962.533733pt;}
.y163{bottom:962.553733pt;}
.y187{bottom:962.587733pt;}
.y49{bottom:962.636400pt;}
.ycc{bottom:962.701733pt;}
.y122{bottom:962.715733pt;}
.y76{bottom:962.818400pt;}
.y29{bottom:970.144800pt;}
.yb{bottom:1055.853067pt;}
.h12{height:33.501333pt;}
.h9{height:38.933333pt;}
.ha{height:39.144000pt;}
.he{height:39.413333pt;}
.hc{height:39.466667pt;}
.hf{height:39.816000pt;}
.h11{height:41.434667pt;}
.hb{height:44.912000pt;}
.h7{height:46.016000pt;}
.h10{height:47.360000pt;}
.hd{height:48.746667pt;}
.h8{height:63.146667pt;}
.h4{height:77.866667pt;}
.h3{height:78.933333pt;}
.h5{height:161.813333pt;}
.h2{height:273.532416pt;}
.h6{height:605.866667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1587.333333pt;}
.w2{width:1587.400000pt;}
.x0{left:0.000000pt;}
.x1{left:55.275600pt;}
.x3{left:56.264533pt;}
.x4{left:75.590533pt;}
.x7{left:122.577200pt;}
.x6{left:148.283867pt;}
.x2{left:198.425200pt;}
.x8{left:415.748000pt;}
.x9{left:442.208000pt;}
.x5{left:869.291200pt;}
.xd{left:884.398000pt;}
.xa{left:895.752000pt;}
.xb{left:1209.450000pt;}
.xc{left:1406.237467pt;}
}




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