
    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_85699e5a01ade8b27f8883ec.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_693d3d30e9863a32e764fae9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_571e47bc8ac0e22d6fa83dde.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_11a90c525d7864e4dfb21b52.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_bdd54725fe58388d6e07e090.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_09ae06fde4170f9507067f3a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894531;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;}
.ls1{letter-spacing:103.752000px;}
.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;}
}
.ws6{word-spacing:-55.944000px;}
.ws22{word-spacing:-38.796300px;}
.ws28{word-spacing:-38.656800px;}
.ws43{word-spacing:-38.653200px;}
.ws9b{word-spacing:-38.650200px;}
.ws66{word-spacing:-38.649000px;}
.ws93{word-spacing:-38.646000px;}
.ws64{word-spacing:-38.644200px;}
.ws77{word-spacing:-38.638800px;}
.wsaf{word-spacing:-38.598000px;}
.ws8{word-spacing:-38.582700px;}
.ws4{word-spacing:-38.446800px;}
.ws3{word-spacing:-38.443200px;}
.ws48{word-spacing:-38.442600px;}
.ws7{word-spacing:-38.439900px;}
.ws81{word-spacing:-38.439000px;}
.ws5d{word-spacing:-38.435400px;}
.ws44{word-spacing:-38.431200px;}
.ws5e{word-spacing:-38.166000px;}
.ws8e{word-spacing:-38.162400px;}
.ws31{word-spacing:-38.160000px;}
.ws3f{word-spacing:-38.158200px;}
.ws60{word-spacing:-38.156400px;}
.wsa4{word-spacing:-38.155200px;}
.ws15{word-spacing:-38.154600px;}
.ws1e{word-spacing:-38.152800px;}
.wsa6{word-spacing:-38.151900px;}
.ws2b{word-spacing:-38.151000px;}
.ws5b{word-spacing:-38.149200px;}
.wsb6{word-spacing:-38.148300px;}
.ws90{word-spacing:-38.146200px;}
.ws5f{word-spacing:-38.137800px;}
.wsad{word-spacing:-38.127600px;}
.ws9{word-spacing:-38.087700px;}
.ws2{word-spacing:-38.081700px;}
.wsb3{word-spacing:-38.075400px;}
.ws3a{word-spacing:-37.944600px;}
.ws0{word-spacing:-37.944000px;}
.ws63{word-spacing:-37.942200px;}
.wsa3{word-spacing:-37.940100px;}
.ws89{word-spacing:-37.937400px;}
.ws4a{word-spacing:-37.936800px;}
.ws61{word-spacing:-37.936200px;}
.ws86{word-spacing:-37.935000px;}
.wsb5{word-spacing:-37.934100px;}
.ws59{word-spacing:-37.933200px;}
.ws49{word-spacing:-37.931400px;}
.ws45{word-spacing:-37.927800px;}
.ws21{word-spacing:-37.923600px;}
.ws1b{word-spacing:-37.918200px;}
.ws82{word-spacing:-37.724400px;}
.ws76{word-spacing:-37.722600px;}
.ws6f{word-spacing:-37.717200px;}
.ws88{word-spacing:-37.713600px;}
.ws8d{word-spacing:-37.711800px;}
.ws5{word-spacing:-37.709100px;}
.ws74{word-spacing:-37.702800px;}
.ws36{word-spacing:-37.433700px;}
.ws5c{word-spacing:-37.431000px;}
.ws6b{word-spacing:-37.222200px;}
.wsb2{word-spacing:-37.213200px;}
.ws75{word-spacing:-36.995400px;}
.ws7c{word-spacing:-36.982800px;}
.ws5a{word-spacing:-36.500400px;}
.ws83{word-spacing:-36.499200px;}
.wsaa{word-spacing:-36.482400px;}
.wsb{word-spacing:-35.994600px;}
.ws52{word-spacing:-35.771400px;}
.ws14{word-spacing:-35.560800px;}
.wsac{word-spacing:-35.280000px;}
.wsa{word-spacing:-35.261100px;}
.ws71{word-spacing:-35.064600px;}
.ws27{word-spacing:-35.053200px;}
.ws7e{word-spacing:-34.835400px;}
.ws3b{word-spacing:-34.560000px;}
.ws24{word-spacing:-34.344000px;}
.wsb9{word-spacing:-34.340400px;}
.ws2a{word-spacing:-34.117200px;}
.ws6d{word-spacing:-33.823800px;}
.ws19{word-spacing:-33.609000px;}
.ws85{word-spacing:-33.408600px;}
.wsf{word-spacing:-33.120000px;}
.ws9f{word-spacing:-33.109200px;}
.wsb7{word-spacing:-32.908200px;}
.ws80{word-spacing:-32.895000px;}
.ws37{word-spacing:-32.677200px;}
.ws33{word-spacing:-32.400000px;}
.wsa0{word-spacing:-32.394000px;}
.ws54{word-spacing:-32.388600px;}
.wsa8{word-spacing:-31.960800px;}
.ws96{word-spacing:-31.680000px;}
.ws30{word-spacing:-31.672800px;}
.ws20{word-spacing:-31.464000px;}
.ws3e{word-spacing:-31.457400px;}
.ws29{word-spacing:-31.237200px;}
.ws9c{word-spacing:-30.958200px;}
.ws9e{word-spacing:-30.956400px;}
.wsa7{word-spacing:-30.954600px;}
.ws99{word-spacing:-30.725400px;}
.ws4d{word-spacing:-30.655800px;}
.wsab{word-spacing:-30.524400px;}
.ws25{word-spacing:-30.026400px;}
.ws91{word-spacing:-30.016800px;}
.ws6e{word-spacing:-30.003600px;}
.wsa5{word-spacing:-29.526000px;}
.ws65{word-spacing:-29.516400px;}
.wsa1{word-spacing:-29.296800px;}
.ws53{word-spacing:-29.070000px;}
.ws56{word-spacing:-28.796400px;}
.ws46{word-spacing:-28.794600px;}
.ws67{word-spacing:-28.580400px;}
.ws40{word-spacing:-28.578600px;}
.ws3d{word-spacing:-28.576800px;}
.ws6a{word-spacing:-28.071000px;}
.wsb4{word-spacing:-27.144000px;}
.ws6c{word-spacing:-27.138600px;}
.ws8f{word-spacing:-26.916000px;}
.ws55{word-spacing:-26.909400px;}
.wsc{word-spacing:-26.646000px;}
.ws69{word-spacing:-26.614200px;}
.ws2f{word-spacing:-26.426400px;}
.ws62{word-spacing:-26.195400px;}
.ws8a{word-spacing:-25.920000px;}
.wsa9{word-spacing:-25.690200px;}
.ws35{word-spacing:-25.179600px;}
.ws17{word-spacing:-24.967200px;}
.ws87{word-spacing:-24.264000px;}
.ws7b{word-spacing:-24.256800px;}
.wsd{word-spacing:-24.254100px;}
.ws7f{word-spacing:-23.760000px;}
.ws84{word-spacing:-23.756400px;}
.ws16{word-spacing:-23.751900px;}
.ws78{word-spacing:-23.544000px;}
.ws34{word-spacing:-23.046000px;}
.ws58{word-spacing:-23.032800px;}
.ws9d{word-spacing:-22.813200px;}
.ws4c{word-spacing:-22.734900px;}
.ws79{word-spacing:-22.607100px;}
.ws4e{word-spacing:-22.320000px;}
.ws3c{word-spacing:-22.100400px;}
.ws39{word-spacing:-21.600000px;}
.ws94{word-spacing:-21.591000px;}
.wsa2{word-spacing:-21.168000px;}
.ws51{word-spacing:-21.151800px;}
.ws72{word-spacing:-20.867400px;}
.ws2d{word-spacing:-20.662200px;}
.wsb1{word-spacing:-20.656800px;}
.ws1d{word-spacing:-20.653200px;}
.ws2c{word-spacing:-20.157300px;}
.wse{word-spacing:-19.434600px;}
.ws8b{word-spacing:-18.499200px;}
.ws97{word-spacing:-18.288000px;}
.ws9a{word-spacing:-18.280800px;}
.wsae{word-spacing:-18.002400px;}
.ws42{word-spacing:-17.989200px;}
.ws13{word-spacing:-17.987400px;}
.ws73{word-spacing:-17.275200px;}
.ws7a{word-spacing:-16.848000px;}
.ws47{word-spacing:-16.344000px;}
.ws38{word-spacing:-15.615000px;}
.ws41{word-spacing:-15.109200px;}
.ws92{word-spacing:-14.394000px;}
.ws1f{word-spacing:-14.177400px;}
.ws7d{word-spacing:-13.672800px;}
.ws23{word-spacing:-12.744000px;}
.ws12{word-spacing:-11.996400px;}
.ws57{word-spacing:-11.301300px;}
.ws95{word-spacing:-10.575000px;}
.ws1c{word-spacing:-9.133200px;}
.wsb0{word-spacing:-7.917000px;}
.ws2e{word-spacing:-7.477200px;}
.ws10{word-spacing:-3.378600px;}
.ws50{word-spacing:-1.426200px;}
.ws4f{word-spacing:0.000000px;}
.ws8c{word-spacing:0.943200px;}
.ws4b{word-spacing:1.434000px;}
.ws1a{word-spacing:1.879200px;}
.ws68{word-spacing:2.385000px;}
.wsb8{word-spacing:2.889900px;}
.ws18{word-spacing:6.199200px;}
.ws26{word-spacing:9.079200px;}
.ws32{word-spacing:10.299600px;}
.ws98{word-spacing:11.743200px;}
.ws70{word-spacing:14.410800px;}
.ws11{word-spacing:16.067100px;}
.ws1{word-spacing:1037.484900px;}
._2{margin-left:-1.152900px;}
._0{width:1.076400px;}
._1f{width:17.410500px;}
._1{width:18.968400px;}
._20{width:20.066400px;}
._3{width:21.293100px;}
._23{width:22.301400px;}
._e{width:23.340000px;}
._8{width:24.408000px;}
._12{width:25.554000px;}
._14{width:27.375300px;}
._1b{width:28.778400px;}
._4{width:30.625200px;}
._c{width:32.293800px;}
._5{width:33.336000px;}
._17{width:34.414200px;}
._1a{width:35.647200px;}
._22{width:36.652800px;}
._7{width:37.716600px;}
._b{width:39.218400px;}
._1c{width:41.259600px;}
._11{width:42.768000px;}
._13{width:44.352000px;}
._a{width:45.354000px;}
._26{width:46.512000px;}
._10{width:48.736800px;}
._18{width:50.050800px;}
._9{width:53.999100px;}
._1e{width:56.376000px;}
._24{width:58.104000px;}
._f{width:59.112000px;}
._27{width:60.192000px;}
._d{width:63.260400px;}
._15{width:66.370800px;}
._19{width:67.663800px;}
._21{width:68.937600px;}
._6{width:110.592000px;}
._25{width:115.041600px;}
._1d{width:232.282500px;}
._16{width:771.870000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:63.975000px;}
.y55{bottom:112.215000px;}
.y95{bottom:115.096500px;}
.ybb{bottom:117.255000px;}
.y2a{bottom:121.036500px;}
.y54{bottom:132.915000px;}
.y94{bottom:135.796500px;}
.y29{bottom:141.736500px;}
.y93{bottom:156.496500px;}
.yba{bottom:159.015000px;}
.y28{bottom:162.436500px;}
.y78{bottom:171.436500px;}
.y53{bottom:174.675000px;}
.y92{bottom:177.196500px;}
.yb9{bottom:179.715000px;}
.y27{bottom:183.136500px;}
.y77{bottom:192.136500px;}
.y52{bottom:195.375000px;}
.yb8{bottom:200.415000px;}
.y26{bottom:203.836500px;}
.y51{bottom:216.075000px;}
.y91{bottom:218.775000px;}
.yb7{bottom:221.115000px;}
.y25{bottom:224.536500px;}
.y76{bottom:233.896500px;}
.y50{bottom:236.775000px;}
.y90{bottom:239.475000px;}
.yb6{bottom:241.815000px;}
.y75{bottom:254.596500px;}
.y4f{bottom:258.736500px;}
.yb5{bottom:262.515000px;}
.y24{bottom:266.115000px;}
.y74{bottom:275.295000px;}
.y4e{bottom:280.696500px;}
.y8f{bottom:281.236500px;}
.y73{bottom:295.996500px;}
.y8e{bottom:301.936500px;}
.y4d{bottom:302.655000px;}
.yb4{bottom:304.096500px;}
.y23{bottom:307.875000px;}
.y72{bottom:316.696500px;}
.y4c{bottom:324.795000px;}
.y22{bottom:328.575000px;}
.y71{bottom:337.396500px;}
.y8d{bottom:343.696500px;}
.yb3{bottom:345.855000px;}
.y4b{bottom:346.755000px;}
.y21{bottom:349.275000px;}
.y70{bottom:358.096500px;}
.y8c{bottom:364.396500px;}
.yb2{bottom:366.375000px;}
.y4a{bottom:367.455000px;}
.y20{bottom:369.975000px;}
.y6f{bottom:378.795000px;}
.y49{bottom:388.155000px;}
.y6e{bottom:399.496500px;}
.y8b{bottom:405.975000px;}
.yb1{bottom:408.136500px;}
.y48{bottom:410.115000px;}
.y1f{bottom:411.736500px;}
.y6d{bottom:420.196500px;}
.y8a{bottom:426.675000px;}
.y47{bottom:432.075000px;}
.y1e{bottom:432.436500px;}
.y89{bottom:447.375000px;}
.yb0{bottom:449.896500px;}
.y1d{bottom:453.136500px;}
.y6c{bottom:461.775000px;}
.yaf{bottom:470.596500px;}
.y46{bottom:475.096500px;}
.y6b{bottom:483.915000px;}
.y88{bottom:489.136500px;}
.ycd{bottom:493.996500px;}
.y1c{bottom:494.715000px;}
.y6a{bottom:504.615000px;}
.yae{bottom:512.175000px;}
.ycc{bottom:514.695000px;}
.y1b{bottom:515.415000px;}
.y45{bottom:516.675000px;}
.y69{bottom:526.575000px;}
.y87{bottom:530.896500px;}
.y1a{bottom:536.115000px;}
.y44{bottom:537.375000px;}
.y68{bottom:548.536500px;}
.y86{bottom:551.596500px;}
.yad{bottom:553.936500px;}
.ycb{bottom:556.275000px;}
.y19{bottom:556.815000px;}
.y43{bottom:558.075000px;}
.y67{bottom:570.496500px;}
.y85{bottom:572.295000px;}
.yac{bottom:574.636500px;}
.yca{bottom:576.975000px;}
.y42{bottom:578.775000px;}
.y66{bottom:592.455000px;}
.y84{bottom:592.996500px;}
.yab{bottom:595.336500px;}
.yc9{bottom:597.675000px;}
.y18{bottom:598.575000px;}
.y41{bottom:599.475000px;}
.y65{bottom:614.415000px;}
.yaa{bottom:616.036500px;}
.y40{bottom:620.175000px;}
.y83{bottom:634.575000px;}
.y64{bottom:635.115000px;}
.yc8{bottom:639.436500px;}
.y17{bottom:640.336500px;}
.y3f{bottom:640.875000px;}
.y82{bottom:655.275000px;}
.y63{bottom:657.075000px;}
.ya9{bottom:657.795000px;}
.y16{bottom:661.036500px;}
.y3e{bottom:661.575000px;}
.ya8{bottom:678.496500px;}
.y62{bottom:679.215000px;}
.yc7{bottom:681.195000px;}
.y3d{bottom:682.275000px;}
.y81{bottom:697.036500px;}
.ya7{bottom:699.195000px;}
.y61{bottom:701.175000px;}
.y15{bottom:702.615000px;}
.y80{bottom:717.736500px;}
.ya6{bottom:719.896500px;}
.yc6{bottom:722.775000px;}
.y14{bottom:723.315000px;}
.y3c{bottom:724.036500px;}
.y7f{bottom:738.436500px;}
.ya5{bottom:740.596500px;}
.yc5{bottom:743.475000px;}
.y13{bottom:744.015000px;}
.y60{bottom:744.195000px;}
.y3b{bottom:744.736500px;}
.y7e{bottom:759.136500px;}
.ya4{bottom:761.295000px;}
.y12{bottom:764.715000px;}
.yc4{bottom:785.236500px;}
.y11{bottom:785.415000px;}
.y5f{bottom:785.775000px;}
.y3a{bottom:786.496500px;}
.y7d{bottom:800.895000px;}
.ya3{bottom:802.875000px;}
.y10{bottom:806.115000px;}
.y39{bottom:807.195000px;}
.y7c{bottom:821.596500px;}
.ya2{bottom:823.575000px;}
.yf{bottom:826.815000px;}
.yc3{bottom:826.996500px;}
.y5e{bottom:827.536500px;}
.y38{bottom:827.895000px;}
.y7b{bottom:842.295000px;}
.ya1{bottom:844.275000px;}
.ye{bottom:847.515000px;}
.ya0{bottom:864.975000px;}
.yd{bottom:868.215000px;}
.y5d{bottom:869.295000px;}
.y37{bottom:869.475000px;}
.y7a{bottom:883.875000px;}
.y9f{bottom:885.675000px;}
.yc{bottom:888.915000px;}
.yc2{bottom:889.275000px;}
.y36{bottom:890.175000px;}
.y9e{bottom:906.375000px;}
.yb{bottom:909.615000px;}
.yc1{bottom:909.975000px;}
.y35{bottom:910.875000px;}
.y9d{bottom:927.075000px;}
.y34{bottom:931.575000px;}
.ya{bottom:951.375000px;}
.yc0{bottom:951.736500px;}
.y33{bottom:952.275000px;}
.y9c{bottom:968.836500px;}
.y9{bottom:972.075000px;}
.ybf{bottom:972.436500px;}
.y32{bottom:972.975000px;}
.y5c{bottom:973.336500px;}
.y9b{bottom:989.536500px;}
.ybe{bottom:993.136500px;}
.y31{bottom:993.675000px;}
.y5b{bottom:994.036500px;}
.y79{bottom:1014.195000px;}
.y30{bottom:1014.375000px;}
.y5a{bottom:1014.736500px;}
.y9a{bottom:1031.295000px;}
.ybd{bottom:1034.895000px;}
.y2f{bottom:1035.075000px;}
.y59{bottom:1035.436500px;}
.y99{bottom:1051.995000px;}
.y8{bottom:1055.595000px;}
.y2e{bottom:1055.775000px;}
.y58{bottom:1056.136500px;}
.y98{bottom:1073.955000px;}
.y7{bottom:1076.295000px;}
.y2d{bottom:1076.475000px;}
.y57{bottom:1076.836500px;}
.y97{bottom:1095.915000px;}
.ybc{bottom:1097.175000px;}
.y56{bottom:1097.536500px;}
.y96{bottom:1116.615000px;}
.y6{bottom:1117.875000px;}
.y2c{bottom:1118.236500px;}
.y2b{bottom:1138.936500px;}
.y5{bottom:1159.636500px;}
.y2{bottom:1202.655000px;}
.y1{bottom:1224.795000px;}
.h3{height:32.700000px;}
.h2{height:49.289063px;}
.h4{height:50.027344px;}
.h5{height:50.695313px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w2{width:710.175000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:11.760000px;}
.x1{left:124.920000px;}
.x3{left:127.200000px;}
.x9{left:142.920000px;}
.xb{left:159.300000px;}
.x2{left:160.560000px;}
.x6{left:247.680000px;}
.xa{left:261.360000px;}
.x7{left:327.420000px;}
.x5{left:334.438500px;}
.x8{left:401.400000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:92.224000pt;}
.ws6{word-spacing:-49.728000pt;}
.ws22{word-spacing:-34.485600pt;}
.ws28{word-spacing:-34.361600pt;}
.ws43{word-spacing:-34.358400pt;}
.ws9b{word-spacing:-34.355733pt;}
.ws66{word-spacing:-34.354667pt;}
.ws93{word-spacing:-34.352000pt;}
.ws64{word-spacing:-34.350400pt;}
.ws77{word-spacing:-34.345600pt;}
.wsaf{word-spacing:-34.309333pt;}
.ws8{word-spacing:-34.295733pt;}
.ws4{word-spacing:-34.174933pt;}
.ws3{word-spacing:-34.171733pt;}
.ws48{word-spacing:-34.171200pt;}
.ws7{word-spacing:-34.168800pt;}
.ws81{word-spacing:-34.168000pt;}
.ws5d{word-spacing:-34.164800pt;}
.ws44{word-spacing:-34.161067pt;}
.ws5e{word-spacing:-33.925333pt;}
.ws8e{word-spacing:-33.922133pt;}
.ws31{word-spacing:-33.920000pt;}
.ws3f{word-spacing:-33.918400pt;}
.ws60{word-spacing:-33.916800pt;}
.wsa4{word-spacing:-33.915733pt;}
.ws15{word-spacing:-33.915200pt;}
.ws1e{word-spacing:-33.913600pt;}
.wsa6{word-spacing:-33.912800pt;}
.ws2b{word-spacing:-33.912000pt;}
.ws5b{word-spacing:-33.910400pt;}
.wsb6{word-spacing:-33.909600pt;}
.ws90{word-spacing:-33.907733pt;}
.ws5f{word-spacing:-33.900267pt;}
.wsad{word-spacing:-33.891200pt;}
.ws9{word-spacing:-33.855733pt;}
.ws2{word-spacing:-33.850400pt;}
.wsb3{word-spacing:-33.844800pt;}
.ws3a{word-spacing:-33.728533pt;}
.ws0{word-spacing:-33.728000pt;}
.ws63{word-spacing:-33.726400pt;}
.wsa3{word-spacing:-33.724533pt;}
.ws89{word-spacing:-33.722133pt;}
.ws4a{word-spacing:-33.721600pt;}
.ws61{word-spacing:-33.721067pt;}
.ws86{word-spacing:-33.720000pt;}
.wsb5{word-spacing:-33.719200pt;}
.ws59{word-spacing:-33.718400pt;}
.ws49{word-spacing:-33.716800pt;}
.ws45{word-spacing:-33.713600pt;}
.ws21{word-spacing:-33.709867pt;}
.ws1b{word-spacing:-33.705067pt;}
.ws82{word-spacing:-33.532800pt;}
.ws76{word-spacing:-33.531200pt;}
.ws6f{word-spacing:-33.526400pt;}
.ws88{word-spacing:-33.523200pt;}
.ws8d{word-spacing:-33.521600pt;}
.ws5{word-spacing:-33.519200pt;}
.ws74{word-spacing:-33.513600pt;}
.ws36{word-spacing:-33.274400pt;}
.ws5c{word-spacing:-33.272000pt;}
.ws6b{word-spacing:-33.086400pt;}
.wsb2{word-spacing:-33.078400pt;}
.ws75{word-spacing:-32.884800pt;}
.ws7c{word-spacing:-32.873600pt;}
.ws5a{word-spacing:-32.444800pt;}
.ws83{word-spacing:-32.443733pt;}
.wsaa{word-spacing:-32.428800pt;}
.wsb{word-spacing:-31.995200pt;}
.ws52{word-spacing:-31.796800pt;}
.ws14{word-spacing:-31.609600pt;}
.wsac{word-spacing:-31.360000pt;}
.wsa{word-spacing:-31.343200pt;}
.ws71{word-spacing:-31.168533pt;}
.ws27{word-spacing:-31.158400pt;}
.ws7e{word-spacing:-30.964800pt;}
.ws3b{word-spacing:-30.720000pt;}
.ws24{word-spacing:-30.528000pt;}
.wsb9{word-spacing:-30.524800pt;}
.ws2a{word-spacing:-30.326400pt;}
.ws6d{word-spacing:-30.065600pt;}
.ws19{word-spacing:-29.874667pt;}
.ws85{word-spacing:-29.696533pt;}
.wsf{word-spacing:-29.440000pt;}
.ws9f{word-spacing:-29.430400pt;}
.wsb7{word-spacing:-29.251733pt;}
.ws80{word-spacing:-29.240000pt;}
.ws37{word-spacing:-29.046400pt;}
.ws33{word-spacing:-28.800000pt;}
.wsa0{word-spacing:-28.794667pt;}
.ws54{word-spacing:-28.789867pt;}
.wsa8{word-spacing:-28.409600pt;}
.ws96{word-spacing:-28.160000pt;}
.ws30{word-spacing:-28.153600pt;}
.ws20{word-spacing:-27.968000pt;}
.ws3e{word-spacing:-27.962133pt;}
.ws29{word-spacing:-27.766400pt;}
.ws9c{word-spacing:-27.518400pt;}
.ws9e{word-spacing:-27.516800pt;}
.wsa7{word-spacing:-27.515200pt;}
.ws99{word-spacing:-27.311467pt;}
.ws4d{word-spacing:-27.249600pt;}
.wsab{word-spacing:-27.132800pt;}
.ws25{word-spacing:-26.690133pt;}
.ws91{word-spacing:-26.681600pt;}
.ws6e{word-spacing:-26.669867pt;}
.wsa5{word-spacing:-26.245333pt;}
.ws65{word-spacing:-26.236800pt;}
.wsa1{word-spacing:-26.041600pt;}
.ws53{word-spacing:-25.840000pt;}
.ws56{word-spacing:-25.596800pt;}
.ws46{word-spacing:-25.595200pt;}
.ws67{word-spacing:-25.404800pt;}
.ws40{word-spacing:-25.403200pt;}
.ws3d{word-spacing:-25.401600pt;}
.ws6a{word-spacing:-24.952000pt;}
.wsb4{word-spacing:-24.128000pt;}
.ws6c{word-spacing:-24.123200pt;}
.ws8f{word-spacing:-23.925333pt;}
.ws55{word-spacing:-23.919467pt;}
.wsc{word-spacing:-23.685333pt;}
.ws69{word-spacing:-23.657067pt;}
.ws2f{word-spacing:-23.490133pt;}
.ws62{word-spacing:-23.284800pt;}
.ws8a{word-spacing:-23.040000pt;}
.wsa9{word-spacing:-22.835733pt;}
.ws35{word-spacing:-22.381867pt;}
.ws17{word-spacing:-22.193067pt;}
.ws87{word-spacing:-21.568000pt;}
.ws7b{word-spacing:-21.561600pt;}
.wsd{word-spacing:-21.559200pt;}
.ws7f{word-spacing:-21.120000pt;}
.ws84{word-spacing:-21.116800pt;}
.ws16{word-spacing:-21.112800pt;}
.ws78{word-spacing:-20.928000pt;}
.ws34{word-spacing:-20.485333pt;}
.ws58{word-spacing:-20.473600pt;}
.ws9d{word-spacing:-20.278400pt;}
.ws4c{word-spacing:-20.208800pt;}
.ws79{word-spacing:-20.095200pt;}
.ws4e{word-spacing:-19.840000pt;}
.ws3c{word-spacing:-19.644800pt;}
.ws39{word-spacing:-19.200000pt;}
.ws94{word-spacing:-19.192000pt;}
.wsa2{word-spacing:-18.816000pt;}
.ws51{word-spacing:-18.801600pt;}
.ws72{word-spacing:-18.548800pt;}
.ws2d{word-spacing:-18.366400pt;}
.wsb1{word-spacing:-18.361600pt;}
.ws1d{word-spacing:-18.358400pt;}
.ws2c{word-spacing:-17.917600pt;}
.wse{word-spacing:-17.275200pt;}
.ws8b{word-spacing:-16.443733pt;}
.ws97{word-spacing:-16.256000pt;}
.ws9a{word-spacing:-16.249600pt;}
.wsae{word-spacing:-16.002133pt;}
.ws42{word-spacing:-15.990400pt;}
.ws13{word-spacing:-15.988800pt;}
.ws73{word-spacing:-15.355733pt;}
.ws7a{word-spacing:-14.976000pt;}
.ws47{word-spacing:-14.528000pt;}
.ws38{word-spacing:-13.880000pt;}
.ws41{word-spacing:-13.430400pt;}
.ws92{word-spacing:-12.794667pt;}
.ws1f{word-spacing:-12.602133pt;}
.ws7d{word-spacing:-12.153600pt;}
.ws23{word-spacing:-11.328000pt;}
.ws12{word-spacing:-10.663467pt;}
.ws57{word-spacing:-10.045600pt;}
.ws95{word-spacing:-9.400000pt;}
.ws1c{word-spacing:-8.118400pt;}
.wsb0{word-spacing:-7.037333pt;}
.ws2e{word-spacing:-6.646400pt;}
.ws10{word-spacing:-3.003200pt;}
.ws50{word-spacing:-1.267733pt;}
.ws4f{word-spacing:0.000000pt;}
.ws8c{word-spacing:0.838400pt;}
.ws4b{word-spacing:1.274667pt;}
.ws1a{word-spacing:1.670400pt;}
.ws68{word-spacing:2.120000pt;}
.wsb8{word-spacing:2.568800pt;}
.ws18{word-spacing:5.510400pt;}
.ws26{word-spacing:8.070400pt;}
.ws32{word-spacing:9.155200pt;}
.ws98{word-spacing:10.438400pt;}
.ws70{word-spacing:12.809600pt;}
.ws11{word-spacing:14.281867pt;}
.ws1{word-spacing:922.208800pt;}
._2{margin-left:-1.024800pt;}
._0{width:0.956800pt;}
._1f{width:15.476000pt;}
._1{width:16.860800pt;}
._20{width:17.836800pt;}
._3{width:18.927200pt;}
._23{width:19.823467pt;}
._e{width:20.746667pt;}
._8{width:21.696000pt;}
._12{width:22.714667pt;}
._14{width:24.333600pt;}
._1b{width:25.580800pt;}
._4{width:27.222400pt;}
._c{width:28.705600pt;}
._5{width:29.632000pt;}
._17{width:30.590400pt;}
._1a{width:31.686400pt;}
._22{width:32.580267pt;}
._7{width:33.525867pt;}
._b{width:34.860800pt;}
._1c{width:36.675200pt;}
._11{width:38.016000pt;}
._13{width:39.424000pt;}
._a{width:40.314667pt;}
._26{width:41.344000pt;}
._10{width:43.321600pt;}
._18{width:44.489600pt;}
._9{width:47.999200pt;}
._1e{width:50.112000pt;}
._24{width:51.648000pt;}
._f{width:52.544000pt;}
._27{width:53.504000pt;}
._d{width:56.231467pt;}
._15{width:58.996267pt;}
._19{width:60.145600pt;}
._21{width:61.277867pt;}
._6{width:98.304000pt;}
._25{width:102.259200pt;}
._1d{width:206.473333pt;}
._16{width:686.106667pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:56.866667pt;}
.y55{bottom:99.746667pt;}
.y95{bottom:102.308000pt;}
.ybb{bottom:104.226667pt;}
.y2a{bottom:107.588000pt;}
.y54{bottom:118.146667pt;}
.y94{bottom:120.708000pt;}
.y29{bottom:125.988000pt;}
.y93{bottom:139.108000pt;}
.yba{bottom:141.346667pt;}
.y28{bottom:144.388000pt;}
.y78{bottom:152.388000pt;}
.y53{bottom:155.266667pt;}
.y92{bottom:157.508000pt;}
.yb9{bottom:159.746667pt;}
.y27{bottom:162.788000pt;}
.y77{bottom:170.788000pt;}
.y52{bottom:173.666667pt;}
.yb8{bottom:178.146667pt;}
.y26{bottom:181.188000pt;}
.y51{bottom:192.066667pt;}
.y91{bottom:194.466667pt;}
.yb7{bottom:196.546667pt;}
.y25{bottom:199.588000pt;}
.y76{bottom:207.908000pt;}
.y50{bottom:210.466667pt;}
.y90{bottom:212.866667pt;}
.yb6{bottom:214.946667pt;}
.y75{bottom:226.308000pt;}
.y4f{bottom:229.988000pt;}
.yb5{bottom:233.346667pt;}
.y24{bottom:236.546667pt;}
.y74{bottom:244.706667pt;}
.y4e{bottom:249.508000pt;}
.y8f{bottom:249.988000pt;}
.y73{bottom:263.108000pt;}
.y8e{bottom:268.388000pt;}
.y4d{bottom:269.026667pt;}
.yb4{bottom:270.308000pt;}
.y23{bottom:273.666667pt;}
.y72{bottom:281.508000pt;}
.y4c{bottom:288.706667pt;}
.y22{bottom:292.066667pt;}
.y71{bottom:299.908000pt;}
.y8d{bottom:305.508000pt;}
.yb3{bottom:307.426667pt;}
.y4b{bottom:308.226667pt;}
.y21{bottom:310.466667pt;}
.y70{bottom:318.308000pt;}
.y8c{bottom:323.908000pt;}
.yb2{bottom:325.666667pt;}
.y4a{bottom:326.626667pt;}
.y20{bottom:328.866667pt;}
.y6f{bottom:336.706667pt;}
.y49{bottom:345.026667pt;}
.y6e{bottom:355.108000pt;}
.y8b{bottom:360.866667pt;}
.yb1{bottom:362.788000pt;}
.y48{bottom:364.546667pt;}
.y1f{bottom:365.988000pt;}
.y6d{bottom:373.508000pt;}
.y8a{bottom:379.266667pt;}
.y47{bottom:384.066667pt;}
.y1e{bottom:384.388000pt;}
.y89{bottom:397.666667pt;}
.yb0{bottom:399.908000pt;}
.y1d{bottom:402.788000pt;}
.y6c{bottom:410.466667pt;}
.yaf{bottom:418.308000pt;}
.y46{bottom:422.308000pt;}
.y6b{bottom:430.146667pt;}
.y88{bottom:434.788000pt;}
.ycd{bottom:439.108000pt;}
.y1c{bottom:439.746667pt;}
.y6a{bottom:448.546667pt;}
.yae{bottom:455.266667pt;}
.ycc{bottom:457.506667pt;}
.y1b{bottom:458.146667pt;}
.y45{bottom:459.266667pt;}
.y69{bottom:468.066667pt;}
.y87{bottom:471.908000pt;}
.y1a{bottom:476.546667pt;}
.y44{bottom:477.666667pt;}
.y68{bottom:487.588000pt;}
.y86{bottom:490.308000pt;}
.yad{bottom:492.388000pt;}
.ycb{bottom:494.466667pt;}
.y19{bottom:494.946667pt;}
.y43{bottom:496.066667pt;}
.y67{bottom:507.108000pt;}
.y85{bottom:508.706667pt;}
.yac{bottom:510.788000pt;}
.yca{bottom:512.866667pt;}
.y42{bottom:514.466667pt;}
.y66{bottom:526.626667pt;}
.y84{bottom:527.108000pt;}
.yab{bottom:529.188000pt;}
.yc9{bottom:531.266667pt;}
.y18{bottom:532.066667pt;}
.y41{bottom:532.866667pt;}
.y65{bottom:546.146667pt;}
.yaa{bottom:547.588000pt;}
.y40{bottom:551.266667pt;}
.y83{bottom:564.066667pt;}
.y64{bottom:564.546667pt;}
.yc8{bottom:568.388000pt;}
.y17{bottom:569.188000pt;}
.y3f{bottom:569.666667pt;}
.y82{bottom:582.466667pt;}
.y63{bottom:584.066667pt;}
.ya9{bottom:584.706667pt;}
.y16{bottom:587.588000pt;}
.y3e{bottom:588.066667pt;}
.ya8{bottom:603.108000pt;}
.y62{bottom:603.746667pt;}
.yc7{bottom:605.506667pt;}
.y3d{bottom:606.466667pt;}
.y81{bottom:619.588000pt;}
.ya7{bottom:621.506667pt;}
.y61{bottom:623.266667pt;}
.y15{bottom:624.546667pt;}
.y80{bottom:637.988000pt;}
.ya6{bottom:639.908000pt;}
.yc6{bottom:642.466667pt;}
.y14{bottom:642.946667pt;}
.y3c{bottom:643.588000pt;}
.y7f{bottom:656.388000pt;}
.ya5{bottom:658.308000pt;}
.yc5{bottom:660.866667pt;}
.y13{bottom:661.346667pt;}
.y60{bottom:661.506667pt;}
.y3b{bottom:661.988000pt;}
.y7e{bottom:674.788000pt;}
.ya4{bottom:676.706667pt;}
.y12{bottom:679.746667pt;}
.yc4{bottom:697.988000pt;}
.y11{bottom:698.146667pt;}
.y5f{bottom:698.466667pt;}
.y3a{bottom:699.108000pt;}
.y7d{bottom:711.906667pt;}
.ya3{bottom:713.666667pt;}
.y10{bottom:716.546667pt;}
.y39{bottom:717.506667pt;}
.y7c{bottom:730.308000pt;}
.ya2{bottom:732.066667pt;}
.yf{bottom:734.946667pt;}
.yc3{bottom:735.108000pt;}
.y5e{bottom:735.588000pt;}
.y38{bottom:735.906667pt;}
.y7b{bottom:748.706667pt;}
.ya1{bottom:750.466667pt;}
.ye{bottom:753.346667pt;}
.ya0{bottom:768.866667pt;}
.yd{bottom:771.746667pt;}
.y5d{bottom:772.706667pt;}
.y37{bottom:772.866667pt;}
.y7a{bottom:785.666667pt;}
.y9f{bottom:787.266667pt;}
.yc{bottom:790.146667pt;}
.yc2{bottom:790.466667pt;}
.y36{bottom:791.266667pt;}
.y9e{bottom:805.666667pt;}
.yb{bottom:808.546667pt;}
.yc1{bottom:808.866667pt;}
.y35{bottom:809.666667pt;}
.y9d{bottom:824.066667pt;}
.y34{bottom:828.066667pt;}
.ya{bottom:845.666667pt;}
.yc0{bottom:845.988000pt;}
.y33{bottom:846.466667pt;}
.y9c{bottom:861.188000pt;}
.y9{bottom:864.066667pt;}
.ybf{bottom:864.388000pt;}
.y32{bottom:864.866667pt;}
.y5c{bottom:865.188000pt;}
.y9b{bottom:879.588000pt;}
.ybe{bottom:882.788000pt;}
.y31{bottom:883.266667pt;}
.y5b{bottom:883.588000pt;}
.y79{bottom:901.506667pt;}
.y30{bottom:901.666667pt;}
.y5a{bottom:901.988000pt;}
.y9a{bottom:916.706667pt;}
.ybd{bottom:919.906667pt;}
.y2f{bottom:920.066667pt;}
.y59{bottom:920.388000pt;}
.y99{bottom:935.106667pt;}
.y8{bottom:938.306667pt;}
.y2e{bottom:938.466667pt;}
.y58{bottom:938.788000pt;}
.y98{bottom:954.626667pt;}
.y7{bottom:956.706667pt;}
.y2d{bottom:956.866667pt;}
.y57{bottom:957.188000pt;}
.y97{bottom:974.146667pt;}
.ybc{bottom:975.266667pt;}
.y56{bottom:975.588000pt;}
.y96{bottom:992.546667pt;}
.y6{bottom:993.666667pt;}
.y2c{bottom:993.988000pt;}
.y2b{bottom:1012.388000pt;}
.y5{bottom:1030.788000pt;}
.y2{bottom:1069.026667pt;}
.y1{bottom:1088.706667pt;}
.h3{height:29.066667pt;}
.h2{height:43.812500pt;}
.h4{height:44.468750pt;}
.h5{height:45.062500pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w2{width:631.266667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:10.453333pt;}
.x1{left:111.040000pt;}
.x3{left:113.066667pt;}
.x9{left:127.040000pt;}
.xb{left:141.600000pt;}
.x2{left:142.720000pt;}
.x6{left:220.160000pt;}
.xa{left:232.320000pt;}
.x7{left:291.040000pt;}
.x5{left:297.278667pt;}
.x8{left:356.800000pt;}
}




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