
    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_431ac58ef289ee3bad6210c5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_dd62c7088bb4bef2271767cc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d10129e14c3ec985f8d1b080.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_a67648808bce0d99ca1b25a1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_56fe61327c4c3e431e3fc9cf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.900000px;}
.ls9{letter-spacing:7.380000px;}
.ls7{letter-spacing:11.700000px;}
.ls5{letter-spacing:16.740000px;}
.lsc{letter-spacing:21.546720px;}
.ls6{letter-spacing:27.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._26{margin-left:-8.197440px;}
._b{margin-left:-4.442880px;}
._a{margin-left:-2.646000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._6{width:2.497920px;}
._2{width:4.245600px;}
._c{width:5.937120px;}
._8{width:7.700880px;}
._7{width:8.964000px;}
._e{width:10.323120px;}
._f{width:11.824800px;}
._d{width:13.720560px;}
._9{width:16.073280px;}
._12{width:18.099600px;}
._13{width:19.429680px;}
._23{width:20.468640px;}
._10{width:21.505920px;}
._11{width:22.596960px;}
._24{width:23.844240px;}
._25{width:25.816320px;}
._1d{width:26.824560px;}
._20{width:29.394240px;}
._18{width:41.047440px;}
._16{width:42.063360px;}
._15{width:43.206480px;}
._22{width:45.178560px;}
._21{width:46.792080px;}
._19{width:50.728560px;}
._1a{width:52.006560px;}
._1f{width:57.489120px;}
._1c{width:61.784160px;}
._1e{width:63.943200px;}
._14{width:81.094320px;}
._17{width:83.118480px;}
._5{width:85.656000px;}
._1b{width:169.650960px;}
._4{width:687.306000px;}
._3{width:746.796000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:3.240000px;}
.yb8{bottom:3.270000px;}
.ybf{bottom:3.960000px;}
.y9c{bottom:4.140000px;}
.y87{bottom:4.860000px;}
.ya3{bottom:5.400000px;}
.y10b{bottom:6.120000px;}
.ya0{bottom:9.540000px;}
.y91{bottom:10.260000px;}
.y10d{bottom:10.440000px;}
.y114{bottom:11.880000px;}
.y116{bottom:12.060000px;}
.y8c{bottom:12.240000px;}
.y7d{bottom:13.185000px;}
.y8a{bottom:13.320000px;}
.y78{bottom:13.680000px;}
.y8f{bottom:14.400000px;}
.y7c{bottom:17.100000px;}
.yd8{bottom:18.540000px;}
.y111{bottom:20.520000px;}
.y10f{bottom:20.550000px;}
.ydd{bottom:21.960000px;}
.ye6{bottom:22.140000px;}
.y7a{bottom:23.805000px;}
.y80{bottom:26.280000px;}
.yeb{bottom:28.800000px;}
.y89{bottom:30.420000px;}
.ye2{bottom:35.640000px;}
.yd7{bottom:35.820000px;}
.yb{bottom:36.216000px;}
.ydc{bottom:39.240000px;}
.y7f{bottom:43.560000px;}
.yea{bottom:46.080000px;}
.ye1{bottom:52.740000px;}
.yd6{bottom:53.100000px;}
.ya{bottom:55.836000px;}
.ydb{bottom:56.520000px;}
.ye9{bottom:63.390000px;}
.ye0{bottom:70.020000px;}
.yd5{bottom:70.380000px;}
.y9{bottom:71.316000px;}
.yda{bottom:73.620000px;}
.ye5{bottom:73.800000px;}
.ye8{bottom:80.490000px;}
.ydf{bottom:87.345000px;}
.y9a{bottom:113.616000px;}
.y128{bottom:114.156000px;}
.y129{bottom:117.036000px;}
.yd2{bottom:119.196000px;}
.y101{bottom:123.516000px;}
.y85{bottom:126.936000px;}
.y40{bottom:127.116000px;}
.y99{bottom:130.716000px;}
.y127{bottom:131.256000px;}
.y76{bottom:134.316000px;}
.yd1{bottom:136.476000px;}
.y100{bottom:140.796000px;}
.y84{bottom:144.216000px;}
.y3f{bottom:144.396000px;}
.y98{bottom:147.996000px;}
.y126{bottom:148.536000px;}
.y75{bottom:151.590000px;}
.yd0{bottom:153.750000px;}
.yff{bottom:158.070000px;}
.y83{bottom:161.490000px;}
.y3e{bottom:161.670000px;}
.y97{bottom:165.270000px;}
.y125{bottom:165.810000px;}
.y74{bottom:168.870000px;}
.ycf{bottom:171.030000px;}
.yfe{bottom:175.170000px;}
.y82{bottom:178.590000px;}
.y3d{bottom:178.950000px;}
.y96{bottom:179.310000px;}
.y124{bottom:183.090000px;}
.y73{bottom:186.150000px;}
.yce{bottom:188.310000px;}
.yfd{bottom:192.450000px;}
.y81{bottom:195.870000px;}
.y3c{bottom:196.230000px;}
.y123{bottom:200.370000px;}
.y72{bottom:203.430000px;}
.ycd{bottom:205.590000px;}
.yfc{bottom:209.730000px;}
.y7e{bottom:210.630000px;}
.y3b{bottom:213.330000px;}
.y122{bottom:217.470000px;}
.y71{bottom:220.530000px;}
.ycc{bottom:222.690000px;}
.yfb{bottom:227.010000px;}
.y3a{bottom:230.610000px;}
.y121{bottom:234.750000px;}
.y70{bottom:237.810000px;}
.ycb{bottom:239.970000px;}
.yfa{bottom:244.290000px;}
.y39{bottom:247.890000px;}
.y120{bottom:252.030000px;}
.y6f{bottom:255.090000px;}
.yca{bottom:257.250000px;}
.yf9{bottom:261.570000px;}
.y38{bottom:265.170000px;}
.y79{bottom:268.050000px;}
.y11f{bottom:269.310000px;}
.y6e{bottom:272.370000px;}
.yc9{bottom:274.530000px;}
.yf8{bottom:278.670000px;}
.y37{bottom:282.495000px;}
.y11e{bottom:286.635000px;}
.y6d{bottom:289.695000px;}
.yc8{bottom:291.855000px;}
.y7b{bottom:295.095000px;}
.yf7{bottom:295.995000px;}
.y36{bottom:299.775000px;}
.y11d{bottom:303.915000px;}
.y6c{bottom:306.975000px;}
.yc7{bottom:308.955000px;}
.yf6{bottom:313.275000px;}
.y35{bottom:316.875000px;}
.y11c{bottom:321.015000px;}
.y6b{bottom:324.075000px;}
.yc6{bottom:326.235000px;}
.y77{bottom:326.955000px;}
.yf5{bottom:330.555000px;}
.y34{bottom:334.155000px;}
.y11b{bottom:338.295000px;}
.y6a{bottom:341.355000px;}
.yc5{bottom:343.515000px;}
.yf4{bottom:347.835000px;}
.y33{bottom:351.435000px;}
.y11a{bottom:355.575000px;}
.y69{bottom:358.635000px;}
.yc4{bottom:360.795000px;}
.yf3{bottom:365.115000px;}
.y32{bottom:368.715000px;}
.y119{bottom:372.855000px;}
.yc3{bottom:375.555000px;}
.y68{bottom:375.915000px;}
.yf2{bottom:382.215000px;}
.y31{bottom:385.995000px;}
.y118{bottom:387.615000px;}
.yc2{bottom:392.835000px;}
.y67{bottom:393.195000px;}
.yf1{bottom:399.495000px;}
.y30{bottom:403.095000px;}
.y66{bottom:410.295000px;}
.yc1{bottom:412.995000px;}
.yf0{bottom:416.775000px;}
.y2f{bottom:420.375000px;}
.y117{bottom:422.175000px;}
.y65{bottom:427.575000px;}
.yc0{bottom:430.275000px;}
.yef{bottom:434.055000px;}
.y2e{bottom:437.655000px;}
.y64{bottom:444.855000px;}
.ybe{bottom:447.555000px;}
.y115{bottom:448.095000px;}
.yee{bottom:451.335000px;}
.y2d{bottom:454.935000px;}
.y63{bottom:462.135000px;}
.ybd{bottom:466.275000px;}
.yed{bottom:468.615000px;}
.y2c{bottom:472.215000px;}
.y113{bottom:474.195000px;}
.y62{bottom:479.415000px;}
.ybc{bottom:483.555000px;}
.yec{bottom:485.715000px;}
.y2b{bottom:489.495000px;}
.y61{bottom:496.695000px;}
.y112{bottom:500.115000px;}
.ye7{bottom:500.475000px;}
.ybb{bottom:500.835000px;}
.y2a{bottom:506.595000px;}
.y60{bottom:513.795000px;}
.yba{bottom:519.555000px;}
.y29{bottom:523.875000px;}
.y110{bottom:524.595000px;}
.y5f{bottom:531.075000px;}
.yb9{bottom:539.715000px;}
.y28{bottom:541.155000px;}
.y5e{bottom:548.355000px;}
.y10e{bottom:559.155000px;}
.yb7{bottom:560.055000px;}
.y27{bottom:560.955000px;}
.y5d{bottom:565.665000px;}
.yb6{bottom:577.905000px;}
.y26{bottom:578.265000px;}
.y5c{bottom:582.945000px;}
.y10c{bottom:593.565000px;}
.ye4{bottom:595.005000px;}
.y25{bottom:595.545000px;}
.yb5{bottom:599.145000px;}
.y5b{bottom:600.225000px;}
.y95{bottom:602.025000px;}
.y24{bottom:612.825000px;}
.yb4{bottom:616.425000px;}
.y5a{bottom:617.325000px;}
.y10a{bottom:618.765000px;}
.y94{bottom:619.305000px;}
.y23{bottom:630.105000px;}
.yb3{bottom:633.705000px;}
.y59{bottom:634.605000px;}
.y93{bottom:636.585000px;}
.y109{bottom:642.885000px;}
.y22{bottom:647.385000px;}
.yb2{bottom:650.985000px;}
.y58{bottom:651.885000px;}
.y92{bottom:653.685000px;}
.y108{bottom:660.165000px;}
.y21{bottom:664.485000px;}
.yb1{bottom:668.265000px;}
.y90{bottom:668.445000px;}
.y57{bottom:669.165000px;}
.y107{bottom:677.445000px;}
.y20{bottom:681.765000px;}
.ye3{bottom:682.845000px;}
.yb0{bottom:685.545000px;}
.y56{bottom:686.445000px;}
.y8e{bottom:692.745000px;}
.y106{bottom:694.725000px;}
.y1f{bottom:699.045000px;}
.yaf{bottom:702.645000px;}
.y55{bottom:703.545000px;}
.y105{bottom:712.005000px;}
.y1e{bottom:716.325000px;}
.yae{bottom:719.925000px;}
.y54{bottom:720.825000px;}
.y8d{bottom:721.005000px;}
.y104{bottom:729.105000px;}
.y1d{bottom:733.605000px;}
.yad{bottom:737.205000px;}
.y53{bottom:738.105000px;}
.y103{bottom:746.385000px;}
.y8b{bottom:747.285000px;}
.y1c{bottom:750.885000px;}
.yac{bottom:754.485000px;}
.y52{bottom:755.385000px;}
.y102{bottom:760.425000px;}
.y1b{bottom:767.985000px;}
.yde{bottom:770.505000px;}
.yab{bottom:771.765000px;}
.y51{bottom:772.665000px;}
.y88{bottom:773.565000px;}
.y1a{bottom:785.265000px;}
.yaa{bottom:789.045000px;}
.y50{bottom:789.945000px;}
.y19{bottom:802.545000px;}
.ya9{bottom:806.145000px;}
.y4f{bottom:807.045000px;}
.y86{bottom:818.745000px;}
.y18{bottom:819.825000px;}
.ya8{bottom:823.425000px;}
.y4e{bottom:824.325000px;}
.y17{bottom:837.105000px;}
.ya7{bottom:840.705000px;}
.y4d{bottom:841.605000px;}
.y16{bottom:855.510000px;}
.ya6{bottom:858.030000px;}
.y4c{bottom:858.930000px;}
.yd9{bottom:871.890000px;}
.y15{bottom:872.790000px;}
.ya5{bottom:875.310000px;}
.y4b{bottom:876.210000px;}
.y14{bottom:890.430000px;}
.ya4{bottom:892.590000px;}
.y4a{bottom:893.490000px;}
.ya2{bottom:907.350000px;}
.y13{bottom:909.330000px;}
.y49{bottom:910.590000px;}
.ya1{bottom:926.790000px;}
.y48{bottom:927.870000px;}
.y12{bottom:928.410000px;}
.y47{bottom:945.150000px;}
.y11{bottom:947.310000px;}
.y9f{bottom:950.370000px;}
.yd4{bottom:959.550000px;}
.y46{bottom:962.430000px;}
.y10{bottom:966.210000px;}
.y9d{bottom:973.950000px;}
.y45{bottom:979.710000px;}
.yf{bottom:985.290000px;}
.y9b{bottom:991.950000px;}
.y44{bottom:996.990000px;}
.ye{bottom:1004.550000px;}
.y43{bottom:1014.090000px;}
.yd{bottom:1025.250000px;}
.y42{bottom:1031.370000px;}
.yd3{bottom:1044.690000px;}
.yc{bottom:1045.950000px;}
.y41{bottom:1048.650000px;}
.y8{bottom:1066.650000px;}
.y7{bottom:1086.270000px;}
.y6{bottom:1102.110000px;}
.y5{bottom:1120.110000px;}
.y4{bottom:1136.880000px;}
.y3{bottom:1179.000000px;}
.y2{bottom:1198.980000px;}
.y1{bottom:1216.260000px;}
.h16{height:17.100000px;}
.h1a{height:17.136000px;}
.h19{height:17.280000px;}
.h15{height:18.180000px;}
.h1d{height:18.720000px;}
.h10{height:18.900000px;}
.h18{height:19.440000px;}
.h1c{height:20.160000px;}
.h1b{height:20.340000px;}
.h17{height:23.580000px;}
.h14{height:24.300000px;}
.h23{height:24.480000px;}
.h26{height:25.920000px;}
.h27{height:26.100000px;}
.h12{height:26.280000px;}
.he{height:27.036000px;}
.hb{height:27.720000px;}
.h13{height:28.260000px;}
.hd{height:30.960000px;}
.h24{height:34.416000px;}
.h25{height:34.560000px;}
.h6{height:39.049805px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.ha{height:43.302656px;}
.h28{height:43.506914px;}
.h9{height:43.681992px;}
.h11{height:44.460000px;}
.h7{height:46.736719px;}
.h8{height:47.901094px;}
.h4{height:50.800781px;}
.h3{height:52.066406px;}
.hf{height:57.420000px;}
.hc{height:57.996000px;}
.h1e{height:84.420000px;}
.h1f{height:87.660000px;}
.h21{height:87.840000px;}
.h22{height:94.536000px;}
.h20{height:101.376000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:95.040000px;}
.w4{width:128.196000px;}
.w6{width:138.096000px;}
.wd{width:139.536000px;}
.we{width:139.896000px;}
.w3{width:141.840000px;}
.w12{width:150.150000px;}
.w15{width:180.570000px;}
.wa{width:180.750000px;}
.w10{width:189.030000px;}
.w14{width:222.870000px;}
.wb{width:233.850000px;}
.w9{width:244.650000px;}
.w5{width:252.750000px;}
.w13{width:256.530000px;}
.w11{width:317.370000px;}
.wc{width:377.130000px;}
.w8{width:560.985000px;}
.wf{width:656.565000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1a{left:8.100000px;}
.x12{left:17.280000px;}
.x14{left:21.240000px;}
.x38{left:23.040000px;}
.x1c{left:27.180000px;}
.x1f{left:30.060000px;}
.x19{left:37.440000px;}
.x22{left:39.600000px;}
.x1b{left:42.120000px;}
.x18{left:47.205000px;}
.x33{left:62.460000px;}
.x32{left:63.720000px;}
.x30{left:65.550000px;}
.x40{left:68.040000px;}
.x27{left:69.120000px;}
.x16{left:77.400000px;}
.x2b{left:79.020000px;}
.x29{left:82.800000px;}
.x3e{left:86.220000px;}
.x1d{left:97.200000px;}
.x25{left:100.254000px;}
.x3c{left:106.554000px;}
.x1{left:108.035987px;}
.x2c{left:109.260000px;}
.x2a{left:113.040000px;}
.x36{left:117.000000px;}
.x8{left:120.995987px;}
.x2{left:123.155987px;}
.x42{left:135.035987px;}
.xa{left:136.835987px;}
.x7{left:141.695987px;}
.x4{left:157.169987px;}
.x11{left:162.029987px;}
.x34{left:178.049987px;}
.x20{left:203.070000px;}
.x2d{left:228.989987px;}
.x21{left:243.405000px;}
.x13{left:249.870000px;}
.x41{left:257.429987px;}
.x3b{left:261.569987px;}
.xd{left:283.529987px;}
.x39{left:289.469987px;}
.x35{left:297.075000px;}
.x24{left:300.494987px;}
.x1e{left:308.054987px;}
.xb{left:324.254987px;}
.xe{left:328.754987px;}
.x2e{left:346.394987px;}
.x9{left:350.174987px;}
.x26{left:352.695000px;}
.x3d{left:364.575000px;}
.x15{left:378.075000px;}
.x10{left:386.354987px;}
.x43{left:389.774987px;}
.xc{left:394.814987px;}
.x6{left:396.434987px;}
.x5{left:412.274987px;}
.xf{left:446.474987px;}
.x2f{left:485.175000px;}
.x3{left:518.504987px;}
.x28{left:533.445000px;}
.x3f{left:587.445000px;}
.x37{left:614.445000px;}
.x31{left:624.705000px;}
.x17{left:630.825000px;}
.x3a{left:682.664987px;}
.x23{left:701.789987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls9{letter-spacing:6.560000pt;}
.ls7{letter-spacing:10.400000pt;}
.ls5{letter-spacing:14.880000pt;}
.lsc{letter-spacing:19.152640pt;}
.ls6{letter-spacing:24.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._26{margin-left:-7.286613pt;}
._b{margin-left:-3.949227pt;}
._a{margin-left:-2.352000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._6{width:2.220373pt;}
._2{width:3.773867pt;}
._c{width:5.277440pt;}
._8{width:6.845227pt;}
._7{width:7.968000pt;}
._e{width:9.176107pt;}
._f{width:10.510933pt;}
._d{width:12.196053pt;}
._9{width:14.287360pt;}
._12{width:16.088533pt;}
._13{width:17.270827pt;}
._23{width:18.194347pt;}
._10{width:19.116373pt;}
._11{width:20.086187pt;}
._24{width:21.194880pt;}
._25{width:22.947840pt;}
._1d{width:23.844053pt;}
._20{width:26.128213pt;}
._18{width:36.486613pt;}
._16{width:37.389653pt;}
._15{width:38.405760pt;}
._22{width:40.158720pt;}
._21{width:41.592960pt;}
._19{width:45.092053pt;}
._1a{width:46.228053pt;}
._1f{width:51.101440pt;}
._1c{width:54.919253pt;}
._1e{width:56.838400pt;}
._14{width:72.083840pt;}
._17{width:73.883093pt;}
._5{width:76.138667pt;}
._1b{width:150.800853pt;}
._4{width:610.938667pt;}
._3{width:663.818667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:2.880000pt;}
.yb8{bottom:2.906667pt;}
.ybf{bottom:3.520000pt;}
.y9c{bottom:3.680000pt;}
.y87{bottom:4.320000pt;}
.ya3{bottom:4.800000pt;}
.y10b{bottom:5.440000pt;}
.ya0{bottom:8.480000pt;}
.y91{bottom:9.120000pt;}
.y10d{bottom:9.280000pt;}
.y114{bottom:10.560000pt;}
.y116{bottom:10.720000pt;}
.y8c{bottom:10.880000pt;}
.y7d{bottom:11.720000pt;}
.y8a{bottom:11.840000pt;}
.y78{bottom:12.160000pt;}
.y8f{bottom:12.800000pt;}
.y7c{bottom:15.200000pt;}
.yd8{bottom:16.480000pt;}
.y111{bottom:18.240000pt;}
.y10f{bottom:18.266667pt;}
.ydd{bottom:19.520000pt;}
.ye6{bottom:19.680000pt;}
.y7a{bottom:21.160000pt;}
.y80{bottom:23.360000pt;}
.yeb{bottom:25.600000pt;}
.y89{bottom:27.040000pt;}
.ye2{bottom:31.680000pt;}
.yd7{bottom:31.840000pt;}
.yb{bottom:32.192000pt;}
.ydc{bottom:34.880000pt;}
.y7f{bottom:38.720000pt;}
.yea{bottom:40.960000pt;}
.ye1{bottom:46.880000pt;}
.yd6{bottom:47.200000pt;}
.ya{bottom:49.632000pt;}
.ydb{bottom:50.240000pt;}
.ye9{bottom:56.346667pt;}
.ye0{bottom:62.240000pt;}
.yd5{bottom:62.560000pt;}
.y9{bottom:63.392000pt;}
.yda{bottom:65.440000pt;}
.ye5{bottom:65.600000pt;}
.ye8{bottom:71.546667pt;}
.ydf{bottom:77.640000pt;}
.y9a{bottom:100.992000pt;}
.y128{bottom:101.472000pt;}
.y129{bottom:104.032000pt;}
.yd2{bottom:105.952000pt;}
.y101{bottom:109.792000pt;}
.y85{bottom:112.832000pt;}
.y40{bottom:112.992000pt;}
.y99{bottom:116.192000pt;}
.y127{bottom:116.672000pt;}
.y76{bottom:119.392000pt;}
.yd1{bottom:121.312000pt;}
.y100{bottom:125.152000pt;}
.y84{bottom:128.192000pt;}
.y3f{bottom:128.352000pt;}
.y98{bottom:131.552000pt;}
.y126{bottom:132.032000pt;}
.y75{bottom:134.746667pt;}
.yd0{bottom:136.666667pt;}
.yff{bottom:140.506667pt;}
.y83{bottom:143.546667pt;}
.y3e{bottom:143.706667pt;}
.y97{bottom:146.906667pt;}
.y125{bottom:147.386667pt;}
.y74{bottom:150.106667pt;}
.ycf{bottom:152.026667pt;}
.yfe{bottom:155.706667pt;}
.y82{bottom:158.746667pt;}
.y3d{bottom:159.066667pt;}
.y96{bottom:159.386667pt;}
.y124{bottom:162.746667pt;}
.y73{bottom:165.466667pt;}
.yce{bottom:167.386667pt;}
.yfd{bottom:171.066667pt;}
.y81{bottom:174.106667pt;}
.y3c{bottom:174.426667pt;}
.y123{bottom:178.106667pt;}
.y72{bottom:180.826667pt;}
.ycd{bottom:182.746667pt;}
.yfc{bottom:186.426667pt;}
.y7e{bottom:187.226667pt;}
.y3b{bottom:189.626667pt;}
.y122{bottom:193.306667pt;}
.y71{bottom:196.026667pt;}
.ycc{bottom:197.946667pt;}
.yfb{bottom:201.786667pt;}
.y3a{bottom:204.986667pt;}
.y121{bottom:208.666667pt;}
.y70{bottom:211.386667pt;}
.ycb{bottom:213.306667pt;}
.yfa{bottom:217.146667pt;}
.y39{bottom:220.346667pt;}
.y120{bottom:224.026667pt;}
.y6f{bottom:226.746667pt;}
.yca{bottom:228.666667pt;}
.yf9{bottom:232.506667pt;}
.y38{bottom:235.706667pt;}
.y79{bottom:238.266667pt;}
.y11f{bottom:239.386667pt;}
.y6e{bottom:242.106667pt;}
.yc9{bottom:244.026667pt;}
.yf8{bottom:247.706667pt;}
.y37{bottom:251.106667pt;}
.y11e{bottom:254.786667pt;}
.y6d{bottom:257.506667pt;}
.yc8{bottom:259.426667pt;}
.y7b{bottom:262.306667pt;}
.yf7{bottom:263.106667pt;}
.y36{bottom:266.466667pt;}
.y11d{bottom:270.146667pt;}
.y6c{bottom:272.866667pt;}
.yc7{bottom:274.626667pt;}
.yf6{bottom:278.466667pt;}
.y35{bottom:281.666667pt;}
.y11c{bottom:285.346667pt;}
.y6b{bottom:288.066667pt;}
.yc6{bottom:289.986667pt;}
.y77{bottom:290.626667pt;}
.yf5{bottom:293.826667pt;}
.y34{bottom:297.026667pt;}
.y11b{bottom:300.706667pt;}
.y6a{bottom:303.426667pt;}
.yc5{bottom:305.346667pt;}
.yf4{bottom:309.186667pt;}
.y33{bottom:312.386667pt;}
.y11a{bottom:316.066667pt;}
.y69{bottom:318.786667pt;}
.yc4{bottom:320.706667pt;}
.yf3{bottom:324.546667pt;}
.y32{bottom:327.746667pt;}
.y119{bottom:331.426667pt;}
.yc3{bottom:333.826667pt;}
.y68{bottom:334.146667pt;}
.yf2{bottom:339.746667pt;}
.y31{bottom:343.106667pt;}
.y118{bottom:344.546667pt;}
.yc2{bottom:349.186667pt;}
.y67{bottom:349.506667pt;}
.yf1{bottom:355.106667pt;}
.y30{bottom:358.306667pt;}
.y66{bottom:364.706667pt;}
.yc1{bottom:367.106667pt;}
.yf0{bottom:370.466667pt;}
.y2f{bottom:373.666667pt;}
.y117{bottom:375.266667pt;}
.y65{bottom:380.066667pt;}
.yc0{bottom:382.466667pt;}
.yef{bottom:385.826667pt;}
.y2e{bottom:389.026667pt;}
.y64{bottom:395.426667pt;}
.ybe{bottom:397.826667pt;}
.y115{bottom:398.306667pt;}
.yee{bottom:401.186667pt;}
.y2d{bottom:404.386667pt;}
.y63{bottom:410.786667pt;}
.ybd{bottom:414.466667pt;}
.yed{bottom:416.546667pt;}
.y2c{bottom:419.746667pt;}
.y113{bottom:421.506667pt;}
.y62{bottom:426.146667pt;}
.ybc{bottom:429.826667pt;}
.yec{bottom:431.746667pt;}
.y2b{bottom:435.106667pt;}
.y61{bottom:441.506667pt;}
.y112{bottom:444.546667pt;}
.ye7{bottom:444.866667pt;}
.ybb{bottom:445.186667pt;}
.y2a{bottom:450.306667pt;}
.y60{bottom:456.706667pt;}
.yba{bottom:461.826667pt;}
.y29{bottom:465.666667pt;}
.y110{bottom:466.306667pt;}
.y5f{bottom:472.066667pt;}
.yb9{bottom:479.746667pt;}
.y28{bottom:481.026667pt;}
.y5e{bottom:487.426667pt;}
.y10e{bottom:497.026667pt;}
.yb7{bottom:497.826667pt;}
.y27{bottom:498.626667pt;}
.y5d{bottom:502.813333pt;}
.yb6{bottom:513.693333pt;}
.y26{bottom:514.013333pt;}
.y5c{bottom:518.173333pt;}
.y10c{bottom:527.613333pt;}
.ye4{bottom:528.893333pt;}
.y25{bottom:529.373333pt;}
.yb5{bottom:532.573333pt;}
.y5b{bottom:533.533333pt;}
.y95{bottom:535.133333pt;}
.y24{bottom:544.733333pt;}
.yb4{bottom:547.933333pt;}
.y5a{bottom:548.733333pt;}
.y10a{bottom:550.013333pt;}
.y94{bottom:550.493333pt;}
.y23{bottom:560.093333pt;}
.yb3{bottom:563.293333pt;}
.y59{bottom:564.093333pt;}
.y93{bottom:565.853333pt;}
.y109{bottom:571.453333pt;}
.y22{bottom:575.453333pt;}
.yb2{bottom:578.653333pt;}
.y58{bottom:579.453333pt;}
.y92{bottom:581.053333pt;}
.y108{bottom:586.813333pt;}
.y21{bottom:590.653333pt;}
.yb1{bottom:594.013333pt;}
.y90{bottom:594.173333pt;}
.y57{bottom:594.813333pt;}
.y107{bottom:602.173333pt;}
.y20{bottom:606.013333pt;}
.ye3{bottom:606.973333pt;}
.yb0{bottom:609.373333pt;}
.y56{bottom:610.173333pt;}
.y8e{bottom:615.773333pt;}
.y106{bottom:617.533333pt;}
.y1f{bottom:621.373333pt;}
.yaf{bottom:624.573333pt;}
.y55{bottom:625.373333pt;}
.y105{bottom:632.893333pt;}
.y1e{bottom:636.733333pt;}
.yae{bottom:639.933333pt;}
.y54{bottom:640.733333pt;}
.y8d{bottom:640.893333pt;}
.y104{bottom:648.093333pt;}
.y1d{bottom:652.093333pt;}
.yad{bottom:655.293333pt;}
.y53{bottom:656.093333pt;}
.y103{bottom:663.453333pt;}
.y8b{bottom:664.253333pt;}
.y1c{bottom:667.453333pt;}
.yac{bottom:670.653333pt;}
.y52{bottom:671.453333pt;}
.y102{bottom:675.933333pt;}
.y1b{bottom:682.653333pt;}
.yde{bottom:684.893333pt;}
.yab{bottom:686.013333pt;}
.y51{bottom:686.813333pt;}
.y88{bottom:687.613333pt;}
.y1a{bottom:698.013333pt;}
.yaa{bottom:701.373333pt;}
.y50{bottom:702.173333pt;}
.y19{bottom:713.373333pt;}
.ya9{bottom:716.573333pt;}
.y4f{bottom:717.373333pt;}
.y86{bottom:727.773333pt;}
.y18{bottom:728.733333pt;}
.ya8{bottom:731.933333pt;}
.y4e{bottom:732.733333pt;}
.y17{bottom:744.093333pt;}
.ya7{bottom:747.293333pt;}
.y4d{bottom:748.093333pt;}
.y16{bottom:760.453333pt;}
.ya6{bottom:762.693333pt;}
.y4c{bottom:763.493333pt;}
.yd9{bottom:775.013333pt;}
.y15{bottom:775.813333pt;}
.ya5{bottom:778.053333pt;}
.y4b{bottom:778.853333pt;}
.y14{bottom:791.493333pt;}
.ya4{bottom:793.413333pt;}
.y4a{bottom:794.213333pt;}
.ya2{bottom:806.533333pt;}
.y13{bottom:808.293333pt;}
.y49{bottom:809.413333pt;}
.ya1{bottom:823.813333pt;}
.y48{bottom:824.773333pt;}
.y12{bottom:825.253333pt;}
.y47{bottom:840.133333pt;}
.y11{bottom:842.053333pt;}
.y9f{bottom:844.773333pt;}
.yd4{bottom:852.933333pt;}
.y46{bottom:855.493333pt;}
.y10{bottom:858.853333pt;}
.y9d{bottom:865.733333pt;}
.y45{bottom:870.853333pt;}
.yf{bottom:875.813333pt;}
.y9b{bottom:881.733333pt;}
.y44{bottom:886.213333pt;}
.ye{bottom:892.933333pt;}
.y43{bottom:901.413333pt;}
.yd{bottom:911.333333pt;}
.y42{bottom:916.773333pt;}
.yd3{bottom:928.613333pt;}
.yc{bottom:929.733333pt;}
.y41{bottom:932.133333pt;}
.y8{bottom:948.133333pt;}
.y7{bottom:965.573333pt;}
.y6{bottom:979.653333pt;}
.y5{bottom:995.653333pt;}
.y4{bottom:1010.560000pt;}
.y3{bottom:1048.000000pt;}
.y2{bottom:1065.760000pt;}
.y1{bottom:1081.120000pt;}
.h16{height:15.200000pt;}
.h1a{height:15.232000pt;}
.h19{height:15.360000pt;}
.h15{height:16.160000pt;}
.h1d{height:16.640000pt;}
.h10{height:16.800000pt;}
.h18{height:17.280000pt;}
.h1c{height:17.920000pt;}
.h1b{height:18.080000pt;}
.h17{height:20.960000pt;}
.h14{height:21.600000pt;}
.h23{height:21.760000pt;}
.h26{height:23.040000pt;}
.h27{height:23.200000pt;}
.h12{height:23.360000pt;}
.he{height:24.032000pt;}
.hb{height:24.640000pt;}
.h13{height:25.120000pt;}
.hd{height:27.520000pt;}
.h24{height:30.592000pt;}
.h25{height:30.720000pt;}
.h6{height:34.710938pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.ha{height:38.491250pt;}
.h28{height:38.672812pt;}
.h9{height:38.828437pt;}
.h11{height:39.520000pt;}
.h7{height:41.543750pt;}
.h8{height:42.578750pt;}
.h4{height:45.156250pt;}
.h3{height:46.281250pt;}
.hf{height:51.040000pt;}
.hc{height:51.552000pt;}
.h1e{height:75.040000pt;}
.h1f{height:77.920000pt;}
.h21{height:78.080000pt;}
.h22{height:84.032000pt;}
.h20{height:90.112000pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:84.480000pt;}
.w4{width:113.952000pt;}
.w6{width:122.752000pt;}
.wd{width:124.032000pt;}
.we{width:124.352000pt;}
.w3{width:126.080000pt;}
.w12{width:133.466667pt;}
.w15{width:160.506667pt;}
.wa{width:160.666667pt;}
.w10{width:168.026667pt;}
.w14{width:198.106667pt;}
.wb{width:207.866667pt;}
.w9{width:217.466667pt;}
.w5{width:224.666667pt;}
.w13{width:228.026667pt;}
.w11{width:282.106667pt;}
.wc{width:335.226667pt;}
.w8{width:498.653333pt;}
.wf{width:583.613333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.200000pt;}
.x12{left:15.360000pt;}
.x14{left:18.880000pt;}
.x38{left:20.480000pt;}
.x1c{left:24.160000pt;}
.x1f{left:26.720000pt;}
.x19{left:33.280000pt;}
.x22{left:35.200000pt;}
.x1b{left:37.440000pt;}
.x18{left:41.960000pt;}
.x33{left:55.520000pt;}
.x32{left:56.640000pt;}
.x30{left:58.266667pt;}
.x40{left:60.480000pt;}
.x27{left:61.440000pt;}
.x16{left:68.800000pt;}
.x2b{left:70.240000pt;}
.x29{left:73.600000pt;}
.x3e{left:76.640000pt;}
.x1d{left:86.400000pt;}
.x25{left:89.114667pt;}
.x3c{left:94.714667pt;}
.x1{left:96.031988pt;}
.x2c{left:97.120000pt;}
.x2a{left:100.480000pt;}
.x36{left:104.000000pt;}
.x8{left:107.551988pt;}
.x2{left:109.471988pt;}
.x42{left:120.031988pt;}
.xa{left:121.631988pt;}
.x7{left:125.951988pt;}
.x4{left:139.706655pt;}
.x11{left:144.026655pt;}
.x34{left:158.266655pt;}
.x20{left:180.506667pt;}
.x2d{left:203.546655pt;}
.x21{left:216.360000pt;}
.x13{left:222.106667pt;}
.x41{left:228.826655pt;}
.x3b{left:232.506655pt;}
.xd{left:252.026655pt;}
.x39{left:257.306655pt;}
.x35{left:264.066667pt;}
.x24{left:267.106655pt;}
.x1e{left:273.826655pt;}
.xb{left:288.226655pt;}
.xe{left:292.226655pt;}
.x2e{left:307.906655pt;}
.x9{left:311.266655pt;}
.x26{left:313.506667pt;}
.x3d{left:324.066667pt;}
.x15{left:336.066667pt;}
.x10{left:343.426655pt;}
.x43{left:346.466655pt;}
.xc{left:350.946655pt;}
.x6{left:352.386655pt;}
.x5{left:366.466655pt;}
.xf{left:396.866655pt;}
.x2f{left:431.266667pt;}
.x3{left:460.893322pt;}
.x28{left:474.173333pt;}
.x3f{left:522.173333pt;}
.x37{left:546.173333pt;}
.x31{left:555.293333pt;}
.x17{left:560.733333pt;}
.x3a{left:606.813322pt;}
.x23{left:623.813322pt;}
}




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