
    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_1e3ce85ec1fc3072893d1408.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_fb1091a74dc5b1bf021f2cda.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.052734;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_67b502f0dbf6d07e9295e612.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_74f55b14a930004316ff2f8c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_01dc04b50b33346c750abc52.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_4ecf23fe65339bc363125a34.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.766602;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_9d94399b1a71bb360cd1153a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_88cfb8c374eb3620c91d042f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_a6a44ead12cd5b40500e7d45.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b458fe66e6d7a78d574fe0f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e4c3d061f560ab28f0ae5d49.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.897461;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_25fbf92717a00c21cc34f4cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_1fb9f06d093ca850b73e0099.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.052734;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;}
.ls2e{letter-spacing:-1.440000px;}
.ls34{letter-spacing:-0.864000px;}
.ls19{letter-spacing:-0.792000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls42{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.360000px;}
.ls49{letter-spacing:-0.309000px;}
.ls10{letter-spacing:-0.288000px;}
.ls37{letter-spacing:-0.272400px;}
.ls4d{letter-spacing:-0.268800px;}
.ls44{letter-spacing:-0.240600px;}
.ls1c{letter-spacing:-0.216000px;}
.ls4c{letter-spacing:-0.205800px;}
.ls17{letter-spacing:-0.172200px;}
.ls18{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.108000px;}
.ls33{letter-spacing:-0.107400px;}
.ls40{letter-spacing:-0.064800px;}
.ls27{letter-spacing:-0.058320px;}
.ls1{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.022320px;}
.ls46{letter-spacing:0.060480px;}
.ls5{letter-spacing:0.060600px;}
.ls12{letter-spacing:0.072000px;}
.ls1f{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.140400px;}
.ls16{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.174240px;}
.ls43{letter-spacing:0.175200px;}
.ls2f{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.209400px;}
.ls0{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.220320px;}
.ls45{letter-spacing:0.234720px;}
.ls26{letter-spacing:0.243600px;}
.ls4a{letter-spacing:0.249600px;}
.lsf{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.288000px;}
.ls3e{letter-spacing:0.306000px;}
.ls4b{letter-spacing:0.348480px;}
.ls39{letter-spacing:0.348600px;}
.ls41{letter-spacing:0.357000px;}
.ls11{letter-spacing:0.360000px;}
.ls3d{letter-spacing:0.479520px;}
.ls30{letter-spacing:0.504000px;}
.ls3f{letter-spacing:0.654000px;}
.ls48{letter-spacing:0.678000px;}
.ls2c{letter-spacing:0.780480px;}
.ls3a{letter-spacing:0.900000px;}
.ls2a{letter-spacing:1.008000px;}
.ls35{letter-spacing:1.614240px;}
.ls3b{letter-spacing:2.448000px;}
.ls2b{letter-spacing:3.054240px;}
.ls24{letter-spacing:3.168000px;}
.ls31{letter-spacing:3.888000px;}
.ls38{letter-spacing:4.494240px;}
.ls28{letter-spacing:4.608000px;}
.ls3c{letter-spacing:5.214240px;}
.ls23{letter-spacing:6.768000px;}
.ls2d{letter-spacing:10.368000px;}
.ls21{letter-spacing:12.384000px;}
.ls15{letter-spacing:32.544000px;}
.lse{letter-spacing:33.264000px;}
.lsa{letter-spacing:33.984000px;}
.ls7{letter-spacing:51.264000px;}
.lsc{letter-spacing:52.704000px;}
.ls14{letter-spacing:59.381280px;}
.lsb{letter-spacing:86.724000px;}
.lsd{letter-spacing:118.920000px;}
.ls29{letter-spacing:124.482720px;}
.ls9{letter-spacing:138.360000px;}
.ls22{letter-spacing:144.642720px;}
.ls6{letter-spacing:157.800000px;}
.ls13{letter-spacing:164.082720px;}
.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;}
}
.ws0{word-spacing:-24.408000px;}
.ws1a{word-spacing:-19.038240px;}
.wsa{word-spacing:-18.866040px;}
.ws5{word-spacing:-16.632000px;}
.ws3{word-spacing:-16.488000px;}
.wsb{word-spacing:-16.416000px;}
.ws8{word-spacing:-16.344000px;}
.ws7{word-spacing:-16.272000px;}
.ws16{word-spacing:-16.128000px;}
.ws11{word-spacing:-16.056000px;}
.ws4{word-spacing:-15.984000px;}
.wsf{word-spacing:-15.912000px;}
.wsd{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.696000px;}
.ws12{word-spacing:-15.624000px;}
.wse{word-spacing:-15.552000px;}
.ws10{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.199800px;}
.ws1d{word-spacing:-14.183760px;}
.ws1b{word-spacing:-13.862760px;}
.ws19{word-spacing:-13.854360px;}
.ws1f{word-spacing:-13.755360px;}
.ws14{word-spacing:-13.749360px;}
.ws1c{word-spacing:-13.715160px;}
.ws17{word-spacing:-13.685040px;}
.ws13{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.447440px;}
.ws18{word-spacing:-13.398360px;}
.ws1e{word-spacing:-13.333560px;}
.ws20{word-spacing:-13.299960px;}
.ws21{word-spacing:-13.236960px;}
.ws9{word-spacing:-0.319560px;}
.ws6{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-12.420000px;}
._29{margin-left:-5.221680px;}
._20{margin-left:-3.990480px;}
._1d{margin-left:-2.787120px;}
._3{margin-left:-1.254960px;}
._0{width:1.254960px;}
._1{width:2.892480px;}
._18{width:4.359120px;}
._e{width:5.916000px;}
._14{width:7.026960px;}
._1b{width:8.784000px;}
._1c{width:9.927120px;}
._1a{width:11.910960px;}
._19{width:13.176000px;}
._21{width:14.184000px;}
._28{width:15.222960px;}
._25{width:18.184560px;}
._24{width:19.512000px;}
._27{width:20.794080px;}
._f{width:21.996000px;}
._26{width:23.612160px;}
._23{width:25.249920px;}
._22{width:26.280000px;}
._1f{width:28.028880px;}
._1e{width:29.520000px;}
._2f{width:30.716640px;}
._2e{width:32.276880px;}
._2a{width:33.336000px;}
._2d{width:34.351680px;}
._2b{width:35.352000px;}
._2c{width:36.430080px;}
._4{width:49.003200px;}
._5{width:50.019120px;}
._6{width:54.840000px;}
._a{width:70.140000px;}
._11{width:101.892000px;}
._10{width:108.972000px;}
._c{width:111.714960px;}
._8{width:113.622960px;}
._17{width:114.960000px;}
._9{width:132.372000px;}
._d{width:136.380000px;}
._15{width:143.892000px;}
._16{width:147.060000px;}
._13{width:156.504000px;}
._12{width:178.572000px;}
._7{width:199.728000px;}
._2{width:848.028000px;}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(91,155,213);}
.fc4{color:transparent;}
.fc6{color:rgb(33,33,33);}
.fc5{color:rgb(34,34,34);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs8{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.660000px;}
.y6{bottom:35.820000px;}
.y4{bottom:56.700000px;}
.y3{bottom:74.016000px;}
.y31{bottom:91.656000px;}
.ydb{bottom:95.616000px;}
.y30{bottom:96.876000px;}
.y173{bottom:100.656000px;}
.y196{bottom:104.976000px;}
.y2f{bottom:109.476000px;}
.yd2{bottom:109.836000px;}
.y5{bottom:111.456000px;}
.y156{bottom:112.176000px;}
.yd1{bottom:115.056000px;}
.yae{bottom:117.576000px;}
.y1b2{bottom:117.936000px;}
.y8f{bottom:121.176000px;}
.y103{bottom:121.356000px;}
.y195{bottom:123.336000px;}
.yce{bottom:124.956000px;}
.yd0{bottom:127.836000px;}
.yed{bottom:128.196000px;}
.yda{bottom:128.556000px;}
.y139{bottom:133.416000px;}
.y172{bottom:139.896000px;}
.y194{bottom:141.696000px;}
.y155{bottom:145.116000px;}
.y147{bottom:146.196000px;}
.yec{bottom:146.556000px;}
.yad{bottom:150.510000px;}
.y123{bottom:151.770000px;}
.y8e{bottom:154.110000px;}
.y102{bottom:154.290000px;}
.y1b1{bottom:157.350000px;}
.ycd{bottom:157.890000px;}
.y171{bottom:158.250000px;}
.yd9{bottom:161.490000px;}
.y122{bottom:164.550000px;}
.yeb{bottom:164.730000px;}
.y138{bottom:169.950000px;}
.y1b0{bottom:175.530000px;}
.y146{bottom:176.250000px;}
.y170{bottom:176.610000px;}
.y154{bottom:178.050000px;}
.y193{bottom:180.930000px;}
.yea{bottom:183.090000px;}
.yac{bottom:183.630000px;}
.y8d{bottom:187.050000px;}
.y101{bottom:187.230000px;}
.ye9{bottom:188.310000px;}
.y71{bottom:189.030000px;}
.yd3{bottom:189.570000px;}
.ycc{bottom:190.830000px;}
.y1af{bottom:193.890000px;}
.yd8{bottom:194.610000px;}
.y192{bottom:199.290000px;}
.y137{bottom:201.090000px;}
.ye8{bottom:201.450000px;}
.y121{bottom:201.810000px;}
.ye7{bottom:206.670000px;}
.y145{bottom:209.190000px;}
.y70{bottom:210.990000px;}
.y16f{bottom:215.850000px;}
.yab{bottom:216.570000px;}
.ye6{bottom:219.450000px;}
.y8c{bottom:219.990000px;}
.y100{bottom:220.170000px;}
.ycb{bottom:223.770000px;}
.yd7{bottom:227.550000px;}
.y1ae{bottom:233.310000px;}
.y120{bottom:234.750000px;}
.y191{bottom:238.530000px;}
.y136{bottom:242.130000px;}
.y2e{bottom:243.930000px;}
.yaa{bottom:249.510000px;}
.y1ad{bottom:251.490000px;}
.y8b{bottom:252.930000px;}
.yff{bottom:253.110000px;}
.y16e{bottom:255.270000px;}
.yca{bottom:256.710000px;}
.y190{bottom:256.890000px;}
.yd6{bottom:260.490000px;}
.y55{bottom:260.670000px;}
.yc{bottom:261.570000px;}
.y11f{bottom:267.690000px;}
.y2d{bottom:273.090000px;}
.y134{bottom:275.070000px;}
.y6f{bottom:276.870000px;}
.yc9{bottom:278.670000px;}
.y135{bottom:281.010000px;}
.ya9{bottom:282.450000px;}
.y54{bottom:285.870000px;}
.yfe{bottom:286.050000px;}
.y1ac{bottom:290.910000px;}
.y16d{bottom:294.510000px;}
.yb{bottom:294.690000px;}
.y18f{bottom:296.310000px;}
.y11e{bottom:300.810000px;}
.y2c{bottom:302.430000px;}
.y133{bottom:308.010000px;}
.y1ab{bottom:309.090000px;}
.y6e{bottom:309.810000px;}
.y53{bottom:311.250000px;}
.yc8{bottom:311.790000px;}
.ya8{bottom:315.390000px;}
.y8a{bottom:318.810000px;}
.yfd{bottom:318.990000px;}
.y2b{bottom:331.815000px;}
.y11d{bottom:333.795000px;}
.y18e{bottom:335.595000px;}
.y132{bottom:340.995000px;}
.y6d{bottom:342.975000px;}
.y52{bottom:344.235000px;}
.yc7{bottom:344.775000px;}
.ya7{bottom:348.375000px;}
.y1aa{bottom:348.555000px;}
.y89{bottom:351.795000px;}
.yfc{bottom:351.975000px;}
.y16c{bottom:352.155000px;}
.y8{bottom:353.415000px;}
.ye5{bottom:354.315000px;}
.y2a{bottom:361.155000px;}
.y11c{bottom:366.735000px;}
.ya{bottom:367.230000px;}
.y51{bottom:369.435000px;}
.y131{bottom:373.935000px;}
.y18d{bottom:374.835000px;}
.y6c{bottom:375.915000px;}
.yc6{bottom:377.715000px;}
.ya6{bottom:381.315000px;}
.y88{bottom:384.735000px;}
.yfb{bottom:385.095000px;}
.y1a9{bottom:387.795000px;}
.y29{bottom:390.495000px;}
.y16b{bottom:391.575000px;}
.y18c{bottom:393.195000px;}
.y50{bottom:394.635000px;}
.y11b{bottom:399.675000px;}
.y130{bottom:407.055000px;}
.y6b{bottom:408.855000px;}
.yc5{bottom:410.655000px;}
.ya5{bottom:414.255000px;}
.y87{bottom:417.855000px;}
.yfa{bottom:418.035000px;}
.y28{bottom:419.655000px;}
.y4f{bottom:420.015000px;}
.y1a8{bottom:427.215000px;}
.y16a{bottom:430.815000px;}
.y18b{bottom:432.435000px;}
.y11a{bottom:432.615000px;}
.y12f{bottom:439.995000px;}
.y6a{bottom:441.795000px;}
.yc4{bottom:443.595000px;}
.y4e{bottom:445.215000px;}
.ya4{bottom:447.195000px;}
.y27{bottom:448.995000px;}
.y86{bottom:450.795000px;}
.yf9{bottom:450.975000px;}
.y119{bottom:465.555000px;}
.y9{bottom:466.230000px;}
.y1a7{bottom:466.455000px;}
.y18a{bottom:469.155000px;}
.y169{bottom:470.055000px;}
.y12e{bottom:472.935000px;}
.y69{bottom:474.735000px;}
.yc3{bottom:476.535000px;}
.y4d{bottom:478.155000px;}
.y26{bottom:478.335000px;}
.ya3{bottom:480.135000px;}
.y85{bottom:483.735000px;}
.yf8{bottom:483.915000px;}
.y1a6{bottom:484.815000px;}
.y118{bottom:498.495000px;}
.y4c{bottom:503.535000px;}
.y12d{bottom:505.875000px;}
.y25{bottom:507.675000px;}
.y189{bottom:508.395000px;}
.yc2{bottom:509.475000px;}
.ya2{bottom:513.255000px;}
.y84{bottom:516.675000px;}
.yf7{bottom:516.855000px;}
.y1a5{bottom:524.055000px;}
.y188{bottom:526.755000px;}
.y4b{bottom:528.735000px;}
.y117{bottom:531.435000px;}
.y24{bottom:536.835000px;}
.y12c{bottom:538.815000px;}
.y68{bottom:540.615000px;}
.yc1{bottom:542.415000px;}
.ya1{bottom:546.195000px;}
.y168{bottom:548.715000px;}
.y83{bottom:549.615000px;}
.yf6{bottom:549.795000px;}
.ycf{bottom:552.135000px;}
.y4a{bottom:553.935000px;}
.y23{bottom:563.655000px;}
.y116{bottom:564.375000px;}
.y187{bottom:565.995000px;}
.y167{bottom:567.075000px;}
.ye4{bottom:568.155000px;}
.y12b{bottom:571.755000px;}
.y67{bottom:573.555000px;}
.yc0{bottom:575.355000px;}
.ya0{bottom:579.135000px;}
.y49{bottom:579.315000px;}
.y1a4{bottom:581.655000px;}
.y21{bottom:582.015000px;}
.y82{bottom:582.555000px;}
.yf5{bottom:582.735000px;}
.y186{bottom:584.355000px;}
.y22{bottom:587.235000px;}
.ye3{bottom:589.215000px;}
.y12a{bottom:592.995000px;}
.y115{bottom:597.525000px;}
.y20{bottom:600.405000px;}
.y48{bottom:604.545000px;}
.y144{bottom:604.725000px;}
.y166{bottom:606.345000px;}
.y66{bottom:606.525000px;}
.ye1{bottom:607.605000px;}
.ybf{bottom:608.505000px;}
.y129{bottom:611.385000px;}
.y9f{bottom:612.105000px;}
.ye2{bottom:612.825000px;}
.y81{bottom:615.525000px;}
.yf4{bottom:615.705000px;}
.y1f{bottom:621.105000px;}
.y185{bottom:623.805000px;}
.y165{bottom:624.705000px;}
.ye0{bottom:625.965000px;}
.y127{bottom:629.565000px;}
.y47{bottom:629.925000px;}
.y114{bottom:630.465000px;}
.y128{bottom:634.785000px;}
.y143{bottom:637.665000px;}
.y65{bottom:639.465000px;}
.ybe{bottom:641.445000px;}
.y184{bottom:641.985000px;}
.ydf{bottom:644.325000px;}
.y9e{bottom:645.045000px;}
.y126{bottom:647.925000px;}
.y80{bottom:648.465000px;}
.yf3{bottom:648.645000px;}
.y1e{bottom:650.445000px;}
.y46{bottom:655.125000px;}
.y1a3{bottom:660.345000px;}
.yde{bottom:662.505000px;}
.y113{bottom:663.405000px;}
.y164{bottom:663.945000px;}
.yf2{bottom:670.605000px;}
.y64{bottom:672.585000px;}
.ybd{bottom:674.385000px;}
.y9d{bottom:677.985000px;}
.y1a2{bottom:678.705000px;}
.y1d{bottom:679.785000px;}
.ydd{bottom:680.865000px;}
.y7f{bottom:681.405000px;}
.y163{bottom:682.305000px;}
.y45{bottom:688.065000px;}
.yf1{bottom:691.845000px;}
.y112{bottom:696.345000px;}
.y142{bottom:703.725000px;}
.y63{bottom:705.525000px;}
.ybc{bottom:707.325000px;}
.y1c{bottom:709.125000px;}
.yf0{bottom:710.205000px;}
.y9c{bottom:710.925000px;}
.y44{bottom:713.265000px;}
.y7e{bottom:714.525000px;}
.y1b7{bottom:715.245000px;}
.y1a1{bottom:717.945000px;}
.y183{bottom:720.645000px;}
.y162{bottom:721.545000px;}
.yef{bottom:728.565000px;}
.y111{bottom:729.285000px;}
.y153{bottom:732.885000px;}
.y1a0{bottom:736.305000px;}
.y141{bottom:736.665000px;}
.y1b{bottom:738.285000px;}
.y62{bottom:738.465000px;}
.y43{bottom:738.645000px;}
.ybb{bottom:740.265000px;}
.y9b{bottom:743.865000px;}
.yee{bottom:746.745000px;}
.y7d{bottom:747.465000px;}
.ydc{bottom:749.805000px;}
.y1b6{bottom:754.665000px;}
.y182{bottom:759.885000px;}
.y161{bottom:760.965000px;}
.y110{bottom:762.225000px;}
.y42{bottom:763.845000px;}
.y152{bottom:765.825000px;}
.y1a{bottom:767.625000px;}
.y140{bottom:769.605000px;}
.y61{bottom:771.405000px;}
.yba{bottom:773.205000px;}
.y19f{bottom:775.545000px;}
.y9a{bottom:776.805000px;}
.y160{bottom:779.325000px;}
.y7c{bottom:780.405000px;}
.y125{bottom:782.745000px;}
.y41{bottom:789.225000px;}
.y1b5{bottom:793.905000px;}
.y10f{bottom:795.165000px;}
.y19{bottom:796.965000px;}
.y151{bottom:798.765000px;}
.y181{bottom:799.305000px;}
.y13f{bottom:802.545000px;}
.y60{bottom:804.345000px;}
.yb9{bottom:806.145000px;}
.y99{bottom:809.925000px;}
.y7b{bottom:813.345000px;}
.y40{bottom:814.425000px;}
.y19e{bottom:814.965000px;}
.y15f{bottom:818.565000px;}
.y13e{bottom:823.785000px;}
.y18{bottom:826.305000px;}
.y10e{bottom:828.105000px;}
.y150{bottom:831.885000px;}
.y1b4{bottom:833.145000px;}
.y15e{bottom:836.925000px;}
.y5f{bottom:837.285000px;}
.y180{bottom:838.545000px;}
.yb8{bottom:839.085000px;}
.y3f{bottom:839.625000px;}
.y13c{bottom:841.965000px;}
.y98{bottom:842.865000px;}
.y7a{bottom:846.285000px;}
.y13d{bottom:847.185000px;}
.y19d{bottom:854.205000px;}
.y17{bottom:855.465000px;}
.y13b{bottom:860.325000px;}
.y10d{bottom:861.045000px;}
.y14f{bottom:864.870000px;}
.y3e{bottom:865.050000px;}
.y5e{bottom:870.270000px;}
.yb7{bottom:872.070000px;}
.y19c{bottom:872.610000px;}
.y97{bottom:875.850000px;}
.y15d{bottom:876.210000px;}
.y17f{bottom:878.010000px;}
.y13a{bottom:878.730000px;}
.y79{bottom:879.270000px;}
.y16{bottom:884.850000px;}
.y3d{bottom:890.250000px;}
.y10c{bottom:894.030000px;}
.y17e{bottom:896.190000px;}
.y14e{bottom:897.810000px;}
.y5d{bottom:903.210000px;}
.yb6{bottom:905.010000px;}
.y96{bottom:908.790000px;}
.y19b{bottom:911.850000px;}
.y78{bottom:912.210000px;}
.y15{bottom:914.190000px;}
.y3c{bottom:915.450000px;}
.y10b{bottom:927.150000px;}
.y14d{bottom:930.750000px;}
.y17d{bottom:935.610000px;}
.y5c{bottom:936.150000px;}
.yb5{bottom:938.130000px;}
.y95{bottom:941.730000px;}
.y3b{bottom:942.090000px;}
.y14{bottom:943.530000px;}
.y77{bottom:945.150000px;}
.y10a{bottom:949.110000px;}
.y19a{bottom:951.270000px;}
.y14c{bottom:952.710000px;}
.y17c{bottom:953.790000px;}
.y15c{bottom:954.870000px;}
.y5b{bottom:969.270000px;}
.y199{bottom:969.450000px;}
.y108{bottom:970.170000px;}
.yb4{bottom:971.070000px;}
.y3a{bottom:971.610000px;}
.y13{bottom:972.690000px;}
.y15b{bottom:973.230000px;}
.y14a{bottom:973.950000px;}
.y94{bottom:974.670000px;}
.y109{bottom:975.390000px;}
.y76{bottom:978.090000px;}
.y14b{bottom:979.170000px;}
.yd4{bottom:980.610000px;}
.y107{bottom:988.530000px;}
.y1b3{bottom:990.510000px;}
.y149{bottom:992.130000px;}
.y17b{bottom:993.210000px;}
.y39{bottom:1001.130000px;}
.y12{bottom:1002.030000px;}
.y5a{bottom:1002.210000px;}
.yb3{bottom:1004.010000px;}
.y106{bottom:1006.890000px;}
.y93{bottom:1007.610000px;}
.y198{bottom:1008.870000px;}
.y148{bottom:1010.490000px;}
.y75{bottom:1011.030000px;}
.y17a{bottom:1011.570000px;}
.y15a{bottom:1012.470000px;}
.y105{bottom:1025.250000px;}
.y38{bottom:1025.970000px;}
.y179{bottom:1029.750000px;}
.y159{bottom:1030.830000px;}
.y11{bottom:1031.370000px;}
.y59{bottom:1035.150000px;}
.yb2{bottom:1036.950000px;}
.y92{bottom:1040.550000px;}
.y104{bottom:1043.430000px;}
.y74{bottom:1044.150000px;}
.y178{bottom:1048.110000px;}
.y37{bottom:1049.730000px;}
.y10{bottom:1060.710000px;}
.y177{bottom:1066.470000px;}
.y58{bottom:1068.090000px;}
.yb1{bottom:1069.890000px;}
.y158{bottom:1070.070000px;}
.y91{bottom:1073.490000px;}
.y73{bottom:1077.090000px;}
.y36{bottom:1077.990000px;}
.y197{bottom:1084.650000px;}
.y157{bottom:1088.250000px;}
.yf{bottom:1089.870000px;}
.yb0{bottom:1091.850000px;}
.yd5{bottom:1095.450000px;}
.y57{bottom:1101.030000px;}
.y35{bottom:1103.550000px;}
.y176{bottom:1105.710000px;}
.y90{bottom:1106.430000px;}
.y72{bottom:1110.030000px;}
.yaf{bottom:1114.710000px;}
.ye{bottom:1117.590000px;}
.y175{bottom:1124.070000px;}
.y34{bottom:1130.940000px;}
.y56{bottom:1136.700000px;}
.yd{bottom:1139.580000px;}
.y174{bottom:1142.460000px;}
.y124{bottom:1145.520000px;}
.y33{bottom:1177.920000px;}
.y2{bottom:1179.000000px;}
.y32{bottom:1195.560000px;}
.y1{bottom:1196.280000px;}
.he{height:27.147656px;}
.hc{height:34.001016px;}
.h2{height:41.726953px;}
.h13{height:42.186445px;}
.hd{height:45.578672px;}
.hb{height:52.260820px;}
.h9{height:54.386719px;}
.h12{height:54.914062px;}
.h14{height:56.808984px;}
.h8{height:62.964844px;}
.h10{height:64.249453px;}
.ha{height:73.035703px;}
.h11{height:73.668867px;}
.hf{height:82.371094px;}
.h4{height:83.743242px;}
.h7{height:94.447266px;}
.h3{height:149.940000px;}
.h6{height:247.587891px;}
.h5{height:797.685000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:786.750000px;}
.w4{width:787.650000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:53.460000px;}
.x4{left:84.959987px;}
.xd{left:111.995987px;}
.x13{left:117.035987px;}
.x1{left:119.015987px;}
.x2d{left:120.995987px;}
.xb{left:123.875987px;}
.x29{left:128.735987px;}
.x17{left:134.855973px;}
.x18{left:140.975987px;}
.xe{left:202.349987px;}
.x10{left:206.849987px;}
.x2b{left:208.289973px;}
.x2c{left:218.009987px;}
.x21{left:224.849973px;}
.x22{left:229.709987px;}
.xf{left:233.849987px;}
.x11{left:246.989987px;}
.x19{left:319.034973px;}
.x1a{left:325.154987px;}
.xa{left:335.054987px;}
.x7{left:355.034987px;}
.x24{left:366.374987px;}
.x6{left:409.034987px;}
.x14{left:456.014987px;}
.xc{left:458.354987px;}
.x12{left:459.614987px;}
.x5{left:460.874987px;}
.x2{left:463.394987px;}
.x1b{left:572.144973px;}
.x25{left:575.384973px;}
.x1c{left:578.264987px;}
.x26{left:585.104987px;}
.x1d{left:595.904973px;}
.x1e{left:600.764987px;}
.x15{left:663.089973px;}
.x16{left:669.209987px;}
.x27{left:718.709973px;}
.x28{left:730.949987px;}
.x2a{left:739.769973px;}
.x1f{left:744.089973px;}
.x20{left:750.209987px;}
.x23{left:801.869973px;}
.x8{left:803.129973px;}
.x9{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2e{letter-spacing:-1.280000pt;}
.ls34{letter-spacing:-0.768000pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls42{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls49{letter-spacing:-0.274667pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls37{letter-spacing:-0.242133pt;}
.ls4d{letter-spacing:-0.238933pt;}
.ls44{letter-spacing:-0.213867pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls4c{letter-spacing:-0.182933pt;}
.ls17{letter-spacing:-0.153067pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.096000pt;}
.ls33{letter-spacing:-0.095467pt;}
.ls40{letter-spacing:-0.057600pt;}
.ls27{letter-spacing:-0.051840pt;}
.ls1{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.019840pt;}
.ls46{letter-spacing:0.053760pt;}
.ls5{letter-spacing:0.053867pt;}
.ls12{letter-spacing:0.064000pt;}
.ls1f{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.124800pt;}
.ls16{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.154880pt;}
.ls43{letter-spacing:0.155733pt;}
.ls2f{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.186133pt;}
.ls0{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.195840pt;}
.ls45{letter-spacing:0.208640pt;}
.ls26{letter-spacing:0.216533pt;}
.ls4a{letter-spacing:0.221867pt;}
.lsf{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.256000pt;}
.ls3e{letter-spacing:0.272000pt;}
.ls4b{letter-spacing:0.309760pt;}
.ls39{letter-spacing:0.309867pt;}
.ls41{letter-spacing:0.317333pt;}
.ls11{letter-spacing:0.320000pt;}
.ls3d{letter-spacing:0.426240pt;}
.ls30{letter-spacing:0.448000pt;}
.ls3f{letter-spacing:0.581333pt;}
.ls48{letter-spacing:0.602667pt;}
.ls2c{letter-spacing:0.693760pt;}
.ls3a{letter-spacing:0.800000pt;}
.ls2a{letter-spacing:0.896000pt;}
.ls35{letter-spacing:1.434880pt;}
.ls3b{letter-spacing:2.176000pt;}
.ls2b{letter-spacing:2.714880pt;}
.ls24{letter-spacing:2.816000pt;}
.ls31{letter-spacing:3.456000pt;}
.ls38{letter-spacing:3.994880pt;}
.ls28{letter-spacing:4.096000pt;}
.ls3c{letter-spacing:4.634880pt;}
.ls23{letter-spacing:6.016000pt;}
.ls2d{letter-spacing:9.216000pt;}
.ls21{letter-spacing:11.008000pt;}
.ls15{letter-spacing:28.928000pt;}
.lse{letter-spacing:29.568000pt;}
.lsa{letter-spacing:30.208000pt;}
.ls7{letter-spacing:45.568000pt;}
.lsc{letter-spacing:46.848000pt;}
.ls14{letter-spacing:52.783360pt;}
.lsb{letter-spacing:77.088000pt;}
.lsd{letter-spacing:105.706667pt;}
.ls29{letter-spacing:110.651307pt;}
.ls9{letter-spacing:122.986667pt;}
.ls22{letter-spacing:128.571307pt;}
.ls6{letter-spacing:140.266667pt;}
.ls13{letter-spacing:145.851307pt;}
.ws0{word-spacing:-21.696000pt;}
.ws1a{word-spacing:-16.922880pt;}
.wsa{word-spacing:-16.769813pt;}
.ws5{word-spacing:-14.784000pt;}
.ws3{word-spacing:-14.656000pt;}
.wsb{word-spacing:-14.592000pt;}
.ws8{word-spacing:-14.528000pt;}
.ws7{word-spacing:-14.464000pt;}
.ws16{word-spacing:-14.336000pt;}
.ws11{word-spacing:-14.272000pt;}
.ws4{word-spacing:-14.208000pt;}
.wsf{word-spacing:-14.144000pt;}
.wsd{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.952000pt;}
.ws12{word-spacing:-13.888000pt;}
.wse{word-spacing:-13.824000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.510933pt;}
.ws1d{word-spacing:-12.607787pt;}
.ws1b{word-spacing:-12.322453pt;}
.ws19{word-spacing:-12.314987pt;}
.ws1f{word-spacing:-12.226987pt;}
.ws14{word-spacing:-12.221653pt;}
.ws1c{word-spacing:-12.191253pt;}
.ws17{word-spacing:-12.164480pt;}
.ws13{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.953280pt;}
.ws18{word-spacing:-11.909653pt;}
.ws1e{word-spacing:-11.852053pt;}
.ws20{word-spacing:-11.822187pt;}
.ws21{word-spacing:-11.766187pt;}
.ws9{word-spacing:-0.284053pt;}
.ws6{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-11.040000pt;}
._29{margin-left:-4.641493pt;}
._20{margin-left:-3.547093pt;}
._1d{margin-left:-2.477440pt;}
._3{margin-left:-1.115520pt;}
._0{width:1.115520pt;}
._1{width:2.571093pt;}
._18{width:3.874773pt;}
._e{width:5.258667pt;}
._14{width:6.246187pt;}
._1b{width:7.808000pt;}
._1c{width:8.824107pt;}
._1a{width:10.587520pt;}
._19{width:11.712000pt;}
._21{width:12.608000pt;}
._28{width:13.531520pt;}
._25{width:16.164053pt;}
._24{width:17.344000pt;}
._27{width:18.483627pt;}
._f{width:19.552000pt;}
._26{width:20.988587pt;}
._23{width:22.444373pt;}
._22{width:23.360000pt;}
._1f{width:24.914560pt;}
._1e{width:26.240000pt;}
._2f{width:27.303680pt;}
._2e{width:28.690560pt;}
._2a{width:29.632000pt;}
._2d{width:30.534827pt;}
._2b{width:31.424000pt;}
._2c{width:32.382293pt;}
._4{width:43.558400pt;}
._5{width:44.461440pt;}
._6{width:48.746667pt;}
._a{width:62.346667pt;}
._11{width:90.570667pt;}
._10{width:96.864000pt;}
._c{width:99.302187pt;}
._8{width:100.998187pt;}
._17{width:102.186667pt;}
._9{width:117.664000pt;}
._d{width:121.226667pt;}
._15{width:127.904000pt;}
._16{width:130.720000pt;}
._13{width:139.114667pt;}
._12{width:158.730667pt;}
._7{width:177.536000pt;}
._2{width:753.802667pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs8{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.920000pt;}
.y6{bottom:31.840000pt;}
.y4{bottom:50.400000pt;}
.y3{bottom:65.792000pt;}
.y31{bottom:81.472000pt;}
.ydb{bottom:84.992000pt;}
.y30{bottom:86.112000pt;}
.y173{bottom:89.472000pt;}
.y196{bottom:93.312000pt;}
.y2f{bottom:97.312000pt;}
.yd2{bottom:97.632000pt;}
.y5{bottom:99.072000pt;}
.y156{bottom:99.712000pt;}
.yd1{bottom:102.272000pt;}
.yae{bottom:104.512000pt;}
.y1b2{bottom:104.832000pt;}
.y8f{bottom:107.712000pt;}
.y103{bottom:107.872000pt;}
.y195{bottom:109.632000pt;}
.yce{bottom:111.072000pt;}
.yd0{bottom:113.632000pt;}
.yed{bottom:113.952000pt;}
.yda{bottom:114.272000pt;}
.y139{bottom:118.592000pt;}
.y172{bottom:124.352000pt;}
.y194{bottom:125.952000pt;}
.y155{bottom:128.992000pt;}
.y147{bottom:129.952000pt;}
.yec{bottom:130.272000pt;}
.yad{bottom:133.786667pt;}
.y123{bottom:134.906667pt;}
.y8e{bottom:136.986667pt;}
.y102{bottom:137.146667pt;}
.y1b1{bottom:139.866667pt;}
.ycd{bottom:140.346667pt;}
.y171{bottom:140.666667pt;}
.yd9{bottom:143.546667pt;}
.y122{bottom:146.266667pt;}
.yeb{bottom:146.426667pt;}
.y138{bottom:151.066667pt;}
.y1b0{bottom:156.026667pt;}
.y146{bottom:156.666667pt;}
.y170{bottom:156.986667pt;}
.y154{bottom:158.266667pt;}
.y193{bottom:160.826667pt;}
.yea{bottom:162.746667pt;}
.yac{bottom:163.226667pt;}
.y8d{bottom:166.266667pt;}
.y101{bottom:166.426667pt;}
.ye9{bottom:167.386667pt;}
.y71{bottom:168.026667pt;}
.yd3{bottom:168.506667pt;}
.ycc{bottom:169.626667pt;}
.y1af{bottom:172.346667pt;}
.yd8{bottom:172.986667pt;}
.y192{bottom:177.146667pt;}
.y137{bottom:178.746667pt;}
.ye8{bottom:179.066667pt;}
.y121{bottom:179.386667pt;}
.ye7{bottom:183.706667pt;}
.y145{bottom:185.946667pt;}
.y70{bottom:187.546667pt;}
.y16f{bottom:191.866667pt;}
.yab{bottom:192.506667pt;}
.ye6{bottom:195.066667pt;}
.y8c{bottom:195.546667pt;}
.y100{bottom:195.706667pt;}
.ycb{bottom:198.906667pt;}
.yd7{bottom:202.266667pt;}
.y1ae{bottom:207.386667pt;}
.y120{bottom:208.666667pt;}
.y191{bottom:212.026667pt;}
.y136{bottom:215.226667pt;}
.y2e{bottom:216.826667pt;}
.yaa{bottom:221.786667pt;}
.y1ad{bottom:223.546667pt;}
.y8b{bottom:224.826667pt;}
.yff{bottom:224.986667pt;}
.y16e{bottom:226.906667pt;}
.yca{bottom:228.186667pt;}
.y190{bottom:228.346667pt;}
.yd6{bottom:231.546667pt;}
.y55{bottom:231.706667pt;}
.yc{bottom:232.506667pt;}
.y11f{bottom:237.946667pt;}
.y2d{bottom:242.746667pt;}
.y134{bottom:244.506667pt;}
.y6f{bottom:246.106667pt;}
.yc9{bottom:247.706667pt;}
.y135{bottom:249.786667pt;}
.ya9{bottom:251.066667pt;}
.y54{bottom:254.106667pt;}
.yfe{bottom:254.266667pt;}
.y1ac{bottom:258.586667pt;}
.y16d{bottom:261.786667pt;}
.yb{bottom:261.946667pt;}
.y18f{bottom:263.386667pt;}
.y11e{bottom:267.386667pt;}
.y2c{bottom:268.826667pt;}
.y133{bottom:273.786667pt;}
.y1ab{bottom:274.746667pt;}
.y6e{bottom:275.386667pt;}
.y53{bottom:276.666667pt;}
.yc8{bottom:277.146667pt;}
.ya8{bottom:280.346667pt;}
.y8a{bottom:283.386667pt;}
.yfd{bottom:283.546667pt;}
.y2b{bottom:294.946667pt;}
.y11d{bottom:296.706667pt;}
.y18e{bottom:298.306667pt;}
.y132{bottom:303.106667pt;}
.y6d{bottom:304.866667pt;}
.y52{bottom:305.986667pt;}
.yc7{bottom:306.466667pt;}
.ya7{bottom:309.666667pt;}
.y1aa{bottom:309.826667pt;}
.y89{bottom:312.706667pt;}
.yfc{bottom:312.866667pt;}
.y16c{bottom:313.026667pt;}
.y8{bottom:314.146667pt;}
.ye5{bottom:314.946667pt;}
.y2a{bottom:321.026667pt;}
.y11c{bottom:325.986667pt;}
.ya{bottom:326.426667pt;}
.y51{bottom:328.386667pt;}
.y131{bottom:332.386667pt;}
.y18d{bottom:333.186667pt;}
.y6c{bottom:334.146667pt;}
.yc6{bottom:335.746667pt;}
.ya6{bottom:338.946667pt;}
.y88{bottom:341.986667pt;}
.yfb{bottom:342.306667pt;}
.y1a9{bottom:344.706667pt;}
.y29{bottom:347.106667pt;}
.y16b{bottom:348.066667pt;}
.y18c{bottom:349.506667pt;}
.y50{bottom:350.786667pt;}
.y11b{bottom:355.266667pt;}
.y130{bottom:361.826667pt;}
.y6b{bottom:363.426667pt;}
.yc5{bottom:365.026667pt;}
.ya5{bottom:368.226667pt;}
.y87{bottom:371.426667pt;}
.yfa{bottom:371.586667pt;}
.y28{bottom:373.026667pt;}
.y4f{bottom:373.346667pt;}
.y1a8{bottom:379.746667pt;}
.y16a{bottom:382.946667pt;}
.y18b{bottom:384.386667pt;}
.y11a{bottom:384.546667pt;}
.y12f{bottom:391.106667pt;}
.y6a{bottom:392.706667pt;}
.yc4{bottom:394.306667pt;}
.y4e{bottom:395.746667pt;}
.ya4{bottom:397.506667pt;}
.y27{bottom:399.106667pt;}
.y86{bottom:400.706667pt;}
.yf9{bottom:400.866667pt;}
.y119{bottom:413.826667pt;}
.y9{bottom:414.426667pt;}
.y1a7{bottom:414.626667pt;}
.y18a{bottom:417.026667pt;}
.y169{bottom:417.826667pt;}
.y12e{bottom:420.386667pt;}
.y69{bottom:421.986667pt;}
.yc3{bottom:423.586667pt;}
.y4d{bottom:425.026667pt;}
.y26{bottom:425.186667pt;}
.ya3{bottom:426.786667pt;}
.y85{bottom:429.986667pt;}
.yf8{bottom:430.146667pt;}
.y1a6{bottom:430.946667pt;}
.y118{bottom:443.106667pt;}
.y4c{bottom:447.586667pt;}
.y12d{bottom:449.666667pt;}
.y25{bottom:451.266667pt;}
.y189{bottom:451.906667pt;}
.yc2{bottom:452.866667pt;}
.ya2{bottom:456.226667pt;}
.y84{bottom:459.266667pt;}
.yf7{bottom:459.426667pt;}
.y1a5{bottom:465.826667pt;}
.y188{bottom:468.226667pt;}
.y4b{bottom:469.986667pt;}
.y117{bottom:472.386667pt;}
.y24{bottom:477.186667pt;}
.y12c{bottom:478.946667pt;}
.y68{bottom:480.546667pt;}
.yc1{bottom:482.146667pt;}
.ya1{bottom:485.506667pt;}
.y168{bottom:487.746667pt;}
.y83{bottom:488.546667pt;}
.yf6{bottom:488.706667pt;}
.ycf{bottom:490.786667pt;}
.y4a{bottom:492.386667pt;}
.y23{bottom:501.026667pt;}
.y116{bottom:501.666667pt;}
.y187{bottom:503.106667pt;}
.y167{bottom:504.066667pt;}
.ye4{bottom:505.026667pt;}
.y12b{bottom:508.226667pt;}
.y67{bottom:509.826667pt;}
.yc0{bottom:511.426667pt;}
.ya0{bottom:514.786667pt;}
.y49{bottom:514.946667pt;}
.y1a4{bottom:517.026667pt;}
.y21{bottom:517.346667pt;}
.y82{bottom:517.826667pt;}
.yf5{bottom:517.986667pt;}
.y186{bottom:519.426667pt;}
.y22{bottom:521.986667pt;}
.ye3{bottom:523.746667pt;}
.y12a{bottom:527.106667pt;}
.y115{bottom:531.133333pt;}
.y20{bottom:533.693333pt;}
.y48{bottom:537.373333pt;}
.y144{bottom:537.533333pt;}
.y166{bottom:538.973333pt;}
.y66{bottom:539.133333pt;}
.ye1{bottom:540.093333pt;}
.ybf{bottom:540.893333pt;}
.y129{bottom:543.453333pt;}
.y9f{bottom:544.093333pt;}
.ye2{bottom:544.733333pt;}
.y81{bottom:547.133333pt;}
.yf4{bottom:547.293333pt;}
.y1f{bottom:552.093333pt;}
.y185{bottom:554.493333pt;}
.y165{bottom:555.293333pt;}
.ye0{bottom:556.413333pt;}
.y127{bottom:559.613333pt;}
.y47{bottom:559.933333pt;}
.y114{bottom:560.413333pt;}
.y128{bottom:564.253333pt;}
.y143{bottom:566.813333pt;}
.y65{bottom:568.413333pt;}
.ybe{bottom:570.173333pt;}
.y184{bottom:570.653333pt;}
.ydf{bottom:572.733333pt;}
.y9e{bottom:573.373333pt;}
.y126{bottom:575.933333pt;}
.y80{bottom:576.413333pt;}
.yf3{bottom:576.573333pt;}
.y1e{bottom:578.173333pt;}
.y46{bottom:582.333333pt;}
.y1a3{bottom:586.973333pt;}
.yde{bottom:588.893333pt;}
.y113{bottom:589.693333pt;}
.y164{bottom:590.173333pt;}
.yf2{bottom:596.093333pt;}
.y64{bottom:597.853333pt;}
.ybd{bottom:599.453333pt;}
.y9d{bottom:602.653333pt;}
.y1a2{bottom:603.293333pt;}
.y1d{bottom:604.253333pt;}
.ydd{bottom:605.213333pt;}
.y7f{bottom:605.693333pt;}
.y163{bottom:606.493333pt;}
.y45{bottom:611.613333pt;}
.yf1{bottom:614.973333pt;}
.y112{bottom:618.973333pt;}
.y142{bottom:625.533333pt;}
.y63{bottom:627.133333pt;}
.ybc{bottom:628.733333pt;}
.y1c{bottom:630.333333pt;}
.yf0{bottom:631.293333pt;}
.y9c{bottom:631.933333pt;}
.y44{bottom:634.013333pt;}
.y7e{bottom:635.133333pt;}
.y1b7{bottom:635.773333pt;}
.y1a1{bottom:638.173333pt;}
.y183{bottom:640.573333pt;}
.y162{bottom:641.373333pt;}
.yef{bottom:647.613333pt;}
.y111{bottom:648.253333pt;}
.y153{bottom:651.453333pt;}
.y1a0{bottom:654.493333pt;}
.y141{bottom:654.813333pt;}
.y1b{bottom:656.253333pt;}
.y62{bottom:656.413333pt;}
.y43{bottom:656.573333pt;}
.ybb{bottom:658.013333pt;}
.y9b{bottom:661.213333pt;}
.yee{bottom:663.773333pt;}
.y7d{bottom:664.413333pt;}
.ydc{bottom:666.493333pt;}
.y1b6{bottom:670.813333pt;}
.y182{bottom:675.453333pt;}
.y161{bottom:676.413333pt;}
.y110{bottom:677.533333pt;}
.y42{bottom:678.973333pt;}
.y152{bottom:680.733333pt;}
.y1a{bottom:682.333333pt;}
.y140{bottom:684.093333pt;}
.y61{bottom:685.693333pt;}
.yba{bottom:687.293333pt;}
.y19f{bottom:689.373333pt;}
.y9a{bottom:690.493333pt;}
.y160{bottom:692.733333pt;}
.y7c{bottom:693.693333pt;}
.y125{bottom:695.773333pt;}
.y41{bottom:701.533333pt;}
.y1b5{bottom:705.693333pt;}
.y10f{bottom:706.813333pt;}
.y19{bottom:708.413333pt;}
.y151{bottom:710.013333pt;}
.y181{bottom:710.493333pt;}
.y13f{bottom:713.373333pt;}
.y60{bottom:714.973333pt;}
.yb9{bottom:716.573333pt;}
.y99{bottom:719.933333pt;}
.y7b{bottom:722.973333pt;}
.y40{bottom:723.933333pt;}
.y19e{bottom:724.413333pt;}
.y15f{bottom:727.613333pt;}
.y13e{bottom:732.253333pt;}
.y18{bottom:734.493333pt;}
.y10e{bottom:736.093333pt;}
.y150{bottom:739.453333pt;}
.y1b4{bottom:740.573333pt;}
.y15e{bottom:743.933333pt;}
.y5f{bottom:744.253333pt;}
.y180{bottom:745.373333pt;}
.yb8{bottom:745.853333pt;}
.y3f{bottom:746.333333pt;}
.y13c{bottom:748.413333pt;}
.y98{bottom:749.213333pt;}
.y7a{bottom:752.253333pt;}
.y13d{bottom:753.053333pt;}
.y19d{bottom:759.293333pt;}
.y17{bottom:760.413333pt;}
.y13b{bottom:764.733333pt;}
.y10d{bottom:765.373333pt;}
.y14f{bottom:768.773333pt;}
.y3e{bottom:768.933333pt;}
.y5e{bottom:773.573333pt;}
.yb7{bottom:775.173333pt;}
.y19c{bottom:775.653333pt;}
.y97{bottom:778.533333pt;}
.y15d{bottom:778.853333pt;}
.y17f{bottom:780.453333pt;}
.y13a{bottom:781.093333pt;}
.y79{bottom:781.573333pt;}
.y16{bottom:786.533333pt;}
.y3d{bottom:791.333333pt;}
.y10c{bottom:794.693333pt;}
.y17e{bottom:796.613333pt;}
.y14e{bottom:798.053333pt;}
.y5d{bottom:802.853333pt;}
.yb6{bottom:804.453333pt;}
.y96{bottom:807.813333pt;}
.y19b{bottom:810.533333pt;}
.y78{bottom:810.853333pt;}
.y15{bottom:812.613333pt;}
.y3c{bottom:813.733333pt;}
.y10b{bottom:824.133333pt;}
.y14d{bottom:827.333333pt;}
.y17d{bottom:831.653333pt;}
.y5c{bottom:832.133333pt;}
.yb5{bottom:833.893333pt;}
.y95{bottom:837.093333pt;}
.y3b{bottom:837.413333pt;}
.y14{bottom:838.693333pt;}
.y77{bottom:840.133333pt;}
.y10a{bottom:843.653333pt;}
.y19a{bottom:845.573333pt;}
.y14c{bottom:846.853333pt;}
.y17c{bottom:847.813333pt;}
.y15c{bottom:848.773333pt;}
.y5b{bottom:861.573333pt;}
.y199{bottom:861.733333pt;}
.y108{bottom:862.373333pt;}
.yb4{bottom:863.173333pt;}
.y3a{bottom:863.653333pt;}
.y13{bottom:864.613333pt;}
.y15b{bottom:865.093333pt;}
.y14a{bottom:865.733333pt;}
.y94{bottom:866.373333pt;}
.y109{bottom:867.013333pt;}
.y76{bottom:869.413333pt;}
.y14b{bottom:870.373333pt;}
.yd4{bottom:871.653333pt;}
.y107{bottom:878.693333pt;}
.y1b3{bottom:880.453333pt;}
.y149{bottom:881.893333pt;}
.y17b{bottom:882.853333pt;}
.y39{bottom:889.893333pt;}
.y12{bottom:890.693333pt;}
.y5a{bottom:890.853333pt;}
.yb3{bottom:892.453333pt;}
.y106{bottom:895.013333pt;}
.y93{bottom:895.653333pt;}
.y198{bottom:896.773333pt;}
.y148{bottom:898.213333pt;}
.y75{bottom:898.693333pt;}
.y17a{bottom:899.173333pt;}
.y15a{bottom:899.973333pt;}
.y105{bottom:911.333333pt;}
.y38{bottom:911.973333pt;}
.y179{bottom:915.333333pt;}
.y159{bottom:916.293333pt;}
.y11{bottom:916.773333pt;}
.y59{bottom:920.133333pt;}
.yb2{bottom:921.733333pt;}
.y92{bottom:924.933333pt;}
.y104{bottom:927.493333pt;}
.y74{bottom:928.133333pt;}
.y178{bottom:931.653333pt;}
.y37{bottom:933.093333pt;}
.y10{bottom:942.853333pt;}
.y177{bottom:947.973333pt;}
.y58{bottom:949.413333pt;}
.yb1{bottom:951.013333pt;}
.y158{bottom:951.173333pt;}
.y91{bottom:954.213333pt;}
.y73{bottom:957.413333pt;}
.y36{bottom:958.213333pt;}
.y197{bottom:964.133333pt;}
.y157{bottom:967.333333pt;}
.yf{bottom:968.773333pt;}
.yb0{bottom:970.533333pt;}
.yd5{bottom:973.733333pt;}
.y57{bottom:978.693333pt;}
.y35{bottom:980.933333pt;}
.y176{bottom:982.853333pt;}
.y90{bottom:983.493333pt;}
.y72{bottom:986.693333pt;}
.yaf{bottom:990.853333pt;}
.ye{bottom:993.413333pt;}
.y175{bottom:999.173333pt;}
.y34{bottom:1005.280000pt;}
.y56{bottom:1010.400000pt;}
.yd{bottom:1012.960000pt;}
.y174{bottom:1015.520000pt;}
.y124{bottom:1018.240000pt;}
.y33{bottom:1047.040000pt;}
.y2{bottom:1048.000000pt;}
.y32{bottom:1062.720000pt;}
.y1{bottom:1063.360000pt;}
.he{height:24.131250pt;}
.hc{height:30.223125pt;}
.h2{height:37.090625pt;}
.h13{height:37.499062pt;}
.hd{height:40.514375pt;}
.hb{height:46.454062pt;}
.h9{height:48.343750pt;}
.h12{height:48.812500pt;}
.h14{height:50.496875pt;}
.h8{height:55.968750pt;}
.h10{height:57.110625pt;}
.ha{height:64.920625pt;}
.h11{height:65.483437pt;}
.hf{height:73.218750pt;}
.h4{height:74.438437pt;}
.h7{height:83.953125pt;}
.h3{height:133.280000pt;}
.h6{height:220.078125pt;}
.h5{height:709.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:699.333333pt;}
.w4{width:700.133333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:47.520000pt;}
.x4{left:75.519988pt;}
.xd{left:99.551988pt;}
.x13{left:104.031988pt;}
.x1{left:105.791988pt;}
.x2d{left:107.551988pt;}
.xb{left:110.111988pt;}
.x29{left:114.431988pt;}
.x17{left:119.871976pt;}
.x18{left:125.311988pt;}
.xe{left:179.866655pt;}
.x10{left:183.866655pt;}
.x2b{left:185.146643pt;}
.x2c{left:193.786655pt;}
.x21{left:199.866643pt;}
.x22{left:204.186655pt;}
.xf{left:207.866655pt;}
.x11{left:219.546655pt;}
.x19{left:283.586643pt;}
.x1a{left:289.026655pt;}
.xa{left:297.826655pt;}
.x7{left:315.586655pt;}
.x24{left:325.666655pt;}
.x6{left:363.586655pt;}
.x14{left:405.346655pt;}
.xc{left:407.426655pt;}
.x12{left:408.546655pt;}
.x5{left:409.666655pt;}
.x2{left:411.906655pt;}
.x1b{left:508.573310pt;}
.x25{left:511.453310pt;}
.x1c{left:514.013322pt;}
.x26{left:520.093322pt;}
.x1d{left:529.693310pt;}
.x1e{left:534.013322pt;}
.x15{left:589.413310pt;}
.x16{left:594.853322pt;}
.x27{left:638.853310pt;}
.x28{left:649.733322pt;}
.x2a{left:657.573310pt;}
.x1f{left:661.413310pt;}
.x20{left:666.853322pt;}
.x23{left:712.773310pt;}
.x8{left:713.893310pt;}
.x9{left:718.213322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  