
    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_11f1b14fc0ba808c0de3d6e0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_ff0e9643b01f0363332cdc32.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_e849931d006d7945107b565d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_e1946a03b8ecc1927febde8a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_edd9a77dd1d0854e84993308.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202000;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_c3d14d7810b57bfb11c485aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_baa28909f0c788215375eb2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;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_c39d45be80a8ec1d408984bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.214000;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_bf7b6b9e1a7e6b3cdee6aa14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_f7b4383a50c4184faff249bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202000;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);}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v2{vertical-align:9.550415px;}
.v5{vertical-align:23.433681px;}
.v3{vertical-align:26.399780px;}
.ls4{letter-spacing:-1.050000px;}
.ls6{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.223740px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000002px;}
.ls7{letter-spacing:0.823200px;}
.ls0{letter-spacing:5.460000px;}
.ls1{letter-spacing:38.305827px;}
.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;}
}
.ws3{word-spacing:-30.528000px;}
.ws2{word-spacing:-15.587220px;}
.ws5{word-spacing:-11.880000px;}
.ws9{word-spacing:-11.682000px;}
.ws91{word-spacing:-11.426400px;}
.ws0{word-spacing:-10.176000px;}
.ws4{word-spacing:-10.117800px;}
.ws6{word-spacing:-9.855000px;}
.ws3f{word-spacing:-9.672600px;}
.ws40{word-spacing:-9.315000px;}
.ws8{word-spacing:-8.148000px;}
.ws36{word-spacing:-1.117200px;}
.ws8b{word-spacing:-1.058400px;}
.ws5a{word-spacing:-0.940800px;}
.ws6d{word-spacing:-0.823200px;}
.ws34{word-spacing:-0.764400px;}
.ws56{word-spacing:-0.705600px;}
.ws17{word-spacing:-0.588000px;}
.ws39{word-spacing:-0.529200px;}
.ws4d{word-spacing:-0.235200px;}
.ws4e{word-spacing:-0.176400px;}
.ws60{word-spacing:-0.117600px;}
.ws7{word-spacing:0.000000px;}
.ws55{word-spacing:0.176400px;}
.ws65{word-spacing:0.294000px;}
.ws7f{word-spacing:0.470400px;}
.ws2c{word-spacing:0.529200px;}
.ws37{word-spacing:0.646800px;}
.ws7a{word-spacing:1.411200px;}
.ws8c{word-spacing:1.528800px;}
.ws7c{word-spacing:1.587600px;}
.ws84{word-spacing:1.646400px;}
.ws53{word-spacing:1.705200px;}
.ws51{word-spacing:1.881600px;}
.ws66{word-spacing:2.175600px;}
.ws81{word-spacing:2.234400px;}
.ws18{word-spacing:2.293200px;}
.ws59{word-spacing:2.410800px;}
.ws10{word-spacing:2.587200px;}
.ws77{word-spacing:2.646000px;}
.ws71{word-spacing:2.763600px;}
.ws47{word-spacing:2.881200px;}
.ws6f{word-spacing:3.057600px;}
.ws26{word-spacing:3.292800px;}
.ws61{word-spacing:3.469200px;}
.ws35{word-spacing:3.645600px;}
.wsf{word-spacing:3.822000px;}
.ws58{word-spacing:3.880800px;}
.ws4c{word-spacing:3.998400px;}
.ws13{word-spacing:4.057200px;}
.ws33{word-spacing:4.174800px;}
.ws90{word-spacing:4.292400px;}
.ws70{word-spacing:4.351200px;}
.ws42{word-spacing:4.410000px;}
.ws64{word-spacing:4.468800px;}
.ws31{word-spacing:4.704000px;}
.ws3b{word-spacing:4.939200px;}
.ws8f{word-spacing:5.233200px;}
.ws4b{word-spacing:5.292000px;}
.ws45{word-spacing:5.350800px;}
.ws2a{word-spacing:5.409600px;}
.ws30{word-spacing:5.468400px;}
.ws8a{word-spacing:5.586000px;}
.ws79{word-spacing:6.056400px;}
.ws54{word-spacing:6.115200px;}
.ws85{word-spacing:6.174000px;}
.ws6c{word-spacing:6.232800px;}
.ws21{word-spacing:6.291600px;}
.ws48{word-spacing:6.350400px;}
.ws25{word-spacing:6.409200px;}
.ws2d{word-spacing:6.468000px;}
.ws49{word-spacing:6.526800px;}
.wsd{word-spacing:6.762000px;}
.ws6e{word-spacing:6.879600px;}
.ws4a{word-spacing:7.056000px;}
.ws88{word-spacing:7.114800px;}
.ws2f{word-spacing:7.408800px;}
.ws78{word-spacing:7.467600px;}
.ws62{word-spacing:7.938000px;}
.ws5e{word-spacing:7.996800px;}
.ws1f{word-spacing:8.232000px;}
.ws76{word-spacing:8.584800px;}
.ws4f{word-spacing:8.643600px;}
.ws82{word-spacing:8.702400px;}
.ws8e{word-spacing:8.761200px;}
.ws5f{word-spacing:8.878800px;}
.ws73{word-spacing:8.996400px;}
.ws5d{word-spacing:9.055200px;}
.ws43{word-spacing:9.172800px;}
.ws11{word-spacing:9.231600px;}
.ws6a{word-spacing:9.290400px;}
.ws28{word-spacing:9.525600px;}
.ws8d{word-spacing:9.643200px;}
.ws2b{word-spacing:9.760800px;}
.ws7e{word-spacing:10.231200px;}
.ws5b{word-spacing:10.407600px;}
.ws87{word-spacing:10.466400px;}
.ws2e{word-spacing:10.584000px;}
.ws7b{word-spacing:10.642800px;}
.ws75{word-spacing:10.701600px;}
.ws5c{word-spacing:10.760400px;}
.ws1b{word-spacing:11.172000px;}
.ws1c{word-spacing:11.348400px;}
.ws19{word-spacing:11.407200px;}
.ws20{word-spacing:11.583600px;}
.ws15{word-spacing:11.701200px;}
.ws29{word-spacing:11.877600px;}
.ws69{word-spacing:12.171600px;}
.ws52{word-spacing:12.289200px;}
.ws12{word-spacing:12.583200px;}
.ws41{word-spacing:12.700800px;}
.ws1e{word-spacing:13.053600px;}
.wse{word-spacing:13.288800px;}
.ws57{word-spacing:13.347600px;}
.ws89{word-spacing:13.524000px;}
.ws86{word-spacing:13.641600px;}
.ws3a{word-spacing:13.935600px;}
.ws16{word-spacing:14.170800px;}
.ws46{word-spacing:14.288400px;}
.ws3c{word-spacing:14.817600px;}
.ws27{word-spacing:15.052800px;}
.ws22{word-spacing:15.111600px;}
.ws63{word-spacing:15.405600px;}
.ws83{word-spacing:16.699200px;}
.ws68{word-spacing:17.052000px;}
.ws6b{word-spacing:17.169600px;}
.wsc{word-spacing:17.346000px;}
.wsb{word-spacing:17.522400px;}
.ws23{word-spacing:17.757600px;}
.ws7d{word-spacing:18.051600px;}
.ws72{word-spacing:18.110400px;}
.ws44{word-spacing:18.345600px;}
.ws3d{word-spacing:19.110000px;}
.ws24{word-spacing:20.109600px;}
.ws80{word-spacing:20.168400px;}
.ws3e{word-spacing:21.226800px;}
.wsa{word-spacing:21.403200px;}
.ws14{word-spacing:21.638400px;}
.ws32{word-spacing:21.991200px;}
.ws1a{word-spacing:22.226400px;}
.ws38{word-spacing:23.578800px;}
.ws67{word-spacing:24.284400px;}
.ws50{word-spacing:26.401200px;}
.ws74{word-spacing:26.989200px;}
.ws1d{word-spacing:27.048000px;}
.ws1{word-spacing:1964.338150px;}
._6{margin-left:-28.467600px;}
._e{margin-left:-23.818800px;}
._c{margin-left:-15.052800px;}
._0{margin-left:-8.256000px;}
._b{margin-left:-6.021000px;}
._5{margin-left:-4.394880px;}
._f{margin-left:-3.330000px;}
._1{margin-left:-2.262000px;}
._2{margin-left:-1.062000px;}
._3{width:1.596000px;}
._8{width:2.866920px;}
._a{width:5.889240px;}
._d{width:8.620080px;}
._9{width:12.496680px;}
._4{width:16.908000px;}
._7{width:22.214639px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.500000px;}
.fsb{font-size:41.160000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:74.580000px;}
.fs1{font-size:78.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.865173px;}
.ya{bottom:76.009799px;}
.y9{bottom:88.011299px;}
.y8{bottom:100.012799px;}
.yba{bottom:106.620895px;}
.y8a{bottom:106.635295px;}
.y7{bottom:112.014299px;}
.yb9{bottom:120.120895px;}
.y6{bottom:124.015799px;}
.y89{bottom:124.628095px;}
.yb8{bottom:133.620895px;}
.y5{bottom:136.017299px;}
.y88{bottom:142.620895px;}
.y4{bottom:148.018799px;}
.yb7{bottom:160.620895px;}
.y87{bottom:160.678495px;}
.y86{bottom:178.671295px;}
.yb6{bottom:178.692895px;}
.y4e{bottom:186.998405px;}
.y85{bottom:196.664095px;}
.yb5{bottom:196.685695px;}
.y53{bottom:200.239952px;}
.y4d{bottom:205.034405px;}
.y84{bottom:214.656895px;}
.yb4{bottom:214.678495px;}
.y52{bottom:218.239952px;}
.y4c{bottom:223.027205px;}
.y51{bottom:227.239952px;}
.y83{bottom:232.649695px;}
.yb3{bottom:232.671295px;}
.y50{bottom:240.739952px;}
.y4b{bottom:241.020005px;}
.y82{bottom:250.642495px;}
.yb2{bottom:250.664095px;}
.y4f{bottom:254.239952px;}
.y4a{bottom:259.012805px;}
.y81{bottom:268.635295px;}
.yb1{bottom:268.656895px;}
.y49{bottom:277.005605px;}
.y80{bottom:286.628095px;}
.yb0{bottom:286.649695px;}
.y48{bottom:294.998405px;}
.y2c{bottom:295.041583px;}
.y7f{bottom:304.620895px;}
.yaf{bottom:304.642495px;}
.y47{bottom:313.005605px;}
.y2b{bottom:313.034383px;}
.y7e{bottom:322.620895px;}
.yae{bottom:322.635295px;}
.y46{bottom:330.998405px;}
.y2a{bottom:331.027183px;}
.yad{bottom:340.628095px;}
.y7d{bottom:340.635295px;}
.y45{bottom:349.005605px;}
.y29{bottom:349.019983px;}
.yac{bottom:358.620895px;}
.y7c{bottom:358.628095px;}
.ye6{bottom:360.342728px;}
.y44{bottom:366.998405px;}
.y28{bottom:367.012783px;}
.ye5{bottom:373.842728px;}
.y7b{bottom:376.620895px;}
.y43{bottom:384.998383px;}
.y27{bottom:385.005583px;}
.ye4{bottom:387.342728px;}
.y7a{bottom:394.642495px;}
.yab{bottom:394.678495px;}
.ye3{bottom:400.842728px;}
.y26{bottom:402.998383px;}
.y42{bottom:403.063183px;}
.y79{bottom:412.635295px;}
.yaa{bottom:412.671295px;}
.ye2{bottom:414.342728px;}
.y25{bottom:421.041583px;}
.y41{bottom:421.055983px;}
.ye1{bottom:427.842728px;}
.y78{bottom:430.628095px;}
.ya9{bottom:430.664095px;}
.y24{bottom:439.034383px;}
.y40{bottom:439.048783px;}
.ye0{bottom:441.342728px;}
.y77{bottom:448.620895px;}
.ya8{bottom:448.656895px;}
.ydf{bottom:454.842728px;}
.y23{bottom:457.027183px;}
.y3f{bottom:457.041583px;}
.y76{bottom:466.642495px;}
.ya7{bottom:466.649695px;}
.yde{bottom:468.342728px;}
.y22{bottom:475.019983px;}
.y3e{bottom:475.034383px;}
.ydd{bottom:481.842728px;}
.y75{bottom:484.635295px;}
.ya6{bottom:484.642495px;}
.y21{bottom:493.012783px;}
.y3d{bottom:493.027183px;}
.ydc{bottom:495.342728px;}
.y74{bottom:502.628095px;}
.ya5{bottom:502.635295px;}
.ydb{bottom:508.842728px;}
.y20{bottom:511.005583px;}
.y3c{bottom:511.019983px;}
.y73{bottom:520.620895px;}
.ya4{bottom:520.628095px;}
.yda{bottom:522.342728px;}
.y1f{bottom:528.998383px;}
.y3b{bottom:529.012783px;}
.yd9{bottom:535.842728px;}
.y72{bottom:538.620895px;}
.y3a{bottom:547.005583px;}
.y1e{bottom:547.041583px;}
.yd8{bottom:549.342728px;}
.y71{bottom:556.656895px;}
.ya3{bottom:556.671295px;}
.yd7{bottom:562.842728px;}
.y39{bottom:564.998383px;}
.y1d{bottom:565.034383px;}
.y70{bottom:574.649695px;}
.ya2{bottom:574.664095px;}
.yd6{bottom:576.342728px;}
.y1c{bottom:583.027183px;}
.y38{bottom:583.117483px;}
.yd5{bottom:589.842728px;}
.y6f{bottom:592.642495px;}
.ya1{bottom:592.656895px;}
.y1b{bottom:601.019983px;}
.y37{bottom:601.110283px;}
.yd4{bottom:603.342728px;}
.y6e{bottom:610.635295px;}
.ya0{bottom:610.649695px;}
.yd3{bottom:616.842728px;}
.y1a{bottom:619.012783px;}
.y36{bottom:619.103083px;}
.y6d{bottom:628.628095px;}
.y9f{bottom:628.642495px;}
.yd2{bottom:630.342728px;}
.y19{bottom:637.005583px;}
.y35{bottom:637.095883px;}
.yd1{bottom:643.842728px;}
.y6c{bottom:646.620895px;}
.y9e{bottom:646.635295px;}
.y18{bottom:654.998383px;}
.y34{bottom:655.088683px;}
.yd0{bottom:657.342728px;}
.y6b{bottom:664.620895px;}
.y9d{bottom:664.628095px;}
.ycf{bottom:670.842728px;}
.y17{bottom:672.998383px;}
.y33{bottom:673.081483px;}
.y9c{bottom:682.620895px;}
.y6a{bottom:682.649695px;}
.yce{bottom:684.342728px;}
.y16{bottom:690.998383px;}
.y32{bottom:691.074283px;}
.ycd{bottom:697.842728px;}
.y9b{bottom:700.635295px;}
.y69{bottom:700.642495px;}
.y15{bottom:709.005583px;}
.y31{bottom:709.067083px;}
.ycc{bottom:711.342728px;}
.y9a{bottom:718.628095px;}
.y68{bottom:718.635295px;}
.ycb{bottom:724.842728px;}
.y14{bottom:726.998383px;}
.y30{bottom:727.059883px;}
.y99{bottom:736.620895px;}
.y67{bottom:736.628095px;}
.yca{bottom:738.342728px;}
.y13{bottom:745.012691px;}
.y2f{bottom:745.052683px;}
.yc9{bottom:751.842728px;}
.y66{bottom:754.620895px;}
.y98{bottom:754.635341px;}
.y12{bottom:763.005491px;}
.y2e{bottom:763.045483px;}
.yc8{bottom:765.342728px;}
.y65{bottom:772.628141px;}
.y11{bottom:780.998291px;}
.y2d{bottom:781.038283px;}
.y64{bottom:790.620941px;}
.y97{bottom:808.628141px;}
.y63{bottom:808.635341px;}
.y96{bottom:826.620941px;}
.y62{bottom:826.628141px;}
.y10{bottom:831.552612px;}
.yc7{bottom:834.342773px;}
.y61{bottom:844.620941px;}
.y60{bottom:862.649741px;}
.y95{bottom:862.678541px;}
.yc6{bottom:874.842773px;}
.y5f{bottom:880.642541px;}
.y94{bottom:880.671341px;}
.yc5{bottom:888.342773px;}
.y5e{bottom:898.635341px;}
.y93{bottom:898.664141px;}
.yf{bottom:903.552612px;}
.yc4{bottom:915.342773px;}
.y5d{bottom:916.628141px;}
.y92{bottom:916.656941px;}
.y5c{bottom:934.620941px;}
.y91{bottom:934.649741px;}
.ye{bottom:939.565528px;}
.yc3{bottom:951.342773px;}
.y90{bottom:952.642541px;}
.y5b{bottom:952.656941px;}
.yc2{bottom:964.842773px;}
.y8f{bottom:970.635341px;}
.y5a{bottom:970.649741px;}
.yd{bottom:978.553528px;}
.y8e{bottom:988.628141px;}
.y59{bottom:988.642541px;}
.yc1{bottom:991.842773px;}
.yc0{bottom:1005.342773px;}
.y8d{bottom:1006.620941px;}
.y58{bottom:1006.635341px;}
.y57{bottom:1024.628141px;}
.y8c{bottom:1024.635595px;}
.ybf{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y56{bottom:1042.620941px;}
.y8b{bottom:1042.628395px;}
.ybe{bottom:1045.842773px;}
.y2{bottom:1112.297079px;}
.yb{bottom:1119.288025px;}
.ybb{bottom:1126.524628px;}
.y54{bottom:1126.524719px;}
.ybd{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.ybc{bottom:1127.300079px;}
.y55{bottom:1127.304719px;}
.h7{height:16.696499px;}
.he{height:27.814500px;}
.h6{height:37.086000px;}
.hd{height:39.735000px;}
.h5{height:41.538000px;}
.h13{height:42.840000px;}
.h11{height:43.785000px;}
.h3{height:45.696000px;}
.hf{height:45.744000px;}
.h2{height:47.232000px;}
.h12{height:53.709599px;}
.hc{height:55.860000px;}
.hb{height:58.380000px;}
.h10{height:62.535681px;}
.ha{height:67.194379px;}
.h8{height:71.000160px;}
.h4{height:86.692415px;}
.h9{height:137.088000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:166.154995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x5{left:94.683002px;}
.x6{left:96.928202px;}
.xa{left:107.539352px;}
.x3{left:270.817497px;}
.x7{left:457.092894px;}
.x8{left:469.081794px;}
.x4{left:641.719482px;}
.x9{left:753.380081px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v2{vertical-align:8.489258pt;}
.v5{vertical-align:20.829938pt;}
.v3{vertical-align:23.466471pt;}
.ls4{letter-spacing:-0.933333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.198880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000001pt;}
.ls7{letter-spacing:0.731733pt;}
.ls0{letter-spacing:4.853333pt;}
.ls1{letter-spacing:34.049624pt;}
.ws3{word-spacing:-27.136000pt;}
.ws2{word-spacing:-13.855307pt;}
.ws5{word-spacing:-10.560000pt;}
.ws9{word-spacing:-10.384000pt;}
.ws91{word-spacing:-10.156800pt;}
.ws0{word-spacing:-9.045333pt;}
.ws4{word-spacing:-8.993600pt;}
.ws6{word-spacing:-8.760000pt;}
.ws3f{word-spacing:-8.597867pt;}
.ws40{word-spacing:-8.280000pt;}
.ws8{word-spacing:-7.242667pt;}
.ws36{word-spacing:-0.993067pt;}
.ws8b{word-spacing:-0.940800pt;}
.ws5a{word-spacing:-0.836267pt;}
.ws6d{word-spacing:-0.731733pt;}
.ws34{word-spacing:-0.679467pt;}
.ws56{word-spacing:-0.627200pt;}
.ws17{word-spacing:-0.522667pt;}
.ws39{word-spacing:-0.470400pt;}
.ws4d{word-spacing:-0.209067pt;}
.ws4e{word-spacing:-0.156800pt;}
.ws60{word-spacing:-0.104533pt;}
.ws7{word-spacing:0.000000pt;}
.ws55{word-spacing:0.156800pt;}
.ws65{word-spacing:0.261333pt;}
.ws7f{word-spacing:0.418133pt;}
.ws2c{word-spacing:0.470400pt;}
.ws37{word-spacing:0.574933pt;}
.ws7a{word-spacing:1.254400pt;}
.ws8c{word-spacing:1.358933pt;}
.ws7c{word-spacing:1.411200pt;}
.ws84{word-spacing:1.463467pt;}
.ws53{word-spacing:1.515733pt;}
.ws51{word-spacing:1.672533pt;}
.ws66{word-spacing:1.933867pt;}
.ws81{word-spacing:1.986133pt;}
.ws18{word-spacing:2.038400pt;}
.ws59{word-spacing:2.142933pt;}
.ws10{word-spacing:2.299733pt;}
.ws77{word-spacing:2.352000pt;}
.ws71{word-spacing:2.456533pt;}
.ws47{word-spacing:2.561067pt;}
.ws6f{word-spacing:2.717867pt;}
.ws26{word-spacing:2.926933pt;}
.ws61{word-spacing:3.083733pt;}
.ws35{word-spacing:3.240533pt;}
.wsf{word-spacing:3.397333pt;}
.ws58{word-spacing:3.449600pt;}
.ws4c{word-spacing:3.554133pt;}
.ws13{word-spacing:3.606400pt;}
.ws33{word-spacing:3.710933pt;}
.ws90{word-spacing:3.815467pt;}
.ws70{word-spacing:3.867733pt;}
.ws42{word-spacing:3.920000pt;}
.ws64{word-spacing:3.972267pt;}
.ws31{word-spacing:4.181333pt;}
.ws3b{word-spacing:4.390400pt;}
.ws8f{word-spacing:4.651733pt;}
.ws4b{word-spacing:4.704000pt;}
.ws45{word-spacing:4.756267pt;}
.ws2a{word-spacing:4.808533pt;}
.ws30{word-spacing:4.860800pt;}
.ws8a{word-spacing:4.965333pt;}
.ws79{word-spacing:5.383467pt;}
.ws54{word-spacing:5.435733pt;}
.ws85{word-spacing:5.488000pt;}
.ws6c{word-spacing:5.540267pt;}
.ws21{word-spacing:5.592533pt;}
.ws48{word-spacing:5.644800pt;}
.ws25{word-spacing:5.697067pt;}
.ws2d{word-spacing:5.749333pt;}
.ws49{word-spacing:5.801600pt;}
.wsd{word-spacing:6.010667pt;}
.ws6e{word-spacing:6.115200pt;}
.ws4a{word-spacing:6.272000pt;}
.ws88{word-spacing:6.324267pt;}
.ws2f{word-spacing:6.585600pt;}
.ws78{word-spacing:6.637867pt;}
.ws62{word-spacing:7.056000pt;}
.ws5e{word-spacing:7.108267pt;}
.ws1f{word-spacing:7.317333pt;}
.ws76{word-spacing:7.630933pt;}
.ws4f{word-spacing:7.683200pt;}
.ws82{word-spacing:7.735467pt;}
.ws8e{word-spacing:7.787733pt;}
.ws5f{word-spacing:7.892267pt;}
.ws73{word-spacing:7.996800pt;}
.ws5d{word-spacing:8.049067pt;}
.ws43{word-spacing:8.153600pt;}
.ws11{word-spacing:8.205867pt;}
.ws6a{word-spacing:8.258133pt;}
.ws28{word-spacing:8.467200pt;}
.ws8d{word-spacing:8.571733pt;}
.ws2b{word-spacing:8.676267pt;}
.ws7e{word-spacing:9.094400pt;}
.ws5b{word-spacing:9.251200pt;}
.ws87{word-spacing:9.303467pt;}
.ws2e{word-spacing:9.408000pt;}
.ws7b{word-spacing:9.460267pt;}
.ws75{word-spacing:9.512533pt;}
.ws5c{word-spacing:9.564800pt;}
.ws1b{word-spacing:9.930667pt;}
.ws1c{word-spacing:10.087467pt;}
.ws19{word-spacing:10.139733pt;}
.ws20{word-spacing:10.296533pt;}
.ws15{word-spacing:10.401067pt;}
.ws29{word-spacing:10.557867pt;}
.ws69{word-spacing:10.819200pt;}
.ws52{word-spacing:10.923733pt;}
.ws12{word-spacing:11.185067pt;}
.ws41{word-spacing:11.289600pt;}
.ws1e{word-spacing:11.603200pt;}
.wse{word-spacing:11.812267pt;}
.ws57{word-spacing:11.864533pt;}
.ws89{word-spacing:12.021333pt;}
.ws86{word-spacing:12.125867pt;}
.ws3a{word-spacing:12.387200pt;}
.ws16{word-spacing:12.596267pt;}
.ws46{word-spacing:12.700800pt;}
.ws3c{word-spacing:13.171200pt;}
.ws27{word-spacing:13.380267pt;}
.ws22{word-spacing:13.432533pt;}
.ws63{word-spacing:13.693867pt;}
.ws83{word-spacing:14.843733pt;}
.ws68{word-spacing:15.157333pt;}
.ws6b{word-spacing:15.261867pt;}
.wsc{word-spacing:15.418667pt;}
.wsb{word-spacing:15.575467pt;}
.ws23{word-spacing:15.784533pt;}
.ws7d{word-spacing:16.045867pt;}
.ws72{word-spacing:16.098133pt;}
.ws44{word-spacing:16.307200pt;}
.ws3d{word-spacing:16.986667pt;}
.ws24{word-spacing:17.875200pt;}
.ws80{word-spacing:17.927467pt;}
.ws3e{word-spacing:18.868267pt;}
.wsa{word-spacing:19.025067pt;}
.ws14{word-spacing:19.234133pt;}
.ws32{word-spacing:19.547733pt;}
.ws1a{word-spacing:19.756800pt;}
.ws38{word-spacing:20.958933pt;}
.ws67{word-spacing:21.586133pt;}
.ws50{word-spacing:23.467733pt;}
.ws74{word-spacing:23.990400pt;}
.ws1d{word-spacing:24.042667pt;}
.ws1{word-spacing:1746.078356pt;}
._6{margin-left:-25.304533pt;}
._e{margin-left:-21.172267pt;}
._c{margin-left:-13.380267pt;}
._0{margin-left:-7.338667pt;}
._b{margin-left:-5.352000pt;}
._5{margin-left:-3.906560pt;}
._f{margin-left:-2.960000pt;}
._1{margin-left:-2.010667pt;}
._2{margin-left:-0.944000pt;}
._3{width:1.418667pt;}
._8{width:2.548373pt;}
._a{width:5.234880pt;}
._d{width:7.662294pt;}
._9{width:11.108160pt;}
._4{width:15.029333pt;}
._7{width:19.746346pt;}
.fsa{font-size:28.000000pt;}
.fsb{font-size:36.586667pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:66.293333pt;}
.fs1{font-size:69.333333pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:3.435710pt;}
.ya{bottom:67.564266pt;}
.y9{bottom:78.232266pt;}
.y8{bottom:88.900266pt;}
.yba{bottom:94.774129pt;}
.y8a{bottom:94.786929pt;}
.y7{bottom:99.568266pt;}
.yb9{bottom:106.774129pt;}
.y6{bottom:110.236266pt;}
.y89{bottom:110.780529pt;}
.yb8{bottom:118.774129pt;}
.y5{bottom:120.904266pt;}
.y88{bottom:126.774129pt;}
.y4{bottom:131.572266pt;}
.yb7{bottom:142.774129pt;}
.y87{bottom:142.825329pt;}
.y86{bottom:158.818929pt;}
.yb6{bottom:158.838129pt;}
.y4e{bottom:166.220805pt;}
.y85{bottom:174.812529pt;}
.yb5{bottom:174.831729pt;}
.y53{bottom:177.991069pt;}
.y4d{bottom:182.252805pt;}
.y84{bottom:190.806129pt;}
.yb4{bottom:190.825329pt;}
.y52{bottom:193.991069pt;}
.y4c{bottom:198.246405pt;}
.y51{bottom:201.991069pt;}
.y83{bottom:206.799729pt;}
.yb3{bottom:206.818929pt;}
.y50{bottom:213.991069pt;}
.y4b{bottom:214.240005pt;}
.y82{bottom:222.793329pt;}
.yb2{bottom:222.812529pt;}
.y4f{bottom:225.991069pt;}
.y4a{bottom:230.233605pt;}
.y81{bottom:238.786929pt;}
.yb1{bottom:238.806129pt;}
.y49{bottom:246.227205pt;}
.y80{bottom:254.780529pt;}
.yb0{bottom:254.799729pt;}
.y48{bottom:262.220805pt;}
.y2c{bottom:262.259185pt;}
.y7f{bottom:270.774129pt;}
.yaf{bottom:270.793329pt;}
.y47{bottom:278.227205pt;}
.y2b{bottom:278.252785pt;}
.y7e{bottom:286.774129pt;}
.yae{bottom:286.786929pt;}
.y46{bottom:294.220805pt;}
.y2a{bottom:294.246385pt;}
.yad{bottom:302.780529pt;}
.y7d{bottom:302.786929pt;}
.y45{bottom:310.227205pt;}
.y29{bottom:310.239985pt;}
.yac{bottom:318.774129pt;}
.y7c{bottom:318.780529pt;}
.ye6{bottom:320.304647pt;}
.y44{bottom:326.220805pt;}
.y28{bottom:326.233585pt;}
.ye5{bottom:332.304647pt;}
.y7b{bottom:334.774129pt;}
.y43{bottom:342.220785pt;}
.y27{bottom:342.227185pt;}
.ye4{bottom:344.304647pt;}
.y7a{bottom:350.793329pt;}
.yab{bottom:350.825329pt;}
.ye3{bottom:356.304647pt;}
.y26{bottom:358.220785pt;}
.y42{bottom:358.278385pt;}
.y79{bottom:366.786929pt;}
.yaa{bottom:366.818929pt;}
.ye2{bottom:368.304647pt;}
.y25{bottom:374.259185pt;}
.y41{bottom:374.271985pt;}
.ye1{bottom:380.304647pt;}
.y78{bottom:382.780529pt;}
.ya9{bottom:382.812529pt;}
.y24{bottom:390.252785pt;}
.y40{bottom:390.265585pt;}
.ye0{bottom:392.304647pt;}
.y77{bottom:398.774129pt;}
.ya8{bottom:398.806129pt;}
.ydf{bottom:404.304647pt;}
.y23{bottom:406.246385pt;}
.y3f{bottom:406.259185pt;}
.y76{bottom:414.793329pt;}
.ya7{bottom:414.799729pt;}
.yde{bottom:416.304647pt;}
.y22{bottom:422.239985pt;}
.y3e{bottom:422.252785pt;}
.ydd{bottom:428.304647pt;}
.y75{bottom:430.786929pt;}
.ya6{bottom:430.793329pt;}
.y21{bottom:438.233585pt;}
.y3d{bottom:438.246385pt;}
.ydc{bottom:440.304647pt;}
.y74{bottom:446.780529pt;}
.ya5{bottom:446.786929pt;}
.ydb{bottom:452.304647pt;}
.y20{bottom:454.227185pt;}
.y3c{bottom:454.239985pt;}
.y73{bottom:462.774129pt;}
.ya4{bottom:462.780529pt;}
.yda{bottom:464.304647pt;}
.y1f{bottom:470.220785pt;}
.y3b{bottom:470.233585pt;}
.yd9{bottom:476.304647pt;}
.y72{bottom:478.774129pt;}
.y3a{bottom:486.227185pt;}
.y1e{bottom:486.259185pt;}
.yd8{bottom:488.304647pt;}
.y71{bottom:494.806129pt;}
.ya3{bottom:494.818929pt;}
.yd7{bottom:500.304647pt;}
.y39{bottom:502.220785pt;}
.y1d{bottom:502.252785pt;}
.y70{bottom:510.799729pt;}
.ya2{bottom:510.812529pt;}
.yd6{bottom:512.304647pt;}
.y1c{bottom:518.246385pt;}
.y38{bottom:518.326651pt;}
.yd5{bottom:524.304647pt;}
.y6f{bottom:526.793329pt;}
.ya1{bottom:526.806129pt;}
.y1b{bottom:534.239985pt;}
.y37{bottom:534.320251pt;}
.yd4{bottom:536.304647pt;}
.y6e{bottom:542.786929pt;}
.ya0{bottom:542.799729pt;}
.yd3{bottom:548.304647pt;}
.y1a{bottom:550.233585pt;}
.y36{bottom:550.313851pt;}
.y6d{bottom:558.780529pt;}
.y9f{bottom:558.793329pt;}
.yd2{bottom:560.304647pt;}
.y19{bottom:566.227185pt;}
.y35{bottom:566.307451pt;}
.yd1{bottom:572.304647pt;}
.y6c{bottom:574.774129pt;}
.y9e{bottom:574.786929pt;}
.y18{bottom:582.220785pt;}
.y34{bottom:582.301051pt;}
.yd0{bottom:584.304647pt;}
.y6b{bottom:590.774129pt;}
.y9d{bottom:590.780529pt;}
.ycf{bottom:596.304647pt;}
.y17{bottom:598.220785pt;}
.y33{bottom:598.294651pt;}
.y9c{bottom:606.774129pt;}
.y6a{bottom:606.799729pt;}
.yce{bottom:608.304647pt;}
.y16{bottom:614.220785pt;}
.y32{bottom:614.288251pt;}
.ycd{bottom:620.304647pt;}
.y9b{bottom:622.786929pt;}
.y69{bottom:622.793329pt;}
.y15{bottom:630.227185pt;}
.y31{bottom:630.281851pt;}
.ycc{bottom:632.304647pt;}
.y9a{bottom:638.780529pt;}
.y68{bottom:638.786929pt;}
.ycb{bottom:644.304647pt;}
.y14{bottom:646.220785pt;}
.y30{bottom:646.275451pt;}
.y99{bottom:654.774129pt;}
.y67{bottom:654.780529pt;}
.yca{bottom:656.304647pt;}
.y13{bottom:662.233503pt;}
.y2f{bottom:662.269051pt;}
.yc9{bottom:668.304647pt;}
.y66{bottom:670.774129pt;}
.y98{bottom:670.786970pt;}
.y12{bottom:678.227103pt;}
.y2e{bottom:678.262651pt;}
.yc8{bottom:680.304647pt;}
.y65{bottom:686.780570pt;}
.y11{bottom:694.220703pt;}
.y2d{bottom:694.256251pt;}
.y64{bottom:702.774170pt;}
.y97{bottom:718.780570pt;}
.y63{bottom:718.786970pt;}
.y96{bottom:734.774170pt;}
.y62{bottom:734.780570pt;}
.y10{bottom:739.157878pt;}
.yc7{bottom:741.638021pt;}
.y61{bottom:750.774170pt;}
.y60{bottom:766.799770pt;}
.y95{bottom:766.825370pt;}
.yc6{bottom:777.638021pt;}
.y5f{bottom:782.793370pt;}
.y94{bottom:782.818970pt;}
.yc5{bottom:789.638021pt;}
.y5e{bottom:798.786970pt;}
.y93{bottom:798.812570pt;}
.yf{bottom:803.157878pt;}
.yc4{bottom:813.638021pt;}
.y5d{bottom:814.780570pt;}
.y92{bottom:814.806170pt;}
.y5c{bottom:830.774170pt;}
.y91{bottom:830.799770pt;}
.ye{bottom:835.169358pt;}
.yc3{bottom:845.638021pt;}
.y90{bottom:846.793370pt;}
.y5b{bottom:846.806170pt;}
.yc2{bottom:857.638021pt;}
.y8f{bottom:862.786970pt;}
.y5a{bottom:862.799770pt;}
.yd{bottom:869.825358pt;}
.y8e{bottom:878.780570pt;}
.y59{bottom:878.793370pt;}
.yc1{bottom:881.638021pt;}
.yc0{bottom:893.638021pt;}
.y8d{bottom:894.774170pt;}
.y58{bottom:894.786970pt;}
.y57{bottom:910.780570pt;}
.y8c{bottom:910.787196pt;}
.ybf{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y56{bottom:926.774170pt;}
.y8b{bottom:926.780796pt;}
.ybe{bottom:929.638021pt;}
.y2{bottom:988.708515pt;}
.yb{bottom:994.922689pt;}
.ybb{bottom:1001.355225pt;}
.y54{bottom:1001.355306pt;}
.ybd{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.ybc{bottom:1002.044515pt;}
.y55{bottom:1002.048639pt;}
.h7{height:14.841333pt;}
.he{height:24.724000pt;}
.h6{height:32.965333pt;}
.hd{height:35.320000pt;}
.h5{height:36.922667pt;}
.h13{height:38.080000pt;}
.h11{height:38.920000pt;}
.h3{height:40.618667pt;}
.hf{height:40.661333pt;}
.h2{height:41.984000pt;}
.h12{height:47.741866pt;}
.hc{height:49.653333pt;}
.hb{height:51.893333pt;}
.h10{height:55.587272pt;}
.ha{height:59.728337pt;}
.h8{height:63.111253pt;}
.h4{height:77.059924pt;}
.h9{height:121.856000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:147.693329pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x5{left:84.162669pt;}
.x6{left:86.158402pt;}
.xa{left:95.590535pt;}
.x3{left:240.726664pt;}
.x7{left:406.304795pt;}
.x8{left:416.961594pt;}
.x4{left:570.417318pt;}
.x9{left:669.671183pt;}
}




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