
    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_64564b354805b2a1e05aed6f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_d8aa2d8fdb38ac4f734865ae.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_07d2f84df61715fcc6f0303a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e41bd56f1f09904944913a11.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.886000px;}
.ls29{letter-spacing:-0.990000px;}
.ls1d{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.726000px;}
.lsc{letter-spacing:-0.594000px;}
.lsa{letter-spacing:-0.528000px;}
.ls15{letter-spacing:-0.462000px;}
.ls9{letter-spacing:-0.396000px;}
.ls3d{letter-spacing:-0.330000px;}
.ls21{letter-spacing:-0.264000px;}
.ls1a{letter-spacing:-0.210000px;}
.lsf{letter-spacing:-0.198000px;}
.lse{letter-spacing:-0.132000px;}
.ls6{letter-spacing:-0.066000px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.132000px;}
.ls2c{letter-spacing:0.151800px;}
.ls44{letter-spacing:0.165000px;}
.ls31{letter-spacing:0.178200px;}
.ls2b{letter-spacing:0.184800px;}
.ls16{letter-spacing:0.191400px;}
.ls0{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.211200px;}
.ls17{letter-spacing:0.217800px;}
.ls20{letter-spacing:0.231000px;}
.ls37{letter-spacing:0.237600px;}
.ls1{letter-spacing:0.244200px;}
.ls2f{letter-spacing:0.250800px;}
.ls30{letter-spacing:0.257400px;}
.ls2{letter-spacing:0.264000px;}
.ls1f{letter-spacing:0.270600px;}
.ls1e{letter-spacing:0.277200px;}
.ls3c{letter-spacing:0.283800px;}
.ls19{letter-spacing:0.290400px;}
.ls4c{letter-spacing:0.297000px;}
.ls47{letter-spacing:0.303600px;}
.ls36{letter-spacing:0.310200px;}
.ls1b{letter-spacing:0.316800px;}
.ls3a{letter-spacing:0.323400px;}
.ls48{letter-spacing:0.330000px;}
.ls11{letter-spacing:0.336600px;}
.ls26{letter-spacing:0.343200px;}
.ls27{letter-spacing:0.349800px;}
.ls45{letter-spacing:0.356400px;}
.ls10{letter-spacing:0.376200px;}
.ls25{letter-spacing:0.382800px;}
.ls22{letter-spacing:0.389400px;}
.ls4d{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.409200px;}
.ls1c{letter-spacing:0.415800px;}
.ls13{letter-spacing:0.422400px;}
.ls24{letter-spacing:0.468600px;}
.ls50{letter-spacing:0.508200px;}
.ls38{letter-spacing:0.580800px;}
.ls34{letter-spacing:0.627000px;}
.ls3f{letter-spacing:0.640200px;}
.ls4e{letter-spacing:0.660000px;}
.ls3e{letter-spacing:0.679800px;}
.ls12{letter-spacing:0.706200px;}
.ls35{letter-spacing:0.772200px;}
.ls33{letter-spacing:1.089000px;}
.ls39{letter-spacing:1.280400px;}
.ls23{letter-spacing:1.683000px;}
.ls2e{letter-spacing:1.696200px;}
.ls42{letter-spacing:1.914000px;}
.ls40{letter-spacing:2.461800px;}
.ls18{letter-spacing:2.508000px;}
.ls41{letter-spacing:2.567400px;}
.ls51{letter-spacing:3.148200px;}
.ls46{letter-spacing:3.194400px;}
.ls8{letter-spacing:3.696000px;}
.ls2a{letter-spacing:4.290000px;}
.ls32{letter-spacing:4.884000px;}
.ls43{letter-spacing:5.101800px;}
.ls28{letter-spacing:5.128200px;}
.ls2d{letter-spacing:5.478000px;}
.ls4f{letter-spacing:6.289800px;}
.ls3b{letter-spacing:10.296000px;}
.ls4a{letter-spacing:11.035200px;}
.ls49{letter-spacing:21.714000px;}
.ls4b{letter-spacing:59.028000px;}
.ls3{letter-spacing:59.070000px;}
.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;}
}
.ws4f{word-spacing:-15.180000px;}
.ws26{word-spacing:-15.114000px;}
.ws5e{word-spacing:-15.081000px;}
.ws11{word-spacing:-15.048000px;}
.ws14{word-spacing:-14.982000px;}
.ws10{word-spacing:-14.916000px;}
.ws57{word-spacing:-14.850000px;}
.ws1f{word-spacing:-14.784000px;}
.ws20{word-spacing:-14.718000px;}
.ws34{word-spacing:-14.652000px;}
.ws50{word-spacing:-14.586000px;}
.ws12{word-spacing:-14.520000px;}
.ws27{word-spacing:-14.454000px;}
.ws13{word-spacing:-14.388000px;}
.ws15{word-spacing:-14.322000px;}
.ws0{word-spacing:-14.190000px;}
.ws30{word-spacing:-14.124000px;}
.ws2b{word-spacing:-9.282000px;}
.ws5b{word-spacing:-4.224000px;}
.ws2e{word-spacing:-3.696000px;}
.ws1e{word-spacing:-3.630000px;}
.ws7{word-spacing:-3.036000px;}
.ws6{word-spacing:-2.904000px;}
.ws17{word-spacing:-2.442000px;}
.ws9{word-spacing:-1.848000px;}
.wsf{word-spacing:-1.254000px;}
.ws49{word-spacing:-1.122000px;}
.ws2c{word-spacing:-0.990000px;}
.ws2a{word-spacing:-0.726000px;}
.ws1c{word-spacing:-0.660000px;}
.ws39{word-spacing:-0.528000px;}
.ws16{word-spacing:-0.198000px;}
.ws1{word-spacing:-0.132000px;}
.wsb{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.066000px;}
.ws4{word-spacing:0.132000px;}
.ws3e{word-spacing:0.198000px;}
.ws28{word-spacing:0.264000px;}
.ws37{word-spacing:0.462000px;}
.wsa{word-spacing:0.528000px;}
.ws51{word-spacing:0.660000px;}
.wsc{word-spacing:1.122000px;}
.ws4d{word-spacing:1.254000px;}
.ws61{word-spacing:1.386000px;}
.ws40{word-spacing:1.650000px;}
.ws18{word-spacing:1.782000px;}
.ws4e{word-spacing:1.914000px;}
.ws24{word-spacing:2.376000px;}
.ws54{word-spacing:2.442000px;}
.ws63{word-spacing:2.508000px;}
.ws4c{word-spacing:2.640000px;}
.wse{word-spacing:2.970000px;}
.ws53{word-spacing:3.102000px;}
.ws47{word-spacing:3.300000px;}
.ws5{word-spacing:3.564000px;}
.ws45{word-spacing:3.696000px;}
.ws3f{word-spacing:4.092000px;}
.ws23{word-spacing:4.158000px;}
.ws52{word-spacing:4.224000px;}
.ws43{word-spacing:4.422000px;}
.ws1d{word-spacing:4.752000px;}
.ws5a{word-spacing:5.016000px;}
.ws8{word-spacing:5.346000px;}
.ws68{word-spacing:5.412000px;}
.ws1b{word-spacing:5.940000px;}
.ws46{word-spacing:6.072000px;}
.ws21{word-spacing:6.534000px;}
.ws32{word-spacing:7.128000px;}
.ws64{word-spacing:7.260000px;}
.ws33{word-spacing:7.458000px;}
.wsd{word-spacing:7.722000px;}
.ws25{word-spacing:7.788000px;}
.ws3c{word-spacing:8.382000px;}
.ws35{word-spacing:8.976000px;}
.ws48{word-spacing:9.108000px;}
.ws36{word-spacing:9.570000px;}
.ws3d{word-spacing:10.164000px;}
.ws5c{word-spacing:10.428000px;}
.ws5d{word-spacing:10.494000px;}
.ws60{word-spacing:10.692000px;}
.ws22{word-spacing:10.758000px;}
.ws3a{word-spacing:11.352000px;}
.ws2f{word-spacing:11.946000px;}
.ws1a{word-spacing:12.540000px;}
.ws19{word-spacing:13.134000px;}
.ws38{word-spacing:13.728000px;}
.ws2d{word-spacing:14.322000px;}
.ws55{word-spacing:14.982000px;}
.ws4a{word-spacing:15.576000px;}
.ws42{word-spacing:16.170000px;}
.ws29{word-spacing:16.302000px;}
.ws31{word-spacing:16.764000px;}
.ws58{word-spacing:17.358000px;}
.ws62{word-spacing:17.952000px;}
.ws59{word-spacing:18.546000px;}
.ws4b{word-spacing:19.140000px;}
.ws65{word-spacing:20.328000px;}
.ws44{word-spacing:20.922000px;}
.ws56{word-spacing:21.582000px;}
.ws66{word-spacing:22.176000px;}
.ws3b{word-spacing:23.958000px;}
.ws67{word-spacing:24.552000px;}
.ws5f{word-spacing:26.334000px;}
.ws41{word-spacing:26.928000px;}
._5{margin-left:-10.612800px;}
._3{margin-left:-3.168000px;}
._1{margin-left:-1.438800px;}
._0{width:1.247400px;}
._4{width:2.494800px;}
._8{width:4.494600px;}
._7{width:5.610000px;}
._6{width:8.118000px;}
._9{width:10.579800px;}
._2{width:849.090000px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:42.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.yae{bottom:265.350000px;}
.y70{bottom:298.650000px;}
.yad{bottom:299.100000px;}
.yac{bottom:320.850000px;}
.y111{bottom:321.426000px;}
.y6f{bottom:332.400000px;}
.ye8{bottom:343.050000px;}
.yab{bottom:343.500000px;}
.y103{bottom:351.000000px;}
.y42{bottom:351.900000px;}
.yd3{bottom:352.668000px;}
.y6e{bottom:354.900000px;}
.y110{bottom:355.168500px;}
.y98{bottom:355.800000px;}
.yb5{bottom:355.927500px;}
.y107{bottom:363.912000px;}
.yaa{bottom:365.250000px;}
.y102{bottom:373.500000px;}
.y62{bottom:375.000000px;}
.ydd{bottom:375.318000px;}
.ye7{bottom:376.500000px;}
.y10f{bottom:376.767000px;}
.y6d{bottom:377.550000px;}
.y41{bottom:385.500000px;}
.yd2{bottom:386.410500px;}
.ya9{bottom:387.900000px;}
.y97{bottom:389.670000px;}
.y101{bottom:396.150000px;}
.y106{bottom:397.654500px;}
.ye6{bottom:398.850000px;}
.y6c{bottom:399.300000px;}
.y10e{bottom:399.421500px;}
.y40{bottom:408.150000px;}
.y61{bottom:408.750000px;}
.ydc{bottom:409.060500px;}
.ya8{bottom:409.500000px;}
.y100{bottom:417.900000px;}
.y78{bottom:418.500000px;}
.y105{bottom:419.253000px;}
.yd1{bottom:420.153000px;}
.ye5{bottom:420.300000px;}
.yc3{bottom:421.168500px;}
.y96{bottom:424.320000px;}
.yc0{bottom:429.900000px;}
.y60{bottom:430.350000px;}
.y3f{bottom:430.920000px;}
.ya7{bottom:432.150000px;}
.y6b{bottom:434.071500px;}
.yff{bottom:440.671500px;}
.y4a{bottom:441.000000px;}
.yd0{bottom:441.900000px;}
.ye4{bottom:442.650000px;}
.y88{bottom:442.800000px;}
.ydb{bottom:442.803000px;}
.y10d{bottom:442.915500px;}
.yd9{bottom:450.768000px;}
.y10b{bottom:451.350000px;}
.y77{bottom:452.100000px;}
.y5f{bottom:453.000000px;}
.ya6{bottom:453.900000px;}
.yc2{bottom:454.911000px;}
.y95{bottom:458.062500px;}
.ybf{bottom:463.650000px;}
.ye3{bottom:464.100000px;}
.yda{bottom:464.550000px;}
.ya2{bottom:464.662500px;}
.y3e{bottom:465.570000px;}
.y6a{bottom:467.814000px;}
.y113{bottom:473.415000px;}
.ycf{bottom:473.418000px;}
.y7d{bottom:474.300000px;}
.y29{bottom:474.750000px;}
.yfe{bottom:475.321500px;}
.y5e{bottom:475.650000px;}
.y87{bottom:476.658000px;}
.y10c{bottom:477.565500px;}
.yd8{bottom:484.510500px;}
.y10a{bottom:484.950000px;}
.ybb{bottom:485.400000px;}
.yde{bottom:486.300000px;}
.yed{bottom:486.307500px;}
.yb7{bottom:486.409500px;}
.ye2{bottom:486.600000px;}
.y104{bottom:486.750000px;}
.yc1{bottom:489.561000px;}
.y94{bottom:491.805000px;}
.y76{bottom:496.500000px;}
.y49{bottom:497.400000px;}
.ya1{bottom:498.405000px;}
.y3d{bottom:499.312500px;}
.y69{bottom:501.556500px;}
.y7a{bottom:507.150000px;}
.y112{bottom:507.157500px;}
.yce{bottom:507.160500px;}
.y109{bottom:507.600000px;}
.y81{bottom:508.050000px;}
.y7c{bottom:508.156500px;}
.y28{bottom:508.500000px;}
.yfd{bottom:509.064000px;}
.y86{bottom:511.308000px;}
.y93{bottom:513.552000px;}
.yd7{bottom:518.253000px;}
.y75{bottom:519.150000px;}
.y48{bottom:520.050000px;}
.y5d{bottom:520.123500px;}
.yb6{bottom:520.152000px;}
.ybe{bottom:521.059500px;}
.y68{bottom:523.303500px;}
.y108{bottom:529.350000px;}
.yc8{bottom:529.903500px;}
.yec{bottom:529.950000px;}
.yf1{bottom:530.250000px;}
.y27{bottom:531.150000px;}
.y3c{bottom:533.055000px;}
.y92{bottom:535.299000px;}
.yd6{bottom:540.000000px;}
.y74{bottom:540.900000px;}
.ycd{bottom:540.903000px;}
.y47{bottom:541.800000px;}
.y80{bottom:541.899000px;}
.y7b{bottom:542.806500px;}
.y67{bottom:545.050500px;}
.ya3{bottom:551.550000px;}
.y16{bottom:551.650500px;}
.yf0{bottom:552.000000px;}
.ye1{bottom:552.007500px;}
.y26{bottom:552.900000px;}
.yfa{bottom:553.800000px;}
.yc6{bottom:553.894500px;}
.y5c{bottom:554.773500px;}
.y3b{bottom:554.802000px;}
.y91{bottom:557.046000px;}
.y79{bottom:562.650000px;}
.ybc{bottom:563.400000px;}
.y73{bottom:563.497500px;}
.yb9{bottom:563.550000px;}
.yfc{bottom:564.405000px;}
.y66{bottom:566.797500px;}
.yd5{bottom:573.750000px;}
.yef{bottom:574.650000px;}
.yf9{bottom:575.400000px;}
.y25{bottom:575.493000px;}
.y46{bottom:576.400500px;}
.y85{bottom:578.793000px;}
.ya0{bottom:582.900000px;}
.y2e{bottom:584.400000px;}
.yeb{bottom:584.850000px;}
.yba{bottom:585.150000px;}
.y15{bottom:585.244500px;}
.ye0{bottom:585.750000px;}
.yfb{bottom:586.152000px;}
.y5b{bottom:588.367500px;}
.y3a{bottom:588.396000px;}
.y9d{bottom:594.900000px;}
.yc7{bottom:594.996000px;}
.ycc{bottom:596.250000px;}
.yd4{bottom:596.400000px;}
.yea{bottom:596.850000px;}
.yee{bottom:597.150000px;}
.yb8{bottom:597.240000px;}
.y72{bottom:598.147500px;}
.y65{bottom:600.391500px;}
.yf5{bottom:606.150000px;}
.yf8{bottom:606.900000px;}
.ydf{bottom:607.200000px;}
.yf6{bottom:607.899000px;}
.y24{bottom:610.143000px;}
.y9b{bottom:616.650000px;}
.y9f{bottom:616.743000px;}
.y2d{bottom:618.000000px;}
.yca{bottom:618.900000px;}
.ycb{bottom:618.987000px;}
.ye9{bottom:619.200000px;}
.y14{bottom:619.894500px;}
.y5a{bottom:622.110000px;}
.y39{bottom:622.138500px;}
.yc5{bottom:628.650000px;}
.y33{bottom:628.738500px;}
.y71{bottom:631.890000px;}
.y64{bottom:634.134000px;}
.yf4{bottom:639.750000px;}
.y2c{bottom:640.650000px;}
.yf7{bottom:640.734000px;}
.yc9{bottom:641.641500px;}
.y59{bottom:643.857000px;}
.y23{bottom:643.885500px;}
.yaf{bottom:650.400000px;}
.y1b{bottom:650.485500px;}
.y9e{bottom:651.393000px;}
.y13{bottom:653.637000px;}
.y63{bottom:655.881000px;}
.yf3{bottom:661.500000px;}
.y2b{bottom:662.400000px;}
.y32{bottom:662.481000px;}
.y9c{bottom:663.388500px;}
.y58{bottom:665.604000px;}
.y38{bottom:665.632500px;}
.yb4{bottom:667.876500px;}
.y8c{bottom:672.150000px;}
.ya5{bottom:672.232500px;}
.ybd{bottom:675.384000px;}
.y22{bottom:677.628000px;}
.yc4{bottom:684.150000px;}
.y1a{bottom:684.228000px;}
.y9a{bottom:685.135500px;}
.y57{bottom:687.351000px;}
.y12{bottom:687.379500px;}
.y84{bottom:689.623500px;}
.y90{bottom:693.900000px;}
.y2a{bottom:697.131000px;}
.y21{bottom:699.375000px;}
.yf2{bottom:705.900000px;}
.y8b{bottom:705.975000px;}
.y56{bottom:709.098000px;}
.y11{bottom:709.126500px;}
.y83{bottom:711.370500px;}
.y19{bottom:718.878000px;}
.y20{bottom:721.122000px;}
.y8f{bottom:727.722000px;}
.y55{bottom:730.845000px;}
.y10{bottom:730.873500px;}
.y82{bottom:733.117500px;}
.y8a{bottom:740.625000px;}
.y1f{bottom:742.869000px;}
.yb3{bottom:745.113000px;}
.yf{bottom:752.620500px;}
.y45{bottom:754.864500px;}
.y8e{bottom:762.372000px;}
.y54{bottom:764.587500px;}
.y1e{bottom:764.616000px;}
.yb2{bottom:766.860000px;}
.y89{bottom:774.367500px;}
.y44{bottom:776.611500px;}
.ye{bottom:786.363000px;}
.yb1{bottom:788.607000px;}
.y8d{bottom:796.114500px;}
.y53{bottom:798.330000px;}
.y43{bottom:798.358500px;}
.y18{bottom:808.110000px;}
.yb0{bottom:810.354000px;}
.y99{bottom:817.861500px;}
.y52{bottom:820.077000px;}
.yd{bottom:820.105500px;}
.y31{bottom:829.857000px;}
.y7f{bottom:832.101000px;}
.y51{bottom:841.824000px;}
.yc{bottom:841.852500px;}
.y30{bottom:851.455500px;}
.y7e{bottom:853.848000px;}
.y50{bottom:863.422500px;}
.yb{bottom:863.451000px;}
.y37{bottom:873.202500px;}
.y17{bottom:875.446500px;}
.y4f{bottom:885.169500px;}
.y2f{bottom:885.198000px;}
.ya4{bottom:894.949500px;}
.ya{bottom:897.193500px;}
.y4e{bottom:906.916500px;}
.y36{bottom:906.945000px;}
.y9{bottom:918.940500px;}
.y4d{bottom:928.663500px;}
.y35{bottom:928.692000px;}
.y8{bottom:940.687500px;}
.y34{bottom:950.439000px;}
.y4c{bottom:962.406000px;}
.y7{bottom:962.434500px;}
.y4b{bottom:984.153000px;}
.y6{bottom:984.181500px;}
.y5{bottom:1005.928500px;}
.y1d{bottom:1017.924000px;}
.y4{bottom:1039.671000px;}
.y1c{bottom:1051.666500px;}
.y3{bottom:1073.413500px;}
.y2{bottom:1107.156000px;}
.y1{bottom:1140.750000px;}
.h2{height:45.117188px;}
.h3{height:52.335938px;}
.h4{height:57.190688px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.350000px;}
.x2{left:133.344000px;}
.x3{left:160.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.232000pt;}
.ls29{letter-spacing:-0.880000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.645333pt;}
.lsc{letter-spacing:-0.528000pt;}
.lsa{letter-spacing:-0.469333pt;}
.ls15{letter-spacing:-0.410667pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls3d{letter-spacing:-0.293333pt;}
.ls21{letter-spacing:-0.234667pt;}
.ls1a{letter-spacing:-0.186667pt;}
.lsf{letter-spacing:-0.176000pt;}
.lse{letter-spacing:-0.117333pt;}
.ls6{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.117333pt;}
.ls2c{letter-spacing:0.134933pt;}
.ls44{letter-spacing:0.146667pt;}
.ls31{letter-spacing:0.158400pt;}
.ls2b{letter-spacing:0.164267pt;}
.ls16{letter-spacing:0.170133pt;}
.ls0{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.187733pt;}
.ls17{letter-spacing:0.193600pt;}
.ls20{letter-spacing:0.205333pt;}
.ls37{letter-spacing:0.211200pt;}
.ls1{letter-spacing:0.217067pt;}
.ls2f{letter-spacing:0.222933pt;}
.ls30{letter-spacing:0.228800pt;}
.ls2{letter-spacing:0.234667pt;}
.ls1f{letter-spacing:0.240533pt;}
.ls1e{letter-spacing:0.246400pt;}
.ls3c{letter-spacing:0.252267pt;}
.ls19{letter-spacing:0.258133pt;}
.ls4c{letter-spacing:0.264000pt;}
.ls47{letter-spacing:0.269867pt;}
.ls36{letter-spacing:0.275733pt;}
.ls1b{letter-spacing:0.281600pt;}
.ls3a{letter-spacing:0.287467pt;}
.ls48{letter-spacing:0.293333pt;}
.ls11{letter-spacing:0.299200pt;}
.ls26{letter-spacing:0.305067pt;}
.ls27{letter-spacing:0.310933pt;}
.ls45{letter-spacing:0.316800pt;}
.ls10{letter-spacing:0.334400pt;}
.ls25{letter-spacing:0.340267pt;}
.ls22{letter-spacing:0.346133pt;}
.ls4d{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.363733pt;}
.ls1c{letter-spacing:0.369600pt;}
.ls13{letter-spacing:0.375467pt;}
.ls24{letter-spacing:0.416533pt;}
.ls50{letter-spacing:0.451733pt;}
.ls38{letter-spacing:0.516267pt;}
.ls34{letter-spacing:0.557333pt;}
.ls3f{letter-spacing:0.569067pt;}
.ls4e{letter-spacing:0.586667pt;}
.ls3e{letter-spacing:0.604267pt;}
.ls12{letter-spacing:0.627733pt;}
.ls35{letter-spacing:0.686400pt;}
.ls33{letter-spacing:0.968000pt;}
.ls39{letter-spacing:1.138133pt;}
.ls23{letter-spacing:1.496000pt;}
.ls2e{letter-spacing:1.507733pt;}
.ls42{letter-spacing:1.701333pt;}
.ls40{letter-spacing:2.188267pt;}
.ls18{letter-spacing:2.229333pt;}
.ls41{letter-spacing:2.282133pt;}
.ls51{letter-spacing:2.798400pt;}
.ls46{letter-spacing:2.839467pt;}
.ls8{letter-spacing:3.285333pt;}
.ls2a{letter-spacing:3.813333pt;}
.ls32{letter-spacing:4.341333pt;}
.ls43{letter-spacing:4.534933pt;}
.ls28{letter-spacing:4.558400pt;}
.ls2d{letter-spacing:4.869333pt;}
.ls4f{letter-spacing:5.590933pt;}
.ls3b{letter-spacing:9.152000pt;}
.ls4a{letter-spacing:9.809067pt;}
.ls49{letter-spacing:19.301333pt;}
.ls4b{letter-spacing:52.469333pt;}
.ls3{letter-spacing:52.506667pt;}
.ws4f{word-spacing:-13.493333pt;}
.ws26{word-spacing:-13.434667pt;}
.ws5e{word-spacing:-13.405333pt;}
.ws11{word-spacing:-13.376000pt;}
.ws14{word-spacing:-13.317333pt;}
.ws10{word-spacing:-13.258667pt;}
.ws57{word-spacing:-13.200000pt;}
.ws1f{word-spacing:-13.141333pt;}
.ws20{word-spacing:-13.082667pt;}
.ws34{word-spacing:-13.024000pt;}
.ws50{word-spacing:-12.965333pt;}
.ws12{word-spacing:-12.906667pt;}
.ws27{word-spacing:-12.848000pt;}
.ws13{word-spacing:-12.789333pt;}
.ws15{word-spacing:-12.730667pt;}
.ws0{word-spacing:-12.613333pt;}
.ws30{word-spacing:-12.554667pt;}
.ws2b{word-spacing:-8.250667pt;}
.ws5b{word-spacing:-3.754667pt;}
.ws2e{word-spacing:-3.285333pt;}
.ws1e{word-spacing:-3.226667pt;}
.ws7{word-spacing:-2.698667pt;}
.ws6{word-spacing:-2.581333pt;}
.ws17{word-spacing:-2.170667pt;}
.ws9{word-spacing:-1.642667pt;}
.wsf{word-spacing:-1.114667pt;}
.ws49{word-spacing:-0.997333pt;}
.ws2c{word-spacing:-0.880000pt;}
.ws2a{word-spacing:-0.645333pt;}
.ws1c{word-spacing:-0.586667pt;}
.ws39{word-spacing:-0.469333pt;}
.ws16{word-spacing:-0.176000pt;}
.ws1{word-spacing:-0.117333pt;}
.wsb{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.058667pt;}
.ws4{word-spacing:0.117333pt;}
.ws3e{word-spacing:0.176000pt;}
.ws28{word-spacing:0.234667pt;}
.ws37{word-spacing:0.410667pt;}
.wsa{word-spacing:0.469333pt;}
.ws51{word-spacing:0.586667pt;}
.wsc{word-spacing:0.997333pt;}
.ws4d{word-spacing:1.114667pt;}
.ws61{word-spacing:1.232000pt;}
.ws40{word-spacing:1.466667pt;}
.ws18{word-spacing:1.584000pt;}
.ws4e{word-spacing:1.701333pt;}
.ws24{word-spacing:2.112000pt;}
.ws54{word-spacing:2.170667pt;}
.ws63{word-spacing:2.229333pt;}
.ws4c{word-spacing:2.346667pt;}
.wse{word-spacing:2.640000pt;}
.ws53{word-spacing:2.757333pt;}
.ws47{word-spacing:2.933333pt;}
.ws5{word-spacing:3.168000pt;}
.ws45{word-spacing:3.285333pt;}
.ws3f{word-spacing:3.637333pt;}
.ws23{word-spacing:3.696000pt;}
.ws52{word-spacing:3.754667pt;}
.ws43{word-spacing:3.930667pt;}
.ws1d{word-spacing:4.224000pt;}
.ws5a{word-spacing:4.458667pt;}
.ws8{word-spacing:4.752000pt;}
.ws68{word-spacing:4.810667pt;}
.ws1b{word-spacing:5.280000pt;}
.ws46{word-spacing:5.397333pt;}
.ws21{word-spacing:5.808000pt;}
.ws32{word-spacing:6.336000pt;}
.ws64{word-spacing:6.453333pt;}
.ws33{word-spacing:6.629333pt;}
.wsd{word-spacing:6.864000pt;}
.ws25{word-spacing:6.922667pt;}
.ws3c{word-spacing:7.450667pt;}
.ws35{word-spacing:7.978667pt;}
.ws48{word-spacing:8.096000pt;}
.ws36{word-spacing:8.506667pt;}
.ws3d{word-spacing:9.034667pt;}
.ws5c{word-spacing:9.269333pt;}
.ws5d{word-spacing:9.328000pt;}
.ws60{word-spacing:9.504000pt;}
.ws22{word-spacing:9.562667pt;}
.ws3a{word-spacing:10.090667pt;}
.ws2f{word-spacing:10.618667pt;}
.ws1a{word-spacing:11.146667pt;}
.ws19{word-spacing:11.674667pt;}
.ws38{word-spacing:12.202667pt;}
.ws2d{word-spacing:12.730667pt;}
.ws55{word-spacing:13.317333pt;}
.ws4a{word-spacing:13.845333pt;}
.ws42{word-spacing:14.373333pt;}
.ws29{word-spacing:14.490667pt;}
.ws31{word-spacing:14.901333pt;}
.ws58{word-spacing:15.429333pt;}
.ws62{word-spacing:15.957333pt;}
.ws59{word-spacing:16.485333pt;}
.ws4b{word-spacing:17.013333pt;}
.ws65{word-spacing:18.069333pt;}
.ws44{word-spacing:18.597333pt;}
.ws56{word-spacing:19.184000pt;}
.ws66{word-spacing:19.712000pt;}
.ws3b{word-spacing:21.296000pt;}
.ws67{word-spacing:21.824000pt;}
.ws5f{word-spacing:23.408000pt;}
.ws41{word-spacing:23.936000pt;}
._5{margin-left:-9.433600pt;}
._3{margin-left:-2.816000pt;}
._1{margin-left:-1.278933pt;}
._0{width:1.108800pt;}
._4{width:2.217600pt;}
._8{width:3.995200pt;}
._7{width:4.986667pt;}
._6{width:7.216000pt;}
._9{width:9.404267pt;}
._2{width:754.746667pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:235.866667pt;}
.y70{bottom:265.466667pt;}
.yad{bottom:265.866667pt;}
.yac{bottom:285.200000pt;}
.y111{bottom:285.712000pt;}
.y6f{bottom:295.466667pt;}
.ye8{bottom:304.933333pt;}
.yab{bottom:305.333333pt;}
.y103{bottom:312.000000pt;}
.y42{bottom:312.800000pt;}
.yd3{bottom:313.482667pt;}
.y6e{bottom:315.466667pt;}
.y110{bottom:315.705333pt;}
.y98{bottom:316.266667pt;}
.yb5{bottom:316.380000pt;}
.y107{bottom:323.477333pt;}
.yaa{bottom:324.666667pt;}
.y102{bottom:332.000000pt;}
.y62{bottom:333.333333pt;}
.ydd{bottom:333.616000pt;}
.ye7{bottom:334.666667pt;}
.y10f{bottom:334.904000pt;}
.y6d{bottom:335.600000pt;}
.y41{bottom:342.666667pt;}
.yd2{bottom:343.476000pt;}
.ya9{bottom:344.800000pt;}
.y97{bottom:346.373333pt;}
.y101{bottom:352.133333pt;}
.y106{bottom:353.470667pt;}
.ye6{bottom:354.533333pt;}
.y6c{bottom:354.933333pt;}
.y10e{bottom:355.041333pt;}
.y40{bottom:362.800000pt;}
.y61{bottom:363.333333pt;}
.ydc{bottom:363.609333pt;}
.ya8{bottom:364.000000pt;}
.y100{bottom:371.466667pt;}
.y78{bottom:372.000000pt;}
.y105{bottom:372.669333pt;}
.yd1{bottom:373.469333pt;}
.ye5{bottom:373.600000pt;}
.yc3{bottom:374.372000pt;}
.y96{bottom:377.173333pt;}
.yc0{bottom:382.133333pt;}
.y60{bottom:382.533333pt;}
.y3f{bottom:383.040000pt;}
.ya7{bottom:384.133333pt;}
.y6b{bottom:385.841333pt;}
.yff{bottom:391.708000pt;}
.y4a{bottom:392.000000pt;}
.yd0{bottom:392.800000pt;}
.ye4{bottom:393.466667pt;}
.y88{bottom:393.600000pt;}
.ydb{bottom:393.602667pt;}
.y10d{bottom:393.702667pt;}
.yd9{bottom:400.682667pt;}
.y10b{bottom:401.200000pt;}
.y77{bottom:401.866667pt;}
.y5f{bottom:402.666667pt;}
.ya6{bottom:403.466667pt;}
.yc2{bottom:404.365333pt;}
.y95{bottom:407.166667pt;}
.ybf{bottom:412.133333pt;}
.ye3{bottom:412.533333pt;}
.yda{bottom:412.933333pt;}
.ya2{bottom:413.033333pt;}
.y3e{bottom:413.840000pt;}
.y6a{bottom:415.834667pt;}
.y113{bottom:420.813333pt;}
.ycf{bottom:420.816000pt;}
.y7d{bottom:421.600000pt;}
.y29{bottom:422.000000pt;}
.yfe{bottom:422.508000pt;}
.y5e{bottom:422.800000pt;}
.y87{bottom:423.696000pt;}
.y10c{bottom:424.502667pt;}
.yd8{bottom:430.676000pt;}
.y10a{bottom:431.066667pt;}
.ybb{bottom:431.466667pt;}
.yde{bottom:432.266667pt;}
.yed{bottom:432.273333pt;}
.yb7{bottom:432.364000pt;}
.ye2{bottom:432.533333pt;}
.y104{bottom:432.666667pt;}
.yc1{bottom:435.165333pt;}
.y94{bottom:437.160000pt;}
.y76{bottom:441.333333pt;}
.y49{bottom:442.133333pt;}
.ya1{bottom:443.026667pt;}
.y3d{bottom:443.833333pt;}
.y69{bottom:445.828000pt;}
.y7a{bottom:450.800000pt;}
.y112{bottom:450.806667pt;}
.yce{bottom:450.809333pt;}
.y109{bottom:451.200000pt;}
.y81{bottom:451.600000pt;}
.y7c{bottom:451.694667pt;}
.y28{bottom:452.000000pt;}
.yfd{bottom:452.501333pt;}
.y86{bottom:454.496000pt;}
.y93{bottom:456.490667pt;}
.yd7{bottom:460.669333pt;}
.y75{bottom:461.466667pt;}
.y48{bottom:462.266667pt;}
.y5d{bottom:462.332000pt;}
.yb6{bottom:462.357333pt;}
.ybe{bottom:463.164000pt;}
.y68{bottom:465.158667pt;}
.y108{bottom:470.533333pt;}
.yc8{bottom:471.025333pt;}
.yec{bottom:471.066667pt;}
.yf1{bottom:471.333333pt;}
.y27{bottom:472.133333pt;}
.y3c{bottom:473.826667pt;}
.y92{bottom:475.821333pt;}
.yd6{bottom:480.000000pt;}
.y74{bottom:480.800000pt;}
.ycd{bottom:480.802667pt;}
.y47{bottom:481.600000pt;}
.y80{bottom:481.688000pt;}
.y7b{bottom:482.494667pt;}
.y67{bottom:484.489333pt;}
.ya3{bottom:490.266667pt;}
.y16{bottom:490.356000pt;}
.yf0{bottom:490.666667pt;}
.ye1{bottom:490.673333pt;}
.y26{bottom:491.466667pt;}
.yfa{bottom:492.266667pt;}
.yc6{bottom:492.350667pt;}
.y5c{bottom:493.132000pt;}
.y3b{bottom:493.157333pt;}
.y91{bottom:495.152000pt;}
.y79{bottom:500.133333pt;}
.ybc{bottom:500.800000pt;}
.y73{bottom:500.886667pt;}
.yb9{bottom:500.933333pt;}
.yfc{bottom:501.693333pt;}
.y66{bottom:503.820000pt;}
.yd5{bottom:510.000000pt;}
.yef{bottom:510.800000pt;}
.yf9{bottom:511.466667pt;}
.y25{bottom:511.549333pt;}
.y46{bottom:512.356000pt;}
.y85{bottom:514.482667pt;}
.ya0{bottom:518.133333pt;}
.y2e{bottom:519.466667pt;}
.yeb{bottom:519.866667pt;}
.yba{bottom:520.133333pt;}
.y15{bottom:520.217333pt;}
.ye0{bottom:520.666667pt;}
.yfb{bottom:521.024000pt;}
.y5b{bottom:522.993333pt;}
.y3a{bottom:523.018667pt;}
.y9d{bottom:528.800000pt;}
.yc7{bottom:528.885333pt;}
.ycc{bottom:530.000000pt;}
.yd4{bottom:530.133333pt;}
.yea{bottom:530.533333pt;}
.yee{bottom:530.800000pt;}
.yb8{bottom:530.880000pt;}
.y72{bottom:531.686667pt;}
.y65{bottom:533.681333pt;}
.yf5{bottom:538.800000pt;}
.yf8{bottom:539.466667pt;}
.ydf{bottom:539.733333pt;}
.yf6{bottom:540.354667pt;}
.y24{bottom:542.349333pt;}
.y9b{bottom:548.133333pt;}
.y9f{bottom:548.216000pt;}
.y2d{bottom:549.333333pt;}
.yca{bottom:550.133333pt;}
.ycb{bottom:550.210667pt;}
.ye9{bottom:550.400000pt;}
.y14{bottom:551.017333pt;}
.y5a{bottom:552.986667pt;}
.y39{bottom:553.012000pt;}
.yc5{bottom:558.800000pt;}
.y33{bottom:558.878667pt;}
.y71{bottom:561.680000pt;}
.y64{bottom:563.674667pt;}
.yf4{bottom:568.666667pt;}
.y2c{bottom:569.466667pt;}
.yf7{bottom:569.541333pt;}
.yc9{bottom:570.348000pt;}
.y59{bottom:572.317333pt;}
.y23{bottom:572.342667pt;}
.yaf{bottom:578.133333pt;}
.y1b{bottom:578.209333pt;}
.y9e{bottom:579.016000pt;}
.y13{bottom:581.010667pt;}
.y63{bottom:583.005333pt;}
.yf3{bottom:588.000000pt;}
.y2b{bottom:588.800000pt;}
.y32{bottom:588.872000pt;}
.y9c{bottom:589.678667pt;}
.y58{bottom:591.648000pt;}
.y38{bottom:591.673333pt;}
.yb4{bottom:593.668000pt;}
.y8c{bottom:597.466667pt;}
.ya5{bottom:597.540000pt;}
.ybd{bottom:600.341333pt;}
.y22{bottom:602.336000pt;}
.yc4{bottom:608.133333pt;}
.y1a{bottom:608.202667pt;}
.y9a{bottom:609.009333pt;}
.y57{bottom:610.978667pt;}
.y12{bottom:611.004000pt;}
.y84{bottom:612.998667pt;}
.y90{bottom:616.800000pt;}
.y2a{bottom:619.672000pt;}
.y21{bottom:621.666667pt;}
.yf2{bottom:627.466667pt;}
.y8b{bottom:627.533333pt;}
.y56{bottom:630.309333pt;}
.y11{bottom:630.334667pt;}
.y83{bottom:632.329333pt;}
.y19{bottom:639.002667pt;}
.y20{bottom:640.997333pt;}
.y8f{bottom:646.864000pt;}
.y55{bottom:649.640000pt;}
.y10{bottom:649.665333pt;}
.y82{bottom:651.660000pt;}
.y8a{bottom:658.333333pt;}
.y1f{bottom:660.328000pt;}
.yb3{bottom:662.322667pt;}
.yf{bottom:668.996000pt;}
.y45{bottom:670.990667pt;}
.y8e{bottom:677.664000pt;}
.y54{bottom:679.633333pt;}
.y1e{bottom:679.658667pt;}
.yb2{bottom:681.653333pt;}
.y89{bottom:688.326667pt;}
.y44{bottom:690.321333pt;}
.ye{bottom:698.989333pt;}
.yb1{bottom:700.984000pt;}
.y8d{bottom:707.657333pt;}
.y53{bottom:709.626667pt;}
.y43{bottom:709.652000pt;}
.y18{bottom:718.320000pt;}
.yb0{bottom:720.314667pt;}
.y99{bottom:726.988000pt;}
.y52{bottom:728.957333pt;}
.yd{bottom:728.982667pt;}
.y31{bottom:737.650667pt;}
.y7f{bottom:739.645333pt;}
.y51{bottom:748.288000pt;}
.yc{bottom:748.313333pt;}
.y30{bottom:756.849333pt;}
.y7e{bottom:758.976000pt;}
.y50{bottom:767.486667pt;}
.yb{bottom:767.512000pt;}
.y37{bottom:776.180000pt;}
.y17{bottom:778.174667pt;}
.y4f{bottom:786.817333pt;}
.y2f{bottom:786.842667pt;}
.ya4{bottom:795.510667pt;}
.ya{bottom:797.505333pt;}
.y4e{bottom:806.148000pt;}
.y36{bottom:806.173333pt;}
.y9{bottom:816.836000pt;}
.y4d{bottom:825.478667pt;}
.y35{bottom:825.504000pt;}
.y8{bottom:836.166667pt;}
.y34{bottom:844.834667pt;}
.y4c{bottom:855.472000pt;}
.y7{bottom:855.497333pt;}
.y4b{bottom:874.802667pt;}
.y6{bottom:874.828000pt;}
.y5{bottom:894.158667pt;}
.y1d{bottom:904.821333pt;}
.y4{bottom:924.152000pt;}
.y1c{bottom:934.814667pt;}
.y3{bottom:954.145333pt;}
.y2{bottom:984.138667pt;}
.y1{bottom:1014.000000pt;}
.h2{height:40.104167pt;}
.h3{height:46.520833pt;}
.h4{height:50.836167pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.533333pt;}
.x2{left:118.528000pt;}
.x3{left:142.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; }
  