
    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_d12113837acc13bf310ee05c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_7bd0420ac3c56f9712030527.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_f820dd696aecd3dbe90e6f03.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_70503711b60349d81c5d2f24.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_6ef360455fc06ae2eff4bb97.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_ec721570aa74d81f6245fa2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.819400px;}
.v1{vertical-align:19.800000px;}
.ls3f{letter-spacing:-0.840000px;}
.ls2b{letter-spacing:-0.780000px;}
.ls1b{letter-spacing:-0.660000px;}
.ls42{letter-spacing:-0.648000px;}
.ls19{letter-spacing:-0.600000px;}
.ls44{letter-spacing:-0.594000px;}
.ls17{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.360000px;}
.ls41{letter-spacing:-0.324000px;}
.ls1a{letter-spacing:-0.300000px;}
.ls2a{letter-spacing:-0.240000px;}
.ls4d{letter-spacing:-0.180000px;}
.ls4b{letter-spacing:-0.162000px;}
.ls4c{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.060000px;}
.ls43{letter-spacing:-0.054000px;}
.ls16{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls39{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.162000px;}
.ls48{letter-spacing:0.180000px;}
.ls49{letter-spacing:0.239400px;}
.ls2{letter-spacing:0.240000px;}
.ls45{letter-spacing:0.324000px;}
.lsc{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.420000px;}
.ls3c{letter-spacing:0.432000px;}
.ls25{letter-spacing:0.480000px;}
.ls3e{letter-spacing:0.486000px;}
.ls24{letter-spacing:0.540000px;}
.ls34{letter-spacing:0.594000px;}
.ls5{letter-spacing:0.600000px;}
.ls46{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.780000px;}
.lsb{letter-spacing:0.840000px;}
.ls35{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.886200px;}
.ls1e{letter-spacing:0.900000px;}
.ls3d{letter-spacing:0.918000px;}
.ls21{letter-spacing:0.960000px;}
.ls23{letter-spacing:1.020000px;}
.ls31{letter-spacing:1.026000px;}
.ls4{letter-spacing:1.080000px;}
.ls3{letter-spacing:1.140000px;}
.ls47{letter-spacing:1.249200px;}
.ls11{letter-spacing:1.260000px;}
.ls36{letter-spacing:1.296000px;}
.ls37{letter-spacing:1.350000px;}
.ls38{letter-spacing:1.512000px;}
.ls2c{letter-spacing:1.560000px;}
.ls40{letter-spacing:1.566000px;}
.lsd{letter-spacing:1.620000px;}
.ls4a{letter-spacing:1.680000px;}
.ls14{letter-spacing:1.860000px;}
.ls10{letter-spacing:1.920000px;}
.ls15{letter-spacing:2.100000px;}
.ls13{letter-spacing:2.160000px;}
.ls26{letter-spacing:2.280000px;}
.ls8{letter-spacing:2.340000px;}
.ls2f{letter-spacing:2.400000px;}
.ls33{letter-spacing:2.592000px;}
.ls30{letter-spacing:2.754000px;}
.ls3b{letter-spacing:2.862000px;}
.ls1d{letter-spacing:2.880000px;}
.ls9{letter-spacing:2.940000px;}
.ls32{letter-spacing:2.970000px;}
.ls2e{letter-spacing:3.060000px;}
.ls1c{letter-spacing:3.480000px;}
.ls2d{letter-spacing:3.720000px;}
.ls22{letter-spacing:5.400000px;}
.lse{letter-spacing:5.880000px;}
.ls20{letter-spacing:5.940000px;}
.ls0{letter-spacing:6.657600px;}
.lsf{letter-spacing:6.720000px;}
.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;}
}
.ws2c{word-spacing:-20.940000px;}
.ws4{word-spacing:-20.880000px;}
.ws47{word-spacing:-18.720000px;}
.ws2a{word-spacing:-17.880000px;}
.ws29{word-spacing:-17.100000px;}
.ws2{word-spacing:-16.080000px;}
.ws2b{word-spacing:-15.900000px;}
.ws6b{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.780000px;}
.ws2d{word-spacing:-15.360000px;}
.ws0{word-spacing:-15.000000px;}
.ws6c{word-spacing:-14.700000px;}
.ws2e{word-spacing:-14.220000px;}
.ws48{word-spacing:-13.500000px;}
.ws1{word-spacing:-8.700000px;}
.ws6a{word-spacing:-7.830000px;}
.ws21{word-spacing:-6.720000px;}
.ws62{word-spacing:-6.372000px;}
.ws3b{word-spacing:-5.940000px;}
.ws1f{word-spacing:-5.880000px;}
.ws3e{word-spacing:-5.400000px;}
.ws43{word-spacing:-4.020000px;}
.ws12{word-spacing:-3.780000px;}
.ws38{word-spacing:-3.720000px;}
.ws2f{word-spacing:-3.480000px;}
.ws37{word-spacing:-3.420000px;}
.ws5a{word-spacing:-3.402000px;}
.ws58{word-spacing:-3.348000px;}
.ws78{word-spacing:-3.180000px;}
.ws53{word-spacing:-3.078000px;}
.ws39{word-spacing:-2.880000px;}
.ws57{word-spacing:-2.808000px;}
.ws4b{word-spacing:-2.754000px;}
.ws4e{word-spacing:-2.592000px;}
.ws7a{word-spacing:-2.460000px;}
.ws49{word-spacing:-2.400000px;}
.ws11{word-spacing:-2.340000px;}
.ws45{word-spacing:-2.280000px;}
.ws31{word-spacing:-2.220000px;}
.ws26{word-spacing:-2.160000px;}
.ws67{word-spacing:-2.106000px;}
.ws28{word-spacing:-2.100000px;}
.ws33{word-spacing:-1.920000px;}
.ws52{word-spacing:-1.836000px;}
.ws7e{word-spacing:-1.680000px;}
.ws1e{word-spacing:-1.620000px;}
.ws55{word-spacing:-1.566000px;}
.ws46{word-spacing:-1.560000px;}
.ws6e{word-spacing:-1.512000px;}
.ws68{word-spacing:-1.350000px;}
.ws51{word-spacing:-1.296000px;}
.ws1a{word-spacing:-1.200000px;}
.ws10{word-spacing:-1.140000px;}
.ws7f{word-spacing:-1.080000px;}
.ws5d{word-spacing:-1.026000px;}
.ws3f{word-spacing:-1.020000px;}
.ws59{word-spacing:-0.972000px;}
.ws65{word-spacing:-0.918000px;}
.ws3a{word-spacing:-0.900000px;}
.ws50{word-spacing:-0.864000px;}
.ws18{word-spacing:-0.840000px;}
.ws73{word-spacing:-0.810000px;}
.ws14{word-spacing:-0.780000px;}
.ws32{word-spacing:-0.660000px;}
.ws75{word-spacing:-0.648000px;}
.ws22{word-spacing:-0.600000px;}
.ws41{word-spacing:-0.540000px;}
.ws69{word-spacing:-0.486000px;}
.ws7b{word-spacing:-0.480000px;}
.ws54{word-spacing:-0.432000px;}
.ws17{word-spacing:-0.420000px;}
.ws1d{word-spacing:-0.360000px;}
.ws6f{word-spacing:-0.324000px;}
.wse{word-spacing:-0.240000px;}
.ws16{word-spacing:-0.180000px;}
.ws34{word-spacing:-0.120000px;}
.ws6d{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.060000px;}
.ws5{word-spacing:0.000000px;}
.ws72{word-spacing:0.054000px;}
.ws8{word-spacing:0.060000px;}
.ws71{word-spacing:0.162000px;}
.ws79{word-spacing:0.180000px;}
.ws6{word-spacing:0.240000px;}
.ws13{word-spacing:0.300000px;}
.ws35{word-spacing:0.360000px;}
.ws36{word-spacing:0.480000px;}
.ws7{word-spacing:0.540000px;}
.ws9{word-spacing:0.600000px;}
.ws23{word-spacing:0.660000px;}
.ws42{word-spacing:0.780000px;}
.ws30{word-spacing:0.840000px;}
.ws5c{word-spacing:0.972000px;}
.ws27{word-spacing:1.200000px;}
.ws44{word-spacing:1.560000px;}
.ws5e{word-spacing:1.566000px;}
.ws70{word-spacing:1.620000px;}
.ws77{word-spacing:1.920000px;}
.ws56{word-spacing:1.998000px;}
.ws4f{word-spacing:2.376000px;}
.ws1c{word-spacing:2.520000px;}
.ws76{word-spacing:2.700000px;}
.wsd{word-spacing:3.060000px;}
.ws5b{word-spacing:3.294000px;}
.wsf{word-spacing:3.600000px;}
.ws74{word-spacing:3.834000px;}
.ws15{word-spacing:3.840000px;}
.ws24{word-spacing:4.200000px;}
.ws7c{word-spacing:4.260000px;}
.ws61{word-spacing:4.968000px;}
.ws19{word-spacing:5.100000px;}
.ws7d{word-spacing:5.160000px;}
.ws5f{word-spacing:5.292000px;}
.ws3d{word-spacing:5.400000px;}
.ws63{word-spacing:5.454000px;}
.ws64{word-spacing:5.778000px;}
.ws1b{word-spacing:6.000000px;}
.ws4c{word-spacing:6.102000px;}
.ws60{word-spacing:6.156000px;}
.ws66{word-spacing:6.480000px;}
.wsa{word-spacing:6.660000px;}
.ws4d{word-spacing:6.750000px;}
.ws4a{word-spacing:7.080000px;}
.ws40{word-spacing:7.260000px;}
.ws25{word-spacing:7.440000px;}
.wsb{word-spacing:7.500000px;}
.ws20{word-spacing:11.760000px;}
.ws3c{word-spacing:11.940000px;}
._11{margin-left:-94.500000px;}
._16{margin-left:-8.196600px;}
._5{margin-left:-6.966000px;}
._1{margin-left:-5.400000px;}
._6{margin-left:-4.320000px;}
._2{margin-left:-3.300000px;}
._4{margin-left:-2.268000px;}
._3{margin-left:-1.148400px;}
._b{width:1.053600px;}
._10{width:2.328000px;}
._9{width:3.639600px;}
._8{width:5.580000px;}
._7{width:6.626400px;}
._a{width:7.740000px;}
._c{width:8.940000px;}
._f{width:10.380000px;}
._13{width:11.820000px;}
._15{width:13.020000px;}
._14{width:16.260000px;}
._d{width:17.625000px;}
._e{width:20.160000px;}
._0{width:1399.268400px;}
._12{width:1480.293600px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.320000px;}
.fs2{font-size:34.800000px;}
.fs3{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y41{bottom:86.105700px;}
.y24{bottom:86.120400px;}
.y7c{bottom:88.384950px;}
.yc0{bottom:89.701500px;}
.y8e{bottom:90.174600px;}
.y7b{bottom:90.474600px;}
.ye9{bottom:97.829700px;}
.y40{bottom:104.105700px;}
.y23{bottom:104.120400px;}
.ybf{bottom:105.901500px;}
.y8d{bottom:106.374600px;}
.y7a{bottom:108.474600px;}
.ye8{bottom:116.729700px;}
.ybe{bottom:122.101500px;}
.y3f{bottom:122.105700px;}
.y22{bottom:122.120400px;}
.y8c{bottom:122.574600px;}
.y79{bottom:126.474600px;}
.ye7{bottom:135.629700px;}
.ybd{bottom:138.301500px;}
.y8b{bottom:138.774600px;}
.y3e{bottom:140.105700px;}
.y21{bottom:140.120400px;}
.y78{bottom:144.474600px;}
.ybc{bottom:154.501500px;}
.ye6{bottom:154.529700px;}
.y8a{bottom:154.974600px;}
.y3d{bottom:158.105700px;}
.y20{bottom:158.120400px;}
.y77{bottom:162.474600px;}
.ybb{bottom:170.701500px;}
.y89{bottom:171.174600px;}
.ye5{bottom:173.429700px;}
.y3c{bottom:176.105700px;}
.y1f{bottom:176.120400px;}
.y76{bottom:180.474600px;}
.yba{bottom:186.901500px;}
.y88{bottom:187.374600px;}
.ye4{bottom:192.329700px;}
.y3b{bottom:194.105700px;}
.y1e{bottom:194.120400px;}
.y75{bottom:198.474600px;}
.yb9{bottom:203.101500px;}
.y87{bottom:203.574600px;}
.ye3{bottom:211.229700px;}
.y3a{bottom:212.105700px;}
.y1d{bottom:212.120400px;}
.y74{bottom:216.474600px;}
.yb8{bottom:219.301500px;}
.y86{bottom:219.774600px;}
.y39{bottom:230.105700px;}
.y1c{bottom:230.120400px;}
.ye2{bottom:230.129700px;}
.y73{bottom:234.474600px;}
.yb7{bottom:235.501500px;}
.y85{bottom:235.974600px;}
.y38{bottom:248.105700px;}
.y1b{bottom:248.120400px;}
.ye1{bottom:249.029700px;}
.yb6{bottom:251.701500px;}
.y84{bottom:252.174600px;}
.y72{bottom:252.474600px;}
.y37{bottom:266.105700px;}
.y1a{bottom:266.120400px;}
.yb5{bottom:267.901500px;}
.ye0{bottom:267.929700px;}
.y83{bottom:268.374600px;}
.y71{bottom:270.474600px;}
.yb4{bottom:284.101500px;}
.y36{bottom:284.105700px;}
.y19{bottom:284.120400px;}
.y82{bottom:284.574600px;}
.y70{bottom:288.474600px;}
.yb3{bottom:300.301500px;}
.y81{bottom:300.774600px;}
.y35{bottom:302.105700px;}
.y18{bottom:302.120400px;}
.y6f{bottom:306.474600px;}
.yb2{bottom:316.501500px;}
.y34{bottom:320.105700px;}
.y17{bottom:320.120400px;}
.ydf{bottom:320.427000px;}
.y6e{bottom:324.474600px;}
.yb1{bottom:332.701500px;}
.y80{bottom:334.974600px;}
.y33{bottom:338.105700px;}
.y16{bottom:338.120400px;}
.yb0{bottom:348.901500px;}
.yde{bottom:348.927000px;}
.y32{bottom:356.105700px;}
.y15{bottom:356.120400px;}
.y6d{bottom:360.474600px;}
.yaf{bottom:365.101500px;}
.y31{bottom:374.105700px;}
.ydd{bottom:377.427000px;}
.y6c{bottom:378.474600px;}
.yae{bottom:381.301500px;}
.y7f{bottom:388.974600px;}
.y30{bottom:392.105700px;}
.y14{bottom:392.120400px;}
.y6b{bottom:396.474600px;}
.yad{bottom:397.501500px;}
.y7e{bottom:403.224600px;}
.y2f{bottom:410.105700px;}
.y13{bottom:410.120400px;}
.yac{bottom:413.701500px;}
.y6a{bottom:414.474600px;}
.ydc{bottom:423.728550px;}
.y2e{bottom:428.105700px;}
.y12{bottom:428.120400px;}
.yab{bottom:429.901500px;}
.y69{bottom:432.474600px;}
.yaa{bottom:446.101500px;}
.y11{bottom:446.120400px;}
.y68{bottom:450.474600px;}
.ya9{bottom:462.301500px;}
.y2d{bottom:464.105700px;}
.y10{bottom:464.120400px;}
.y67{bottom:468.474600px;}
.ydb{bottom:474.696000px;}
.ya8{bottom:478.501500px;}
.y2c{bottom:482.105700px;}
.yf{bottom:482.120400px;}
.y66{bottom:486.474600px;}
.ya7{bottom:494.701500px;}
.y2b{bottom:500.105700px;}
.ye{bottom:500.120400px;}
.y65{bottom:504.474600px;}
.ya6{bottom:510.901500px;}
.yda{bottom:517.896000px;}
.y2a{bottom:518.105700px;}
.yd{bottom:518.120400px;}
.y64{bottom:522.474600px;}
.ya5{bottom:527.101500px;}
.yd9{bottom:535.896000px;}
.y29{bottom:536.105700px;}
.y63{bottom:540.474600px;}
.ya4{bottom:543.301500px;}
.y28{bottom:554.105700px;}
.yc{bottom:554.120400px;}
.y62{bottom:558.474600px;}
.ya3{bottom:559.501500px;}
.y53{bottom:559.736250px;}
.y27{bottom:572.105700px;}
.yb{bottom:572.120400px;}
.ya2{bottom:575.701500px;}
.y61{bottom:576.474600px;}
.y52{bottom:577.736250px;}
.y26{bottom:590.105700px;}
.ya{bottom:590.120400px;}
.ya1{bottom:591.901500px;}
.y60{bottom:594.474600px;}
.y51{bottom:595.736250px;}
.ya0{bottom:608.101500px;}
.y25{bottom:608.105700px;}
.y9{bottom:608.120400px;}
.y5f{bottom:612.474600px;}
.y50{bottom:613.736250px;}
.y9f{bottom:624.301500px;}
.y5e{bottom:630.474600px;}
.y4f{bottom:631.736250px;}
.y9e{bottom:640.501500px;}
.y5d{bottom:648.474600px;}
.y4e{bottom:649.736250px;}
.y9d{bottom:656.701500px;}
.y7{bottom:662.830800px;}
.y5c{bottom:666.474600px;}
.y4d{bottom:667.736250px;}
.y9c{bottom:672.901500px;}
.y5b{bottom:684.474600px;}
.y4c{bottom:685.736250px;}
.y9b{bottom:689.101500px;}
.y6{bottom:691.330800px;}
.y5a{bottom:702.474600px;}
.y4b{bottom:703.736250px;}
.yd8{bottom:704.791050px;}
.y9a{bottom:705.301500px;}
.ycc{bottom:705.314700px;}
.yd7{bottom:718.291050px;}
.y5{bottom:719.830800px;}
.y7d{bottom:720.474600px;}
.y99{bottom:721.501500px;}
.ycb{bottom:721.514700px;}
.y4a{bottom:721.736250px;}
.yd6{bottom:731.791050px;}
.y98{bottom:737.701500px;}
.yca{bottom:737.714700px;}
.y59{bottom:738.474600px;}
.y49{bottom:739.736250px;}
.yd5{bottom:749.746050px;}
.y97{bottom:753.901500px;}
.yc9{bottom:753.914700px;}
.y58{bottom:756.474600px;}
.y48{bottom:757.736250px;}
.y8{bottom:763.008600px;}
.yd4{bottom:763.246050px;}
.y96{bottom:770.101500px;}
.yc8{bottom:770.114700px;}
.yd3{bottom:772.291050px;}
.y57{bottom:774.474600px;}
.y47{bottom:775.736250px;}
.yd2{bottom:785.791050px;}
.y95{bottom:786.301500px;}
.yc7{bottom:786.314700px;}
.y56{bottom:792.474600px;}
.y46{bottom:793.736250px;}
.yd1{bottom:799.291050px;}
.y94{bottom:802.501500px;}
.yc6{bottom:802.514700px;}
.y55{bottom:810.474600px;}
.y45{bottom:811.736250px;}
.yd0{bottom:812.791050px;}
.y93{bottom:818.701500px;}
.yc5{bottom:818.714700px;}
.y4{bottom:828.474600px;}
.y44{bottom:829.736250px;}
.y92{bottom:834.901500px;}
.yc4{bottom:834.914550px;}
.y3{bottom:846.474600px;}
.ycf{bottom:848.791050px;}
.y91{bottom:851.101500px;}
.yc3{bottom:851.114700px;}
.y54{bottom:864.474600px;}
.y43{bottom:865.736250px;}
.yce{bottom:866.791050px;}
.y90{bottom:867.301500px;}
.yc2{bottom:867.314700px;}
.y2{bottom:882.474600px;}
.ycd{bottom:882.990900px;}
.y8f{bottom:883.501500px;}
.yc1{bottom:883.514700px;}
.y42{bottom:883.736250px;}
.y1{bottom:937.589700px;}
.ha{height:29.561836px;}
.h5{height:37.494141px;}
.h7{height:42.117188px;}
.h6{height:47.381836px;}
.h9{height:47.513672px;}
.h2{height:47.961914px;}
.h4{height:52.646484px;}
.h8{height:52.792969px;}
.h3{height:53.291016px;}
.h0{height:1007.700000px;}
.h1{height:1008.000000px;}
.w0{width:722.850000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.750000px;}
.x7{left:85.050000px;}
.x5{left:88.655850px;}
.xc{left:106.275000px;}
.x8{left:109.050000px;}
.xb{left:146.090250px;}
.x2{left:199.713750px;}
.x4{left:202.564500px;}
.xf{left:248.971650px;}
.xe{left:277.765350px;}
.x6{left:361.425000px;}
.x9{left:382.725000px;}
.x3{left:384.589950px;}
.xd{left:403.950000px;}
.xa{left:406.725000px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.839467pt;}
.v1{vertical-align:17.600000pt;}
.ls3f{letter-spacing:-0.746667pt;}
.ls2b{letter-spacing:-0.693333pt;}
.ls1b{letter-spacing:-0.586667pt;}
.ls42{letter-spacing:-0.576000pt;}
.ls19{letter-spacing:-0.533333pt;}
.ls44{letter-spacing:-0.528000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls41{letter-spacing:-0.288000pt;}
.ls1a{letter-spacing:-0.266667pt;}
.ls2a{letter-spacing:-0.213333pt;}
.ls4d{letter-spacing:-0.160000pt;}
.ls4b{letter-spacing:-0.144000pt;}
.ls4c{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.053333pt;}
.ls43{letter-spacing:-0.048000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls39{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.144000pt;}
.ls48{letter-spacing:0.160000pt;}
.ls49{letter-spacing:0.212800pt;}
.ls2{letter-spacing:0.213333pt;}
.ls45{letter-spacing:0.288000pt;}
.lsc{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.373333pt;}
.ls3c{letter-spacing:0.384000pt;}
.ls25{letter-spacing:0.426667pt;}
.ls3e{letter-spacing:0.432000pt;}
.ls24{letter-spacing:0.480000pt;}
.ls34{letter-spacing:0.528000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls46{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.693333pt;}
.lsb{letter-spacing:0.746667pt;}
.ls35{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.787733pt;}
.ls1e{letter-spacing:0.800000pt;}
.ls3d{letter-spacing:0.816000pt;}
.ls21{letter-spacing:0.853333pt;}
.ls23{letter-spacing:0.906667pt;}
.ls31{letter-spacing:0.912000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls3{letter-spacing:1.013333pt;}
.ls47{letter-spacing:1.110400pt;}
.ls11{letter-spacing:1.120000pt;}
.ls36{letter-spacing:1.152000pt;}
.ls37{letter-spacing:1.200000pt;}
.ls38{letter-spacing:1.344000pt;}
.ls2c{letter-spacing:1.386667pt;}
.ls40{letter-spacing:1.392000pt;}
.lsd{letter-spacing:1.440000pt;}
.ls4a{letter-spacing:1.493333pt;}
.ls14{letter-spacing:1.653333pt;}
.ls10{letter-spacing:1.706667pt;}
.ls15{letter-spacing:1.866667pt;}
.ls13{letter-spacing:1.920000pt;}
.ls26{letter-spacing:2.026667pt;}
.ls8{letter-spacing:2.080000pt;}
.ls2f{letter-spacing:2.133333pt;}
.ls33{letter-spacing:2.304000pt;}
.ls30{letter-spacing:2.448000pt;}
.ls3b{letter-spacing:2.544000pt;}
.ls1d{letter-spacing:2.560000pt;}
.ls9{letter-spacing:2.613333pt;}
.ls32{letter-spacing:2.640000pt;}
.ls2e{letter-spacing:2.720000pt;}
.ls1c{letter-spacing:3.093333pt;}
.ls2d{letter-spacing:3.306667pt;}
.ls22{letter-spacing:4.800000pt;}
.lse{letter-spacing:5.226667pt;}
.ls20{letter-spacing:5.280000pt;}
.ls0{letter-spacing:5.917867pt;}
.lsf{letter-spacing:5.973333pt;}
.ws2c{word-spacing:-18.613333pt;}
.ws4{word-spacing:-18.560000pt;}
.ws47{word-spacing:-16.640000pt;}
.ws2a{word-spacing:-15.893333pt;}
.ws29{word-spacing:-15.200000pt;}
.ws2{word-spacing:-14.293333pt;}
.ws2b{word-spacing:-14.133333pt;}
.ws6b{word-spacing:-14.080000pt;}
.ws3{word-spacing:-14.026667pt;}
.ws2d{word-spacing:-13.653333pt;}
.ws0{word-spacing:-13.333333pt;}
.ws6c{word-spacing:-13.066667pt;}
.ws2e{word-spacing:-12.640000pt;}
.ws48{word-spacing:-12.000000pt;}
.ws1{word-spacing:-7.733333pt;}
.ws6a{word-spacing:-6.960000pt;}
.ws21{word-spacing:-5.973333pt;}
.ws62{word-spacing:-5.664000pt;}
.ws3b{word-spacing:-5.280000pt;}
.ws1f{word-spacing:-5.226667pt;}
.ws3e{word-spacing:-4.800000pt;}
.ws43{word-spacing:-3.573333pt;}
.ws12{word-spacing:-3.360000pt;}
.ws38{word-spacing:-3.306667pt;}
.ws2f{word-spacing:-3.093333pt;}
.ws37{word-spacing:-3.040000pt;}
.ws5a{word-spacing:-3.024000pt;}
.ws58{word-spacing:-2.976000pt;}
.ws78{word-spacing:-2.826667pt;}
.ws53{word-spacing:-2.736000pt;}
.ws39{word-spacing:-2.560000pt;}
.ws57{word-spacing:-2.496000pt;}
.ws4b{word-spacing:-2.448000pt;}
.ws4e{word-spacing:-2.304000pt;}
.ws7a{word-spacing:-2.186667pt;}
.ws49{word-spacing:-2.133333pt;}
.ws11{word-spacing:-2.080000pt;}
.ws45{word-spacing:-2.026667pt;}
.ws31{word-spacing:-1.973333pt;}
.ws26{word-spacing:-1.920000pt;}
.ws67{word-spacing:-1.872000pt;}
.ws28{word-spacing:-1.866667pt;}
.ws33{word-spacing:-1.706667pt;}
.ws52{word-spacing:-1.632000pt;}
.ws7e{word-spacing:-1.493333pt;}
.ws1e{word-spacing:-1.440000pt;}
.ws55{word-spacing:-1.392000pt;}
.ws46{word-spacing:-1.386667pt;}
.ws6e{word-spacing:-1.344000pt;}
.ws68{word-spacing:-1.200000pt;}
.ws51{word-spacing:-1.152000pt;}
.ws1a{word-spacing:-1.066667pt;}
.ws10{word-spacing:-1.013333pt;}
.ws7f{word-spacing:-0.960000pt;}
.ws5d{word-spacing:-0.912000pt;}
.ws3f{word-spacing:-0.906667pt;}
.ws59{word-spacing:-0.864000pt;}
.ws65{word-spacing:-0.816000pt;}
.ws3a{word-spacing:-0.800000pt;}
.ws50{word-spacing:-0.768000pt;}
.ws18{word-spacing:-0.746667pt;}
.ws73{word-spacing:-0.720000pt;}
.ws14{word-spacing:-0.693333pt;}
.ws32{word-spacing:-0.586667pt;}
.ws75{word-spacing:-0.576000pt;}
.ws22{word-spacing:-0.533333pt;}
.ws41{word-spacing:-0.480000pt;}
.ws69{word-spacing:-0.432000pt;}
.ws7b{word-spacing:-0.426667pt;}
.ws54{word-spacing:-0.384000pt;}
.ws17{word-spacing:-0.373333pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws6f{word-spacing:-0.288000pt;}
.wse{word-spacing:-0.213333pt;}
.ws16{word-spacing:-0.160000pt;}
.ws34{word-spacing:-0.106667pt;}
.ws6d{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.053333pt;}
.ws5{word-spacing:0.000000pt;}
.ws72{word-spacing:0.048000pt;}
.ws8{word-spacing:0.053333pt;}
.ws71{word-spacing:0.144000pt;}
.ws79{word-spacing:0.160000pt;}
.ws6{word-spacing:0.213333pt;}
.ws13{word-spacing:0.266667pt;}
.ws35{word-spacing:0.320000pt;}
.ws36{word-spacing:0.426667pt;}
.ws7{word-spacing:0.480000pt;}
.ws9{word-spacing:0.533333pt;}
.ws23{word-spacing:0.586667pt;}
.ws42{word-spacing:0.693333pt;}
.ws30{word-spacing:0.746667pt;}
.ws5c{word-spacing:0.864000pt;}
.ws27{word-spacing:1.066667pt;}
.ws44{word-spacing:1.386667pt;}
.ws5e{word-spacing:1.392000pt;}
.ws70{word-spacing:1.440000pt;}
.ws77{word-spacing:1.706667pt;}
.ws56{word-spacing:1.776000pt;}
.ws4f{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.240000pt;}
.ws76{word-spacing:2.400000pt;}
.wsd{word-spacing:2.720000pt;}
.ws5b{word-spacing:2.928000pt;}
.wsf{word-spacing:3.200000pt;}
.ws74{word-spacing:3.408000pt;}
.ws15{word-spacing:3.413333pt;}
.ws24{word-spacing:3.733333pt;}
.ws7c{word-spacing:3.786667pt;}
.ws61{word-spacing:4.416000pt;}
.ws19{word-spacing:4.533333pt;}
.ws7d{word-spacing:4.586667pt;}
.ws5f{word-spacing:4.704000pt;}
.ws3d{word-spacing:4.800000pt;}
.ws63{word-spacing:4.848000pt;}
.ws64{word-spacing:5.136000pt;}
.ws1b{word-spacing:5.333333pt;}
.ws4c{word-spacing:5.424000pt;}
.ws60{word-spacing:5.472000pt;}
.ws66{word-spacing:5.760000pt;}
.wsa{word-spacing:5.920000pt;}
.ws4d{word-spacing:6.000000pt;}
.ws4a{word-spacing:6.293333pt;}
.ws40{word-spacing:6.453333pt;}
.ws25{word-spacing:6.613333pt;}
.wsb{word-spacing:6.666667pt;}
.ws20{word-spacing:10.453333pt;}
.ws3c{word-spacing:10.613333pt;}
._11{margin-left:-84.000000pt;}
._16{margin-left:-7.285867pt;}
._5{margin-left:-6.192000pt;}
._1{margin-left:-4.800000pt;}
._6{margin-left:-3.840000pt;}
._2{margin-left:-2.933333pt;}
._4{margin-left:-2.016000pt;}
._3{margin-left:-1.020800pt;}
._b{width:0.936533pt;}
._10{width:2.069333pt;}
._9{width:3.235200pt;}
._8{width:4.960000pt;}
._7{width:5.890133pt;}
._a{width:6.880000pt;}
._c{width:7.946667pt;}
._f{width:9.226667pt;}
._13{width:10.506667pt;}
._15{width:11.573333pt;}
._14{width:14.453333pt;}
._d{width:15.666667pt;}
._e{width:17.920000pt;}
._0{width:1243.794133pt;}
._12{width:1315.816533pt;}
.fs4{font-size:27.840000pt;}
.fs2{font-size:30.933333pt;}
.fs3{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:76.538400pt;}
.y24{bottom:76.551467pt;}
.y7c{bottom:78.564400pt;}
.yc0{bottom:79.734667pt;}
.y8e{bottom:80.155200pt;}
.y7b{bottom:80.421867pt;}
.ye9{bottom:86.959733pt;}
.y40{bottom:92.538400pt;}
.y23{bottom:92.551467pt;}
.ybf{bottom:94.134667pt;}
.y8d{bottom:94.555200pt;}
.y7a{bottom:96.421867pt;}
.ye8{bottom:103.759733pt;}
.ybe{bottom:108.534667pt;}
.y3f{bottom:108.538400pt;}
.y22{bottom:108.551467pt;}
.y8c{bottom:108.955200pt;}
.y79{bottom:112.421867pt;}
.ye7{bottom:120.559733pt;}
.ybd{bottom:122.934667pt;}
.y8b{bottom:123.355200pt;}
.y3e{bottom:124.538400pt;}
.y21{bottom:124.551467pt;}
.y78{bottom:128.421867pt;}
.ybc{bottom:137.334667pt;}
.ye6{bottom:137.359733pt;}
.y8a{bottom:137.755200pt;}
.y3d{bottom:140.538400pt;}
.y20{bottom:140.551467pt;}
.y77{bottom:144.421867pt;}
.ybb{bottom:151.734667pt;}
.y89{bottom:152.155200pt;}
.ye5{bottom:154.159733pt;}
.y3c{bottom:156.538400pt;}
.y1f{bottom:156.551467pt;}
.y76{bottom:160.421867pt;}
.yba{bottom:166.134667pt;}
.y88{bottom:166.555200pt;}
.ye4{bottom:170.959733pt;}
.y3b{bottom:172.538400pt;}
.y1e{bottom:172.551467pt;}
.y75{bottom:176.421867pt;}
.yb9{bottom:180.534667pt;}
.y87{bottom:180.955200pt;}
.ye3{bottom:187.759733pt;}
.y3a{bottom:188.538400pt;}
.y1d{bottom:188.551467pt;}
.y74{bottom:192.421867pt;}
.yb8{bottom:194.934667pt;}
.y86{bottom:195.355200pt;}
.y39{bottom:204.538400pt;}
.y1c{bottom:204.551467pt;}
.ye2{bottom:204.559733pt;}
.y73{bottom:208.421867pt;}
.yb7{bottom:209.334667pt;}
.y85{bottom:209.755200pt;}
.y38{bottom:220.538400pt;}
.y1b{bottom:220.551467pt;}
.ye1{bottom:221.359733pt;}
.yb6{bottom:223.734667pt;}
.y84{bottom:224.155200pt;}
.y72{bottom:224.421867pt;}
.y37{bottom:236.538400pt;}
.y1a{bottom:236.551467pt;}
.yb5{bottom:238.134667pt;}
.ye0{bottom:238.159733pt;}
.y83{bottom:238.555200pt;}
.y71{bottom:240.421867pt;}
.yb4{bottom:252.534667pt;}
.y36{bottom:252.538400pt;}
.y19{bottom:252.551467pt;}
.y82{bottom:252.955200pt;}
.y70{bottom:256.421867pt;}
.yb3{bottom:266.934667pt;}
.y81{bottom:267.355200pt;}
.y35{bottom:268.538400pt;}
.y18{bottom:268.551467pt;}
.y6f{bottom:272.421867pt;}
.yb2{bottom:281.334667pt;}
.y34{bottom:284.538400pt;}
.y17{bottom:284.551467pt;}
.ydf{bottom:284.824000pt;}
.y6e{bottom:288.421867pt;}
.yb1{bottom:295.734667pt;}
.y80{bottom:297.755200pt;}
.y33{bottom:300.538400pt;}
.y16{bottom:300.551467pt;}
.yb0{bottom:310.134667pt;}
.yde{bottom:310.157333pt;}
.y32{bottom:316.538400pt;}
.y15{bottom:316.551467pt;}
.y6d{bottom:320.421867pt;}
.yaf{bottom:324.534667pt;}
.y31{bottom:332.538400pt;}
.ydd{bottom:335.490667pt;}
.y6c{bottom:336.421867pt;}
.yae{bottom:338.934667pt;}
.y7f{bottom:345.755200pt;}
.y30{bottom:348.538400pt;}
.y14{bottom:348.551467pt;}
.y6b{bottom:352.421867pt;}
.yad{bottom:353.334667pt;}
.y7e{bottom:358.421867pt;}
.y2f{bottom:364.538400pt;}
.y13{bottom:364.551467pt;}
.yac{bottom:367.734667pt;}
.y6a{bottom:368.421867pt;}
.ydc{bottom:376.647600pt;}
.y2e{bottom:380.538400pt;}
.y12{bottom:380.551467pt;}
.yab{bottom:382.134667pt;}
.y69{bottom:384.421867pt;}
.yaa{bottom:396.534667pt;}
.y11{bottom:396.551467pt;}
.y68{bottom:400.421867pt;}
.ya9{bottom:410.934667pt;}
.y2d{bottom:412.538400pt;}
.y10{bottom:412.551467pt;}
.y67{bottom:416.421867pt;}
.ydb{bottom:421.952000pt;}
.ya8{bottom:425.334667pt;}
.y2c{bottom:428.538400pt;}
.yf{bottom:428.551467pt;}
.y66{bottom:432.421867pt;}
.ya7{bottom:439.734667pt;}
.y2b{bottom:444.538400pt;}
.ye{bottom:444.551467pt;}
.y65{bottom:448.421867pt;}
.ya6{bottom:454.134667pt;}
.yda{bottom:460.352000pt;}
.y2a{bottom:460.538400pt;}
.yd{bottom:460.551467pt;}
.y64{bottom:464.421867pt;}
.ya5{bottom:468.534667pt;}
.yd9{bottom:476.352000pt;}
.y29{bottom:476.538400pt;}
.y63{bottom:480.421867pt;}
.ya4{bottom:482.934667pt;}
.y28{bottom:492.538400pt;}
.yc{bottom:492.551467pt;}
.y62{bottom:496.421867pt;}
.ya3{bottom:497.334667pt;}
.y53{bottom:497.543333pt;}
.y27{bottom:508.538400pt;}
.yb{bottom:508.551467pt;}
.ya2{bottom:511.734667pt;}
.y61{bottom:512.421867pt;}
.y52{bottom:513.543333pt;}
.y26{bottom:524.538400pt;}
.ya{bottom:524.551467pt;}
.ya1{bottom:526.134667pt;}
.y60{bottom:528.421867pt;}
.y51{bottom:529.543333pt;}
.ya0{bottom:540.534667pt;}
.y25{bottom:540.538400pt;}
.y9{bottom:540.551467pt;}
.y5f{bottom:544.421867pt;}
.y50{bottom:545.543333pt;}
.y9f{bottom:554.934667pt;}
.y5e{bottom:560.421867pt;}
.y4f{bottom:561.543333pt;}
.y9e{bottom:569.334667pt;}
.y5d{bottom:576.421867pt;}
.y4e{bottom:577.543333pt;}
.y9d{bottom:583.734667pt;}
.y7{bottom:589.182933pt;}
.y5c{bottom:592.421867pt;}
.y4d{bottom:593.543333pt;}
.y9c{bottom:598.134667pt;}
.y5b{bottom:608.421867pt;}
.y4c{bottom:609.543333pt;}
.y9b{bottom:612.534667pt;}
.y6{bottom:614.516267pt;}
.y5a{bottom:624.421867pt;}
.y4b{bottom:625.543333pt;}
.yd8{bottom:626.480933pt;}
.y9a{bottom:626.934667pt;}
.ycc{bottom:626.946400pt;}
.yd7{bottom:638.480933pt;}
.y5{bottom:639.849600pt;}
.y7d{bottom:640.421867pt;}
.y99{bottom:641.334667pt;}
.ycb{bottom:641.346400pt;}
.y4a{bottom:641.543333pt;}
.yd6{bottom:650.480933pt;}
.y98{bottom:655.734667pt;}
.yca{bottom:655.746400pt;}
.y59{bottom:656.421867pt;}
.y49{bottom:657.543333pt;}
.yd5{bottom:666.440933pt;}
.y97{bottom:670.134667pt;}
.yc9{bottom:670.146400pt;}
.y58{bottom:672.421867pt;}
.y48{bottom:673.543333pt;}
.y8{bottom:678.229867pt;}
.yd4{bottom:678.440933pt;}
.y96{bottom:684.534667pt;}
.yc8{bottom:684.546400pt;}
.yd3{bottom:686.480933pt;}
.y57{bottom:688.421867pt;}
.y47{bottom:689.543333pt;}
.yd2{bottom:698.480933pt;}
.y95{bottom:698.934667pt;}
.yc7{bottom:698.946400pt;}
.y56{bottom:704.421867pt;}
.y46{bottom:705.543333pt;}
.yd1{bottom:710.480933pt;}
.y94{bottom:713.334667pt;}
.yc6{bottom:713.346400pt;}
.y55{bottom:720.421867pt;}
.y45{bottom:721.543333pt;}
.yd0{bottom:722.480933pt;}
.y93{bottom:727.734667pt;}
.yc5{bottom:727.746400pt;}
.y4{bottom:736.421867pt;}
.y44{bottom:737.543333pt;}
.y92{bottom:742.134667pt;}
.yc4{bottom:742.146267pt;}
.y3{bottom:752.421867pt;}
.ycf{bottom:754.480933pt;}
.y91{bottom:756.534667pt;}
.yc3{bottom:756.546400pt;}
.y54{bottom:768.421867pt;}
.y43{bottom:769.543333pt;}
.yce{bottom:770.480933pt;}
.y90{bottom:770.934667pt;}
.yc2{bottom:770.946400pt;}
.y2{bottom:784.421867pt;}
.ycd{bottom:784.880800pt;}
.y8f{bottom:785.334667pt;}
.yc1{bottom:785.346400pt;}
.y42{bottom:785.543333pt;}
.y1{bottom:833.413067pt;}
.ha{height:26.277188pt;}
.h5{height:33.328125pt;}
.h7{height:37.437500pt;}
.h6{height:42.117188pt;}
.h9{height:42.234375pt;}
.h2{height:42.632812pt;}
.h4{height:46.796875pt;}
.h8{height:46.927083pt;}
.h3{height:47.369792pt;}
.h0{height:895.733333pt;}
.h1{height:896.000000pt;}
.w0{width:642.533333pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.666667pt;}
.x7{left:75.600000pt;}
.x5{left:78.805200pt;}
.xc{left:94.466667pt;}
.x8{left:96.933333pt;}
.xb{left:129.858000pt;}
.x2{left:177.523333pt;}
.x4{left:180.057333pt;}
.xf{left:221.308133pt;}
.xe{left:246.902533pt;}
.x6{left:321.266667pt;}
.x9{left:340.200000pt;}
.x3{left:341.857733pt;}
.xd{left:359.066667pt;}
.xa{left:361.533333pt;}
}




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