
    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_b35608cea84d22be3bd4908e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6f3108ca2908235136793a3e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_bab0db8e6ae92f68790e1289.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6fb2ebeaba31c586e0aeab3e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_7056f91211b3bd8ff9d212b7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_56647f4a618bab400dc67b61.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e64fbf3695051c936e524ba5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a1541c128bdf97a6250c6439.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_f181147029160c9e95707e88.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.142090;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);}
.v1{vertical-align:-75.600000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-2.160000px;}
.ls28{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.008000px;}
.lsa{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.612000px;}
.lsc{letter-spacing:-0.567600px;}
.ls2c{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.414600px;}
.ls18{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.262200px;}
.ls1c{letter-spacing:-0.216000px;}
.ls34{letter-spacing:-0.158400px;}
.ls14{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.002640px;}
.ls1{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls11{letter-spacing:0.072000px;}
.ls35{letter-spacing:0.109200px;}
.ls27{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.152640px;}
.ls2f{letter-spacing:0.167040px;}
.ls23{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.262080px;}
.ls39{letter-spacing:0.262200px;}
.ls30{letter-spacing:0.287040px;}
.ls29{letter-spacing:0.288000px;}
.ls38{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.322800px;}
.ls15{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls2b{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.720000px;}
.ls21{letter-spacing:2.880000px;}
.ls4{letter-spacing:4.320000px;}
.lsd{letter-spacing:5.760000px;}
.ls2a{letter-spacing:6.480000px;}
.ls1e{letter-spacing:6.600000px;}
.lsf{letter-spacing:7.200000px;}
.ls1f{letter-spacing:7.920000px;}
.ls25{letter-spacing:8.640000px;}
.lse{letter-spacing:9.360000px;}
.ls20{letter-spacing:11.520000px;}
.ls1a{letter-spacing:12.240000px;}
.ls2e{letter-spacing:12.960000px;}
.ls26{letter-spacing:14.400000px;}
.ls2{letter-spacing:21.600000px;}
.ls22{letter-spacing:28.080000px;}
.ls31{letter-spacing:34.841280px;}
.ls6{letter-spacing:44.100000px;}
.ls10{letter-spacing:62.040000px;}
.ls2d{letter-spacing:67.961280px;}
.ls33{letter-spacing:74.160000px;}
.ls32{letter-spacing:74.880000px;}
.ls12{letter-spacing:76.440000px;}
.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:-21.060000px;}
.ws0{word-spacing:-19.440000px;}
.ws9{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.496000px;}
.wsc{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.ws3{word-spacing:0.000000px;}
._11{margin-left:-2.371200px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._8{width:2.285760px;}
._6{width:3.287040px;}
._7{width:5.232960px;}
._b{width:6.292800px;}
._c{width:7.828800px;}
._13{width:9.053760px;}
._10{width:10.112640px;}
._f{width:11.631360px;}
._d{width:12.651840px;}
._15{width:13.919040px;}
._12{width:15.336000px;}
._18{width:16.416000px;}
._1d{width:17.686080px;}
._1b{width:19.080000px;}
._9{width:20.136960px;}
._a{width:21.859680px;}
._19{width:27.576000px;}
._17{width:29.383680px;}
._16{width:30.384000px;}
._1a{width:35.712000px;}
._1c{width:37.584000px;}
._e{width:43.320960px;}
._14{width:69.840000px;}
._1e{width:74.321280px;}
._1f{width:76.087200px;}
._1{width:480.335520px;}
._4{width:736.860000px;}
._2{width:751.980000px;}
._3{width:812.448480px;}
.fc2{color:transparent;}
.fc1{color:rgb(15,17,21);}
.fc3{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y6b{bottom:4.320000px;}
.y71{bottom:4.500000px;}
.y6f{bottom:10.080000px;}
.ya6{bottom:14.940000px;}
.y9{bottom:21.240000px;}
.ya1{bottom:25.200000px;}
.y6d{bottom:30.780000px;}
.ya{bottom:31.140000px;}
.y9d{bottom:35.640000px;}
.y8{bottom:41.940000px;}
.ya0{bottom:45.900000px;}
.y6e{bottom:51.480000px;}
.y9c{bottom:56.340000px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.y9f{bottom:66.600000px;}
.ya5{bottom:77.040000px;}
.y4{bottom:86.940000px;}
.y9e{bottom:87.300000px;}
.ya4{bottom:87.345000px;}
.y3{bottom:119.880000px;}
.yd4{bottom:140.796000px;}
.y69{bottom:142.236000px;}
.y90{bottom:143.316000px;}
.y99{bottom:146.016000px;}
.yd3{bottom:161.490000px;}
.y68{bottom:162.930000px;}
.y8f{bottom:164.010000px;}
.y98{bottom:166.710000px;}
.y38{bottom:168.510000px;}
.yc4{bottom:179.850000px;}
.yd2{bottom:182.190000px;}
.y67{bottom:183.450000px;}
.y86{bottom:183.990000px;}
.y8e{bottom:184.710000px;}
.y97{bottom:187.410000px;}
.y37{bottom:187.590000px;}
.yc3{bottom:200.550000px;}
.yd1{bottom:202.890000px;}
.y85{bottom:204.510000px;}
.y8d{bottom:205.410000px;}
.y66{bottom:205.590000px;}
.y36{bottom:206.490000px;}
.y96{bottom:208.110000px;}
.yc2{bottom:221.250000px;}
.yd0{bottom:223.590000px;}
.y35{bottom:225.570000px;}
.y8c{bottom:226.110000px;}
.y65{bottom:226.290000px;}
.y84{bottom:226.470000px;}
.y95{bottom:228.810000px;}
.yc1{bottom:241.950000px;}
.ycf{bottom:244.290000px;}
.y34{bottom:244.470000px;}
.y64{bottom:246.810000px;}
.y83{bottom:248.430000px;}
.y94{bottom:249.510000px;}
.yc0{bottom:262.650000px;}
.y8b{bottom:263.010000px;}
.y33{bottom:263.370000px;}
.yce{bottom:264.990000px;}
.y63{bottom:268.950000px;}
.y93{bottom:270.210000px;}
.y82{bottom:270.570000px;}
.y32{bottom:282.450000px;}
.ybf{bottom:283.350000px;}
.ycd{bottom:285.690000px;}
.y62{bottom:289.650000px;}
.y92{bottom:290.910000px;}
.y81{bottom:291.270000px;}
.y31{bottom:301.350000px;}
.ybe{bottom:304.050000px;}
.ycc{bottom:306.390000px;}
.y61{bottom:310.170000px;}
.y91{bottom:311.610000px;}
.y80{bottom:311.970000px;}
.y30{bottom:320.430000px;}
.ybd{bottom:324.750000px;}
.ycb{bottom:326.910000px;}
.y60{bottom:332.310000px;}
.y7f{bottom:332.670000px;}
.y2f{bottom:339.330000px;}
.ybc{bottom:345.450000px;}
.yca{bottom:349.050000px;}
.y5f{bottom:353.010000px;}
.y7e{bottom:353.370000px;}
.y2e{bottom:358.230000px;}
.ybb{bottom:366.150000px;}
.yc9{bottom:369.750000px;}
.y5e{bottom:373.710000px;}
.y7d{bottom:374.070000px;}
.y2d{bottom:377.310000px;}
.yba{bottom:386.895000px;}
.yc8{bottom:391.935000px;}
.y5d{bottom:394.455000px;}
.y7c{bottom:394.815000px;}
.y2c{bottom:396.255000px;}
.yb9{bottom:407.595000px;}
.yc7{bottom:412.455000px;}
.y5c{bottom:415.155000px;}
.y2b{bottom:415.335000px;}
.y7b{bottom:415.515000px;}
.yb8{bottom:428.295000px;}
.y2a{bottom:434.235000px;}
.yc6{bottom:434.595000px;}
.y5b{bottom:435.855000px;}
.y7a{bottom:436.215000px;}
.yf6{bottom:439.275000px;}
.yb7{bottom:448.995000px;}
.y29{bottom:453.135000px;}
.yc5{bottom:455.115000px;}
.y5a{bottom:456.555000px;}
.yf5{bottom:459.975000px;}
.yb6{bottom:469.695000px;}
.y28{bottom:472.215000px;}
.y79{bottom:474.555000px;}
.y59{bottom:477.255000px;}
.yf4{bottom:480.675000px;}
.yb5{bottom:490.395000px;}
.y27{bottom:491.115000px;}
.y78{bottom:495.975000px;}
.y58{bottom:497.955000px;}
.yf3{bottom:501.375000px;}
.y26{bottom:510.195000px;}
.yb4{bottom:511.095000px;}
.y77{bottom:517.575000px;}
.y57{bottom:518.655000px;}
.yf2{bottom:522.075000px;}
.y25{bottom:529.095000px;}
.yb3{bottom:531.615000px;}
.y76{bottom:538.995000px;}
.y56{bottom:539.355000px;}
.yf1{bottom:542.775000px;}
.y24{bottom:548.175000px;}
.yb2{bottom:553.575000px;}
.yf0{bottom:558.975000px;}
.y55{bottom:560.055000px;}
.y75{bottom:560.415000px;}
.y23{bottom:567.075000px;}
.yb1{bottom:575.535000px;}
.yef{bottom:579.675000px;}
.y54{bottom:580.755000px;}
.y74{bottom:581.835000px;}
.y22{bottom:585.975000px;}
.yb0{bottom:597.675000px;}
.y53{bottom:601.455000px;}
.y73{bottom:603.255000px;}
.yee{bottom:604.875000px;}
.y21{bottom:605.055000px;}
.yaf{bottom:618.375000px;}
.y52{bottom:622.155000px;}
.y20{bottom:623.955000px;}
.y72{bottom:624.675000px;}
.yed{bottom:625.035000px;}
.yae{bottom:639.105000px;}
.y51{bottom:642.885000px;}
.y1f{bottom:643.065000px;}
.yec{bottom:644.145000px;}
.y70{bottom:646.305000px;}
.y8a{bottom:654.945000px;}
.yad{bottom:659.805000px;}
.y1e{bottom:661.965000px;}
.yeb{bottom:663.045000px;}
.y50{bottom:663.585000px;}
.y6c{bottom:667.725000px;}
.y89{bottom:675.645000px;}
.yac{bottom:680.505000px;}
.y1d{bottom:680.865000px;}
.yea{bottom:682.125000px;}
.y4f{bottom:684.285000px;}
.y88{bottom:696.345000px;}
.y1c{bottom:699.945000px;}
.ye9{bottom:701.025000px;}
.yab{bottom:701.205000px;}
.y4e{bottom:704.985000px;}
.y87{bottom:712.725000px;}
.y1b{bottom:719.385000px;}
.ye8{bottom:719.925000px;}
.yaa{bottom:721.905000px;}
.y4d{bottom:725.685000px;}
.ye7{bottom:739.005000px;}
.y1a{bottom:740.265000px;}
.ya9{bottom:742.605000px;}
.y4c{bottom:746.385000px;}
.ye6{bottom:757.905000px;}
.y19{bottom:762.765000px;}
.ya8{bottom:763.305000px;}
.y4b{bottom:767.085000px;}
.ye5{bottom:776.985000px;}
.ya7{bottom:784.005000px;}
.y18{bottom:784.545000px;}
.y4a{bottom:787.785000px;}
.ye4{bottom:795.885000px;}
.ya3{bottom:800.925000px;}
.y17{bottom:807.585000px;}
.y49{bottom:808.485000px;}
.ye3{bottom:814.965000px;}
.y48{bottom:829.185000px;}
.y16{bottom:830.085000px;}
.ye2{bottom:833.865000px;}
.y47{bottom:849.885000px;}
.y15{bottom:852.405000px;}
.ye1{bottom:852.765000px;}
.y46{bottom:870.585000px;}
.ye0{bottom:871.845000px;}
.y14{bottom:874.365000px;}
.ydf{bottom:890.790000px;}
.y45{bottom:891.330000px;}
.y13{bottom:896.730000px;}
.ya2{bottom:905.190000px;}
.yde{bottom:909.870000px;}
.y44{bottom:912.030000px;}
.y12{bottom:917.970000px;}
.ydd{bottom:928.770000px;}
.y43{bottom:932.730000px;}
.y11{bottom:942.090000px;}
.ydc{bottom:947.670000px;}
.y42{bottom:953.430000px;}
.y10{bottom:966.210000px;}
.y41{bottom:974.130000px;}
.ydb{bottom:985.650000px;}
.yf{bottom:990.330000px;}
.y40{bottom:994.830000px;}
.yda{bottom:1004.730000px;}
.y9b{bottom:1009.410000px;}
.ye{bottom:1014.630000px;}
.y3f{bottom:1015.530000px;}
.yd9{bottom:1023.630000px;}
.y3e{bottom:1036.230000px;}
.yd{bottom:1038.750000px;}
.yd8{bottom:1042.530000px;}
.y3d{bottom:1056.930000px;}
.yd7{bottom:1061.610000px;}
.yc{bottom:1062.150000px;}
.y6{bottom:1077.090000px;}
.y3c{bottom:1077.630000px;}
.yd6{bottom:1080.510000px;}
.y6a{bottom:1093.830000px;}
.y3b{bottom:1098.330000px;}
.yd5{bottom:1099.590000px;}
.y9a{bottom:1113.630000px;}
.y3a{bottom:1119.030000px;}
.y39{bottom:1139.760000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h15{height:20.685000px;}
.h13{height:20.700000px;}
.h14{height:20.730000px;}
.h1b{height:41.385000px;}
.h3{height:45.184219px;}
.hc{height:56.278125px;}
.h1a{height:59.383125px;}
.h10{height:62.130000px;}
.he{height:64.546875px;}
.hd{height:64.978594px;}
.h4{height:65.010937px;}
.h19{height:68.084282px;}
.h16{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h12{height:73.440000px;}
.hf{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hb{height:78.367500px;}
.h6{height:78.870000px;}
.h9{height:84.898125px;}
.h17{height:103.485000px;}
.h18{height:103.522500px;}
.h11{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:74.914500px;}
.w4{width:82.470000px;}
.w6{width:115.909500px;}
.wb{width:122.421000px;}
.wa{width:144.034500px;}
.w7{width:180.015000px;}
.w8{width:180.030000px;}
.w3{width:180.735000px;}
.wd{width:203.280000px;}
.w9{width:211.875000px;}
.wc{width:249.690000px;}
.we{width:337.753500px;}
.wf{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:7.918500px;}
.x38{left:10.080000px;}
.x36{left:11.685000px;}
.x3f{left:12.945000px;}
.x3e{left:14.220000px;}
.x3c{left:15.825000px;}
.x20{left:16.920000px;}
.x21{left:18.720000px;}
.x3b{left:20.520000px;}
.x1e{left:21.945000px;}
.x1d{left:23.025000px;}
.x31{left:26.494500px;}
.x1b{left:30.589500px;}
.x33{left:31.665000px;}
.x29{left:33.109500px;}
.x27{left:34.369500px;}
.x26{left:35.445000px;}
.x2a{left:37.069500px;}
.x2b{left:39.049500px;}
.x37{left:42.150000px;}
.x25{left:45.165000px;}
.x24{left:49.350000px;}
.x2c{left:54.030000px;}
.x3a{left:55.440000px;}
.x39{left:59.070000px;}
.x22{left:74.730000px;}
.x2{left:77.041500px;}
.x28{left:78.690000px;}
.x3d{left:83.190000px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.xa{left:94.536000px;}
.x18{left:97.056000px;}
.x1a{left:101.566500px;}
.xe{left:107.136000px;}
.x30{left:108.576000px;}
.xd{left:117.576000px;}
.x16{left:127.476000px;}
.x2e{left:137.556000px;}
.x17{left:159.870000px;}
.x5{left:172.650000px;}
.x9{left:185.970000px;}
.x12{left:217.110000px;}
.x1c{left:218.205000px;}
.x32{left:230.445000px;}
.x40{left:248.655000px;}
.x11{left:305.715000px;}
.x14{left:347.475000px;}
.x34{left:353.775000px;}
.xb{left:368.895000px;}
.x1f{left:398.955000px;}
.x19{left:414.255000px;}
.x15{left:430.995000px;}
.xc{left:446.505000px;}
.xf{left:467.745000px;}
.x10{left:544.245000px;}
.x4{left:552.900000px;}
.x13{left:553.965000px;}
.x23{left:579.720000px;}
.x35{left:604.200000px;}
.x6{left:733.650000px;}
.x2f{left:758.130000px;}
.x2d{left:797.550000px;}
.x8{left:808.020000px;}
@media print{
.v1{vertical-align:-67.200000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.920000pt;}
.ls28{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-0.896000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsc{letter-spacing:-0.504533pt;}
.ls2c{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.368533pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.233067pt;}
.ls1c{letter-spacing:-0.192000pt;}
.ls34{letter-spacing:-0.140800pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.002347pt;}
.ls1{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls11{letter-spacing:0.064000pt;}
.ls35{letter-spacing:0.097067pt;}
.ls27{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.135680pt;}
.ls2f{letter-spacing:0.148480pt;}
.ls23{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.232960pt;}
.ls39{letter-spacing:0.233067pt;}
.ls30{letter-spacing:0.255147pt;}
.ls29{letter-spacing:0.256000pt;}
.ls38{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.286933pt;}
.ls15{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls2b{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls21{letter-spacing:2.560000pt;}
.ls4{letter-spacing:3.840000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls2a{letter-spacing:5.760000pt;}
.ls1e{letter-spacing:5.866667pt;}
.lsf{letter-spacing:6.400000pt;}
.ls1f{letter-spacing:7.040000pt;}
.ls25{letter-spacing:7.680000pt;}
.lse{letter-spacing:8.320000pt;}
.ls20{letter-spacing:10.240000pt;}
.ls1a{letter-spacing:10.880000pt;}
.ls2e{letter-spacing:11.520000pt;}
.ls26{letter-spacing:12.800000pt;}
.ls2{letter-spacing:19.200000pt;}
.ls22{letter-spacing:24.960000pt;}
.ls31{letter-spacing:30.970027pt;}
.ls6{letter-spacing:39.200000pt;}
.ls10{letter-spacing:55.146667pt;}
.ls2d{letter-spacing:60.410027pt;}
.ls33{letter-spacing:65.920000pt;}
.ls32{letter-spacing:66.560000pt;}
.ls12{letter-spacing:67.946667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-17.280000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.552000pt;}
.wsc{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.ws3{word-spacing:0.000000pt;}
._11{margin-left:-2.107733pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._8{width:2.031787pt;}
._6{width:2.921813pt;}
._7{width:4.651520pt;}
._b{width:5.593600pt;}
._c{width:6.958933pt;}
._13{width:8.047787pt;}
._10{width:8.989013pt;}
._f{width:10.338987pt;}
._d{width:11.246080pt;}
._15{width:12.372480pt;}
._12{width:13.632000pt;}
._18{width:14.592000pt;}
._1d{width:15.720960pt;}
._1b{width:16.960000pt;}
._9{width:17.899520pt;}
._a{width:19.430827pt;}
._19{width:24.512000pt;}
._17{width:26.118827pt;}
._16{width:27.008000pt;}
._1a{width:31.744000pt;}
._1c{width:33.408000pt;}
._e{width:38.507520pt;}
._14{width:62.080000pt;}
._1e{width:66.063360pt;}
._1f{width:67.633067pt;}
._1{width:426.964907pt;}
._4{width:654.986667pt;}
._2{width:668.426667pt;}
._3{width:722.176427pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y6b{bottom:3.840000pt;}
.y71{bottom:4.000000pt;}
.y6f{bottom:8.960000pt;}
.ya6{bottom:13.280000pt;}
.y9{bottom:18.880000pt;}
.ya1{bottom:22.400000pt;}
.y6d{bottom:27.360000pt;}
.ya{bottom:27.680000pt;}
.y9d{bottom:31.680000pt;}
.y8{bottom:37.280000pt;}
.ya0{bottom:40.800000pt;}
.y6e{bottom:45.760000pt;}
.y9c{bottom:50.080000pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.y9f{bottom:59.200000pt;}
.ya5{bottom:68.480000pt;}
.y4{bottom:77.280000pt;}
.y9e{bottom:77.600000pt;}
.ya4{bottom:77.640000pt;}
.y3{bottom:106.560000pt;}
.yd4{bottom:125.152000pt;}
.y69{bottom:126.432000pt;}
.y90{bottom:127.392000pt;}
.y99{bottom:129.792000pt;}
.yd3{bottom:143.546667pt;}
.y68{bottom:144.826667pt;}
.y8f{bottom:145.786667pt;}
.y98{bottom:148.186667pt;}
.y38{bottom:149.786667pt;}
.yc4{bottom:159.866667pt;}
.yd2{bottom:161.946667pt;}
.y67{bottom:163.066667pt;}
.y86{bottom:163.546667pt;}
.y8e{bottom:164.186667pt;}
.y97{bottom:166.586667pt;}
.y37{bottom:166.746667pt;}
.yc3{bottom:178.266667pt;}
.yd1{bottom:180.346667pt;}
.y85{bottom:181.786667pt;}
.y8d{bottom:182.586667pt;}
.y66{bottom:182.746667pt;}
.y36{bottom:183.546667pt;}
.y96{bottom:184.986667pt;}
.yc2{bottom:196.666667pt;}
.yd0{bottom:198.746667pt;}
.y35{bottom:200.506667pt;}
.y8c{bottom:200.986667pt;}
.y65{bottom:201.146667pt;}
.y84{bottom:201.306667pt;}
.y95{bottom:203.386667pt;}
.yc1{bottom:215.066667pt;}
.ycf{bottom:217.146667pt;}
.y34{bottom:217.306667pt;}
.y64{bottom:219.386667pt;}
.y83{bottom:220.826667pt;}
.y94{bottom:221.786667pt;}
.yc0{bottom:233.466667pt;}
.y8b{bottom:233.786667pt;}
.y33{bottom:234.106667pt;}
.yce{bottom:235.546667pt;}
.y63{bottom:239.066667pt;}
.y93{bottom:240.186667pt;}
.y82{bottom:240.506667pt;}
.y32{bottom:251.066667pt;}
.ybf{bottom:251.866667pt;}
.ycd{bottom:253.946667pt;}
.y62{bottom:257.466667pt;}
.y92{bottom:258.586667pt;}
.y81{bottom:258.906667pt;}
.y31{bottom:267.866667pt;}
.ybe{bottom:270.266667pt;}
.ycc{bottom:272.346667pt;}
.y61{bottom:275.706667pt;}
.y91{bottom:276.986667pt;}
.y80{bottom:277.306667pt;}
.y30{bottom:284.826667pt;}
.ybd{bottom:288.666667pt;}
.ycb{bottom:290.586667pt;}
.y60{bottom:295.386667pt;}
.y7f{bottom:295.706667pt;}
.y2f{bottom:301.626667pt;}
.ybc{bottom:307.066667pt;}
.yca{bottom:310.266667pt;}
.y5f{bottom:313.786667pt;}
.y7e{bottom:314.106667pt;}
.y2e{bottom:318.426667pt;}
.ybb{bottom:325.466667pt;}
.yc9{bottom:328.666667pt;}
.y5e{bottom:332.186667pt;}
.y7d{bottom:332.506667pt;}
.y2d{bottom:335.386667pt;}
.yba{bottom:343.906667pt;}
.yc8{bottom:348.386667pt;}
.y5d{bottom:350.626667pt;}
.y7c{bottom:350.946667pt;}
.y2c{bottom:352.226667pt;}
.yb9{bottom:362.306667pt;}
.yc7{bottom:366.626667pt;}
.y5c{bottom:369.026667pt;}
.y2b{bottom:369.186667pt;}
.y7b{bottom:369.346667pt;}
.yb8{bottom:380.706667pt;}
.y2a{bottom:385.986667pt;}
.yc6{bottom:386.306667pt;}
.y5b{bottom:387.426667pt;}
.y7a{bottom:387.746667pt;}
.yf6{bottom:390.466667pt;}
.yb7{bottom:399.106667pt;}
.y29{bottom:402.786667pt;}
.yc5{bottom:404.546667pt;}
.y5a{bottom:405.826667pt;}
.yf5{bottom:408.866667pt;}
.yb6{bottom:417.506667pt;}
.y28{bottom:419.746667pt;}
.y79{bottom:421.826667pt;}
.y59{bottom:424.226667pt;}
.yf4{bottom:427.266667pt;}
.yb5{bottom:435.906667pt;}
.y27{bottom:436.546667pt;}
.y78{bottom:440.866667pt;}
.y58{bottom:442.626667pt;}
.yf3{bottom:445.666667pt;}
.y26{bottom:453.506667pt;}
.yb4{bottom:454.306667pt;}
.y77{bottom:460.066667pt;}
.y57{bottom:461.026667pt;}
.yf2{bottom:464.066667pt;}
.y25{bottom:470.306667pt;}
.yb3{bottom:472.546667pt;}
.y76{bottom:479.106667pt;}
.y56{bottom:479.426667pt;}
.yf1{bottom:482.466667pt;}
.y24{bottom:487.266667pt;}
.yb2{bottom:492.066667pt;}
.yf0{bottom:496.866667pt;}
.y55{bottom:497.826667pt;}
.y75{bottom:498.146667pt;}
.y23{bottom:504.066667pt;}
.yb1{bottom:511.586667pt;}
.yef{bottom:515.266667pt;}
.y54{bottom:516.226667pt;}
.y74{bottom:517.186667pt;}
.y22{bottom:520.866667pt;}
.yb0{bottom:531.266667pt;}
.y53{bottom:534.626667pt;}
.y73{bottom:536.226667pt;}
.yee{bottom:537.666667pt;}
.y21{bottom:537.826667pt;}
.yaf{bottom:549.666667pt;}
.y52{bottom:553.026667pt;}
.y20{bottom:554.626667pt;}
.y72{bottom:555.266667pt;}
.yed{bottom:555.586667pt;}
.yae{bottom:568.093333pt;}
.y51{bottom:571.453333pt;}
.y1f{bottom:571.613333pt;}
.yec{bottom:572.573333pt;}
.y70{bottom:574.493333pt;}
.y8a{bottom:582.173333pt;}
.yad{bottom:586.493333pt;}
.y1e{bottom:588.413333pt;}
.yeb{bottom:589.373333pt;}
.y50{bottom:589.853333pt;}
.y6c{bottom:593.533333pt;}
.y89{bottom:600.573333pt;}
.yac{bottom:604.893333pt;}
.y1d{bottom:605.213333pt;}
.yea{bottom:606.333333pt;}
.y4f{bottom:608.253333pt;}
.y88{bottom:618.973333pt;}
.y1c{bottom:622.173333pt;}
.ye9{bottom:623.133333pt;}
.yab{bottom:623.293333pt;}
.y4e{bottom:626.653333pt;}
.y87{bottom:633.533333pt;}
.y1b{bottom:639.453333pt;}
.ye8{bottom:639.933333pt;}
.yaa{bottom:641.693333pt;}
.y4d{bottom:645.053333pt;}
.ye7{bottom:656.893333pt;}
.y1a{bottom:658.013333pt;}
.ya9{bottom:660.093333pt;}
.y4c{bottom:663.453333pt;}
.ye6{bottom:673.693333pt;}
.y19{bottom:678.013333pt;}
.ya8{bottom:678.493333pt;}
.y4b{bottom:681.853333pt;}
.ye5{bottom:690.653333pt;}
.ya7{bottom:696.893333pt;}
.y18{bottom:697.373333pt;}
.y4a{bottom:700.253333pt;}
.ye4{bottom:707.453333pt;}
.ya3{bottom:711.933333pt;}
.y17{bottom:717.853333pt;}
.y49{bottom:718.653333pt;}
.ye3{bottom:724.413333pt;}
.y48{bottom:737.053333pt;}
.y16{bottom:737.853333pt;}
.ye2{bottom:741.213333pt;}
.y47{bottom:755.453333pt;}
.y15{bottom:757.693333pt;}
.ye1{bottom:758.013333pt;}
.y46{bottom:773.853333pt;}
.ye0{bottom:774.973333pt;}
.y14{bottom:777.213333pt;}
.ydf{bottom:791.813333pt;}
.y45{bottom:792.293333pt;}
.y13{bottom:797.093333pt;}
.ya2{bottom:804.613333pt;}
.yde{bottom:808.773333pt;}
.y44{bottom:810.693333pt;}
.y12{bottom:815.973333pt;}
.ydd{bottom:825.573333pt;}
.y43{bottom:829.093333pt;}
.y11{bottom:837.413333pt;}
.ydc{bottom:842.373333pt;}
.y42{bottom:847.493333pt;}
.y10{bottom:858.853333pt;}
.y41{bottom:865.893333pt;}
.ydb{bottom:876.133333pt;}
.yf{bottom:880.293333pt;}
.y40{bottom:884.293333pt;}
.yda{bottom:893.093333pt;}
.y9b{bottom:897.253333pt;}
.ye{bottom:901.893333pt;}
.y3f{bottom:902.693333pt;}
.yd9{bottom:909.893333pt;}
.y3e{bottom:921.093333pt;}
.yd{bottom:923.333333pt;}
.yd8{bottom:926.693333pt;}
.y3d{bottom:939.493333pt;}
.yd7{bottom:943.653333pt;}
.yc{bottom:944.133333pt;}
.y6{bottom:957.413333pt;}
.y3c{bottom:957.893333pt;}
.yd6{bottom:960.453333pt;}
.y6a{bottom:972.293333pt;}
.y3b{bottom:976.293333pt;}
.yd5{bottom:977.413333pt;}
.y9a{bottom:989.893333pt;}
.y3a{bottom:994.693333pt;}
.y39{bottom:1013.120000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h15{height:18.386667pt;}
.h13{height:18.400000pt;}
.h14{height:18.426667pt;}
.h1b{height:36.786667pt;}
.h3{height:40.163750pt;}
.hc{height:50.025000pt;}
.h1a{height:52.785000pt;}
.h10{height:55.226667pt;}
.he{height:57.375000pt;}
.hd{height:57.758750pt;}
.h4{height:57.787500pt;}
.h19{height:60.519362pt;}
.h16{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h12{height:65.280000pt;}
.hf{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hb{height:69.660000pt;}
.h6{height:70.106667pt;}
.h9{height:75.465000pt;}
.h17{height:91.986667pt;}
.h18{height:92.020000pt;}
.h11{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.590667pt;}
.w4{width:73.306667pt;}
.w6{width:103.030667pt;}
.wb{width:108.818667pt;}
.wa{width:128.030667pt;}
.w7{width:160.013333pt;}
.w8{width:160.026667pt;}
.w3{width:160.653333pt;}
.wd{width:180.693333pt;}
.w9{width:188.333333pt;}
.wc{width:221.946667pt;}
.we{width:300.225333pt;}
.wf{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.038667pt;}
.x38{left:8.960000pt;}
.x36{left:10.386667pt;}
.x3f{left:11.506667pt;}
.x3e{left:12.640000pt;}
.x3c{left:14.066667pt;}
.x20{left:15.040000pt;}
.x21{left:16.640000pt;}
.x3b{left:18.240000pt;}
.x1e{left:19.506667pt;}
.x1d{left:20.466667pt;}
.x31{left:23.550667pt;}
.x1b{left:27.190667pt;}
.x33{left:28.146667pt;}
.x29{left:29.430667pt;}
.x27{left:30.550667pt;}
.x26{left:31.506667pt;}
.x2a{left:32.950667pt;}
.x2b{left:34.710667pt;}
.x37{left:37.466667pt;}
.x25{left:40.146667pt;}
.x24{left:43.866667pt;}
.x2c{left:48.026667pt;}
.x3a{left:49.280000pt;}
.x39{left:52.506667pt;}
.x22{left:66.426667pt;}
.x2{left:68.481333pt;}
.x28{left:69.946667pt;}
.x3d{left:73.946667pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.xa{left:84.032000pt;}
.x18{left:86.272000pt;}
.x1a{left:90.281333pt;}
.xe{left:95.232000pt;}
.x30{left:96.512000pt;}
.xd{left:104.512000pt;}
.x16{left:113.312000pt;}
.x2e{left:122.272000pt;}
.x17{left:142.106667pt;}
.x5{left:153.466667pt;}
.x9{left:165.306667pt;}
.x12{left:192.986667pt;}
.x1c{left:193.960000pt;}
.x32{left:204.840000pt;}
.x40{left:221.026667pt;}
.x11{left:271.746667pt;}
.x14{left:308.866667pt;}
.x34{left:314.466667pt;}
.xb{left:327.906667pt;}
.x1f{left:354.626667pt;}
.x19{left:368.226667pt;}
.x15{left:383.106667pt;}
.xc{left:396.893333pt;}
.xf{left:415.773333pt;}
.x10{left:483.773333pt;}
.x4{left:491.466667pt;}
.x13{left:492.413333pt;}
.x23{left:515.306667pt;}
.x35{left:537.066667pt;}
.x6{left:652.133333pt;}
.x2f{left:673.893333pt;}
.x2d{left:708.933333pt;}
.x8{left:718.240000pt;}
}




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