
    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_9a1f504f2a44ea695c406f05.woff')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_fc8c4aea2575495576750759.woff')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_98ba35a8f56da499d653ada9.woff')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_bb84f01654f58324177d2450.woff')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_9c568bdb705eca56aa148d5f.woff')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_537f03a819cf2404f05d507e.woff')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_605e783921cf2404d38f1a1a.woff')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_1a64fca6dc6b212f9de5d307.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_466f387aec72ab292599b98d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064453;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_fc5a3a9bf0922f9e03abf643.woff')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_492872a2705231fd9287f60e.woff')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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.180000px;}
.ls20{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.288000px;}
.ls1b{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.720000px;}
.ls25{letter-spacing:1.008000px;}
.ls19{letter-spacing:2.880000px;}
.ls18{letter-spacing:3.600000px;}
.ls11{letter-spacing:4.320000px;}
.ls1a{letter-spacing:5.760000px;}
.ls12{letter-spacing:6.480000px;}
.ls2{letter-spacing:8.100000px;}
.lsa{letter-spacing:10.080000px;}
.lse{letter-spacing:11.520000px;}
.ls8{letter-spacing:12.240000px;}
.ls14{letter-spacing:12.360000px;}
.ls9{letter-spacing:16.560000px;}
.ls1e{letter-spacing:18.720000px;}
.ls22{letter-spacing:21.221280px;}
.ls4{letter-spacing:22.320000px;}
.ls1d{letter-spacing:29.520000px;}
.ls1c{letter-spacing:30.240000px;}
.lsf{letter-spacing:32.400000px;}
.ls23{letter-spacing:38.880000px;}
.ls24{letter-spacing:40.320000px;}
.ls16{letter-spacing:64.080000px;}
.ls15{letter-spacing:64.800000px;}
.ls17{letter-spacing:64.980000px;}
.ls1f{letter-spacing:76.320000px;}
.ls5{letter-spacing:90.900000px;}
.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;}
.wse{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.060000px;}
.wsf{word-spacing:-19.008000px;}
.wsa{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.288000px;}
.ws3{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.496000px;}
.ws2{word-spacing:-16.488000px;}
.wsb{word-spacing:-14.940000px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-2.211840px;}
._1{margin-left:-1.059840px;}
._0{width:1.347840px;}
._a{width:2.664000px;}
._e{width:3.960000px;}
._4{width:5.160000px;}
._2{width:6.480000px;}
._3{width:7.755840px;}
._f{width:9.432000px;}
._b{width:11.016000px;}
._c{width:12.108000px;}
._14{width:13.752000px;}
._15{width:14.996160px;}
._5{width:16.920000px;}
._21{width:19.179840px;}
._11{width:20.664000px;}
._d{width:22.392000px;}
._27{width:23.623680px;}
._10{width:24.624000px;}
._1e{width:25.652160px;}
._9{width:27.072000px;}
._8{width:28.368000px;}
._1a{width:29.664000px;}
._23{width:30.720000px;}
._19{width:32.040000px;}
._6{width:33.768000px;}
._7{width:34.920000px;}
._1b{width:36.432000px;}
._1d{width:38.016000px;}
._1c{width:39.168000px;}
._25{width:41.544000px;}
._26{width:42.655680px;}
._29{width:44.640000px;}
._2a{width:47.124000px;}
._2b{width:48.728160px;}
._16{width:61.104000px;}
._17{width:62.396160px;}
._28{width:76.392000px;}
._24{width:87.624000px;}
._1f{width:88.848000px;}
._12{width:90.072000px;}
._13{width:91.152000px;}
._22{width:101.520000px;}
._20{width:126.288000px;}
.fc6{color:rgb(0,0,255);}
.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);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.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;}
.y4b{bottom:-5.580000px;}
.y0{bottom:0.000000px;}
.y44{bottom:1.620000px;}
.y79{bottom:4.140000px;}
.y7b{bottom:4.500000px;}
.yac{bottom:7.020000px;}
.yaa{bottom:7.200000px;}
.yae{bottom:7.380000px;}
.y60{bottom:8.820000px;}
.yb0{bottom:10.800000px;}
.yb2{bottom:11.160000px;}
.y69{bottom:15.660000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.ya8{bottom:19.080000px;}
.y7{bottom:20.700000px;}
.y43{bottom:22.860000px;}
.y38{bottom:23.610000px;}
.y78{bottom:24.840000px;}
.y4a{bottom:27.720000px;}
.y4{bottom:27.900000px;}
.ya9{bottom:30.960000px;}
.y62{bottom:32.220000px;}
.y68{bottom:39.420000px;}
.y47{bottom:43.380000px;}
.y63{bottom:44.460000px;}
.y6{bottom:45.360000px;}
.y77{bottom:45.570000px;}
.y42{bottom:46.980000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y65{bottom:50.940000px;}
.y6a{bottom:51.300000px;}
.y73{bottom:55.830000px;}
.y3b{bottom:61.740000px;}
.y67{bottom:63.180000px;}
.y3e{bottom:63.540000px;}
.y49{bottom:63.945000px;}
.y71{bottom:66.270000px;}
.y2{bottom:69.300000px;}
.y46{bottom:69.885000px;}
.y41{bottom:71.280000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.y72{bottom:76.530000px;}
.y3a{bottom:86.580000px;}
.y76{bottom:86.970000px;}
.y66{bottom:87.165000px;}
.y3d{bottom:88.020000px;}
.ya{bottom:91.116000px;}
.y40{bottom:95.400000px;}
.y75{bottom:107.670000px;}
.y74{bottom:128.370000px;}
.y8c{bottom:128.736000px;}
.y6e{bottom:129.456000px;}
.y8b{bottom:133.956000px;}
.y6d{bottom:134.676000px;}
.yc6{bottom:144.756000px;}
.y8a{bottom:146.736000px;}
.y6c{bottom:150.150000px;}
.ya4{bottom:153.570000px;}
.ya3{bottom:167.430000px;}
.yc5{bottom:168.690000px;}
.y6b{bottom:185.430000px;}
.y89{bottom:186.330000px;}
.y5c{bottom:187.050000px;}
.y36{bottom:187.410000px;}
.yc4{bottom:192.450000px;}
.ya2{bottom:193.530000px;}
.y64{bottom:202.530000px;}
.y88{bottom:210.090000px;}
.y5b{bottom:210.990000px;}
.y35{bottom:211.350000px;}
.yc3{bottom:216.210000px;}
.ya1{bottom:217.470000px;}
.y45{bottom:233.130000px;}
.y87{bottom:233.850000px;}
.y5a{bottom:234.750000px;}
.y34{bottom:235.110000px;}
.y48{bottom:237.630000px;}
.yc2{bottom:239.970000px;}
.ya0{bottom:241.230000px;}
.y86{bottom:257.610000px;}
.y59{bottom:258.510000px;}
.y33{bottom:258.870000px;}
.yc1{bottom:263.910000px;}
.y9f{bottom:264.990000px;}
.y85{bottom:281.370000px;}
.y58{bottom:282.315000px;}
.y32{bottom:282.675000px;}
.yc0{bottom:287.715000px;}
.y9e{bottom:288.795000px;}
.y84{bottom:305.355000px;}
.y57{bottom:306.075000px;}
.y31{bottom:306.435000px;}
.ybf{bottom:311.475000px;}
.y9d{bottom:312.735000px;}
.y61{bottom:315.075000px;}
.y83{bottom:329.115000px;}
.y56{bottom:330.015000px;}
.y30{bottom:330.375000px;}
.ybe{bottom:335.235000px;}
.y9c{bottom:336.495000px;}
.y82{bottom:352.875000px;}
.y55{bottom:353.775000px;}
.y2f{bottom:354.135000px;}
.ybd{bottom:359.175000px;}
.y9b{bottom:360.255000px;}
.y81{bottom:376.635000px;}
.y54{bottom:377.535000px;}
.y2e{bottom:377.895000px;}
.y3f{bottom:382.755000px;}
.ybc{bottom:382.935000px;}
.y3c{bottom:384.015000px;}
.y5f{bottom:389.955000px;}
.y39{bottom:392.115000px;}
.y80{bottom:400.575000px;}
.y2d{bottom:401.295000px;}
.ybb{bottom:406.695000px;}
.y9a{bottom:407.955000px;}
.y7f{bottom:424.335000px;}
.y2c{bottom:425.235000px;}
.y53{bottom:425.595000px;}
.yba{bottom:430.455000px;}
.y99{bottom:431.715000px;}
.y7e{bottom:448.095000px;}
.y2b{bottom:449.355000px;}
.yb9{bottom:454.215000px;}
.y5e{bottom:455.295000px;}
.y98{bottom:455.475000px;}
.y5d{bottom:456.195000px;}
.y7d{bottom:471.855000px;}
.y2a{bottom:473.115000px;}
.yb8{bottom:478.155000px;}
.y97{bottom:479.235000px;}
.y7c{bottom:495.795000px;}
.y29{bottom:496.875000px;}
.yb7{bottom:501.915000px;}
.y96{bottom:502.995000px;}
.y7a{bottom:512.895000px;}
.y28{bottom:520.815000px;}
.yb6{bottom:525.315000px;}
.y95{bottom:526.935000px;}
.yd6{bottom:527.835000px;}
.y70{bottom:534.315000px;}
.y27{bottom:544.575000px;}
.yb5{bottom:549.435000px;}
.y94{bottom:550.695000px;}
.yd5{bottom:551.595000px;}
.y37{bottom:555.555000px;}
.y26{bottom:568.365000px;}
.yb4{bottom:573.405000px;}
.y93{bottom:574.485000px;}
.yd4{bottom:575.385000px;}
.y25{bottom:592.125000px;}
.yb3{bottom:597.165000px;}
.y92{bottom:598.245000px;}
.yd3{bottom:599.325000px;}
.yb1{bottom:614.265000px;}
.y24{bottom:616.065000px;}
.y91{bottom:622.185000px;}
.yd2{bottom:625.965000px;}
.y23{bottom:639.825000px;}
.y90{bottom:645.945000px;}
.yaf{bottom:646.305000px;}
.yd1{bottom:652.425000px;}
.y22{bottom:663.585000px;}
.y8f{bottom:669.705000px;}
.yad{bottom:677.805000px;}
.yd0{bottom:679.065000px;}
.y21{bottom:686.985000px;}
.y52{bottom:687.345000px;}
.y8e{bottom:689.145000px;}
.yab{bottom:702.285000px;}
.ycf{bottom:705.525000px;}
.y20{bottom:710.925000px;}
.y51{bottom:711.285000px;}
.y6f{bottom:718.125000px;}
.ya7{bottom:726.765000px;}
.yce{bottom:729.465000px;}
.y1f{bottom:735.045000px;}
.ycd{bottom:753.225000px;}
.y1e{bottom:758.805000px;}
.ycc{bottom:779.865000px;}
.ya6{bottom:782.205000px;}
.y1d{bottom:782.565000px;}
.ycb{bottom:803.625000px;}
.y1c{bottom:806.325000px;}
.yca{bottom:827.385000px;}
.ya5{bottom:829.905000px;}
.y1b{bottom:830.265000px;}
.yc9{bottom:851.370000px;}
.y1a{bottom:854.070000px;}
.yc8{bottom:877.470000px;}
.y19{bottom:877.830000px;}
.yc7{bottom:901.230000px;}
.y18{bottom:901.590000px;}
.y17{bottom:925.530000px;}
.y16{bottom:949.290000px;}
.y15{bottom:973.050000px;}
.y14{bottom:996.810000px;}
.y13{bottom:1020.390000px;}
.y50{bottom:1020.750000px;}
.y12{bottom:1044.150000px;}
.y4f{bottom:1044.510000px;}
.y8d{bottom:1051.350000px;}
.y11{bottom:1067.910000px;}
.y4e{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y4d{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y4c{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h1e{height:20.700000px;}
.h21{height:23.760000px;}
.h19{height:27.360000px;}
.h22{height:30.600000px;}
.h23{height:31.140000px;}
.h8{height:33.120000px;}
.h1c{height:38.158594px;}
.hd{height:43.596000px;}
.h17{height:47.344922px;}
.h20{height:47.700000px;}
.h18{height:48.616875px;}
.h1f{height:58.651172px;}
.hc{height:61.101562px;}
.hb{height:62.261719px;}
.h16{height:63.457031px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.h24{height:71.122500px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h1a{height:74.160000px;}
.h10{height:74.244727px;}
.h4{height:82.635820px;}
.h11{height:82.676953px;}
.h15{height:83.016000px;}
.he{height:84.898125px;}
.h25{height:86.585445px;}
.h14{height:88.776000px;}
.hf{height:105.660000px;}
.h12{height:107.100000px;}
.h2{height:109.800000px;}
.h1b{height:111.636000px;}
.h13{height:114.480000px;}
.h5{height:129.250898px;}
.h1d{height:144.936000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:16.920000px;}
.w8{width:17.100000px;}
.w7{width:17.136000px;}
.w15{width:31.140000px;}
.w12{width:45.180000px;}
.w6{width:49.680000px;}
.w1a{width:52.380000px;}
.w18{width:52.416000px;}
.w19{width:52.560000px;}
.w17{width:54.360000px;}
.w1c{width:61.236000px;}
.w4{width:63.570000px;}
.w1b{width:73.620000px;}
.w16{width:84.240000px;}
.wa{width:90.900000px;}
.w1d{width:118.260000px;}
.wd{width:129.276000px;}
.w2{width:134.136000px;}
.w20{width:137.340000px;}
.w21{width:152.310000px;}
.w1f{width:154.290000px;}
.we{width:161.310000px;}
.wc{width:173.010000px;}
.w10{width:194.070000px;}
.wf{width:205.950000px;}
.w1e{width:215.130000px;}
.w14{width:308.910000px;}
.w13{width:344.595000px;}
.wb{width:464.835000px;}
.w22{width:661.245000px;}
.w3{width:695.265000px;}
.w11{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.800000px;}
.x9{left:8.100000px;}
.x7{left:9.360000px;}
.x33{left:10.620000px;}
.x1f{left:12.060000px;}
.x22{left:13.140000px;}
.x4b{left:15.120000px;}
.x6{left:16.914000px;}
.x2{left:18.719973px;}
.x48{left:21.240000px;}
.x4d{left:23.940000px;}
.x20{left:25.020000px;}
.x28{left:27.180000px;}
.x38{left:28.440000px;}
.x39{left:30.420000px;}
.x24{left:31.860000px;}
.x1{left:34.559970px;}
.x2a{left:36.390000px;}
.x4e{left:37.980000px;}
.x3{left:39.599973px;}
.x4c{left:41.040000px;}
.x2b{left:42.690000px;}
.x36{left:44.820000px;}
.x5c{left:46.080000px;}
.x25{left:48.060000px;}
.x5a{left:50.040000px;}
.x5d{left:56.880000px;}
.x1d{left:58.320000px;}
.x5b{left:60.345000px;}
.x5{left:61.554000px;}
.x27{left:64.260000px;}
.xd{left:71.685000px;}
.x26{left:80.640000px;}
.x2c{left:97.050000px;}
.x40{left:117.396000px;}
.x37{left:122.220000px;}
.x32{left:130.536000px;}
.x4{left:134.136000px;}
.xa{left:138.275987px;}
.x3b{left:143.135987px;}
.x53{left:144.395987px;}
.x19{left:147.455987px;}
.x41{left:149.256000px;}
.x5e{left:153.749987px;}
.x55{left:158.430000px;}
.x13{left:161.129987px;}
.x1e{left:163.650000px;}
.x14{left:168.329987px;}
.x2e{left:170.489987px;}
.x34{left:176.430000px;}
.x5f{left:180.749987px;}
.x18{left:191.369987px;}
.x1a{left:197.669987px;}
.x1b{left:208.289987px;}
.x1c{left:213.150000px;}
.x3c{left:219.269987px;}
.x42{left:234.390000px;}
.x59{left:275.625000px;}
.x43{left:289.470000px;}
.x17{left:338.294987px;}
.x44{left:342.615000px;}
.x16{left:345.314987px;}
.x3a{left:354.314987px;}
.x15{left:371.594987px;}
.x56{left:374.295000px;}
.x21{left:391.035000px;}
.x45{left:395.895000px;}
.x4f{left:409.754987px;}
.x46{left:448.995000px;}
.x31{left:451.514987px;}
.x29{left:474.375000px;}
.x47{left:502.305000px;}
.x35{left:521.745000px;}
.x57{left:529.305000px;}
.x23{left:565.665000px;}
.x49{left:576.645000px;}
.x50{left:615.344973px;}
.x51{left:621.464987px;}
.xb{left:629.925000px;}
.x4a{left:650.985000px;}
.x58{left:667.365000px;}
.xc{left:679.605000px;}
.xe{left:696.750000px;}
.xf{left:713.850000px;}
.x10{left:730.770000px;}
.x11{left:747.870000px;}
.x3d{left:752.729973px;}
.x3e{left:758.849987px;}
.x3f{left:764.969987px;}
.x54{left:773.969987px;}
.x2f{left:801.689973px;}
.x2d{left:803.309987px;}
.x30{left:807.809987px;}
.x8{left:829.410000px;}
.x52{left:836.969987px;}
@media print{
.v1{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls1b{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls25{letter-spacing:0.896000pt;}
.ls19{letter-spacing:2.560000pt;}
.ls18{letter-spacing:3.200000pt;}
.ls11{letter-spacing:3.840000pt;}
.ls1a{letter-spacing:5.120000pt;}
.ls12{letter-spacing:5.760000pt;}
.ls2{letter-spacing:7.200000pt;}
.lsa{letter-spacing:8.960000pt;}
.lse{letter-spacing:10.240000pt;}
.ls8{letter-spacing:10.880000pt;}
.ls14{letter-spacing:10.986667pt;}
.ls9{letter-spacing:14.720000pt;}
.ls1e{letter-spacing:16.640000pt;}
.ls22{letter-spacing:18.863360pt;}
.ls4{letter-spacing:19.840000pt;}
.ls1d{letter-spacing:26.240000pt;}
.ls1c{letter-spacing:26.880000pt;}
.lsf{letter-spacing:28.800000pt;}
.ls23{letter-spacing:34.560000pt;}
.ls24{letter-spacing:35.840000pt;}
.ls16{letter-spacing:56.960000pt;}
.ls15{letter-spacing:57.600000pt;}
.ls17{letter-spacing:57.760000pt;}
.ls1f{letter-spacing:67.840000pt;}
.ls5{letter-spacing:80.800000pt;}
.ws1{word-spacing:-21.280000pt;}
.wse{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.720000pt;}
.wsf{word-spacing:-16.896000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.552000pt;}
.ws2{word-spacing:-14.656000pt;}
.wsb{word-spacing:-13.280000pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-1.966080pt;}
._1{margin-left:-0.942080pt;}
._0{width:1.198080pt;}
._a{width:2.368000pt;}
._e{width:3.520000pt;}
._4{width:4.586667pt;}
._2{width:5.760000pt;}
._3{width:6.894080pt;}
._f{width:8.384000pt;}
._b{width:9.792000pt;}
._c{width:10.762667pt;}
._14{width:12.224000pt;}
._15{width:13.329920pt;}
._5{width:15.040000pt;}
._21{width:17.048747pt;}
._11{width:18.368000pt;}
._d{width:19.904000pt;}
._27{width:20.998827pt;}
._10{width:21.888000pt;}
._1e{width:22.801920pt;}
._9{width:24.064000pt;}
._8{width:25.216000pt;}
._1a{width:26.368000pt;}
._23{width:27.306667pt;}
._19{width:28.480000pt;}
._6{width:30.016000pt;}
._7{width:31.040000pt;}
._1b{width:32.384000pt;}
._1d{width:33.792000pt;}
._1c{width:34.816000pt;}
._25{width:36.928000pt;}
._26{width:37.916160pt;}
._29{width:39.680000pt;}
._2a{width:41.888000pt;}
._2b{width:43.313920pt;}
._16{width:54.314667pt;}
._17{width:55.463253pt;}
._28{width:67.904000pt;}
._24{width:77.888000pt;}
._1f{width:78.976000pt;}
._12{width:80.064000pt;}
._13{width:81.024000pt;}
._22{width:90.240000pt;}
._20{width:112.256000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.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;}
.y4b{bottom:-4.960000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:1.440000pt;}
.y79{bottom:3.680000pt;}
.y7b{bottom:4.000000pt;}
.yac{bottom:6.240000pt;}
.yaa{bottom:6.400000pt;}
.yae{bottom:6.560000pt;}
.y60{bottom:7.840000pt;}
.yb0{bottom:9.600000pt;}
.yb2{bottom:9.920000pt;}
.y69{bottom:13.920000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.ya8{bottom:16.960000pt;}
.y7{bottom:18.400000pt;}
.y43{bottom:20.320000pt;}
.y38{bottom:20.986667pt;}
.y78{bottom:22.080000pt;}
.y4a{bottom:24.640000pt;}
.y4{bottom:24.800000pt;}
.ya9{bottom:27.520000pt;}
.y62{bottom:28.640000pt;}
.y68{bottom:35.040000pt;}
.y47{bottom:38.560000pt;}
.y63{bottom:39.520000pt;}
.y6{bottom:40.320000pt;}
.y77{bottom:40.506667pt;}
.y42{bottom:41.760000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y65{bottom:45.280000pt;}
.y6a{bottom:45.600000pt;}
.y73{bottom:49.626667pt;}
.y3b{bottom:54.880000pt;}
.y67{bottom:56.160000pt;}
.y3e{bottom:56.480000pt;}
.y49{bottom:56.840000pt;}
.y71{bottom:58.906667pt;}
.y2{bottom:61.600000pt;}
.y46{bottom:62.120000pt;}
.y41{bottom:63.360000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.y72{bottom:68.026667pt;}
.y3a{bottom:76.960000pt;}
.y76{bottom:77.306667pt;}
.y66{bottom:77.480000pt;}
.y3d{bottom:78.240000pt;}
.ya{bottom:80.992000pt;}
.y40{bottom:84.800000pt;}
.y75{bottom:95.706667pt;}
.y74{bottom:114.106667pt;}
.y8c{bottom:114.432000pt;}
.y6e{bottom:115.072000pt;}
.y8b{bottom:119.072000pt;}
.y6d{bottom:119.712000pt;}
.yc6{bottom:128.672000pt;}
.y8a{bottom:130.432000pt;}
.y6c{bottom:133.466667pt;}
.ya4{bottom:136.506667pt;}
.ya3{bottom:148.826667pt;}
.yc5{bottom:149.946667pt;}
.y6b{bottom:164.826667pt;}
.y89{bottom:165.626667pt;}
.y5c{bottom:166.266667pt;}
.y36{bottom:166.586667pt;}
.yc4{bottom:171.066667pt;}
.ya2{bottom:172.026667pt;}
.y64{bottom:180.026667pt;}
.y88{bottom:186.746667pt;}
.y5b{bottom:187.546667pt;}
.y35{bottom:187.866667pt;}
.yc3{bottom:192.186667pt;}
.ya1{bottom:193.306667pt;}
.y45{bottom:207.226667pt;}
.y87{bottom:207.866667pt;}
.y5a{bottom:208.666667pt;}
.y34{bottom:208.986667pt;}
.y48{bottom:211.226667pt;}
.yc2{bottom:213.306667pt;}
.ya0{bottom:214.426667pt;}
.y86{bottom:228.986667pt;}
.y59{bottom:229.786667pt;}
.y33{bottom:230.106667pt;}
.yc1{bottom:234.586667pt;}
.y9f{bottom:235.546667pt;}
.y85{bottom:250.106667pt;}
.y58{bottom:250.946667pt;}
.y32{bottom:251.266667pt;}
.yc0{bottom:255.746667pt;}
.y9e{bottom:256.706667pt;}
.y84{bottom:271.426667pt;}
.y57{bottom:272.066667pt;}
.y31{bottom:272.386667pt;}
.ybf{bottom:276.866667pt;}
.y9d{bottom:277.986667pt;}
.y61{bottom:280.066667pt;}
.y83{bottom:292.546667pt;}
.y56{bottom:293.346667pt;}
.y30{bottom:293.666667pt;}
.ybe{bottom:297.986667pt;}
.y9c{bottom:299.106667pt;}
.y82{bottom:313.666667pt;}
.y55{bottom:314.466667pt;}
.y2f{bottom:314.786667pt;}
.ybd{bottom:319.266667pt;}
.y9b{bottom:320.226667pt;}
.y81{bottom:334.786667pt;}
.y54{bottom:335.586667pt;}
.y2e{bottom:335.906667pt;}
.y3f{bottom:340.226667pt;}
.ybc{bottom:340.386667pt;}
.y3c{bottom:341.346667pt;}
.y5f{bottom:346.626667pt;}
.y39{bottom:348.546667pt;}
.y80{bottom:356.066667pt;}
.y2d{bottom:356.706667pt;}
.ybb{bottom:361.506667pt;}
.y9a{bottom:362.626667pt;}
.y7f{bottom:377.186667pt;}
.y2c{bottom:377.986667pt;}
.y53{bottom:378.306667pt;}
.yba{bottom:382.626667pt;}
.y99{bottom:383.746667pt;}
.y7e{bottom:398.306667pt;}
.y2b{bottom:399.426667pt;}
.yb9{bottom:403.746667pt;}
.y5e{bottom:404.706667pt;}
.y98{bottom:404.866667pt;}
.y5d{bottom:405.506667pt;}
.y7d{bottom:419.426667pt;}
.y2a{bottom:420.546667pt;}
.yb8{bottom:425.026667pt;}
.y97{bottom:425.986667pt;}
.y7c{bottom:440.706667pt;}
.y29{bottom:441.666667pt;}
.yb7{bottom:446.146667pt;}
.y96{bottom:447.106667pt;}
.y7a{bottom:455.906667pt;}
.y28{bottom:462.946667pt;}
.yb6{bottom:466.946667pt;}
.y95{bottom:468.386667pt;}
.yd6{bottom:469.186667pt;}
.y70{bottom:474.946667pt;}
.y27{bottom:484.066667pt;}
.yb5{bottom:488.386667pt;}
.y94{bottom:489.506667pt;}
.yd5{bottom:490.306667pt;}
.y37{bottom:493.826667pt;}
.y26{bottom:505.213333pt;}
.yb4{bottom:509.693333pt;}
.y93{bottom:510.653333pt;}
.yd4{bottom:511.453333pt;}
.y25{bottom:526.333333pt;}
.yb3{bottom:530.813333pt;}
.y92{bottom:531.773333pt;}
.yd3{bottom:532.733333pt;}
.yb1{bottom:546.013333pt;}
.y24{bottom:547.613333pt;}
.y91{bottom:553.053333pt;}
.yd2{bottom:556.413333pt;}
.y23{bottom:568.733333pt;}
.y90{bottom:574.173333pt;}
.yaf{bottom:574.493333pt;}
.yd1{bottom:579.933333pt;}
.y22{bottom:589.853333pt;}
.y8f{bottom:595.293333pt;}
.yad{bottom:602.493333pt;}
.yd0{bottom:603.613333pt;}
.y21{bottom:610.653333pt;}
.y52{bottom:610.973333pt;}
.y8e{bottom:612.573333pt;}
.yab{bottom:624.253333pt;}
.ycf{bottom:627.133333pt;}
.y20{bottom:631.933333pt;}
.y51{bottom:632.253333pt;}
.y6f{bottom:638.333333pt;}
.ya7{bottom:646.013333pt;}
.yce{bottom:648.413333pt;}
.y1f{bottom:653.373333pt;}
.ycd{bottom:669.533333pt;}
.y1e{bottom:674.493333pt;}
.ycc{bottom:693.213333pt;}
.ya6{bottom:695.293333pt;}
.y1d{bottom:695.613333pt;}
.ycb{bottom:714.333333pt;}
.y1c{bottom:716.733333pt;}
.yca{bottom:735.453333pt;}
.ya5{bottom:737.693333pt;}
.y1b{bottom:738.013333pt;}
.yc9{bottom:756.773333pt;}
.y1a{bottom:759.173333pt;}
.yc8{bottom:779.973333pt;}
.y19{bottom:780.293333pt;}
.yc7{bottom:801.093333pt;}
.y18{bottom:801.413333pt;}
.y17{bottom:822.693333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.933333pt;}
.y14{bottom:886.053333pt;}
.y13{bottom:907.013333pt;}
.y50{bottom:907.333333pt;}
.y12{bottom:928.133333pt;}
.y4f{bottom:928.453333pt;}
.y8d{bottom:934.533333pt;}
.y11{bottom:949.253333pt;}
.y4e{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y4d{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y4c{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h1e{height:18.400000pt;}
.h21{height:21.120000pt;}
.h19{height:24.320000pt;}
.h22{height:27.200000pt;}
.h23{height:27.680000pt;}
.h8{height:29.440000pt;}
.h1c{height:33.918750pt;}
.hd{height:38.752000pt;}
.h17{height:42.084375pt;}
.h20{height:42.400000pt;}
.h18{height:43.215000pt;}
.h1f{height:52.134375pt;}
.hc{height:54.312500pt;}
.hb{height:55.343750pt;}
.h16{height:56.406250pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.h24{height:63.220000pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h1a{height:65.920000pt;}
.h10{height:65.995312pt;}
.h4{height:73.454062pt;}
.h11{height:73.490625pt;}
.h15{height:73.792000pt;}
.he{height:75.465000pt;}
.h25{height:76.964840pt;}
.h14{height:78.912000pt;}
.hf{height:93.920000pt;}
.h12{height:95.200000pt;}
.h2{height:97.600000pt;}
.h1b{height:99.232000pt;}
.h13{height:101.760000pt;}
.h5{height:114.889687pt;}
.h1d{height:128.832000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:15.040000pt;}
.w8{width:15.200000pt;}
.w7{width:15.232000pt;}
.w15{width:27.680000pt;}
.w12{width:40.160000pt;}
.w6{width:44.160000pt;}
.w1a{width:46.560000pt;}
.w18{width:46.592000pt;}
.w19{width:46.720000pt;}
.w17{width:48.320000pt;}
.w1c{width:54.432000pt;}
.w4{width:56.506667pt;}
.w1b{width:65.440000pt;}
.w16{width:74.880000pt;}
.wa{width:80.800000pt;}
.w1d{width:105.120000pt;}
.wd{width:114.912000pt;}
.w2{width:119.232000pt;}
.w20{width:122.080000pt;}
.w21{width:135.386667pt;}
.w1f{width:137.146667pt;}
.we{width:143.386667pt;}
.wc{width:153.786667pt;}
.w10{width:172.506667pt;}
.wf{width:183.066667pt;}
.w1e{width:191.226667pt;}
.w14{width:274.586667pt;}
.w13{width:306.306667pt;}
.wb{width:413.186667pt;}
.w22{width:587.773333pt;}
.w3{width:618.013333pt;}
.w11{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.600000pt;}
.x9{left:7.200000pt;}
.x7{left:8.320000pt;}
.x33{left:9.440000pt;}
.x1f{left:10.720000pt;}
.x22{left:11.680000pt;}
.x4b{left:13.440000pt;}
.x6{left:15.034667pt;}
.x2{left:16.639976pt;}
.x48{left:18.880000pt;}
.x4d{left:21.280000pt;}
.x20{left:22.240000pt;}
.x28{left:24.160000pt;}
.x38{left:25.280000pt;}
.x39{left:27.040000pt;}
.x24{left:28.320000pt;}
.x1{left:30.719974pt;}
.x2a{left:32.346667pt;}
.x4e{left:33.760000pt;}
.x3{left:35.199976pt;}
.x4c{left:36.480000pt;}
.x2b{left:37.946667pt;}
.x36{left:39.840000pt;}
.x5c{left:40.960000pt;}
.x25{left:42.720000pt;}
.x5a{left:44.480000pt;}
.x5d{left:50.560000pt;}
.x1d{left:51.840000pt;}
.x5b{left:53.640000pt;}
.x5{left:54.714667pt;}
.x27{left:57.120000pt;}
.xd{left:63.720000pt;}
.x26{left:71.680000pt;}
.x2c{left:86.266667pt;}
.x40{left:104.352000pt;}
.x37{left:108.640000pt;}
.x32{left:116.032000pt;}
.x4{left:119.232000pt;}
.xa{left:122.911988pt;}
.x3b{left:127.231988pt;}
.x53{left:128.351988pt;}
.x19{left:131.071988pt;}
.x41{left:132.672000pt;}
.x5e{left:136.666655pt;}
.x55{left:140.826667pt;}
.x13{left:143.226655pt;}
.x1e{left:145.466667pt;}
.x14{left:149.626655pt;}
.x2e{left:151.546655pt;}
.x34{left:156.826667pt;}
.x5f{left:160.666655pt;}
.x18{left:170.106655pt;}
.x1a{left:175.706655pt;}
.x1b{left:185.146655pt;}
.x1c{left:189.466667pt;}
.x3c{left:194.906655pt;}
.x42{left:208.346667pt;}
.x59{left:245.000000pt;}
.x43{left:257.306667pt;}
.x17{left:300.706655pt;}
.x44{left:304.546667pt;}
.x16{left:306.946655pt;}
.x3a{left:314.946655pt;}
.x15{left:330.306655pt;}
.x56{left:332.706667pt;}
.x21{left:347.586667pt;}
.x45{left:351.906667pt;}
.x4f{left:364.226655pt;}
.x46{left:399.106667pt;}
.x31{left:401.346655pt;}
.x29{left:421.666667pt;}
.x47{left:446.493333pt;}
.x35{left:463.773333pt;}
.x57{left:470.493333pt;}
.x23{left:502.813333pt;}
.x49{left:512.573333pt;}
.x50{left:546.973310pt;}
.x51{left:552.413322pt;}
.xb{left:559.933333pt;}
.x4a{left:578.653333pt;}
.x58{left:593.213333pt;}
.xc{left:604.093333pt;}
.xe{left:619.333333pt;}
.xf{left:634.533333pt;}
.x10{left:649.573333pt;}
.x11{left:664.773333pt;}
.x3d{left:669.093310pt;}
.x3e{left:674.533322pt;}
.x3f{left:679.973322pt;}
.x54{left:687.973322pt;}
.x2f{left:712.613310pt;}
.x2d{left:714.053322pt;}
.x30{left:718.053322pt;}
.x8{left:737.253333pt;}
.x52{left:743.973322pt;}
}




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