
    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_78ada7779ab03352303be5e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_bad406fede66223510b0f515.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_ddb3c48ad61d9672e6327b0a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_bee6d09baa56e478c6a0407e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_7180cdeb60911276d00bd7f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2ca0318867273c0db942ff40.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_de111462a77bbefa1164f7a6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_367da2a7078c468cae6309fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.097168;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_574b27d43c4df7caafe8e623.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760021px;}
.v1{vertical-align:27.360000px;}
.ls12{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.432000px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.lse{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.360002px;}
.lsc{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.792000px;}
.lsb{letter-spacing:3.600000px;}
.lsa{letter-spacing:9.360000px;}
.ls14{letter-spacing:11.640000px;}
.ls5{letter-spacing:13.080000px;}
.ls17{letter-spacing:17.424000px;}
.ls15{letter-spacing:23.040000px;}
.ls3{letter-spacing:29.520000px;}
.ls16{letter-spacing:53.424000px;}
.ls4{letter-spacing:62.640000px;}
.ls2{letter-spacing:74.880000px;}
.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;}
}
.ws1{word-spacing:-23.940000px;}
.ws8{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.568000px;}
.ws9{word-spacing:-17.208000px;}
.ws2{word-spacing:-16.488000px;}
.wsb{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-2.226240px;}
._1{margin-left:-1.209600px;}
._0{width:1.347840px;}
._28{width:2.395200px;}
._21{width:3.456000px;}
._8{width:4.797600px;}
._7{width:5.904000px;}
._14{width:7.272000px;}
._23{width:8.928000px;}
._20{width:10.281600px;}
._16{width:11.376000px;}
._17{width:12.960000px;}
._18{width:13.964160px;}
._19{width:15.987840px;}
._24{width:16.990080px;}
._15{width:19.656000px;}
._5{width:21.096000px;}
._6{width:22.128000px;}
._26{width:23.913600px;}
._11{width:25.704000px;}
._12{width:26.908320px;}
._f{width:28.848000px;}
._10{width:29.893920px;}
._2b{width:31.034400px;}
._22{width:32.256000px;}
._1a{width:33.696000px;}
._2a{width:34.920000px;}
._1e{width:40.248000px;}
._1f{width:41.904000px;}
._25{width:43.200000px;}
._27{width:44.421600px;}
._d{width:45.648000px;}
._e{width:46.713600px;}
._9{width:47.736000px;}
._a{width:49.112160px;}
._29{width:50.295840px;}
._2c{width:51.552000px;}
._2d{width:52.980000px;}
._3{width:58.716000px;}
._4{width:59.837760px;}
._2{width:60.948000px;}
._13{width:61.992000px;}
._1b{width:63.432000px;}
._1c{width:64.728000px;}
._c{width:75.456000px;}
._b{width:77.076000px;}
._32{width:91.188000px;}
._31{width:92.280000px;}
._2e{width:114.408000px;}
._2f{width:177.336000px;}
._30{width:179.938560px;}
.fc5{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:48.240000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.520000px;}
.y69{bottom:3.600000px;}
.y6b{bottom:3.780000px;}
.y6d{bottom:4.320000px;}
.y8f{bottom:5.760000px;}
.y67{bottom:6.660000px;}
.y89{bottom:7.020000px;}
.y45{bottom:7.380000px;}
.yab{bottom:7.554000px;}
.y47{bottom:7.560000px;}
.y96{bottom:8.640000px;}
.y5c{bottom:9.180000px;}
.y5e{bottom:11.160000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y8b{bottom:19.980000px;}
.y5f{bottom:20.520000px;}
.y7{bottom:20.700000px;}
.y8a{bottom:23.220000px;}
.y8d{bottom:26.640000px;}
.y65{bottom:26.820000px;}
.y60{bottom:27.000000px;}
.y88{bottom:27.180000px;}
.y91{bottom:27.225000px;}
.y4{bottom:27.900000px;}
.y5d{bottom:29.160000px;}
.y8e{bottom:30.600000px;}
.y99{bottom:31.140000px;}
.ya9{bottom:31.314000px;}
.y94{bottom:31.320000px;}
.y8c{bottom:35.460000px;}
.y5b{bottom:38.880000px;}
.y6{bottom:45.360000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y64{bottom:50.580000px;}
.ya0{bottom:54.900000px;}
.yaa{bottom:55.074000px;}
.y93{bottom:55.080000px;}
.y9e{bottom:55.125000px;}
.y62{bottom:59.580000px;}
.y87{bottom:63.180000px;}
.y5a{bottom:68.400000px;}
.y2{bottom:69.300000px;}
.y58{bottom:71.460000px;}
.ye{bottom:74.916000px;}
.y85{bottom:75.060000px;}
.y5{bottom:75.960000px;}
.y92{bottom:78.840000px;}
.y61{bottom:83.340000px;}
.y86{bottom:87.120000px;}
.ya{bottom:91.116000px;}
.y97{bottom:132.876000px;}
.y54{bottom:135.396000px;}
.y38{bottom:139.896000px;}
.ya8{bottom:145.656000px;}
.y95{bottom:157.350000px;}
.y53{bottom:159.150000px;}
.y37{bottom:163.650000px;}
.y52{bottom:182.910000px;}
.y84{bottom:184.350000px;}
.y56{bottom:187.050000px;}
.y36{bottom:187.410000px;}
.yc6{bottom:192.090000px;}
.y51{bottom:206.850000px;}
.y55{bottom:210.990000px;}
.yda{bottom:211.170000px;}
.y35{bottom:211.350000px;}
.yc5{bottom:212.070000px;}
.ya7{bottom:217.830000px;}
.y50{bottom:223.950000px;}
.yd9{bottom:234.930000px;}
.y34{bottom:235.110000px;}
.y4f{bottom:248.430000px;}
.y33{bottom:258.870000px;}
.y4e{bottom:280.110000px;}
.y90{bottom:280.290000px;}
.y32{bottom:282.675000px;}
.ya6{bottom:290.055000px;}
.y4d{bottom:303.915000px;}
.y41{bottom:306.075000px;}
.y31{bottom:306.435000px;}
.ycf{bottom:322.995000px;}
.y4c{bottom:328.035000px;}
.yd8{bottom:330.195000px;}
.y30{bottom:330.375000px;}
.yce{bottom:346.755000px;}
.y4b{bottom:351.795000px;}
.y2f{bottom:354.135000px;}
.ya5{bottom:362.235000px;}
.ycd{bottom:370.695000px;}
.y83{bottom:375.195000px;}
.y4a{bottom:375.735000px;}
.y2e{bottom:377.895000px;}
.ycc{bottom:394.455000px;}
.y82{bottom:398.955000px;}
.y49{bottom:399.495000px;}
.y2d{bottom:401.655000px;}
.ycb{bottom:418.215000px;}
.y81{bottom:422.895000px;}
.y48{bottom:423.255000px;}
.yd7{bottom:425.415000px;}
.y2c{bottom:425.595000px;}
.ya4{bottom:434.415000px;}
.y46{bottom:440.355000px;}
.yca{bottom:441.975000px;}
.y80{bottom:447.015000px;}
.y2b{bottom:448.995000px;}
.y40{bottom:449.355000px;}
.y44{bottom:465.015000px;}
.yc9{bottom:465.915000px;}
.y7f{bottom:470.775000px;}
.y2a{bottom:472.755000px;}
.y3f{bottom:473.115000px;}
.yc8{bottom:489.675000px;}
.y7e{bottom:494.535000px;}
.yc4{bottom:495.435000px;}
.y43{bottom:496.515000px;}
.y29{bottom:496.875000px;}
.ya3{bottom:506.595000px;}
.yc7{bottom:509.115000px;}
.y7d{bottom:518.475000px;}
.yc3{bottom:519.195000px;}
.y42{bottom:520.455000px;}
.yd6{bottom:520.635000px;}
.y28{bottom:520.815000px;}
.y7c{bottom:542.235000px;}
.yc2{bottom:543.135000px;}
.y27{bottom:544.575000px;}
.y7b{bottom:566.025000px;}
.yc1{bottom:566.925000px;}
.y26{bottom:568.365000px;}
.ya2{bottom:578.805000px;}
.y7a{bottom:589.785000px;}
.yc0{bottom:590.685000px;}
.yd5{bottom:591.765000px;}
.y25{bottom:592.125000px;}
.y79{bottom:613.725000px;}
.ybf{bottom:614.445000px;}
.yd4{bottom:615.885000px;}
.y24{bottom:616.065000px;}
.y78{bottom:637.485000px;}
.ybe{bottom:638.205000px;}
.y3e{bottom:639.465000px;}
.y23{bottom:639.825000px;}
.ydd{bottom:640.005000px;}
.ya1{bottom:650.985000px;}
.y77{bottom:661.245000px;}
.ybd{bottom:662.145000px;}
.y22{bottom:663.585000px;}
.y76{bottom:685.005000px;}
.ybc{bottom:685.905000px;}
.y21{bottom:687.345000px;}
.y75{bottom:708.945000px;}
.ybb{bottom:709.665000px;}
.ydc{bottom:710.925000px;}
.yd3{bottom:711.105000px;}
.y20{bottom:711.285000px;}
.y9f{bottom:723.165000px;}
.y74{bottom:732.705000px;}
.yba{bottom:733.425000px;}
.ydb{bottom:734.685000px;}
.yd2{bottom:734.865000px;}
.y1f{bottom:735.045000px;}
.y73{bottom:756.465000px;}
.yb9{bottom:757.365000px;}
.y1e{bottom:758.805000px;}
.y72{bottom:780.225000px;}
.yb8{bottom:781.125000px;}
.y1d{bottom:782.565000px;}
.y9d{bottom:795.165000px;}
.y71{bottom:803.985000px;}
.yb7{bottom:804.885000px;}
.y1c{bottom:806.325000px;}
.y70{bottom:827.925000px;}
.yb6{bottom:828.645000px;}
.yd1{bottom:830.085000px;}
.y1b{bottom:830.265000px;}
.yd0{bottom:849.750000px;}
.y6f{bottom:851.730000px;}
.yb5{bottom:852.630000px;}
.y1a{bottom:854.070000px;}
.y9c{bottom:867.390000px;}
.y6e{bottom:875.490000px;}
.yb4{bottom:876.390000px;}
.y19{bottom:877.830000px;}
.y6c{bottom:892.590000px;}
.yb3{bottom:900.150000px;}
.y18{bottom:901.590000px;}
.y6a{bottom:914.190000px;}
.yb2{bottom:923.910000px;}
.y17{bottom:925.530000px;}
.y68{bottom:935.250000px;}
.y9b{bottom:939.570000px;}
.yb1{bottom:947.850000px;}
.y16{bottom:949.290000px;}
.y66{bottom:955.950000px;}
.yb0{bottom:971.610000px;}
.y15{bottom:972.690000px;}
.y3d{bottom:973.050000px;}
.y57{bottom:979.710000px;}
.yaf{bottom:995.370000px;}
.y14{bottom:996.810000px;}
.y9a{bottom:1011.750000px;}
.yae{bottom:1019.130000px;}
.y13{bottom:1020.750000px;}
.yad{bottom:1043.070000px;}
.y12{bottom:1044.150000px;}
.y3c{bottom:1044.510000px;}
.y63{bottom:1045.230000px;}
.yac{bottom:1060.170000px;}
.y11{bottom:1067.910000px;}
.y3b{bottom:1068.270000px;}
.y98{bottom:1083.930000px;}
.y10{bottom:1091.670000px;}
.y3a{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y39{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h1b{height:19.980000px;}
.h1c{height:20.160000px;}
.h1d{height:20.700000px;}
.h1a{height:23.040000px;}
.he{height:23.760000px;}
.hf{height:23.940000px;}
.h24{height:26.280000px;}
.h8{height:33.120000px;}
.h25{height:47.556000px;}
.hb{height:52.628906px;}
.h22{height:63.396000px;}
.hc{height:63.457031px;}
.h19{height:64.800000px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h12{height:70.664085px;}
.h15{height:70.664088px;}
.h16{height:70.664089px;}
.h14{height:70.664091px;}
.h1f{height:70.664094px;}
.h13{height:70.664096px;}
.h21{height:70.664098px;}
.h20{height:70.664104px;}
.h11{height:70.664107px;}
.h17{height:71.104943px;}
.h28{height:71.280000px;}
.h29{height:71.316000px;}
.h26{height:71.460000px;}
.h27{height:71.496000px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h2a{height:74.004654px;}
.hd{height:74.704922px;}
.h4{height:82.635820px;}
.h18{height:86.256000px;}
.h23{height:95.220000px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h10{height:151.770000px;}
.h1e{height:159.330000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w14{width:30.960000px;}
.w1f{width:41.040000px;}
.w21{width:41.400000px;}
.w22{width:41.760000px;}
.w23{width:41.796000px;}
.w18{width:41.940000px;}
.w6{width:50.400000px;}
.w17{width:52.380000px;}
.w24{width:52.560000px;}
.w19{width:54.576000px;}
.w4{width:61.590000px;}
.w1e{width:62.100000px;}
.w16{width:63.036000px;}
.w1d{width:78.120000px;}
.w1a{width:80.820000px;}
.w27{width:84.240000px;}
.w15{width:90.180000px;}
.w1b{width:92.016000px;}
.wa{width:92.340000px;}
.w10{width:92.520000px;}
.wf{width:100.116000px;}
.wc{width:100.296000px;}
.wb{width:100.440000px;}
.we{width:100.476000px;}
.wd{width:100.620000px;}
.w20{width:104.076000px;}
.w26{width:105.696000px;}
.w2{width:125.856000px;}
.w1c{width:140.580000px;}
.w13{width:158.970000px;}
.w11{width:177.510000px;}
.w12{width:177.660000px;}
.w25{width:190.650000px;}
.w3{width:705.525000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x42{left:3.240000px;}
.x33{left:4.320000px;}
.x48{left:6.300000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x49{left:10.800000px;}
.x4b{left:12.060000px;}
.x5c{left:14.940000px;}
.x44{left:16.020000px;}
.x3a{left:17.100000px;}
.x46{left:18.540000px;}
.x7{left:19.800000px;}
.x4a{left:21.600000px;}
.x26{left:23.220000px;}
.x1{left:25.199970px;}
.x5b{left:26.280000px;}
.x6{left:27.354000px;}
.x20{left:28.620000px;}
.x3{left:30.239973px;}
.x3e{left:31.890000px;}
.x1d{left:33.654000px;}
.x24{left:35.460000px;}
.x35{left:37.620000px;}
.x3b{left:41.400000px;}
.x59{left:43.245000px;}
.x56{left:46.800000px;}
.x38{left:48.465000px;}
.x45{left:53.280000px;}
.x40{left:57.240000px;}
.x2d{left:58.905000px;}
.x36{left:62.100000px;}
.x2f{left:63.765000px;}
.x5{left:71.994000px;}
.x2b{left:73.260000px;}
.x29{left:75.600000px;}
.x2e{left:77.580000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x4c{left:129.635987px;}
.x32{left:131.976000px;}
.x64{left:138.275987px;}
.x1c{left:148.356000px;}
.x12{left:151.409987px;}
.x13{left:153.029987px;}
.x61{left:159.329987px;}
.x34{left:163.290000px;}
.x14{left:169.409987px;}
.x19{left:180.749987px;}
.x5e{left:188.669987px;}
.x4f{left:193.530000px;}
.x60{left:196.769987px;}
.x28{left:212.609987px;}
.x1b{left:223.769987px;}
.x31{left:248.249987px;}
.x1e{left:249.510000px;}
.x37{left:253.830000px;}
.x63{left:266.249987px;}
.x50{left:298.515000px;}
.x39{left:317.775000px;}
.x18{left:333.074987px;}
.x17{left:338.834987px;}
.x51{left:340.635000px;}
.x1f{left:350.535000px;}
.x15{left:357.554987px;}
.x16{left:370.514987px;}
.x52{left:393.915000px;}
.x4d{left:415.694987px;}
.x3c{left:423.975000px;}
.x53{left:436.395000px;}
.x5f{left:450.074987px;}
.x21{left:451.875000px;}
.x3d{left:466.635000px;}
.x54{left:478.875000px;}
.x2a{left:510.405000px;}
.x3f{left:521.565000px;}
.x22{left:553.065000px;}
.x55{left:574.665000px;}
.x41{left:602.745000px;}
.xb{left:619.305000px;}
.x57{left:627.765000px;}
.x23{left:654.225000px;}
.xc{left:669.705000px;}
.x58{left:680.865000px;}
.xd{left:686.805000px;}
.x2c{left:688.785000px;}
.x43{left:695.130000px;}
.xe{left:704.310000px;}
.xf{left:721.590000px;}
.x10{left:738.870000px;}
.x25{left:755.250000px;}
.x30{left:759.029987px;}
.x27{left:763.529987px;}
.x47{left:773.610000px;}
.x1a{left:777.029987px;}
.x5a{left:787.290000px;}
.x8{left:831.390000px;}
.x62{left:834.989987px;}
.x5d{left:837.149987px;}
.x4e{left:840.029987px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120018pt;}
.v1{vertical-align:24.320000pt;}
.ls12{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.384000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.320002pt;}
.lsc{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.704000pt;}
.lsb{letter-spacing:3.200000pt;}
.lsa{letter-spacing:8.320000pt;}
.ls14{letter-spacing:10.346667pt;}
.ls5{letter-spacing:11.626667pt;}
.ls17{letter-spacing:15.488000pt;}
.ls15{letter-spacing:20.480000pt;}
.ls3{letter-spacing:26.240000pt;}
.ls16{letter-spacing:47.488000pt;}
.ls4{letter-spacing:55.680000pt;}
.ls2{letter-spacing:66.560000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws8{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.616000pt;}
.ws9{word-spacing:-15.296000pt;}
.ws2{word-spacing:-14.656000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-1.978880pt;}
._1{margin-left:-1.075200pt;}
._0{width:1.198080pt;}
._28{width:2.129067pt;}
._21{width:3.072000pt;}
._8{width:4.264533pt;}
._7{width:5.248000pt;}
._14{width:6.464000pt;}
._23{width:7.936000pt;}
._20{width:9.139200pt;}
._16{width:10.112000pt;}
._17{width:11.520000pt;}
._18{width:12.412587pt;}
._19{width:14.211413pt;}
._24{width:15.102293pt;}
._15{width:17.472000pt;}
._5{width:18.752000pt;}
._6{width:19.669333pt;}
._26{width:21.256533pt;}
._11{width:22.848000pt;}
._12{width:23.918507pt;}
._f{width:25.642667pt;}
._10{width:26.572373pt;}
._2b{width:27.586133pt;}
._22{width:28.672000pt;}
._1a{width:29.952000pt;}
._2a{width:31.040000pt;}
._1e{width:35.776000pt;}
._1f{width:37.248000pt;}
._25{width:38.400000pt;}
._27{width:39.485867pt;}
._d{width:40.576000pt;}
._e{width:41.523200pt;}
._9{width:42.432000pt;}
._a{width:43.655253pt;}
._29{width:44.707413pt;}
._2c{width:45.824000pt;}
._2d{width:47.093333pt;}
._3{width:52.192000pt;}
._4{width:53.189120pt;}
._2{width:54.176000pt;}
._13{width:55.104000pt;}
._1b{width:56.384000pt;}
._1c{width:57.536000pt;}
._c{width:67.072000pt;}
._b{width:68.512000pt;}
._32{width:81.056000pt;}
._31{width:82.026667pt;}
._2e{width:101.696000pt;}
._2f{width:157.632000pt;}
._30{width:159.945387pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.240000pt;}
.y69{bottom:3.200000pt;}
.y6b{bottom:3.360000pt;}
.y6d{bottom:3.840000pt;}
.y8f{bottom:5.120000pt;}
.y67{bottom:5.920000pt;}
.y89{bottom:6.240000pt;}
.y45{bottom:6.560000pt;}
.yab{bottom:6.714667pt;}
.y47{bottom:6.720000pt;}
.y96{bottom:7.680000pt;}
.y5c{bottom:8.160000pt;}
.y5e{bottom:9.920000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y8b{bottom:17.760000pt;}
.y5f{bottom:18.240000pt;}
.y7{bottom:18.400000pt;}
.y8a{bottom:20.640000pt;}
.y8d{bottom:23.680000pt;}
.y65{bottom:23.840000pt;}
.y60{bottom:24.000000pt;}
.y88{bottom:24.160000pt;}
.y91{bottom:24.200000pt;}
.y4{bottom:24.800000pt;}
.y5d{bottom:25.920000pt;}
.y8e{bottom:27.200000pt;}
.y99{bottom:27.680000pt;}
.ya9{bottom:27.834667pt;}
.y94{bottom:27.840000pt;}
.y8c{bottom:31.520000pt;}
.y5b{bottom:34.560000pt;}
.y6{bottom:40.320000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y64{bottom:44.960000pt;}
.ya0{bottom:48.800000pt;}
.yaa{bottom:48.954667pt;}
.y93{bottom:48.960000pt;}
.y9e{bottom:49.000000pt;}
.y62{bottom:52.960000pt;}
.y87{bottom:56.160000pt;}
.y5a{bottom:60.800000pt;}
.y2{bottom:61.600000pt;}
.y58{bottom:63.520000pt;}
.ye{bottom:66.592000pt;}
.y85{bottom:66.720000pt;}
.y5{bottom:67.520000pt;}
.y92{bottom:70.080000pt;}
.y61{bottom:74.080000pt;}
.y86{bottom:77.440000pt;}
.ya{bottom:80.992000pt;}
.y97{bottom:118.112000pt;}
.y54{bottom:120.352000pt;}
.y38{bottom:124.352000pt;}
.ya8{bottom:129.472000pt;}
.y95{bottom:139.866667pt;}
.y53{bottom:141.466667pt;}
.y37{bottom:145.466667pt;}
.y52{bottom:162.586667pt;}
.y84{bottom:163.866667pt;}
.y56{bottom:166.266667pt;}
.y36{bottom:166.586667pt;}
.yc6{bottom:170.746667pt;}
.y51{bottom:183.866667pt;}
.y55{bottom:187.546667pt;}
.yda{bottom:187.706667pt;}
.y35{bottom:187.866667pt;}
.yc5{bottom:188.506667pt;}
.ya7{bottom:193.626667pt;}
.y50{bottom:199.066667pt;}
.yd9{bottom:208.826667pt;}
.y34{bottom:208.986667pt;}
.y4f{bottom:220.826667pt;}
.y33{bottom:230.106667pt;}
.y4e{bottom:248.986667pt;}
.y90{bottom:249.146667pt;}
.y32{bottom:251.266667pt;}
.ya6{bottom:257.826667pt;}
.y4d{bottom:270.146667pt;}
.y41{bottom:272.066667pt;}
.y31{bottom:272.386667pt;}
.ycf{bottom:287.106667pt;}
.y4c{bottom:291.586667pt;}
.yd8{bottom:293.506667pt;}
.y30{bottom:293.666667pt;}
.yce{bottom:308.226667pt;}
.y4b{bottom:312.706667pt;}
.y2f{bottom:314.786667pt;}
.ya5{bottom:321.986667pt;}
.ycd{bottom:329.506667pt;}
.y83{bottom:333.506667pt;}
.y4a{bottom:333.986667pt;}
.y2e{bottom:335.906667pt;}
.ycc{bottom:350.626667pt;}
.y82{bottom:354.626667pt;}
.y49{bottom:355.106667pt;}
.y2d{bottom:357.026667pt;}
.ycb{bottom:371.746667pt;}
.y81{bottom:375.906667pt;}
.y48{bottom:376.226667pt;}
.yd7{bottom:378.146667pt;}
.y2c{bottom:378.306667pt;}
.ya4{bottom:386.146667pt;}
.y46{bottom:391.426667pt;}
.yca{bottom:392.866667pt;}
.y80{bottom:397.346667pt;}
.y2b{bottom:399.106667pt;}
.y40{bottom:399.426667pt;}
.y44{bottom:413.346667pt;}
.yc9{bottom:414.146667pt;}
.y7f{bottom:418.466667pt;}
.y2a{bottom:420.226667pt;}
.y3f{bottom:420.546667pt;}
.yc8{bottom:435.266667pt;}
.y7e{bottom:439.586667pt;}
.yc4{bottom:440.386667pt;}
.y43{bottom:441.346667pt;}
.y29{bottom:441.666667pt;}
.ya3{bottom:450.306667pt;}
.yc7{bottom:452.546667pt;}
.y7d{bottom:460.866667pt;}
.yc3{bottom:461.506667pt;}
.y42{bottom:462.626667pt;}
.yd6{bottom:462.786667pt;}
.y28{bottom:462.946667pt;}
.y7c{bottom:481.986667pt;}
.yc2{bottom:482.786667pt;}
.y27{bottom:484.066667pt;}
.y7b{bottom:503.133333pt;}
.yc1{bottom:503.933333pt;}
.y26{bottom:505.213333pt;}
.ya2{bottom:514.493333pt;}
.y7a{bottom:524.253333pt;}
.yc0{bottom:525.053333pt;}
.yd5{bottom:526.013333pt;}
.y25{bottom:526.333333pt;}
.y79{bottom:545.533333pt;}
.ybf{bottom:546.173333pt;}
.yd4{bottom:547.453333pt;}
.y24{bottom:547.613333pt;}
.y78{bottom:566.653333pt;}
.ybe{bottom:567.293333pt;}
.y3e{bottom:568.413333pt;}
.y23{bottom:568.733333pt;}
.ydd{bottom:568.893333pt;}
.ya1{bottom:578.653333pt;}
.y77{bottom:587.773333pt;}
.ybd{bottom:588.573333pt;}
.y22{bottom:589.853333pt;}
.y76{bottom:608.893333pt;}
.ybc{bottom:609.693333pt;}
.y21{bottom:610.973333pt;}
.y75{bottom:630.173333pt;}
.ybb{bottom:630.813333pt;}
.ydc{bottom:631.933333pt;}
.yd3{bottom:632.093333pt;}
.y20{bottom:632.253333pt;}
.y9f{bottom:642.813333pt;}
.y74{bottom:651.293333pt;}
.yba{bottom:651.933333pt;}
.ydb{bottom:653.053333pt;}
.yd2{bottom:653.213333pt;}
.y1f{bottom:653.373333pt;}
.y73{bottom:672.413333pt;}
.yb9{bottom:673.213333pt;}
.y1e{bottom:674.493333pt;}
.y72{bottom:693.533333pt;}
.yb8{bottom:694.333333pt;}
.y1d{bottom:695.613333pt;}
.y9d{bottom:706.813333pt;}
.y71{bottom:714.653333pt;}
.yb7{bottom:715.453333pt;}
.y1c{bottom:716.733333pt;}
.y70{bottom:735.933333pt;}
.yb6{bottom:736.573333pt;}
.yd1{bottom:737.853333pt;}
.y1b{bottom:738.013333pt;}
.yd0{bottom:755.333333pt;}
.y6f{bottom:757.093333pt;}
.yb5{bottom:757.893333pt;}
.y1a{bottom:759.173333pt;}
.y9c{bottom:771.013333pt;}
.y6e{bottom:778.213333pt;}
.yb4{bottom:779.013333pt;}
.y19{bottom:780.293333pt;}
.y6c{bottom:793.413333pt;}
.yb3{bottom:800.133333pt;}
.y18{bottom:801.413333pt;}
.y6a{bottom:812.613333pt;}
.yb2{bottom:821.253333pt;}
.y17{bottom:822.693333pt;}
.y68{bottom:831.333333pt;}
.y9b{bottom:835.173333pt;}
.yb1{bottom:842.533333pt;}
.y16{bottom:843.813333pt;}
.y66{bottom:849.733333pt;}
.yb0{bottom:863.653333pt;}
.y15{bottom:864.613333pt;}
.y3d{bottom:864.933333pt;}
.y57{bottom:870.853333pt;}
.yaf{bottom:884.773333pt;}
.y14{bottom:886.053333pt;}
.y9a{bottom:899.333333pt;}
.yae{bottom:905.893333pt;}
.y13{bottom:907.333333pt;}
.yad{bottom:927.173333pt;}
.y12{bottom:928.133333pt;}
.y3c{bottom:928.453333pt;}
.y63{bottom:929.093333pt;}
.yac{bottom:942.373333pt;}
.y11{bottom:949.253333pt;}
.y3b{bottom:949.573333pt;}
.y98{bottom:963.493333pt;}
.y10{bottom:970.373333pt;}
.y3a{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y39{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h1b{height:17.760000pt;}
.h1c{height:17.920000pt;}
.h1d{height:18.400000pt;}
.h1a{height:20.480000pt;}
.he{height:21.120000pt;}
.hf{height:21.280000pt;}
.h24{height:23.360000pt;}
.h8{height:29.440000pt;}
.h25{height:42.272000pt;}
.hb{height:46.781250pt;}
.h22{height:56.352000pt;}
.hc{height:56.406250pt;}
.h19{height:57.600000pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h12{height:62.812520pt;}
.h15{height:62.812522pt;}
.h16{height:62.812523pt;}
.h14{height:62.812525pt;}
.h1f{height:62.812528pt;}
.h13{height:62.812529pt;}
.h21{height:62.812531pt;}
.h20{height:62.812537pt;}
.h11{height:62.812539pt;}
.h17{height:63.204393pt;}
.h28{height:63.360000pt;}
.h29{height:63.392000pt;}
.h26{height:63.520000pt;}
.h27{height:63.552000pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h2a{height:65.781915pt;}
.hd{height:66.404375pt;}
.h4{height:73.454062pt;}
.h18{height:76.672000pt;}
.h23{height:84.640000pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h10{height:134.906667pt;}
.h1e{height:141.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w14{width:27.520000pt;}
.w1f{width:36.480000pt;}
.w21{width:36.800000pt;}
.w22{width:37.120000pt;}
.w23{width:37.152000pt;}
.w18{width:37.280000pt;}
.w6{width:44.800000pt;}
.w17{width:46.560000pt;}
.w24{width:46.720000pt;}
.w19{width:48.512000pt;}
.w4{width:54.746667pt;}
.w1e{width:55.200000pt;}
.w16{width:56.032000pt;}
.w1d{width:69.440000pt;}
.w1a{width:71.840000pt;}
.w27{width:74.880000pt;}
.w15{width:80.160000pt;}
.w1b{width:81.792000pt;}
.wa{width:82.080000pt;}
.w10{width:82.240000pt;}
.wf{width:88.992000pt;}
.wc{width:89.152000pt;}
.wb{width:89.280000pt;}
.we{width:89.312000pt;}
.wd{width:89.440000pt;}
.w20{width:92.512000pt;}
.w26{width:93.952000pt;}
.w2{width:111.872000pt;}
.w1c{width:124.960000pt;}
.w13{width:141.306667pt;}
.w11{width:157.786667pt;}
.w12{width:157.920000pt;}
.w25{width:169.466667pt;}
.w3{width:627.133333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x42{left:2.880000pt;}
.x33{left:3.840000pt;}
.x48{left:5.600000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x49{left:9.600000pt;}
.x4b{left:10.720000pt;}
.x5c{left:13.280000pt;}
.x44{left:14.240000pt;}
.x3a{left:15.200000pt;}
.x46{left:16.480000pt;}
.x7{left:17.600000pt;}
.x4a{left:19.200000pt;}
.x26{left:20.640000pt;}
.x1{left:22.399973pt;}
.x5b{left:23.360000pt;}
.x6{left:24.314667pt;}
.x20{left:25.440000pt;}
.x3{left:26.879976pt;}
.x3e{left:28.346667pt;}
.x1d{left:29.914667pt;}
.x24{left:31.520000pt;}
.x35{left:33.440000pt;}
.x3b{left:36.800000pt;}
.x59{left:38.440000pt;}
.x56{left:41.600000pt;}
.x38{left:43.080000pt;}
.x45{left:47.360000pt;}
.x40{left:50.880000pt;}
.x2d{left:52.360000pt;}
.x36{left:55.200000pt;}
.x2f{left:56.680000pt;}
.x5{left:63.994667pt;}
.x2b{left:65.120000pt;}
.x29{left:67.200000pt;}
.x2e{left:68.960000pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x4c{left:115.231988pt;}
.x32{left:117.312000pt;}
.x64{left:122.911988pt;}
.x1c{left:131.872000pt;}
.x12{left:134.586655pt;}
.x13{left:136.026655pt;}
.x61{left:141.626655pt;}
.x34{left:145.146667pt;}
.x14{left:150.586655pt;}
.x19{left:160.666655pt;}
.x5e{left:167.706655pt;}
.x4f{left:172.026667pt;}
.x60{left:174.906655pt;}
.x28{left:188.986655pt;}
.x1b{left:198.906655pt;}
.x31{left:220.666655pt;}
.x1e{left:221.786667pt;}
.x37{left:225.626667pt;}
.x63{left:236.666655pt;}
.x50{left:265.346667pt;}
.x39{left:282.466667pt;}
.x18{left:296.066655pt;}
.x17{left:301.186655pt;}
.x51{left:302.786667pt;}
.x1f{left:311.586667pt;}
.x15{left:317.826655pt;}
.x16{left:329.346655pt;}
.x52{left:350.146667pt;}
.x4d{left:369.506655pt;}
.x3c{left:376.866667pt;}
.x53{left:387.906667pt;}
.x5f{left:400.066655pt;}
.x21{left:401.666667pt;}
.x3d{left:414.786667pt;}
.x54{left:425.666667pt;}
.x2a{left:453.693333pt;}
.x3f{left:463.613333pt;}
.x22{left:491.613333pt;}
.x55{left:510.813333pt;}
.x41{left:535.773333pt;}
.xb{left:550.493333pt;}
.x57{left:558.013333pt;}
.x23{left:581.533333pt;}
.xc{left:595.293333pt;}
.x58{left:605.213333pt;}
.xd{left:610.493333pt;}
.x2c{left:612.253333pt;}
.x43{left:617.893333pt;}
.xe{left:626.053333pt;}
.xf{left:641.413333pt;}
.x10{left:656.773333pt;}
.x25{left:671.333333pt;}
.x30{left:674.693322pt;}
.x27{left:678.693322pt;}
.x47{left:687.653333pt;}
.x1a{left:690.693322pt;}
.x5a{left:699.813333pt;}
.x8{left:739.013333pt;}
.x62{left:742.213322pt;}
.x5d{left:744.133322pt;}
.x4e{left:746.693322pt;}
}




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