
    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_b88e004b970b64531b86a5d7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_b1b63c9c4c3a22bb3e700009.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_90a4fa28aeaf08f1cab6940b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_cfa936ef748c6322910a2db9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_0a8a5883f44b005f8934f689.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.073242;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_9245648384546f7dfa29b72d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.050293;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_0c2fcd6bf89561f5367f1175.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_64b4bdbbbbcf986e9ad2952a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.288000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.174000px;}
.ls7{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.440000px;}
.ls5{letter-spacing:2.160000px;}
.ls6{letter-spacing:5.040000px;}
.lse{letter-spacing:10.080000px;}
.lsa{letter-spacing:12.240000px;}
.ls3{letter-spacing:15.120000px;}
.lsb{letter-spacing:17.280000px;}
.ls9{letter-spacing:23.760000px;}
.lsd{letter-spacing:28.080000px;}
.ls4{letter-spacing:31.824000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.505760px;}
.ws2{word-spacing:0.000000px;}
._24{margin-left:-13.536000px;}
._25{margin-left:-9.936000px;}
._1d{margin-left:-5.184000px;}
._5{margin-left:-3.600000px;}
._4{margin-left:-2.448000px;}
._2{margin-left:-1.080000px;}
._0{width:1.055520px;}
._3{width:2.952000px;}
._f{width:4.392000px;}
._10{width:5.400000px;}
._14{width:6.912000px;}
._d{width:8.136000px;}
._e{width:9.432000px;}
._1a{width:10.956480px;}
._1b{width:12.384000px;}
._a{width:13.692000px;}
._6{width:14.760000px;}
._7{width:16.644480px;}
._17{width:19.128000px;}
._16{width:20.592000px;}
._13{width:22.176000px;}
._12{width:23.328000px;}
._1f{width:25.272000px;}
._28{width:26.568000px;}
._15{width:27.576000px;}
._11{width:29.592000px;}
._1e{width:30.984480px;}
._b{width:32.040000px;}
._c{width:33.120000px;}
._23{width:34.272000px;}
._8{width:35.280000px;}
._9{width:36.936000px;}
._26{width:37.944000px;}
._27{width:39.024000px;}
._29{width:40.176000px;}
._22{width:41.256000px;}
._1c{width:43.128000px;}
._18{width:44.208000px;}
._19{width:45.288000px;}
._2a{width:54.216000px;}
._20{width:55.296000px;}
._21{width:56.376000px;}
._1{width:82.776000px;}
._2b{width:1701.636000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:4.319850px;}
.y8{bottom:4.500000px;}
.y3{bottom:5.400000px;}
.y9{bottom:6.300000px;}
.yf{bottom:12.600000px;}
.y6{bottom:14.400000px;}
.y7{bottom:19.080000px;}
.yc{bottom:20.160000px;}
.y2{bottom:40.140000px;}
.y5{bottom:49.140000px;}
.ye0{bottom:110.520000px;}
.y6b{bottom:112.860000px;}
.y3b{bottom:114.660000px;}
.y141{bottom:115.560000px;}
.yb4{bottom:120.960000px;}
.y96{bottom:123.480000px;}
.yfd{bottom:124.560000px;}
.y161{bottom:126.360000px;}
.ydf{bottom:131.220000px;}
.y6a{bottom:133.560000px;}
.y3a{bottom:135.360000px;}
.y123{bottom:137.160000px;}
.y95{bottom:144.180000px;}
.yfc{bottom:145.260000px;}
.y160{bottom:147.060000px;}
.yb3{bottom:151.920000px;}
.y69{bottom:154.260000px;}
.y39{bottom:156.060000px;}
.y122{bottom:157.860000px;}
.y94{bottom:164.880000px;}
.yfb{bottom:165.960000px;}
.y15f{bottom:167.760000px;}
.yde{bottom:172.620000px;}
.y140{bottom:174.960000px;}
.y38{bottom:176.760000px;}
.y121{bottom:178.560000px;}
.yb2{bottom:183.060000px;}
.y68{bottom:183.960000px;}
.y17d{bottom:185.760000px;}
.yfa{bottom:186.660000px;}
.ydd{bottom:193.320000px;}
.y93{bottom:194.580000px;}
.y37{bottom:197.490000px;}
.y120{bottom:199.290000px;}
.y13f{bottom:204.690000px;}
.y17c{bottom:206.490000px;}
.yf9{bottom:207.390000px;}
.y67{bottom:213.690000px;}
.yb1{bottom:214.050000px;}
.y36{bottom:218.190000px;}
.y11f{bottom:219.990000px;}
.y92{bottom:224.310000px;}
.yf8{bottom:228.090000px;}
.y66{bottom:234.390000px;}
.ydc{bottom:234.750000px;}
.y17b{bottom:236.190000px;}
.y35{bottom:238.890000px;}
.y11e{bottom:240.690000px;}
.y91{bottom:245.010000px;}
.yb0{bottom:245.190000px;}
.y15e{bottom:247.890000px;}
.yf7{bottom:248.790000px;}
.y65{bottom:255.090000px;}
.ydb{bottom:255.450000px;}
.y17a{bottom:256.890000px;}
.y34{bottom:259.590000px;}
.y11d{bottom:261.390000px;}
.y13e{bottom:264.090000px;}
.y90{bottom:265.710000px;}
.yaf{bottom:265.890000px;}
.y15d{bottom:268.590000px;}
.yf6{bottom:269.490000px;}
.y64{bottom:275.790000px;}
.yda{bottom:276.150000px;}
.y179{bottom:277.590000px;}
.y33{bottom:280.290000px;}
.y11c{bottom:282.090000px;}
.y13d{bottom:284.790000px;}
.y8f{bottom:286.410000px;}
.y15c{bottom:289.290000px;}
.yf5{bottom:290.190000px;}
.y63{bottom:296.490000px;}
.yae{bottom:296.670000px;}
.yd9{bottom:296.850000px;}
.y32{bottom:300.990000px;}
.y11b{bottom:302.790000px;}
.y13c{bottom:305.490000px;}
.y8e{bottom:307.110000px;}
.y178{bottom:307.290000px;}
.y15b{bottom:309.990000px;}
.yf4{bottom:310.890000px;}
.y62{bottom:317.190000px;}
.yd8{bottom:317.550000px;}
.y31{bottom:321.690000px;}
.y11a{bottom:323.490000px;}
.y13b{bottom:326.190000px;}
.yad{bottom:327.630000px;}
.y8d{bottom:327.810000px;}
.y177{bottom:327.990000px;}
.yf3{bottom:331.590000px;}
.y61{bottom:337.890000px;}
.yd7{bottom:338.250000px;}
.y15a{bottom:339.690000px;}
.y119{bottom:344.190000px;}
.y13a{bottom:346.890000px;}
.y30{bottom:351.390000px;}
.yf2{bottom:352.290000px;}
.y8c{bottom:357.510000px;}
.y176{bottom:357.690000px;}
.y60{bottom:358.590000px;}
.yd6{bottom:358.950000px;}
.y159{bottom:360.390000px;}
.y118{bottom:364.890000px;}
.y139{bottom:367.590000px;}
.yf1{bottom:372.990000px;}
.y8b{bottom:378.210000px;}
.y175{bottom:378.390000px;}
.y5f{bottom:379.290000px;}
.yd5{bottom:379.650000px;}
.y2f{bottom:381.090000px;}
.y117{bottom:385.590000px;}
.yac{bottom:389.730000px;}
.yf0{bottom:393.690000px;}
.y138{bottom:397.290000px;}
.y8a{bottom:398.910000px;}
.y5e{bottom:399.990000px;}
.y116{bottom:406.290000px;}
.y174{bottom:408.090000px;}
.yd4{bottom:409.350000px;}
.y2e{bottom:410.790000px;}
.yef{bottom:414.390000px;}
.y137{bottom:417.990000px;}
.y89{bottom:419.610000px;}
.y5d{bottom:420.690000px;}
.y115{bottom:426.990000px;}
.y173{bottom:428.790000px;}
.yd3{bottom:430.050000px;}
.y2d{bottom:431.490000px;}
.y136{bottom:438.735000px;}
.y88{bottom:440.355000px;}
.y5c{bottom:441.435000px;}
.yee{bottom:444.135000px;}
.y114{bottom:447.735000px;}
.y172{bottom:449.535000px;}
.yd2{bottom:450.795000px;}
.yab{bottom:451.695000px;}
.y135{bottom:459.435000px;}
.y87{bottom:461.055000px;}
.y2c{bottom:461.235000px;}
.y5b{bottom:462.135000px;}
.yed{bottom:464.835000px;}
.y113{bottom:468.435000px;}
.yd1{bottom:471.495000px;}
.y171{bottom:479.235000px;}
.y134{bottom:480.135000px;}
.y86{bottom:481.755000px;}
.y2b{bottom:481.935000px;}
.y5a{bottom:482.835000px;}
.yec{bottom:485.535000px;}
.y112{bottom:489.135000px;}
.yd0{bottom:492.195000px;}
.y170{bottom:499.935000px;}
.y133{bottom:500.835000px;}
.y85{bottom:502.455000px;}
.y2a{bottom:502.635000px;}
.y59{bottom:503.535000px;}
.yeb{bottom:506.235000px;}
.y111{bottom:509.835000px;}
.ycf{bottom:512.895000px;}
.y188{bottom:519.735000px;}
.y132{bottom:521.535000px;}
.y84{bottom:523.155000px;}
.y29{bottom:523.335000px;}
.y58{bottom:524.235000px;}
.yea{bottom:526.935000px;}
.y16f{bottom:529.635000px;}
.y110{bottom:530.535000px;}
.y158{bottom:532.335000px;}
.yce{bottom:533.595000px;}
.y131{bottom:542.235000px;}
.y83{bottom:543.855000px;}
.y28{bottom:544.035000px;}
.y57{bottom:544.935000px;}
.y187{bottom:549.435000px;}
.y16e{bottom:550.335000px;}
.y10f{bottom:551.235000px;}
.y157{bottom:553.035000px;}
.yaa{bottom:553.935000px;}
.ycd{bottom:554.295000px;}
.ye9{bottom:556.635000px;}
.y130{bottom:562.935000px;}
.y82{bottom:564.555000px;}
.y27{bottom:564.735000px;}
.y56{bottom:565.635000px;}
.y16d{bottom:571.035000px;}
.y10e{bottom:571.935000px;}
.y156{bottom:573.735000px;}
.ya9{bottom:574.635000px;}
.ycc{bottom:574.995000px;}
.ye8{bottom:577.335000px;}
.y186{bottom:579.135000px;}
.y12f{bottom:583.635000px;}
.y81{bottom:585.255000px;}
.y26{bottom:585.435000px;}
.y55{bottom:586.335000px;}
.y10d{bottom:592.635000px;}
.ya8{bottom:595.335000px;}
.ycb{bottom:595.695000px;}
.y16c{bottom:600.735000px;}
.y155{bottom:603.435000px;}
.y12e{bottom:604.335000px;}
.y80{bottom:605.955000px;}
.y25{bottom:606.135000px;}
.y54{bottom:607.035000px;}
.y185{bottom:608.835000px;}
.y10c{bottom:613.335000px;}
.ya7{bottom:616.035000px;}
.yca{bottom:616.395000px;}
.ye{bottom:617.475000px;}
.y16b{bottom:621.435000px;}
.y154{bottom:624.135000px;}
.y12d{bottom:625.035000px;}
.y7f{bottom:626.655000px;}
.y24{bottom:626.835000px;}
.y53{bottom:627.735000px;}
.y10b{bottom:634.035000px;}
.ya6{bottom:636.735000px;}
.yc9{bottom:637.095000px;}
.y184{bottom:638.535000px;}
.y16a{bottom:642.135000px;}
.y153{bottom:644.835000px;}
.y12c{bottom:645.735000px;}
.y23{bottom:647.535000px;}
.y52{bottom:648.435000px;}
.y10a{bottom:654.735000px;}
.y7e{bottom:656.355000px;}
.ya5{bottom:657.435000px;}
.y12b{bottom:666.435000px;}
.yc8{bottom:666.795000px;}
.y22{bottom:668.235000px;}
.y51{bottom:669.135000px;}
.y169{bottom:671.835000px;}
.y152{bottom:674.565000px;}
.y109{bottom:675.465000px;}
.ya4{bottom:678.165000px;}
.y7d{bottom:686.085000px;}
.y12a{bottom:687.165000px;}
.yc7{bottom:687.525000px;}
.y21{bottom:688.965000px;}
.y50{bottom:689.865000px;}
.y168{bottom:692.565000px;}
.y151{bottom:695.265000px;}
.y108{bottom:696.165000px;}
.y183{bottom:697.965000px;}
.ya3{bottom:698.865000px;}
.y7c{bottom:706.785000px;}
.y129{bottom:707.865000px;}
.yc6{bottom:708.225000px;}
.y20{bottom:709.665000px;}
.y4f{bottom:710.565000px;}
.y167{bottom:713.265000px;}
.y107{bottom:716.865000px;}
.ya2{bottom:719.565000px;}
.y150{bottom:724.965000px;}
.y7b{bottom:727.485000px;}
.y182{bottom:727.665000px;}
.y128{bottom:728.565000px;}
.yc5{bottom:728.925000px;}
.y1f{bottom:730.365000px;}
.y4e{bottom:731.265000px;}
.y106{bottom:737.565000px;}
.ya1{bottom:740.265000px;}
.y166{bottom:742.965000px;}
.y14f{bottom:745.665000px;}
.y7a{bottom:748.185000px;}
.y127{bottom:749.265000px;}
.yc4{bottom:749.625000px;}
.y1e{bottom:751.065000px;}
.y4d{bottom:751.965000px;}
.y181{bottom:757.365000px;}
.y105{bottom:758.265000px;}
.ya0{bottom:760.965000px;}
.y165{bottom:763.665000px;}
.y79{bottom:768.885000px;}
.y126{bottom:769.965000px;}
.y1d{bottom:771.765000px;}
.y4c{bottom:772.665000px;}
.y14e{bottom:775.365000px;}
.y104{bottom:778.965000px;}
.yc3{bottom:779.325000px;}
.y164{bottom:784.365000px;}
.y180{bottom:787.065000px;}
.y78{bottom:789.585000px;}
.y9f{bottom:790.665000px;}
.y1c{bottom:792.465000px;}
.y4b{bottom:793.365000px;}
.y14d{bottom:796.065000px;}
.y103{bottom:799.665000px;}
.yc2{bottom:809.025000px;}
.y9e{bottom:811.365000px;}
.y1b{bottom:813.165000px;}
.y4a{bottom:814.065000px;}
.y14c{bottom:816.765000px;}
.y77{bottom:819.285000px;}
.y102{bottom:820.365000px;}
.yc1{bottom:829.725000px;}
.y9d{bottom:832.065000px;}
.y1a{bottom:833.865000px;}
.y49{bottom:834.765000px;}
.y76{bottom:839.985000px;}
.y101{bottom:841.065000px;}
.y14b{bottom:846.465000px;}
.yc0{bottom:850.425000px;}
.y9c{bottom:852.765000px;}
.y48{bottom:855.465000px;}
.y100{bottom:861.765000px;}
.y19{bottom:863.565000px;}
.ye7{bottom:864.465000px;}
.y14a{bottom:867.165000px;}
.y125{bottom:870.765000px;}
.y75{bottom:870.945000px;}
.ybf{bottom:871.125000px;}
.y47{bottom:876.165000px;}
.y9b{bottom:882.465000px;}
.ye6{bottom:885.165000px;}
.y124{bottom:891.465000px;}
.y74{bottom:891.645000px;}
.y18{bottom:893.265000px;}
.y46{bottom:896.865000px;}
.ybe{bottom:900.825000px;}
.yff{bottom:903.165000px;}
.ye5{bottom:905.865000px;}
.y9a{bottom:912.165000px;}
.y45{bottom:917.610000px;}
.ybd{bottom:921.570000px;}
.y73{bottom:922.650000px;}
.y17{bottom:923.010000px;}
.yfe{bottom:923.910000px;}
.ye4{bottom:926.610000px;}
.y99{bottom:932.910000px;}
.y163{bottom:935.610000px;}
.y149{bottom:938.310000px;}
.ybc{bottom:942.270000px;}
.y72{bottom:943.350000px;}
.y44{bottom:947.310000px;}
.y16{bottom:952.710000px;}
.y98{bottom:953.610000px;}
.y162{bottom:956.310000px;}
.y71{bottom:964.050000px;}
.y148{bottom:968.010000px;}
.ybb{bottom:973.050000px;}
.y97{bottom:974.310000px;}
.y43{bottom:977.010000px;}
.y15{bottom:982.410000px;}
.y147{bottom:988.710000px;}
.y70{bottom:995.010000px;}
.y17f{bottom:997.710000px;}
.yba{bottom:1004.190000px;}
.y42{bottom:1006.710000px;}
.y146{bottom:1009.410000px;}
.y14{bottom:1012.110000px;}
.y6f{bottom:1015.710000px;}
.y17e{bottom:1018.410000px;}
.yb9{bottom:1024.890000px;}
.ye3{bottom:1027.410000px;}
.y41{bottom:1036.410000px;}
.y145{bottom:1039.110000px;}
.y13{bottom:1041.810000px;}
.y6e{bottom:1046.670000px;}
.ye2{bottom:1048.110000px;}
.yb8{bottom:1055.670000px;}
.y40{bottom:1057.110000px;}
.y144{bottom:1059.810000px;}
.y6d{bottom:1067.370000px;}
.ye1{bottom:1068.810000px;}
.y12{bottom:1071.510000px;}
.y3f{bottom:1077.810000px;}
.yb7{bottom:1086.810000px;}
.y6c{bottom:1088.250000px;}
.y143{bottom:1089.510000px;}
.y3e{bottom:1098.510000px;}
.y11{bottom:1101.210000px;}
.yb6{bottom:1107.510000px;}
.y142{bottom:1110.210000px;}
.y3d{bottom:1119.210000px;}
.y10{bottom:1130.910000px;}
.yb5{bottom:1138.470000px;}
.y3c{bottom:1139.910000px;}
.y4{bottom:1191.780000px;}
.y1{bottom:1200.780000px;}
.yb{bottom:1246.320000px;}
.ya{bottom:1261.980000px;}
.h6{height:19.620000px;}
.h8{height:21.420000px;}
.hb{height:28.260000px;}
.h9{height:49.868086px;}
.h2{height:54.900000px;}
.hd{height:60.082031px;}
.he{height:61.171875px;}
.h7{height:61.189805px;}
.hc{height:61.734375px;}
.h4{height:63.900000px;}
.ha{height:65.884219px;}
.h5{height:67.824844px;}
.h3{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.240000px;}
.w8{width:84.990000px;}
.w5{width:188.130000px;}
.w4{width:192.090000px;}
.w6{width:200.595000px;}
.w2{width:359.175000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:1.440000px;}
.xd{left:10.800000px;}
.x5{left:21.780000px;}
.xa{left:31.185000px;}
.x7{left:47.340000px;}
.x3{left:51.120000px;}
.xb{left:106.235987px;}
.xe{left:112.895987px;}
.x13{left:127.475987px;}
.xf{left:138.635987px;}
.x14{left:159.329987px;}
.x2{left:161.145000px;}
.x12{left:164.009987px;}
.x1{left:212.430000px;}
.x11{left:410.114987px;}
.x8{left:420.375000px;}
.x10{left:446.474987px;}
.x9{left:656.205000px;}
.x4{left:761.010000px;}
.xc{left:807.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls5{letter-spacing:1.920000pt;}
.ls6{letter-spacing:4.480000pt;}
.lse{letter-spacing:8.960000pt;}
.lsa{letter-spacing:10.880000pt;}
.ls3{letter-spacing:13.440000pt;}
.lsb{letter-spacing:15.360000pt;}
.ls9{letter-spacing:21.120000pt;}
.lsd{letter-spacing:24.960000pt;}
.ls4{letter-spacing:28.288000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws0{word-spacing:-12.005120pt;}
.ws2{word-spacing:0.000000pt;}
._24{margin-left:-12.032000pt;}
._25{margin-left:-8.832000pt;}
._1d{margin-left:-4.608000pt;}
._5{margin-left:-3.200000pt;}
._4{margin-left:-2.176000pt;}
._2{margin-left:-0.960000pt;}
._0{width:0.938240pt;}
._3{width:2.624000pt;}
._f{width:3.904000pt;}
._10{width:4.800000pt;}
._14{width:6.144000pt;}
._d{width:7.232000pt;}
._e{width:8.384000pt;}
._1a{width:9.739093pt;}
._1b{width:11.008000pt;}
._a{width:12.170667pt;}
._6{width:13.120000pt;}
._7{width:14.795093pt;}
._17{width:17.002667pt;}
._16{width:18.304000pt;}
._13{width:19.712000pt;}
._12{width:20.736000pt;}
._1f{width:22.464000pt;}
._28{width:23.616000pt;}
._15{width:24.512000pt;}
._11{width:26.304000pt;}
._1e{width:27.541760pt;}
._b{width:28.480000pt;}
._c{width:29.440000pt;}
._23{width:30.464000pt;}
._8{width:31.360000pt;}
._9{width:32.832000pt;}
._26{width:33.728000pt;}
._27{width:34.688000pt;}
._29{width:35.712000pt;}
._22{width:36.672000pt;}
._1c{width:38.336000pt;}
._18{width:39.296000pt;}
._19{width:40.256000pt;}
._2a{width:48.192000pt;}
._20{width:49.152000pt;}
._21{width:50.112000pt;}
._1{width:73.578667pt;}
._2b{width:1512.565333pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.839867pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:4.800000pt;}
.y9{bottom:5.600000pt;}
.yf{bottom:11.200000pt;}
.y6{bottom:12.800000pt;}
.y7{bottom:16.960000pt;}
.yc{bottom:17.920000pt;}
.y2{bottom:35.680000pt;}
.y5{bottom:43.680000pt;}
.ye0{bottom:98.240000pt;}
.y6b{bottom:100.320000pt;}
.y3b{bottom:101.920000pt;}
.y141{bottom:102.720000pt;}
.yb4{bottom:107.520000pt;}
.y96{bottom:109.760000pt;}
.yfd{bottom:110.720000pt;}
.y161{bottom:112.320000pt;}
.ydf{bottom:116.640000pt;}
.y6a{bottom:118.720000pt;}
.y3a{bottom:120.320000pt;}
.y123{bottom:121.920000pt;}
.y95{bottom:128.160000pt;}
.yfc{bottom:129.120000pt;}
.y160{bottom:130.720000pt;}
.yb3{bottom:135.040000pt;}
.y69{bottom:137.120000pt;}
.y39{bottom:138.720000pt;}
.y122{bottom:140.320000pt;}
.y94{bottom:146.560000pt;}
.yfb{bottom:147.520000pt;}
.y15f{bottom:149.120000pt;}
.yde{bottom:153.440000pt;}
.y140{bottom:155.520000pt;}
.y38{bottom:157.120000pt;}
.y121{bottom:158.720000pt;}
.yb2{bottom:162.720000pt;}
.y68{bottom:163.520000pt;}
.y17d{bottom:165.120000pt;}
.yfa{bottom:165.920000pt;}
.ydd{bottom:171.840000pt;}
.y93{bottom:172.960000pt;}
.y37{bottom:175.546667pt;}
.y120{bottom:177.146667pt;}
.y13f{bottom:181.946667pt;}
.y17c{bottom:183.546667pt;}
.yf9{bottom:184.346667pt;}
.y67{bottom:189.946667pt;}
.yb1{bottom:190.266667pt;}
.y36{bottom:193.946667pt;}
.y11f{bottom:195.546667pt;}
.y92{bottom:199.386667pt;}
.yf8{bottom:202.746667pt;}
.y66{bottom:208.346667pt;}
.ydc{bottom:208.666667pt;}
.y17b{bottom:209.946667pt;}
.y35{bottom:212.346667pt;}
.y11e{bottom:213.946667pt;}
.y91{bottom:217.786667pt;}
.yb0{bottom:217.946667pt;}
.y15e{bottom:220.346667pt;}
.yf7{bottom:221.146667pt;}
.y65{bottom:226.746667pt;}
.ydb{bottom:227.066667pt;}
.y17a{bottom:228.346667pt;}
.y34{bottom:230.746667pt;}
.y11d{bottom:232.346667pt;}
.y13e{bottom:234.746667pt;}
.y90{bottom:236.186667pt;}
.yaf{bottom:236.346667pt;}
.y15d{bottom:238.746667pt;}
.yf6{bottom:239.546667pt;}
.y64{bottom:245.146667pt;}
.yda{bottom:245.466667pt;}
.y179{bottom:246.746667pt;}
.y33{bottom:249.146667pt;}
.y11c{bottom:250.746667pt;}
.y13d{bottom:253.146667pt;}
.y8f{bottom:254.586667pt;}
.y15c{bottom:257.146667pt;}
.yf5{bottom:257.946667pt;}
.y63{bottom:263.546667pt;}
.yae{bottom:263.706667pt;}
.yd9{bottom:263.866667pt;}
.y32{bottom:267.546667pt;}
.y11b{bottom:269.146667pt;}
.y13c{bottom:271.546667pt;}
.y8e{bottom:272.986667pt;}
.y178{bottom:273.146667pt;}
.y15b{bottom:275.546667pt;}
.yf4{bottom:276.346667pt;}
.y62{bottom:281.946667pt;}
.yd8{bottom:282.266667pt;}
.y31{bottom:285.946667pt;}
.y11a{bottom:287.546667pt;}
.y13b{bottom:289.946667pt;}
.yad{bottom:291.226667pt;}
.y8d{bottom:291.386667pt;}
.y177{bottom:291.546667pt;}
.yf3{bottom:294.746667pt;}
.y61{bottom:300.346667pt;}
.yd7{bottom:300.666667pt;}
.y15a{bottom:301.946667pt;}
.y119{bottom:305.946667pt;}
.y13a{bottom:308.346667pt;}
.y30{bottom:312.346667pt;}
.yf2{bottom:313.146667pt;}
.y8c{bottom:317.786667pt;}
.y176{bottom:317.946667pt;}
.y60{bottom:318.746667pt;}
.yd6{bottom:319.066667pt;}
.y159{bottom:320.346667pt;}
.y118{bottom:324.346667pt;}
.y139{bottom:326.746667pt;}
.yf1{bottom:331.546667pt;}
.y8b{bottom:336.186667pt;}
.y175{bottom:336.346667pt;}
.y5f{bottom:337.146667pt;}
.yd5{bottom:337.466667pt;}
.y2f{bottom:338.746667pt;}
.y117{bottom:342.746667pt;}
.yac{bottom:346.426667pt;}
.yf0{bottom:349.946667pt;}
.y138{bottom:353.146667pt;}
.y8a{bottom:354.586667pt;}
.y5e{bottom:355.546667pt;}
.y116{bottom:361.146667pt;}
.y174{bottom:362.746667pt;}
.yd4{bottom:363.866667pt;}
.y2e{bottom:365.146667pt;}
.yef{bottom:368.346667pt;}
.y137{bottom:371.546667pt;}
.y89{bottom:372.986667pt;}
.y5d{bottom:373.946667pt;}
.y115{bottom:379.546667pt;}
.y173{bottom:381.146667pt;}
.yd3{bottom:382.266667pt;}
.y2d{bottom:383.546667pt;}
.y136{bottom:389.986667pt;}
.y88{bottom:391.426667pt;}
.y5c{bottom:392.386667pt;}
.yee{bottom:394.786667pt;}
.y114{bottom:397.986667pt;}
.y172{bottom:399.586667pt;}
.yd2{bottom:400.706667pt;}
.yab{bottom:401.506667pt;}
.y135{bottom:408.386667pt;}
.y87{bottom:409.826667pt;}
.y2c{bottom:409.986667pt;}
.y5b{bottom:410.786667pt;}
.yed{bottom:413.186667pt;}
.y113{bottom:416.386667pt;}
.yd1{bottom:419.106667pt;}
.y171{bottom:425.986667pt;}
.y134{bottom:426.786667pt;}
.y86{bottom:428.226667pt;}
.y2b{bottom:428.386667pt;}
.y5a{bottom:429.186667pt;}
.yec{bottom:431.586667pt;}
.y112{bottom:434.786667pt;}
.yd0{bottom:437.506667pt;}
.y170{bottom:444.386667pt;}
.y133{bottom:445.186667pt;}
.y85{bottom:446.626667pt;}
.y2a{bottom:446.786667pt;}
.y59{bottom:447.586667pt;}
.yeb{bottom:449.986667pt;}
.y111{bottom:453.186667pt;}
.ycf{bottom:455.906667pt;}
.y188{bottom:461.986667pt;}
.y132{bottom:463.586667pt;}
.y84{bottom:465.026667pt;}
.y29{bottom:465.186667pt;}
.y58{bottom:465.986667pt;}
.yea{bottom:468.386667pt;}
.y16f{bottom:470.786667pt;}
.y110{bottom:471.586667pt;}
.y158{bottom:473.186667pt;}
.yce{bottom:474.306667pt;}
.y131{bottom:481.986667pt;}
.y83{bottom:483.426667pt;}
.y28{bottom:483.586667pt;}
.y57{bottom:484.386667pt;}
.y187{bottom:488.386667pt;}
.y16e{bottom:489.186667pt;}
.y10f{bottom:489.986667pt;}
.y157{bottom:491.586667pt;}
.yaa{bottom:492.386667pt;}
.ycd{bottom:492.706667pt;}
.ye9{bottom:494.786667pt;}
.y130{bottom:500.386667pt;}
.y82{bottom:501.826667pt;}
.y27{bottom:501.986667pt;}
.y56{bottom:502.786667pt;}
.y16d{bottom:507.586667pt;}
.y10e{bottom:508.386667pt;}
.y156{bottom:509.986667pt;}
.ya9{bottom:510.786667pt;}
.ycc{bottom:511.106667pt;}
.ye8{bottom:513.186667pt;}
.y186{bottom:514.786667pt;}
.y12f{bottom:518.786667pt;}
.y81{bottom:520.226667pt;}
.y26{bottom:520.386667pt;}
.y55{bottom:521.186667pt;}
.y10d{bottom:526.786667pt;}
.ya8{bottom:529.186667pt;}
.ycb{bottom:529.506667pt;}
.y16c{bottom:533.986667pt;}
.y155{bottom:536.386667pt;}
.y12e{bottom:537.186667pt;}
.y80{bottom:538.626667pt;}
.y25{bottom:538.786667pt;}
.y54{bottom:539.586667pt;}
.y185{bottom:541.186667pt;}
.y10c{bottom:545.186667pt;}
.ya7{bottom:547.586667pt;}
.yca{bottom:547.906667pt;}
.ye{bottom:548.866667pt;}
.y16b{bottom:552.386667pt;}
.y154{bottom:554.786667pt;}
.y12d{bottom:555.586667pt;}
.y7f{bottom:557.026667pt;}
.y24{bottom:557.186667pt;}
.y53{bottom:557.986667pt;}
.y10b{bottom:563.586667pt;}
.ya6{bottom:565.986667pt;}
.yc9{bottom:566.306667pt;}
.y184{bottom:567.586667pt;}
.y16a{bottom:570.786667pt;}
.y153{bottom:573.186667pt;}
.y12c{bottom:573.986667pt;}
.y23{bottom:575.586667pt;}
.y52{bottom:576.386667pt;}
.y10a{bottom:581.986667pt;}
.y7e{bottom:583.426667pt;}
.ya5{bottom:584.386667pt;}
.y12b{bottom:592.386667pt;}
.yc8{bottom:592.706667pt;}
.y22{bottom:593.986667pt;}
.y51{bottom:594.786667pt;}
.y169{bottom:597.186667pt;}
.y152{bottom:599.613333pt;}
.y109{bottom:600.413333pt;}
.ya4{bottom:602.813333pt;}
.y7d{bottom:609.853333pt;}
.y12a{bottom:610.813333pt;}
.yc7{bottom:611.133333pt;}
.y21{bottom:612.413333pt;}
.y50{bottom:613.213333pt;}
.y168{bottom:615.613333pt;}
.y151{bottom:618.013333pt;}
.y108{bottom:618.813333pt;}
.y183{bottom:620.413333pt;}
.ya3{bottom:621.213333pt;}
.y7c{bottom:628.253333pt;}
.y129{bottom:629.213333pt;}
.yc6{bottom:629.533333pt;}
.y20{bottom:630.813333pt;}
.y4f{bottom:631.613333pt;}
.y167{bottom:634.013333pt;}
.y107{bottom:637.213333pt;}
.ya2{bottom:639.613333pt;}
.y150{bottom:644.413333pt;}
.y7b{bottom:646.653333pt;}
.y182{bottom:646.813333pt;}
.y128{bottom:647.613333pt;}
.yc5{bottom:647.933333pt;}
.y1f{bottom:649.213333pt;}
.y4e{bottom:650.013333pt;}
.y106{bottom:655.613333pt;}
.ya1{bottom:658.013333pt;}
.y166{bottom:660.413333pt;}
.y14f{bottom:662.813333pt;}
.y7a{bottom:665.053333pt;}
.y127{bottom:666.013333pt;}
.yc4{bottom:666.333333pt;}
.y1e{bottom:667.613333pt;}
.y4d{bottom:668.413333pt;}
.y181{bottom:673.213333pt;}
.y105{bottom:674.013333pt;}
.ya0{bottom:676.413333pt;}
.y165{bottom:678.813333pt;}
.y79{bottom:683.453333pt;}
.y126{bottom:684.413333pt;}
.y1d{bottom:686.013333pt;}
.y4c{bottom:686.813333pt;}
.y14e{bottom:689.213333pt;}
.y104{bottom:692.413333pt;}
.yc3{bottom:692.733333pt;}
.y164{bottom:697.213333pt;}
.y180{bottom:699.613333pt;}
.y78{bottom:701.853333pt;}
.y9f{bottom:702.813333pt;}
.y1c{bottom:704.413333pt;}
.y4b{bottom:705.213333pt;}
.y14d{bottom:707.613333pt;}
.y103{bottom:710.813333pt;}
.yc2{bottom:719.133333pt;}
.y9e{bottom:721.213333pt;}
.y1b{bottom:722.813333pt;}
.y4a{bottom:723.613333pt;}
.y14c{bottom:726.013333pt;}
.y77{bottom:728.253333pt;}
.y102{bottom:729.213333pt;}
.yc1{bottom:737.533333pt;}
.y9d{bottom:739.613333pt;}
.y1a{bottom:741.213333pt;}
.y49{bottom:742.013333pt;}
.y76{bottom:746.653333pt;}
.y101{bottom:747.613333pt;}
.y14b{bottom:752.413333pt;}
.yc0{bottom:755.933333pt;}
.y9c{bottom:758.013333pt;}
.y48{bottom:760.413333pt;}
.y100{bottom:766.013333pt;}
.y19{bottom:767.613333pt;}
.ye7{bottom:768.413333pt;}
.y14a{bottom:770.813333pt;}
.y125{bottom:774.013333pt;}
.y75{bottom:774.173333pt;}
.ybf{bottom:774.333333pt;}
.y47{bottom:778.813333pt;}
.y9b{bottom:784.413333pt;}
.ye6{bottom:786.813333pt;}
.y124{bottom:792.413333pt;}
.y74{bottom:792.573333pt;}
.y18{bottom:794.013333pt;}
.y46{bottom:797.213333pt;}
.ybe{bottom:800.733333pt;}
.yff{bottom:802.813333pt;}
.ye5{bottom:805.213333pt;}
.y9a{bottom:810.813333pt;}
.y45{bottom:815.653333pt;}
.ybd{bottom:819.173333pt;}
.y73{bottom:820.133333pt;}
.y17{bottom:820.453333pt;}
.yfe{bottom:821.253333pt;}
.ye4{bottom:823.653333pt;}
.y99{bottom:829.253333pt;}
.y163{bottom:831.653333pt;}
.y149{bottom:834.053333pt;}
.ybc{bottom:837.573333pt;}
.y72{bottom:838.533333pt;}
.y44{bottom:842.053333pt;}
.y16{bottom:846.853333pt;}
.y98{bottom:847.653333pt;}
.y162{bottom:850.053333pt;}
.y71{bottom:856.933333pt;}
.y148{bottom:860.453333pt;}
.ybb{bottom:864.933333pt;}
.y97{bottom:866.053333pt;}
.y43{bottom:868.453333pt;}
.y15{bottom:873.253333pt;}
.y147{bottom:878.853333pt;}
.y70{bottom:884.453333pt;}
.y17f{bottom:886.853333pt;}
.yba{bottom:892.613333pt;}
.y42{bottom:894.853333pt;}
.y146{bottom:897.253333pt;}
.y14{bottom:899.653333pt;}
.y6f{bottom:902.853333pt;}
.y17e{bottom:905.253333pt;}
.yb9{bottom:911.013333pt;}
.ye3{bottom:913.253333pt;}
.y41{bottom:921.253333pt;}
.y145{bottom:923.653333pt;}
.y13{bottom:926.053333pt;}
.y6e{bottom:930.373333pt;}
.ye2{bottom:931.653333pt;}
.yb8{bottom:938.373333pt;}
.y40{bottom:939.653333pt;}
.y144{bottom:942.053333pt;}
.y6d{bottom:948.773333pt;}
.ye1{bottom:950.053333pt;}
.y12{bottom:952.453333pt;}
.y3f{bottom:958.053333pt;}
.yb7{bottom:966.053333pt;}
.y6c{bottom:967.333333pt;}
.y143{bottom:968.453333pt;}
.y3e{bottom:976.453333pt;}
.y11{bottom:978.853333pt;}
.yb6{bottom:984.453333pt;}
.y142{bottom:986.853333pt;}
.y3d{bottom:994.853333pt;}
.y10{bottom:1005.253333pt;}
.yb5{bottom:1011.973333pt;}
.y3c{bottom:1013.253333pt;}
.y4{bottom:1059.360000pt;}
.y1{bottom:1067.360000pt;}
.yb{bottom:1107.840000pt;}
.ya{bottom:1121.760000pt;}
.h6{height:17.440000pt;}
.h8{height:19.040000pt;}
.hb{height:25.120000pt;}
.h9{height:44.327188pt;}
.h2{height:48.800000pt;}
.hd{height:53.406250pt;}
.he{height:54.375000pt;}
.h7{height:54.390938pt;}
.hc{height:54.875000pt;}
.h4{height:56.800000pt;}
.ha{height:58.563750pt;}
.h5{height:60.288750pt;}
.h3{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.880000pt;}
.w8{width:75.546667pt;}
.w5{width:167.226667pt;}
.w4{width:170.746667pt;}
.w6{width:178.306667pt;}
.w2{width:319.266667pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:1.280000pt;}
.xd{left:9.600000pt;}
.x5{left:19.360000pt;}
.xa{left:27.720000pt;}
.x7{left:42.080000pt;}
.x3{left:45.440000pt;}
.xb{left:94.431988pt;}
.xe{left:100.351988pt;}
.x13{left:113.311988pt;}
.xf{left:123.231988pt;}
.x14{left:141.626655pt;}
.x2{left:143.240000pt;}
.x12{left:145.786655pt;}
.x1{left:188.826667pt;}
.x11{left:364.546655pt;}
.x8{left:373.666667pt;}
.x10{left:396.866655pt;}
.x9{left:583.293333pt;}
.x4{left:676.453333pt;}
.xc{left:718.213333pt;}
}




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