
    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_100f5717dd04fe84a06b6389.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_09fff7f9280815ac99904f60.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.683105;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_90055e033a6766da490e42de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919434;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_4c5db937bd98f7a3853ce43c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_280459775e4513b644c65c79.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_9d50d2219a992df59d9e116e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.707031;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_668d21f70f829a95055dbec4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_107f746dcfeb80d96b6354ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_210862578b24cd4b9c99b629.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_9c0791d2f5d28de07d616c43.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851562;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_528123f4e9b5c0cb52d0e00a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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_778002db0002757c1372896e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999512;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_e654095993ff571dcdb8870c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.999512;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_2315f5958abd09dbef4f5e86.woff2')format("woff");}.fff{font-family:fff;line-height:0.999512;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_40d452ebd9bafbe430facfc2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_ef0f8ba85de417b28791a373.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_e46df56ef535d068045ca3ec.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_e0035db8008f5611c32c6ae6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-33.120000px;}
.v8{vertical-align:-18.000000px;}
.v6{vertical-align:-9.360000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.147699px;}
.v9{vertical-align:9.360000px;}
.v2{vertical-align:16.282982px;}
.v3{vertical-align:33.120000px;}
.v7{vertical-align:38.880000px;}
.ls9{letter-spacing:-1.656000px;}
.ls16{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.223200px;}
.ls18{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.109200px;}
.ls24{letter-spacing:-0.085200px;}
.ls1b{letter-spacing:-0.043200px;}
.ls23{letter-spacing:-0.020880px;}
.ls2{letter-spacing:-0.014346px;}
.ls3{letter-spacing:-0.007173px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.014346px;}
.ls1a{letter-spacing:0.018720px;}
.lsa{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.284400px;}
.ls1e{letter-spacing:0.306600px;}
.ls21{letter-spacing:0.312000px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.792000px;}
.ls12{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.188000px;}
.lsd{letter-spacing:1.440000px;}
.lse{letter-spacing:5.040000px;}
.lsf{letter-spacing:8.640000px;}
.ls13{letter-spacing:20.160000px;}
.ls10{letter-spacing:20.880000px;}
.ls19{letter-spacing:28.908000px;}
.ls6{letter-spacing:55.745280px;}
.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;}
}
.ws12{word-spacing:-66.240000px;}
.ws26{word-spacing:-59.760000px;}
.ws1a{word-spacing:-18.792000px;}
.ws19{word-spacing:-18.504000px;}
.ws1e{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws11{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.856000px;}
.ws1f{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.712000px;}
.ws20{word-spacing:-17.280000px;}
.ws1c{word-spacing:-17.064000px;}
.ws17{word-spacing:-16.344000px;}
.ws24{word-spacing:-16.128000px;}
.ws1d{word-spacing:-15.552000px;}
.ws2a{word-spacing:-15.300000px;}
.ws25{word-spacing:-15.246600px;}
.ws29{word-spacing:-15.120000px;}
.ws23{word-spacing:-14.940000px;}
.ws27{word-spacing:-14.733600px;}
.ws22{word-spacing:-13.204800px;}
.ws1b{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.240000px;}
.wsf{word-spacing:-12.060000px;}
.ws2c{word-spacing:-10.897200px;}
.ws2b{word-spacing:-10.612800px;}
.ws2d{word-spacing:-10.591920px;}
.ws2e{word-spacing:-10.527600px;}
.ws28{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.187200px;}
.ws21{word-spacing:-8.352000px;}
.ws4{word-spacing:-0.071731px;}
.wse{word-spacing:0.000000px;}
.ws8{word-spacing:10.530140px;}
.ws7{word-spacing:11.548723px;}
.wsb{word-spacing:13.865641px;}
.ws3{word-spacing:16.770755px;}
.ws1{word-spacing:17.861069px;}
.ws2{word-spacing:17.889761px;}
.wsd{word-spacing:18.327322px;}
.wsc{word-spacing:20.859433px;}
.wsa{word-spacing:22.738790px;}
.ws9{word-spacing:23.434583px;}
.ws0{word-spacing:23.814659px;}
.ws6{word-spacing:500.511621px;}
.ws5{word-spacing:540.336783px;}
._6{margin-left:-5.738496px;}
._3{margin-left:-4.318218px;}
._0{margin-left:-2.510592px;}
._1{margin-left:-1.291162px;}
._b{width:1.195162px;}
._15{width:2.676269px;}
._10{width:3.888000px;}
._11{width:4.968000px;}
._18{width:6.316838px;}
._1c{width:7.968000px;}
._f{width:9.096000px;}
._e{width:10.152000px;}
._19{width:11.280000px;}
._c{width:12.504000px;}
._d{width:13.512000px;}
._16{width:15.264000px;}
._17{width:16.632000px;}
._26{width:19.296000px;}
._12{width:20.808000px;}
._13{width:22.142515px;}
._14{width:23.592000px;}
._a{width:25.507615px;}
._20{width:27.029791px;}
._22{width:28.212687px;}
._23{width:29.388000px;}
._4{width:30.722473px;}
._1e{width:32.352000px;}
._2{width:33.677798px;}
._1f{width:34.813478px;}
._29{width:35.851162px;}
._1d{width:36.936000px;}
._21{width:38.064000px;}
._1b{width:39.348000px;}
._1a{width:40.368000px;}
._2d{width:41.646970px;}
._24{width:42.648000px;}
._25{width:43.800000px;}
._2e{width:55.440000px;}
._2f{width:56.479162px;}
._2b{width:57.816000px;}
._2c{width:59.292000px;}
._2a{width:67.944000px;}
._27{width:70.848000px;}
._28{width:92.083162px;}
._9{width:219.856128px;}
._7{width:226.326282px;}
._8{width:262.084285px;}
._5{width:337.402045px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:95.641200px;}
.fs8{font-size:95.760000px;}
.y9d{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y10c{bottom:2.700000px;}
.y110{bottom:2.880000px;}
.yb9{bottom:3.420000px;}
.ybe{bottom:3.780000px;}
.ya8{bottom:4.125000px;}
.y19{bottom:4.320000px;}
.y9a{bottom:4.665000px;}
.y77{bottom:4.680000px;}
.y91{bottom:5.220000px;}
.y95{bottom:6.660000px;}
.y8c{bottom:7.380000px;}
.y7d{bottom:8.100000px;}
.y10d{bottom:9.720000px;}
.y111{bottom:9.945000px;}
.ybc{bottom:12.060000px;}
.y75{bottom:14.760000px;}
.y104{bottom:15.300000px;}
.y10b{bottom:16.740000px;}
.y10f{bottom:16.965000px;}
.y8d{bottom:17.460000px;}
.y7a{bottom:18.180000px;}
.y105{bottom:20.340000px;}
.ybb{bottom:20.700000px;}
.y106{bottom:21.240000px;}
.ya7{bottom:22.485000px;}
.y84{bottom:23.940000px;}
.y107{bottom:24.300000px;}
.y108{bottom:24.660000px;}
.y76{bottom:24.840000px;}
.y98{bottom:24.870000px;}
.y103{bottom:25.200000px;}
.y8f{bottom:25.380000px;}
.y93{bottom:26.820000px;}
.y8b{bottom:27.570000px;}
.y7b{bottom:28.260000px;}
.ya2{bottom:29.685000px;}
.y9f{bottom:31.485000px;}
.y109{bottom:31.680000px;}
.y100{bottom:33.480000px;}
.y85{bottom:34.020000px;}
.y101{bottom:35.640000px;}
.y88{bottom:37.080000px;}
.y80{bottom:37.665000px;}
.y79{bottom:38.340000px;}
.y102{bottom:39.960000px;}
.ya6{bottom:40.665000px;}
.y9c{bottom:41.565000px;}
.yff{bottom:43.560000px;}
.y83{bottom:44.100000px;}
.y99{bottom:45.030000px;}
.y90{bottom:45.360000px;}
.y94{bottom:46.980000px;}
.y89{bottom:47.160000px;}
.y81{bottom:47.745000px;}
.y7c{bottom:48.240000px;}
.ya1{bottom:49.485000px;}
.y9e{bottom:51.645000px;}
.y87{bottom:57.240000px;}
.y7f{bottom:57.825000px;}
.ya5{bottom:59.025000px;}
.ya4{bottom:77.385000px;}
.ya3{bottom:95.745000px;}
.yfd{bottom:128.160000px;}
.yaa{bottom:133.740000px;}
.y57{bottom:140.256000px;}
.y6f{bottom:146.556000px;}
.y3e{bottom:146.916000px;}
.yfc{bottom:149.436000px;}
.ya9{bottom:154.470000px;}
.yfb{bottom:170.490000px;}
.ya0{bottom:174.465000px;}
.y56{bottom:181.650000px;}
.y3d{bottom:187.950000px;}
.y41{bottom:188.310000px;}
.yfa{bottom:191.550000px;}
.yf9{bottom:212.610000px;}
.y55{bottom:223.050000px;}
.y3c{bottom:229.710000px;}
.yf8{bottom:233.850000px;}
.yf7{bottom:254.910000px;}
.y68{bottom:264.270000px;}
.y54{bottom:266.610000px;}
.y3b{bottom:270.750000px;}
.y40{bottom:271.110000px;}
.yf6{bottom:275.970000px;}
.y9b{bottom:285.525000px;}
.yf5{bottom:297.030000px;}
.y67{bottom:305.310000px;}
.y53{bottom:308.010000px;}
.y3a{bottom:312.150000px;}
.y3f{bottom:312.510000px;}
.yf4{bottom:318.270000px;}
.yf3{bottom:339.330000px;}
.y66{bottom:346.710000px;}
.y52{bottom:349.410000px;}
.y39{bottom:353.910000px;}
.yf2{bottom:360.390000px;}
.y97{bottom:380.565000px;}
.yf1{bottom:381.450000px;}
.yb7{bottom:384.690000px;}
.y65{bottom:388.155000px;}
.y51{bottom:390.855000px;}
.y38{bottom:395.355000px;}
.yf0{bottom:402.735000px;}
.yb6{bottom:405.615000px;}
.y16{bottom:411.918728px;}
.yb5{bottom:422.895000px;}
.yef{bottom:423.795000px;}
.y64{bottom:429.555000px;}
.y50{bottom:432.255000px;}
.y15{bottom:432.840926px;}
.y73{bottom:436.395000px;}
.y37{bottom:436.755000px;}
.yb4{bottom:440.175000px;}
.y96{bottom:442.155000px;}
.yee{bottom:444.855000px;}
.y14{bottom:453.763123px;}
.yed{bottom:465.915000px;}
.y63{bottom:470.955000px;}
.y4f{bottom:473.655000px;}
.y13{bottom:474.685321px;}
.yb3{bottom:477.075000px;}
.y36{bottom:478.155000px;}
.yec{bottom:486.975000px;}
.y92{bottom:490.575000px;}
.y12{bottom:495.607519px;}
.yb2{bottom:505.335000px;}
.yeb{bottom:508.215000px;}
.y62{bottom:512.715000px;}
.y11{bottom:516.529717px;}
.y4e{bottom:517.215000px;}
.y35{bottom:519.555000px;}
.yea{bottom:529.275000px;}
.yb1{bottom:533.055000px;}
.ye9{bottom:550.335000px;}
.y61{bottom:554.115000px;}
.y10{bottom:555.156968px;}
.y8e{bottom:556.275000px;}
.y4d{bottom:558.615000px;}
.y6e{bottom:560.595000px;}
.y28{bottom:560.955000px;}
.ye8{bottom:571.395000px;}
.yf{bottom:576.079166px;}
.yb0{bottom:586.515000px;}
.ye7{bottom:592.635000px;}
.y60{bottom:595.515000px;}
.ye{bottom:597.001363px;}
.y4c{bottom:600.015000px;}
.y6d{bottom:601.995000px;}
.y27{bottom:602.355000px;}
.ycd{bottom:603.255000px;}
.ye6{bottom:613.695000px;}
.y8a{bottom:618.735000px;}
.ycc{bottom:621.255000px;}
.ye5{bottom:634.755000px;}
.y5f{bottom:636.555000px;}
.ycb{bottom:639.285000px;}
.yd{bottom:640.339561px;}
.y4b{bottom:641.445000px;}
.y6c{bottom:643.425000px;}
.y26{bottom:643.785000px;}
.ye4{bottom:655.845000px;}
.yca{bottom:657.285000px;}
.yc{bottom:661.261759px;}
.y86{bottom:665.565000px;}
.yc9{bottom:675.285000px;}
.ye3{bottom:677.085000px;}
.y5e{bottom:677.985000px;}
.yb{bottom:682.183957px;}
.y4a{bottom:682.845000px;}
.y6b{bottom:684.825000px;}
.y25{bottom:685.185000px;}
.yc8{bottom:693.285000px;}
.ye2{bottom:698.145000px;}
.yc7{bottom:711.285000px;}
.ye1{bottom:719.205000px;}
.y5d{bottom:719.745000px;}
.ya{bottom:721.038954px;}
.y49{bottom:724.245000px;}
.y69{bottom:726.225000px;}
.y24{bottom:726.585000px;}
.yc6{bottom:731.985000px;}
.ye0{bottom:740.265000px;}
.y5c{bottom:761.145000px;}
.ydf{bottom:761.505000px;}
.y9{bottom:762.881557px;}
.y48{bottom:765.645000px;}
.y45{bottom:767.625000px;}
.y23{bottom:767.985000px;}
.yc5{bottom:769.785000px;}
.y82{bottom:772.125000px;}
.yde{bottom:782.565000px;}
.y8{bottom:783.803754px;}
.yaf{bottom:797.325000px;}
.y5b{bottom:802.545000px;}
.ydd{bottom:803.625000px;}
.y7{bottom:804.725952px;}
.y47{bottom:806.685000px;}
.y44{bottom:809.025000px;}
.y22{bottom:809.385000px;}
.ydc{bottom:824.685000px;}
.yae{bottom:834.405000px;}
.ydb{bottom:845.925000px;}
.y5a{bottom:846.285000px;}
.y6{bottom:846.568554px;}
.y46{bottom:848.445000px;}
.y43{bottom:850.425000px;}
.y21{bottom:850.785000px;}
.y7e{bottom:852.225000px;}
.yc4{bottom:859.785000px;}
.yda{bottom:866.985000px;}
.y5{bottom:867.490752px;}
.yc3{bottom:877.785000px;}
.y10e{bottom:879.405000px;}
.yd9{bottom:888.090000px;}
.y59{bottom:889.890000px;}
.y72{bottom:891.870000px;}
.y34{bottom:892.230000px;}
.yc2{bottom:895.830000px;}
.y31{bottom:896.370000px;}
.y20{bottom:900.510000px;}
.y10a{bottom:908.430000px;}
.yd8{bottom:909.150000px;}
.y4{bottom:909.333354px;}
.yc1{bottom:913.830000px;}
.yd7{bottom:930.210000px;}
.y3{bottom:930.255552px;}
.yc0{bottom:931.830000px;}
.y71{bottom:933.270000px;}
.y1f{bottom:933.630000px;}
.yfe{bottom:937.230000px;}
.y30{bottom:945.330000px;}
.ybf{bottom:949.830000px;}
.y2{bottom:951.177750px;}
.yd6{bottom:951.450000px;}
.y78{bottom:959.730000px;}
.ybd{bottom:967.830000px;}
.yd5{bottom:972.510000px;}
.y58{bottom:974.670000px;}
.y1e{bottom:975.030000px;}
.yba{bottom:988.530000px;}
.y2f{bottom:993.030000px;}
.yd4{bottom:993.570000px;}
.y2e{bottom:1012.470000px;}
.y1{bottom:1013.942400px;}
.yd3{bottom:1014.630000px;}
.y70{bottom:1016.070000px;}
.y33{bottom:1016.430000px;}
.y1d{bottom:1024.710000px;}
.yb8{bottom:1026.330000px;}
.y74{bottom:1030.290000px;}
.y2d{bottom:1032.990000px;}
.yd2{bottom:1035.870000px;}
.y2c{bottom:1053.870000px;}
.yd1{bottom:1056.930000px;}
.y6a{bottom:1057.470000px;}
.y1c{bottom:1057.830000px;}
.y2b{bottom:1074.030000px;}
.yad{bottom:1079.430000px;}
.y2a{bottom:1093.470000px;}
.yd0{bottom:1096.170000px;}
.y1b{bottom:1098.870000px;}
.y32{bottom:1099.230000px;}
.yac{bottom:1106.970000px;}
.ycf{bottom:1119.030000px;}
.yab{bottom:1134.690000px;}
.yce{bottom:1139.760000px;}
.y1a{bottom:1140.300000px;}
.y42{bottom:1140.660000px;}
.y29{bottom:1141.200000px;}
.y18{bottom:1188.720000px;}
.y17{bottom:1192.860000px;}
.h2c{height:17.280000px;}
.h2f{height:17.316000px;}
.h8{height:21.240000px;}
.h32{height:28.080000px;}
.h33{height:28.296000px;}
.h31{height:33.824531px;}
.h2e{height:34.560000px;}
.h13{height:40.305000px;}
.h28{height:45.432773px;}
.h1b{height:45.570000px;}
.h1c{height:45.576000px;}
.hf{height:46.316250px;}
.he{height:46.445625px;}
.h21{height:47.145000px;}
.h22{height:47.151000px;}
.hb{height:47.344922px;}
.h2{height:49.350225px;}
.h14{height:50.359219px;}
.h7{height:50.484375px;}
.h3{height:50.497924px;}
.h2b{height:58.651172px;}
.h2d{height:60.226875px;}
.h23{height:60.501000px;}
.h1d{height:61.365000px;}
.h1e{height:61.371000px;}
.h12{height:64.546875px;}
.h1f{height:64.605000px;}
.h20{height:64.611000px;}
.h4{height:65.633207px;}
.h1{height:65.800025px;}
.h15{height:67.125000px;}
.h16{height:67.131000px;}
.h10{height:69.086250px;}
.hc{height:70.664062px;}
.h9{height:72.562500px;}
.h29{height:75.093750px;}
.h19{height:79.020000px;}
.ha{height:80.464922px;}
.h24{height:93.945000px;}
.h25{height:93.955500px;}
.h30{height:95.580000px;}
.h2a{height:99.874688px;}
.h1a{height:105.300000px;}
.h17{height:106.402500px;}
.h18{height:106.416000px;}
.h11{height:109.544063px;}
.h26{height:109.965000px;}
.h27{height:109.975500px;}
.h36{height:229.500000px;}
.hd{height:810.000000px;}
.h34{height:888.000000px;}
.h35{height:943.500000px;}
.h0{height:1188.000000px;}
.h6{height:1263.000000px;}
.h5{height:1263.060000px;}
.w18{width:-208.155000px;}
.wf{width:-91.290000px;}
.w3{width:10.080000px;}
.w17{width:16.380000px;}
.w12{width:16.920000px;}
.w5{width:19.980000px;}
.w1d{width:37.800000px;}
.w1f{width:37.836000px;}
.w1c{width:37.980000px;}
.w1e{width:38.016000px;}
.wa{width:61.776000px;}
.w20{width:90.936000px;}
.w1b{width:91.296000px;}
.w16{width:93.600000px;}
.w13{width:95.796000px;}
.w1a{width:96.336000px;}
.w11{width:97.560000px;}
.w19{width:103.896000px;}
.w14{width:104.256000px;}
.w15{width:104.400000px;}
.we{width:110.700000px;}
.w10{width:112.356000px;}
.w8{width:144.381000px;}
.w9{width:144.570000px;}
.w7{width:145.656000px;}
.wc{width:200.955000px;}
.w6{width:201.079500px;}
.wd{width:210.630000px;}
.wb{width:228.270000px;}
.w23{width:583.500000px;}
.w22{width:724.500000px;}
.w21{width:760.500000px;}
.w1{width:892.440000px;}
.w2{width:892.500000px;}
.w0{width:918.000000px;}
.w4{width:1080.000000px;}
.x0{left:0.000000px;}
.x44{left:7.920000px;}
.x27{left:9.000000px;}
.x1d{left:10.609500px;}
.x2e{left:11.880000px;}
.x1c{left:13.500000px;}
.x4a{left:14.760000px;}
.x3a{left:15.840000px;}
.x20{left:17.445000px;}
.x2a{left:19.249500px;}
.x22{left:21.060000px;}
.x4e{left:22.680000px;}
.x1a{left:24.465000px;}
.x55{left:26.460000px;}
.x26{left:27.885000px;}
.x45{left:29.520000px;}
.x3b{left:31.536000px;}
.x48{left:33.480000px;}
.x21{left:34.560000px;}
.x50{left:36.174000px;}
.x17{left:37.620000px;}
.x18{left:40.320000px;}
.x2f{left:41.400000px;}
.x35{left:42.840000px;}
.x4d{left:46.260000px;}
.x2d{left:48.043500px;}
.x23{left:50.023500px;}
.x31{left:53.100000px;}
.x4f{left:54.360000px;}
.x32{left:57.403500px;}
.x15{left:61.363500px;}
.x34{left:63.883500px;}
.x36{left:67.663500px;}
.x52{left:69.330000px;}
.x30{left:70.903500px;}
.x37{left:72.720000px;}
.x2b{left:75.223500px;}
.x24{left:76.303500px;}
.x28{left:77.563500px;}
.x51{left:79.194000px;}
.x3e{left:83.370000px;}
.x1e{left:85.843500px;}
.x53{left:92.385000px;}
.x40{left:93.780000px;}
.x3c{left:95.394000px;}
.x14{left:119.926500px;}
.x38{left:121.710000px;}
.x33{left:126.210000px;}
.x6{left:127.656000px;}
.x1f{left:130.350000px;}
.x29{left:131.430000px;}
.x2c{left:133.590000px;}
.x25{left:136.650000px;}
.x39{left:137.730000px;}
.x1{left:145.369200px;}
.xc{left:148.716000px;}
.xb{left:152.310000px;}
.x11{left:154.650000px;}
.x13{left:170.130000px;}
.x8{left:173.910000px;}
.xa{left:198.390000px;}
.x56{left:216.030000px;}
.xe{left:234.210000px;}
.x43{left:246.135000px;}
.x9{left:279.615000px;}
.x57{left:308.055000px;}
.x2{left:312.728849px;}
.x16{left:321.915000px;}
.x46{left:344.415000px;}
.x58{left:346.755000px;}
.x3d{left:364.755000px;}
.x59{left:385.275000px;}
.x10{left:398.055000px;}
.xd{left:417.165000px;}
.x4{left:419.850430px;}
.x5a{left:424.005000px;}
.xf{left:446.325000px;}
.x47{left:461.445000px;}
.x5b{left:462.705000px;}
.x19{left:468.300000px;}
.x54{left:469.365000px;}
.x5c{left:501.225000px;}
.x5d{left:539.925000px;}
.x3{left:549.330626px;}
.x3f{left:568.950000px;}
.x5e{left:578.490000px;}
.x1b{left:613.410000px;}
.x5f{left:617.190000px;}
.x5{left:655.987747px;}
.x49{left:674.070000px;}
.x12{left:745.200000px;}
.x7{left:755.100000px;}
.x41{left:781.740000px;}
.x4b{left:876.060000px;}
.x42{left:983.730000px;}
.x4c{left:1100.595000px;}
@media print{
.v4{vertical-align:-29.440000pt;}
.v8{vertical-align:-16.000000pt;}
.v6{vertical-align:-8.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.020177pt;}
.v9{vertical-align:8.320000pt;}
.v2{vertical-align:14.473762pt;}
.v3{vertical-align:29.440000pt;}
.v7{vertical-align:34.560000pt;}
.ls9{letter-spacing:-1.472000pt;}
.ls16{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.198400pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.097067pt;}
.ls24{letter-spacing:-0.075733pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls23{letter-spacing:-0.018560pt;}
.ls2{letter-spacing:-0.012752pt;}
.ls3{letter-spacing:-0.006376pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.012752pt;}
.ls1a{letter-spacing:0.016640pt;}
.lsa{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.252800pt;}
.ls1e{letter-spacing:0.272533pt;}
.ls21{letter-spacing:0.277333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.704000pt;}
.ls12{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.056000pt;}
.lsd{letter-spacing:1.280000pt;}
.lse{letter-spacing:4.480000pt;}
.lsf{letter-spacing:7.680000pt;}
.ls13{letter-spacing:17.920000pt;}
.ls10{letter-spacing:18.560000pt;}
.ls19{letter-spacing:25.696000pt;}
.ls6{letter-spacing:49.551360pt;}
.ws12{word-spacing:-58.880000pt;}
.ws26{word-spacing:-53.120000pt;}
.ws1a{word-spacing:-16.704000pt;}
.ws19{word-spacing:-16.448000pt;}
.ws1e{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws11{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.744000pt;}
.ws20{word-spacing:-15.360000pt;}
.ws1c{word-spacing:-15.168000pt;}
.ws17{word-spacing:-14.528000pt;}
.ws24{word-spacing:-14.336000pt;}
.ws1d{word-spacing:-13.824000pt;}
.ws2a{word-spacing:-13.600000pt;}
.ws25{word-spacing:-13.552533pt;}
.ws29{word-spacing:-13.440000pt;}
.ws23{word-spacing:-13.280000pt;}
.ws27{word-spacing:-13.096533pt;}
.ws22{word-spacing:-11.737600pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.880000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws2c{word-spacing:-9.686400pt;}
.ws2b{word-spacing:-9.433600pt;}
.ws2d{word-spacing:-9.415040pt;}
.ws2e{word-spacing:-9.357867pt;}
.ws28{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.166400pt;}
.ws21{word-spacing:-7.424000pt;}
.ws4{word-spacing:-0.063761pt;}
.wse{word-spacing:0.000000pt;}
.ws8{word-spacing:9.360125pt;}
.ws7{word-spacing:10.265532pt;}
.wsb{word-spacing:12.325014pt;}
.ws3{word-spacing:14.907337pt;}
.ws1{word-spacing:15.876506pt;}
.ws2{word-spacing:15.902010pt;}
.wsd{word-spacing:16.290953pt;}
.wsc{word-spacing:18.541718pt;}
.wsa{word-spacing:20.212258pt;}
.ws9{word-spacing:20.830740pt;}
.ws0{word-spacing:21.168586pt;}
.ws6{word-spacing:444.899219pt;}
.ws5{word-spacing:480.299363pt;}
._6{margin-left:-5.100885pt;}
._3{margin-left:-3.838416pt;}
._0{margin-left:-2.231637pt;}
._1{margin-left:-1.147699pt;}
._b{width:1.062366pt;}
._15{width:2.378906pt;}
._10{width:3.456000pt;}
._11{width:4.416000pt;}
._18{width:5.614967pt;}
._1c{width:7.082667pt;}
._f{width:8.085333pt;}
._e{width:9.024000pt;}
._19{width:10.026667pt;}
._c{width:11.114667pt;}
._d{width:12.010667pt;}
._16{width:13.568000pt;}
._17{width:14.784000pt;}
._26{width:17.152000pt;}
._12{width:18.496000pt;}
._13{width:19.682236pt;}
._14{width:20.970667pt;}
._a{width:22.673435pt;}
._20{width:24.026481pt;}
._22{width:25.077944pt;}
._23{width:26.122667pt;}
._4{width:27.308865pt;}
._1e{width:28.757333pt;}
._2{width:29.935821pt;}
._1f{width:30.945314pt;}
._29{width:31.867699pt;}
._1d{width:32.832000pt;}
._21{width:33.834667pt;}
._1b{width:34.976000pt;}
._1a{width:35.882667pt;}
._2d{width:37.019529pt;}
._24{width:37.909333pt;}
._25{width:38.933333pt;}
._2e{width:49.280000pt;}
._2f{width:50.203699pt;}
._2b{width:51.392000pt;}
._2c{width:52.704000pt;}
._2a{width:60.394667pt;}
._27{width:62.976000pt;}
._28{width:81.851699pt;}
._9{width:195.427669pt;}
._7{width:201.178918pt;}
._8{width:232.963809pt;}
._5{width:299.912929pt;}
.fs9{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:85.014400pt;}
.fs8{font-size:85.120000pt;}
.y9d{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y10c{bottom:2.400000pt;}
.y110{bottom:2.560000pt;}
.yb9{bottom:3.040000pt;}
.ybe{bottom:3.360000pt;}
.ya8{bottom:3.666667pt;}
.y19{bottom:3.840000pt;}
.y9a{bottom:4.146667pt;}
.y77{bottom:4.160000pt;}
.y91{bottom:4.640000pt;}
.y95{bottom:5.920000pt;}
.y8c{bottom:6.560000pt;}
.y7d{bottom:7.200000pt;}
.y10d{bottom:8.640000pt;}
.y111{bottom:8.840000pt;}
.ybc{bottom:10.720000pt;}
.y75{bottom:13.120000pt;}
.y104{bottom:13.600000pt;}
.y10b{bottom:14.880000pt;}
.y10f{bottom:15.080000pt;}
.y8d{bottom:15.520000pt;}
.y7a{bottom:16.160000pt;}
.y105{bottom:18.080000pt;}
.ybb{bottom:18.400000pt;}
.y106{bottom:18.880000pt;}
.ya7{bottom:19.986667pt;}
.y84{bottom:21.280000pt;}
.y107{bottom:21.600000pt;}
.y108{bottom:21.920000pt;}
.y76{bottom:22.080000pt;}
.y98{bottom:22.106667pt;}
.y103{bottom:22.400000pt;}
.y8f{bottom:22.560000pt;}
.y93{bottom:23.840000pt;}
.y8b{bottom:24.506667pt;}
.y7b{bottom:25.120000pt;}
.ya2{bottom:26.386667pt;}
.y9f{bottom:27.986667pt;}
.y109{bottom:28.160000pt;}
.y100{bottom:29.760000pt;}
.y85{bottom:30.240000pt;}
.y101{bottom:31.680000pt;}
.y88{bottom:32.960000pt;}
.y80{bottom:33.480000pt;}
.y79{bottom:34.080000pt;}
.y102{bottom:35.520000pt;}
.ya6{bottom:36.146667pt;}
.y9c{bottom:36.946667pt;}
.yff{bottom:38.720000pt;}
.y83{bottom:39.200000pt;}
.y99{bottom:40.026667pt;}
.y90{bottom:40.320000pt;}
.y94{bottom:41.760000pt;}
.y89{bottom:41.920000pt;}
.y81{bottom:42.440000pt;}
.y7c{bottom:42.880000pt;}
.ya1{bottom:43.986667pt;}
.y9e{bottom:45.906667pt;}
.y87{bottom:50.880000pt;}
.y7f{bottom:51.400000pt;}
.ya5{bottom:52.466667pt;}
.ya4{bottom:68.786667pt;}
.ya3{bottom:85.106667pt;}
.yfd{bottom:113.920000pt;}
.yaa{bottom:118.880000pt;}
.y57{bottom:124.672000pt;}
.y6f{bottom:130.272000pt;}
.y3e{bottom:130.592000pt;}
.yfc{bottom:132.832000pt;}
.ya9{bottom:137.306667pt;}
.yfb{bottom:151.546667pt;}
.ya0{bottom:155.080000pt;}
.y56{bottom:161.466667pt;}
.y3d{bottom:167.066667pt;}
.y41{bottom:167.386667pt;}
.yfa{bottom:170.266667pt;}
.yf9{bottom:188.986667pt;}
.y55{bottom:198.266667pt;}
.y3c{bottom:204.186667pt;}
.yf8{bottom:207.866667pt;}
.yf7{bottom:226.586667pt;}
.y68{bottom:234.906667pt;}
.y54{bottom:236.986667pt;}
.y3b{bottom:240.666667pt;}
.y40{bottom:240.986667pt;}
.yf6{bottom:245.306667pt;}
.y9b{bottom:253.800000pt;}
.yf5{bottom:264.026667pt;}
.y67{bottom:271.386667pt;}
.y53{bottom:273.786667pt;}
.y3a{bottom:277.466667pt;}
.y3f{bottom:277.786667pt;}
.yf4{bottom:282.906667pt;}
.yf3{bottom:301.626667pt;}
.y66{bottom:308.186667pt;}
.y52{bottom:310.586667pt;}
.y39{bottom:314.586667pt;}
.yf2{bottom:320.346667pt;}
.y97{bottom:338.280000pt;}
.yf1{bottom:339.066667pt;}
.yb7{bottom:341.946667pt;}
.y65{bottom:345.026667pt;}
.y51{bottom:347.426667pt;}
.y38{bottom:351.426667pt;}
.yf0{bottom:357.986667pt;}
.yb6{bottom:360.546667pt;}
.y16{bottom:366.149980pt;}
.yb5{bottom:375.906667pt;}
.yef{bottom:376.706667pt;}
.y64{bottom:381.826667pt;}
.y50{bottom:384.226667pt;}
.y15{bottom:384.747489pt;}
.y73{bottom:387.906667pt;}
.y37{bottom:388.226667pt;}
.yb4{bottom:391.266667pt;}
.y96{bottom:393.026667pt;}
.yee{bottom:395.426667pt;}
.y14{bottom:403.344999pt;}
.yed{bottom:414.146667pt;}
.y63{bottom:418.626667pt;}
.y4f{bottom:421.026667pt;}
.y13{bottom:421.942508pt;}
.yb3{bottom:424.066667pt;}
.y36{bottom:425.026667pt;}
.yec{bottom:432.866667pt;}
.y92{bottom:436.066667pt;}
.y12{bottom:440.540017pt;}
.yb2{bottom:449.186667pt;}
.yeb{bottom:451.746667pt;}
.y62{bottom:455.746667pt;}
.y11{bottom:459.137526pt;}
.y4e{bottom:459.746667pt;}
.y35{bottom:461.826667pt;}
.yea{bottom:470.466667pt;}
.yb1{bottom:473.826667pt;}
.ye9{bottom:489.186667pt;}
.y61{bottom:492.546667pt;}
.y10{bottom:493.472860pt;}
.y8e{bottom:494.466667pt;}
.y4d{bottom:496.546667pt;}
.y6e{bottom:498.306667pt;}
.y28{bottom:498.626667pt;}
.ye8{bottom:507.906667pt;}
.yf{bottom:512.070369pt;}
.yb0{bottom:521.346667pt;}
.ye7{bottom:526.786667pt;}
.y60{bottom:529.346667pt;}
.ye{bottom:530.667879pt;}
.y4c{bottom:533.346667pt;}
.y6d{bottom:535.106667pt;}
.y27{bottom:535.426667pt;}
.ycd{bottom:536.226667pt;}
.ye6{bottom:545.506667pt;}
.y8a{bottom:549.986667pt;}
.ycc{bottom:552.226667pt;}
.ye5{bottom:564.226667pt;}
.y5f{bottom:565.826667pt;}
.ycb{bottom:568.253333pt;}
.yd{bottom:569.190721pt;}
.y4b{bottom:570.173333pt;}
.y6c{bottom:571.933333pt;}
.y26{bottom:572.253333pt;}
.ye4{bottom:582.973333pt;}
.yca{bottom:584.253333pt;}
.yc{bottom:587.788230pt;}
.y86{bottom:591.613333pt;}
.yc9{bottom:600.253333pt;}
.ye3{bottom:601.853333pt;}
.y5e{bottom:602.653333pt;}
.yb{bottom:606.385739pt;}
.y4a{bottom:606.973333pt;}
.y6b{bottom:608.733333pt;}
.y25{bottom:609.053333pt;}
.yc8{bottom:616.253333pt;}
.ye2{bottom:620.573333pt;}
.yc7{bottom:632.253333pt;}
.ye1{bottom:639.293333pt;}
.y5d{bottom:639.773333pt;}
.ya{bottom:640.923515pt;}
.y49{bottom:643.773333pt;}
.y69{bottom:645.533333pt;}
.y24{bottom:645.853333pt;}
.yc6{bottom:650.653333pt;}
.ye0{bottom:658.013333pt;}
.y5c{bottom:676.573333pt;}
.ydf{bottom:676.893333pt;}
.y9{bottom:678.116939pt;}
.y48{bottom:680.573333pt;}
.y45{bottom:682.333333pt;}
.y23{bottom:682.653333pt;}
.yc5{bottom:684.253333pt;}
.y82{bottom:686.333333pt;}
.yde{bottom:695.613333pt;}
.y8{bottom:696.714448pt;}
.yaf{bottom:708.733333pt;}
.y5b{bottom:713.373333pt;}
.ydd{bottom:714.333333pt;}
.y7{bottom:715.311958pt;}
.y47{bottom:717.053333pt;}
.y44{bottom:719.133333pt;}
.y22{bottom:719.453333pt;}
.ydc{bottom:733.053333pt;}
.yae{bottom:741.693333pt;}
.ydb{bottom:751.933333pt;}
.y5a{bottom:752.253333pt;}
.y6{bottom:752.505382pt;}
.y46{bottom:754.173333pt;}
.y43{bottom:755.933333pt;}
.y21{bottom:756.253333pt;}
.y7e{bottom:757.533333pt;}
.yc4{bottom:764.253333pt;}
.yda{bottom:770.653333pt;}
.y5{bottom:771.102891pt;}
.yc3{bottom:780.253333pt;}
.y10e{bottom:781.693333pt;}
.yd9{bottom:789.413333pt;}
.y59{bottom:791.013333pt;}
.y72{bottom:792.773333pt;}
.y34{bottom:793.093333pt;}
.yc2{bottom:796.293333pt;}
.y31{bottom:796.773333pt;}
.y20{bottom:800.453333pt;}
.y10a{bottom:807.493333pt;}
.yd8{bottom:808.133333pt;}
.y4{bottom:808.296315pt;}
.yc1{bottom:812.293333pt;}
.yd7{bottom:826.853333pt;}
.y3{bottom:826.893824pt;}
.yc0{bottom:828.293333pt;}
.y71{bottom:829.573333pt;}
.y1f{bottom:829.893333pt;}
.yfe{bottom:833.093333pt;}
.y30{bottom:840.293333pt;}
.ybf{bottom:844.293333pt;}
.y2{bottom:845.491333pt;}
.yd6{bottom:845.733333pt;}
.y78{bottom:853.093333pt;}
.ybd{bottom:860.293333pt;}
.yd5{bottom:864.453333pt;}
.y58{bottom:866.373333pt;}
.y1e{bottom:866.693333pt;}
.yba{bottom:878.693333pt;}
.y2f{bottom:882.693333pt;}
.yd4{bottom:883.173333pt;}
.y2e{bottom:899.973333pt;}
.y1{bottom:901.282133pt;}
.yd3{bottom:901.893333pt;}
.y70{bottom:903.173333pt;}
.y33{bottom:903.493333pt;}
.y1d{bottom:910.853333pt;}
.yb8{bottom:912.293333pt;}
.y74{bottom:915.813333pt;}
.y2d{bottom:918.213333pt;}
.yd2{bottom:920.773333pt;}
.y2c{bottom:936.773333pt;}
.yd1{bottom:939.493333pt;}
.y6a{bottom:939.973333pt;}
.y1c{bottom:940.293333pt;}
.y2b{bottom:954.693333pt;}
.yad{bottom:959.493333pt;}
.y2a{bottom:971.973333pt;}
.yd0{bottom:974.373333pt;}
.y1b{bottom:976.773333pt;}
.y32{bottom:977.093333pt;}
.yac{bottom:983.973333pt;}
.ycf{bottom:994.693333pt;}
.yab{bottom:1008.613333pt;}
.yce{bottom:1013.120000pt;}
.y1a{bottom:1013.600000pt;}
.y42{bottom:1013.920000pt;}
.y29{bottom:1014.400000pt;}
.y18{bottom:1056.640000pt;}
.y17{bottom:1060.320000pt;}
.h2c{height:15.360000pt;}
.h2f{height:15.392000pt;}
.h8{height:18.880000pt;}
.h32{height:24.960000pt;}
.h33{height:25.152000pt;}
.h31{height:30.066250pt;}
.h2e{height:30.720000pt;}
.h13{height:35.826667pt;}
.h28{height:40.384687pt;}
.h1b{height:40.506667pt;}
.h1c{height:40.512000pt;}
.hf{height:41.170000pt;}
.he{height:41.285000pt;}
.h21{height:41.906667pt;}
.h22{height:41.912000pt;}
.hb{height:42.084375pt;}
.h2{height:43.866867pt;}
.h14{height:44.763750pt;}
.h7{height:44.875000pt;}
.h3{height:44.887044pt;}
.h2b{height:52.134375pt;}
.h2d{height:53.535000pt;}
.h23{height:53.778667pt;}
.h1d{height:54.546667pt;}
.h1e{height:54.552000pt;}
.h12{height:57.375000pt;}
.h1f{height:57.426667pt;}
.h20{height:57.432000pt;}
.h4{height:58.340629pt;}
.h1{height:58.488911pt;}
.h15{height:59.666667pt;}
.h16{height:59.672000pt;}
.h10{height:61.410000pt;}
.hc{height:62.812500pt;}
.h9{height:64.500000pt;}
.h29{height:66.750000pt;}
.h19{height:70.240000pt;}
.ha{height:71.524375pt;}
.h24{height:83.506667pt;}
.h25{height:83.516000pt;}
.h30{height:84.960000pt;}
.h2a{height:88.777500pt;}
.h1a{height:93.600000pt;}
.h17{height:94.580000pt;}
.h18{height:94.592000pt;}
.h11{height:97.372500pt;}
.h26{height:97.746667pt;}
.h27{height:97.756000pt;}
.h36{height:204.000000pt;}
.hd{height:720.000000pt;}
.h34{height:789.333333pt;}
.h35{height:838.666667pt;}
.h0{height:1056.000000pt;}
.h6{height:1122.666667pt;}
.h5{height:1122.720000pt;}
.w18{width:-185.026667pt;}
.wf{width:-81.146667pt;}
.w3{width:8.960000pt;}
.w17{width:14.560000pt;}
.w12{width:15.040000pt;}
.w5{width:17.760000pt;}
.w1d{width:33.600000pt;}
.w1f{width:33.632000pt;}
.w1c{width:33.760000pt;}
.w1e{width:33.792000pt;}
.wa{width:54.912000pt;}
.w20{width:80.832000pt;}
.w1b{width:81.152000pt;}
.w16{width:83.200000pt;}
.w13{width:85.152000pt;}
.w1a{width:85.632000pt;}
.w11{width:86.720000pt;}
.w19{width:92.352000pt;}
.w14{width:92.672000pt;}
.w15{width:92.800000pt;}
.we{width:98.400000pt;}
.w10{width:99.872000pt;}
.w8{width:128.338667pt;}
.w9{width:128.506667pt;}
.w7{width:129.472000pt;}
.wc{width:178.626667pt;}
.w6{width:178.737333pt;}
.wd{width:187.226667pt;}
.wb{width:202.906667pt;}
.w23{width:518.666667pt;}
.w22{width:644.000000pt;}
.w21{width:676.000000pt;}
.w1{width:793.280000pt;}
.w2{width:793.333333pt;}
.w0{width:816.000000pt;}
.w4{width:960.000000pt;}
.x0{left:0.000000pt;}
.x44{left:7.040000pt;}
.x27{left:8.000000pt;}
.x1d{left:9.430667pt;}
.x2e{left:10.560000pt;}
.x1c{left:12.000000pt;}
.x4a{left:13.120000pt;}
.x3a{left:14.080000pt;}
.x20{left:15.506667pt;}
.x2a{left:17.110667pt;}
.x22{left:18.720000pt;}
.x4e{left:20.160000pt;}
.x1a{left:21.746667pt;}
.x55{left:23.520000pt;}
.x26{left:24.786667pt;}
.x45{left:26.240000pt;}
.x3b{left:28.032000pt;}
.x48{left:29.760000pt;}
.x21{left:30.720000pt;}
.x50{left:32.154667pt;}
.x17{left:33.440000pt;}
.x18{left:35.840000pt;}
.x2f{left:36.800000pt;}
.x35{left:38.080000pt;}
.x4d{left:41.120000pt;}
.x2d{left:42.705333pt;}
.x23{left:44.465333pt;}
.x31{left:47.200000pt;}
.x4f{left:48.320000pt;}
.x32{left:51.025333pt;}
.x15{left:54.545333pt;}
.x34{left:56.785333pt;}
.x36{left:60.145333pt;}
.x52{left:61.626667pt;}
.x30{left:63.025333pt;}
.x37{left:64.640000pt;}
.x2b{left:66.865333pt;}
.x24{left:67.825333pt;}
.x28{left:68.945333pt;}
.x51{left:70.394667pt;}
.x3e{left:74.106667pt;}
.x1e{left:76.305333pt;}
.x53{left:82.120000pt;}
.x40{left:83.360000pt;}
.x3c{left:84.794667pt;}
.x14{left:106.601333pt;}
.x38{left:108.186667pt;}
.x33{left:112.186667pt;}
.x6{left:113.472000pt;}
.x1f{left:115.866667pt;}
.x29{left:116.826667pt;}
.x2c{left:118.746667pt;}
.x25{left:121.466667pt;}
.x39{left:122.426667pt;}
.x1{left:129.217067pt;}
.xc{left:132.192000pt;}
.xb{left:135.386667pt;}
.x11{left:137.466667pt;}
.x13{left:151.226667pt;}
.x8{left:154.586667pt;}
.xa{left:176.346667pt;}
.x56{left:192.026667pt;}
.xe{left:208.186667pt;}
.x43{left:218.786667pt;}
.x9{left:248.546667pt;}
.x57{left:273.826667pt;}
.x2{left:277.981199pt;}
.x16{left:286.146667pt;}
.x46{left:306.146667pt;}
.x58{left:308.226667pt;}
.x3d{left:324.226667pt;}
.x59{left:342.466667pt;}
.x10{left:353.826667pt;}
.xd{left:370.813333pt;}
.x4{left:373.200382pt;}
.x5a{left:376.893333pt;}
.xf{left:396.733333pt;}
.x47{left:410.173333pt;}
.x5b{left:411.293333pt;}
.x19{left:416.266667pt;}
.x54{left:417.213333pt;}
.x5c{left:445.533333pt;}
.x5d{left:479.933333pt;}
.x3{left:488.293890pt;}
.x3f{left:505.733333pt;}
.x5e{left:514.213333pt;}
.x1b{left:545.253333pt;}
.x5f{left:548.613333pt;}
.x5{left:583.100220pt;}
.x49{left:599.173333pt;}
.x12{left:662.400000pt;}
.x7{left:671.200000pt;}
.x41{left:694.880000pt;}
.x4b{left:778.720000pt;}
.x42{left:874.426667pt;}
.x4c{left:978.306667pt;}
}




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