
    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_161df3242dd6ee4de2b13747.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.080566;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_b039ccaceb3db6333d84743d.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4968cfe854a097fbfc8abfa5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.858398;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_bd2b7103f46ebc91a9bfd60e.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws8b{word-spacing:-55.944000px;}
.ws5f{word-spacing:-39.020400px;}
.ws9c{word-spacing:-38.869200px;}
.ws99{word-spacing:-38.661000px;}
.ws6{word-spacing:-38.657700px;}
.wsc{word-spacing:-38.650500px;}
.ws5{word-spacing:-38.647800px;}
.wsb3{word-spacing:-38.587200px;}
.wsa{word-spacing:-38.425500px;}
.ws9{word-spacing:-38.415600px;}
.ws3{word-spacing:-38.374200px;}
.wsc3{word-spacing:-38.372100px;}
.ws15{word-spacing:-38.304000px;}
.ws46{word-spacing:-38.292300px;}
.wsc2{word-spacing:-38.158200px;}
.ws0{word-spacing:-37.944000px;}
.wsb{word-spacing:-37.939200px;}
.ws4{word-spacing:-37.938600px;}
.ws2{word-spacing:-37.931400px;}
.ws3d{word-spacing:-37.720800px;}
.ws9b{word-spacing:-37.718700px;}
.wsd{word-spacing:-37.709100px;}
.ws49{word-spacing:-37.580400px;}
.ws59{word-spacing:-37.570500px;}
.ws55{word-spacing:-37.432800px;}
.ws3a{word-spacing:-37.209600px;}
.ws69{word-spacing:-37.205100px;}
.wsaf{word-spacing:-36.847800px;}
.ws2b{word-spacing:-36.646800px;}
.wsbf{word-spacing:-35.919000px;}
.ws84{word-spacing:-35.057700px;}
.ws13{word-spacing:-35.041500px;}
.ws51{word-spacing:-34.710000px;}
.wsad{word-spacing:-34.696200px;}
.ws92{word-spacing:-34.554600px;}
.wse{word-spacing:-34.344000px;}
.wsc6{word-spacing:-33.984000px;}
.ws45{word-spacing:-33.971100px;}
.wsf{word-spacing:-33.964500px;}
.ws8{word-spacing:-33.547800px;}
.ws70{word-spacing:-33.263700px;}
.ws6f{word-spacing:-33.040800px;}
.ws1e{word-spacing:-32.905500px;}
.ws1d{word-spacing:-32.904000px;}
.ws20{word-spacing:-32.816700px;}
.ws65{word-spacing:-32.534100px;}
.ws43{word-spacing:-32.184000px;}
.wsa3{word-spacing:-31.956600px;}
.ws36{word-spacing:-31.824000px;}
.wsbc{word-spacing:-31.807800px;}
.ws5a{word-spacing:-31.672200px;}
.ws26{word-spacing:-30.744000px;}
.ws61{word-spacing:-30.669300px;}
.ws40{word-spacing:-30.654000px;}
.ws60{word-spacing:-30.462000px;}
.ws50{word-spacing:-30.390000px;}
.ws8f{word-spacing:-30.234600px;}
.wsbb{word-spacing:-29.724600px;}
.ws85{word-spacing:-29.649300px;}
.ws24{word-spacing:-29.637900px;}
.ws31{word-spacing:-28.946400px;}
.ws81{word-spacing:-28.584000px;}
.ws10{word-spacing:-28.213800px;}
.ws2a{word-spacing:-27.999000px;}
.ws7e{word-spacing:-27.864000px;}
.wsc4{word-spacing:-27.342900px;}
.ws17{word-spacing:-27.336600px;}
.ws29{word-spacing:-27.288000px;}
.ws39{word-spacing:-27.144000px;}
.ws3e{word-spacing:-26.775000px;}
.wsbd{word-spacing:-26.769600px;}
.ws16{word-spacing:-26.640000px;}
.ws34{word-spacing:-26.632800px;}
.wsa7{word-spacing:-26.619300px;}
.ws66{word-spacing:-26.424000px;}
.wsba{word-spacing:-26.409300px;}
.wsb0{word-spacing:-26.046900px;}
.ws7a{word-spacing:-25.691400px;}
.ws4a{word-spacing:-25.682400px;}
.ws9a{word-spacing:-25.204200px;}
.ws71{word-spacing:-24.984000px;}
.wsc1{word-spacing:-24.031800px;}
.wsa6{word-spacing:-23.688000px;}
.ws68{word-spacing:-23.535000px;}
.ws78{word-spacing:-23.466600px;}
.ws52{word-spacing:-23.038200px;}
.ws8a{word-spacing:-21.736500px;}
.wsca{word-spacing:-21.528000px;}
.ws47{word-spacing:-20.011200px;}
.wsb4{word-spacing:-19.722600px;}
.ws48{word-spacing:-19.426500px;}
.wsa2{word-spacing:-19.224000px;}
.ws67{word-spacing:-19.222200px;}
.ws72{word-spacing:-18.850500px;}
.wsc7{word-spacing:-18.845100px;}
.ws7{word-spacing:-18.472500px;}
.ws14{word-spacing:-18.210300px;}
.ws4c{word-spacing:-18.119700px;}
.ws79{word-spacing:-17.920800px;}
.ws63{word-spacing:-17.706600px;}
.ws82{word-spacing:-17.424000px;}
.ws54{word-spacing:-17.415000px;}
.ws58{word-spacing:-17.062200px;}
.wsc0{word-spacing:-16.696500px;}
.ws97{word-spacing:-16.344000px;}
.ws4b{word-spacing:-15.622200px;}
.ws4d{word-spacing:-15.617700px;}
.ws9f{word-spacing:-15.100200px;}
.ws64{word-spacing:-14.891400px;}
.ws22{word-spacing:-14.674500px;}
.wsb7{word-spacing:-14.392500px;}
.wsb8{word-spacing:-14.378400px;}
.ws3b{word-spacing:-14.176200px;}
.ws6d{word-spacing:-13.953600px;}
.wsb5{word-spacing:-13.606800px;}
.ws91{word-spacing:-13.104000px;}
.ws21{word-spacing:-13.088700px;}
.ws19{word-spacing:-13.081800px;}
.ws18{word-spacing:-12.744000px;}
.ws42{word-spacing:-11.646600px;}
.ws35{word-spacing:-11.310000px;}
.ws30{word-spacing:-9.855900px;}
.ws1f{word-spacing:-9.786300px;}
.wsb1{word-spacing:-9.333900px;}
.ws9d{word-spacing:-9.128100px;}
.ws25{word-spacing:-8.765100px;}
.ws4f{word-spacing:-8.632200px;}
.wsa8{word-spacing:-7.893900px;}
.wsab{word-spacing:-7.704000px;}
.ws73{word-spacing:-6.903600px;}
.wsa1{word-spacing:-6.319800px;}
.ws56{word-spacing:-5.044200px;}
.ws2e{word-spacing:-4.607700px;}
.ws83{word-spacing:-4.599000px;}
.ws12{word-spacing:-3.803400px;}
.wsc8{word-spacing:-2.664000px;}
.ws87{word-spacing:-2.660400px;}
.ws4e{word-spacing:-2.637900px;}
.ws1c{word-spacing:-2.368800px;}
.wsc5{word-spacing:-1.944000px;}
.ws80{word-spacing:-1.935900px;}
.ws37{word-spacing:-1.934100px;}
.ws44{word-spacing:-1.222200px;}
.wsae{word-spacing:-0.640800px;}
.wsc9{word-spacing:-0.482400px;}
.ws5d{word-spacing:0.007200px;}
.ws28{word-spacing:0.007800px;}
.wsb6{word-spacing:0.210000px;}
.ws89{word-spacing:0.216000px;}
.ws75{word-spacing:0.593100px;}
.ws9e{word-spacing:1.667400px;}
.ws5e{word-spacing:2.016000px;}
.ws7c{word-spacing:2.663400px;}
.ws1b{word-spacing:2.737800px;}
.ws90{word-spacing:2.900100px;}
.ws93{word-spacing:3.113400px;}
.wsaa{word-spacing:3.164700px;}
.wsa0{word-spacing:3.478200px;}
.ws2d{word-spacing:3.810000px;}
.ws7f{word-spacing:4.327200px;}
.wsbe{word-spacing:4.905900px;}
.wsa4{word-spacing:5.271300px;}
.ws94{word-spacing:5.617800px;}
.ws33{word-spacing:5.628600px;}
.ws95{word-spacing:5.776800px;}
.ws8e{word-spacing:5.778000px;}
.ws6e{word-spacing:6.483900px;}
.ws7b{word-spacing:6.696000px;}
.ws32{word-spacing:8.137800px;}
.wsb2{word-spacing:8.143800px;}
.ws62{word-spacing:8.856000px;}
.ws57{word-spacing:9.591300px;}
.ws5b{word-spacing:10.656000px;}
.ws2c{word-spacing:10.663200px;}
.ws41{word-spacing:12.834900px;}
.ws88{word-spacing:13.177800px;}
.ws11{word-spacing:13.257300px;}
.ws74{word-spacing:13.913100px;}
.ws96{word-spacing:14.125500px;}
.ws1a{word-spacing:14.263200px;}
.ws8d{word-spacing:15.842700px;}
.ws8c{word-spacing:16.056000px;}
.ws38{word-spacing:17.152200px;}
.ws98{word-spacing:18.440400px;}
.ws7d{word-spacing:20.035800px;}
.wsb9{word-spacing:20.665200px;}
.ws53{word-spacing:24.781500px;}
.ws76{word-spacing:26.137800px;}
.ws6a{word-spacing:28.302300px;}
.ws3c{word-spacing:31.049100px;}
.ws6b{word-spacing:32.992200px;}
.ws3f{word-spacing:34.425900px;}
.ws77{word-spacing:38.678400px;}
.ws6c{word-spacing:40.536000px;}
.ws2f{word-spacing:43.930800px;}
.ws86{word-spacing:46.815300px;}
.wsa5{word-spacing:49.026000px;}
.ws23{word-spacing:49.244700px;}
.ws5c{word-spacing:50.420700px;}
.ws27{word-spacing:69.581700px;}
.wsac{word-spacing:146.597400px;}
.wsa9{word-spacing:282.604500px;}
.ws1{word-spacing:455.092800px;}
._24{margin-left:-2.365800px;}
._2{margin-left:-1.273200px;}
._3{width:1.063200px;}
._28{width:2.065200px;}
._4{width:18.775800px;}
._16{width:20.319000px;}
._8{width:22.203000px;}
._5{width:23.665800px;}
._22{width:24.978000px;}
._13{width:26.268000px;}
._11{width:28.254600px;}
._31{width:29.420400px;}
._34{width:30.479400px;}
._1b{width:31.528800px;}
._26{width:33.925200px;}
._1{width:36.000000px;}
._23{width:37.507200px;}
._9{width:38.890500px;}
._29{width:40.529400px;}
._f{width:42.312300px;}
._e{width:44.355300px;}
._1c{width:45.750000px;}
._d{width:47.232000px;}
._12{width:48.365100px;}
._25{width:50.827800px;}
._2a{width:51.912000px;}
._7{width:53.339400px;}
._c{width:54.636000px;}
._1d{width:55.862100px;}
._37{width:56.877600px;}
._15{width:58.227600px;}
._b{width:59.830200px;}
._35{width:62.057700px;}
._1a{width:63.275400px;}
._2e{width:64.661100px;}
._19{width:65.734200px;}
._17{width:67.698000px;}
._6{width:70.486200px;}
._a{width:71.989200px;}
._1e{width:74.215800px;}
._33{width:78.012600px;}
._27{width:81.867300px;}
._2f{width:83.294400px;}
._2b{width:85.328400px;}
._1f{width:88.128000px;}
._2c{width:90.439200px;}
._20{width:91.440000px;}
._21{width:92.740800px;}
._30{width:96.235200px;}
._2d{width:97.936800px;}
._18{width:100.933200px;}
._32{width:104.475000px;}
._10{width:106.436100px;}
._14{width:126.995100px;}
._36{width:158.400000px;}
._0{width:612.144000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(112,48,160);}
.fc3{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.300000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:4.471500px;}
.y8e{bottom:5.025000px;}
.yad{bottom:5.190000px;}
.ya9{bottom:5.625000px;}
.y7f{bottom:5.700000px;}
.ya4{bottom:5.730000px;}
.y83{bottom:5.761500px;}
.y9b{bottom:5.790000px;}
.y87{bottom:5.820000px;}
.y7a{bottom:5.821500px;}
.ya0{bottom:5.850000px;}
.ya6{bottom:5.865000px;}
.yab{bottom:15.450000px;}
.y9c{bottom:16.050000px;}
.y7b{bottom:16.080000px;}
.y9e{bottom:16.111500px;}
.ya2{bottom:16.171500px;}
.yac{bottom:25.711500px;}
.y8d{bottom:25.725000px;}
.y8a{bottom:25.905000px;}
.y79{bottom:26.340000px;}
.y9f{bottom:26.371500px;}
.y7d{bottom:26.400000px;}
.ya3{bottom:26.430000px;}
.y81{bottom:26.461500px;}
.y9a{bottom:26.490000px;}
.y85{bottom:26.521500px;}
.y8b{bottom:36.165000px;}
.y89{bottom:46.425000px;}
.y86{bottom:47.040000px;}
.y7e{bottom:47.100000px;}
.y82{bottom:47.161500px;}
.y8c{bottom:67.125000px;}
.y6{bottom:72.825000px;}
.y5{bottom:77.655000px;}
.y30{bottom:101.596500px;}
.y5d{bottom:103.215000px;}
.y76{bottom:103.396500px;}
.ya5{bottom:106.350000px;}
.y2f{bottom:122.296500px;}
.y5c{bottom:123.915000px;}
.y75{bottom:124.096500px;}
.ya1{bottom:133.125000px;}
.y2e{bottom:142.996500px;}
.y5b{bottom:144.615000px;}
.y74{bottom:144.796500px;}
.yd2{bottom:146.236500px;}
.y2d{bottom:163.696500px;}
.y73{bottom:165.496500px;}
.yd1{bottom:166.936500px;}
.y9d{bottom:180.525000px;}
.y2c{bottom:184.396500px;}
.y5a{bottom:186.196500px;}
.yd0{bottom:187.636500px;}
.y2b{bottom:205.096500px;}
.y59{bottom:206.896500px;}
.ycf{bottom:208.336500px;}
.y2a{bottom:225.795000px;}
.y58{bottom:227.596500px;}
.y99{bottom:227.925000px;}
.yce{bottom:229.036500px;}
.y29{bottom:246.496500px;}
.y57{bottom:248.295000px;}
.ycd{bottom:249.736500px;}
.y28{bottom:267.196500px;}
.y56{bottom:268.996500px;}
.y72{bottom:269.175000px;}
.ycc{bottom:270.436500px;}
.y27{bottom:287.896500px;}
.y55{bottom:289.696500px;}
.y71{bottom:289.875000px;}
.ycb{bottom:291.136500px;}
.y98{bottom:299.415000px;}
.y26{bottom:308.596500px;}
.y54{bottom:310.396500px;}
.y70{bottom:310.575000px;}
.yca{bottom:311.836500px;}
.y25{bottom:329.295000px;}
.y53{bottom:331.096500px;}
.y6f{bottom:331.275000px;}
.yc9{bottom:332.536500px;}
.y97{bottom:341.175000px;}
.y24{bottom:349.996500px;}
.y52{bottom:351.795000px;}
.y6e{bottom:351.975000px;}
.yc8{bottom:353.236500px;}
.y96{bottom:361.875000px;}
.y23{bottom:370.696500px;}
.y51{bottom:372.496500px;}
.y6d{bottom:372.675000px;}
.yc7{bottom:373.936500px;}
.y95{bottom:382.575000px;}
.y22{bottom:391.396500px;}
.y50{bottom:393.196500px;}
.y6c{bottom:393.375000px;}
.y94{bottom:403.275000px;}
.y21{bottom:412.096500px;}
.y4f{bottom:413.896500px;}
.y6b{bottom:414.075000px;}
.yc6{bottom:415.515000px;}
.y93{bottom:423.975000px;}
.y20{bottom:432.795000px;}
.y4e{bottom:434.596500px;}
.y6a{bottom:434.775000px;}
.y92{bottom:444.675000px;}
.y1f{bottom:453.496500px;}
.y4d{bottom:455.295000px;}
.y69{bottom:455.475000px;}
.yc5{bottom:457.275000px;}
.y91{bottom:465.375000px;}
.y1e{bottom:474.196500px;}
.y4c{bottom:475.996500px;}
.y68{bottom:476.175000px;}
.yc4{bottom:477.975000px;}
.y90{bottom:486.075000px;}
.y1d{bottom:494.896500px;}
.y4b{bottom:496.695000px;}
.y67{bottom:496.875000px;}
.yc3{bottom:498.675000px;}
.y8f{bottom:506.775000px;}
.y1c{bottom:515.596500px;}
.y4a{bottom:517.396500px;}
.y66{bottom:517.575000px;}
.yc2{bottom:519.375000px;}
.y1b{bottom:536.296500px;}
.y49{bottom:538.096500px;}
.y65{bottom:538.275000px;}
.yc1{bottom:540.075000px;}
.y88{bottom:546.750000px;}
.y1a{bottom:556.996500px;}
.y48{bottom:558.796500px;}
.y64{bottom:558.975000px;}
.yc0{bottom:560.775000px;}
.y19{bottom:577.695000px;}
.y47{bottom:579.496500px;}
.y63{bottom:579.675000px;}
.ybf{bottom:581.475000px;}
.y18{bottom:598.396500px;}
.y46{bottom:600.195000px;}
.y62{bottom:600.375000px;}
.ybe{bottom:602.175000px;}
.y17{bottom:619.096500px;}
.y45{bottom:620.896500px;}
.y61{bottom:621.075000px;}
.ybd{bottom:622.875000px;}
.y84{bottom:634.875000px;}
.y16{bottom:639.795000px;}
.y44{bottom:641.596500px;}
.y60{bottom:641.775000px;}
.ybc{bottom:643.575000px;}
.y43{bottom:662.295000px;}
.y5f{bottom:662.475000px;}
.ybb{bottom:664.275000px;}
.y15{bottom:681.375000px;}
.y5e{bottom:683.175000px;}
.yba{bottom:684.975000px;}
.y14{bottom:702.075000px;}
.y80{bottom:702.975000px;}
.y42{bottom:703.875000px;}
.yb9{bottom:705.675000px;}
.y41{bottom:724.575000px;}
.yb8{bottom:726.375000px;}
.y13{bottom:743.836500px;}
.y40{bottom:745.275000px;}
.yb7{bottom:747.075000px;}
.y12{bottom:764.536500px;}
.y3f{bottom:765.975000px;}
.yb6{bottom:767.775000px;}
.y7c{bottom:771.075000px;}
.y11{bottom:785.236500px;}
.y3e{bottom:786.675000px;}
.yb5{bottom:788.475000px;}
.y10{bottom:805.936500px;}
.y3d{bottom:807.375000px;}
.yb4{bottom:809.175000px;}
.yf{bottom:826.636500px;}
.y3c{bottom:828.075000px;}
.y78{bottom:839.175000px;}
.ye{bottom:847.336500px;}
.y3b{bottom:848.775000px;}
.yb3{bottom:850.936500px;}
.yd{bottom:868.036500px;}
.y3a{bottom:869.475000px;}
.yb2{bottom:871.636500px;}
.y39{bottom:890.175000px;}
.yb1{bottom:892.336500px;}
.yc{bottom:909.795000px;}
.y77{bottom:910.695000px;}
.y38{bottom:910.875000px;}
.yb0{bottom:913.036500px;}
.y37{bottom:931.575000px;}
.yaf{bottom:933.736500px;}
.yb{bottom:951.375000px;}
.y36{bottom:952.275000px;}
.yae{bottom:954.436500px;}
.y35{bottom:972.975000px;}
.ya{bottom:993.136500px;}
.y34{bottom:993.675000px;}
.yaa{bottom:994.425000px;}
.y33{bottom:1014.375000px;}
.y32{bottom:1035.075000px;}
.ya8{bottom:1041.150000px;}
.y31{bottom:1055.775000px;}
.ya7{bottom:1067.775000px;}
.y9{bottom:1076.475000px;}
.y8{bottom:1097.175000px;}
.y4{bottom:1141.455000px;}
.y3{bottom:1162.155000px;}
.y2{bottom:1182.855000px;}
.y1{bottom:1203.375000px;}
.h5{height:20.175000px;}
.hc{height:24.375000px;}
.hb{height:24.450000px;}
.h7{height:44.325000px;}
.hd{height:44.400000px;}
.ha{height:45.075000px;}
.h4{height:45.095654px;}
.h3{height:48.796875px;}
.h6{height:49.992188px;}
.h2{height:62.261719px;}
.h8{height:65.775000px;}
.h9{height:85.800000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:33.450000px;}
.w6{width:74.250000px;}
.w9{width:78.375000px;}
.w7{width:143.175000px;}
.w3{width:151.875000px;}
.w5{width:157.575000px;}
.w4{width:168.375000px;}
.w8{width:225.000000px;}
.wa{width:396.225000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:1.170000px;}
.x9{left:126.450000px;}
.x1{left:127.620000px;}
.x4{left:162.538500px;}
.x5{left:234.900000px;}
.xb{left:280.500000px;}
.xf{left:353.625000px;}
.x7{left:385.920000px;}
.x10{left:434.175000px;}
.xc{left:451.050000px;}
.x3{left:461.625000px;}
.x8{left:543.600000px;}
.xd{left:610.800000px;}
.x6{left:680.760000px;}
.xe{left:687.225000px;}
.x2{left:731.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8b{word-spacing:-49.728000pt;}
.ws5f{word-spacing:-34.684800pt;}
.ws9c{word-spacing:-34.550400pt;}
.ws99{word-spacing:-34.365333pt;}
.ws6{word-spacing:-34.362400pt;}
.wsc{word-spacing:-34.356000pt;}
.ws5{word-spacing:-34.353600pt;}
.wsb3{word-spacing:-34.299733pt;}
.wsa{word-spacing:-34.156000pt;}
.ws9{word-spacing:-34.147200pt;}
.ws3{word-spacing:-34.110400pt;}
.wsc3{word-spacing:-34.108533pt;}
.ws15{word-spacing:-34.048000pt;}
.ws46{word-spacing:-34.037600pt;}
.wsc2{word-spacing:-33.918400pt;}
.ws0{word-spacing:-33.728000pt;}
.wsb{word-spacing:-33.723733pt;}
.ws4{word-spacing:-33.723200pt;}
.ws2{word-spacing:-33.716800pt;}
.ws3d{word-spacing:-33.529600pt;}
.ws9b{word-spacing:-33.527733pt;}
.wsd{word-spacing:-33.519200pt;}
.ws49{word-spacing:-33.404800pt;}
.ws59{word-spacing:-33.396000pt;}
.ws55{word-spacing:-33.273600pt;}
.ws3a{word-spacing:-33.075200pt;}
.ws69{word-spacing:-33.071200pt;}
.wsaf{word-spacing:-32.753600pt;}
.ws2b{word-spacing:-32.574933pt;}
.wsbf{word-spacing:-31.928000pt;}
.ws84{word-spacing:-31.162400pt;}
.ws13{word-spacing:-31.148000pt;}
.ws51{word-spacing:-30.853333pt;}
.wsad{word-spacing:-30.841067pt;}
.ws92{word-spacing:-30.715200pt;}
.wse{word-spacing:-30.528000pt;}
.wsc6{word-spacing:-30.208000pt;}
.ws45{word-spacing:-30.196533pt;}
.wsf{word-spacing:-30.190667pt;}
.ws8{word-spacing:-29.820267pt;}
.ws70{word-spacing:-29.567733pt;}
.ws6f{word-spacing:-29.369600pt;}
.ws1e{word-spacing:-29.249333pt;}
.ws1d{word-spacing:-29.248000pt;}
.ws20{word-spacing:-29.170400pt;}
.ws65{word-spacing:-28.919200pt;}
.ws43{word-spacing:-28.608000pt;}
.wsa3{word-spacing:-28.405867pt;}
.ws36{word-spacing:-28.288000pt;}
.wsbc{word-spacing:-28.273600pt;}
.ws5a{word-spacing:-28.153067pt;}
.ws26{word-spacing:-27.328000pt;}
.ws61{word-spacing:-27.261600pt;}
.ws40{word-spacing:-27.248000pt;}
.ws60{word-spacing:-27.077333pt;}
.ws50{word-spacing:-27.013333pt;}
.ws8f{word-spacing:-26.875200pt;}
.wsbb{word-spacing:-26.421867pt;}
.ws85{word-spacing:-26.354933pt;}
.ws24{word-spacing:-26.344800pt;}
.ws31{word-spacing:-25.730133pt;}
.ws81{word-spacing:-25.408000pt;}
.ws10{word-spacing:-25.078933pt;}
.ws2a{word-spacing:-24.888000pt;}
.ws7e{word-spacing:-24.768000pt;}
.wsc4{word-spacing:-24.304800pt;}
.ws17{word-spacing:-24.299200pt;}
.ws29{word-spacing:-24.256000pt;}
.ws39{word-spacing:-24.128000pt;}
.ws3e{word-spacing:-23.800000pt;}
.wsbd{word-spacing:-23.795200pt;}
.ws16{word-spacing:-23.680000pt;}
.ws34{word-spacing:-23.673600pt;}
.wsa7{word-spacing:-23.661600pt;}
.ws66{word-spacing:-23.488000pt;}
.wsba{word-spacing:-23.474933pt;}
.wsb0{word-spacing:-23.152800pt;}
.ws7a{word-spacing:-22.836800pt;}
.ws4a{word-spacing:-22.828800pt;}
.ws9a{word-spacing:-22.403733pt;}
.ws71{word-spacing:-22.208000pt;}
.wsc1{word-spacing:-21.361600pt;}
.wsa6{word-spacing:-21.056000pt;}
.ws68{word-spacing:-20.920000pt;}
.ws78{word-spacing:-20.859200pt;}
.ws52{word-spacing:-20.478400pt;}
.ws8a{word-spacing:-19.321333pt;}
.wsca{word-spacing:-19.136000pt;}
.ws47{word-spacing:-17.787733pt;}
.wsb4{word-spacing:-17.531200pt;}
.ws48{word-spacing:-17.268000pt;}
.wsa2{word-spacing:-17.088000pt;}
.ws67{word-spacing:-17.086400pt;}
.ws72{word-spacing:-16.756000pt;}
.wsc7{word-spacing:-16.751200pt;}
.ws7{word-spacing:-16.420000pt;}
.ws14{word-spacing:-16.186933pt;}
.ws4c{word-spacing:-16.106400pt;}
.ws79{word-spacing:-15.929600pt;}
.ws63{word-spacing:-15.739200pt;}
.ws82{word-spacing:-15.488000pt;}
.ws54{word-spacing:-15.480000pt;}
.ws58{word-spacing:-15.166400pt;}
.wsc0{word-spacing:-14.841333pt;}
.ws97{word-spacing:-14.528000pt;}
.ws4b{word-spacing:-13.886400pt;}
.ws4d{word-spacing:-13.882400pt;}
.ws9f{word-spacing:-13.422400pt;}
.ws64{word-spacing:-13.236800pt;}
.ws22{word-spacing:-13.044000pt;}
.wsb7{word-spacing:-12.793333pt;}
.wsb8{word-spacing:-12.780800pt;}
.ws3b{word-spacing:-12.601067pt;}
.ws6d{word-spacing:-12.403200pt;}
.wsb5{word-spacing:-12.094933pt;}
.ws91{word-spacing:-11.648000pt;}
.ws21{word-spacing:-11.634400pt;}
.ws19{word-spacing:-11.628267pt;}
.ws18{word-spacing:-11.328000pt;}
.ws42{word-spacing:-10.352533pt;}
.ws35{word-spacing:-10.053333pt;}
.ws30{word-spacing:-8.760800pt;}
.ws1f{word-spacing:-8.698933pt;}
.wsb1{word-spacing:-8.296800pt;}
.ws9d{word-spacing:-8.113867pt;}
.ws25{word-spacing:-7.791200pt;}
.ws4f{word-spacing:-7.673067pt;}
.wsa8{word-spacing:-7.016800pt;}
.wsab{word-spacing:-6.848000pt;}
.ws73{word-spacing:-6.136533pt;}
.wsa1{word-spacing:-5.617600pt;}
.ws56{word-spacing:-4.483733pt;}
.ws2e{word-spacing:-4.095733pt;}
.ws83{word-spacing:-4.088000pt;}
.ws12{word-spacing:-3.380800pt;}
.wsc8{word-spacing:-2.368000pt;}
.ws87{word-spacing:-2.364800pt;}
.ws4e{word-spacing:-2.344800pt;}
.ws1c{word-spacing:-2.105600pt;}
.wsc5{word-spacing:-1.728000pt;}
.ws80{word-spacing:-1.720800pt;}
.ws37{word-spacing:-1.719200pt;}
.ws44{word-spacing:-1.086400pt;}
.wsae{word-spacing:-0.569600pt;}
.wsc9{word-spacing:-0.428800pt;}
.ws5d{word-spacing:0.006400pt;}
.ws28{word-spacing:0.006933pt;}
.wsb6{word-spacing:0.186667pt;}
.ws89{word-spacing:0.192000pt;}
.ws75{word-spacing:0.527200pt;}
.ws9e{word-spacing:1.482133pt;}
.ws5e{word-spacing:1.792000pt;}
.ws7c{word-spacing:2.367467pt;}
.ws1b{word-spacing:2.433600pt;}
.ws90{word-spacing:2.577867pt;}
.ws93{word-spacing:2.767467pt;}
.wsaa{word-spacing:2.813067pt;}
.wsa0{word-spacing:3.091733pt;}
.ws2d{word-spacing:3.386667pt;}
.ws7f{word-spacing:3.846400pt;}
.wsbe{word-spacing:4.360800pt;}
.wsa4{word-spacing:4.685600pt;}
.ws94{word-spacing:4.993600pt;}
.ws33{word-spacing:5.003200pt;}
.ws95{word-spacing:5.134933pt;}
.ws8e{word-spacing:5.136000pt;}
.ws6e{word-spacing:5.763467pt;}
.ws7b{word-spacing:5.952000pt;}
.ws32{word-spacing:7.233600pt;}
.wsb2{word-spacing:7.238933pt;}
.ws62{word-spacing:7.872000pt;}
.ws57{word-spacing:8.525600pt;}
.ws5b{word-spacing:9.472000pt;}
.ws2c{word-spacing:9.478400pt;}
.ws41{word-spacing:11.408800pt;}
.ws88{word-spacing:11.713600pt;}
.ws11{word-spacing:11.784267pt;}
.ws74{word-spacing:12.367200pt;}
.ws96{word-spacing:12.556000pt;}
.ws1a{word-spacing:12.678400pt;}
.ws8d{word-spacing:14.082400pt;}
.ws8c{word-spacing:14.272000pt;}
.ws38{word-spacing:15.246400pt;}
.ws98{word-spacing:16.391467pt;}
.ws7d{word-spacing:17.809600pt;}
.wsb9{word-spacing:18.369067pt;}
.ws53{word-spacing:22.028000pt;}
.ws76{word-spacing:23.233600pt;}
.ws6a{word-spacing:25.157600pt;}
.ws3c{word-spacing:27.599200pt;}
.ws6b{word-spacing:29.326400pt;}
.ws3f{word-spacing:30.600800pt;}
.ws77{word-spacing:34.380800pt;}
.ws6c{word-spacing:36.032000pt;}
.ws2f{word-spacing:39.049600pt;}
.ws86{word-spacing:41.613600pt;}
.wsa5{word-spacing:43.578667pt;}
.ws23{word-spacing:43.773067pt;}
.ws5c{word-spacing:44.818400pt;}
.ws27{word-spacing:61.850400pt;}
.wsac{word-spacing:130.308800pt;}
.wsa9{word-spacing:251.204000pt;}
.ws1{word-spacing:404.526933pt;}
._24{margin-left:-2.102933pt;}
._2{margin-left:-1.131733pt;}
._3{width:0.945067pt;}
._28{width:1.835733pt;}
._4{width:16.689600pt;}
._16{width:18.061333pt;}
._8{width:19.736000pt;}
._5{width:21.036267pt;}
._22{width:22.202667pt;}
._13{width:23.349333pt;}
._11{width:25.115200pt;}
._31{width:26.151467pt;}
._34{width:27.092800pt;}
._1b{width:28.025600pt;}
._26{width:30.155733pt;}
._1{width:32.000000pt;}
._23{width:33.339733pt;}
._9{width:34.569333pt;}
._29{width:36.026133pt;}
._f{width:37.610933pt;}
._e{width:39.426933pt;}
._1c{width:40.666667pt;}
._d{width:41.984000pt;}
._12{width:42.991200pt;}
._25{width:45.180267pt;}
._2a{width:46.144000pt;}
._7{width:47.412800pt;}
._c{width:48.565333pt;}
._1d{width:49.655200pt;}
._37{width:50.557867pt;}
._15{width:51.757867pt;}
._b{width:53.182400pt;}
._35{width:55.162400pt;}
._1a{width:56.244800pt;}
._2e{width:57.476533pt;}
._19{width:58.430400pt;}
._17{width:60.176000pt;}
._6{width:62.654400pt;}
._a{width:63.990400pt;}
._1e{width:65.969600pt;}
._33{width:69.344533pt;}
._27{width:72.770933pt;}
._2f{width:74.039467pt;}
._2b{width:75.847467pt;}
._1f{width:78.336000pt;}
._2c{width:80.390400pt;}
._20{width:81.280000pt;}
._21{width:82.436267pt;}
._30{width:85.542400pt;}
._2d{width:87.054933pt;}
._18{width:89.718400pt;}
._32{width:92.866667pt;}
._10{width:94.609867pt;}
._14{width:112.884533pt;}
._36{width:140.800000pt;}
._0{width:544.128000pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:3.974667pt;}
.y8e{bottom:4.466667pt;}
.yad{bottom:4.613333pt;}
.ya9{bottom:5.000000pt;}
.y7f{bottom:5.066667pt;}
.ya4{bottom:5.093333pt;}
.y83{bottom:5.121333pt;}
.y9b{bottom:5.146667pt;}
.y87{bottom:5.173333pt;}
.y7a{bottom:5.174667pt;}
.ya0{bottom:5.200000pt;}
.ya6{bottom:5.213333pt;}
.yab{bottom:13.733333pt;}
.y9c{bottom:14.266667pt;}
.y7b{bottom:14.293333pt;}
.y9e{bottom:14.321333pt;}
.ya2{bottom:14.374667pt;}
.yac{bottom:22.854667pt;}
.y8d{bottom:22.866667pt;}
.y8a{bottom:23.026667pt;}
.y79{bottom:23.413333pt;}
.y9f{bottom:23.441333pt;}
.y7d{bottom:23.466667pt;}
.ya3{bottom:23.493333pt;}
.y81{bottom:23.521333pt;}
.y9a{bottom:23.546667pt;}
.y85{bottom:23.574667pt;}
.y8b{bottom:32.146667pt;}
.y89{bottom:41.266667pt;}
.y86{bottom:41.813333pt;}
.y7e{bottom:41.866667pt;}
.y82{bottom:41.921333pt;}
.y8c{bottom:59.666667pt;}
.y6{bottom:64.733333pt;}
.y5{bottom:69.026667pt;}
.y30{bottom:90.308000pt;}
.y5d{bottom:91.746667pt;}
.y76{bottom:91.908000pt;}
.ya5{bottom:94.533333pt;}
.y2f{bottom:108.708000pt;}
.y5c{bottom:110.146667pt;}
.y75{bottom:110.308000pt;}
.ya1{bottom:118.333333pt;}
.y2e{bottom:127.108000pt;}
.y5b{bottom:128.546667pt;}
.y74{bottom:128.708000pt;}
.yd2{bottom:129.988000pt;}
.y2d{bottom:145.508000pt;}
.y73{bottom:147.108000pt;}
.yd1{bottom:148.388000pt;}
.y9d{bottom:160.466667pt;}
.y2c{bottom:163.908000pt;}
.y5a{bottom:165.508000pt;}
.yd0{bottom:166.788000pt;}
.y2b{bottom:182.308000pt;}
.y59{bottom:183.908000pt;}
.ycf{bottom:185.188000pt;}
.y2a{bottom:200.706667pt;}
.y58{bottom:202.308000pt;}
.y99{bottom:202.600000pt;}
.yce{bottom:203.588000pt;}
.y29{bottom:219.108000pt;}
.y57{bottom:220.706667pt;}
.ycd{bottom:221.988000pt;}
.y28{bottom:237.508000pt;}
.y56{bottom:239.108000pt;}
.y72{bottom:239.266667pt;}
.ycc{bottom:240.388000pt;}
.y27{bottom:255.908000pt;}
.y55{bottom:257.508000pt;}
.y71{bottom:257.666667pt;}
.ycb{bottom:258.788000pt;}
.y98{bottom:266.146667pt;}
.y26{bottom:274.308000pt;}
.y54{bottom:275.908000pt;}
.y70{bottom:276.066667pt;}
.yca{bottom:277.188000pt;}
.y25{bottom:292.706667pt;}
.y53{bottom:294.308000pt;}
.y6f{bottom:294.466667pt;}
.yc9{bottom:295.588000pt;}
.y97{bottom:303.266667pt;}
.y24{bottom:311.108000pt;}
.y52{bottom:312.706667pt;}
.y6e{bottom:312.866667pt;}
.yc8{bottom:313.988000pt;}
.y96{bottom:321.666667pt;}
.y23{bottom:329.508000pt;}
.y51{bottom:331.108000pt;}
.y6d{bottom:331.266667pt;}
.yc7{bottom:332.388000pt;}
.y95{bottom:340.066667pt;}
.y22{bottom:347.908000pt;}
.y50{bottom:349.508000pt;}
.y6c{bottom:349.666667pt;}
.y94{bottom:358.466667pt;}
.y21{bottom:366.308000pt;}
.y4f{bottom:367.908000pt;}
.y6b{bottom:368.066667pt;}
.yc6{bottom:369.346667pt;}
.y93{bottom:376.866667pt;}
.y20{bottom:384.706667pt;}
.y4e{bottom:386.308000pt;}
.y6a{bottom:386.466667pt;}
.y92{bottom:395.266667pt;}
.y1f{bottom:403.108000pt;}
.y4d{bottom:404.706667pt;}
.y69{bottom:404.866667pt;}
.yc5{bottom:406.466667pt;}
.y91{bottom:413.666667pt;}
.y1e{bottom:421.508000pt;}
.y4c{bottom:423.108000pt;}
.y68{bottom:423.266667pt;}
.yc4{bottom:424.866667pt;}
.y90{bottom:432.066667pt;}
.y1d{bottom:439.908000pt;}
.y4b{bottom:441.506667pt;}
.y67{bottom:441.666667pt;}
.yc3{bottom:443.266667pt;}
.y8f{bottom:450.466667pt;}
.y1c{bottom:458.308000pt;}
.y4a{bottom:459.908000pt;}
.y66{bottom:460.066667pt;}
.yc2{bottom:461.666667pt;}
.y1b{bottom:476.708000pt;}
.y49{bottom:478.308000pt;}
.y65{bottom:478.466667pt;}
.yc1{bottom:480.066667pt;}
.y88{bottom:486.000000pt;}
.y1a{bottom:495.108000pt;}
.y48{bottom:496.708000pt;}
.y64{bottom:496.866667pt;}
.yc0{bottom:498.466667pt;}
.y19{bottom:513.506667pt;}
.y47{bottom:515.108000pt;}
.y63{bottom:515.266667pt;}
.ybf{bottom:516.866667pt;}
.y18{bottom:531.908000pt;}
.y46{bottom:533.506667pt;}
.y62{bottom:533.666667pt;}
.ybe{bottom:535.266667pt;}
.y17{bottom:550.308000pt;}
.y45{bottom:551.908000pt;}
.y61{bottom:552.066667pt;}
.ybd{bottom:553.666667pt;}
.y84{bottom:564.333333pt;}
.y16{bottom:568.706667pt;}
.y44{bottom:570.308000pt;}
.y60{bottom:570.466667pt;}
.ybc{bottom:572.066667pt;}
.y43{bottom:588.706667pt;}
.y5f{bottom:588.866667pt;}
.ybb{bottom:590.466667pt;}
.y15{bottom:605.666667pt;}
.y5e{bottom:607.266667pt;}
.yba{bottom:608.866667pt;}
.y14{bottom:624.066667pt;}
.y80{bottom:624.866667pt;}
.y42{bottom:625.666667pt;}
.yb9{bottom:627.266667pt;}
.y41{bottom:644.066667pt;}
.yb8{bottom:645.666667pt;}
.y13{bottom:661.188000pt;}
.y40{bottom:662.466667pt;}
.yb7{bottom:664.066667pt;}
.y12{bottom:679.588000pt;}
.y3f{bottom:680.866667pt;}
.yb6{bottom:682.466667pt;}
.y7c{bottom:685.400000pt;}
.y11{bottom:697.988000pt;}
.y3e{bottom:699.266667pt;}
.yb5{bottom:700.866667pt;}
.y10{bottom:716.388000pt;}
.y3d{bottom:717.666667pt;}
.yb4{bottom:719.266667pt;}
.yf{bottom:734.788000pt;}
.y3c{bottom:736.066667pt;}
.y78{bottom:745.933333pt;}
.ye{bottom:753.188000pt;}
.y3b{bottom:754.466667pt;}
.yb3{bottom:756.388000pt;}
.yd{bottom:771.588000pt;}
.y3a{bottom:772.866667pt;}
.yb2{bottom:774.788000pt;}
.y39{bottom:791.266667pt;}
.yb1{bottom:793.188000pt;}
.yc{bottom:808.706667pt;}
.y77{bottom:809.506667pt;}
.y38{bottom:809.666667pt;}
.yb0{bottom:811.588000pt;}
.y37{bottom:828.066667pt;}
.yaf{bottom:829.988000pt;}
.yb{bottom:845.666667pt;}
.y36{bottom:846.466667pt;}
.yae{bottom:848.388000pt;}
.y35{bottom:864.866667pt;}
.ya{bottom:882.788000pt;}
.y34{bottom:883.266667pt;}
.yaa{bottom:883.933333pt;}
.y33{bottom:901.666667pt;}
.y32{bottom:920.066667pt;}
.ya8{bottom:925.466667pt;}
.y31{bottom:938.466667pt;}
.ya7{bottom:949.133333pt;}
.y9{bottom:956.866667pt;}
.y8{bottom:975.266667pt;}
.y4{bottom:1014.626667pt;}
.y3{bottom:1033.026667pt;}
.y2{bottom:1051.426667pt;}
.y1{bottom:1069.666667pt;}
.h5{height:17.933333pt;}
.hc{height:21.666667pt;}
.hb{height:21.733333pt;}
.h7{height:39.400000pt;}
.hd{height:39.466667pt;}
.ha{height:40.066667pt;}
.h4{height:40.085026pt;}
.h3{height:43.375000pt;}
.h6{height:44.437500pt;}
.h2{height:55.343750pt;}
.h8{height:58.466667pt;}
.h9{height:76.266667pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:29.733333pt;}
.w6{width:66.000000pt;}
.w9{width:69.666667pt;}
.w7{width:127.266667pt;}
.w3{width:135.000000pt;}
.w5{width:140.066667pt;}
.w4{width:149.666667pt;}
.w8{width:200.000000pt;}
.wa{width:352.200000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.040000pt;}
.x9{left:112.400000pt;}
.x1{left:113.440000pt;}
.x4{left:144.478667pt;}
.x5{left:208.800000pt;}
.xb{left:249.333333pt;}
.xf{left:314.333333pt;}
.x7{left:343.040000pt;}
.x10{left:385.933333pt;}
.xc{left:400.933333pt;}
.x3{left:410.333333pt;}
.x8{left:483.200000pt;}
.xd{left:542.933333pt;}
.x6{left:605.120000pt;}
.xe{left:610.866667pt;}
.x2{left:649.920000pt;}
}




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