
    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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035156;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_3f9259f5dabafd40c0971f18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_725eb3a97e619d893d3f8dc1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;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_3203619f1483dc5d165712bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_04e2dde14d3480ca221b34b2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.133000;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_3b5c9f54a8791d3703842422.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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_309a9ed8310b002886a6f985.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_0aea2a2b409664b96b086098.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_14aecb56d2c605ef2722815e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_04786ac681de479b6b36a4c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939941;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_79b2140dcdfba0225ab65ff7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8e0b53fcc0e50370038f67aa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;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_3072c202abebc32f7d810bcf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_36b7ea0893d1eeeb98aa9268.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;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_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_abaed5250d6532f7cfab9274.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.738770;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsb{letter-spacing:-0.492000px;}
.lsa{letter-spacing:-0.468000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.182880px;}
.ls4{letter-spacing:0.318000px;}
.ls1{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.468000px;}
.ls5{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.648000px;}
.ls7{letter-spacing:1.500000px;}
.ls9{letter-spacing:3.000000px;}
.ls8{letter-spacing:4.500000px;}
.ls2{letter-spacing:20.412000px;}
.lsc{letter-spacing:33.984000px;}
.lse{letter-spacing:60.816000px;}
.ls11{letter-spacing:63.984000px;}
.lsd{letter-spacing:93.084000px;}
.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;}
}
.ws5{word-spacing:-21.000000px;}
.ws6{word-spacing:-19.500000px;}
.ws9{word-spacing:-18.468000px;}
.ws8{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.532000px;}
.ws1{word-spacing:-14.148000px;}
.ws3{word-spacing:-13.651920px;}
.ws0{word-spacing:-12.836880px;}
.ws4{word-spacing:-11.884320px;}
.ws2{word-spacing:0.000000px;}
._23{margin-left:-8.152800px;}
._15{margin-left:-6.480000px;}
._16{margin-left:-4.536000px;}
._d{margin-left:-3.235680px;}
._9{margin-left:-2.168640px;}
._1{margin-left:-1.041120px;}
._0{width:1.344720px;}
._6{width:2.585520px;}
._2{width:4.078080px;}
._b{width:5.952960px;}
._f{width:7.366560px;}
._e{width:8.845200px;}
._c{width:10.846320px;}
._12{width:12.773520px;}
._7{width:13.789440px;}
._a{width:15.594480px;}
._10{width:17.118720px;}
._11{width:18.416160px;}
._3{width:20.196000px;}
._19{width:21.593040px;}
._8{width:22.723200px;}
._17{width:23.898240px;}
._1c{width:24.950880px;}
._18{width:26.403120px;}
._1d{width:27.855840px;}
._22{width:29.409120px;}
._4{width:31.374000px;}
._5{width:32.898000px;}
._1e{width:34.233120px;}
._1f{width:36.107520px;}
._26{width:37.401120px;}
._27{width:38.443200px;}
._28{width:39.876960px;}
._20{width:41.489520px;}
._21{width:42.768000px;}
._14{width:45.847200px;}
._13{width:46.977120px;}
._1a{width:48.489120px;}
._1b{width:49.732320px;}
._25{width:66.921120px;}
._24{width:68.328000px;}
.fc7{color:rgb(54,95,145);}
.fc5{color:transparent;}
.fc4{color:rgb(3,72,96);}
.fc3{color:rgb(48,111,182);}
.fc1{color:rgb(129,180,226);}
.fc6{color:rgb(255,249,244);}
.fc2{color:rgb(68,113,196);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:45.360000px;}
.fs7{font-size:48.000000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y48{bottom:2.205000px;}
.y4a{bottom:4.455000px;}
.y18{bottom:9.540000px;}
.y2c{bottom:9.720000px;}
.y24{bottom:12.780000px;}
.y25{bottom:15.660000px;}
.y7{bottom:17.100000px;}
.y3{bottom:17.280000px;}
.y2a{bottom:30.060000px;}
.y2e{bottom:30.240000px;}
.y2{bottom:48.240000px;}
.y35{bottom:50.580000px;}
.y3b{bottom:50.625000px;}
.y29{bottom:50.760000px;}
.y6{bottom:70.956000px;}
.y37{bottom:71.100000px;}
.y3a{bottom:71.145000px;}
.y28{bottom:71.280000px;}
.y5{bottom:85.536000px;}
.y27{bottom:91.800000px;}
.y32{bottom:91.980000px;}
.y15c{bottom:110.662500px;}
.y6c{bottom:111.412500px;}
.y31{bottom:112.500000px;}
.y127{bottom:113.662500px;}
.yf9{bottom:117.412500px;}
.y157{bottom:118.162500px;}
.y139{bottom:118.912500px;}
.y10c{bottom:120.037500px;}
.y21{bottom:121.896000px;}
.y185{bottom:124.912500px;}
.y17a{bottom:126.412500px;}
.y30{bottom:133.020000px;}
.yd6{bottom:133.162500px;}
.y15b{bottom:133.912500px;}
.y6b{bottom:134.287500px;}
.y3f{bottom:136.296000px;}
.y126{bottom:136.537500px;}
.yf8{bottom:140.662500px;}
.yb1{bottom:141.412500px;}
.y138{bottom:142.162500px;}
.y10b{bottom:143.287500px;}
.y184{bottom:148.162500px;}
.y179{bottom:149.287500px;}
.y14a{bottom:153.795000px;}
.yd5{bottom:156.420000px;}
.y15a{bottom:157.170000px;}
.y6a{bottom:157.530000px;}
.y20{bottom:158.430000px;}
.y125{bottom:159.795000px;}
.y3e{bottom:161.310000px;}
.yf7{bottom:163.920000px;}
.yb0{bottom:165.420000px;}
.y183{bottom:171.405000px;}
.y178{bottom:173.295000px;}
.y149{bottom:175.920000px;}
.y8d{bottom:177.045000px;}
.yd4{bottom:179.295000px;}
.y159{bottom:180.045000px;}
.y69{bottom:180.795000px;}
.y124{bottom:182.670000px;}
.y10a{bottom:183.795000px;}
.y3d{bottom:186.330000px;}
.yf6{bottom:186.825000px;}
.y156{bottom:188.325000px;}
.yaf{bottom:189.075000px;}
.y182{bottom:195.075000px;}
.y177{bottom:197.325000px;}
.y1f{bottom:197.850000px;}
.y148{bottom:198.450000px;}
.y8c{bottom:201.075000px;}
.yd3{bottom:202.575000px;}
.y158{bottom:203.325000px;}
.y68{bottom:203.700000px;}
.y137{bottom:204.825000px;}
.y123{bottom:205.950000px;}
.y109{bottom:206.700000px;}
.yf5{bottom:210.075000px;}
.y155{bottom:211.575000px;}
.yae{bottom:212.700000px;}
.y176{bottom:220.950000px;}
.y147{bottom:221.325000px;}
.y181{bottom:223.950000px;}
.y8b{bottom:224.700000px;}
.yd2{bottom:226.575000px;}
.y67{bottom:226.950000px;}
.y136{bottom:228.075000px;}
.y122{bottom:229.200000px;}
.y3c{bottom:232.050000px;}
.yf4{bottom:232.950000px;}
.y154{bottom:234.450000px;}
.y1e{bottom:235.830000px;}
.yad{bottom:236.325000px;}
.y175{bottom:244.200000px;}
.y180{bottom:247.200000px;}
.y8a{bottom:247.950000px;}
.y108{bottom:248.700000px;}
.y146{bottom:249.075000px;}
.yd1{bottom:249.450000px;}
.y66{bottom:249.825000px;}
.y121{bottom:252.075000px;}
.yf3{bottom:256.200000px;}
.y153{bottom:257.700000px;}
.yac{bottom:259.950000px;}
.y1d{bottom:260.670000px;}
.y174{bottom:267.450000px;}
.y89{bottom:271.200000px;}
.y145{bottom:272.325000px;}
.yd0{bottom:272.700000px;}
.y65{bottom:273.825000px;}
.y120{bottom:275.325000px;}
.y135{bottom:278.700000px;}
.yf2{bottom:279.450000px;}
.y152{bottom:280.950000px;}
.yab{bottom:283.575000px;}
.y1c{bottom:285.330000px;}
.y173{bottom:290.325000px;}
.y88{bottom:294.075000px;}
.y17f{bottom:294.450000px;}
.ycf{bottom:295.950000px;}
.y144{bottom:296.325000px;}
.y64{bottom:297.075000px;}
.y39{bottom:298.290000px;}
.y11f{bottom:298.575000px;}
.yf1{bottom:302.325000px;}
.y151{bottom:303.855000px;}
.yaa{bottom:307.230000px;}
.y1b{bottom:309.990000px;}
.y172{bottom:313.605000px;}
.y87{bottom:317.355000px;}
.yce{bottom:318.870000px;}
.y143{bottom:319.620000px;}
.y63{bottom:319.980000px;}
.y11e{bottom:321.495000px;}
.y134{bottom:322.995000px;}
.yf0{bottom:325.620000px;}
.y150{bottom:327.120000px;}
.ya9{bottom:330.870000px;}
.y171{bottom:337.245000px;}
.y86{bottom:340.245000px;}
.y17e{bottom:340.620000px;}
.ycd{bottom:342.120000px;}
.y142{bottom:342.870000px;}
.y62{bottom:343.245000px;}
.y11d{bottom:344.745000px;}
.y133{bottom:345.870000px;}
.y1a{bottom:348.015000px;}
.yef{bottom:349.620000px;}
.y14f{bottom:350.370000px;}
.ya8{bottom:354.120000px;}
.y170{bottom:360.495000px;}
.y19{bottom:364.035000px;}
.y85{bottom:364.245000px;}
.ycc{bottom:364.995000px;}
.y141{bottom:365.745000px;}
.y61{bottom:366.495000px;}
.y132{bottom:368.745000px;}
.yee{bottom:372.495000px;}
.y14e{bottom:373.245000px;}
.ya7{bottom:377.370000px;}
.y16f{bottom:383.745000px;}
.y38{bottom:385.095000px;}
.y84{bottom:387.495000px;}
.y107{bottom:388.245000px;}
.ycb{bottom:388.995000px;}
.y17{bottom:389.055000px;}
.y60{bottom:389.370000px;}
.y11c{bottom:390.120000px;}
.y131{bottom:391.995000px;}
.yed{bottom:395.745000px;}
.y14d{bottom:397.245000px;}
.ya6{bottom:400.620000px;}
.y16e{bottom:406.620000px;}
.y83{bottom:410.370000px;}
.y17d{bottom:410.745000px;}
.y106{bottom:411.495000px;}
.yca{bottom:412.245000px;}
.y5f{bottom:413.370000px;}
.y11b{bottom:413.745000px;}
.y130{bottom:415.245000px;}
.yec{bottom:418.995000px;}
.ya5{bottom:423.525000px;}
.y16d{bottom:429.900000px;}
.y16{bottom:430.095000px;}
.y82{bottom:433.650000px;}
.y105{bottom:434.400000px;}
.yc9{bottom:435.150000px;}
.y14c{bottom:436.275000px;}
.y5e{bottom:436.650000px;}
.y12f{bottom:438.150000px;}
.yeb{bottom:441.900000px;}
.ya4{bottom:446.775000px;}
.y36{bottom:451.335000px;}
.y16c{bottom:453.150000px;}
.y81{bottom:456.900000px;}
.y104{bottom:457.650000px;}
.yc8{bottom:458.400000px;}
.y5d{bottom:459.525000px;}
.y11a{bottom:459.900000px;}
.y15{bottom:460.515000px;}
.y12e{bottom:461.400000px;}
.yea{bottom:465.150000px;}
.ya3{bottom:470.025000px;}
.y16b{bottom:476.025000px;}
.y80{bottom:479.775000px;}
.y17c{bottom:480.150000px;}
.y14b{bottom:480.900000px;}
.yc7{bottom:481.650000px;}
.y140{bottom:482.400000px;}
.y5c{bottom:482.775000px;}
.y119{bottom:483.150000px;}
.y12d{bottom:484.275000px;}
.ye9{bottom:488.025000px;}
.y14{bottom:490.935000px;}
.ya2{bottom:492.900000px;}
.y16a{bottom:499.275000px;}
.y7f{bottom:503.025000px;}
.y17b{bottom:503.775000px;}
.yc6{bottom:504.525000px;}
.y13f{bottom:505.275000px;}
.y5b{bottom:505.650000px;}
.y118{bottom:506.025000px;}
.y12c{bottom:507.525000px;}
.ye8{bottom:511.275000px;}
.ya1{bottom:516.900000px;}
.y13{bottom:521.355000px;}
.y169{bottom:522.525000px;}
.y7e{bottom:527.025000px;}
.yc5{bottom:527.775000px;}
.y13e{bottom:528.525000px;}
.y5a{bottom:528.900000px;}
.y117{bottom:529.275000px;}
.y12b{bottom:530.775000px;}
.ye7{bottom:534.525000px;}
.y34{bottom:538.095000px;}
.ya0{bottom:539.775000px;}
.y168{bottom:546.195000px;}
.y7d{bottom:549.945000px;}
.yc4{bottom:551.070000px;}
.y12{bottom:551.775000px;}
.y13d{bottom:551.820000px;}
.y59{bottom:552.195000px;}
.y116{bottom:552.570000px;}
.y12a{bottom:553.695000px;}
.ye6{bottom:557.445000px;}
.y9f{bottom:563.070000px;}
.y167{bottom:569.445000px;}
.y7c{bottom:573.195000px;}
.yc3{bottom:573.945000px;}
.y13c{bottom:574.695000px;}
.y58{bottom:575.070000px;}
.y115{bottom:575.445000px;}
.y129{bottom:576.945000px;}
.y9e{bottom:586.320000px;}
.y11{bottom:588.135000px;}
.y166{bottom:592.320000px;}
.y7b{bottom:596.070000px;}
.yc2{bottom:597.195000px;}
.ye5{bottom:597.570000px;}
.y13b{bottom:597.945000px;}
.y57{bottom:598.320000px;}
.y114{bottom:598.695000px;}
.y33{bottom:604.365000px;}
.y9d{bottom:609.195000px;}
.y165{bottom:615.570000px;}
.y7a{bottom:619.320000px;}
.yc1{bottom:620.070000px;}
.ye4{bottom:620.445000px;}
.y13a{bottom:620.820000px;}
.y56{bottom:621.570000px;}
.y128{bottom:621.945000px;}
.y10{bottom:624.705000px;}
.y9c{bottom:632.445000px;}
.y164{bottom:638.820000px;}
.y79{bottom:642.570000px;}
.y103{bottom:643.320000px;}
.yc0{bottom:644.070000px;}
.y55{bottom:644.445000px;}
.y113{bottom:644.820000px;}
.y2f{bottom:649.905000px;}
.y9b{bottom:655.695000px;}
.yf{bottom:661.065000px;}
.y163{bottom:661.725000px;}
.ye3{bottom:663.600000px;}
.y78{bottom:665.475000px;}
.y102{bottom:666.600000px;}
.ybf{bottom:667.350000px;}
.y54{bottom:667.725000px;}
.y112{bottom:668.100000px;}
.y9a{bottom:679.350000px;}
.y162{bottom:684.975000px;}
.ye2{bottom:686.850000px;}
.y77{bottom:688.725000px;}
.y101{bottom:689.475000px;}
.ybe{bottom:690.225000px;}
.y53{bottom:690.600000px;}
.y111{bottom:690.975000px;}
.y99{bottom:702.600000px;}
.y161{bottom:708.225000px;}
.ye1{bottom:710.100000px;}
.y76{bottom:712.725000px;}
.ybd{bottom:713.475000px;}
.y52{bottom:713.850000px;}
.y110{bottom:714.225000px;}
.ye{bottom:720.825000px;}
.y98{bottom:725.850000px;}
.y160{bottom:731.850000px;}
.ye0{bottom:733.350000px;}
.y75{bottom:735.600000px;}
.y100{bottom:735.975000px;}
.ybc{bottom:736.725000px;}
.y51{bottom:737.100000px;}
.y10f{bottom:737.475000px;}
.y97{bottom:748.725000px;}
.y15f{bottom:755.850000px;}
.ydf{bottom:756.225000px;}
.y74{bottom:758.850000px;}
.ybb{bottom:759.600000px;}
.y10e{bottom:760.350000px;}
.y96{bottom:771.975000px;}
.y50{bottom:776.475000px;}
.yde{bottom:779.505000px;}
.y73{bottom:782.130000px;}
.yba{bottom:782.880000px;}
.y10d{bottom:783.630000px;}
.y95{bottom:794.895000px;}
.yd{bottom:797.505000px;}
.y2d{bottom:798.405000px;}
.y4f{bottom:800.505000px;}
.ydd{bottom:802.755000px;}
.y15e{bottom:803.130000px;}
.y72{bottom:805.005000px;}
.yff{bottom:806.130000px;}
.yb9{bottom:806.880000px;}
.y94{bottom:818.130000px;}
.ydc{bottom:826.380000px;}
.y15d{bottom:826.755000px;}
.y71{bottom:828.255000px;}
.yfe{bottom:829.005000px;}
.yb8{bottom:829.755000px;}
.y93{bottom:841.380000px;}
.y4e{bottom:846.255000px;}
.ydb{bottom:850.380000px;}
.y70{bottom:851.130000px;}
.yfd{bottom:852.255000px;}
.yb7{bottom:853.005000px;}
.yc{bottom:863.025000px;}
.y92{bottom:864.255000px;}
.y4d{bottom:869.505000px;}
.yda{bottom:874.005000px;}
.yfc{bottom:875.130000px;}
.yb6{bottom:875.880000px;}
.y2b{bottom:885.210000px;}
.y91{bottom:887.505000px;}
.y6f{bottom:895.005000px;}
.yd9{bottom:897.675000px;}
.yfb{bottom:898.425000px;}
.yb5{bottom:899.175000px;}
.yb{bottom:902.490000px;}
.yd8{bottom:921.300000px;}
.yfa{bottom:921.675000px;}
.yb4{bottom:922.425000px;}
.y44{bottom:925.350000px;}
.y90{bottom:927.300000px;}
.y26{bottom:930.930000px;}
.y4c{bottom:931.800000px;}
.ya{bottom:938.310000px;}
.y6e{bottom:944.550000px;}
.yd7{bottom:944.925000px;}
.yb3{bottom:945.300000px;}
.y8f{bottom:950.175000px;}
.y43{bottom:964.950000px;}
.y6d{bottom:968.175000px;}
.yb2{bottom:968.550000px;}
.y8e{bottom:990.675000px;}
.y4b{bottom:991.800000px;}
.y42{bottom:1010.130000px;}
.y46{bottom:1015.455000px;}
.y41{bottom:1026.330000px;}
.y45{bottom:1037.955000px;}
.y23{bottom:1038.210000px;}
.y9{bottom:1063.590000px;}
.y40{bottom:1071.870000px;}
.y49{bottom:1094.625000px;}
.y22{bottom:1097.250000px;}
.y8{bottom:1103.010000px;}
.y47{bottom:1114.500000px;}
.y4{bottom:1134.690000px;}
.y1{bottom:1149.300000px;}
.h1a{height:19.875000px;}
.h1b{height:22.125000px;}
.h9{height:23.580000px;}
.he{height:30.420000px;}
.h6{height:31.680000px;}
.h5{height:31.860000px;}
.hb{height:39.735360px;}
.ha{height:42.230160px;}
.h11{height:44.100000px;}
.h17{height:44.280000px;}
.hf{height:44.911440px;}
.hc{height:47.304000px;}
.h3{height:49.394180px;}
.h21{height:52.136719px;}
.h4{height:52.349760px;}
.h7{height:55.636560px;}
.h1e{height:56.481445px;}
.h20{height:56.786133px;}
.h2{height:59.580000px;}
.h1d{height:60.826172px;}
.h1c{height:61.154297px;}
.h19{height:63.175781px;}
.h14{height:64.620000px;}
.h1f{height:65.645508px;}
.hd{height:78.427440px;}
.h15{height:85.140000px;}
.h16{height:85.176000px;}
.h12{height:85.356000px;}
.h10{height:105.840000px;}
.h13{height:147.060000px;}
.h8{height:156.184560px;}
.h18{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:4.875000px;}
.w13{width:5.250000px;}
.w5{width:5.400000px;}
.wf{width:8.460000px;}
.wa{width:8.640000px;}
.w6{width:79.560000px;}
.w7{width:124.056000px;}
.wd{width:171.750000px;}
.wb{width:172.470000px;}
.w9{width:214.410000px;}
.w4{width:225.390000px;}
.w8{width:256.890000px;}
.we{width:501.555000px;}
.wc{width:502.275000px;}
.w2{width:676.230000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w11{width:917.999986px;}
.w10{width:918.000000px;}
.xa{left:-1.440000px;}
.x0{left:0.000000px;}
.x2{left:6.696000px;}
.x1{left:86.760000px;}
.x3{left:106.595987px;}
.x4{left:108.036000px;}
.x12{left:109.476000px;}
.x6{left:112.680000px;}
.x16{left:116.675987px;}
.x1b{left:133.949986px;}
.x19{left:135.074986px;}
.x1e{left:160.949986px;}
.x1a{left:162.074986px;}
.x13{left:189.030000px;}
.x1d{left:216.074986px;}
.x8{left:225.945000px;}
.x1c{left:243.119986px;}
.xe{left:250.049987px;}
.x10{left:266.789987px;}
.x18{left:281.955000px;}
.x14{left:313.095000px;}
.x5{left:333.435000px;}
.xd{left:420.194987px;}
.xc{left:454.214987px;}
.xf{left:457.814987px;}
.x7{left:558.825000px;}
.x15{left:569.985000px;}
.x11{left:631.724987px;}
.x17{left:776.490000px;}
.x9{left:779.730000px;}
.xb{left:786.569987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.437333pt;}
.lsa{letter-spacing:-0.416000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.162560pt;}
.ls4{letter-spacing:0.282667pt;}
.ls1{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.416000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.576000pt;}
.ls7{letter-spacing:1.333333pt;}
.ls9{letter-spacing:2.666667pt;}
.ls8{letter-spacing:4.000000pt;}
.ls2{letter-spacing:18.144000pt;}
.lsc{letter-spacing:30.208000pt;}
.lse{letter-spacing:54.058667pt;}
.ls11{letter-spacing:56.874667pt;}
.lsd{letter-spacing:82.741333pt;}
.ws5{word-spacing:-18.666667pt;}
.ws6{word-spacing:-17.333333pt;}
.ws9{word-spacing:-16.416000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.584000pt;}
.ws1{word-spacing:-12.576000pt;}
.ws3{word-spacing:-12.135040pt;}
.ws0{word-spacing:-11.410560pt;}
.ws4{word-spacing:-10.563840pt;}
.ws2{word-spacing:0.000000pt;}
._23{margin-left:-7.246933pt;}
._15{margin-left:-5.760000pt;}
._16{margin-left:-4.032000pt;}
._d{margin-left:-2.876160pt;}
._9{margin-left:-1.927680pt;}
._1{margin-left:-0.925440pt;}
._0{width:1.195307pt;}
._6{width:2.298240pt;}
._2{width:3.624960pt;}
._b{width:5.291520pt;}
._f{width:6.548053pt;}
._e{width:7.862400pt;}
._c{width:9.641173pt;}
._12{width:11.354240pt;}
._7{width:12.257280pt;}
._a{width:13.861760pt;}
._10{width:15.216640pt;}
._11{width:16.369920pt;}
._3{width:17.952000pt;}
._19{width:19.193813pt;}
._8{width:20.198400pt;}
._17{width:21.242880pt;}
._1c{width:22.178560pt;}
._18{width:23.469440pt;}
._1d{width:24.760747pt;}
._22{width:26.141440pt;}
._4{width:27.888000pt;}
._5{width:29.242667pt;}
._1e{width:30.429440pt;}
._1f{width:32.095573pt;}
._26{width:33.245440pt;}
._27{width:34.171733pt;}
._28{width:35.446187pt;}
._20{width:36.879573pt;}
._21{width:38.016000pt;}
._14{width:40.753067pt;}
._13{width:41.757440pt;}
._1a{width:43.101440pt;}
._1b{width:44.206507pt;}
._25{width:59.485440pt;}
._24{width:60.736000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:42.666667pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:1.960000pt;}
.y4a{bottom:3.960000pt;}
.y18{bottom:8.480000pt;}
.y2c{bottom:8.640000pt;}
.y24{bottom:11.360000pt;}
.y25{bottom:13.920000pt;}
.y7{bottom:15.200000pt;}
.y3{bottom:15.360000pt;}
.y2a{bottom:26.720000pt;}
.y2e{bottom:26.880000pt;}
.y2{bottom:42.880000pt;}
.y35{bottom:44.960000pt;}
.y3b{bottom:45.000000pt;}
.y29{bottom:45.120000pt;}
.y6{bottom:63.072000pt;}
.y37{bottom:63.200000pt;}
.y3a{bottom:63.240000pt;}
.y28{bottom:63.360000pt;}
.y5{bottom:76.032000pt;}
.y27{bottom:81.600000pt;}
.y32{bottom:81.760000pt;}
.y15c{bottom:98.366667pt;}
.y6c{bottom:99.033333pt;}
.y31{bottom:100.000000pt;}
.y127{bottom:101.033333pt;}
.yf9{bottom:104.366667pt;}
.y157{bottom:105.033333pt;}
.y139{bottom:105.700000pt;}
.y10c{bottom:106.700000pt;}
.y21{bottom:108.352000pt;}
.y185{bottom:111.033333pt;}
.y17a{bottom:112.366667pt;}
.y30{bottom:118.240000pt;}
.yd6{bottom:118.366667pt;}
.y15b{bottom:119.033333pt;}
.y6b{bottom:119.366667pt;}
.y3f{bottom:121.152000pt;}
.y126{bottom:121.366667pt;}
.yf8{bottom:125.033333pt;}
.yb1{bottom:125.700000pt;}
.y138{bottom:126.366667pt;}
.y10b{bottom:127.366667pt;}
.y184{bottom:131.700000pt;}
.y179{bottom:132.700000pt;}
.y14a{bottom:136.706667pt;}
.yd5{bottom:139.040000pt;}
.y15a{bottom:139.706667pt;}
.y6a{bottom:140.026667pt;}
.y20{bottom:140.826667pt;}
.y125{bottom:142.040000pt;}
.y3e{bottom:143.386667pt;}
.yf7{bottom:145.706667pt;}
.yb0{bottom:147.040000pt;}
.y183{bottom:152.360000pt;}
.y178{bottom:154.040000pt;}
.y149{bottom:156.373333pt;}
.y8d{bottom:157.373333pt;}
.yd4{bottom:159.373333pt;}
.y159{bottom:160.040000pt;}
.y69{bottom:160.706667pt;}
.y124{bottom:162.373333pt;}
.y10a{bottom:163.373333pt;}
.y3d{bottom:165.626667pt;}
.yf6{bottom:166.066667pt;}
.y156{bottom:167.400000pt;}
.yaf{bottom:168.066667pt;}
.y182{bottom:173.400000pt;}
.y177{bottom:175.400000pt;}
.y1f{bottom:175.866667pt;}
.y148{bottom:176.400000pt;}
.y8c{bottom:178.733333pt;}
.yd3{bottom:180.066667pt;}
.y158{bottom:180.733333pt;}
.y68{bottom:181.066667pt;}
.y137{bottom:182.066667pt;}
.y123{bottom:183.066667pt;}
.y109{bottom:183.733333pt;}
.yf5{bottom:186.733333pt;}
.y155{bottom:188.066667pt;}
.yae{bottom:189.066667pt;}
.y176{bottom:196.400000pt;}
.y147{bottom:196.733333pt;}
.y181{bottom:199.066667pt;}
.y8b{bottom:199.733333pt;}
.yd2{bottom:201.400000pt;}
.y67{bottom:201.733333pt;}
.y136{bottom:202.733333pt;}
.y122{bottom:203.733333pt;}
.y3c{bottom:206.266667pt;}
.yf4{bottom:207.066667pt;}
.y154{bottom:208.400000pt;}
.y1e{bottom:209.626667pt;}
.yad{bottom:210.066667pt;}
.y175{bottom:217.066667pt;}
.y180{bottom:219.733333pt;}
.y8a{bottom:220.400000pt;}
.y108{bottom:221.066667pt;}
.y146{bottom:221.400000pt;}
.yd1{bottom:221.733333pt;}
.y66{bottom:222.066667pt;}
.y121{bottom:224.066667pt;}
.yf3{bottom:227.733333pt;}
.y153{bottom:229.066667pt;}
.yac{bottom:231.066667pt;}
.y1d{bottom:231.706667pt;}
.y174{bottom:237.733333pt;}
.y89{bottom:241.066667pt;}
.y145{bottom:242.066667pt;}
.yd0{bottom:242.400000pt;}
.y65{bottom:243.400000pt;}
.y120{bottom:244.733333pt;}
.y135{bottom:247.733333pt;}
.yf2{bottom:248.400000pt;}
.y152{bottom:249.733333pt;}
.yab{bottom:252.066667pt;}
.y1c{bottom:253.626667pt;}
.y173{bottom:258.066667pt;}
.y88{bottom:261.400000pt;}
.y17f{bottom:261.733333pt;}
.ycf{bottom:263.066667pt;}
.y144{bottom:263.400000pt;}
.y64{bottom:264.066667pt;}
.y39{bottom:265.146667pt;}
.y11f{bottom:265.400000pt;}
.yf1{bottom:268.733333pt;}
.y151{bottom:270.093333pt;}
.yaa{bottom:273.093333pt;}
.y1b{bottom:275.546667pt;}
.y172{bottom:278.760000pt;}
.y87{bottom:282.093333pt;}
.yce{bottom:283.440000pt;}
.y143{bottom:284.106667pt;}
.y63{bottom:284.426667pt;}
.y11e{bottom:285.773333pt;}
.y134{bottom:287.106667pt;}
.yf0{bottom:289.440000pt;}
.y150{bottom:290.773333pt;}
.ya9{bottom:294.106667pt;}
.y171{bottom:299.773333pt;}
.y86{bottom:302.440000pt;}
.y17e{bottom:302.773333pt;}
.ycd{bottom:304.106667pt;}
.y142{bottom:304.773333pt;}
.y62{bottom:305.106667pt;}
.y11d{bottom:306.440000pt;}
.y133{bottom:307.440000pt;}
.y1a{bottom:309.346667pt;}
.yef{bottom:310.773333pt;}
.y14f{bottom:311.440000pt;}
.ya8{bottom:314.773333pt;}
.y170{bottom:320.440000pt;}
.y19{bottom:323.586667pt;}
.y85{bottom:323.773333pt;}
.ycc{bottom:324.440000pt;}
.y141{bottom:325.106667pt;}
.y61{bottom:325.773333pt;}
.y132{bottom:327.773333pt;}
.yee{bottom:331.106667pt;}
.y14e{bottom:331.773333pt;}
.ya7{bottom:335.440000pt;}
.y16f{bottom:341.106667pt;}
.y38{bottom:342.306667pt;}
.y84{bottom:344.440000pt;}
.y107{bottom:345.106667pt;}
.ycb{bottom:345.773333pt;}
.y17{bottom:345.826667pt;}
.y60{bottom:346.106667pt;}
.y11c{bottom:346.773333pt;}
.y131{bottom:348.440000pt;}
.yed{bottom:351.773333pt;}
.y14d{bottom:353.106667pt;}
.ya6{bottom:356.106667pt;}
.y16e{bottom:361.440000pt;}
.y83{bottom:364.773333pt;}
.y17d{bottom:365.106667pt;}
.y106{bottom:365.773333pt;}
.yca{bottom:366.440000pt;}
.y5f{bottom:367.440000pt;}
.y11b{bottom:367.773333pt;}
.y130{bottom:369.106667pt;}
.yec{bottom:372.440000pt;}
.ya5{bottom:376.466667pt;}
.y16d{bottom:382.133333pt;}
.y16{bottom:382.306667pt;}
.y82{bottom:385.466667pt;}
.y105{bottom:386.133333pt;}
.yc9{bottom:386.800000pt;}
.y14c{bottom:387.800000pt;}
.y5e{bottom:388.133333pt;}
.y12f{bottom:389.466667pt;}
.yeb{bottom:392.800000pt;}
.ya4{bottom:397.133333pt;}
.y36{bottom:401.186667pt;}
.y16c{bottom:402.800000pt;}
.y81{bottom:406.133333pt;}
.y104{bottom:406.800000pt;}
.yc8{bottom:407.466667pt;}
.y5d{bottom:408.466667pt;}
.y11a{bottom:408.800000pt;}
.y15{bottom:409.346667pt;}
.y12e{bottom:410.133333pt;}
.yea{bottom:413.466667pt;}
.ya3{bottom:417.800000pt;}
.y16b{bottom:423.133333pt;}
.y80{bottom:426.466667pt;}
.y17c{bottom:426.800000pt;}
.y14b{bottom:427.466667pt;}
.yc7{bottom:428.133333pt;}
.y140{bottom:428.800000pt;}
.y5c{bottom:429.133333pt;}
.y119{bottom:429.466667pt;}
.y12d{bottom:430.466667pt;}
.ye9{bottom:433.800000pt;}
.y14{bottom:436.386667pt;}
.ya2{bottom:438.133333pt;}
.y16a{bottom:443.800000pt;}
.y7f{bottom:447.133333pt;}
.y17b{bottom:447.800000pt;}
.yc6{bottom:448.466667pt;}
.y13f{bottom:449.133333pt;}
.y5b{bottom:449.466667pt;}
.y118{bottom:449.800000pt;}
.y12c{bottom:451.133333pt;}
.ye8{bottom:454.466667pt;}
.ya1{bottom:459.466667pt;}
.y13{bottom:463.426667pt;}
.y169{bottom:464.466667pt;}
.y7e{bottom:468.466667pt;}
.yc5{bottom:469.133333pt;}
.y13e{bottom:469.800000pt;}
.y5a{bottom:470.133333pt;}
.y117{bottom:470.466667pt;}
.y12b{bottom:471.800000pt;}
.ye7{bottom:475.133333pt;}
.y34{bottom:478.306667pt;}
.ya0{bottom:479.800000pt;}
.y168{bottom:485.506667pt;}
.y7d{bottom:488.840000pt;}
.yc4{bottom:489.840000pt;}
.y12{bottom:490.466667pt;}
.y13d{bottom:490.506667pt;}
.y59{bottom:490.840000pt;}
.y116{bottom:491.173333pt;}
.y12a{bottom:492.173333pt;}
.ye6{bottom:495.506667pt;}
.y9f{bottom:500.506667pt;}
.y167{bottom:506.173333pt;}
.y7c{bottom:509.506667pt;}
.yc3{bottom:510.173333pt;}
.y13c{bottom:510.840000pt;}
.y58{bottom:511.173333pt;}
.y115{bottom:511.506667pt;}
.y129{bottom:512.840000pt;}
.y9e{bottom:521.173333pt;}
.y11{bottom:522.786667pt;}
.y166{bottom:526.506667pt;}
.y7b{bottom:529.840000pt;}
.yc2{bottom:530.840000pt;}
.ye5{bottom:531.173333pt;}
.y13b{bottom:531.506667pt;}
.y57{bottom:531.840000pt;}
.y114{bottom:532.173333pt;}
.y33{bottom:537.213333pt;}
.y9d{bottom:541.506667pt;}
.y165{bottom:547.173333pt;}
.y7a{bottom:550.506667pt;}
.yc1{bottom:551.173333pt;}
.ye4{bottom:551.506667pt;}
.y13a{bottom:551.840000pt;}
.y56{bottom:552.506667pt;}
.y128{bottom:552.840000pt;}
.y10{bottom:555.293333pt;}
.y9c{bottom:562.173333pt;}
.y164{bottom:567.840000pt;}
.y79{bottom:571.173333pt;}
.y103{bottom:571.840000pt;}
.yc0{bottom:572.506667pt;}
.y55{bottom:572.840000pt;}
.y113{bottom:573.173333pt;}
.y2f{bottom:577.693333pt;}
.y9b{bottom:582.840000pt;}
.yf{bottom:587.613333pt;}
.y163{bottom:588.200000pt;}
.ye3{bottom:589.866667pt;}
.y78{bottom:591.533333pt;}
.y102{bottom:592.533333pt;}
.ybf{bottom:593.200000pt;}
.y54{bottom:593.533333pt;}
.y112{bottom:593.866667pt;}
.y9a{bottom:603.866667pt;}
.y162{bottom:608.866667pt;}
.ye2{bottom:610.533333pt;}
.y77{bottom:612.200000pt;}
.y101{bottom:612.866667pt;}
.ybe{bottom:613.533333pt;}
.y53{bottom:613.866667pt;}
.y111{bottom:614.200000pt;}
.y99{bottom:624.533333pt;}
.y161{bottom:629.533333pt;}
.ye1{bottom:631.200000pt;}
.y76{bottom:633.533333pt;}
.ybd{bottom:634.200000pt;}
.y52{bottom:634.533333pt;}
.y110{bottom:634.866667pt;}
.ye{bottom:640.733333pt;}
.y98{bottom:645.200000pt;}
.y160{bottom:650.533333pt;}
.ye0{bottom:651.866667pt;}
.y75{bottom:653.866667pt;}
.y100{bottom:654.200000pt;}
.ybc{bottom:654.866667pt;}
.y51{bottom:655.200000pt;}
.y10f{bottom:655.533333pt;}
.y97{bottom:665.533333pt;}
.y15f{bottom:671.866667pt;}
.ydf{bottom:672.200000pt;}
.y74{bottom:674.533333pt;}
.ybb{bottom:675.200000pt;}
.y10e{bottom:675.866667pt;}
.y96{bottom:686.200000pt;}
.y50{bottom:690.200000pt;}
.yde{bottom:692.893333pt;}
.y73{bottom:695.226667pt;}
.yba{bottom:695.893333pt;}
.y10d{bottom:696.560000pt;}
.y95{bottom:706.573333pt;}
.yd{bottom:708.893333pt;}
.y2d{bottom:709.693333pt;}
.y4f{bottom:711.560000pt;}
.ydd{bottom:713.560000pt;}
.y15e{bottom:713.893333pt;}
.y72{bottom:715.560000pt;}
.yff{bottom:716.560000pt;}
.yb9{bottom:717.226667pt;}
.y94{bottom:727.226667pt;}
.ydc{bottom:734.560000pt;}
.y15d{bottom:734.893333pt;}
.y71{bottom:736.226667pt;}
.yfe{bottom:736.893333pt;}
.yb8{bottom:737.560000pt;}
.y93{bottom:747.893333pt;}
.y4e{bottom:752.226667pt;}
.ydb{bottom:755.893333pt;}
.y70{bottom:756.560000pt;}
.yfd{bottom:757.560000pt;}
.yb7{bottom:758.226667pt;}
.yc{bottom:767.133333pt;}
.y92{bottom:768.226667pt;}
.y4d{bottom:772.893333pt;}
.yda{bottom:776.893333pt;}
.yfc{bottom:777.893333pt;}
.yb6{bottom:778.560000pt;}
.y2b{bottom:786.853333pt;}
.y91{bottom:788.893333pt;}
.y6f{bottom:795.560000pt;}
.yd9{bottom:797.933333pt;}
.yfb{bottom:798.600000pt;}
.yb5{bottom:799.266667pt;}
.yb{bottom:802.213333pt;}
.yd8{bottom:818.933333pt;}
.yfa{bottom:819.266667pt;}
.yb4{bottom:819.933333pt;}
.y44{bottom:822.533333pt;}
.y90{bottom:824.266667pt;}
.y26{bottom:827.493333pt;}
.y4c{bottom:828.266667pt;}
.ya{bottom:834.053333pt;}
.y6e{bottom:839.600000pt;}
.yd7{bottom:839.933333pt;}
.yb3{bottom:840.266667pt;}
.y8f{bottom:844.600000pt;}
.y43{bottom:857.733333pt;}
.y6d{bottom:860.600000pt;}
.yb2{bottom:860.933333pt;}
.y8e{bottom:880.600000pt;}
.y4b{bottom:881.600000pt;}
.y42{bottom:897.893333pt;}
.y46{bottom:902.626667pt;}
.y41{bottom:912.293333pt;}
.y45{bottom:922.626667pt;}
.y23{bottom:922.853333pt;}
.y9{bottom:945.413333pt;}
.y40{bottom:952.773333pt;}
.y49{bottom:973.000000pt;}
.y22{bottom:975.333333pt;}
.y8{bottom:980.453333pt;}
.y47{bottom:990.666667pt;}
.y4{bottom:1008.613333pt;}
.y1{bottom:1021.600000pt;}
.h1a{height:17.666667pt;}
.h1b{height:19.666667pt;}
.h9{height:20.960000pt;}
.he{height:27.040000pt;}
.h6{height:28.160000pt;}
.h5{height:28.320000pt;}
.hb{height:35.320320pt;}
.ha{height:37.537920pt;}
.h11{height:39.200000pt;}
.h17{height:39.360000pt;}
.hf{height:39.921280pt;}
.hc{height:42.048000pt;}
.h3{height:43.905937pt;}
.h21{height:46.343750pt;}
.h4{height:46.533120pt;}
.h7{height:49.454720pt;}
.h1e{height:50.205729pt;}
.h20{height:50.476562pt;}
.h2{height:52.960000pt;}
.h1d{height:54.067708pt;}
.h1c{height:54.359375pt;}
.h19{height:56.156250pt;}
.h14{height:57.440000pt;}
.h1f{height:58.351562pt;}
.hd{height:69.713280pt;}
.h15{height:75.680000pt;}
.h16{height:75.712000pt;}
.h12{height:75.872000pt;}
.h10{height:94.080000pt;}
.h13{height:130.720000pt;}
.h8{height:138.830720pt;}
.h18{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:4.333333pt;}
.w13{width:4.666667pt;}
.w5{width:4.800000pt;}
.wf{width:7.520000pt;}
.wa{width:7.680000pt;}
.w6{width:70.720000pt;}
.w7{width:110.272000pt;}
.wd{width:152.666667pt;}
.wb{width:153.306667pt;}
.w9{width:190.586667pt;}
.w4{width:200.346667pt;}
.w8{width:228.346667pt;}
.we{width:445.826667pt;}
.wc{width:446.466667pt;}
.w2{width:601.093333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w11{width:815.999988pt;}
.w10{width:816.000000pt;}
.xa{left:-1.280000pt;}
.x0{left:0.000000pt;}
.x2{left:5.952000pt;}
.x1{left:77.120000pt;}
.x3{left:94.751988pt;}
.x4{left:96.032000pt;}
.x12{left:97.312000pt;}
.x6{left:100.160000pt;}
.x16{left:103.711988pt;}
.x1b{left:119.066655pt;}
.x19{left:120.066655pt;}
.x1e{left:143.066655pt;}
.x1a{left:144.066655pt;}
.x13{left:168.026667pt;}
.x1d{left:192.066655pt;}
.x8{left:200.840000pt;}
.x1c{left:216.106655pt;}
.xe{left:222.266655pt;}
.x10{left:237.146655pt;}
.x18{left:250.626667pt;}
.x14{left:278.306667pt;}
.x5{left:296.386667pt;}
.xd{left:373.506655pt;}
.xc{left:403.746655pt;}
.xf{left:406.946655pt;}
.x7{left:496.733333pt;}
.x15{left:506.653333pt;}
.x11{left:561.533322pt;}
.x17{left:690.213333pt;}
.x9{left:693.093333pt;}
.xb{left:699.173322pt;}
}




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