
    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_2f5cdedb8a008d0600f463a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_1b9b9fe7f94bca3a12f6f75c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f1125e28435e209b7d07d67e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9556d41f1c5fcdeeb49e5b77.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_57f174479ff7d93fbb640ccd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_22d33048241022c962f5fb67.woff2')format("woff");}.ff8{font-family:ff8;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:-90.720000px;}
.v6{vertical-align:-69.120000px;}
.v5{vertical-align:-66.960000px;}
.v3{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.640000px;}
.v2{vertical-align:28.080000px;}
.ls7{letter-spacing:-0.702000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.466800px;}
.ls5{letter-spacing:0.936000px;}
.ls3{letter-spacing:1.080000px;}
.ls6{letter-spacing:1.926000px;}
.lsa{letter-spacing:123.706560px;}
.ls9{letter-spacing:153.946560px;}
.ls1{letter-spacing:165.960000px;}
.ls8{letter-spacing:938.040000px;}
.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;}
.ws3{word-spacing:-18.900000px;}
.ws6{word-spacing:-17.046000px;}
.ws5{word-spacing:-16.056000px;}
.ws2{word-spacing:-15.120000px;}
.ws7{word-spacing:-14.418000px;}
.ws4{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-4.777920px;}
._2{margin-left:-3.326400px;}
._4{margin-left:-2.298240px;}
._1{margin-left:-1.209600px;}
._0{width:1.874880px;}
._3{width:2.959680px;}
._6{width:4.006560px;}
._7{width:5.201280px;}
._8{width:6.460320px;}
._a{width:7.843680px;}
._9{width:9.566880px;}
._d{width:10.765440px;}
._b{width:12.761280px;}
._c{width:13.789440px;}
._17{width:16.314240px;}
._11{width:17.357760px;}
._14{width:18.692160px;}
._12{width:20.321280px;}
._13{width:21.772800px;}
._15{width:22.861440px;}
._16{width:24.256320px;}
._18{width:25.507200px;}
._10{width:27.034560px;}
._e{width:28.304640px;}
._f{width:30.481920px;}
._1b{width:138.903840px;}
._19{width:185.940000px;}
._1a{width:201.000000px;}
.fc2{color:transparent;}
.fc1{color:rgb(41,37,38);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:60.480000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:71.280000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:90.720000px;}
.fs8{font-size:95.040000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.ye4{bottom:3.240000px;}
.ycc{bottom:3.780000px;}
.y7a{bottom:4.320000px;}
.yeb{bottom:6.480000px;}
.ye8{bottom:7.020000px;}
.yee{bottom:7.560000px;}
.yea{bottom:10.260000px;}
.yed{bottom:10.800000px;}
.yf0{bottom:10.845000px;}
.yb8{bottom:12.960000px;}
.ybb{bottom:12.990000px;}
.yb5{bottom:13.005000px;}
.yb4{bottom:13.500000px;}
.yba{bottom:13.530000px;}
.yb6{bottom:13.545000px;}
.yff{bottom:19.440000px;}
.ye6{bottom:20.520000px;}
.y103{bottom:21.600000px;}
.y105{bottom:21.645000px;}
.ye9{bottom:27.540000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y79{bottom:135.036000px;}
.y21{bottom:139.264499px;}
.y4e{bottom:151.275000px;}
.y4d{bottom:172.335000px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ya4{bottom:225.825000px;}
.y78{bottom:231.225000px;}
.yca{bottom:233.925000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y4b{bottom:240.405000px;}
.ya3{bottom:243.645000px;}
.yfc{bottom:246.345000px;}
.y77{bottom:249.585000px;}
.yc9{bottom:258.225000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.ya2{bottom:262.005000px;}
.y4a{bottom:264.165000px;}
.y76{bottom:267.405000px;}
.yfb{bottom:270.645000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya1{bottom:279.825000px;}
.yc8{bottom:281.985000px;}
.y49{bottom:282.525000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yfa{bottom:294.405000px;}
.y75{bottom:294.945000px;}
.y48{bottom:300.390000px;}
.ya0{bottom:303.630000px;}
.yc7{bottom:305.790000px;}
.y11c{bottom:306.330000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yf9{bottom:312.270000px;}
.y47{bottom:318.210000px;}
.y74{bottom:321.450000px;}
.y9f{bottom:321.990000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yc6{bottom:324.150000px;}
.yf8{bottom:330.630000px;}
.y46{bottom:336.570000px;}
.y73{bottom:338.730000px;}
.y9e{bottom:339.810000px;}
.yc5{bottom:347.910000px;}
.yf{bottom:348.133500px;}
.yf7{bottom:348.450000px;}
.y45{bottom:354.390000px;}
.y72{bottom:356.010000px;}
.yc4{bottom:366.270000px;}
.y9d{bottom:367.350000px;}
.y44{bottom:372.210000px;}
.y71{bottom:373.290000px;}
.yc3{bottom:384.120000px;}
.ye{bottom:386.785499px;}
.y70{bottom:390.060000px;}
.y43{bottom:390.600000px;}
.y9c{bottom:393.840000px;}
.yf6{bottom:396.540000px;}
.yc2{bottom:401.940000px;}
.yd{bottom:408.044999px;}
.y9b{bottom:411.120000px;}
.yf5{bottom:411.660000px;}
.y42{bottom:414.360000px;}
.y6f{bottom:415.980000px;}
.yc1{bottom:426.240000px;}
.y9a{bottom:428.400000px;}
.y6e{bottom:433.800000px;}
.y133{bottom:434.880000px;}
.yf4{bottom:435.960000px;}
.y41{bottom:438.660000px;}
.yc0{bottom:441.360000px;}
.y11b{bottom:444.060000px;}
.y6d{bottom:452.160000px;}
.y99{bottom:453.780000px;}
.y132{bottom:459.210000px;}
.yf3{bottom:460.830000px;}
.y40{bottom:462.450000px;}
.ybf{bottom:468.390000px;}
.y6c{bottom:470.010000px;}
.y98{bottom:471.630000px;}
.yf2{bottom:478.650000px;}
.y3f{bottom:480.270000px;}
.y131{bottom:482.970000px;}
.y6b{bottom:487.830000px;}
.y11a{bottom:488.370000px;}
.y97{bottom:489.990000px;}
.ybe{bottom:495.390000px;}
.yf1{bottom:496.470000px;}
.y3e{bottom:498.630000px;}
.yc{bottom:502.864502px;}
.y6a{bottom:506.190000px;}
.y130{bottom:507.270000px;}
.y96{bottom:507.810000px;}
.y119{bottom:511.050000px;}
.y3d{bottom:516.450000px;}
.yef{bottom:520.770000px;}
.yb{bottom:520.864502px;}
.ybd{bottom:522.390000px;}
.y69{bottom:524.010000px;}
.y95{bottom:525.630000px;}
.y118{bottom:529.410000px;}
.y12f{bottom:531.030000px;}
.y3c{bottom:534.315000px;}
.ya{bottom:538.864499px;}
.y68{bottom:541.875000px;}
.y94{bottom:544.035000px;}
.yec{bottom:545.115000px;}
.y117{bottom:547.275000px;}
.ybc{bottom:549.435000px;}
.y12e{bottom:555.375000px;}
.y9{bottom:556.864499px;}
.y3b{bottom:558.615000px;}
.y67{bottom:560.235000px;}
.y116{bottom:565.095000px;}
.y93{bottom:567.795000px;}
.ye5{bottom:569.955000px;}
.y3a{bottom:576.435000px;}
.y66{bottom:578.055000px;}
.y12d{bottom:579.135000px;}
.y115{bottom:583.455000px;}
.y92{bottom:586.155000px;}
.ye7{bottom:594.255000px;}
.y39{bottom:594.795000px;}
.y65{bottom:595.875000px;}
.y114{bottom:601.275000px;}
.y12c{bottom:602.895000px;}
.yb9{bottom:603.435000px;}
.y91{bottom:603.975000px;}
.y38{bottom:612.645000px;}
.y64{bottom:614.265000px;}
.ye3{bottom:618.585000px;}
.y113{bottom:619.125000px;}
.y12b{bottom:627.225000px;}
.y90{bottom:627.765000px;}
.y37{bottom:630.465000px;}
.y112{bottom:637.485000px;}
.y63{bottom:641.265000px;}
.y8{bottom:645.510000px;}
.y8f{bottom:646.125000px;}
.y36{bottom:648.825000px;}
.y12a{bottom:650.985000px;}
.ye2{bottom:654.765000px;}
.y111{bottom:655.305000px;}
.yb7{bottom:657.465000px;}
.y8e{bottom:663.945000px;}
.y35{bottom:666.645000px;}
.y7{bottom:666.771000px;}
.y62{bottom:668.265000px;}
.y110{bottom:673.125000px;}
.y129{bottom:675.285000px;}
.ye1{bottom:679.065000px;}
.y8d{bottom:681.765000px;}
.y34{bottom:684.465000px;}
.y61{bottom:685.545000px;}
.ye0{bottom:696.930000px;}
.y10f{bottom:697.470000px;}
.y128{bottom:699.090000px;}
.y33{bottom:702.870000px;}
.y8c{bottom:706.110000px;}
.yb3{bottom:711.510000px;}
.ydf{bottom:714.750000px;}
.y60{bottom:719.610000px;}
.y32{bottom:720.690000px;}
.y10e{bottom:721.230000px;}
.y127{bottom:723.390000px;}
.y8b{bottom:723.930000px;}
.y6{bottom:726.298500px;}
.yde{bottom:733.110000px;}
.y10d{bottom:739.590000px;}
.y8a{bottom:741.750000px;}
.y31{bottom:744.450000px;}
.y5f{bottom:745.530000px;}
.y126{bottom:747.150000px;}
.yb2{bottom:748.230000px;}
.y3{bottom:752.599495px;}
.ydd{bottom:756.870000px;}
.y10c{bottom:757.410000px;}
.y89{bottom:760.110000px;}
.y30{bottom:762.810000px;}
.y5e{bottom:763.380000px;}
.y125{bottom:771.480000px;}
.yb1{bottom:772.020000px;}
.y10b{bottom:775.260000px;}
.ydc{bottom:775.800000px;}
.y88{bottom:777.960000px;}
.y5d{bottom:781.200000px;}
.y2f{bottom:781.740000px;}
.yb0{bottom:789.840000px;}
.ydb{bottom:793.080000px;}
.y10a{bottom:793.620000px;}
.y124{bottom:795.240000px;}
.y2e{bottom:799.020000px;}
.y5c{bottom:799.560000px;}
.y87{bottom:802.260000px;}
.yaf{bottom:808.200000px;}
.yda{bottom:810.360000px;}
.y109{bottom:811.440000px;}
.y2d{bottom:815.760000px;}
.y5b{bottom:817.380000px;}
.y123{bottom:819.000000px;}
.y86{bottom:820.080000px;}
.yd9{bottom:827.640000px;}
.yae{bottom:831.960000px;}
.y5a{bottom:835.200000px;}
.y85{bottom:837.900000px;}
.y108{bottom:838.980000px;}
.y2c{bottom:842.250000px;}
.y122{bottom:843.330000px;}
.yd8{bottom:844.950000px;}
.yad{bottom:849.810000px;}
.y59{bottom:853.590000px;}
.y84{bottom:856.290000px;}
.y107{bottom:856.830000px;}
.y2b{bottom:859.530000px;}
.yd7{bottom:862.230000px;}
.y121{bottom:867.090000px;}
.yac{bottom:868.170000px;}
.y106{bottom:870.870000px;}
.y58{bottom:871.410000px;}
.y83{bottom:874.110000px;}
.y2a{bottom:876.810000px;}
.y2{bottom:879.369000px;}
.yd6{bottom:884.370000px;}
.y120{bottom:885.450000px;}
.yab{bottom:885.990000px;}
.y57{bottom:889.230000px;}
.y82{bottom:891.930000px;}
.yd5{bottom:900.030000px;}
.y29{bottom:903.270000px;}
.yaa{bottom:903.810000px;}
.y104{bottom:907.050000px;}
.y56{bottom:907.590000px;}
.y81{bottom:910.290000px;}
.yd4{bottom:917.895000px;}
.y28{bottom:920.055000px;}
.ya9{bottom:922.215000px;}
.y55{bottom:925.455000px;}
.y11f{bottom:927.075000px;}
.yd3{bottom:935.715000px;}
.y27{bottom:937.335000px;}
.y102{bottom:943.275000px;}
.y11e{bottom:945.435000px;}
.y54{bottom:949.215000px;}
.yd2{bottom:954.075000px;}
.y26{bottom:955.695000px;}
.ya8{bottom:957.855000px;}
.y80{bottom:963.255000px;}
.y1{bottom:966.726000px;}
.y53{bottom:967.575000px;}
.yd1{bottom:971.895000px;}
.y101{bottom:978.915000px;}
.y7f{bottom:981.075000px;}
.y25{bottom:981.615000px;}
.y52{bottom:985.395000px;}
.y11d{bottom:987.555000px;}
.yd0{bottom:989.715000px;}
.ya7{bottom:993.495000px;}
.y51{bottom:1003.245000px;}
.y7e{bottom:1005.405000px;}
.ycf{bottom:1008.105000px;}
.yfe{bottom:1010.805000px;}
.ya6{bottom:1011.345000px;}
.y50{bottom:1021.605000px;}
.y7d{bottom:1023.225000px;}
.yce{bottom:1025.925000px;}
.y24{bottom:1028.625000px;}
.ya5{bottom:1029.165000px;}
.y4f{bottom:1039.425000px;}
.y100{bottom:1042.665000px;}
.ycd{bottom:1043.745000px;}
.y7c{bottom:1047.525000px;}
.y23{bottom:1049.685000px;}
.yfd{bottom:1061.025000px;}
.ycb{bottom:1062.105000px;}
.y7b{bottom:1065.345000px;}
.y22{bottom:1066.425000px;}
.y4c{bottom:1121.010000px;}
.h1d{height:16.740000px;}
.h15{height:17.280000px;}
.h14{height:17.316000px;}
.h11{height:20.556000px;}
.h1a{height:23.220000px;}
.h19{height:23.256000px;}
.h1b{height:23.760000px;}
.h1c{height:23.796000px;}
.h17{height:25.920000px;}
.h12{height:26.460000px;}
.h13{height:26.496000px;}
.h1f{height:30.240000px;}
.h20{height:30.276000px;}
.h7{height:32.130000px;}
.h21{height:34.560000px;}
.h22{height:34.596000px;}
.he{height:41.993438px;}
.h6{height:45.900000px;}
.h18{height:47.556000px;}
.h3{height:48.195000px;}
.h1e{height:49.140000px;}
.h2{height:55.080000px;}
.h16{height:59.328281px;}
.ha{height:59.357813px;}
.h9{height:60.952500px;}
.h23{height:62.163910px;}
.h10{height:66.238594px;}
.hf{height:69.957422px;}
.hb{height:71.836875px;}
.h5{height:78.030000px;}
.hd{height:91.428750px;}
.hc{height:95.782500px;}
.h4{height:119.055004px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:27.036000px;}
.w15{width:48.636000px;}
.w13{width:49.176000px;}
.w1c{width:50.256000px;}
.w12{width:51.840000px;}
.w14{width:51.876000px;}
.w1b{width:52.920000px;}
.w1e{width:52.956000px;}
.w1d{width:53.496000px;}
.w8{width:65.916000px;}
.w7{width:66.456000px;}
.w1f{width:71.316000px;}
.w11{width:73.476000px;}
.w10{width:101.592000px;}
.we{width:102.096000px;}
.wf{width:102.132000px;}
.w18{width:103.716000px;}
.w19{width:104.292000px;}
.wb{width:104.796000px;}
.w1a{width:125.352000px;}
.wd{width:149.148000px;}
.w17{width:210.210000px;}
.w6{width:429.015000px;}
.wa{width:440.385000px;}
.wc{width:531.150000px;}
.w9{width:545.730000px;}
.w16{width:546.270000px;}
.w5{width:562.470000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x23{left:3.240000px;}
.x3b{left:4.860000px;}
.x17{left:7.560000px;}
.x2d{left:8.640000px;}
.x2e{left:10.305000px;}
.x2a{left:12.465000px;}
.x1c{left:13.545000px;}
.x38{left:14.610000px;}
.x1b{left:16.200000px;}
.x2f{left:19.440000px;}
.x3d{left:23.220000px;}
.x19{left:24.870000px;}
.x27{left:27.030000px;}
.x3c{left:28.125000px;}
.x35{left:29.745000px;}
.x25{left:34.020000px;}
.x21{left:35.100000px;}
.x33{left:36.180000px;}
.x20{left:43.740000px;}
.x31{left:90.255000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1e{left:122.655000px;}
.x16{left:131.835000px;}
.x30{left:142.095000px;}
.x15{left:181.545000px;}
.x22{left:183.705000px;}
.x5{left:189.105000px;}
.x1d{left:198.285000px;}
.x4{left:203.484001px;}
.x3f{left:216.150000px;}
.x9{left:223.710000px;}
.xe{left:240.450000px;}
.x13{left:243.150000px;}
.xc{left:257.190000px;}
.xa{left:293.940000px;}
.x14{left:297.180000px;}
.x3e{left:322.560000px;}
.x24{left:331.230000px;}
.xd{left:364.710000px;}
.x11{left:378.210000px;}
.x8{left:381.450000px;}
.x29{left:384.150000px;}
.xf{left:390.675000px;}
.x32{left:392.295000px;}
.xb{left:400.395000px;}
.x6{left:404.175000px;}
.x12{left:432.255000px;}
.x26{left:433.875000px;}
.x37{left:445.755000px;}
.x10{left:449.025000px;}
.x3{left:454.959000px;}
.x7{left:462.525000px;}
.x2b{left:486.825000px;}
.x34{left:497.085000px;}
.x28{left:536.550000px;}
.x39{left:551.130000px;}
.x2c{left:589.500000px;}
.x36{left:602.460000px;}
.x18{left:611.100000px;}
.x1f{left:639.210000px;}
.x3a{left:656.490000px;}
.x1a{left:678.090000px;}
@media print{
.v1{vertical-align:-80.640000pt;}
.v6{vertical-align:-61.440000pt;}
.v5{vertical-align:-59.520000pt;}
.v3{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.680000pt;}
.v2{vertical-align:24.960000pt;}
.ls7{letter-spacing:-0.624000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.414933pt;}
.ls5{letter-spacing:0.832000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls6{letter-spacing:1.712000pt;}
.lsa{letter-spacing:109.961387pt;}
.ls9{letter-spacing:136.841387pt;}
.ls1{letter-spacing:147.520000pt;}
.ls8{letter-spacing:833.813333pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-16.800000pt;}
.ws6{word-spacing:-15.152000pt;}
.ws5{word-spacing:-14.272000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws7{word-spacing:-12.816000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-4.247040pt;}
._2{margin-left:-2.956800pt;}
._4{margin-left:-2.042880pt;}
._1{margin-left:-1.075200pt;}
._0{width:1.666560pt;}
._3{width:2.630827pt;}
._6{width:3.561387pt;}
._7{width:4.623360pt;}
._8{width:5.742507pt;}
._a{width:6.972160pt;}
._9{width:8.503893pt;}
._d{width:9.569280pt;}
._b{width:11.343360pt;}
._c{width:12.257280pt;}
._17{width:14.501547pt;}
._11{width:15.429120pt;}
._14{width:16.615253pt;}
._12{width:18.063360pt;}
._13{width:19.353600pt;}
._15{width:20.321280pt;}
._16{width:21.561173pt;}
._18{width:22.673067pt;}
._10{width:24.030720pt;}
._e{width:25.159680pt;}
._f{width:27.095040pt;}
._1b{width:123.470080pt;}
._19{width:165.280000pt;}
._1a{width:178.666667pt;}
.fsa{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:53.760000pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:63.360000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:80.640000pt;}
.fs8{font-size:84.480000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.ye4{bottom:2.880000pt;}
.ycc{bottom:3.360000pt;}
.y7a{bottom:3.840000pt;}
.yeb{bottom:5.760000pt;}
.ye8{bottom:6.240000pt;}
.yee{bottom:6.720000pt;}
.yea{bottom:9.120000pt;}
.yed{bottom:9.600000pt;}
.yf0{bottom:9.640000pt;}
.yb8{bottom:11.520000pt;}
.ybb{bottom:11.546667pt;}
.yb5{bottom:11.560000pt;}
.yb4{bottom:12.000000pt;}
.yba{bottom:12.026667pt;}
.yb6{bottom:12.040000pt;}
.yff{bottom:17.280000pt;}
.ye6{bottom:18.240000pt;}
.y103{bottom:19.200000pt;}
.y105{bottom:19.240000pt;}
.ye9{bottom:24.480000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y79{bottom:120.032000pt;}
.y21{bottom:123.790666pt;}
.y4e{bottom:134.466667pt;}
.y4d{bottom:153.186667pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ya4{bottom:200.733333pt;}
.y78{bottom:205.533333pt;}
.yca{bottom:207.933333pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y4b{bottom:213.693333pt;}
.ya3{bottom:216.573333pt;}
.yfc{bottom:218.973333pt;}
.y77{bottom:221.853333pt;}
.yc9{bottom:229.533333pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.ya2{bottom:232.893333pt;}
.y4a{bottom:234.813333pt;}
.y76{bottom:237.693333pt;}
.yfb{bottom:240.573333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya1{bottom:248.733333pt;}
.yc8{bottom:250.653333pt;}
.y49{bottom:251.133333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yfa{bottom:261.693333pt;}
.y75{bottom:262.173333pt;}
.y48{bottom:267.013333pt;}
.ya0{bottom:269.893333pt;}
.yc7{bottom:271.813333pt;}
.y11c{bottom:272.293333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yf9{bottom:277.573333pt;}
.y47{bottom:282.853333pt;}
.y74{bottom:285.733333pt;}
.y9f{bottom:286.213333pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yc6{bottom:288.133333pt;}
.yf8{bottom:293.893333pt;}
.y46{bottom:299.173333pt;}
.y73{bottom:301.093333pt;}
.y9e{bottom:302.053333pt;}
.yc5{bottom:309.253333pt;}
.yf{bottom:309.452000pt;}
.yf7{bottom:309.733333pt;}
.y45{bottom:315.013333pt;}
.y72{bottom:316.453333pt;}
.yc4{bottom:325.573333pt;}
.y9d{bottom:326.533333pt;}
.y44{bottom:330.853333pt;}
.y71{bottom:331.813333pt;}
.yc3{bottom:341.440000pt;}
.ye{bottom:343.809333pt;}
.y70{bottom:346.720000pt;}
.y43{bottom:347.200000pt;}
.y9c{bottom:350.080000pt;}
.yf6{bottom:352.480000pt;}
.yc2{bottom:357.280000pt;}
.yd{bottom:362.706666pt;}
.y9b{bottom:365.440000pt;}
.yf5{bottom:365.920000pt;}
.y42{bottom:368.320000pt;}
.y6f{bottom:369.760000pt;}
.yc1{bottom:378.880000pt;}
.y9a{bottom:380.800000pt;}
.y6e{bottom:385.600000pt;}
.y133{bottom:386.560000pt;}
.yf4{bottom:387.520000pt;}
.y41{bottom:389.920000pt;}
.yc0{bottom:392.320000pt;}
.y11b{bottom:394.720000pt;}
.y6d{bottom:401.920000pt;}
.y99{bottom:403.360000pt;}
.y132{bottom:408.186667pt;}
.yf3{bottom:409.626667pt;}
.y40{bottom:411.066667pt;}
.ybf{bottom:416.346667pt;}
.y6c{bottom:417.786667pt;}
.y98{bottom:419.226667pt;}
.yf2{bottom:425.466667pt;}
.y3f{bottom:426.906667pt;}
.y131{bottom:429.306667pt;}
.y6b{bottom:433.626667pt;}
.y11a{bottom:434.106667pt;}
.y97{bottom:435.546667pt;}
.ybe{bottom:440.346667pt;}
.yf1{bottom:441.306667pt;}
.y3e{bottom:443.226667pt;}
.yc{bottom:446.990669pt;}
.y6a{bottom:449.946667pt;}
.y130{bottom:450.906667pt;}
.y96{bottom:451.386667pt;}
.y119{bottom:454.266667pt;}
.y3d{bottom:459.066667pt;}
.yef{bottom:462.906667pt;}
.yb{bottom:462.990669pt;}
.ybd{bottom:464.346667pt;}
.y69{bottom:465.786667pt;}
.y95{bottom:467.226667pt;}
.y118{bottom:470.586667pt;}
.y12f{bottom:472.026667pt;}
.y3c{bottom:474.946667pt;}
.ya{bottom:478.990666pt;}
.y68{bottom:481.666667pt;}
.y94{bottom:483.586667pt;}
.yec{bottom:484.546667pt;}
.y117{bottom:486.466667pt;}
.ybc{bottom:488.386667pt;}
.y12e{bottom:493.666667pt;}
.y9{bottom:494.990666pt;}
.y3b{bottom:496.546667pt;}
.y67{bottom:497.986667pt;}
.y116{bottom:502.306667pt;}
.y93{bottom:504.706667pt;}
.ye5{bottom:506.626667pt;}
.y3a{bottom:512.386667pt;}
.y66{bottom:513.826667pt;}
.y12d{bottom:514.786667pt;}
.y115{bottom:518.626667pt;}
.y92{bottom:521.026667pt;}
.ye7{bottom:528.226667pt;}
.y39{bottom:528.706667pt;}
.y65{bottom:529.666667pt;}
.y114{bottom:534.466667pt;}
.y12c{bottom:535.906667pt;}
.yb9{bottom:536.386667pt;}
.y91{bottom:536.866667pt;}
.y38{bottom:544.573333pt;}
.y64{bottom:546.013333pt;}
.ye3{bottom:549.853333pt;}
.y113{bottom:550.333333pt;}
.y12b{bottom:557.533333pt;}
.y90{bottom:558.013333pt;}
.y37{bottom:560.413333pt;}
.y112{bottom:566.653333pt;}
.y63{bottom:570.013333pt;}
.y8{bottom:573.786667pt;}
.y8f{bottom:574.333333pt;}
.y36{bottom:576.733333pt;}
.y12a{bottom:578.653333pt;}
.ye2{bottom:582.013333pt;}
.y111{bottom:582.493333pt;}
.yb7{bottom:584.413333pt;}
.y8e{bottom:590.173333pt;}
.y35{bottom:592.573333pt;}
.y7{bottom:592.685334pt;}
.y62{bottom:594.013333pt;}
.y110{bottom:598.333333pt;}
.y129{bottom:600.253333pt;}
.ye1{bottom:603.613333pt;}
.y8d{bottom:606.013333pt;}
.y34{bottom:608.413333pt;}
.y61{bottom:609.373333pt;}
.ye0{bottom:619.493333pt;}
.y10f{bottom:619.973333pt;}
.y128{bottom:621.413333pt;}
.y33{bottom:624.773333pt;}
.y8c{bottom:627.653333pt;}
.yb3{bottom:632.453333pt;}
.ydf{bottom:635.333333pt;}
.y60{bottom:639.653333pt;}
.y32{bottom:640.613333pt;}
.y10e{bottom:641.093333pt;}
.y127{bottom:643.013333pt;}
.y8b{bottom:643.493333pt;}
.y6{bottom:645.598667pt;}
.yde{bottom:651.653333pt;}
.y10d{bottom:657.413333pt;}
.y8a{bottom:659.333333pt;}
.y31{bottom:661.733333pt;}
.y5f{bottom:662.693333pt;}
.y126{bottom:664.133333pt;}
.yb2{bottom:665.093333pt;}
.y3{bottom:668.977329pt;}
.ydd{bottom:672.773333pt;}
.y10c{bottom:673.253333pt;}
.y89{bottom:675.653333pt;}
.y30{bottom:678.053333pt;}
.y5e{bottom:678.560000pt;}
.y125{bottom:685.760000pt;}
.yb1{bottom:686.240000pt;}
.y10b{bottom:689.120000pt;}
.ydc{bottom:689.600000pt;}
.y88{bottom:691.520000pt;}
.y5d{bottom:694.400000pt;}
.y2f{bottom:694.880000pt;}
.yb0{bottom:702.080000pt;}
.ydb{bottom:704.960000pt;}
.y10a{bottom:705.440000pt;}
.y124{bottom:706.880000pt;}
.y2e{bottom:710.240000pt;}
.y5c{bottom:710.720000pt;}
.y87{bottom:713.120000pt;}
.yaf{bottom:718.400000pt;}
.yda{bottom:720.320000pt;}
.y109{bottom:721.280000pt;}
.y2d{bottom:725.120000pt;}
.y5b{bottom:726.560000pt;}
.y123{bottom:728.000000pt;}
.y86{bottom:728.960000pt;}
.yd9{bottom:735.680000pt;}
.yae{bottom:739.520000pt;}
.y5a{bottom:742.400000pt;}
.y85{bottom:744.800000pt;}
.y108{bottom:745.760000pt;}
.y2c{bottom:748.666667pt;}
.y122{bottom:749.626667pt;}
.yd8{bottom:751.066667pt;}
.yad{bottom:755.386667pt;}
.y59{bottom:758.746667pt;}
.y84{bottom:761.146667pt;}
.y107{bottom:761.626667pt;}
.y2b{bottom:764.026667pt;}
.yd7{bottom:766.426667pt;}
.y121{bottom:770.746667pt;}
.yac{bottom:771.706667pt;}
.y106{bottom:774.106667pt;}
.y58{bottom:774.586667pt;}
.y83{bottom:776.986667pt;}
.y2a{bottom:779.386667pt;}
.y2{bottom:781.661334pt;}
.yd6{bottom:786.106667pt;}
.y120{bottom:787.066667pt;}
.yab{bottom:787.546667pt;}
.y57{bottom:790.426667pt;}
.y82{bottom:792.826667pt;}
.yd5{bottom:800.026667pt;}
.y29{bottom:802.906667pt;}
.yaa{bottom:803.386667pt;}
.y104{bottom:806.266667pt;}
.y56{bottom:806.746667pt;}
.y81{bottom:809.146667pt;}
.yd4{bottom:815.906667pt;}
.y28{bottom:817.826667pt;}
.ya9{bottom:819.746667pt;}
.y55{bottom:822.626667pt;}
.y11f{bottom:824.066667pt;}
.yd3{bottom:831.746667pt;}
.y27{bottom:833.186667pt;}
.y102{bottom:838.466667pt;}
.y11e{bottom:840.386667pt;}
.y54{bottom:843.746667pt;}
.yd2{bottom:848.066667pt;}
.y26{bottom:849.506667pt;}
.ya8{bottom:851.426667pt;}
.y80{bottom:856.226667pt;}
.y1{bottom:859.312000pt;}
.y53{bottom:860.066667pt;}
.yd1{bottom:863.906667pt;}
.y101{bottom:870.146667pt;}
.y7f{bottom:872.066667pt;}
.y25{bottom:872.546667pt;}
.y52{bottom:875.906667pt;}
.y11d{bottom:877.826667pt;}
.yd0{bottom:879.746667pt;}
.ya7{bottom:883.106667pt;}
.y51{bottom:891.773333pt;}
.y7e{bottom:893.693333pt;}
.ycf{bottom:896.093333pt;}
.yfe{bottom:898.493333pt;}
.ya6{bottom:898.973333pt;}
.y50{bottom:908.093333pt;}
.y7d{bottom:909.533333pt;}
.yce{bottom:911.933333pt;}
.y24{bottom:914.333333pt;}
.ya5{bottom:914.813333pt;}
.y4f{bottom:923.933333pt;}
.y100{bottom:926.813333pt;}
.ycd{bottom:927.773333pt;}
.y7c{bottom:931.133333pt;}
.y23{bottom:933.053333pt;}
.yfd{bottom:943.133333pt;}
.ycb{bottom:944.093333pt;}
.y7b{bottom:946.973333pt;}
.y22{bottom:947.933333pt;}
.y4c{bottom:996.453333pt;}
.h1d{height:14.880000pt;}
.h15{height:15.360000pt;}
.h14{height:15.392000pt;}
.h11{height:18.272000pt;}
.h1a{height:20.640000pt;}
.h19{height:20.672000pt;}
.h1b{height:21.120000pt;}
.h1c{height:21.152000pt;}
.h17{height:23.040000pt;}
.h12{height:23.520000pt;}
.h13{height:23.552000pt;}
.h1f{height:26.880000pt;}
.h20{height:26.912000pt;}
.h7{height:28.560000pt;}
.h21{height:30.720000pt;}
.h22{height:30.752000pt;}
.he{height:37.327500pt;}
.h6{height:40.800000pt;}
.h18{height:42.272000pt;}
.h3{height:42.840000pt;}
.h1e{height:43.680000pt;}
.h2{height:48.960000pt;}
.h16{height:52.736250pt;}
.ha{height:52.762500pt;}
.h9{height:54.180000pt;}
.h23{height:55.256809pt;}
.h10{height:58.878750pt;}
.hf{height:62.184375pt;}
.hb{height:63.855000pt;}
.h5{height:69.360000pt;}
.hd{height:81.270000pt;}
.hc{height:85.140000pt;}
.h4{height:105.826671pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:24.032000pt;}
.w15{width:43.232000pt;}
.w13{width:43.712000pt;}
.w1c{width:44.672000pt;}
.w12{width:46.080000pt;}
.w14{width:46.112000pt;}
.w1b{width:47.040000pt;}
.w1e{width:47.072000pt;}
.w1d{width:47.552000pt;}
.w8{width:58.592000pt;}
.w7{width:59.072000pt;}
.w1f{width:63.392000pt;}
.w11{width:65.312000pt;}
.w10{width:90.304000pt;}
.we{width:90.752000pt;}
.wf{width:90.784000pt;}
.w18{width:92.192000pt;}
.w19{width:92.704000pt;}
.wb{width:93.152000pt;}
.w1a{width:111.424000pt;}
.wd{width:132.576000pt;}
.w17{width:186.853333pt;}
.w6{width:381.346667pt;}
.wa{width:391.453333pt;}
.wc{width:472.133333pt;}
.w9{width:485.093333pt;}
.w16{width:485.573333pt;}
.w5{width:499.973333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x23{left:2.880000pt;}
.x3b{left:4.320000pt;}
.x17{left:6.720000pt;}
.x2d{left:7.680000pt;}
.x2e{left:9.160000pt;}
.x2a{left:11.080000pt;}
.x1c{left:12.040000pt;}
.x38{left:12.986667pt;}
.x1b{left:14.400000pt;}
.x2f{left:17.280000pt;}
.x3d{left:20.640000pt;}
.x19{left:22.106667pt;}
.x27{left:24.026667pt;}
.x3c{left:25.000000pt;}
.x35{left:26.440000pt;}
.x25{left:30.240000pt;}
.x21{left:31.200000pt;}
.x33{left:32.160000pt;}
.x20{left:38.880000pt;}
.x31{left:80.226667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1e{left:109.026667pt;}
.x16{left:117.186667pt;}
.x30{left:126.306667pt;}
.x15{left:161.373333pt;}
.x22{left:163.293333pt;}
.x5{left:168.093333pt;}
.x1d{left:176.253333pt;}
.x4{left:180.874667pt;}
.x3f{left:192.133333pt;}
.x9{left:198.853333pt;}
.xe{left:213.733333pt;}
.x13{left:216.133333pt;}
.xc{left:228.613333pt;}
.xa{left:261.280000pt;}
.x14{left:264.160000pt;}
.x3e{left:286.720000pt;}
.x24{left:294.426667pt;}
.xd{left:324.186667pt;}
.x11{left:336.186667pt;}
.x8{left:339.066667pt;}
.x29{left:341.466667pt;}
.xf{left:347.266667pt;}
.x32{left:348.706667pt;}
.xb{left:355.906667pt;}
.x6{left:359.266667pt;}
.x12{left:384.226667pt;}
.x26{left:385.666667pt;}
.x37{left:396.226667pt;}
.x10{left:399.133333pt;}
.x3{left:404.408000pt;}
.x7{left:411.133333pt;}
.x2b{left:432.733333pt;}
.x34{left:441.853333pt;}
.x28{left:476.933333pt;}
.x39{left:489.893333pt;}
.x2c{left:524.000000pt;}
.x36{left:535.520000pt;}
.x18{left:543.200000pt;}
.x1f{left:568.186667pt;}
.x3a{left:583.546667pt;}
.x1a{left:602.746667pt;}
}




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