
    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_472fb4d10547694c300e2c75.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945000;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_e85e9b3fe86bdcd2735f7074.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_1df617ba62f5f52952eae675.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_abe709c2cf02b5760534dc99.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.897000;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_bb34fa4ec700d85062f08d28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.482000;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_34d29178fe49dff7932836e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.947000;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_34d29178fe49dff7932836e7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.947000;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_34d29178fe49dff7932836e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.947000;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_5510f2fb3cad207e49bebe61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fd1b55073d95ac1a2fe59020.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f4ac2ed4ff17293bf523a20a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.580000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250210,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250210,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250210,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.872000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000538px;}
.ls5{letter-spacing:0.801527px;}
.lsd{letter-spacing:0.834017px;}
.ls0{letter-spacing:2.964877px;}
.lse{letter-spacing:2.987675px;}
.ls4{letter-spacing:2.988017px;}
.ls2{letter-spacing:2.988780px;}
.ls8{letter-spacing:16.608538px;}
.ls6{letter-spacing:17.933108px;}
.ls9{letter-spacing:20.926200px;}
.lsc{letter-spacing:21.876538px;}
.lsa{letter-spacing:24.234538px;}
.lsb{letter-spacing:24.990538px;}
.ls7{letter-spacing:135.514196px;}
.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;}
}
.ws7b{word-spacing:-143.732553px;}
.ws2c{word-spacing:-17.932680px;}
.ws4{word-spacing:-14.943900px;}
.ws11{word-spacing:-14.920027px;}
.wsf{word-spacing:-13.449600px;}
.ws56{word-spacing:-11.955150px;}
.ws81{word-spacing:-1.016185px;}
.ws44{word-spacing:-0.836858px;}
.ws82{word-spacing:-0.657532px;}
.ws41{word-spacing:-0.358654px;}
.ws80{word-spacing:-0.239102px;}
.ws5{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.wsa1{word-spacing:-0.047821px;}
.ws2b{word-spacing:0.000000px;}
.ws59{word-spacing:0.358654px;}
.wse{word-spacing:0.376589px;}
.wsa6{word-spacing:0.382565px;}
.ws19{word-spacing:0.418429px;}
.ws1e{word-spacing:0.597756px;}
.ws49{word-spacing:0.836858px;}
.ws42{word-spacing:1.016185px;}
.ws8c{word-spacing:1.075961px;}
.ws8e{word-spacing:1.195512px;}
.ws28{word-spacing:1.255288px;}
.ws4c{word-spacing:1.434614px;}
.ws9b{word-spacing:1.530259px;}
.ws40{word-spacing:1.613941px;}
.ws52{word-spacing:1.673717px;}
.ws4a{word-spacing:1.853044px;}
.ws9f{word-spacing:2.199748px;}
.wsa{word-spacing:2.205734px;}
.wsa4{word-spacing:2.295389px;}
.ws30{word-spacing:2.391024px;}
.ws27{word-spacing:2.689902px;}
.ws7f{word-spacing:2.988780px;}
.ws46{word-spacing:3.048556px;}
.ws1d{word-spacing:3.287658px;}
.ws3a{word-spacing:3.407209px;}
.ws5b{word-spacing:3.586536px;}
.ws8a{word-spacing:3.765863px;}
.ws9a{word-spacing:3.825638px;}
.ws98{word-spacing:3.885414px;}
.ws86{word-spacing:3.945190px;}
.ws51{word-spacing:4.004965px;}
.ws3b{word-spacing:4.124516px;}
.ws34{word-spacing:4.184292px;}
.ws13{word-spacing:4.244068px;}
.ws95{word-spacing:4.303843px;}
.ws31{word-spacing:4.423394px;}
.ws20{word-spacing:4.602721px;}
.ws45{word-spacing:4.722272px;}
.wsa2{word-spacing:4.734239px;}
.wsa0{word-spacing:4.777160px;}
.ws9d{word-spacing:4.782060px;}
.ws99{word-spacing:4.961375px;}
.ws7d{word-spacing:5.080926px;}
.ws4e{word-spacing:5.140702px;}
.ws3f{word-spacing:5.200477px;}
.ws8b{word-spacing:5.260253px;}
.ws1c{word-spacing:5.320028px;}
.ws2e{word-spacing:5.379804px;}
.ws72{word-spacing:5.499355px;}
.ws50{word-spacing:5.618906px;}
.ws18{word-spacing:5.678682px;}
.ws55{word-spacing:5.925734px;}
.ws84{word-spacing:5.929754px;}
.ws0{word-spacing:5.977560px;}
.ws9c{word-spacing:6.025396px;}
.ws6d{word-spacing:6.037336px;}
.ws93{word-spacing:6.276438px;}
.ws38{word-spacing:6.455765px;}
.ws64{word-spacing:6.515540px;}
.ws2d{word-spacing:6.575316px;}
.ws2{word-spacing:6.575340px;}
.ws2f{word-spacing:6.635092px;}
.wsb{word-spacing:6.724800px;}
.ws97{word-spacing:6.933970px;}
.ws63{word-spacing:7.711052px;}
.ws53{word-spacing:7.830604px;}
.ws25{word-spacing:8.249033px;}
.ws24{word-spacing:8.428360px;}
.ws37{word-spacing:8.906564px;}
.ws83{word-spacing:8.966340px;}
.ws12{word-spacing:9.145667px;}
.ws47{word-spacing:9.205442px;}
.wsa3{word-spacing:9.229376px;}
.ws87{word-spacing:9.265218px;}
.ws3e{word-spacing:9.384769px;}
.ws4f{word-spacing:9.444545px;}
.ws16{word-spacing:9.623872px;}
.ws65{word-spacing:9.683647px;}
.ws15{word-spacing:9.743423px;}
.ws75{word-spacing:9.982525px;}
.ws90{word-spacing:10.042301px;}
.ws78{word-spacing:10.102076px;}
.ws39{word-spacing:10.281403px;}
.ws43{word-spacing:10.938935px;}
.ws3c{word-spacing:11.058486px;}
.ws7{word-spacing:11.082470px;}
.ws6b{word-spacing:11.178037px;}
.ws5f{word-spacing:11.536691px;}
.ws6e{word-spacing:11.716018px;}
.ws77{word-spacing:11.835569px;}
.ws3d{word-spacing:11.895344px;}
.ws54{word-spacing:11.955120px;}
.ws33{word-spacing:12.014896px;}
.ws5c{word-spacing:12.074671px;}
.wsa5{word-spacing:12.194253px;}
.ws4b{word-spacing:12.313774px;}
.ws36{word-spacing:12.373549px;}
.ws2a{word-spacing:12.552876px;}
.ws8{word-spacing:12.696422px;}
.ws26{word-spacing:12.791978px;}
.ws8f{word-spacing:13.090856px;}
.ws22{word-spacing:13.150632px;}
.ws66{word-spacing:13.449510px;}
.ws6a{word-spacing:13.509286px;}
.ws62{word-spacing:14.166817px;}
.ws6f{word-spacing:14.346144px;}
.ws1{word-spacing:14.346180px;}
.ws32{word-spacing:14.405920px;}
.ws61{word-spacing:14.465695px;}
.ws35{word-spacing:14.585246px;}
.ws60{word-spacing:14.645022px;}
.ws67{word-spacing:14.943900px;}
.ws71{word-spacing:15.003676px;}
.ws14{word-spacing:15.362329px;}
.ws79{word-spacing:15.422105px;}
.ws23{word-spacing:15.541656px;}
.ws88{word-spacing:15.960085px;}
.ws48{word-spacing:16.079636px;}
.ws5d{word-spacing:16.139412px;}
.ws17{word-spacing:16.199188px;}
.ws70{word-spacing:16.258963px;}
.ws69{word-spacing:16.557841px;}
.ws9e{word-spacing:16.689389px;}
.ws74{word-spacing:16.976270px;}
.ws7e{word-spacing:17.036046px;}
.wsd{word-spacing:17.107891px;}
.ws68{word-spacing:17.275148px;}
.ws6c{word-spacing:17.394700px;}
.ws5e{word-spacing:17.514251px;}
.ws9{word-spacing:17.538278px;}
.ws29{word-spacing:17.633802px;}
.ws10{word-spacing:17.932680px;}
.ws1a{word-spacing:18.470660px;}
.ws94{word-spacing:18.709763px;}
.ws85{word-spacing:18.948865px;}
.ws7c{word-spacing:19.052325px;}
.ws21{word-spacing:19.128192px;}
.ws4d{word-spacing:19.367294px;}
.ws73{word-spacing:19.965050px;}
.ws5a{word-spacing:20.204153px;}
.ws96{word-spacing:20.443255px;}
.ws3{word-spacing:20.861684px;}
.ws91{word-spacing:20.981236px;}
.ws92{word-spacing:21.399665px;}
.ws58{word-spacing:21.519216px;}
.ws89{word-spacing:21.877870px;}
.ws7a{word-spacing:22.356074px;}
.ws1f{word-spacing:22.535401px;}
.ws8d{word-spacing:23.013606px;}
.ws1b{word-spacing:23.192933px;}
.ws76{word-spacing:23.551586px;}
.wsc{word-spacing:30.557491px;}
.ws57{word-spacing:38.734589px;}
._d{margin-left:-135.662008px;}
._2{margin-left:-7.298627px;}
._7{margin-left:-6.097102px;}
._3{margin-left:-4.782048px;}
._1{margin-left:-3.586545px;}
._0{margin-left:-2.582312px;}
._4{margin-left:-1.315054px;}
._b{width:2.206733px;}
._5{width:3.319164px;}
._8{width:4.879235px;}
._13{width:5.974500px;}
._12{width:13.688594px;}
._11{width:19.060740px;}
._a{width:26.313208px;}
._9{width:28.764016px;}
._c{width:30.784434px;}
._6{width:32.549944px;}
._10{width:44.455170px;}
._e{width:617.080958px;}
._f{width:626.376313px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.537632px;}
.fs5{font-size:29.562434px;}
.fs7{font-size:46.671691px;}
.fs4{font-size:47.820600px;}
.fs8{font-size:50.809260px;}
.fs3{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y7f{bottom:7.429694px;}
.y7d{bottom:18.515607px;}
.y77{bottom:25.906215px;}
.y78{bottom:56.651146px;}
.y1{bottom:62.733000px;}
.y79{bottom:87.396078px;}
.y7e{bottom:101.911232px;}
.y31{bottom:113.332500px;}
.yc7{bottom:115.473000px;}
.y7a{bottom:118.104056px;}
.yc6{bottom:128.922000px;}
.y30{bottom:131.265000px;}
.yc5{bottom:142.371000px;}
.y7b{bottom:148.848987px;}
.y4e{bottom:149.197500px;}
.y2f{bottom:149.199000px;}
.yc4{bottom:155.821500px;}
.y82{bottom:158.481069px;}
.y81{bottom:166.179963px;}
.y2e{bottom:167.131500px;}
.yc3{bottom:169.270500px;}
.y80{bottom:173.570572px;}
.y7c{bottom:179.593955px;}
.yc2{bottom:182.719500px;}
.y2d{bottom:185.064000px;}
.yc1{bottom:196.170000px;}
.y2c{bottom:202.996500px;}
.yc0{bottom:209.619000px;}
.y2b{bottom:220.929000px;}
.ybf{bottom:223.069500px;}
.ybe{bottom:236.518500px;}
.y2a{bottom:238.861500px;}
.y5a{bottom:238.863000px;}
.ybd{bottom:249.967500px;}
.y4d{bottom:256.794000px;}
.y29{bottom:256.795500px;}
.ybc{bottom:263.418000px;}
.y28{bottom:274.728000px;}
.ybb{bottom:276.867000px;}
.yba{bottom:290.316000px;}
.y27{bottom:292.660500px;}
.y9b{bottom:297.213000px;}
.y4c{bottom:310.593000px;}
.yb9{bottom:311.743500px;}
.y26{bottom:312.315000px;}
.y75{bottom:316.852500px;}
.y9a{bottom:324.304500px;}
.y4b{bottom:328.525500px;}
.y25{bottom:330.247500px;}
.y59{bottom:334.005000px;}
.y74{bottom:334.785000px;}
.yb8{bottom:337.470000px;}
.y99{bottom:342.237000px;}
.y4a{bottom:346.458000px;}
.y24{bottom:348.180000px;}
.y73{bottom:352.717500px;}
.yb7{bottom:355.402500px;}
.y98{bottom:360.169500px;}
.y58{bottom:363.118500px;}
.y49{bottom:364.390500px;}
.y23{bottom:366.114000px;}
.y72{bottom:370.650000px;}
.yb6{bottom:373.335000px;}
.y97{bottom:378.102000px;}
.y57{bottom:381.052500px;}
.y48{bottom:382.324500px;}
.y22{bottom:384.046500px;}
.yb5{bottom:391.267500px;}
.y71{bottom:394.842000px;}
.y96{bottom:396.036000px;}
.y56{bottom:398.985000px;}
.y47{bottom:400.257000px;}
.y21{bottom:401.979000px;}
.yb4{bottom:409.200000px;}
.y70{bottom:412.774500px;}
.y95{bottom:413.968500px;}
.y55{bottom:416.917500px;}
.y46{bottom:418.189500px;}
.y20{bottom:419.911500px;}
.y6f{bottom:430.707000px;}
.yb3{bottom:431.458500px;}
.y94{bottom:431.901000px;}
.y54{bottom:434.850000px;}
.y45{bottom:436.122000px;}
.y1f{bottom:437.844000px;}
.y6e{bottom:448.641000px;}
.y93{bottom:449.833500px;}
.y53{bottom:452.782500px;}
.y44{bottom:454.054500px;}
.y1e{bottom:455.776500px;}
.yb2{bottom:457.185000px;}
.y6d{bottom:466.573500px;}
.y92{bottom:467.766000px;}
.y52{bottom:470.715000px;}
.y1d{bottom:473.710500px;}
.y43{bottom:473.877000px;}
.yb1{bottom:475.117500px;}
.y6c{bottom:484.506000px;}
.y91{bottom:485.698500px;}
.y51{bottom:488.649000px;}
.y1c{bottom:491.643000px;}
.y42{bottom:491.809500px;}
.yb0{bottom:493.050000px;}
.y6b{bottom:502.438500px;}
.y90{bottom:503.632500px;}
.y1b{bottom:509.575500px;}
.y41{bottom:509.742000px;}
.yaf{bottom:510.982500px;}
.y6a{bottom:520.371000px;}
.y8f{bottom:521.565000px;}
.y1a{bottom:527.508000px;}
.y40{bottom:527.676000px;}
.yae{bottom:528.915000px;}
.y69{bottom:538.305000px;}
.y8e{bottom:539.497500px;}
.y50{bottom:540.100500px;}
.y19{bottom:545.440500px;}
.y3f{bottom:545.608500px;}
.yad{bottom:546.847500px;}
.y68{bottom:556.237500px;}
.y18{bottom:563.373000px;}
.y3e{bottom:563.541000px;}
.yac{bottom:564.781500px;}
.y67{bottom:574.170000px;}
.y17{bottom:581.307000px;}
.y3d{bottom:581.473500px;}
.yab{bottom:587.038500px;}
.y8d{bottom:588.955500px;}
.y66{bottom:592.102500px;}
.y16{bottom:599.239500px;}
.y3c{bottom:599.406000px;}
.y65{bottom:610.035000px;}
.yaa{bottom:612.765000px;}
.y15{bottom:617.172000px;}
.y3b{bottom:617.338500px;}
.y8a{bottom:625.655625px;}
.y64{bottom:627.967500px;}
.ya9{bottom:630.697500px;}
.y14{bottom:635.104500px;}
.y3a{bottom:635.272500px;}
.y84{bottom:643.318200px;}
.y63{bottom:645.901500px;}
.ya8{bottom:648.630000px;}
.y39{bottom:653.205000px;}
.y62{bottom:663.834000px;}
.ya7{bottom:666.562500px;}
.y13{bottom:668.076000px;}
.y38{bottom:671.137500px;}
.y85{bottom:680.659125px;}
.y61{bottom:681.766500px;}
.ya6{bottom:684.495000px;}
.y37{bottom:689.070000px;}
.y12{bottom:693.625500px;}
.y60{bottom:699.699000px;}
.y8b{bottom:699.807075px;}
.ya5{bottom:702.427500px;}
.y36{bottom:707.002500px;}
.y11{bottom:708.568500px;}
.y5f{bottom:717.631500px;}
.ya4{bottom:720.361500px;}
.y10{bottom:723.513000px;}
.y35{bottom:724.935000px;}
.y86{bottom:726.387000px;}
.y5e{bottom:735.564000px;}
.ya3{bottom:738.294000px;}
.y34{bottom:742.869000px;}
.yf{bottom:752.934000px;}
.y5d{bottom:753.498000px;}
.ya2{bottom:756.226500px;}
.y33{bottom:760.801500px;}
.ye{bottom:767.878500px;}
.y5c{bottom:771.430500px;}
.y87{bottom:772.116150px;}
.ya1{bottom:774.159000px;}
.y32{bottom:778.734000px;}
.y8c{bottom:779.868000px;}
.yd{bottom:782.823000px;}
.y5b{bottom:789.363000px;}
.ya0{bottom:792.091500px;}
.yc{bottom:797.766000px;}
.y9f{bottom:810.025500px;}
.yb{bottom:812.710500px;}
.y88{bottom:817.844025px;}
.y9e{bottom:827.958000px;}
.y4f{bottom:840.471000px;}
.y9d{bottom:845.508000px;}
.ya{bottom:861.849000px;}
.y9c{bottom:863.440500px;}
.y89{bottom:863.571900px;}
.y9{bottom:880.342500px;}
.y8{bottom:898.834500px;}
.y83{bottom:901.794000px;}
.y76{bottom:923.312499px;}
.y7{bottom:936.534000px;}
.y6{bottom:955.027500px;}
.y5{bottom:973.521000px;}
.y4{bottom:992.235000px;}
.y3{bottom:1039.309500px;}
.y2{bottom:1081.152000px;}
.hb{height:21.532934px;}
.ha{height:21.551014px;}
.he{height:34.397869px;}
.hf{height:34.765576px;}
.hc{height:36.217232px;}
.hd{height:36.938332px;}
.h8{height:37.174694px;}
.h7{height:37.605082px;}
.h4{height:40.826735px;}
.h1{height:43.456861px;}
.h5{height:43.756861px;}
.h3{height:47.802722px;}
.h6{height:57.328861px;}
.h2{height:104.296729px;}
.h9{height:188.875677px;}
.h0{height:1188.000000px;}
.w3{width:278.799856px;}
.w2{width:294.214258px;}
.w1{width:310.883516px;}
.w4{width:771.122592px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2f{left:10.161947px;}
.x2d{left:19.174839px;}
.x2c{left:23.280385px;}
.x28{left:26.831209px;}
.x26{left:35.844101px;}
.x25{left:39.949647px;}
.x24{left:44.055378px;}
.x2e{left:49.214426px;}
.x27{left:65.883688px;}
.x1d{left:73.446000px;}
.x1{left:76.536000px;}
.x35{left:78.246000px;}
.x34{left:85.733815px;}
.x1c{left:88.390500px;}
.x7{left:89.800500px;}
.x5{left:95.044500px;}
.x4{left:106.731000px;}
.x3a{left:109.119000px;}
.x30{left:125.396039px;}
.x39{left:126.706125px;}
.x37{left:138.177300px;}
.x29{left:142.065301px;}
.x22{left:145.605000px;}
.x6{left:148.102500px;}
.x3b{left:157.014000px;}
.x36{left:179.185125px;}
.x2{left:188.611500px;}
.x32{left:200.853611px;}
.x1e{left:203.428500px;}
.x31{left:207.004454px;}
.x2b{left:217.522873px;}
.x3{left:222.021000px;}
.x2a{left:223.673716px;}
.x38{left:250.216650px;}
.x14{left:268.390500px;}
.x8{left:289.260000px;}
.x9{left:305.079000px;}
.x18{left:306.102000px;}
.x23{left:313.096766px;}
.x15{left:332.799000px;}
.xa{left:350.367000px;}
.x1b{left:415.498500px;}
.x19{left:464.013000px;}
.x21{left:467.967000px;}
.x20{left:482.910000px;}
.xc{left:488.439000px;}
.x1f{left:495.750000px;}
.xb{left:502.209000px;}
.x16{left:520.629000px;}
.xd{left:536.133000px;}
.x1a{left:554.589000px;}
.x33{left:565.768295px;}
.x17{left:572.752500px;}
.x3d{left:583.380000px;}
.x3c{left:598.951500px;}
.x3e{left:614.418000px;}
.xe{left:655.980000px;}
.x10{left:661.020000px;}
.xf{left:688.389000px;}
.x13{left:763.483500px;}
.x11{left:766.219500px;}
.x12{left:777.240000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.330667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000479pt;}
.ls5{letter-spacing:0.712468pt;}
.lsd{letter-spacing:0.741348pt;}
.ls0{letter-spacing:2.635446pt;}
.lse{letter-spacing:2.655711pt;}
.ls4{letter-spacing:2.656015pt;}
.ls2{letter-spacing:2.656693pt;}
.ls8{letter-spacing:14.763145pt;}
.ls6{letter-spacing:15.940541pt;}
.ls9{letter-spacing:18.601067pt;}
.lsc{letter-spacing:19.445812pt;}
.lsa{letter-spacing:21.541812pt;}
.lsb{letter-spacing:22.213812pt;}
.ls7{letter-spacing:120.457063pt;}
.ws7b{word-spacing:-127.762269pt;}
.ws2c{word-spacing:-15.940160pt;}
.ws4{word-spacing:-13.283467pt;}
.ws11{word-spacing:-13.262246pt;}
.wsf{word-spacing:-11.955200pt;}
.ws56{word-spacing:-10.626800pt;}
.ws81{word-spacing:-0.903276pt;}
.ws44{word-spacing:-0.743874pt;}
.ws82{word-spacing:-0.584473pt;}
.ws41{word-spacing:-0.318803pt;}
.ws80{word-spacing:-0.212535pt;}
.ws5{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.wsa1{word-spacing:-0.042507pt;}
.ws2b{word-spacing:0.000000pt;}
.ws59{word-spacing:0.318803pt;}
.wse{word-spacing:0.334746pt;}
.wsa6{word-spacing:0.340058pt;}
.ws19{word-spacing:0.371937pt;}
.ws1e{word-spacing:0.531339pt;}
.ws49{word-spacing:0.743874pt;}
.ws42{word-spacing:0.903276pt;}
.ws8c{word-spacing:0.956410pt;}
.ws8e{word-spacing:1.062677pt;}
.ws28{word-spacing:1.115811pt;}
.ws4c{word-spacing:1.275213pt;}
.ws9b{word-spacing:1.360230pt;}
.ws40{word-spacing:1.434614pt;}
.ws52{word-spacing:1.487748pt;}
.ws4a{word-spacing:1.647150pt;}
.ws9f{word-spacing:1.955331pt;}
.wsa{word-spacing:1.960653pt;}
.wsa4{word-spacing:2.040346pt;}
.ws30{word-spacing:2.125355pt;}
.ws27{word-spacing:2.391024pt;}
.ws7f{word-spacing:2.656693pt;}
.ws46{word-spacing:2.709827pt;}
.ws1d{word-spacing:2.922363pt;}
.ws3a{word-spacing:3.028630pt;}
.ws5b{word-spacing:3.188032pt;}
.ws8a{word-spacing:3.347434pt;}
.ws9a{word-spacing:3.400567pt;}
.ws98{word-spacing:3.453701pt;}
.ws86{word-spacing:3.506835pt;}
.ws51{word-spacing:3.559969pt;}
.ws3b{word-spacing:3.666237pt;}
.ws34{word-spacing:3.719371pt;}
.ws13{word-spacing:3.772505pt;}
.ws95{word-spacing:3.825638pt;}
.ws31{word-spacing:3.931906pt;}
.ws20{word-spacing:4.091308pt;}
.ws45{word-spacing:4.197575pt;}
.wsa2{word-spacing:4.208213pt;}
.wsa0{word-spacing:4.246364pt;}
.ws9d{word-spacing:4.250720pt;}
.ws99{word-spacing:4.410111pt;}
.ws7d{word-spacing:4.516379pt;}
.ws4e{word-spacing:4.569513pt;}
.ws3f{word-spacing:4.622646pt;}
.ws8b{word-spacing:4.675780pt;}
.ws1c{word-spacing:4.728914pt;}
.ws2e{word-spacing:4.782048pt;}
.ws72{word-spacing:4.888316pt;}
.ws50{word-spacing:4.994583pt;}
.ws18{word-spacing:5.047717pt;}
.ws55{word-spacing:5.267319pt;}
.ws84{word-spacing:5.270893pt;}
.ws0{word-spacing:5.313387pt;}
.ws9c{word-spacing:5.355907pt;}
.ws6d{word-spacing:5.366521pt;}
.ws93{word-spacing:5.579056pt;}
.ws38{word-spacing:5.738458pt;}
.ws64{word-spacing:5.791591pt;}
.ws2d{word-spacing:5.844725pt;}
.ws2{word-spacing:5.844747pt;}
.ws2f{word-spacing:5.897859pt;}
.wsb{word-spacing:5.977600pt;}
.ws97{word-spacing:6.163529pt;}
.ws63{word-spacing:6.854269pt;}
.ws53{word-spacing:6.960537pt;}
.ws25{word-spacing:7.332474pt;}
.ws24{word-spacing:7.491875pt;}
.ws37{word-spacing:7.916946pt;}
.ws83{word-spacing:7.970080pt;}
.ws12{word-spacing:8.129482pt;}
.ws47{word-spacing:8.182615pt;}
.wsa3{word-spacing:8.203890pt;}
.ws87{word-spacing:8.235749pt;}
.ws3e{word-spacing:8.342017pt;}
.ws4f{word-spacing:8.395151pt;}
.ws16{word-spacing:8.554553pt;}
.ws65{word-spacing:8.607686pt;}
.ws15{word-spacing:8.660820pt;}
.ws75{word-spacing:8.873356pt;}
.ws90{word-spacing:8.926490pt;}
.ws78{word-spacing:8.979623pt;}
.ws39{word-spacing:9.139025pt;}
.ws43{word-spacing:9.723498pt;}
.ws3c{word-spacing:9.829765pt;}
.ws7{word-spacing:9.851085pt;}
.ws6b{word-spacing:9.936033pt;}
.ws5f{word-spacing:10.254836pt;}
.ws6e{word-spacing:10.414238pt;}
.ws77{word-spacing:10.520506pt;}
.ws3d{word-spacing:10.573639pt;}
.ws54{word-spacing:10.626773pt;}
.ws33{word-spacing:10.679907pt;}
.ws5c{word-spacing:10.733041pt;}
.wsa5{word-spacing:10.839336pt;}
.ws4b{word-spacing:10.945577pt;}
.ws36{word-spacing:10.998710pt;}
.ws2a{word-spacing:11.158112pt;}
.ws8{word-spacing:11.285709pt;}
.ws26{word-spacing:11.370647pt;}
.ws8f{word-spacing:11.636317pt;}
.ws22{word-spacing:11.689451pt;}
.ws66{word-spacing:11.955120pt;}
.ws6a{word-spacing:12.008254pt;}
.ws62{word-spacing:12.592726pt;}
.ws6f{word-spacing:12.752128pt;}
.ws1{word-spacing:12.752160pt;}
.ws32{word-spacing:12.805262pt;}
.ws61{word-spacing:12.858396pt;}
.ws35{word-spacing:12.964663pt;}
.ws60{word-spacing:13.017797pt;}
.ws67{word-spacing:13.283467pt;}
.ws71{word-spacing:13.336601pt;}
.ws14{word-spacing:13.655404pt;}
.ws79{word-spacing:13.708538pt;}
.ws23{word-spacing:13.814805pt;}
.ws88{word-spacing:14.186742pt;}
.ws48{word-spacing:14.293010pt;}
.ws5d{word-spacing:14.346144pt;}
.ws17{word-spacing:14.399278pt;}
.ws70{word-spacing:14.452412pt;}
.ws69{word-spacing:14.718081pt;}
.ws9e{word-spacing:14.835013pt;}
.ws74{word-spacing:15.090018pt;}
.ws7e{word-spacing:15.143152pt;}
.wsd{word-spacing:15.207014pt;}
.ws68{word-spacing:15.355687pt;}
.ws6c{word-spacing:15.461955pt;}
.ws5e{word-spacing:15.568223pt;}
.ws9{word-spacing:15.589581pt;}
.ws29{word-spacing:15.674491pt;}
.ws10{word-spacing:15.940160pt;}
.ws1a{word-spacing:16.418365pt;}
.ws94{word-spacing:16.630900pt;}
.ws85{word-spacing:16.843436pt;}
.ws7c{word-spacing:16.935400pt;}
.ws21{word-spacing:17.002837pt;}
.ws4d{word-spacing:17.215373pt;}
.ws73{word-spacing:17.746711pt;}
.ws5a{word-spacing:17.959247pt;}
.ws96{word-spacing:18.171782pt;}
.ws3{word-spacing:18.543719pt;}
.ws91{word-spacing:18.649987pt;}
.ws92{word-spacing:19.021924pt;}
.ws58{word-spacing:19.128192pt;}
.ws89{word-spacing:19.446995pt;}
.ws7a{word-spacing:19.872066pt;}
.ws1f{word-spacing:20.031468pt;}
.ws8d{word-spacing:20.456539pt;}
.ws1b{word-spacing:20.615940pt;}
.ws76{word-spacing:20.934743pt;}
.wsc{word-spacing:27.162214pt;}
.ws57{word-spacing:34.430746pt;}
._d{margin-left:-120.588452pt;}
._2{margin-left:-6.487669pt;}
._7{margin-left:-5.419646pt;}
._3{margin-left:-4.250709pt;}
._1{margin-left:-3.188040pt;}
._0{margin-left:-2.295389pt;}
._4{margin-left:-1.168937pt;}
._b{width:1.961541pt;}
._5{width:2.950368pt;}
._8{width:4.337098pt;}
._13{width:5.310667pt;}
._12{width:12.167639pt;}
._11{width:16.942880pt;}
._a{width:23.389518pt;}
._9{width:25.568014pt;}
._c{width:27.363941pt;}
._6{width:28.933283pt;}
._10{width:39.515707pt;}
._e{width:548.516408pt;}
._f{width:556.778945pt;}
.fs6{font-size:26.255673pt;}
.fs5{font-size:26.277719pt;}
.fs7{font-size:41.485948pt;}
.fs4{font-size:42.507200pt;}
.fs8{font-size:45.163787pt;}
.fs3{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:6.604173pt;}
.y7d{bottom:16.458317pt;}
.y77{bottom:23.027747pt;}
.y78{bottom:50.356575pt;}
.y1{bottom:55.762667pt;}
.y79{bottom:77.685402pt;}
.y7e{bottom:90.587762pt;}
.y31{bottom:100.740000pt;}
.yc7{bottom:102.642667pt;}
.y7a{bottom:104.981383pt;}
.yc6{bottom:114.597333pt;}
.y30{bottom:116.680000pt;}
.yc5{bottom:126.552000pt;}
.y7b{bottom:132.310210pt;}
.y4e{bottom:132.620000pt;}
.y2f{bottom:132.621333pt;}
.yc4{bottom:138.508000pt;}
.y82{bottom:140.872061pt;}
.y81{bottom:147.715523pt;}
.y2e{bottom:148.561333pt;}
.yc3{bottom:150.462667pt;}
.y80{bottom:154.284953pt;}
.y7c{bottom:159.639071pt;}
.yc2{bottom:162.417333pt;}
.y2d{bottom:164.501333pt;}
.yc1{bottom:174.373333pt;}
.y2c{bottom:180.441333pt;}
.yc0{bottom:186.328000pt;}
.y2b{bottom:196.381333pt;}
.ybf{bottom:198.284000pt;}
.ybe{bottom:210.238667pt;}
.y2a{bottom:212.321333pt;}
.y5a{bottom:212.322667pt;}
.ybd{bottom:222.193333pt;}
.y4d{bottom:228.261333pt;}
.y29{bottom:228.262667pt;}
.ybc{bottom:234.149333pt;}
.y28{bottom:244.202667pt;}
.ybb{bottom:246.104000pt;}
.yba{bottom:258.058667pt;}
.y27{bottom:260.142667pt;}
.y9b{bottom:264.189333pt;}
.y4c{bottom:276.082667pt;}
.yb9{bottom:277.105333pt;}
.y26{bottom:277.613333pt;}
.y75{bottom:281.646667pt;}
.y9a{bottom:288.270667pt;}
.y4b{bottom:292.022667pt;}
.y25{bottom:293.553333pt;}
.y59{bottom:296.893333pt;}
.y74{bottom:297.586667pt;}
.yb8{bottom:299.973333pt;}
.y99{bottom:304.210667pt;}
.y4a{bottom:307.962667pt;}
.y24{bottom:309.493333pt;}
.y73{bottom:313.526667pt;}
.yb7{bottom:315.913333pt;}
.y98{bottom:320.150667pt;}
.y58{bottom:322.772000pt;}
.y49{bottom:323.902667pt;}
.y23{bottom:325.434667pt;}
.y72{bottom:329.466667pt;}
.yb6{bottom:331.853333pt;}
.y97{bottom:336.090667pt;}
.y57{bottom:338.713333pt;}
.y48{bottom:339.844000pt;}
.y22{bottom:341.374667pt;}
.yb5{bottom:347.793333pt;}
.y71{bottom:350.970667pt;}
.y96{bottom:352.032000pt;}
.y56{bottom:354.653333pt;}
.y47{bottom:355.784000pt;}
.y21{bottom:357.314667pt;}
.yb4{bottom:363.733333pt;}
.y70{bottom:366.910667pt;}
.y95{bottom:367.972000pt;}
.y55{bottom:370.593333pt;}
.y46{bottom:371.724000pt;}
.y20{bottom:373.254667pt;}
.y6f{bottom:382.850667pt;}
.yb3{bottom:383.518667pt;}
.y94{bottom:383.912000pt;}
.y54{bottom:386.533333pt;}
.y45{bottom:387.664000pt;}
.y1f{bottom:389.194667pt;}
.y6e{bottom:398.792000pt;}
.y93{bottom:399.852000pt;}
.y53{bottom:402.473333pt;}
.y44{bottom:403.604000pt;}
.y1e{bottom:405.134667pt;}
.yb2{bottom:406.386667pt;}
.y6d{bottom:414.732000pt;}
.y92{bottom:415.792000pt;}
.y52{bottom:418.413333pt;}
.y1d{bottom:421.076000pt;}
.y43{bottom:421.224000pt;}
.yb1{bottom:422.326667pt;}
.y6c{bottom:430.672000pt;}
.y91{bottom:431.732000pt;}
.y51{bottom:434.354667pt;}
.y1c{bottom:437.016000pt;}
.y42{bottom:437.164000pt;}
.yb0{bottom:438.266667pt;}
.y6b{bottom:446.612000pt;}
.y90{bottom:447.673333pt;}
.y1b{bottom:452.956000pt;}
.y41{bottom:453.104000pt;}
.yaf{bottom:454.206667pt;}
.y6a{bottom:462.552000pt;}
.y8f{bottom:463.613333pt;}
.y1a{bottom:468.896000pt;}
.y40{bottom:469.045333pt;}
.yae{bottom:470.146667pt;}
.y69{bottom:478.493333pt;}
.y8e{bottom:479.553333pt;}
.y50{bottom:480.089333pt;}
.y19{bottom:484.836000pt;}
.y3f{bottom:484.985333pt;}
.yad{bottom:486.086667pt;}
.y68{bottom:494.433333pt;}
.y18{bottom:500.776000pt;}
.y3e{bottom:500.925333pt;}
.yac{bottom:502.028000pt;}
.y67{bottom:510.373333pt;}
.y17{bottom:516.717333pt;}
.y3d{bottom:516.865333pt;}
.yab{bottom:521.812000pt;}
.y8d{bottom:523.516000pt;}
.y66{bottom:526.313333pt;}
.y16{bottom:532.657333pt;}
.y3c{bottom:532.805333pt;}
.y65{bottom:542.253333pt;}
.yaa{bottom:544.680000pt;}
.y15{bottom:548.597333pt;}
.y3b{bottom:548.745333pt;}
.y8a{bottom:556.138333pt;}
.y64{bottom:558.193333pt;}
.ya9{bottom:560.620000pt;}
.y14{bottom:564.537333pt;}
.y3a{bottom:564.686667pt;}
.y84{bottom:571.838400pt;}
.y63{bottom:574.134667pt;}
.ya8{bottom:576.560000pt;}
.y39{bottom:580.626667pt;}
.y62{bottom:590.074667pt;}
.ya7{bottom:592.500000pt;}
.y13{bottom:593.845333pt;}
.y38{bottom:596.566667pt;}
.y85{bottom:605.030333pt;}
.y61{bottom:606.014667pt;}
.ya6{bottom:608.440000pt;}
.y37{bottom:612.506667pt;}
.y12{bottom:616.556000pt;}
.y60{bottom:621.954667pt;}
.y8b{bottom:622.050733pt;}
.ya5{bottom:624.380000pt;}
.y36{bottom:628.446667pt;}
.y11{bottom:629.838667pt;}
.y5f{bottom:637.894667pt;}
.ya4{bottom:640.321333pt;}
.y10{bottom:643.122667pt;}
.y35{bottom:644.386667pt;}
.y86{bottom:645.677333pt;}
.y5e{bottom:653.834667pt;}
.ya3{bottom:656.261333pt;}
.y34{bottom:660.328000pt;}
.yf{bottom:669.274667pt;}
.y5d{bottom:669.776000pt;}
.ya2{bottom:672.201333pt;}
.y33{bottom:676.268000pt;}
.ye{bottom:682.558667pt;}
.y5c{bottom:685.716000pt;}
.y87{bottom:686.325467pt;}
.ya1{bottom:688.141333pt;}
.y32{bottom:692.208000pt;}
.y8c{bottom:693.216000pt;}
.yd{bottom:695.842667pt;}
.y5b{bottom:701.656000pt;}
.ya0{bottom:704.081333pt;}
.yc{bottom:709.125333pt;}
.y9f{bottom:720.022667pt;}
.yb{bottom:722.409333pt;}
.y88{bottom:726.972467pt;}
.y9e{bottom:735.962667pt;}
.y4f{bottom:747.085333pt;}
.y9d{bottom:751.562667pt;}
.ya{bottom:766.088000pt;}
.y9c{bottom:767.502667pt;}
.y89{bottom:767.619467pt;}
.y9{bottom:782.526667pt;}
.y8{bottom:798.964000pt;}
.y83{bottom:801.594667pt;}
.y76{bottom:820.722221pt;}
.y7{bottom:832.474667pt;}
.y6{bottom:848.913333pt;}
.y5{bottom:865.352000pt;}
.y4{bottom:881.986667pt;}
.y3{bottom:923.830667pt;}
.y2{bottom:961.024000pt;}
.hb{height:19.140385pt;}
.ha{height:19.156457pt;}
.he{height:30.575884pt;}
.hf{height:30.902734pt;}
.hc{height:32.193095pt;}
.hd{height:32.834073pt;}
.h8{height:33.044173pt;}
.h7{height:33.426739pt;}
.h4{height:36.290431pt;}
.h1{height:38.628321pt;}
.h5{height:38.894988pt;}
.h3{height:42.491308pt;}
.h6{height:50.958988pt;}
.h2{height:92.708203pt;}
.h9{height:167.889491pt;}
.h0{height:1056.000000pt;}
.w3{width:247.822094pt;}
.w2{width:261.523785pt;}
.w1{width:276.340903pt;}
.w4{width:685.442304pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:9.032842pt;}
.x2d{left:17.044301pt;}
.x2c{left:20.693675pt;}
.x28{left:23.849964pt;}
.x26{left:31.861423pt;}
.x25{left:35.510797pt;}
.x24{left:39.160336pt;}
.x2e{left:43.746156pt;}
.x27{left:58.563278pt;}
.x1d{left:65.285333pt;}
.x1{left:68.032000pt;}
.x35{left:69.552000pt;}
.x34{left:76.207836pt;}
.x1c{left:78.569333pt;}
.x7{left:79.822667pt;}
.x5{left:84.484000pt;}
.x4{left:94.872000pt;}
.x3a{left:96.994667pt;}
.x30{left:111.463146pt;}
.x39{left:112.627667pt;}
.x37{left:122.824267pt;}
.x29{left:126.280268pt;}
.x22{left:129.426667pt;}
.x6{left:131.646667pt;}
.x3b{left:139.568000pt;}
.x36{left:159.275667pt;}
.x2{left:167.654667pt;}
.x32{left:178.536544pt;}
.x1e{left:180.825333pt;}
.x31{left:184.003959pt;}
.x2b{left:193.353665pt;}
.x3{left:197.352000pt;}
.x2a{left:198.821081pt;}
.x38{left:222.414800pt;}
.x14{left:238.569333pt;}
.x8{left:257.120000pt;}
.x9{left:271.181333pt;}
.x18{left:272.090667pt;}
.x23{left:278.308237pt;}
.x15{left:295.821333pt;}
.xa{left:311.437333pt;}
.x1b{left:369.332000pt;}
.x19{left:412.456000pt;}
.x21{left:415.970667pt;}
.x20{left:429.253333pt;}
.xc{left:434.168000pt;}
.x1f{left:440.666667pt;}
.xb{left:446.408000pt;}
.x16{left:462.781333pt;}
.xd{left:476.562667pt;}
.x1a{left:492.968000pt;}
.x33{left:502.905151pt;}
.x17{left:509.113333pt;}
.x3d{left:518.560000pt;}
.x3c{left:532.401333pt;}
.x3e{left:546.149333pt;}
.xe{left:583.093333pt;}
.x10{left:587.573333pt;}
.xf{left:611.901333pt;}
.x13{left:678.652000pt;}
.x11{left:681.084000pt;}
.x12{left:690.880000pt;}
}




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