
    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_d3d435d9f52b7b79a4b1fc03.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_3d2b337739855e80805186ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_17c208d457a922c9c51a9a84.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.089844;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_d2cde806b19d368e0c9a2ddf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118164;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_c0bbeb81d02aac7be4d292ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118164;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_1ce1ac8edb27082417783962.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_a26b061842c9c84ad51ddc53.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_e29a67a2d77ee72a36540ad6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.089844;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_6cf36755159bbef18dfb86df.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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;}
.v1{vertical-align:18.000000px;}
.lsf{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.358800px;}
.ls19{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.282000px;}
.ls8{letter-spacing:-0.184200px;}
.lsa{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.115200px;}
.ls9{letter-spacing:-0.097800px;}
.ls3{letter-spacing:-0.088800px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.100800px;}
.lsc{letter-spacing:0.144000px;}
.lse{letter-spacing:0.187200px;}
.ls6{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.336000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.740880px;}
.ls18{letter-spacing:0.900000px;}
.ls10{letter-spacing:4.507200px;}
.lsb{letter-spacing:6.480000px;}
.ls11{letter-spacing:7.920000px;}
.lsd{letter-spacing:8.640000px;}
.ls15{letter-spacing:10.800000px;}
.ls12{letter-spacing:16.027200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(238,236,225),0 0.015em rgb(238,236,225),0.015em 0 rgb(238,236,225),0 -0.015em  rgb(238,236,225);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(238,236,225);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.971200px;}
.ws2{word-spacing:-20.701200px;}
.ws9{word-spacing:-15.984000px;}
.ws8{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.696000px;}
.wsc{word-spacing:-15.552000px;}
.wsa{word-spacing:-14.572800px;}
.wsb{word-spacing:-14.290800px;}
.ws6{word-spacing:-13.049400px;}
.ws5{word-spacing:-13.032000px;}
.ws0{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-3.595920px;}
._4{margin-left:-2.509920px;}
._0{margin-left:-1.236240px;}
._3{width:1.434240px;}
._13{width:2.697840px;}
._8{width:3.884400px;}
._2{width:4.960080px;}
._9{width:6.492000px;}
._a{width:7.529760px;}
._b{width:8.808000px;}
._14{width:9.834000px;}
._c{width:11.520000px;}
._20{width:12.744000px;}
._7{width:14.222880px;}
._6{width:15.238800px;}
._24{width:17.088480px;}
._f{width:18.504000px;}
._e{width:19.512000px;}
._21{width:20.622240px;}
._d{width:21.672000px;}
._1f{width:22.841760px;}
._15{width:24.120000px;}
._16{width:25.344000px;}
._12{width:26.784000px;}
._11{width:28.152000px;}
._10{width:29.808000px;}
._18{width:30.816000px;}
._17{width:31.968000px;}
._1d{width:33.984000px;}
._28{width:35.424000px;}
._27{width:36.432000px;}
._2a{width:37.867680px;}
._1e{width:38.880000px;}
._29{width:40.464000px;}
._1b{width:42.552000px;}
._1c{width:44.513760px;}
._1a{width:52.680000px;}
._23{width:62.199360px;}
._22{width:63.284880px;}
._19{width:66.888000px;}
._25{width:70.272000px;}
._26{width:72.648000px;}
._1{width:1260.300000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(238,236,225);}
.fc6{color:rgb(17,17,17);}
.fc5{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:3.240000px;}
.y9b{bottom:3.600000px;}
.y93{bottom:3.780000px;}
.y4{bottom:12.060000px;}
.y8e{bottom:14.400000px;}
.y8a{bottom:15.840000px;}
.yb{bottom:16.740000px;}
.y19{bottom:20.880000px;}
.ya4{bottom:22.860000px;}
.y92{bottom:23.040000px;}
.ya8{bottom:23.070000px;}
.yaf{bottom:26.640000px;}
.ye{bottom:30.600000px;}
.y8d{bottom:33.885000px;}
.y18{bottom:38.340000px;}
.ya{bottom:41.070000px;}
.ya3{bottom:42.300000px;}
.ya7{bottom:42.330000px;}
.y91{bottom:42.480000px;}
.yae{bottom:46.080000px;}
.y7{bottom:52.560000px;}
.y8c{bottom:53.145000px;}
.y17{bottom:55.980000px;}
.ya2{bottom:61.560000px;}
.yb3{bottom:61.590000px;}
.y90{bottom:61.740000px;}
.yb6{bottom:61.770000px;}
.y9{bottom:65.370000px;}
.y16{bottom:73.656000px;}
.yb5{bottom:81.030000px;}
.ya1{bottom:81.045000px;}
.yb8{bottom:81.180000px;}
.y15{bottom:91.116000px;}
.ya0{bottom:100.305000px;}
.y14{bottom:108.756000px;}
.y9f{bottom:119.745000px;}
.y13{bottom:126.396000px;}
.y9e{bottom:139.005000px;}
.y12{bottom:143.856000px;}
.y9d{bottom:158.445000px;}
.y11{bottom:161.490000px;}
.y10{bottom:179.130000px;}
.y47{bottom:205.050000px;}
.ya5{bottom:209.730000px;}
.y82{bottom:212.250000px;}
.yf6{bottom:222.510000px;}
.y68{bottom:222.690000px;}
.yd{bottom:222.870000px;}
.y46{bottom:226.110000px;}
.yd2{bottom:227.550000px;}
.y10b{bottom:233.130000px;}
.y8f{bottom:235.110000px;}
.yf5{bottom:243.750000px;}
.y81{bottom:243.930000px;}
.y45{bottom:247.170000px;}
.y10a{bottom:254.190000px;}
.y67{bottom:254.370000px;}
.yd1{bottom:259.230000px;}
.y80{bottom:264.810000px;}
.y44{bottom:268.230000px;}
.y9c{bottom:268.590000px;}
.y109{bottom:275.250000px;}
.yd9{bottom:275.430000px;}
.y7f{bottom:285.870000px;}
.y66{bottom:286.050000px;}
.y43{bottom:289.470000px;}
.yd0{bottom:290.910000px;}
.yd8{bottom:296.490000px;}
.y7e{bottom:306.930000px;}
.ydc{bottom:307.110000px;}
.y42{bottom:310.530000px;}
.y8b{bottom:313.230000px;}
.yd7{bottom:317.550000px;}
.y65{bottom:317.730000px;}
.ycf{bottom:322.410000px;}
.yf4{bottom:328.170000px;}
.y41{bottom:331.590000px;}
.yd6{bottom:338.655000px;}
.y7d{bottom:338.835000px;}
.yf3{bottom:349.275000px;}
.y64{bottom:349.455000px;}
.y40{bottom:352.695000px;}
.yce{bottom:354.135000px;}
.y108{bottom:359.715000px;}
.yf2{bottom:370.335000px;}
.y7c{bottom:370.515000px;}
.y3f{bottom:373.935000px;}
.y107{bottom:380.955000px;}
.y63{bottom:381.135000px;}
.y89{bottom:382.755000px;}
.ycd{bottom:385.815000px;}
.yf1{bottom:391.395000px;}
.y3e{bottom:394.995000px;}
.y62{bottom:402.015000px;}
.y7b{bottom:402.195000px;}
.yf0{bottom:412.455000px;}
.y76{bottom:412.635000px;}
.y3d{bottom:416.055000px;}
.ycc{bottom:417.495000px;}
.y61{bottom:423.075000px;}
.y88{bottom:426.315000px;}
.yef{bottom:433.695000px;}
.y7a{bottom:433.875000px;}
.y3c{bottom:437.115000px;}
.y9a{bottom:443.415000px;}
.y60{bottom:444.135000px;}
.y75{bottom:444.315000px;}
.y87{bottom:445.575000px;}
.ycb{bottom:449.175000px;}
.yee{bottom:454.755000px;}
.y3b{bottom:458.175000px;}
.y86{bottom:465.375000px;}
.y79{bottom:465.555000px;}
.y99{bottom:467.175000px;}
.yed{bottom:475.815000px;}
.y5f{bottom:475.995000px;}
.y3a{bottom:479.415000px;}
.yca{bottom:480.855000px;}
.y98{bottom:486.435000px;}
.yec{bottom:496.875000px;}
.y78{bottom:497.055000px;}
.y39{bottom:500.475000px;}
.yc{bottom:502.995000px;}
.y97{bottom:506.235000px;}
.y106{bottom:507.495000px;}
.y5e{bottom:507.675000px;}
.yc9{bottom:512.535000px;}
.yeb{bottom:518.115000px;}
.y38{bottom:521.535000px;}
.y96{bottom:527.295000px;}
.y5d{bottom:528.555000px;}
.y77{bottom:528.735000px;}
.yea{bottom:539.175000px;}
.y74{bottom:539.355000px;}
.y37{bottom:542.595000px;}
.yc8{bottom:544.035000px;}
.y95{bottom:548.355000px;}
.y105{bottom:549.795000px;}
.ye9{bottom:560.235000px;}
.y5c{bottom:560.415000px;}
.y36{bottom:563.835000px;}
.y94{bottom:569.415000px;}
.y104{bottom:570.855000px;}
.y73{bottom:571.035000px;}
.yc7{bottom:575.715000px;}
.ye8{bottom:581.295000px;}
.y35{bottom:584.895000px;}
.yb2{bottom:587.415000px;}
.y103{bottom:591.915000px;}
.y5b{bottom:592.095000px;}
.ye7{bottom:602.535000px;}
.y72{bottom:602.715000px;}
.y34{bottom:605.985000px;}
.yc6{bottom:607.425000px;}
.ydb{bottom:613.005000px;}
.ye6{bottom:623.625000px;}
.y5a{bottom:623.805000px;}
.y33{bottom:627.045000px;}
.yda{bottom:634.065000px;}
.y71{bottom:634.245000px;}
.yc5{bottom:639.105000px;}
.y85{bottom:644.685000px;}
.y32{bottom:648.285000px;}
.y70{bottom:655.305000px;}
.y59{bottom:655.485000px;}
.yb1{bottom:665.565000px;}
.y84{bottom:665.745000px;}
.y31{bottom:669.345000px;}
.yc4{bottom:670.785000px;}
.y6f{bottom:676.365000px;}
.y83{bottom:686.985000px;}
.y58{bottom:687.165000px;}
.y30{bottom:690.405000px;}
.y6e{bottom:697.425000px;}
.yc3{bottom:702.465000px;}
.yb0{bottom:704.985000px;}
.ydf{bottom:708.045000px;}
.y2f{bottom:711.465000px;}
.y102{bottom:718.485000px;}
.y57{bottom:718.665000px;}
.yde{bottom:729.105000px;}
.y6d{bottom:729.285000px;}
.y2e{bottom:732.705000px;}
.yc2{bottom:734.145000px;}
.y101{bottom:739.725000px;}
.ydd{bottom:750.165000px;}
.y56{bottom:750.345000px;}
.y2d{bottom:753.765000px;}
.y100{bottom:760.785000px;}
.y6c{bottom:760.965000px;}
.yad{bottom:763.665000px;}
.yc1{bottom:765.645000px;}
.y2c{bottom:774.825000px;}
.y6b{bottom:781.845000px;}
.y55{bottom:782.025000px;}
.y2b{bottom:795.885000px;}
.yc0{bottom:797.325000px;}
.yff{bottom:802.905000px;}
.y54{bottom:813.705000px;}
.y2a{bottom:816.945000px;}
.yfe{bottom:824.145000px;}
.yac{bottom:826.125000px;}
.ybf{bottom:829.005000px;}
.y29{bottom:838.185000px;}
.yfd{bottom:845.205000px;}
.y53{bottom:845.385000px;}
.ybe{bottom:849.885000px;}
.y28{bottom:859.245000px;}
.ye5{bottom:866.265000px;}
.ybd{bottom:871.170000px;}
.y52{bottom:877.110000px;}
.y27{bottom:880.350000px;}
.yab{bottom:885.030000px;}
.ye4{bottom:887.370000px;}
.ybc{bottom:892.230000px;}
.y26{bottom:901.410000px;}
.y3{bottom:903.390000px;}
.ye3{bottom:908.610000px;}
.y51{bottom:908.790000px;}
.ybb{bottom:913.290000px;}
.y25{bottom:922.650000px;}
.yfc{bottom:929.670000px;}
.y10c{bottom:929.850000px;}
.yba{bottom:934.350000px;}
.y50{bottom:940.290000px;}
.y24{bottom:943.710000px;}
.yfb{bottom:950.730000px;}
.y23{bottom:964.770000px;}
.yb9{bottom:966.210000px;}
.yfa{bottom:971.790000px;}
.y4f{bottom:971.970000px;}
.yb7{bottom:983.850000px;}
.y22{bottom:986.730000px;}
.ye2{bottom:992.850000px;}
.yaa{bottom:1002.570000px;}
.y4e{bottom:1003.650000px;}
.y21{bottom:1011.390000px;}
.ye1{bottom:1014.090000px;}
.yd5{bottom:1024.530000px;}
.ye0{bottom:1035.150000px;}
.y4d{bottom:1035.330000px;}
.y20{bottom:1035.870000px;}
.yd4{bottom:1045.770000px;}
.yf9{bottom:1056.210000px;}
.y1f{bottom:1060.530000px;}
.yd3{bottom:1066.830000px;}
.y4c{bottom:1067.010000px;}
.yf8{bottom:1077.270000px;}
.ya9{bottom:1080.690000px;}
.yb4{bottom:1081.410000px;}
.y1e{bottom:1085.190000px;}
.yf7{bottom:1098.510000px;}
.y4b{bottom:1098.690000px;}
.y8{bottom:1107.870000px;}
.y1d{bottom:1109.850000px;}
.y4a{bottom:1119.570000px;}
.ya6{bottom:1120.110000px;}
.y6a{bottom:1130.190000px;}
.y1c{bottom:1134.510000px;}
.y49{bottom:1140.660000px;}
.y6{bottom:1141.380000px;}
.y1b{bottom:1159.020000px;}
.y48{bottom:1161.720000px;}
.y69{bottom:1161.900000px;}
.y5{bottom:1162.260000px;}
.yf{bottom:1183.320000px;}
.y2{bottom:1184.040000px;}
.y1{bottom:1204.020000px;}
.h13{height:19.260000px;}
.h4{height:29.160000px;}
.h10{height:31.500000px;}
.h17{height:38.700000px;}
.hb{height:52.465078px;}
.hf{height:57.733594px;}
.h15{height:57.960000px;}
.h16{height:57.996000px;}
.he{height:58.154062px;}
.h18{height:61.740000px;}
.h6{height:62.753906px;}
.hd{height:63.210938px;}
.h3{height:65.884219px;}
.h11{height:68.796000px;}
.hc{height:73.956797px;}
.h2{height:74.004654px;}
.h5{height:74.953125px;}
.h8{height:76.507031px;}
.h19{height:77.256000px;}
.h12{height:77.400000px;}
.h1a{height:96.696000px;}
.h1b{height:96.840000px;}
.ha{height:98.426190px;}
.h7{height:106.416000px;}
.h14{height:174.090000px;}
.h9{height:244.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.996000px;}
.w8{width:136.836000px;}
.w7{width:158.940000px;}
.w9{width:169.050000px;}
.wa{width:222.510000px;}
.wb{width:243.390000px;}
.w6{width:339.015000px;}
.w5{width:717.090000px;}
.w4{width:892.979972px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x46{left:7.560000px;}
.x36{left:9.360000px;}
.x9{left:10.800000px;}
.x37{left:12.780000px;}
.x5{left:14.579972px;}
.x35{left:15.660000px;}
.x3c{left:17.820000px;}
.x41{left:19.260000px;}
.x32{left:20.520000px;}
.x3f{left:21.960000px;}
.x2a{left:23.580000px;}
.x2b{left:25.380000px;}
.x29{left:27.000000px;}
.x42{left:28.254000px;}
.x2d{left:30.060000px;}
.x6{left:31.139972px;}
.x33{left:32.754000px;}
.x4a{left:34.425000px;}
.x3b{left:35.994000px;}
.x27{left:37.254000px;}
.x38{left:39.600000px;}
.x47{left:41.445000px;}
.x1{left:42.479987px;}
.x2c{left:44.634000px;}
.x34{left:46.434000px;}
.x4c{left:49.320000px;}
.x25{left:50.580000px;}
.x8{left:51.660000px;}
.x2f{left:52.920000px;}
.x2e{left:54.720000px;}
.x45{left:58.854000px;}
.x3d{left:63.360000px;}
.x44{left:64.974000px;}
.x31{left:70.020000px;}
.x48{left:72.714000px;}
.x3e{left:76.494000px;}
.x39{left:77.760000px;}
.x4b{left:79.200000px;}
.x3a{left:84.414000px;}
.x40{left:85.674000px;}
.x28{left:92.514000px;}
.x49{left:117.354000px;}
.x43{left:122.574000px;}
.x3{left:127.655987px;}
.x10{left:132.515987px;}
.xc{left:136.295987px;}
.x23{left:146.334000px;}
.xd{left:155.369987px;}
.xf{left:169.589987px;}
.x22{left:180.749987px;}
.x15{left:254.909987px;}
.x19{left:279.254987px;}
.x7{left:291.674972px;}
.x13{left:294.014987px;}
.x1a{left:295.994987px;}
.x14{left:298.334987px;}
.x12{left:299.774987px;}
.x17{left:302.834987px;}
.xe{left:306.614987px;}
.x16{left:317.054987px;}
.x1e{left:319.214987px;}
.x18{left:324.974987px;}
.x11{left:337.754987px;}
.x1f{left:340.634987px;}
.x1d{left:345.134987px;}
.xa{left:351.615000px;}
.x1c{left:358.094987px;}
.x1b{left:373.574987px;}
.x21{left:407.054987px;}
.x20{left:416.234987px;}
.xb{left:451.874987px;}
.x24{left:468.105000px;}
.x30{left:521.385000px;}
.x26{left:627.765000px;}
.x2{left:825.450000px;}
.x4{left:897.839987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.318933pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.250667pt;}
.ls8{letter-spacing:-0.163733pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.102400pt;}
.ls9{letter-spacing:-0.086933pt;}
.ls3{letter-spacing:-0.078933pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.089600pt;}
.lsc{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.166400pt;}
.ls6{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.298667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.658560pt;}
.ls18{letter-spacing:0.800000pt;}
.ls10{letter-spacing:4.006400pt;}
.lsb{letter-spacing:5.760000pt;}
.ls11{letter-spacing:7.040000pt;}
.lsd{letter-spacing:7.680000pt;}
.ls15{letter-spacing:9.600000pt;}
.ls12{letter-spacing:14.246400pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.641067pt;}
.ws2{word-spacing:-18.401067pt;}
.ws9{word-spacing:-14.208000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.952000pt;}
.wsc{word-spacing:-13.824000pt;}
.wsa{word-spacing:-12.953600pt;}
.wsb{word-spacing:-12.702933pt;}
.ws6{word-spacing:-11.599467pt;}
.ws5{word-spacing:-11.584000pt;}
.ws0{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-3.196373pt;}
._4{margin-left:-2.231040pt;}
._0{margin-left:-1.098880pt;}
._3{width:1.274880pt;}
._13{width:2.398080pt;}
._8{width:3.452800pt;}
._2{width:4.408960pt;}
._9{width:5.770667pt;}
._a{width:6.693120pt;}
._b{width:7.829333pt;}
._14{width:8.741333pt;}
._c{width:10.240000pt;}
._20{width:11.328000pt;}
._7{width:12.642560pt;}
._6{width:13.545600pt;}
._24{width:15.189760pt;}
._f{width:16.448000pt;}
._e{width:17.344000pt;}
._21{width:18.330880pt;}
._d{width:19.264000pt;}
._1f{width:20.303787pt;}
._15{width:21.440000pt;}
._16{width:22.528000pt;}
._12{width:23.808000pt;}
._11{width:25.024000pt;}
._10{width:26.496000pt;}
._18{width:27.392000pt;}
._17{width:28.416000pt;}
._1d{width:30.208000pt;}
._28{width:31.488000pt;}
._27{width:32.384000pt;}
._2a{width:33.660160pt;}
._1e{width:34.560000pt;}
._29{width:35.968000pt;}
._1b{width:37.824000pt;}
._1c{width:39.567787pt;}
._1a{width:46.826667pt;}
._23{width:55.288320pt;}
._22{width:56.253227pt;}
._19{width:59.456000pt;}
._25{width:62.464000pt;}
._26{width:64.576000pt;}
._1{width:1120.266667pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:2.880000pt;}
.y9b{bottom:3.200000pt;}
.y93{bottom:3.360000pt;}
.y4{bottom:10.720000pt;}
.y8e{bottom:12.800000pt;}
.y8a{bottom:14.080000pt;}
.yb{bottom:14.880000pt;}
.y19{bottom:18.560000pt;}
.ya4{bottom:20.320000pt;}
.y92{bottom:20.480000pt;}
.ya8{bottom:20.506667pt;}
.yaf{bottom:23.680000pt;}
.ye{bottom:27.200000pt;}
.y8d{bottom:30.120000pt;}
.y18{bottom:34.080000pt;}
.ya{bottom:36.506667pt;}
.ya3{bottom:37.600000pt;}
.ya7{bottom:37.626667pt;}
.y91{bottom:37.760000pt;}
.yae{bottom:40.960000pt;}
.y7{bottom:46.720000pt;}
.y8c{bottom:47.240000pt;}
.y17{bottom:49.760000pt;}
.ya2{bottom:54.720000pt;}
.yb3{bottom:54.746667pt;}
.y90{bottom:54.880000pt;}
.yb6{bottom:54.906667pt;}
.y9{bottom:58.106667pt;}
.y16{bottom:65.472000pt;}
.yb5{bottom:72.026667pt;}
.ya1{bottom:72.040000pt;}
.yb8{bottom:72.160000pt;}
.y15{bottom:80.992000pt;}
.ya0{bottom:89.160000pt;}
.y14{bottom:96.672000pt;}
.y9f{bottom:106.440000pt;}
.y13{bottom:112.352000pt;}
.y9e{bottom:123.560000pt;}
.y12{bottom:127.872000pt;}
.y9d{bottom:140.840000pt;}
.y11{bottom:143.546667pt;}
.y10{bottom:159.226667pt;}
.y47{bottom:182.266667pt;}
.ya5{bottom:186.426667pt;}
.y82{bottom:188.666667pt;}
.yf6{bottom:197.786667pt;}
.y68{bottom:197.946667pt;}
.yd{bottom:198.106667pt;}
.y46{bottom:200.986667pt;}
.yd2{bottom:202.266667pt;}
.y10b{bottom:207.226667pt;}
.y8f{bottom:208.986667pt;}
.yf5{bottom:216.666667pt;}
.y81{bottom:216.826667pt;}
.y45{bottom:219.706667pt;}
.y10a{bottom:225.946667pt;}
.y67{bottom:226.106667pt;}
.yd1{bottom:230.426667pt;}
.y80{bottom:235.386667pt;}
.y44{bottom:238.426667pt;}
.y9c{bottom:238.746667pt;}
.y109{bottom:244.666667pt;}
.yd9{bottom:244.826667pt;}
.y7f{bottom:254.106667pt;}
.y66{bottom:254.266667pt;}
.y43{bottom:257.306667pt;}
.yd0{bottom:258.586667pt;}
.yd8{bottom:263.546667pt;}
.y7e{bottom:272.826667pt;}
.ydc{bottom:272.986667pt;}
.y42{bottom:276.026667pt;}
.y8b{bottom:278.426667pt;}
.yd7{bottom:282.266667pt;}
.y65{bottom:282.426667pt;}
.ycf{bottom:286.586667pt;}
.yf4{bottom:291.706667pt;}
.y41{bottom:294.746667pt;}
.yd6{bottom:301.026667pt;}
.y7d{bottom:301.186667pt;}
.yf3{bottom:310.466667pt;}
.y64{bottom:310.626667pt;}
.y40{bottom:313.506667pt;}
.yce{bottom:314.786667pt;}
.y108{bottom:319.746667pt;}
.yf2{bottom:329.186667pt;}
.y7c{bottom:329.346667pt;}
.y3f{bottom:332.386667pt;}
.y107{bottom:338.626667pt;}
.y63{bottom:338.786667pt;}
.y89{bottom:340.226667pt;}
.ycd{bottom:342.946667pt;}
.yf1{bottom:347.906667pt;}
.y3e{bottom:351.106667pt;}
.y62{bottom:357.346667pt;}
.y7b{bottom:357.506667pt;}
.yf0{bottom:366.626667pt;}
.y76{bottom:366.786667pt;}
.y3d{bottom:369.826667pt;}
.ycc{bottom:371.106667pt;}
.y61{bottom:376.066667pt;}
.y88{bottom:378.946667pt;}
.yef{bottom:385.506667pt;}
.y7a{bottom:385.666667pt;}
.y3c{bottom:388.546667pt;}
.y9a{bottom:394.146667pt;}
.y60{bottom:394.786667pt;}
.y75{bottom:394.946667pt;}
.y87{bottom:396.066667pt;}
.ycb{bottom:399.266667pt;}
.yee{bottom:404.226667pt;}
.y3b{bottom:407.266667pt;}
.y86{bottom:413.666667pt;}
.y79{bottom:413.826667pt;}
.y99{bottom:415.266667pt;}
.yed{bottom:422.946667pt;}
.y5f{bottom:423.106667pt;}
.y3a{bottom:426.146667pt;}
.yca{bottom:427.426667pt;}
.y98{bottom:432.386667pt;}
.yec{bottom:441.666667pt;}
.y78{bottom:441.826667pt;}
.y39{bottom:444.866667pt;}
.yc{bottom:447.106667pt;}
.y97{bottom:449.986667pt;}
.y106{bottom:451.106667pt;}
.y5e{bottom:451.266667pt;}
.yc9{bottom:455.586667pt;}
.yeb{bottom:460.546667pt;}
.y38{bottom:463.586667pt;}
.y96{bottom:468.706667pt;}
.y5d{bottom:469.826667pt;}
.y77{bottom:469.986667pt;}
.yea{bottom:479.266667pt;}
.y74{bottom:479.426667pt;}
.y37{bottom:482.306667pt;}
.yc8{bottom:483.586667pt;}
.y95{bottom:487.426667pt;}
.y105{bottom:488.706667pt;}
.ye9{bottom:497.986667pt;}
.y5c{bottom:498.146667pt;}
.y36{bottom:501.186667pt;}
.y94{bottom:506.146667pt;}
.y104{bottom:507.426667pt;}
.y73{bottom:507.586667pt;}
.yc7{bottom:511.746667pt;}
.ye8{bottom:516.706667pt;}
.y35{bottom:519.906667pt;}
.yb2{bottom:522.146667pt;}
.y103{bottom:526.146667pt;}
.y5b{bottom:526.306667pt;}
.ye7{bottom:535.586667pt;}
.y72{bottom:535.746667pt;}
.y34{bottom:538.653333pt;}
.yc6{bottom:539.933333pt;}
.ydb{bottom:544.893333pt;}
.ye6{bottom:554.333333pt;}
.y5a{bottom:554.493333pt;}
.y33{bottom:557.373333pt;}
.yda{bottom:563.613333pt;}
.y71{bottom:563.773333pt;}
.yc5{bottom:568.093333pt;}
.y85{bottom:573.053333pt;}
.y32{bottom:576.253333pt;}
.y70{bottom:582.493333pt;}
.y59{bottom:582.653333pt;}
.yb1{bottom:591.613333pt;}
.y84{bottom:591.773333pt;}
.y31{bottom:594.973333pt;}
.yc4{bottom:596.253333pt;}
.y6f{bottom:601.213333pt;}
.y83{bottom:610.653333pt;}
.y58{bottom:610.813333pt;}
.y30{bottom:613.693333pt;}
.y6e{bottom:619.933333pt;}
.yc3{bottom:624.413333pt;}
.yb0{bottom:626.653333pt;}
.ydf{bottom:629.373333pt;}
.y2f{bottom:632.413333pt;}
.y102{bottom:638.653333pt;}
.y57{bottom:638.813333pt;}
.yde{bottom:648.093333pt;}
.y6d{bottom:648.253333pt;}
.y2e{bottom:651.293333pt;}
.yc2{bottom:652.573333pt;}
.y101{bottom:657.533333pt;}
.ydd{bottom:666.813333pt;}
.y56{bottom:666.973333pt;}
.y2d{bottom:670.013333pt;}
.y100{bottom:676.253333pt;}
.y6c{bottom:676.413333pt;}
.yad{bottom:678.813333pt;}
.yc1{bottom:680.573333pt;}
.y2c{bottom:688.733333pt;}
.y6b{bottom:694.973333pt;}
.y55{bottom:695.133333pt;}
.y2b{bottom:707.453333pt;}
.yc0{bottom:708.733333pt;}
.yff{bottom:713.693333pt;}
.y54{bottom:723.293333pt;}
.y2a{bottom:726.173333pt;}
.yfe{bottom:732.573333pt;}
.yac{bottom:734.333333pt;}
.ybf{bottom:736.893333pt;}
.y29{bottom:745.053333pt;}
.yfd{bottom:751.293333pt;}
.y53{bottom:751.453333pt;}
.ybe{bottom:755.453333pt;}
.y28{bottom:763.773333pt;}
.ye5{bottom:770.013333pt;}
.ybd{bottom:774.373333pt;}
.y52{bottom:779.653333pt;}
.y27{bottom:782.533333pt;}
.yab{bottom:786.693333pt;}
.ye4{bottom:788.773333pt;}
.ybc{bottom:793.093333pt;}
.y26{bottom:801.253333pt;}
.y3{bottom:803.013333pt;}
.ye3{bottom:807.653333pt;}
.y51{bottom:807.813333pt;}
.ybb{bottom:811.813333pt;}
.y25{bottom:820.133333pt;}
.yfc{bottom:826.373333pt;}
.y10c{bottom:826.533333pt;}
.yba{bottom:830.533333pt;}
.y50{bottom:835.813333pt;}
.y24{bottom:838.853333pt;}
.yfb{bottom:845.093333pt;}
.y23{bottom:857.573333pt;}
.yb9{bottom:858.853333pt;}
.yfa{bottom:863.813333pt;}
.y4f{bottom:863.973333pt;}
.yb7{bottom:874.533333pt;}
.y22{bottom:877.093333pt;}
.ye2{bottom:882.533333pt;}
.yaa{bottom:891.173333pt;}
.y4e{bottom:892.133333pt;}
.y21{bottom:899.013333pt;}
.ye1{bottom:901.413333pt;}
.yd5{bottom:910.693333pt;}
.ye0{bottom:920.133333pt;}
.y4d{bottom:920.293333pt;}
.y20{bottom:920.773333pt;}
.yd4{bottom:929.573333pt;}
.yf9{bottom:938.853333pt;}
.y1f{bottom:942.693333pt;}
.yd3{bottom:948.293333pt;}
.y4c{bottom:948.453333pt;}
.yf8{bottom:957.573333pt;}
.ya9{bottom:960.613333pt;}
.yb4{bottom:961.253333pt;}
.y1e{bottom:964.613333pt;}
.yf7{bottom:976.453333pt;}
.y4b{bottom:976.613333pt;}
.y8{bottom:984.773333pt;}
.y1d{bottom:986.533333pt;}
.y4a{bottom:995.173333pt;}
.ya6{bottom:995.653333pt;}
.y6a{bottom:1004.613333pt;}
.y1c{bottom:1008.453333pt;}
.y49{bottom:1013.920000pt;}
.y6{bottom:1014.560000pt;}
.y1b{bottom:1030.240000pt;}
.y48{bottom:1032.640000pt;}
.y69{bottom:1032.800000pt;}
.y5{bottom:1033.120000pt;}
.yf{bottom:1051.840000pt;}
.y2{bottom:1052.480000pt;}
.y1{bottom:1070.240000pt;}
.h13{height:17.120000pt;}
.h4{height:25.920000pt;}
.h10{height:28.000000pt;}
.h17{height:34.400000pt;}
.hb{height:46.635625pt;}
.hf{height:51.318750pt;}
.h15{height:51.520000pt;}
.h16{height:51.552000pt;}
.he{height:51.692500pt;}
.h18{height:54.880000pt;}
.h6{height:55.781250pt;}
.hd{height:56.187500pt;}
.h3{height:58.563750pt;}
.h11{height:61.152000pt;}
.hc{height:65.739375pt;}
.h2{height:65.781915pt;}
.h5{height:66.625000pt;}
.h8{height:68.006250pt;}
.h19{height:68.672000pt;}
.h12{height:68.800000pt;}
.h1a{height:85.952000pt;}
.h1b{height:86.080000pt;}
.ha{height:87.489947pt;}
.h7{height:94.592000pt;}
.h14{height:154.746667pt;}
.h9{height:217.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.552000pt;}
.w8{width:121.632000pt;}
.w7{width:141.280000pt;}
.w9{width:150.266667pt;}
.wa{width:197.786667pt;}
.wb{width:216.346667pt;}
.w6{width:301.346667pt;}
.w5{width:637.413333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x46{left:6.720000pt;}
.x36{left:8.320000pt;}
.x9{left:9.600000pt;}
.x37{left:11.360000pt;}
.x5{left:12.959976pt;}
.x35{left:13.920000pt;}
.x3c{left:15.840000pt;}
.x41{left:17.120000pt;}
.x32{left:18.240000pt;}
.x3f{left:19.520000pt;}
.x2a{left:20.960000pt;}
.x2b{left:22.560000pt;}
.x29{left:24.000000pt;}
.x42{left:25.114667pt;}
.x2d{left:26.720000pt;}
.x6{left:27.679976pt;}
.x33{left:29.114667pt;}
.x4a{left:30.600000pt;}
.x3b{left:31.994667pt;}
.x27{left:33.114667pt;}
.x38{left:35.200000pt;}
.x47{left:36.840000pt;}
.x1{left:37.759988pt;}
.x2c{left:39.674667pt;}
.x34{left:41.274667pt;}
.x4c{left:43.840000pt;}
.x25{left:44.960000pt;}
.x8{left:45.920000pt;}
.x2f{left:47.040000pt;}
.x2e{left:48.640000pt;}
.x45{left:52.314667pt;}
.x3d{left:56.320000pt;}
.x44{left:57.754667pt;}
.x31{left:62.240000pt;}
.x48{left:64.634667pt;}
.x3e{left:67.994667pt;}
.x39{left:69.120000pt;}
.x4b{left:70.400000pt;}
.x3a{left:75.034667pt;}
.x40{left:76.154667pt;}
.x28{left:82.234667pt;}
.x49{left:104.314667pt;}
.x43{left:108.954667pt;}
.x3{left:113.471988pt;}
.x10{left:117.791988pt;}
.xc{left:121.151988pt;}
.x23{left:130.074667pt;}
.xd{left:138.106655pt;}
.xf{left:150.746655pt;}
.x22{left:160.666655pt;}
.x15{left:226.586655pt;}
.x19{left:248.226655pt;}
.x7{left:259.266642pt;}
.x13{left:261.346655pt;}
.x1a{left:263.106655pt;}
.x14{left:265.186655pt;}
.x12{left:266.466655pt;}
.x17{left:269.186655pt;}
.xe{left:272.546655pt;}
.x16{left:281.826655pt;}
.x1e{left:283.746655pt;}
.x18{left:288.866655pt;}
.x11{left:300.226655pt;}
.x1f{left:302.786655pt;}
.x1d{left:306.786655pt;}
.xa{left:312.546667pt;}
.x1c{left:318.306655pt;}
.x1b{left:332.066655pt;}
.x21{left:361.826655pt;}
.x20{left:369.986655pt;}
.xb{left:401.666655pt;}
.x24{left:416.093333pt;}
.x30{left:463.453333pt;}
.x26{left:558.013333pt;}
.x2{left:733.733333pt;}
.x4{left:798.079988pt;}
}




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