
    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_490a41e44d04f9456522c311.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_d7fb390cc450002322c6655f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_7ccbbbcd3ed92c748cc7ced2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_e96381a8fa107c66e602e427.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892578;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_895a4bd8893d61ee340bbd4d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.720703;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_b8b5b6a75f90e31b0b0edf6e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.119629;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_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_877579536bef0199d6e6022b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.965332;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_18e594e0fd8332fb9b2982fb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-1.584000px;}
.ls15{letter-spacing:-1.470000px;}
.ls13{letter-spacing:-1.152000px;}
.ls12{letter-spacing:-0.864000px;}
.ls35{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.750000px;}
.ls24{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.576000px;}
.ls25{letter-spacing:-0.504000px;}
.ls8{letter-spacing:-0.432000px;}
.ls4c{letter-spacing:-0.306600px;}
.ls47{letter-spacing:-0.305400px;}
.ls4f{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.216000px;}
.ls36{letter-spacing:-0.189600px;}
.ls6{letter-spacing:-0.181200px;}
.ls11{letter-spacing:-0.144000px;}
.ls43{letter-spacing:-0.109200px;}
.ls9{letter-spacing:-0.106800px;}
.ls50{letter-spacing:-0.100200px;}
.ls2a{letter-spacing:-0.072000px;}
.ls4d{letter-spacing:-0.053280px;}
.ls45{letter-spacing:-0.018720px;}
.ls5{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.018000px;}
.ls38{letter-spacing:0.018720px;}
.ls29{letter-spacing:0.036000px;}
.ls4b{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.108000px;}
.ls2b{letter-spacing:0.126000px;}
.lse{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.208200px;}
.ls1{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.252000px;}
.ls53{letter-spacing:0.259920px;}
.ls46{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.305280px;}
.ls48{letter-spacing:0.305400px;}
.ls52{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.324000px;}
.ls4a{letter-spacing:0.360000px;}
.ls51{letter-spacing:0.413400px;}
.ls44{letter-spacing:0.414600px;}
.ls58{letter-spacing:0.460200px;}
.ls39{letter-spacing:0.530400px;}
.ls4e{letter-spacing:0.612000px;}
.ls57{letter-spacing:0.613440px;}
.ls42{letter-spacing:0.618000px;}
.ls54{letter-spacing:0.666720px;}
.ls37{letter-spacing:0.702000px;}
.ls49{letter-spacing:0.774000px;}
.ls2f{letter-spacing:0.864000px;}
.ls3d{letter-spacing:0.979920px;}
.ls33{letter-spacing:1.421280px;}
.ls1e{letter-spacing:1.584000px;}
.ls30{letter-spacing:1.704000px;}
.ls1f{letter-spacing:2.304000px;}
.ls55{letter-spacing:2.826720px;}
.ls3b{letter-spacing:3.546720px;}
.lsc{letter-spacing:4.464000px;}
.ls16{letter-spacing:5.184000px;}
.ls3c{letter-spacing:5.706720px;}
.lsb{letter-spacing:6.624000px;}
.ls1a{letter-spacing:6.804000px;}
.ls17{letter-spacing:7.344000px;}
.ls2d{letter-spacing:8.064000px;}
.ls2e{letter-spacing:8.184000px;}
.ls20{letter-spacing:9.504000px;}
.ls1b{letter-spacing:10.404000px;}
.ls1c{letter-spacing:10.944000px;}
.ls3f{letter-spacing:12.906720px;}
.ls40{letter-spacing:13.626720px;}
.ls41{letter-spacing:13.746720px;}
.ls1d{letter-spacing:13.824000px;}
.ls3a{letter-spacing:15.786720px;}
.ls18{letter-spacing:16.680000px;}
.ls32{letter-spacing:16.824000px;}
.ls3e{letter-spacing:20.826720px;}
.lsa{letter-spacing:21.024000px;}
.ls19{letter-spacing:21.864000px;}
.ls23{letter-spacing:23.904000px;}
.ls21{letter-spacing:24.624000px;}
.ls56{letter-spacing:25.866720px;}
.ls22{letter-spacing:26.064000px;}
.lsf{letter-spacing:28.224000px;}
.ls31{letter-spacing:29.664000px;}
.ls10{letter-spacing:47.141280px;}
.ls4{letter-spacing:845.741280px;}
.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;}
}
.ws9{word-spacing:-95.760000px;}
.ws31{word-spacing:-34.899840px;}
.ws20{word-spacing:-27.323280px;}
.ws22{word-spacing:-27.151680px;}
.ws2{word-spacing:-27.000000px;}
.ws3{word-spacing:-26.829480px;}
.ws21{word-spacing:-26.640000px;}
.ws1f{word-spacing:-26.621280px;}
.ws25{word-spacing:-26.602560px;}
.ws1e{word-spacing:-26.431680px;}
.wsf{word-spacing:-22.668720px;}
.ws10{word-spacing:-21.948720px;}
.wsb{word-spacing:-20.304000px;}
.wse{word-spacing:-20.232000px;}
.ws11{word-spacing:-20.160000px;}
.ws16{word-spacing:-19.944000px;}
.wsa{word-spacing:-19.872000px;}
.ws14{word-spacing:-19.800000px;}
.ws5{word-spacing:-19.584000px;}
.ws13{word-spacing:-19.512000px;}
.ws1c{word-spacing:-19.440000px;}
.ws12{word-spacing:-19.296000px;}
.ws1d{word-spacing:-19.224000px;}
.wsc{word-spacing:-19.152000px;}
.wsd{word-spacing:-18.864000px;}
.ws24{word-spacing:-18.829320px;}
.ws29{word-spacing:-18.720120px;}
.ws27{word-spacing:-18.676920px;}
.ws15{word-spacing:-18.432000px;}
.ws26{word-spacing:-18.414720px;}
.ws23{word-spacing:-18.305520px;}
.ws28{word-spacing:-18.109320px;}
.ws2a{word-spacing:-17.387280px;}
.ws35{word-spacing:-17.231280px;}
.ws2f{word-spacing:-17.225280px;}
.ws36{word-spacing:-17.073480px;}
.ws33{word-spacing:-17.026680px;}
.ws2b{word-spacing:-16.973280px;}
.ws34{word-spacing:-16.919880px;}
.ws2c{word-spacing:-16.666560px;}
.ws6{word-spacing:-16.613280px;}
.ws2e{word-spacing:-16.560000px;}
.ws32{word-spacing:-16.513080px;}
.ws7{word-spacing:-16.506480px;}
.ws30{word-spacing:-16.353480px;}
.ws2d{word-spacing:-16.306680px;}
.ws1a{word-spacing:-15.264000px;}
.ws18{word-spacing:-15.228000px;}
.ws17{word-spacing:-15.138000px;}
.ws1b{word-spacing:-15.120000px;}
.ws4{word-spacing:-15.012000px;}
.ws19{word-spacing:-14.508000px;}
.ws0{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.ws8{word-spacing:0.000000px;}
._16{margin-left:-5.562960px;}
._15{margin-left:-4.541040px;}
._a{margin-left:-3.197040px;}
._9{margin-left:-2.148960px;}
._0{margin-left:-1.061280px;}
._3{width:1.013040px;}
._6{width:2.272320px;}
._d{width:4.204800px;}
._8{width:5.511600px;}
._1{width:6.946560px;}
._2{width:8.200800px;}
._4{width:9.558000px;}
._5{width:11.082000px;}
._12{width:12.368880px;}
._b{width:13.824000px;}
._20{width:15.204000px;}
._7{width:16.740000px;}
._c{width:18.198000px;}
._11{width:21.288000px;}
._1b{width:23.232000px;}
._14{width:25.244160px;}
._13{width:26.760000px;}
._19{width:28.344000px;}
._f{width:29.416560px;}
._e{width:30.462960px;}
._10{width:31.484880px;}
._1c{width:33.384000px;}
._18{width:34.554720px;}
._17{width:35.616000px;}
._1e{width:37.152000px;}
._1d{width:39.000000px;}
._1f{width:40.638960px;}
._29{width:42.227280px;}
._2a{width:43.380480px;}
._1a{width:46.661280px;}
._21{width:50.508000px;}
._2d{width:54.786960px;}
._2c{width:56.120400px;}
._27{width:59.962800px;}
._26{width:61.086960px;}
._23{width:107.200800px;}
._22{width:108.380160px;}
._2b{width:125.730000px;}
._30{width:166.547520px;}
._2e{width:171.627120px;}
._2f{width:280.758720px;}
._28{width:523.963920px;}
._25{width:962.874000px;}
._24{width:963.882960px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs5{font-size:5.760000px;}
.fs7{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:2.880000px;}
.ya3{bottom:3.060000px;}
.ya1{bottom:10.800000px;}
.y96{bottom:18.360000px;}
.ya2{bottom:18.540000px;}
.y9f{bottom:18.570000px;}
.yb0{bottom:26.274000px;}
.ya9{bottom:26.280000px;}
.ya5{bottom:33.840000px;}
.yb2{bottom:34.014000px;}
.yaa{bottom:34.020000px;}
.y9e{bottom:34.050000px;}
.yb1{bottom:49.494000px;}
.y9a{bottom:49.530000px;}
.ya{bottom:56.556000px;}
.y99{bottom:65.010000px;}
.y9{bottom:77.796000px;}
.y9d{bottom:80.670000px;}
.y9c{bottom:96.150000px;}
.y9b{bottom:111.630000px;}
.yaf{bottom:128.916000px;}
.y32{bottom:130.716000px;}
.y8f{bottom:133.776000px;}
.y55{bottom:137.556000px;}
.yf1{bottom:141.876000px;}
.y31{bottom:147.996000px;}
.y30{bottom:152.490000px;}
.y8e{bottom:154.470000px;}
.y54{bottom:158.250000px;}
.yf0{bottom:159.150000px;}
.yce{bottom:159.330000px;}
.y79{bottom:161.310000px;}
.y2f{bottom:165.450000px;}
.y8d{bottom:175.170000px;}
.yef{bottom:176.430000px;}
.y78{bottom:182.010000px;}
.yae{bottom:191.730000px;}
.yee{bottom:193.710000px;}
.y53{bottom:194.610000px;}
.ycd{bottom:200.550000px;}
.y77{bottom:202.710000px;}
.y8c{bottom:210.810000px;}
.y52{bottom:218.910000px;}
.ycc{bottom:221.250000px;}
.y76{bottom:223.410000px;}
.yed{bottom:228.810000px;}
.y8b{bottom:231.510000px;}
.yad{bottom:239.070000px;}
.ycb{bottom:241.950000px;}
.y75{bottom:244.110000px;}
.yec{bottom:246.090000px;}
.y51{bottom:247.710000px;}
.y8a{bottom:252.210000px;}
.yac{bottom:255.450000px;}
.yca{bottom:262.650000px;}
.yeb{bottom:263.370000px;}
.y74{bottom:264.810000px;}
.y2e{bottom:268.230000px;}
.y89{bottom:272.910000px;}
.y50{bottom:279.390000px;}
.yea{bottom:280.650000px;}
.yc9{bottom:283.350000px;}
.y2d{bottom:288.030000px;}
.y88{bottom:293.655000px;}
.y73{bottom:300.495000px;}
.yab{bottom:302.655000px;}
.yc8{bottom:304.095000px;}
.y2c{bottom:304.455000px;}
.y87{bottom:314.355000px;}
.ye9{bottom:315.975000px;}
.y4f{bottom:320.655000px;}
.y72{bottom:321.195000px;}
.yc7{bottom:324.795000px;}
.y2b{bottom:325.155000px;}
.ye8{bottom:333.255000px;}
.y86{bottom:335.055000px;}
.y4e{bottom:341.355000px;}
.y71{bottom:341.895000px;}
.yc6{bottom:345.495000px;}
.y2a{bottom:345.855000px;}
.ya8{bottom:349.995000px;}
.y85{bottom:355.755000px;}
.y4d{bottom:362.055000px;}
.y70{bottom:362.595000px;}
.yc5{bottom:366.195000px;}
.y29{bottom:366.555000px;}
.ye7{bottom:368.355000px;}
.y84{bottom:376.455000px;}
.y4c{bottom:382.755000px;}
.y6f{bottom:383.295000px;}
.ye6{bottom:385.635000px;}
.yc4{bottom:386.895000px;}
.y28{bottom:387.255000px;}
.ya7{bottom:397.335000px;}
.ye5{bottom:402.915000px;}
.y6e{bottom:403.995000px;}
.y27{bottom:407.055000px;}
.y83{bottom:413.355000px;}
.y4b{bottom:418.575000px;}
.ye4{bottom:420.195000px;}
.y26{bottom:422.715000px;}
.ya6{bottom:429.195000px;}
.ye3{bottom:437.475000px;}
.y25{bottom:438.195000px;}
.y10a{bottom:438.735000px;}
.y4a{bottom:439.275000px;}
.y6d{bottom:439.815000px;}
.y24{bottom:453.675000px;}
.y82{bottom:454.755000px;}
.y109{bottom:456.015000px;}
.yc3{bottom:459.255000px;}
.y49{bottom:459.975000px;}
.y6c{bottom:460.515000px;}
.ya4{bottom:461.055000px;}
.y23{bottom:469.155000px;}
.ye2{bottom:472.575000px;}
.y108{bottom:473.295000px;}
.y81{bottom:475.455000px;}
.y48{bottom:480.675000px;}
.y6b{bottom:481.215000px;}
.y22{bottom:484.815000px;}
.yc2{bottom:485.715000px;}
.ye1{bottom:489.855000px;}
.y80{bottom:496.155000px;}
.y21{bottom:500.295000px;}
.y47{bottom:501.375000px;}
.y6a{bottom:501.915000px;}
.ye0{bottom:507.135000px;}
.ya0{bottom:508.215000px;}
.y107{bottom:508.575000px;}
.y20{bottom:515.775000px;}
.y7f{bottom:516.855000px;}
.y69{bottom:522.615000px;}
.ydf{bottom:524.415000px;}
.y106{bottom:525.855000px;}
.y1f{bottom:531.255000px;}
.y46{bottom:537.015000px;}
.y7e{bottom:537.555000px;}
.y98{bottom:540.075000px;}
.y105{bottom:542.955000px;}
.y68{bottom:543.315000px;}
.y1e{bottom:546.915000px;}
.y45{bottom:557.745000px;}
.y7d{bottom:558.285000px;}
.yde{bottom:559.725000px;}
.y104{bottom:560.265000px;}
.y1d{bottom:562.425000px;}
.ydd{bottom:577.005000px;}
.y1c{bottom:577.905000px;}
.y44{bottom:578.445000px;}
.y67{bottom:578.985000px;}
.y1b{bottom:593.385000px;}
.ydc{bottom:594.105000px;}
.y103{bottom:595.545000px;}
.y43{bottom:599.145000px;}
.y66{bottom:599.685000px;}
.y1a{bottom:609.045000px;}
.y102{bottom:612.825000px;}
.y42{bottom:619.845000px;}
.y65{bottom:620.385000px;}
.y19{bottom:624.525000px;}
.ydb{bottom:629.385000px;}
.y101{bottom:630.105000px;}
.y18{bottom:640.005000px;}
.y41{bottom:640.545000px;}
.y64{bottom:641.085000px;}
.yda{bottom:646.665000px;}
.y17{bottom:655.485000px;}
.y7c{bottom:656.025000px;}
.y40{bottom:661.245000px;}
.y97{bottom:665.025000px;}
.y100{bottom:665.205000px;}
.yc1{bottom:670.425000px;}
.y16{bottom:671.145000px;}
.y63{bottom:676.725000px;}
.y95{bottom:681.405000px;}
.yd9{bottom:681.945000px;}
.yff{bottom:682.485000px;}
.y15{bottom:686.625000px;}
.yc0{bottom:689.685000px;}
.y3f{bottom:696.885000px;}
.y62{bottom:697.425000px;}
.yd8{bottom:699.225000px;}
.yfe{bottom:699.765000px;}
.ybf{bottom:710.385000px;}
.y93{bottom:713.085000px;}
.yd7{bottom:716.505000px;}
.yfd{bottom:717.045000px;}
.y3e{bottom:717.585000px;}
.y61{bottom:718.125000px;}
.y14{bottom:720.285000px;}
.ybe{bottom:731.085000px;}
.y92{bottom:733.245000px;}
.y3d{bottom:738.285000px;}
.y60{bottom:738.825000px;}
.y13{bottom:739.725000px;}
.yd6{bottom:751.605000px;}
.ybd{bottom:751.785000px;}
.yfc{bottom:752.325000px;}
.y91{bottom:753.945000px;}
.y3c{bottom:758.985000px;}
.y7b{bottom:759.525000px;}
.y12{bottom:760.425000px;}
.yd5{bottom:768.885000px;}
.yfb{bottom:769.605000px;}
.ybc{bottom:772.485000px;}
.y5f{bottom:774.645000px;}
.y3b{bottom:779.685000px;}
.y11{bottom:781.125000px;}
.yd4{bottom:786.165000px;}
.yfa{bottom:786.705000px;}
.ybb{bottom:793.185000px;}
.y5e{bottom:795.345000px;}
.y3a{bottom:800.385000px;}
.y10{bottom:801.825000px;}
.yba{bottom:813.930000px;}
.y5d{bottom:816.090000px;}
.yd3{bottom:819.150000px;}
.y39{bottom:821.130000px;}
.yf9{bottom:822.030000px;}
.yf{bottom:822.570000px;}
.yb9{bottom:834.630000px;}
.y5c{bottom:836.790000px;}
.yf8{bottom:839.310000px;}
.y90{bottom:851.910000px;}
.yb8{bottom:855.330000px;}
.yf7{bottom:856.590000px;}
.y38{bottom:856.950000px;}
.y5b{bottom:857.490000px;}
.ye{bottom:862.710000px;}
.yd2{bottom:865.950000px;}
.yb7{bottom:876.030000px;}
.y37{bottom:877.650000px;}
.y5a{bottom:878.190000px;}
.yd1{bottom:887.730000px;}
.yd{bottom:890.250000px;}
.yf6{bottom:891.870000px;}
.y7a{bottom:893.130000px;}
.yb6{bottom:896.730000px;}
.y36{bottom:898.350000px;}
.yf5{bottom:909.150000px;}
.y59{bottom:913.830000px;}
.y35{bottom:919.050000px;}
.yf4{bottom:926.250000px;}
.yd0{bottom:930.570000px;}
.yb5{bottom:932.550000px;}
.y58{bottom:934.530000px;}
.yc{bottom:936.510000px;}
.y34{bottom:939.750000px;}
.y57{bottom:955.230000px;}
.yb4{bottom:958.830000px;}
.yf3{bottom:961.530000px;}
.yb{bottom:967.650000px;}
.y33{bottom:970.350000px;}
.y56{bottom:975.930000px;}
.yb3{bottom:976.470000px;}
.ycf{bottom:977.370000px;}
.yf2{bottom:978.810000px;}
.y8{bottom:996.270000px;}
.y7{bottom:1033.890000px;}
.y6{bottom:1047.570000px;}
.y5{bottom:1061.430000px;}
.y4{bottom:1075.320000px;}
.y3{bottom:1089.000000px;}
.y2{bottom:1102.860000px;}
.y1{bottom:1117.980000px;}
.ha{height:5.163750px;}
.h11{height:15.480000px;}
.h19{height:15.660000px;}
.h12{height:30.960000px;}
.h14{height:31.140000px;}
.hd{height:34.855313px;}
.h3{height:43.246406px;}
.h2{height:43.646836px;}
.h15{height:46.440000px;}
.h17{height:46.476000px;}
.h16{height:46.620000px;}
.hc{height:48.410156px;}
.hb{height:48.858398px;}
.he{height:53.573906px;}
.h1{height:54.105469px;}
.h4{height:59.383125px;}
.h18{height:62.100000px;}
.h9{height:64.546875px;}
.h8{height:65.144531px;}
.h6{height:74.408203px;}
.h5{height:74.988281px;}
.h10{height:76.219102px;}
.hf{height:85.847344px;}
.h7{height:86.642227px;}
.h13{height:124.236000px;}
.h0{height:1188.000000px;}
.w3{width:159.510000px;}
.w4{width:499.785000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:15.480000px;}
.x12{left:17.460000px;}
.x17{left:20.340000px;}
.x19{left:22.314000px;}
.x13{left:24.474000px;}
.xf{left:26.814000px;}
.x14{left:33.834000px;}
.x11{left:35.100000px;}
.x1a{left:39.954000px;}
.x15{left:41.034000px;}
.x16{left:44.814000px;}
.xd{left:49.674000px;}
.x10{left:60.114000px;}
.x1{left:127.655986px;}
.xc{left:129.456000px;}
.x5{left:132.515986px;}
.x3{left:148.175986px;}
.x1c{left:170.129986px;}
.x4{left:209.549986px;}
.x6{left:243.569986px;}
.x7{left:263.414986px;}
.xe{left:288.975000px;}
.xb{left:343.694986px;}
.x8{left:382.034986px;}
.xa{left:403.274986px;}
.x2{left:428.294986px;}
.x9{left:478.184973px;}
.x1b{left:692.429986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-1.408000pt;}
.ls15{letter-spacing:-1.306667pt;}
.ls13{letter-spacing:-1.024000pt;}
.ls12{letter-spacing:-0.768000pt;}
.ls35{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.666667pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.512000pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls4c{letter-spacing:-0.272533pt;}
.ls47{letter-spacing:-0.271467pt;}
.ls4f{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls36{letter-spacing:-0.168533pt;}
.ls6{letter-spacing:-0.161067pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls43{letter-spacing:-0.097067pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls50{letter-spacing:-0.089067pt;}
.ls2a{letter-spacing:-0.064000pt;}
.ls4d{letter-spacing:-0.047360pt;}
.ls45{letter-spacing:-0.016640pt;}
.ls5{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.016000pt;}
.ls38{letter-spacing:0.016640pt;}
.ls29{letter-spacing:0.032000pt;}
.ls4b{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.096000pt;}
.ls2b{letter-spacing:0.112000pt;}
.lse{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.185067pt;}
.ls1{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.224000pt;}
.ls53{letter-spacing:0.231040pt;}
.ls46{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.271360pt;}
.ls48{letter-spacing:0.271467pt;}
.ls52{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.288000pt;}
.ls4a{letter-spacing:0.320000pt;}
.ls51{letter-spacing:0.367467pt;}
.ls44{letter-spacing:0.368533pt;}
.ls58{letter-spacing:0.409067pt;}
.ls39{letter-spacing:0.471467pt;}
.ls4e{letter-spacing:0.544000pt;}
.ls57{letter-spacing:0.545280pt;}
.ls42{letter-spacing:0.549333pt;}
.ls54{letter-spacing:0.592640pt;}
.ls37{letter-spacing:0.624000pt;}
.ls49{letter-spacing:0.688000pt;}
.ls2f{letter-spacing:0.768000pt;}
.ls3d{letter-spacing:0.871040pt;}
.ls33{letter-spacing:1.263360pt;}
.ls1e{letter-spacing:1.408000pt;}
.ls30{letter-spacing:1.514667pt;}
.ls1f{letter-spacing:2.048000pt;}
.ls55{letter-spacing:2.512640pt;}
.ls3b{letter-spacing:3.152640pt;}
.lsc{letter-spacing:3.968000pt;}
.ls16{letter-spacing:4.608000pt;}
.ls3c{letter-spacing:5.072640pt;}
.lsb{letter-spacing:5.888000pt;}
.ls1a{letter-spacing:6.048000pt;}
.ls17{letter-spacing:6.528000pt;}
.ls2d{letter-spacing:7.168000pt;}
.ls2e{letter-spacing:7.274667pt;}
.ls20{letter-spacing:8.448000pt;}
.ls1b{letter-spacing:9.248000pt;}
.ls1c{letter-spacing:9.728000pt;}
.ls3f{letter-spacing:11.472640pt;}
.ls40{letter-spacing:12.112640pt;}
.ls41{letter-spacing:12.219307pt;}
.ls1d{letter-spacing:12.288000pt;}
.ls3a{letter-spacing:14.032640pt;}
.ls18{letter-spacing:14.826667pt;}
.ls32{letter-spacing:14.954667pt;}
.ls3e{letter-spacing:18.512640pt;}
.lsa{letter-spacing:18.688000pt;}
.ls19{letter-spacing:19.434667pt;}
.ls23{letter-spacing:21.248000pt;}
.ls21{letter-spacing:21.888000pt;}
.ls56{letter-spacing:22.992640pt;}
.ls22{letter-spacing:23.168000pt;}
.lsf{letter-spacing:25.088000pt;}
.ls31{letter-spacing:26.368000pt;}
.ls10{letter-spacing:41.903360pt;}
.ls4{letter-spacing:751.770027pt;}
.ws9{word-spacing:-85.120000pt;}
.ws31{word-spacing:-31.022080pt;}
.ws20{word-spacing:-24.287360pt;}
.ws22{word-spacing:-24.134827pt;}
.ws2{word-spacing:-24.000000pt;}
.ws3{word-spacing:-23.848427pt;}
.ws21{word-spacing:-23.680000pt;}
.ws1f{word-spacing:-23.663360pt;}
.ws25{word-spacing:-23.646720pt;}
.ws1e{word-spacing:-23.494827pt;}
.wsf{word-spacing:-20.149973pt;}
.ws10{word-spacing:-19.509973pt;}
.wsb{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.984000pt;}
.ws11{word-spacing:-17.920000pt;}
.ws16{word-spacing:-17.728000pt;}
.wsa{word-spacing:-17.664000pt;}
.ws14{word-spacing:-17.600000pt;}
.ws5{word-spacing:-17.408000pt;}
.ws13{word-spacing:-17.344000pt;}
.ws1c{word-spacing:-17.280000pt;}
.ws12{word-spacing:-17.152000pt;}
.ws1d{word-spacing:-17.088000pt;}
.wsc{word-spacing:-17.024000pt;}
.wsd{word-spacing:-16.768000pt;}
.ws24{word-spacing:-16.737173pt;}
.ws29{word-spacing:-16.640107pt;}
.ws27{word-spacing:-16.601707pt;}
.ws15{word-spacing:-16.384000pt;}
.ws26{word-spacing:-16.368640pt;}
.ws23{word-spacing:-16.271573pt;}
.ws28{word-spacing:-16.097173pt;}
.ws2a{word-spacing:-15.455360pt;}
.ws35{word-spacing:-15.316693pt;}
.ws2f{word-spacing:-15.311360pt;}
.ws36{word-spacing:-15.176427pt;}
.ws33{word-spacing:-15.134827pt;}
.ws2b{word-spacing:-15.087360pt;}
.ws34{word-spacing:-15.039893pt;}
.ws2c{word-spacing:-14.814720pt;}
.ws6{word-spacing:-14.767360pt;}
.ws2e{word-spacing:-14.720000pt;}
.ws32{word-spacing:-14.678293pt;}
.ws7{word-spacing:-14.672427pt;}
.ws30{word-spacing:-14.536427pt;}
.ws2d{word-spacing:-14.494827pt;}
.ws1a{word-spacing:-13.568000pt;}
.ws18{word-spacing:-13.536000pt;}
.ws17{word-spacing:-13.456000pt;}
.ws1b{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.344000pt;}
.ws19{word-spacing:-12.896000pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.ws8{word-spacing:0.000000pt;}
._16{margin-left:-4.944853pt;}
._15{margin-left:-4.036480pt;}
._a{margin-left:-2.841813pt;}
._9{margin-left:-1.910187pt;}
._0{margin-left:-0.943360pt;}
._3{width:0.900480pt;}
._6{width:2.019840pt;}
._d{width:3.737600pt;}
._8{width:4.899200pt;}
._1{width:6.174720pt;}
._2{width:7.289600pt;}
._4{width:8.496000pt;}
._5{width:9.850667pt;}
._12{width:10.994560pt;}
._b{width:12.288000pt;}
._20{width:13.514667pt;}
._7{width:14.880000pt;}
._c{width:16.176000pt;}
._11{width:18.922667pt;}
._1b{width:20.650667pt;}
._14{width:22.439253pt;}
._13{width:23.786667pt;}
._19{width:25.194667pt;}
._f{width:26.148053pt;}
._e{width:27.078187pt;}
._10{width:27.986560pt;}
._1c{width:29.674667pt;}
._18{width:30.715307pt;}
._17{width:31.658667pt;}
._1e{width:33.024000pt;}
._1d{width:34.666667pt;}
._1f{width:36.123520pt;}
._29{width:37.535360pt;}
._2a{width:38.560427pt;}
._1a{width:41.476693pt;}
._21{width:44.896000pt;}
._2d{width:48.699520pt;}
._2c{width:49.884800pt;}
._27{width:53.300267pt;}
._26{width:54.299520pt;}
._23{width:95.289600pt;}
._22{width:96.337920pt;}
._2b{width:111.760000pt;}
._30{width:148.042240pt;}
._2e{width:152.557440pt;}
._2f{width:249.563307pt;}
._28{width:465.745707pt;}
._25{width:855.888000pt;}
._24{width:856.784853pt;}
.fs5{font-size:5.120000pt;}
.fs7{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:2.560000pt;}
.ya3{bottom:2.720000pt;}
.ya1{bottom:9.600000pt;}
.y96{bottom:16.320000pt;}
.ya2{bottom:16.480000pt;}
.y9f{bottom:16.506667pt;}
.yb0{bottom:23.354667pt;}
.ya9{bottom:23.360000pt;}
.ya5{bottom:30.080000pt;}
.yb2{bottom:30.234667pt;}
.yaa{bottom:30.240000pt;}
.y9e{bottom:30.266667pt;}
.yb1{bottom:43.994667pt;}
.y9a{bottom:44.026667pt;}
.ya{bottom:50.272000pt;}
.y99{bottom:57.786667pt;}
.y9{bottom:69.152000pt;}
.y9d{bottom:71.706667pt;}
.y9c{bottom:85.466667pt;}
.y9b{bottom:99.226667pt;}
.yaf{bottom:114.592000pt;}
.y32{bottom:116.192000pt;}
.y8f{bottom:118.912000pt;}
.y55{bottom:122.272000pt;}
.yf1{bottom:126.112000pt;}
.y31{bottom:131.552000pt;}
.y30{bottom:135.546667pt;}
.y8e{bottom:137.306667pt;}
.y54{bottom:140.666667pt;}
.yf0{bottom:141.466667pt;}
.yce{bottom:141.626667pt;}
.y79{bottom:143.386667pt;}
.y2f{bottom:147.066667pt;}
.y8d{bottom:155.706667pt;}
.yef{bottom:156.826667pt;}
.y78{bottom:161.786667pt;}
.yae{bottom:170.426667pt;}
.yee{bottom:172.186667pt;}
.y53{bottom:172.986667pt;}
.ycd{bottom:178.266667pt;}
.y77{bottom:180.186667pt;}
.y8c{bottom:187.386667pt;}
.y52{bottom:194.586667pt;}
.ycc{bottom:196.666667pt;}
.y76{bottom:198.586667pt;}
.yed{bottom:203.386667pt;}
.y8b{bottom:205.786667pt;}
.yad{bottom:212.506667pt;}
.ycb{bottom:215.066667pt;}
.y75{bottom:216.986667pt;}
.yec{bottom:218.746667pt;}
.y51{bottom:220.186667pt;}
.y8a{bottom:224.186667pt;}
.yac{bottom:227.066667pt;}
.yca{bottom:233.466667pt;}
.yeb{bottom:234.106667pt;}
.y74{bottom:235.386667pt;}
.y2e{bottom:238.426667pt;}
.y89{bottom:242.586667pt;}
.y50{bottom:248.346667pt;}
.yea{bottom:249.466667pt;}
.yc9{bottom:251.866667pt;}
.y2d{bottom:256.026667pt;}
.y88{bottom:261.026667pt;}
.y73{bottom:267.106667pt;}
.yab{bottom:269.026667pt;}
.yc8{bottom:270.306667pt;}
.y2c{bottom:270.626667pt;}
.y87{bottom:279.426667pt;}
.ye9{bottom:280.866667pt;}
.y4f{bottom:285.026667pt;}
.y72{bottom:285.506667pt;}
.yc7{bottom:288.706667pt;}
.y2b{bottom:289.026667pt;}
.ye8{bottom:296.226667pt;}
.y86{bottom:297.826667pt;}
.y4e{bottom:303.426667pt;}
.y71{bottom:303.906667pt;}
.yc6{bottom:307.106667pt;}
.y2a{bottom:307.426667pt;}
.ya8{bottom:311.106667pt;}
.y85{bottom:316.226667pt;}
.y4d{bottom:321.826667pt;}
.y70{bottom:322.306667pt;}
.yc5{bottom:325.506667pt;}
.y29{bottom:325.826667pt;}
.ye7{bottom:327.426667pt;}
.y84{bottom:334.626667pt;}
.y4c{bottom:340.226667pt;}
.y6f{bottom:340.706667pt;}
.ye6{bottom:342.786667pt;}
.yc4{bottom:343.906667pt;}
.y28{bottom:344.226667pt;}
.ya7{bottom:353.186667pt;}
.ye5{bottom:358.146667pt;}
.y6e{bottom:359.106667pt;}
.y27{bottom:361.826667pt;}
.y83{bottom:367.426667pt;}
.y4b{bottom:372.066667pt;}
.ye4{bottom:373.506667pt;}
.y26{bottom:375.746667pt;}
.ya6{bottom:381.506667pt;}
.ye3{bottom:388.866667pt;}
.y25{bottom:389.506667pt;}
.y10a{bottom:389.986667pt;}
.y4a{bottom:390.466667pt;}
.y6d{bottom:390.946667pt;}
.y24{bottom:403.266667pt;}
.y82{bottom:404.226667pt;}
.y109{bottom:405.346667pt;}
.yc3{bottom:408.226667pt;}
.y49{bottom:408.866667pt;}
.y6c{bottom:409.346667pt;}
.ya4{bottom:409.826667pt;}
.y23{bottom:417.026667pt;}
.ye2{bottom:420.066667pt;}
.y108{bottom:420.706667pt;}
.y81{bottom:422.626667pt;}
.y48{bottom:427.266667pt;}
.y6b{bottom:427.746667pt;}
.y22{bottom:430.946667pt;}
.yc2{bottom:431.746667pt;}
.ye1{bottom:435.426667pt;}
.y80{bottom:441.026667pt;}
.y21{bottom:444.706667pt;}
.y47{bottom:445.666667pt;}
.y6a{bottom:446.146667pt;}
.ye0{bottom:450.786667pt;}
.ya0{bottom:451.746667pt;}
.y107{bottom:452.066667pt;}
.y20{bottom:458.466667pt;}
.y7f{bottom:459.426667pt;}
.y69{bottom:464.546667pt;}
.ydf{bottom:466.146667pt;}
.y106{bottom:467.426667pt;}
.y1f{bottom:472.226667pt;}
.y46{bottom:477.346667pt;}
.y7e{bottom:477.826667pt;}
.y98{bottom:480.066667pt;}
.y105{bottom:482.626667pt;}
.y68{bottom:482.946667pt;}
.y1e{bottom:486.146667pt;}
.y45{bottom:495.773333pt;}
.y7d{bottom:496.253333pt;}
.yde{bottom:497.533333pt;}
.y104{bottom:498.013333pt;}
.y1d{bottom:499.933333pt;}
.ydd{bottom:512.893333pt;}
.y1c{bottom:513.693333pt;}
.y44{bottom:514.173333pt;}
.y67{bottom:514.653333pt;}
.y1b{bottom:527.453333pt;}
.ydc{bottom:528.093333pt;}
.y103{bottom:529.373333pt;}
.y43{bottom:532.573333pt;}
.y66{bottom:533.053333pt;}
.y1a{bottom:541.373333pt;}
.y102{bottom:544.733333pt;}
.y42{bottom:550.973333pt;}
.y65{bottom:551.453333pt;}
.y19{bottom:555.133333pt;}
.ydb{bottom:559.453333pt;}
.y101{bottom:560.093333pt;}
.y18{bottom:568.893333pt;}
.y41{bottom:569.373333pt;}
.y64{bottom:569.853333pt;}
.yda{bottom:574.813333pt;}
.y17{bottom:582.653333pt;}
.y7c{bottom:583.133333pt;}
.y40{bottom:587.773333pt;}
.y97{bottom:591.133333pt;}
.y100{bottom:591.293333pt;}
.yc1{bottom:595.933333pt;}
.y16{bottom:596.573333pt;}
.y63{bottom:601.533333pt;}
.y95{bottom:605.693333pt;}
.yd9{bottom:606.173333pt;}
.yff{bottom:606.653333pt;}
.y15{bottom:610.333333pt;}
.yc0{bottom:613.053333pt;}
.y3f{bottom:619.453333pt;}
.y62{bottom:619.933333pt;}
.yd8{bottom:621.533333pt;}
.yfe{bottom:622.013333pt;}
.ybf{bottom:631.453333pt;}
.y93{bottom:633.853333pt;}
.yd7{bottom:636.893333pt;}
.yfd{bottom:637.373333pt;}
.y3e{bottom:637.853333pt;}
.y61{bottom:638.333333pt;}
.y14{bottom:640.253333pt;}
.ybe{bottom:649.853333pt;}
.y92{bottom:651.773333pt;}
.y3d{bottom:656.253333pt;}
.y60{bottom:656.733333pt;}
.y13{bottom:657.533333pt;}
.yd6{bottom:668.093333pt;}
.ybd{bottom:668.253333pt;}
.yfc{bottom:668.733333pt;}
.y91{bottom:670.173333pt;}
.y3c{bottom:674.653333pt;}
.y7b{bottom:675.133333pt;}
.y12{bottom:675.933333pt;}
.yd5{bottom:683.453333pt;}
.yfb{bottom:684.093333pt;}
.ybc{bottom:686.653333pt;}
.y5f{bottom:688.573333pt;}
.y3b{bottom:693.053333pt;}
.y11{bottom:694.333333pt;}
.yd4{bottom:698.813333pt;}
.yfa{bottom:699.293333pt;}
.ybb{bottom:705.053333pt;}
.y5e{bottom:706.973333pt;}
.y3a{bottom:711.453333pt;}
.y10{bottom:712.733333pt;}
.yba{bottom:723.493333pt;}
.y5d{bottom:725.413333pt;}
.yd3{bottom:728.133333pt;}
.y39{bottom:729.893333pt;}
.yf9{bottom:730.693333pt;}
.yf{bottom:731.173333pt;}
.yb9{bottom:741.893333pt;}
.y5c{bottom:743.813333pt;}
.yf8{bottom:746.053333pt;}
.y90{bottom:757.253333pt;}
.yb8{bottom:760.293333pt;}
.yf7{bottom:761.413333pt;}
.y38{bottom:761.733333pt;}
.y5b{bottom:762.213333pt;}
.ye{bottom:766.853333pt;}
.yd2{bottom:769.733333pt;}
.yb7{bottom:778.693333pt;}
.y37{bottom:780.133333pt;}
.y5a{bottom:780.613333pt;}
.yd1{bottom:789.093333pt;}
.yd{bottom:791.333333pt;}
.yf6{bottom:792.773333pt;}
.y7a{bottom:793.893333pt;}
.yb6{bottom:797.093333pt;}
.y36{bottom:798.533333pt;}
.yf5{bottom:808.133333pt;}
.y59{bottom:812.293333pt;}
.y35{bottom:816.933333pt;}
.yf4{bottom:823.333333pt;}
.yd0{bottom:827.173333pt;}
.yb5{bottom:828.933333pt;}
.y58{bottom:830.693333pt;}
.yc{bottom:832.453333pt;}
.y34{bottom:835.333333pt;}
.y57{bottom:849.093333pt;}
.yb4{bottom:852.293333pt;}
.yf3{bottom:854.693333pt;}
.yb{bottom:860.133333pt;}
.y33{bottom:862.533333pt;}
.y56{bottom:867.493333pt;}
.yb3{bottom:867.973333pt;}
.ycf{bottom:868.773333pt;}
.yf2{bottom:870.053333pt;}
.y8{bottom:885.573333pt;}
.y7{bottom:919.013333pt;}
.y6{bottom:931.173333pt;}
.y5{bottom:943.493333pt;}
.y4{bottom:955.840000pt;}
.y3{bottom:968.000000pt;}
.y2{bottom:980.320000pt;}
.y1{bottom:993.760000pt;}
.ha{height:4.590000pt;}
.h11{height:13.760000pt;}
.h19{height:13.920000pt;}
.h12{height:27.520000pt;}
.h14{height:27.680000pt;}
.hd{height:30.982500pt;}
.h3{height:38.441250pt;}
.h2{height:38.797187pt;}
.h15{height:41.280000pt;}
.h17{height:41.312000pt;}
.h16{height:41.440000pt;}
.hc{height:43.031250pt;}
.hb{height:43.429688pt;}
.he{height:47.621250pt;}
.h1{height:48.093750pt;}
.h4{height:52.785000pt;}
.h18{height:55.200000pt;}
.h9{height:57.375000pt;}
.h8{height:57.906250pt;}
.h6{height:66.140625pt;}
.h5{height:66.656250pt;}
.h10{height:67.750312pt;}
.hf{height:76.308750pt;}
.h7{height:77.015312pt;}
.h13{height:110.432000pt;}
.h0{height:1056.000000pt;}
.w3{width:141.786667pt;}
.w4{width:444.253333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:13.760000pt;}
.x12{left:15.520000pt;}
.x17{left:18.080000pt;}
.x19{left:19.834667pt;}
.x13{left:21.754667pt;}
.xf{left:23.834667pt;}
.x14{left:30.074667pt;}
.x11{left:31.200000pt;}
.x1a{left:35.514667pt;}
.x15{left:36.474667pt;}
.x16{left:39.834667pt;}
.xd{left:44.154667pt;}
.x10{left:53.434667pt;}
.x1{left:113.471988pt;}
.xc{left:115.072000pt;}
.x5{left:117.791988pt;}
.x3{left:131.711988pt;}
.x1c{left:151.226655pt;}
.x4{left:186.266655pt;}
.x6{left:216.506655pt;}
.x7{left:234.146655pt;}
.xe{left:256.866667pt;}
.xb{left:305.506655pt;}
.x8{left:339.586655pt;}
.xa{left:358.466655pt;}
.x2{left:380.706655pt;}
.x9{left:425.053309pt;}
.x1b{left:615.493321pt;}
}




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