
    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_0404dd79b69432fb11fe66af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.979000;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_a94b37cf0b406dbd8a1acab2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_39ecbdf218e5ec34da49e3b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.754000;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_19dcf7fab939134dbb5428f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_70097a5b59c54a848bc0dbb0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_68693c039dc486ec996f5985.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.881836;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_906104085ed111034a2cc621.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.896000;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_107d87d25f11ffe2861244e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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_91b207796c3c1832ba271bd4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.735000;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_4b46e0211a2e7fa2a48d3758.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.430000;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_fde760e938c0164fa6d8ac0d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.439000;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:ffc;src:url('chunks/assets/font_568fa2f03f8dcfa3d63c5b02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.690000;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:ffd;src:url('chunks/assets/font_a1763efff7c3e3ae06418670.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.668000;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:ffe;src:url('chunks/assets/font_ebd5a50e9c3432059a5c3c75.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_9c9e9aa60472e5687a815444.woff2')format("woff");}.fff{font-family:fff;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;}
.m1{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);}
.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);}
.v8{vertical-align:-66.000000px;}
.vd{vertical-align:-19.763928px;}
.v3{vertical-align:-17.176116px;}
.v5{vertical-align:-10.415772px;}
.v7{vertical-align:-8.832000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:8.832000px;}
.ve{vertical-align:12.664800px;}
.vb{vertical-align:14.892000px;}
.v4{vertical-align:16.756800px;}
.v2{vertical-align:18.458400px;}
.v1{vertical-align:20.370000px;}
.vc{vertical-align:22.963800px;}
.vf{vertical-align:25.260600px;}
.v10{vertical-align:26.964000px;}
.va{vertical-align:59.119200px;}
.v9{vertical-align:66.000000px;}
.ls2{letter-spacing:-37.350000px;}
.ls3{letter-spacing:-30.024000px;}
.ls4{letter-spacing:-23.976000px;}
.ls19{letter-spacing:-16.666800px;}
.ls15{letter-spacing:-12.183600px;}
.ls9{letter-spacing:-10.200000px;}
.ls1{letter-spacing:-9.960000px;}
.lse{letter-spacing:-9.894000px;}
.lsa{letter-spacing:-9.588000px;}
.ls21{letter-spacing:-9.486000px;}
.ls14{letter-spacing:-9.282000px;}
.ls16{letter-spacing:-9.180000px;}
.ls18{letter-spacing:-8.772000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000120px;}
.ls8{letter-spacing:0.000240px;}
.lsd{letter-spacing:0.005040px;}
.ls7{letter-spacing:0.012360px;}
.ls22{letter-spacing:7.200000px;}
.ls12{letter-spacing:73.333320px;}
.lsb{letter-spacing:143.804700px;}
.lsc{letter-spacing:147.192120px;}
.lsf{letter-spacing:148.880100px;}
.ls17{letter-spacing:152.263800px;}
.ls10{letter-spacing:152.387136px;}
.ls1d{letter-spacing:152.496000px;}
.ls1e{letter-spacing:155.216563px;}
.ls1f{letter-spacing:155.647440px;}
.ls1c{letter-spacing:155.647500px;}
.ls20{letter-spacing:164.015820px;}
.ls1a{letter-spacing:167.490180px;}
.ls1b{letter-spacing:171.435528px;}
.ls5{letter-spacing:172.333440px;}
.ls13{letter-spacing:239.330400px;}
.ls11{letter-spacing:1859.280000px;}
.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;}
}
.ws5{word-spacing:-131.580000px;}
.ws0{word-spacing:-128.484000px;}
.wsa{word-spacing:-127.632600px;}
.ws21{word-spacing:-127.602000px;}
.ws7{word-spacing:-123.685200px;}
.ws28{word-spacing:-122.369400px;}
.ws12{word-spacing:-119.737800px;}
.ws18{word-spacing:-118.422000px;}
.ws19{word-spacing:-113.158800px;}
.ws1a{word-spacing:-105.264000px;}
.ws1{word-spacing:-101.094000px;}
.ws24{word-spacing:-80.064000px;}
.ws1e{word-spacing:-75.960720px;}
.ws22{word-spacing:-70.589760px;}
.wsd{word-spacing:-70.056000px;}
.ws1b{word-spacing:-69.055200px;}
.ws15{word-spacing:-68.388000px;}
.ws10{word-spacing:-67.520640px;}
.ws6{word-spacing:-67.253760px;}
.ws20{word-spacing:-66.052800px;}
.wsc{word-spacing:-56.712000px;}
.ws8{word-spacing:-53.376000px;}
.ws1f{word-spacing:-50.640480px;}
.ws27{word-spacing:-47.059834px;}
.wse{word-spacing:-46.704000px;}
.ws1c{word-spacing:-46.036800px;}
.ws9{word-spacing:-43.368000px;}
.ws3{word-spacing:-36.072000px;}
.ws2{word-spacing:-30.024000px;}
.wsf{word-spacing:-26.688000px;}
.ws29{word-spacing:-0.474300px;}
.ws23{word-spacing:-0.309120px;}
.ws25{word-spacing:-0.288000px;}
.ws16{word-spacing:-0.264000px;}
.ws26{word-spacing:-0.253920px;}
.ws1d{word-spacing:-0.248400px;}
.ws11{word-spacing:-0.242880px;}
.wsb{word-spacing:-0.204000px;}
.ws4{word-spacing:0.000000px;}
.ws13{word-spacing:19.920000px;}
.ws17{word-spacing:42.536400px;}
.ws14{word-spacing:344.640000px;}
._1b{margin-left:-46.920000px;}
._1a{margin-left:-31.968000px;}
._19{margin-left:-30.329640px;}
._0{margin-left:-27.986400px;}
._e{margin-left:-26.959680px;}
._16{margin-left:-22.852800px;}
._b{margin-left:-21.738000px;}
._8{margin-left:-19.872000px;}
._1{margin-left:-17.339400px;}
._c{margin-left:-14.352000px;}
._9{margin-left:-11.112000px;}
._2{margin-left:-9.960000px;}
._3{margin-left:-7.968000px;}
._5{margin-left:-4.860000px;}
._a{margin-left:-3.848880px;}
._d{margin-left:-2.808000px;}
._15{width:7.201200px;}
._14{width:8.241600px;}
._7{width:24.948000px;}
._4{width:27.390000px;}
._6{width:30.024000px;}
._12{width:101.280000px;}
._10{width:113.280000px;}
._f{width:659.280000px;}
._11{width:839.280000px;}
._18{width:1448.664000px;}
._17{width:1957.038000px;}
._13{width:4249.356000px;}
.fc4{color:transparent;}
.fc3{color:rgb(238,34,12);}
.fc1{color:rgb(254,174,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:96.000000px;}
.fs1e{font-size:120.000000px;}
.fs16{font-size:144.000000px;}
.fsd{font-size:156.000000px;}
.fs9{font-size:161.280000px;}
.fs26{font-size:165.600000px;}
.fs15{font-size:168.000000px;}
.fs36{font-size:169.279980px;}
.fs13{font-size:178.500000px;}
.fs2a{font-size:182.160000px;}
.fs20{font-size:187.440000px;}
.fsc{font-size:192.000000px;}
.fs8{font-size:195.840000px;}
.fs1a{font-size:200.640000px;}
.fs12{font-size:204.000000px;}
.fs27{font-size:205.200000px;}
.fs30{font-size:209.760000px;}
.fs1c{font-size:211.200000px;}
.fs4{font-size:216.000000px;}
.fs31{font-size:228.000000px;}
.fs33{font-size:230.400000px;}
.fs10{font-size:234.600000px;}
.fs2c{font-size:237.600000px;}
.fs7{font-size:241.920000px;}
.fs19{font-size:242.880000px;}
.fs1f{font-size:246.000000px;}
.fs25{font-size:248.400000px;}
.fs11{font-size:250.920000px;}
.fs14{font-size:252.000000px;}
.fs35{font-size:253.440000px;}
.fs2e{font-size:253.920000px;}
.fs1b{font-size:259.776000px;}
.fsb{font-size:264.000000px;}
.fs3{font-size:270.000000px;}
.fs29{font-size:273.240000px;}
.fs22{font-size:288.000000px;}
.fsf{font-size:288.558000px;}
.fs2b{font-size:292.248000px;}
.fs6{font-size:297.561600px;}
.fs18{font-size:298.742400px;}
.fs0{font-size:304.200000px;}
.fs24{font-size:305.532000px;}
.fs2f{font-size:309.120000px;}
.fs34{font-size:311.731200px;}
.fs2d{font-size:312.321600px;}
.fs28{font-size:336.085200px;}
.fs32{font-size:354.240000px;}
.fs2{font-size:384.000000px;}
.fs23{font-size:438.600000px;}
.fs21{font-size:459.000000px;}
.fs1d{font-size:464.100000px;}
.fs37{font-size:474.300000px;}
.fsa{font-size:479.400000px;}
.fse{font-size:494.700000px;}
.fs1{font-size:498.000000px;}
.fs5{font-size:510.000000px;}
.fs38{font-size:600.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:13.430993px;}
.y26{bottom:14.306850px;}
.y1e{bottom:14.307000px;}
.y15{bottom:20.418900px;}
.y1a{bottom:21.759600px;}
.y28{bottom:24.009600px;}
.y17{bottom:25.509600px;}
.y9e{bottom:27.777720px;}
.y6c{bottom:31.524195px;}
.y52{bottom:33.456150px;}
.y82{bottom:33.739785px;}
.y23{bottom:38.306850px;}
.y1c{bottom:38.307000px;}
.y13{bottom:56.299755px;}
.y25{bottom:62.306850px;}
.y1d{bottom:62.307000px;}
.y22{bottom:86.306850px;}
.y37{bottom:93.382305px;}
.y48{bottom:103.494465px;}
.y9b{bottom:109.952655px;}
.y24{bottom:110.306850px;}
.y77{bottom:121.633140px;}
.y8a{bottom:133.492020px;}
.y36{bottom:143.420700px;}
.y81{bottom:146.867040px;}
.y3d{bottom:220.624350px;}
.y35{bottom:260.627700px;}
.y49{bottom:275.994450px;}
.y34{bottom:310.666200px;}
.y93{bottom:329.048250px;}
.y46{bottom:337.296000px;}
.y76{bottom:343.207500px;}
.y69{bottom:357.235500px;}
.y50{bottom:362.827950px;}
.y60{bottom:373.066800px;}
.y27{bottom:387.361800px;}
.y11{bottom:395.065350px;}
.y80{bottom:395.812350px;}
.y33{bottom:396.707250px;}
.y92{bottom:396.726000px;}
.y68{bottom:418.551600px;}
.y5f{bottom:435.020400px;}
.y75{bottom:437.952600px;}
.y89{bottom:452.185650px;}
.y10{bottom:460.034700px;}
.y45{bottom:462.593100px;}
.y7f{bottom:463.489950px;}
.y91{bottom:464.403750px;}
.y21{bottom:466.472550px;}
.y3c{bottom:478.624350px;}
.y9a{bottom:494.203800px;}
.y74{bottom:497.170200px;}
.y32{bottom:520.569300px;}
.ya4{bottom:523.214850px;}
.y88{bottom:523.239900px;}
.yf{bottom:524.854050px;}
.y7e{bottom:526.120350px;}
.y90{bottom:527.034150px;}
.y38{bottom:527.826000px;}
.y44{bottom:541.927950px;}
.y1{bottom:546.792600px;}
.y67{bottom:550.633350px;}
.y99{bottom:566.397600px;}
.y5e{bottom:567.820800px;}
.y31{bottom:570.607650px;}
.ye{bottom:587.323500px;}
.y73{bottom:591.915300px;}
.ya3{bottom:600.366450px;}
.y66{bottom:612.857850px;}
.y43{bottom:621.262800px;}
.y5d{bottom:629.136750px;}
.y20{bottom:636.380550px;}
.y72{bottom:655.531500px;}
.y7d{bottom:662.301900px;}
.y8f{bottom:663.215700px;}
.y6b{bottom:664.977900px;}
.y87{bottom:671.589750px;}
.y4d{bottom:677.994450px;}
.y30{bottom:687.814800px;}
.y42{bottom:700.597650px;}
.y1f{bottom:711.741150px;}
.y71{bottom:715.984950px;}
.y4e{bottom:718.494450px;}
.y98{bottom:718.503900px;}
.yd{bottom:723.474600px;}
.y8e{bottom:725.845950px;}
.y7c{bottom:730.153800px;}
.y3b{bottom:736.624350px;}
.y2f{bottom:737.853150px;}
.y86{bottom:739.267050px;}
.ya2{bottom:745.018050px;}
.y65{bottom:745.997100px;}
.y7{bottom:756.942600px;}
.y5c{bottom:761.385600px;}
.y41{bottom:774.322650px;}
.yc{bottom:788.602800px;}
.y4c{bottom:788.827950px;}
.y97{bottom:788.914500px;}
.y4f{bottom:791.035950px;}
.y7b{bottom:793.966350px;}
.y85{bottom:802.002450px;}
.y64{bottom:812.320950px;}
.y70{bottom:813.521100px;}
.y6{bottom:815.143800px;}
.y1b{bottom:820.149150px;}
.ya1{bottom:822.169650px;}
.y5b{bottom:823.890900px;}
.yb{bottom:850.313550px;}
.y2e{bottom:855.060300px;}
.y8d{bottom:857.107200px;}
.y51{bottom:870.348450px;}
.y63{bottom:874.545600px;}
.y6f{bottom:882.228300px;}
.y9d{bottom:899.150400px;}
.y40{bottom:900.163950px;}
.y2d{bottom:905.098650px;}
.y53{bottom:905.469000px;}
.y84{bottom:907.575900px;}
.y7a{bottom:930.147900px;}
.y5{bottom:934.634550px;}
.y96{bottom:940.524600px;}
.y19{bottom:942.057150px;}
.y5a{bottom:956.139600px;}
.ya0{bottom:966.821250px;}
.y83{bottom:979.769700px;}
.ya{bottom:986.053650px;}
.y8c{bottom:993.447600px;}
.y3a{bottom:994.624350px;}
.y79{bottom:1007.601600px;}
.y62{bottom:1007.684700px;}
.y95{bottom:1012.718400px;}
.y18{bottom:1017.417900px;}
.y59{bottom:1019.282400px;}
.y2c{bottom:1022.305650px;}
.y4{bottom:1022.502900px;}
.y6e{bottom:1029.242400px;}
.y3f{bottom:1030.213800px;}
.y9f{bottom:1043.972850px;}
.y4b{bottom:1046.994600px;}
.y9{bottom:1047.127800px;}
.y8b{bottom:1056.078000px;}
.y61{bottom:1069.000800px;}
.y78{bottom:1071.414300px;}
.y2b{bottom:1072.344150px;}
.y3e{bottom:1092.362250px;}
.y6d{bottom:1097.949600px;}
.y16{bottom:1099.528650px;}
.y56{bottom:1101.756900px;}
.y2a{bottom:1158.385200px;}
.y14{bottom:1181.639250px;}
.y3{bottom:1184.602050px;}
.y57{bottom:1203.167100px;}
.y9c{bottom:1234.341900px;}
.y39{bottom:1252.624350px;}
.y6a{bottom:1299.046800px;}
.y4a{bottom:1303.869450px;}
.y2{bottom:1306.524300px;}
.y8{bottom:1363.365300px;}
.y29{bottom:1366.924350px;}
.y12{bottom:1370.483400px;}
.y94{bottom:1371.669750px;}
.y55{bottom:1373.728800px;}
.y47{bottom:1374.042450px;}
.y58{bottom:1379.974200px;}
.h10{height:73.860705px;}
.hc{height:77.610690px;}
.h13{height:77.610705px;}
.he{height:80.610705px;}
.h1e{height:92.400000px;}
.h1f{height:101.232000px;}
.h11{height:106.908000px;}
.h19{height:108.000000px;}
.h20{height:111.654045px;}
.hf{height:120.120000px;}
.h28{height:129.360000px;}
.hd{height:140.352000px;}
.h29{height:144.252000px;}
.h12{height:154.908000px;}
.h17{height:157.080000px;}
.h5{height:157.896000px;}
.h32{height:166.320000px;}
.h31{height:175.560000px;}
.h8{height:176.843520px;}
.h22{height:178.464000px;}
.h2d{height:182.952000px;}
.h9{height:186.278400px;}
.h1b{height:187.017600px;}
.h21{height:189.420000px;}
.h27{height:191.268000px;}
.h16{height:193.208400px;}
.h18{height:194.040000px;}
.h35{height:195.148800px;}
.h30{height:195.518400px;}
.h1c{height:200.027520px;}
.hb{height:203.280000px;}
.h2f{height:206.029687px;}
.h4{height:207.900000px;}
.h2b{height:210.394800px;}
.h15{height:210.935898px;}
.h7{height:217.517530px;}
.h1a{height:218.380694px;}
.h24{height:221.760000px;}
.h26{height:223.343892px;}
.h2c{height:225.030960px;}
.h2e{height:228.307090px;}
.h1{height:234.234000px;}
.h34{height:240.033024px;}
.h2a{height:245.678281px;}
.h33{height:258.949440px;}
.h3{height:295.680000px;}
.h25{height:320.616600px;}
.h23{height:335.529000px;}
.h1d{height:339.257100px;}
.h36{height:346.713300px;}
.ha{height:350.441400px;}
.h14{height:361.625700px;}
.h2{height:364.038000px;}
.h6{height:372.810000px;}
.h37{height:438.600000px;}
.h0{height:1620.000000px;}
.w4{width:372.750000px;}
.w1{width:376.500000px;}
.w5{width:645.750000px;}
.w3{width:649.500000px;}
.w2{width:652.500000px;}
.w6{width:1119.159450px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x13{left:19.162500px;}
.x18{left:21.678000px;}
.x22{left:22.753500px;}
.x1f{left:24.253500px;}
.xc{left:31.509000px;}
.x17{left:41.178000px;}
.xf{left:43.111500px;}
.x20{left:45.294000px;}
.x14{left:51.573000px;}
.x23{left:54.265500px;}
.x1d{left:64.405500px;}
.x1a{left:69.336000px;}
.x1e{left:97.614000px;}
.x25{left:99.778500px;}
.x5{left:101.106000px;}
.xa{left:119.589000px;}
.x16{left:122.239500px;}
.x1c{left:126.022500px;}
.xe{left:132.538500px;}
.x7{left:135.402000px;}
.x3f{left:144.675300px;}
.x1{left:147.899910px;}
.x3a{left:151.357200px;}
.x27{left:155.704500px;}
.x4a{left:158.976450px;}
.x26{left:174.540000px;}
.x4b{left:185.976450px;}
.xd{left:188.190000px;}
.x10{left:191.134500px;}
.x9{left:199.326000px;}
.xb{left:210.948000px;}
.x39{left:213.300000px;}
.x45{left:214.740000px;}
.x3b{left:216.157200px;}
.x2{left:217.620000px;}
.x28{left:220.500000px;}
.x1b{left:224.752500px;}
.x24{left:234.114000px;}
.x21{left:235.614000px;}
.x11{left:265.119000px;}
.x19{left:271.980000px;}
.x15{left:275.881500px;}
.x29{left:281.700000px;}
.x40{left:287.955300px;}
.x43{left:289.620000px;}
.x37{left:492.357000px;}
.x4{left:618.750000px;}
.x12{left:622.500000px;}
.x6{left:996.750000px;}
.x35{left:1000.653630px;}
.x48{left:1047.450000px;}
.x3{left:1197.789000px;}
.x2a{left:1492.951650px;}
.x38{left:1504.690500px;}
.x3d{left:1586.404500px;}
.x8{left:1650.750000px;}
.x3c{left:1656.855000px;}
.x46{left:1681.242000px;}
.x2b{left:1688.256000px;}
.x2e{left:1789.372500px;}
.x2c{left:1792.372500px;}
.x42{left:1835.938500px;}
.x47{left:1852.617000px;}
.x44{left:1882.812000px;}
.x34{left:1964.872500px;}
.x2d{left:1988.872500px;}
.x2f{left:2200.372500px;}
.x30{left:2245.372500px;}
.x41{left:2312.430000px;}
.x3e{left:2363.169000px;}
.x49{left:2371.383000px;}
.x36{left:2425.804500px;}
.x31{left:2501.872500px;}
.x32{left:2683.372500px;}
.x33{left:2725.372500px;}
@media print{
.v8{vertical-align:-58.666667pt;}
.vd{vertical-align:-17.567936pt;}
.v3{vertical-align:-15.267659pt;}
.v5{vertical-align:-9.258464pt;}
.v7{vertical-align:-7.850667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:7.850667pt;}
.ve{vertical-align:11.257600pt;}
.vb{vertical-align:13.237333pt;}
.v4{vertical-align:14.894933pt;}
.v2{vertical-align:16.407467pt;}
.v1{vertical-align:18.106667pt;}
.vc{vertical-align:20.412267pt;}
.vf{vertical-align:22.453867pt;}
.v10{vertical-align:23.968000pt;}
.va{vertical-align:52.550400pt;}
.v9{vertical-align:58.666667pt;}
.ls2{letter-spacing:-33.200000pt;}
.ls3{letter-spacing:-26.688000pt;}
.ls4{letter-spacing:-21.312000pt;}
.ls19{letter-spacing:-14.814933pt;}
.ls15{letter-spacing:-10.829867pt;}
.ls9{letter-spacing:-9.066667pt;}
.ls1{letter-spacing:-8.853333pt;}
.lse{letter-spacing:-8.794667pt;}
.lsa{letter-spacing:-8.522667pt;}
.ls21{letter-spacing:-8.432000pt;}
.ls14{letter-spacing:-8.250667pt;}
.ls16{letter-spacing:-8.160000pt;}
.ls18{letter-spacing:-7.797333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000107pt;}
.ls8{letter-spacing:0.000213pt;}
.lsd{letter-spacing:0.004480pt;}
.ls7{letter-spacing:0.010987pt;}
.ls22{letter-spacing:6.400000pt;}
.ls12{letter-spacing:65.185173pt;}
.lsb{letter-spacing:127.826400pt;}
.lsc{letter-spacing:130.837440pt;}
.lsf{letter-spacing:132.337867pt;}
.ls17{letter-spacing:135.345600pt;}
.ls10{letter-spacing:135.455232pt;}
.ls1d{letter-spacing:135.552000pt;}
.ls1e{letter-spacing:137.970278pt;}
.ls1f{letter-spacing:138.353280pt;}
.ls1c{letter-spacing:138.353333pt;}
.ls20{letter-spacing:145.791840pt;}
.ls1a{letter-spacing:148.880160pt;}
.ls1b{letter-spacing:152.387136pt;}
.ls5{letter-spacing:153.185280pt;}
.ls13{letter-spacing:212.738133pt;}
.ls11{letter-spacing:1652.693333pt;}
.ws5{word-spacing:-116.960000pt;}
.ws0{word-spacing:-114.208000pt;}
.wsa{word-spacing:-113.451200pt;}
.ws21{word-spacing:-113.424000pt;}
.ws7{word-spacing:-109.942400pt;}
.ws28{word-spacing:-108.772800pt;}
.ws12{word-spacing:-106.433600pt;}
.ws18{word-spacing:-105.264000pt;}
.ws19{word-spacing:-100.585600pt;}
.ws1a{word-spacing:-93.568000pt;}
.ws1{word-spacing:-89.861333pt;}
.ws24{word-spacing:-71.168000pt;}
.ws1e{word-spacing:-67.520640pt;}
.ws22{word-spacing:-62.746453pt;}
.wsd{word-spacing:-62.272000pt;}
.ws1b{word-spacing:-61.382400pt;}
.ws15{word-spacing:-60.789333pt;}
.ws10{word-spacing:-60.018347pt;}
.ws6{word-spacing:-59.781120pt;}
.ws20{word-spacing:-58.713600pt;}
.wsc{word-spacing:-50.410667pt;}
.ws8{word-spacing:-47.445333pt;}
.ws1f{word-spacing:-45.013760pt;}
.ws27{word-spacing:-41.830964pt;}
.wse{word-spacing:-41.514667pt;}
.ws1c{word-spacing:-40.921600pt;}
.ws9{word-spacing:-38.549333pt;}
.ws3{word-spacing:-32.064000pt;}
.ws2{word-spacing:-26.688000pt;}
.wsf{word-spacing:-23.722667pt;}
.ws29{word-spacing:-0.421600pt;}
.ws23{word-spacing:-0.274773pt;}
.ws25{word-spacing:-0.256000pt;}
.ws16{word-spacing:-0.234667pt;}
.ws26{word-spacing:-0.225707pt;}
.ws1d{word-spacing:-0.220800pt;}
.ws11{word-spacing:-0.215893pt;}
.wsb{word-spacing:-0.181333pt;}
.ws4{word-spacing:0.000000pt;}
.ws13{word-spacing:17.706667pt;}
.ws17{word-spacing:37.810133pt;}
.ws14{word-spacing:306.346667pt;}
._1b{margin-left:-41.706667pt;}
._1a{margin-left:-28.416000pt;}
._19{margin-left:-26.959680pt;}
._0{margin-left:-24.876800pt;}
._e{margin-left:-23.964160pt;}
._16{margin-left:-20.313600pt;}
._b{margin-left:-19.322667pt;}
._8{margin-left:-17.664000pt;}
._1{margin-left:-15.412800pt;}
._c{margin-left:-12.757333pt;}
._9{margin-left:-9.877333pt;}
._2{margin-left:-8.853333pt;}
._3{margin-left:-7.082667pt;}
._5{margin-left:-4.320000pt;}
._a{margin-left:-3.421227pt;}
._d{margin-left:-2.496000pt;}
._15{width:6.401067pt;}
._14{width:7.325867pt;}
._7{width:22.176000pt;}
._4{width:24.346667pt;}
._6{width:26.688000pt;}
._12{width:90.026667pt;}
._10{width:100.693333pt;}
._f{width:586.026667pt;}
._11{width:746.026667pt;}
._18{width:1287.701333pt;}
._17{width:1739.589333pt;}
._13{width:3777.205333pt;}
.fs17{font-size:85.333333pt;}
.fs1e{font-size:106.666667pt;}
.fs16{font-size:128.000000pt;}
.fsd{font-size:138.666667pt;}
.fs9{font-size:143.360000pt;}
.fs26{font-size:147.200000pt;}
.fs15{font-size:149.333333pt;}
.fs36{font-size:150.471093pt;}
.fs13{font-size:158.666667pt;}
.fs2a{font-size:161.920000pt;}
.fs20{font-size:166.613333pt;}
.fsc{font-size:170.666667pt;}
.fs8{font-size:174.080000pt;}
.fs1a{font-size:178.346667pt;}
.fs12{font-size:181.333333pt;}
.fs27{font-size:182.400000pt;}
.fs30{font-size:186.453333pt;}
.fs1c{font-size:187.733333pt;}
.fs4{font-size:192.000000pt;}
.fs31{font-size:202.666667pt;}
.fs33{font-size:204.800000pt;}
.fs10{font-size:208.533333pt;}
.fs2c{font-size:211.200000pt;}
.fs7{font-size:215.040000pt;}
.fs19{font-size:215.893333pt;}
.fs1f{font-size:218.666667pt;}
.fs25{font-size:220.800000pt;}
.fs11{font-size:223.040000pt;}
.fs14{font-size:224.000000pt;}
.fs35{font-size:225.280000pt;}
.fs2e{font-size:225.706667pt;}
.fs1b{font-size:230.912000pt;}
.fsb{font-size:234.666667pt;}
.fs3{font-size:240.000000pt;}
.fs29{font-size:242.880000pt;}
.fs22{font-size:256.000000pt;}
.fsf{font-size:256.496000pt;}
.fs2b{font-size:259.776000pt;}
.fs6{font-size:264.499200pt;}
.fs18{font-size:265.548800pt;}
.fs0{font-size:270.400000pt;}
.fs24{font-size:271.584000pt;}
.fs2f{font-size:274.773333pt;}
.fs34{font-size:277.094400pt;}
.fs2d{font-size:277.619200pt;}
.fs28{font-size:298.742400pt;}
.fs32{font-size:314.880000pt;}
.fs2{font-size:341.333333pt;}
.fs23{font-size:389.866667pt;}
.fs21{font-size:408.000000pt;}
.fs1d{font-size:412.533333pt;}
.fs37{font-size:421.600000pt;}
.fsa{font-size:426.133333pt;}
.fse{font-size:439.733333pt;}
.fs1{font-size:442.666667pt;}
.fs5{font-size:453.333333pt;}
.fs38{font-size:533.333333pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:11.938660pt;}
.y26{bottom:12.717200pt;}
.y1e{bottom:12.717333pt;}
.y15{bottom:18.150133pt;}
.y1a{bottom:19.341867pt;}
.y28{bottom:21.341867pt;}
.y17{bottom:22.675200pt;}
.y9e{bottom:24.691307pt;}
.y6c{bottom:28.021507pt;}
.y52{bottom:29.738800pt;}
.y82{bottom:29.990920pt;}
.y23{bottom:34.050533pt;}
.y1c{bottom:34.050667pt;}
.y13{bottom:50.044227pt;}
.y25{bottom:55.383867pt;}
.y1d{bottom:55.384000pt;}
.y22{bottom:76.717200pt;}
.y37{bottom:83.006493pt;}
.y48{bottom:91.995080pt;}
.y9b{bottom:97.735693pt;}
.y24{bottom:98.050533pt;}
.y77{bottom:108.118347pt;}
.y8a{bottom:118.659573pt;}
.y36{bottom:127.485067pt;}
.y81{bottom:130.548480pt;}
.y3d{bottom:196.110533pt;}
.y35{bottom:231.669067pt;}
.y49{bottom:245.328400pt;}
.y34{bottom:276.147733pt;}
.y93{bottom:292.487333pt;}
.y46{bottom:299.818667pt;}
.y76{bottom:305.073333pt;}
.y69{bottom:317.542667pt;}
.y50{bottom:322.513733pt;}
.y60{bottom:331.614933pt;}
.y27{bottom:344.321600pt;}
.y11{bottom:351.169200pt;}
.y80{bottom:351.833200pt;}
.y33{bottom:352.628667pt;}
.y92{bottom:352.645333pt;}
.y68{bottom:372.045867pt;}
.y5f{bottom:386.684800pt;}
.y75{bottom:389.291200pt;}
.y89{bottom:401.942800pt;}
.y10{bottom:408.919733pt;}
.y45{bottom:411.193867pt;}
.y7f{bottom:411.991067pt;}
.y91{bottom:412.803333pt;}
.y21{bottom:414.642267pt;}
.y3c{bottom:425.443867pt;}
.y9a{bottom:439.292267pt;}
.y74{bottom:441.929067pt;}
.y32{bottom:462.728267pt;}
.ya4{bottom:465.079867pt;}
.y88{bottom:465.102133pt;}
.yf{bottom:466.536933pt;}
.y7e{bottom:467.662533pt;}
.y90{bottom:468.474800pt;}
.y38{bottom:469.178667pt;}
.y44{bottom:481.713733pt;}
.y1{bottom:486.037867pt;}
.y67{bottom:489.451867pt;}
.y99{bottom:503.464533pt;}
.y5e{bottom:504.729600pt;}
.y31{bottom:507.206800pt;}
.ye{bottom:522.065333pt;}
.y73{bottom:526.146933pt;}
.ya3{bottom:533.659067pt;}
.y66{bottom:544.762533pt;}
.y43{bottom:552.233600pt;}
.y5d{bottom:559.232667pt;}
.y20{bottom:565.671600pt;}
.y72{bottom:582.694667pt;}
.y7d{bottom:588.712800pt;}
.y8f{bottom:589.525067pt;}
.y6b{bottom:591.091467pt;}
.y87{bottom:596.968667pt;}
.y4d{bottom:602.661733pt;}
.y30{bottom:611.390933pt;}
.y42{bottom:622.753467pt;}
.y1f{bottom:632.658800pt;}
.y71{bottom:636.431067pt;}
.y4e{bottom:638.661733pt;}
.y98{bottom:638.670133pt;}
.yd{bottom:643.088533pt;}
.y8e{bottom:645.196400pt;}
.y7c{bottom:649.025600pt;}
.y3b{bottom:654.777200pt;}
.y2f{bottom:655.869467pt;}
.y86{bottom:657.126267pt;}
.ya2{bottom:662.238267pt;}
.y65{bottom:663.108533pt;}
.y7{bottom:672.837867pt;}
.y5c{bottom:676.787200pt;}
.y41{bottom:688.286800pt;}
.yc{bottom:700.980267pt;}
.y4c{bottom:701.180400pt;}
.y97{bottom:701.257333pt;}
.y4f{bottom:703.143067pt;}
.y7b{bottom:705.747867pt;}
.y85{bottom:712.891067pt;}
.y64{bottom:722.063067pt;}
.y70{bottom:723.129867pt;}
.y6{bottom:724.572267pt;}
.y1b{bottom:729.021467pt;}
.ya1{bottom:730.817467pt;}
.y5b{bottom:732.347467pt;}
.yb{bottom:755.834267pt;}
.y2e{bottom:760.053600pt;}
.y8d{bottom:761.873067pt;}
.y51{bottom:773.643067pt;}
.y63{bottom:777.373867pt;}
.y6f{bottom:784.202933pt;}
.y9d{bottom:799.244800pt;}
.y40{bottom:800.145733pt;}
.y2d{bottom:804.532133pt;}
.y53{bottom:804.861333pt;}
.y84{bottom:806.734133pt;}
.y7a{bottom:826.798133pt;}
.y5{bottom:830.786267pt;}
.y96{bottom:836.021867pt;}
.y19{bottom:837.384133pt;}
.y5a{bottom:849.901867pt;}
.ya0{bottom:859.396667pt;}
.y83{bottom:870.906400pt;}
.ya{bottom:876.492133pt;}
.y8c{bottom:883.064533pt;}
.y3a{bottom:884.110533pt;}
.y79{bottom:895.645867pt;}
.y62{bottom:895.719733pt;}
.y95{bottom:900.194133pt;}
.y18{bottom:904.371467pt;}
.y59{bottom:906.028800pt;}
.y2c{bottom:908.716133pt;}
.y4{bottom:908.891467pt;}
.y6e{bottom:914.882133pt;}
.y3f{bottom:915.745600pt;}
.y9f{bottom:927.975867pt;}
.y4b{bottom:930.661867pt;}
.y9{bottom:930.780267pt;}
.y8b{bottom:938.736000pt;}
.y61{bottom:950.222933pt;}
.y78{bottom:952.368267pt;}
.y2b{bottom:953.194800pt;}
.y3e{bottom:970.988667pt;}
.y6d{bottom:975.955200pt;}
.y16{bottom:977.358800pt;}
.y56{bottom:979.339467pt;}
.y2a{bottom:1029.675733pt;}
.y14{bottom:1050.346000pt;}
.y3{bottom:1052.979600pt;}
.y57{bottom:1069.481867pt;}
.y9c{bottom:1097.192800pt;}
.y39{bottom:1113.443867pt;}
.y6a{bottom:1154.708267pt;}
.y4a{bottom:1158.995067pt;}
.y2{bottom:1161.354933pt;}
.y8{bottom:1211.880267pt;}
.y29{bottom:1215.043867pt;}
.y12{bottom:1218.207467pt;}
.y94{bottom:1219.262000pt;}
.y55{bottom:1221.092267pt;}
.y47{bottom:1221.371067pt;}
.y58{bottom:1226.643733pt;}
.h10{height:65.653960pt;}
.hc{height:68.987280pt;}
.h13{height:68.987293pt;}
.he{height:71.653960pt;}
.h1e{height:82.133333pt;}
.h1f{height:89.984000pt;}
.h11{height:95.029333pt;}
.h19{height:96.000000pt;}
.h20{height:99.248040pt;}
.hf{height:106.773333pt;}
.h28{height:114.986667pt;}
.hd{height:124.757333pt;}
.h29{height:128.224000pt;}
.h12{height:137.696000pt;}
.h17{height:139.626667pt;}
.h5{height:140.352000pt;}
.h32{height:147.840000pt;}
.h31{height:156.053333pt;}
.h8{height:157.194240pt;}
.h22{height:158.634667pt;}
.h2d{height:162.624000pt;}
.h9{height:165.580800pt;}
.h1b{height:166.237867pt;}
.h21{height:168.373333pt;}
.h27{height:170.016000pt;}
.h16{height:171.740800pt;}
.h18{height:172.480000pt;}
.h35{height:173.465600pt;}
.h30{height:173.794133pt;}
.h1c{height:177.802240pt;}
.hb{height:180.693333pt;}
.h2f{height:183.137500pt;}
.h4{height:184.800000pt;}
.h2b{height:187.017600pt;}
.h15{height:187.498576pt;}
.h7{height:193.348915pt;}
.h1a{height:194.116173pt;}
.h24{height:197.120000pt;}
.h26{height:198.527904pt;}
.h2c{height:200.027520pt;}
.h2e{height:202.939635pt;}
.h1{height:208.208000pt;}
.h34{height:213.362688pt;}
.h2a{height:218.380694pt;}
.h33{height:230.177280pt;}
.h3{height:262.826667pt;}
.h25{height:284.992533pt;}
.h23{height:298.248000pt;}
.h1d{height:301.561867pt;}
.h36{height:308.189600pt;}
.ha{height:311.503467pt;}
.h14{height:321.445067pt;}
.h2{height:323.589333pt;}
.h6{height:331.386667pt;}
.h37{height:389.866667pt;}
.h0{height:1440.000000pt;}
.w4{width:331.333333pt;}
.w1{width:334.666667pt;}
.w5{width:574.000000pt;}
.w3{width:577.333333pt;}
.w2{width:580.000000pt;}
.w6{width:994.808400pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x13{left:17.033333pt;}
.x18{left:19.269333pt;}
.x22{left:20.225333pt;}
.x1f{left:21.558667pt;}
.xc{left:28.008000pt;}
.x17{left:36.602667pt;}
.xf{left:38.321333pt;}
.x20{left:40.261333pt;}
.x14{left:45.842667pt;}
.x23{left:48.236000pt;}
.x1d{left:57.249333pt;}
.x1a{left:61.632000pt;}
.x1e{left:86.768000pt;}
.x25{left:88.692000pt;}
.x5{left:89.872000pt;}
.xa{left:106.301333pt;}
.x16{left:108.657333pt;}
.x1c{left:112.020000pt;}
.xe{left:117.812000pt;}
.x7{left:120.357333pt;}
.x3f{left:128.600267pt;}
.x1{left:131.466587pt;}
.x3a{left:134.539733pt;}
.x27{left:138.404000pt;}
.x4a{left:141.312400pt;}
.x26{left:155.146667pt;}
.x4b{left:165.312400pt;}
.xd{left:167.280000pt;}
.x10{left:169.897333pt;}
.x9{left:177.178667pt;}
.xb{left:187.509333pt;}
.x39{left:189.600000pt;}
.x45{left:190.880000pt;}
.x3b{left:192.139733pt;}
.x2{left:193.440000pt;}
.x28{left:196.000000pt;}
.x1b{left:199.780000pt;}
.x24{left:208.101333pt;}
.x21{left:209.434667pt;}
.x11{left:235.661333pt;}
.x19{left:241.760000pt;}
.x15{left:245.228000pt;}
.x29{left:250.400000pt;}
.x40{left:255.960267pt;}
.x43{left:257.440000pt;}
.x37{left:437.650667pt;}
.x4{left:550.000000pt;}
.x12{left:553.333333pt;}
.x6{left:886.000000pt;}
.x35{left:889.469893pt;}
.x48{left:931.066667pt;}
.x3{left:1064.701333pt;}
.x2a{left:1327.068133pt;}
.x38{left:1337.502667pt;}
.x3d{left:1410.137333pt;}
.x8{left:1467.333333pt;}
.x3c{left:1472.760000pt;}
.x46{left:1494.437333pt;}
.x2b{left:1500.672000pt;}
.x2e{left:1590.553333pt;}
.x2c{left:1593.220000pt;}
.x42{left:1631.945333pt;}
.x47{left:1646.770667pt;}
.x44{left:1673.610667pt;}
.x34{left:1746.553333pt;}
.x2d{left:1767.886667pt;}
.x2f{left:1955.886667pt;}
.x30{left:1995.886667pt;}
.x41{left:2055.493333pt;}
.x3e{left:2100.594667pt;}
.x49{left:2107.896000pt;}
.x36{left:2156.270667pt;}
.x31{left:2223.886667pt;}
.x32{left:2385.220000pt;}
.x33{left:2422.553333pt;}
}




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