
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6925d3480e30de9c38c9e1d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e807eacded99b3c0d2449652.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.198242;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6925d3480e30de9c38c9e1d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6925d3480e30de9c38c9e1d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_34418de407ff4dd1e391d7ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.981934;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_ce37cc5885d530e14124bb49.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.198242;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_11c0ae408bdf9ed8a1bb83c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;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_e6e90ca5aff358b900f52d90.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.198242;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_50888e13d9aeb92f11697205.woff2')format("woff");}.fff{font-family:fff;line-height:0.981934;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_b15ddef52e026624616f7c62.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.936523;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:ff11;src:url('chunks/assets/font_46ed7a06bc1b6531cad732f8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.198242;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:ff12;src:url('chunks/assets/font_34f3ba1dacf087a941f074ba.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.981934;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:ff13;src:url('chunks/assets/font_141697a1da4d54b1a276642d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.981934;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:ff14;src:url('chunks/assets/font_4f2a8b9b43f65a0ac47d8e58.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.198242;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:ff15;src:url('chunks/assets/font_a6319f0ecb7fb6d4a8407348.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.198242;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:ff16;src:url('chunks/assets/font_ef0e091436b3424e2e43986d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.981934;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:ff17;src:url('chunks/assets/font_0720a9857902e047305464b6.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.981934;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:ff18;src:url('chunks/assets/font_0d054ae4989bb4b33c5b7120.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.981934;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:ff19;src:url('chunks/assets/font_1603993515036026a3bdce78.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.981934;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:ff1a;src:url('chunks/assets/font_f1fd4b4ce8a9feadad2c7ed4.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.981934;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:ff1b;src:url('chunks/assets/font_53ecad905209ebe5e05f5045.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.981934;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:ff1c;src:url('chunks/assets/font_b14524b564b18878eb291aa3.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.981934;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:ff1d;src:url('chunks/assets/font_13f67b1c2e2cdd13fa4d3862.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.981934;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:ff1e;src:url('chunks/assets/font_a9fb7f9406853d1fa54c5e0a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.981934;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:ff1f;src:url('chunks/assets/font_3e287cbcdd68d93cff549af2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.981934;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:ff20;src:url('chunks/assets/font_2a895114d7305af26278f0b4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.936523;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:ff21;src:url('chunks/assets/font_959a513c7679d0a830a80678.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.981934;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:ff22;src:url('chunks/assets/font_e5a606ecc17a6b7361a94ca9.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.981934;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.035169px;}
.ls0{letter-spacing:13.955285px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-32.425532px;}
.ws3{word-spacing:-30.522357px;}
.ws1{word-spacing:-22.895345px;}
.ws4{word-spacing:-0.102008px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-13.955284px;}
._6{margin-left:-3.648838px;}
._1{width:5.690409px;}
._2{width:11.537261px;}
._0{width:13.955216px;}
._4{width:16.746245px;}
._3{width:18.595675px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:60.007609px;}
.fs4{font-size:72.027138px;}
.fs0{font-size:90.033923px;}
.fs6{font-size:96.021179px;}
.fs5{font-size:102.008434px;}
.fs3{font-size:107.995690px;}
.fs2{font-size:108.040707px;}
.fs1{font-size:120.015219px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y86{bottom:40.429567px;}
.y19d{bottom:42.056301px;}
.y5{bottom:46.102867px;}
.y13e{bottom:55.291041px;}
.y120{bottom:55.291045px;}
.yd1{bottom:55.291056px;}
.y58{bottom:62.189538px;}
.y33{bottom:65.044703px;}
.yea{bottom:73.965230px;}
.y85{bottom:75.317712px;}
.y161{bottom:75.633596px;}
.y4{bottom:77.614740px;}
.y199{bottom:78.025581px;}
.y152{bottom:80.190030px;}
.ybd{bottom:85.888977px;}
.y57{bottom:86.948866px;}
.y32{bottom:89.804032px;}
.y13d{bottom:90.179186px;}
.y11f{bottom:90.179190px;}
.yd0{bottom:90.179201px;}
.ye9{bottom:108.853375px;}
.y84{bottom:110.205857px;}
.y160{bottom:110.521741px;}
.y198{bottom:110.662878px;}
.y56{bottom:111.708195px;}
.y9a{bottom:113.098212px;}
.y31{bottom:114.563361px;}
.y151{bottom:115.078175px;}
.ybc{bottom:118.526274px;}
.y13c{bottom:125.067331px;}
.y11e{bottom:125.067335px;}
.ycf{bottom:125.067346px;}
.y176{bottom:131.855334px;}
.y30{bottom:139.322690px;}
.y3{bottom:140.638486px;}
.y197{bottom:143.300175px;}
.ye8{bottom:143.741520px;}
.y83{bottom:145.094002px;}
.y15f{bottom:145.409886px;}
.y99{bottom:147.986357px;}
.y150{bottom:149.966320px;}
.ybb{bottom:151.163571px;}
.y13b{bottom:159.955476px;}
.y11d{bottom:159.955480px;}
.yce{bottom:159.955491px;}
.y55{bottom:161.226853px;}
.y175{bottom:166.743479px;}
.y107{bottom:167.212423px;}
.y2{bottom:172.150359px;}
.y196{bottom:175.937472px;}
.ye7{bottom:178.629666px;}
.y82{bottom:179.982147px;}
.y15e{bottom:180.298031px;}
.y6d{bottom:181.611792px;}
.y98{bottom:182.874502px;}
.yba{bottom:183.800868px;}
.y14f{bottom:184.854465px;}
.y54{bottom:185.986181px;}
.y2f{bottom:188.841347px;}
.y13a{bottom:194.843621px;}
.y11c{bottom:194.843625px;}
.ycd{bottom:194.843636px;}
.y174{bottom:201.631624px;}
.y106{bottom:202.100568px;}
.y195{bottom:208.574769px;}
.y53{bottom:210.745510px;}
.ye6{bottom:213.517811px;}
.y2e{bottom:213.600676px;}
.y81{bottom:214.870292px;}
.y15d{bottom:215.186176px;}
.yb9{bottom:216.438165px;}
.y6c{bottom:216.499937px;}
.y97{bottom:217.762647px;}
.y14e{bottom:219.742610px;}
.yf3{bottom:228.287698px;}
.y139{bottom:229.731766px;}
.y11b{bottom:229.731770px;}
.ycc{bottom:229.731781px;}
.y173{bottom:236.519769px;}
.y105{bottom:236.988713px;}
.y2d{bottom:238.360004px;}
.y194{bottom:241.212066px;}
.ye5{bottom:248.405956px;}
.yb8{bottom:249.075462px;}
.y80{bottom:249.758437px;}
.y15c{bottom:250.074322px;}
.y6b{bottom:251.388082px;}
.y96{bottom:252.650792px;}
.y14d{bottom:254.630755px;}
.y52{bottom:260.264168px;}
.y2c{bottom:263.119333px;}
.yf2{bottom:263.175843px;}
.y138{bottom:264.619911px;}
.y11a{bottom:264.619915px;}
.ycb{bottom:264.619926px;}
.y19c{bottom:271.407914px;}
.y104{bottom:271.876858px;}
.y193{bottom:273.849363px;}
.yb7{bottom:281.712759px;}
.ye4{bottom:283.294101px;}
.y7f{bottom:284.646582px;}
.y15b{bottom:284.962467px;}
.y51{bottom:285.023496px;}
.y6a{bottom:286.276227px;}
.y95{bottom:287.538937px;}
.y2b{bottom:287.878662px;}
.y14c{bottom:289.518900px;}
.yf1{bottom:298.063988px;}
.y137{bottom:299.508056px;}
.y119{bottom:299.508060px;}
.yca{bottom:299.508071px;}
.y172{bottom:306.296059px;}
.y192{bottom:306.486660px;}
.y103{bottom:306.765003px;}
.y50{bottom:309.782825px;}
.y2a{bottom:312.637991px;}
.yb6{bottom:314.350056px;}
.ye3{bottom:318.182246px;}
.y7e{bottom:319.534727px;}
.y15a{bottom:319.850612px;}
.y69{bottom:321.164372px;}
.y94{bottom:322.427082px;}
.y14b{bottom:324.407045px;}
.yf0{bottom:332.952133px;}
.y136{bottom:334.396201px;}
.y118{bottom:334.396205px;}
.yc9{bottom:334.396216px;}
.y4f{bottom:334.542154px;}
.y29{bottom:337.397319px;}
.y191{bottom:339.123957px;}
.y171{bottom:341.184204px;}
.y102{bottom:341.653148px;}
.yb5{bottom:346.987352px;}
.ye2{bottom:353.070391px;}
.y7d{bottom:354.422872px;}
.y159{bottom:354.738757px;}
.y68{bottom:356.052517px;}
.y93{bottom:357.315227px;}
.y14a{bottom:359.295190px;}
.y4e{bottom:359.301482px;}
.y28{bottom:362.156648px;}
.y135{bottom:369.284346px;}
.y117{bottom:369.284350px;}
.yc8{bottom:369.284361px;}
.y190{bottom:371.761254px;}
.y170{bottom:376.072349px;}
.y101{bottom:376.541293px;}
.yb4{bottom:379.624649px;}
.y4d{bottom:384.060811px;}
.y27{bottom:386.915977px;}
.ye1{bottom:387.958536px;}
.y7c{bottom:389.311017px;}
.y158{bottom:389.626902px;}
.y67{bottom:390.940663px;}
.y92{bottom:392.203372px;}
.y149{bottom:394.183335px;}
.yef{bottom:402.728424px;}
.y134{bottom:404.172491px;}
.y116{bottom:404.172495px;}
.yc7{bottom:404.172506px;}
.y18f{bottom:404.398551px;}
.y4c{bottom:408.820140px;}
.y16f{bottom:410.960494px;}
.y100{bottom:411.429438px;}
.y26{bottom:411.675306px;}
.yb3{bottom:412.261946px;}
.ye0{bottom:422.846681px;}
.y7b{bottom:424.199162px;}
.y157{bottom:424.515047px;}
.y66{bottom:425.828808px;}
.y91{bottom:427.091517px;}
.y148{bottom:429.071480px;}
.y25{bottom:436.434634px;}
.y18e{bottom:437.035848px;}
.yee{bottom:437.616569px;}
.y133{bottom:439.060637px;}
.y115{bottom:439.060640px;}
.yc6{bottom:439.060651px;}
.yb2{bottom:444.899243px;}
.y19b{bottom:445.848639px;}
.yff{bottom:446.317583px;}
.ydf{bottom:457.734826px;}
.y7a{bottom:459.087308px;}
.y156{bottom:459.403192px;}
.y65{bottom:460.716953px;}
.y90{bottom:461.979662px;}
.y147{bottom:463.959625px;}
.y18d{bottom:469.673145px;}
.yed{bottom:472.504714px;}
.y132{bottom:473.948782px;}
.y114{bottom:473.948785px;}
.yc5{bottom:473.948796px;}
.y4b{bottom:474.094734px;}
.yb1{bottom:477.536540px;}
.y16e{bottom:480.736784px;}
.yfe{bottom:481.205728px;}
.y24{bottom:485.953292px;}
.yde{bottom:492.622971px;}
.y79{bottom:493.975453px;}
.y155{bottom:494.291337px;}
.y64{bottom:495.605098px;}
.y8f{bottom:496.867807px;}
.y146{bottom:498.847770px;}
.y18c{bottom:502.310442px;}
.yec{bottom:507.392859px;}
.y131{bottom:508.836927px;}
.y113{bottom:508.836930px;}
.yc4{bottom:508.836941px;}
.yb0{bottom:510.173837px;}
.y23{bottom:510.712620px;}
.y16d{bottom:515.624929px;}
.yfd{bottom:516.093873px;}
.ydd{bottom:527.511116px;}
.y78{bottom:528.863598px;}
.y154{bottom:529.179482px;}
.y8e{bottom:531.755952px;}
.y145{bottom:533.735915px;}
.y4a{bottom:533.742208px;}
.y18b{bottom:534.947739px;}
.yeb{bottom:542.281004px;}
.yaf{bottom:542.811134px;}
.y130{bottom:543.725072px;}
.y112{bottom:543.725075px;}
.yc3{bottom:543.725086px;}
.y16c{bottom:550.513074px;}
.yfc{bottom:550.982018px;}
.y49{bottom:558.501536px;}
.y22{bottom:560.231278px;}
.ydc{bottom:562.399261px;}
.y77{bottom:563.751743px;}
.y153{bottom:564.067627px;}
.y8d{bottom:566.644097px;}
.y18a{bottom:567.585036px;}
.y144{bottom:568.624060px;}
.yae{bottom:575.448431px;}
.y12f{bottom:578.613217px;}
.y111{bottom:578.613220px;}
.yc2{bottom:578.613231px;}
.y48{bottom:583.260865px;}
.y21{bottom:584.990607px;}
.y16b{bottom:585.401219px;}
.yfb{bottom:585.870163px;}
.ydb{bottom:597.287406px;}
.y76{bottom:598.639888px;}
.y189{bottom:600.222333px;}
.y8c{bottom:601.532242px;}
.y143{bottom:603.512205px;}
.y47{bottom:608.020194px;}
.yad{bottom:608.085728px;}
.y20{bottom:609.749935px;}
.y12e{bottom:613.501362px;}
.y110{bottom:613.501365px;}
.yc1{bottom:613.501376px;}
.y19a{bottom:620.289364px;}
.yfa{bottom:620.758308px;}
.yda{bottom:632.175551px;}
.y46{bottom:632.779522px;}
.y188{bottom:632.859630px;}
.y75{bottom:633.528033px;}
.y1f{bottom:634.509264px;}
.y8b{bottom:636.420387px;}
.y142{bottom:638.400350px;}
.yac{bottom:640.723025px;}
.y12d{bottom:648.389507px;}
.y10f{bottom:648.389510px;}
.yc0{bottom:648.389521px;}
.y16a{bottom:655.177509px;}
.yf9{bottom:655.646453px;}
.y45{bottom:657.538851px;}
.y1e{bottom:659.268593px;}
.y187{bottom:665.496927px;}
.yd9{bottom:667.063696px;}
.y74{bottom:668.416178px;}
.y8a{bottom:671.308532px;}
.y141{bottom:673.288495px;}
.yab{bottom:673.360322px;}
.y44{bottom:682.298180px;}
.y12c{bottom:683.277652px;}
.y10e{bottom:683.277655px;}
.ybf{bottom:683.277666px;}
.y1d{bottom:684.027922px;}
.y169{bottom:690.065654px;}
.yf8{bottom:690.534598px;}
.y186{bottom:698.134224px;}
.yd8{bottom:701.951841px;}
.y73{bottom:703.304323px;}
.yaa{bottom:705.997619px;}
.y89{bottom:706.196677px;}
.y43{bottom:707.057509px;}
.y140{bottom:708.176640px;}
.y1c{bottom:708.787250px;}
.y12b{bottom:718.165797px;}
.y10d{bottom:718.165800px;}
.ybe{bottom:718.165811px;}
.y168{bottom:724.953799px;}
.yf7{bottom:725.422743px;}
.y185{bottom:730.771521px;}
.y1b{bottom:733.546579px;}
.yd7{bottom:736.839986px;}
.y72{bottom:738.192468px;}
.ya9{bottom:738.634916px;}
.y88{bottom:741.084822px;}
.y13f{bottom:743.064785px;}
.y12a{bottom:753.053942px;}
.y10c{bottom:753.053945px;}
.y42{bottom:756.576166px;}
.y167{bottom:759.841944px;}
.yf6{bottom:760.310888px;}
.y184{bottom:763.408818px;}
.ya8{bottom:771.272213px;}
.yd6{bottom:771.728131px;}
.y71{bottom:773.080613px;}
.y87{bottom:775.972967px;}
.y41{bottom:781.335495px;}
.y1a{bottom:783.065236px;}
.y129{bottom:787.942087px;}
.y10b{bottom:787.942090px;}
.yf5{bottom:795.199033px;}
.y183{bottom:796.046114px;}
.ya7{bottom:803.909510px;}
.y40{bottom:806.094824px;}
.yd5{bottom:806.616276px;}
.y19{bottom:807.824565px;}
.y70{bottom:807.968758px;}
.y128{bottom:822.830232px;}
.y10a{bottom:822.830235px;}
.y182{bottom:828.683411px;}
.y166{bottom:829.618235px;}
.yf4{bottom:830.087178px;}
.y3f{bottom:830.854152px;}
.y63{bottom:830.971477px;}
.y18{bottom:832.583894px;}
.ya6{bottom:836.546807px;}
.yd4{bottom:841.504421px;}
.y6f{bottom:842.856903px;}
.y3e{bottom:855.613481px;}
.y17{bottom:857.343223px;}
.y127{bottom:857.718377px;}
.y109{bottom:857.718380px;}
.y181{bottom:861.320708px;}
.y165{bottom:864.506380px;}
.y62{bottom:865.859622px;}
.ya5{bottom:869.184104px;}
.yd3{bottom:876.392566px;}
.y6e{bottom:876.619624px;}
.y3d{bottom:880.372810px;}
.y16{bottom:882.102551px;}
.y126{bottom:892.606522px;}
.y108{bottom:892.606525px;}
.y180{bottom:893.958005px;}
.y164{bottom:899.394525px;}
.y61{bottom:900.747767px;}
.ya4{bottom:901.821401px;}
.y3c{bottom:905.132138px;}
.y15{bottom:906.861880px;}
.yd2{bottom:911.280711px;}
.y17f{bottom:926.595302px;}
.y125{bottom:927.494667px;}
.y14{bottom:931.621209px;}
.y163{bottom:934.282670px;}
.ya3{bottom:934.458698px;}
.y60{bottom:935.635912px;}
.y3b{bottom:954.650796px;}
.y17e{bottom:959.232599px;}
.y124{bottom:962.382812px;}
.ya2{bottom:967.095995px;}
.y162{bottom:969.170815px;}
.y5f{bottom:970.524057px;}
.y3a{bottom:979.410125px;}
.y13{bottom:981.139866px;}
.y17d{bottom:991.869896px;}
.y123{bottom:997.270957px;}
.ya1{bottom:999.733292px;}
.y39{bottom:1004.169453px;}
.y5e{bottom:1005.412202px;}
.y12{bottom:1005.899195px;}
.y17c{bottom:1024.507193px;}
.y38{bottom:1028.928782px;}
.y11{bottom:1030.658524px;}
.y122{bottom:1032.159102px;}
.ya0{bottom:1032.370589px;}
.y5d{bottom:1040.300347px;}
.y37{bottom:1053.688111px;}
.y10{bottom:1055.417852px;}
.y17b{bottom:1057.144490px;}
.y9f{bottom:1065.007886px;}
.y121{bottom:1067.047247px;}
.ya{bottom:1072.970443px;}
.y5c{bottom:1075.188492px;}
.y36{bottom:1078.447440px;}
.yf{bottom:1080.177181px;}
.y17a{bottom:1089.781787px;}
.y9e{bottom:1097.645183px;}
.y35{bottom:1103.206768px;}
.y9{bottom:1104.482316px;}
.ye{bottom:1104.936510px;}
.y5b{bottom:1110.076637px;}
.y179{bottom:1122.419084px;}
.yd{bottom:1129.695839px;}
.y9d{bottom:1130.282480px;}
.y8{bottom:1135.994189px;}
.y5a{bottom:1144.964782px;}
.y178{bottom:1155.056381px;}
.y9c{bottom:1162.919776px;}
.y34{bottom:1168.481362px;}
.y7{bottom:1169.756910px;}
.y59{bottom:1179.852927px;}
.yc{bottom:1182.590768px;}
.y177{bottom:1187.693678px;}
.y9b{bottom:1195.557073px;}
.y6{bottom:1208.021327px;}
.yb{bottom:1220.855185px;}
.h12{height:45.591719px;}
.hd{height:54.723744px;}
.h4{height:63.480949px;}
.hc{height:68.158493px;}
.h10{height:72.953591px;}
.hf{height:77.502502px;}
.hb{height:82.051413px;}
.h7{height:84.620106px;}
.h5{height:85.198116px;}
.h3{height:85.532227px;}
.h11{height:90.863791px;}
.he{height:96.529466px;}
.ha{height:102.237740px;}
.h8{height:102.638672px;}
.h9{height:113.569089px;}
.h6{height:114.014458px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:20.852874px;}
.x1b{left:39.527090px;}
.x29{left:40.772033px;}
.xf{left:46.954584px;}
.x2c{left:52.874086px;}
.x13{left:59.123231px;}
.x27{left:66.165790px;}
.x31{left:67.538409px;}
.x22{left:69.141327px;}
.x2e{left:79.084584px;}
.x5{left:84.650691px;}
.xc{left:86.573027px;}
.x14{left:88.114545px;}
.x1d{left:89.324996px;}
.xb{left:107.428541px;}
.x24{left:117.678872px;}
.x30{left:124.960797px;}
.x1{left:128.665321px;}
.x15{left:134.802057px;}
.x19{left:151.665044px;}
.x1f{left:156.833925px;}
.x3{left:168.406857px;}
.x28{left:244.456204px;}
.x7{left:253.417146px;}
.x21{left:263.329733px;}
.x1a{left:265.438386px;}
.x25{left:275.160640px;}
.x33{left:280.015781px;}
.x20{left:286.098355px;}
.x34{left:292.762981px;}
.x32{left:294.732473px;}
.x17{left:302.490238px;}
.x18{left:308.469053px;}
.x2f{left:312.308729px;}
.x2d{left:317.164527px;}
.x26{left:321.513958px;}
.x10{left:358.416269px;}
.x23{left:365.817292px;}
.x1c{left:383.342025px;}
.x11{left:384.413570px;}
.x12{left:395.057187px;}
.x8{left:424.090903px;}
.x1e{left:428.395233px;}
.x9{left:438.278637px;}
.x2b{left:446.624981px;}
.x35{left:568.421523px;}
.xa{left:630.275928px;}
.x2a{left:643.486269px;}
.x4{left:717.648955px;}
.x2{left:757.390491px;}
.xd{left:785.610273px;}
.xe{left:796.253856px;}
.x6{left:801.422706px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.031262pt;}
.ls0{letter-spacing:12.404698pt;}
.ws2{word-spacing:-28.822695pt;}
.ws3{word-spacing:-27.130984pt;}
.ws1{word-spacing:-20.351418pt;}
.ws4{word-spacing:-0.090674pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-12.404697pt;}
._6{margin-left:-3.243411pt;}
._1{width:5.058141pt;}
._2{width:10.255343pt;}
._0{width:12.404636pt;}
._4{width:14.885552pt;}
._3{width:16.529489pt;}
.fs7{font-size:53.340097pt;}
.fs4{font-size:64.024123pt;}
.fs0{font-size:80.030153pt;}
.fs6{font-size:85.352159pt;}
.fs5{font-size:90.674164pt;}
.fs3{font-size:95.996169pt;}
.fs2{font-size:96.036184pt;}
.fs1{font-size:106.680195pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y86{bottom:35.937393pt;}
.y19d{bottom:37.383379pt;}
.y5{bottom:40.980327pt;}
.y13e{bottom:49.147592pt;}
.y120{bottom:49.147595pt;}
.yd1{bottom:49.147605pt;}
.y58{bottom:55.279589pt;}
.y33{bottom:57.817514pt;}
.yea{bottom:65.746872pt;}
.y85{bottom:66.949078pt;}
.y161{bottom:67.229863pt;}
.y4{bottom:68.990880pt;}
.y199{bottom:69.356072pt;}
.y152{bottom:71.280026pt;}
.ybd{bottom:76.345757pt;}
.y57{bottom:77.287881pt;}
.y32{bottom:79.825806pt;}
.y13d{bottom:80.159277pt;}
.y11f{bottom:80.159280pt;}
.yd0{bottom:80.159289pt;}
.ye9{bottom:96.758556pt;}
.y84{bottom:97.960762pt;}
.y160{bottom:98.241548pt;}
.y198{bottom:98.367003pt;}
.y56{bottom:99.296173pt;}
.y9a{bottom:100.531744pt;}
.y31{bottom:101.834098pt;}
.y151{bottom:102.291711pt;}
.ybc{bottom:105.356688pt;}
.y13c{bottom:111.170961pt;}
.y11e{bottom:111.170964pt;}
.ycf{bottom:111.170974pt;}
.y176{bottom:117.204741pt;}
.y30{bottom:123.842391pt;}
.y3{bottom:125.011988pt;}
.y197{bottom:127.377934pt;}
.ye8{bottom:127.770240pt;}
.y83{bottom:128.972446pt;}
.y15f{bottom:129.253232pt;}
.y99{bottom:131.543428pt;}
.y150{bottom:133.303395pt;}
.ybb{bottom:134.367618pt;}
.y13b{bottom:142.182646pt;}
.y11d{bottom:142.182649pt;}
.yce{bottom:142.182658pt;}
.y55{bottom:143.312758pt;}
.y175{bottom:148.216426pt;}
.y107{bottom:148.633265pt;}
.y2{bottom:153.022541pt;}
.y196{bottom:156.388864pt;}
.ye7{bottom:158.781925pt;}
.y82{bottom:159.984131pt;}
.y15e{bottom:160.264917pt;}
.y6d{bottom:161.432704pt;}
.y98{bottom:162.555113pt;}
.yba{bottom:163.378549pt;}
.y14f{bottom:164.315080pt;}
.y54{bottom:165.321050pt;}
.y2f{bottom:167.858975pt;}
.y13a{bottom:173.194330pt;}
.y11c{bottom:173.194333pt;}
.ycd{bottom:173.194343pt;}
.y174{bottom:179.228110pt;}
.y106{bottom:179.644949pt;}
.y195{bottom:185.399795pt;}
.y53{bottom:187.329342pt;}
.ye6{bottom:189.793609pt;}
.y2e{bottom:189.867267pt;}
.y81{bottom:190.995815pt;}
.y15d{bottom:191.276601pt;}
.yb9{bottom:192.389480pt;}
.y6c{bottom:192.444389pt;}
.y97{bottom:193.566797pt;}
.y14e{bottom:195.326764pt;}
.yf3{bottom:202.922399pt;}
.y139{bottom:204.206015pt;}
.y11b{bottom:204.206018pt;}
.ycc{bottom:204.206027pt;}
.y173{bottom:210.239795pt;}
.y105{bottom:210.656634pt;}
.y2d{bottom:211.875559pt;}
.y194{bottom:214.410725pt;}
.ye5{bottom:220.805294pt;}
.yb8{bottom:221.400410pt;}
.y80{bottom:222.007500pt;}
.y15c{bottom:222.288286pt;}
.y6b{bottom:223.456073pt;}
.y96{bottom:224.578482pt;}
.y14d{bottom:226.338449pt;}
.y52{bottom:231.345927pt;}
.y2c{bottom:233.883852pt;}
.yf2{bottom:233.934083pt;}
.y138{bottom:235.217699pt;}
.y11a{bottom:235.217702pt;}
.ycb{bottom:235.217712pt;}
.y19c{bottom:241.251479pt;}
.y104{bottom:241.668318pt;}
.y193{bottom:243.421656pt;}
.yb7{bottom:250.411341pt;}
.ye4{bottom:251.816978pt;}
.y7f{bottom:253.019184pt;}
.y15b{bottom:253.299970pt;}
.y51{bottom:253.354219pt;}
.y6a{bottom:254.467758pt;}
.y95{bottom:255.590166pt;}
.y2b{bottom:255.892144pt;}
.y14c{bottom:257.350133pt;}
.yf1{bottom:264.945768pt;}
.y137{bottom:266.229383pt;}
.y119{bottom:266.229387pt;}
.yca{bottom:266.229396pt;}
.y172{bottom:272.263164pt;}
.y192{bottom:272.432587pt;}
.y103{bottom:272.680003pt;}
.y50{bottom:275.362511pt;}
.y2a{bottom:277.900436pt;}
.yb6{bottom:279.422272pt;}
.ye3{bottom:282.828663pt;}
.y7e{bottom:284.030869pt;}
.y15a{bottom:284.311655pt;}
.y69{bottom:285.479442pt;}
.y94{bottom:286.601850pt;}
.y14b{bottom:288.361818pt;}
.yf0{bottom:295.957452pt;}
.y136{bottom:297.241068pt;}
.y118{bottom:297.241071pt;}
.yc9{bottom:297.241081pt;}
.y4f{bottom:297.370803pt;}
.y29{bottom:299.908728pt;}
.y191{bottom:301.443517pt;}
.y171{bottom:303.274848pt;}
.y102{bottom:303.691687pt;}
.yb5{bottom:308.433202pt;}
.ye2{bottom:313.840347pt;}
.y7d{bottom:315.042553pt;}
.y159{bottom:315.323339pt;}
.y68{bottom:316.491127pt;}
.y93{bottom:317.613535pt;}
.y14a{bottom:319.373502pt;}
.y4e{bottom:319.379095pt;}
.y28{bottom:321.917021pt;}
.y135{bottom:328.252752pt;}
.y117{bottom:328.252756pt;}
.yc8{bottom:328.252765pt;}
.y190{bottom:330.454448pt;}
.y170{bottom:334.286533pt;}
.y101{bottom:334.703372pt;}
.yb4{bottom:337.444133pt;}
.y4d{bottom:341.387388pt;}
.y27{bottom:343.925313pt;}
.ye1{bottom:344.852032pt;}
.y7c{bottom:346.054238pt;}
.y158{bottom:346.335024pt;}
.y67{bottom:347.502811pt;}
.y92{bottom:348.625219pt;}
.y149{bottom:350.385187pt;}
.yef{bottom:357.980821pt;}
.y134{bottom:359.264437pt;}
.y116{bottom:359.264440pt;}
.yc7{bottom:359.264450pt;}
.y18f{bottom:359.465379pt;}
.y4c{bottom:363.395680pt;}
.y16f{bottom:365.298217pt;}
.y100{bottom:365.715056pt;}
.y26{bottom:365.933605pt;}
.yb3{bottom:366.455063pt;}
.ye0{bottom:375.863716pt;}
.y7b{bottom:377.065922pt;}
.y157{bottom:377.346708pt;}
.y66{bottom:378.514496pt;}
.y91{bottom:379.636904pt;}
.y148{bottom:381.396871pt;}
.y25{bottom:387.941897pt;}
.y18e{bottom:388.476309pt;}
.yee{bottom:388.992505pt;}
.y133{bottom:390.276121pt;}
.y115{bottom:390.276125pt;}
.yc6{bottom:390.276134pt;}
.yb2{bottom:395.465994pt;}
.y19b{bottom:396.309902pt;}
.yff{bottom:396.726741pt;}
.ydf{bottom:406.875401pt;}
.y7a{bottom:408.077607pt;}
.y156{bottom:408.358393pt;}
.y65{bottom:409.526180pt;}
.y90{bottom:410.648588pt;}
.y147{bottom:412.408556pt;}
.y18d{bottom:417.487240pt;}
.yed{bottom:420.004190pt;}
.y132{bottom:421.287806pt;}
.y114{bottom:421.287809pt;}
.yc5{bottom:421.287819pt;}
.y4b{bottom:421.417541pt;}
.yb1{bottom:424.476925pt;}
.y16e{bottom:427.321586pt;}
.yfe{bottom:427.738425pt;}
.y24{bottom:431.958482pt;}
.yde{bottom:437.887085pt;}
.y79{bottom:439.089291pt;}
.y155{bottom:439.370077pt;}
.y64{bottom:440.537865pt;}
.y8f{bottom:441.660273pt;}
.y146{bottom:443.420240pt;}
.y18c{bottom:446.498171pt;}
.yec{bottom:451.015874pt;}
.y131{bottom:452.299490pt;}
.y113{bottom:452.299493pt;}
.yc4{bottom:452.299503pt;}
.yb0{bottom:453.487855pt;}
.y23{bottom:453.966774pt;}
.y16d{bottom:458.333271pt;}
.yfd{bottom:458.750110pt;}
.ydd{bottom:468.898770pt;}
.y78{bottom:470.100976pt;}
.y154{bottom:470.381762pt;}
.y8e{bottom:472.671957pt;}
.y145{bottom:474.431925pt;}
.y4a{bottom:474.437518pt;}
.y18b{bottom:475.509101pt;}
.yeb{bottom:482.027559pt;}
.yaf{bottom:482.498786pt;}
.y130{bottom:483.311175pt;}
.y112{bottom:483.311178pt;}
.yc3{bottom:483.311188pt;}
.y16c{bottom:489.344955pt;}
.yfc{bottom:489.761794pt;}
.y49{bottom:496.445810pt;}
.y22{bottom:497.983358pt;}
.ydc{bottom:499.910454pt;}
.y77{bottom:501.112660pt;}
.y153{bottom:501.393446pt;}
.y8d{bottom:503.683642pt;}
.y18a{bottom:504.520032pt;}
.y144{bottom:505.443609pt;}
.yae{bottom:511.509717pt;}
.y12f{bottom:514.322859pt;}
.y111{bottom:514.322862pt;}
.yc2{bottom:514.322872pt;}
.y48{bottom:518.454102pt;}
.y21{bottom:519.991650pt;}
.y16b{bottom:520.356639pt;}
.yfb{bottom:520.773478pt;}
.ydb{bottom:530.922139pt;}
.y76{bottom:532.124345pt;}
.y189{bottom:533.530962pt;}
.y8c{bottom:534.695326pt;}
.y143{bottom:536.455293pt;}
.y47{bottom:540.462394pt;}
.yad{bottom:540.520647pt;}
.y20{bottom:541.999943pt;}
.y12e{bottom:545.334544pt;}
.y110{bottom:545.334547pt;}
.yc1{bottom:545.334556pt;}
.y19a{bottom:551.368324pt;}
.yfa{bottom:551.785163pt;}
.yda{bottom:561.933823pt;}
.y46{bottom:562.470687pt;}
.y188{bottom:562.541893pt;}
.y75{bottom:563.136029pt;}
.y1f{bottom:564.008235pt;}
.y8b{bottom:565.707011pt;}
.y142{bottom:567.466978pt;}
.yac{bottom:569.531578pt;}
.y12d{bottom:576.346228pt;}
.y10f{bottom:576.346231pt;}
.yc0{bottom:576.346241pt;}
.y16a{bottom:582.380008pt;}
.yf9{bottom:582.796847pt;}
.y45{bottom:584.478979pt;}
.y1e{bottom:586.016527pt;}
.y187{bottom:591.552824pt;}
.yd9{bottom:592.945507pt;}
.y74{bottom:594.147713pt;}
.y8a{bottom:596.718695pt;}
.y141{bottom:598.478662pt;}
.yab{bottom:598.542509pt;}
.y44{bottom:606.487271pt;}
.y12c{bottom:607.357913pt;}
.y10e{bottom:607.357916pt;}
.ybf{bottom:607.357925pt;}
.y1d{bottom:608.024819pt;}
.y169{bottom:613.391693pt;}
.yf8{bottom:613.808532pt;}
.y186{bottom:620.563754pt;}
.yd8{bottom:623.957192pt;}
.y73{bottom:625.159398pt;}
.yaa{bottom:627.553439pt;}
.y89{bottom:627.730380pt;}
.y43{bottom:628.495563pt;}
.y140{bottom:629.490347pt;}
.y1c{bottom:630.033111pt;}
.y12b{bottom:638.369597pt;}
.y10d{bottom:638.369600pt;}
.ybe{bottom:638.369610pt;}
.y168{bottom:644.403377pt;}
.yf7{bottom:644.820216pt;}
.y185{bottom:649.574685pt;}
.y1b{bottom:652.041404pt;}
.yd7{bottom:654.968876pt;}
.y72{bottom:656.171082pt;}
.ya9{bottom:656.564370pt;}
.y88{bottom:658.742064pt;}
.y13f{bottom:660.502031pt;}
.y12a{bottom:669.381282pt;}
.y10c{bottom:669.381285pt;}
.y42{bottom:672.512148pt;}
.y167{bottom:675.415062pt;}
.yf6{bottom:675.831901pt;}
.y184{bottom:678.585616pt;}
.ya8{bottom:685.575300pt;}
.yd6{bottom:685.980561pt;}
.y71{bottom:687.182767pt;}
.y87{bottom:689.753749pt;}
.y41{bottom:694.520440pt;}
.y1a{bottom:696.057988pt;}
.y129{bottom:700.392966pt;}
.y10b{bottom:700.392969pt;}
.yf5{bottom:706.843585pt;}
.y183{bottom:707.596546pt;}
.ya7{bottom:714.586231pt;}
.y40{bottom:716.528732pt;}
.yd5{bottom:716.992245pt;}
.y19{bottom:718.066280pt;}
.y70{bottom:718.194451pt;}
.y128{bottom:731.404650pt;}
.y10a{bottom:731.404654pt;}
.y182{bottom:736.607477pt;}
.y166{bottom:737.438431pt;}
.yf4{bottom:737.855270pt;}
.y3f{bottom:738.537024pt;}
.y63{bottom:738.641313pt;}
.y18{bottom:740.074572pt;}
.ya6{bottom:743.597162pt;}
.yd4{bottom:748.003930pt;}
.y6f{bottom:749.206136pt;}
.y3e{bottom:760.545316pt;}
.y17{bottom:762.082865pt;}
.y127{bottom:762.416335pt;}
.y109{bottom:762.416338pt;}
.y181{bottom:765.618407pt;}
.y165{bottom:768.450115pt;}
.y62{bottom:769.652997pt;}
.ya5{bottom:772.608092pt;}
.yd3{bottom:779.015614pt;}
.y6e{bottom:779.217443pt;}
.y3d{bottom:782.553609pt;}
.y16{bottom:784.091157pt;}
.y126{bottom:793.428019pt;}
.y108{bottom:793.428023pt;}
.y180{bottom:794.629338pt;}
.y164{bottom:799.461800pt;}
.y61{bottom:800.664682pt;}
.ya4{bottom:801.619023pt;}
.y3c{bottom:804.561901pt;}
.y15{bottom:806.099449pt;}
.yd2{bottom:810.027299pt;}
.y17f{bottom:823.640269pt;}
.y125{bottom:824.439704pt;}
.y14{bottom:828.107741pt;}
.y163{bottom:830.473484pt;}
.ya3{bottom:830.629954pt;}
.y60{bottom:831.676366pt;}
.y3b{bottom:848.578485pt;}
.y17e{bottom:852.651199pt;}
.y124{bottom:855.451388pt;}
.ya2{bottom:859.640884pt;}
.y162{bottom:861.485169pt;}
.y5f{bottom:862.688050pt;}
.y3a{bottom:870.586777pt;}
.y13{bottom:872.124326pt;}
.y17d{bottom:881.662130pt;}
.y123{bottom:886.463073pt;}
.ya1{bottom:888.651815pt;}
.y39{bottom:892.595070pt;}
.y5e{bottom:893.699735pt;}
.y12{bottom:894.132618pt;}
.y17c{bottom:910.673061pt;}
.y38{bottom:914.603362pt;}
.y11{bottom:916.140910pt;}
.y122{bottom:917.474757pt;}
.ya0{bottom:917.662745pt;}
.y5d{bottom:924.711419pt;}
.y37{bottom:936.611654pt;}
.y10{bottom:938.149202pt;}
.y17b{bottom:939.683991pt;}
.y9f{bottom:946.673676pt;}
.y121{bottom:948.486442pt;}
.ya{bottom:953.751505pt;}
.y5c{bottom:955.723104pt;}
.y36{bottom:958.619946pt;}
.yf{bottom:960.157494pt;}
.y17a{bottom:968.694922pt;}
.y9e{bottom:975.684607pt;}
.y35{bottom:980.628239pt;}
.y9{bottom:981.762059pt;}
.ye{bottom:982.165787pt;}
.y5b{bottom:986.734788pt;}
.y179{bottom:997.705853pt;}
.yd{bottom:1004.174079pt;}
.y9d{bottom:1004.695537pt;}
.y8{bottom:1009.772613pt;}
.y5a{bottom:1017.746473pt;}
.y178{bottom:1026.716783pt;}
.y9c{bottom:1033.706468pt;}
.y34{bottom:1038.650100pt;}
.y7{bottom:1039.783920pt;}
.y59{bottom:1048.758157pt;}
.yc{bottom:1051.191794pt;}
.y177{bottom:1055.727714pt;}
.y9b{bottom:1062.717399pt;}
.y6{bottom:1073.796735pt;}
.yb{bottom:1085.204609pt;}
.h12{height:40.525972pt;}
.hd{height:48.643328pt;}
.h4{height:56.427511pt;}
.hc{height:60.585327pt;}
.h10{height:64.847636pt;}
.hf{height:68.891113pt;}
.hb{height:72.934589pt;}
.h7{height:75.217872pt;}
.h5{height:75.731659pt;}
.h3{height:76.028646pt;}
.h11{height:80.767814pt;}
.he{height:85.803970pt;}
.ha{height:90.877991pt;}
.h8{height:91.234375pt;}
.h9{height:100.950301pt;}
.h6{height:101.346185pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:18.535888pt;}
.x1b{left:35.135191pt;}
.x29{left:36.241807pt;}
.xf{left:41.737408pt;}
.x2c{left:46.999187pt;}
.x13{left:52.553983pt;}
.x27{left:58.814036pt;}
.x31{left:60.034141pt;}
.x22{left:61.458957pt;}
.x2e{left:70.297408pt;}
.x5{left:75.245058pt;}
.xc{left:76.953802pt;}
.x14{left:78.324040pt;}
.x1d{left:79.399997pt;}
.xb{left:95.492037pt;}
.x24{left:104.603442pt;}
.x30{left:111.076264pt;}
.x1{left:114.369174pt;}
.x15{left:119.824051pt;}
.x19{left:134.813373pt;}
.x1f{left:139.407933pt;}
.x3{left:149.694984pt;}
.x28{left:217.294404pt;}
.x7{left:225.259685pt;}
.x21{left:234.070874pt;}
.x1a{left:235.945232pt;}
.x25{left:244.587235pt;}
.x33{left:248.902916pt;}
.x20{left:254.309649pt;}
.x34{left:260.233761pt;}
.x32{left:261.984420pt;}
.x17{left:268.880212pt;}
.x18{left:274.194714pt;}
.x2f{left:277.607759pt;}
.x2d{left:281.924024pt;}
.x26{left:285.790185pt;}
.x10{left:318.592239pt;}
.x23{left:325.170927pt;}
.x1c{left:340.748467pt;}
.x11{left:341.700952pt;}
.x12{left:351.161944pt;}
.x8{left:376.969692pt;}
.x1e{left:380.795763pt;}
.x9{left:389.581011pt;}
.x2b{left:396.999983pt;}
.x35{left:505.263576pt;}
.xa{left:560.245270pt;}
.x2a{left:571.987795pt;}
.x4{left:637.910182pt;}
.x2{left:673.235992pt;}
.xd{left:698.320243pt;}
.xe{left:707.781205pt;}
.x6{left:712.375739pt;}
}




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