
    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_0840a66fcd699b845d901a16.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_973da73c49167fc99294a39f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_b90952838013af57f0991fba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_869a435af478cd4b95721b48.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_27a5074b61ae38f32f00b1e3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_11eabebd4ee51a95a64d646f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_84f97dad16c7006d740afc60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.024193px;}
.ls1{letter-spacing:0.470017px;}
.ls3{letter-spacing:0.723169px;}
.ls6{letter-spacing:6.843745px;}
.ls2{letter-spacing:42.238370px;}
.ls5{letter-spacing:66.723267px;}
.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;}
}
.ws0{word-spacing:-16.559850px;}
.ws2{word-spacing:-15.120000px;}
.ws3{word-spacing:-11.880000px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-3.790080px;}
._3{margin-left:-2.583337px;}
._0{margin-left:-1.209600px;}
._1{width:1.008000px;}
._2{width:2.041936px;}
._4{width:3.240163px;}
._9{width:4.556110px;}
._8{width:5.831949px;}
._d{width:6.934880px;}
._c{width:8.017849px;}
._e{width:9.524065px;}
._5{width:10.748074px;}
._6{width:12.242720px;}
._14{width:13.366437px;}
._7{width:14.399970px;}
._17{width:16.994880px;}
._12{width:18.430738px;}
._a{width:19.459975px;}
._b{width:20.779041px;}
._11{width:22.033566px;}
._18{width:23.169183px;}
._16{width:24.978240px;}
._15{width:26.611200px;}
._f{width:57.751915px;}
._10{width:58.858640px;}
._1a{width:66.747460px;}
._1b{width:1265.297259px;}
._13{width:1282.580716px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs3{font-size:54.719400px;}
.fs0{font-size:60.480000px;}
.fs2{font-size:66.239400px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:4.320000px;}
.y38{bottom:53.280000px;}
.y37{bottom:57.600000px;}
.y164{bottom:111.240000px;}
.y111{bottom:114.840000px;}
.y181{bottom:116.640000px;}
.y71{bottom:122.760000px;}
.y9e{bottom:127.080000px;}
.y163{bottom:128.520000px;}
.ycb{bottom:129.240000px;}
.y180{bottom:130.320000px;}
.y138{bottom:135.000000px;}
.y36{bottom:137.520000px;}
.y70{bottom:140.040000px;}
.y110{bottom:141.479850px;}
.y9d{bottom:144.360000px;}
.y162{bottom:145.439850px;}
.yca{bottom:146.520000px;}
.y17f{bottom:153.720000px;}
.y35{bottom:154.800000px;}
.y6f{bottom:156.960000px;}
.y10f{bottom:158.400000px;}
.y137{bottom:160.920000px;}
.y9c{bottom:161.640000px;}
.y161{bottom:162.720000px;}
.yc9{bottom:172.800000px;}
.y34{bottom:173.880000px;}
.y6e{bottom:174.240000px;}
.ye7{bottom:178.200000px;}
.y9b{bottom:178.920000px;}
.y160{bottom:180.000000px;}
.y17e{bottom:180.360000px;}
.y10e{bottom:185.040000px;}
.y136{bottom:187.200000px;}
.y33{bottom:192.960000px;}
.ye6{bottom:195.480000px;}
.y15f{bottom:197.280000px;}
.y17d{bottom:197.640000px;}
.yc8{bottom:199.080000px;}
.y6d{bottom:200.520000px;}
.y10d{bottom:201.960000px;}
.y9a{bottom:204.840000px;}
.y32{bottom:211.680000px;}
.ye5{bottom:212.760000px;}
.y135{bottom:213.480000px;}
.y15e{bottom:214.200000px;}
.yc7{bottom:216.360000px;}
.y6c{bottom:217.800000px;}
.y17c{bottom:223.920000px;}
.y10c{bottom:228.600000px;}
.y31{bottom:230.760000px;}
.y99{bottom:231.480000px;}
.yc6{bottom:233.640000px;}
.y6b{bottom:235.080000px;}
.ye4{bottom:238.680000px;}
.y134{bottom:240.120000px;}
.y15d{bottom:240.840000px;}
.y17b{bottom:241.200000px;}
.y10b{bottom:245.520000px;}
.y98{bottom:248.760000px;}
.y30{bottom:249.840000px;}
.yc5{bottom:250.920000px;}
.y6a{bottom:252.360000px;}
.ye3{bottom:255.960000px;}
.y133{bottom:257.400000px;}
.y15c{bottom:258.120000px;}
.y10a{bottom:262.800000px;}
.y97{bottom:265.680000px;}
.y2f{bottom:268.920000px;}
.y69{bottom:269.640000px;}
.ye2{bottom:273.240000px;}
.y132{bottom:274.680000px;}
.y15b{bottom:275.400000px;}
.yc4{bottom:277.200000px;}
.y17a{bottom:284.400000px;}
.y68{bottom:286.920000px;}
.y2e{bottom:287.640000px;}
.y109{bottom:289.080000px;}
.ye1{bottom:290.520000px;}
.y96{bottom:291.960000px;}
.y15a{bottom:292.680000px;}
.y131{bottom:300.600000px;}
.y179{bottom:301.680000px;}
.yc3{bottom:303.480000px;}
.y67{bottom:304.200000px;}
.y2d{bottom:306.720000px;}
.y159{bottom:309.960000px;}
.y108{bottom:315.360000px;}
.ye0{bottom:316.800000px;}
.y95{bottom:318.240000px;}
.yc2{bottom:320.760000px;}
.y66{bottom:321.480000px;}
.y2c{bottom:325.800000px;}
.y130{bottom:326.880000px;}
.y158{bottom:327.240000px;}
.y178{bottom:327.960000px;}
.y94{bottom:335.520000px;}
.yc1{bottom:337.680000px;}
.y65{bottom:338.760000px;}
.y107{bottom:341.280000px;}
.ydf{bottom:343.080000px;}
.y2b{bottom:344.520000px;}
.y177{bottom:345.240000px;}
.y12f{bottom:353.160000px;}
.yc0{bottom:354.960000px;}
.y64{bottom:355.680000px;}
.yde{bottom:360.360000px;}
.y93{bottom:361.800000px;}
.y2a{bottom:363.600000px;}
.y106{bottom:367.920000px;}
.y176{bottom:371.520000px;}
.y63{bottom:372.960000px;}
.ydd{bottom:377.640000px;}
.y157{bottom:378.720000px;}
.y92{bottom:379.080000px;}
.y12e{bottom:379.440000px;}
.ybf{bottom:381.240000px;}
.y29{bottom:382.680000px;}
.y105{bottom:394.200000px;}
.y156{bottom:396.000000px;}
.y12d{bottom:396.720000px;}
.y175{bottom:397.800000px;}
.ybe{bottom:398.520000px;}
.y62{bottom:398.880000px;}
.y28{bottom:401.400000px;}
.ydc{bottom:403.560000px;}
.y91{bottom:405.360000px;}
.y174{bottom:415.080000px;}
.ybd{bottom:415.800000px;}
.y27{bottom:420.480000px;}
.y155{bottom:422.280000px;}
.y90{bottom:422.640000px;}
.y12c{bottom:423.000000px;}
.y61{bottom:425.160000px;}
.y1aa{bottom:425.880000px;}
.ydb{bottom:439.200000px;}
.y26{bottom:439.560000px;}
.y173{bottom:441.360000px;}
.ybc{bottom:442.080000px;}
.y1a9{bottom:443.160000px;}
.y104{bottom:446.760000px;}
.y8f{bottom:448.920000px;}
.y12b{bottom:449.280000px;}
.yda{bottom:456.480000px;}
.y154{bottom:456.840000px;}
.y25{bottom:458.640000px;}
.ybb{bottom:459.360000px;}
.y1a8{bottom:460.080000px;}
.y60{bottom:460.800000px;}
.y8e{bottom:466.200000px;}
.y12a{bottom:466.560000px;}
.y103{bottom:473.400000px;}
.yd9{bottom:473.760000px;}
.yba{bottom:476.640000px;}
.y24{bottom:477.360000px;}
.y5f{bottom:478.080000px;}
.y129{bottom:483.840000px;}
.y172{bottom:484.920000px;}
.y102{bottom:490.680000px;}
.y8d{bottom:492.480000px;}
.yb9{bottom:493.920000px;}
.y1a7{bottom:494.640000px;}
.y5e{bottom:495.360000px;}
.y23{bottom:496.440000px;}
.yd8{bottom:499.680000px;}
.y153{bottom:500.400000px;}
.y171{bottom:501.840000px;}
.y101{bottom:507.960000px;}
.y128{bottom:510.120000px;}
.yb8{bottom:511.200000px;}
.y1a6{bottom:511.920000px;}
.y5d{bottom:512.640000px;}
.y22{bottom:515.520000px;}
.y152{bottom:517.680000px;}
.y8c{bottom:518.760000px;}
.y170{bottom:519.120000px;}
.yd7{bottom:525.960000px;}
.y127{bottom:527.040000px;}
.yb7{bottom:528.480000px;}
.y1a5{bottom:529.200000px;}
.y5c{bottom:529.920000px;}
.y21{bottom:534.240000px;}
.y151{bottom:534.960000px;}
.y16f{bottom:536.400000px;}
.y8b{bottom:544.680000px;}
.yb6{bottom:545.760000px;}
.y1a4{bottom:546.480000px;}
.y5b{bottom:547.200000px;}
.y100{bottom:551.160000px;}
.yd6{bottom:552.240000px;}
.y20{bottom:553.320000px;}
.y126{bottom:553.680000px;}
.yb5{bottom:562.680000px;}
.y1a3{bottom:563.760000px;}
.y5a{bottom:564.480000px;}
.yff{bottom:568.440000px;}
.y150{bottom:569.160000px;}
.y125{bottom:570.600000px;}
.y8a{bottom:570.960000px;}
.y1f{bottom:572.400000px;}
.yd5{bottom:578.520000px;}
.yb4{bottom:579.960000px;}
.y1a2{bottom:581.040000px;}
.yfe{bottom:585.720000px;}
.y59{bottom:590.760000px;}
.y1e{bottom:591.480000px;}
.y14f{bottom:595.800000px;}
.y89{bottom:597.240000px;}
.y1a1{bottom:598.320000px;}
.yfd{bottom:603.000000px;}
.yd4{bottom:604.800000px;}
.yb3{bottom:606.240000px;}
.y58{bottom:607.680000px;}
.y1d{bottom:610.200000px;}
.y14e{bottom:613.080000px;}
.y88{bottom:614.520000px;}
.y1a0{bottom:615.600000px;}
.yfc{bottom:620.280000px;}
.yb2{bottom:623.520000px;}
.y57{bottom:624.960000px;}
.y1c{bottom:629.280000px;}
.yd3{bottom:631.080000px;}
.y124{bottom:631.440000px;}
.y87{bottom:631.800000px;}
.y16e{bottom:632.520000px;}
.y19f{bottom:632.880000px;}
.yfb{bottom:637.560000px;}
.y14d{bottom:639.000000px;}
.yb1{bottom:640.800000px;}
.y56{bottom:642.240000px;}
.y1b{bottom:648.360000px;}
.y86{bottom:649.080000px;}
.y16d{bottom:649.800000px;}
.yd2{bottom:657.360000px;}
.y123{bottom:657.720000px;}
.yb0{bottom:658.080000px;}
.y55{bottom:659.520000px;}
.y19e{bottom:662.760000px;}
.yfa{bottom:663.840000px;}
.y85{bottom:666.360000px;}
.y1a{bottom:667.080000px;}
.y14c{bottom:674.640000px;}
.y16c{bottom:676.080000px;}
.y54{bottom:676.800000px;}
.yf9{bottom:680.760000px;}
.y84{bottom:683.640000px;}
.yaf{bottom:684.360000px;}
.y19{bottom:686.160000px;}
.y19d{bottom:690.480000px;}
.y14b{bottom:691.920000px;}
.y16b{bottom:693.360000px;}
.y53{bottom:694.080000px;}
.yae{bottom:701.640000px;}
.y19c{bottom:704.160000px;}
.y18{bottom:705.240000px;}
.yf8{bottom:707.040000px;}
.y14a{bottom:709.200000px;}
.y83{bottom:709.920000px;}
.y122{bottom:710.280000px;}
.y52{bottom:711.360000px;}
.y19b{bottom:718.200000px;}
.yad{bottom:718.920000px;}
.y16a{bottom:719.280000px;}
.y17{bottom:723.960000px;}
.y149{bottom:726.480000px;}
.y82{bottom:727.200000px;}
.y51{bottom:728.640000px;}
.y19a{bottom:731.880000px;}
.yf7{bottom:733.320000px;}
.yac{bottom:736.200000px;}
.y121{bottom:736.920000px;}
.y16{bottom:743.040000px;}
.y81{bottom:744.480000px;}
.y199{bottom:745.560000px;}
.y50{bottom:745.920000px;}
.y148{bottom:752.400000px;}
.yab{bottom:753.480000px;}
.y120{bottom:753.840000px;}
.y198{bottom:759.600000px;}
.yf6{bottom:759.960000px;}
.y80{bottom:761.400000px;}
.y15{bottom:762.120000px;}
.yd1{bottom:762.480000px;}
.y169{bottom:762.840000px;}
.y4f{bottom:763.200000px;}
.y147{bottom:769.680000px;}
.y11f{bottom:771.120000px;}
.y197{bottom:773.280000px;}
.yf5{bottom:776.880000px;}
.y7f{bottom:778.680000px;}
.yaa{bottom:779.400000px;}
.y168{bottom:780.120000px;}
.y4e{bottom:780.480000px;}
.y14{bottom:781.200000px;}
.y146{bottom:786.960000px;}
.y11e{bottom:788.400000px;}
.ya9{bottom:796.680000px;}
.y4d{bottom:797.400000px;}
.y13{bottom:799.920000px;}
.y196{bottom:801.000000px;}
.yf4{bottom:803.520000px;}
.y7e{bottom:804.960000px;}
.y11d{bottom:805.680000px;}
.y167{bottom:806.400000px;}
.y145{bottom:813.240000px;}
.ya8{bottom:813.960000px;}
.y4c{bottom:814.680000px;}
.y12{bottom:819.000000px;}
.y7d{bottom:822.240000px;}
.y166{bottom:823.680000px;}
.y195{bottom:828.360000px;}
.yf3{bottom:829.440000px;}
.y144{bottom:830.520000px;}
.y11c{bottom:831.960000px;}
.y11{bottom:837.000000px;}
.y7c{bottom:839.520000px;}
.ya7{bottom:840.240000px;}
.y4b{bottom:840.960000px;}
.y194{bottom:842.400000px;}
.y143{bottom:847.800000px;}
.y11b{bottom:849.240000px;}
.y10{bottom:853.920000px;}
.yf2{bottom:856.080000px;}
.y7b{bottom:856.800000px;}
.ya6{bottom:857.520000px;}
.y4a{bottom:858.240000px;}
.y142{bottom:865.080000px;}
.y11a{bottom:866.520000px;}
.y193{bottom:869.760000px;}
.yf{bottom:872.640000px;}
.yf1{bottom:873.360000px;}
.ya5{bottom:874.800000px;}
.y49{bottom:875.520000px;}
.y141{bottom:882.360000px;}
.y7a{bottom:883.080000px;}
.y119{bottom:883.800000px;}
.ye{bottom:891.720000px;}
.yd0{bottom:892.080000px;}
.y48{bottom:892.800000px;}
.y192{bottom:897.480000px;}
.yf0{bottom:899.640000px;}
.y79{bottom:900.360000px;}
.ya4{bottom:901.080000px;}
.ycf{bottom:909.360000px;}
.y47{bottom:910.080000px;}
.yd{bottom:910.800000px;}
.y191{bottom:911.160000px;}
.yef{bottom:916.920000px;}
.y78{bottom:917.640000px;}
.ya3{bottom:918.360000px;}
.y190{bottom:925.200000px;}
.y140{bottom:925.920000px;}
.yce{bottom:926.640000px;}
.y46{bottom:927.360000px;}
.yc{bottom:929.520000px;}
.ya2{bottom:935.640000px;}
.y18f{bottom:938.880000px;}
.yee{bottom:943.200000px;}
.y77{bottom:943.920000px;}
.y45{bottom:944.640000px;}
.yb{bottom:948.600000px;}
.y18e{bottom:952.560000px;}
.ya1{bottom:952.920000px;}
.y13f{bottom:960.120000px;}
.y76{bottom:961.200000px;}
.y118{bottom:961.560000px;}
.y44{bottom:961.920000px;}
.y18d{bottom:966.600000px;}
.ya{bottom:967.680000px;}
.yed{bottom:969.120000px;}
.ya0{bottom:970.200000px;}
.y13e{bottom:977.400000px;}
.ycd{bottom:978.120000px;}
.y117{bottom:978.840000px;}
.y43{bottom:979.200000px;}
.y18c{bottom:980.280000px;}
.yec{bottom:986.400000px;}
.y9{bottom:986.760000px;}
.y75{bottom:987.120000px;}
.y18b{bottom:993.960000px;}
.y116{bottom:995.760000px;}
.y42{bottom:996.120000px;}
.y13d{bottom:1003.680000px;}
.ycc{bottom:1004.040000px;}
.y74{bottom:1004.400000px;}
.y8{bottom:1005.480000px;}
.y18a{bottom:1007.640000px;}
.yeb{bottom:1012.680000px;}
.y165{bottom:1013.040000px;}
.y41{bottom:1013.400000px;}
.y13c{bottom:1020.960000px;}
.y73{bottom:1021.680000px;}
.y115{bottom:1022.400000px;}
.y7{bottom:1024.560000px;}
.yea{bottom:1029.960000px;}
.y40{bottom:1030.680000px;}
.y189{bottom:1035.360000px;}
.y13b{bottom:1038.240000px;}
.y114{bottom:1039.680000px;}
.y6{bottom:1043.280000px;}
.y3f{bottom:1047.960000px;}
.y188{bottom:1049.040000px;}
.ye9{bottom:1056.240000px;}
.y113{bottom:1056.960000px;}
.y187{bottom:1063.080000px;}
.y5{bottom:1064.160000px;}
.y13a{bottom:1064.520000px;}
.y3e{bottom:1065.240000px;}
.y112{bottom:1074.240000px;}
.y186{bottom:1076.760000px;}
.y3d{bottom:1082.520000px;}
.y4{bottom:1084.680000px;}
.y139{bottom:1090.440000px;}
.y9f{bottom:1091.520000px;}
.y3c{bottom:1099.800000px;}
.y185{bottom:1104.480000px;}
.y3{bottom:1105.560000px;}
.y72{bottom:1108.800000px;}
.ye8{bottom:1117.080000px;}
.y184{bottom:1118.160000px;}
.y3b{bottom:1125.720000px;}
.y2{bottom:1126.080000px;}
.y183{bottom:1131.840000px;}
.y3a{bottom:1143.000000px;}
.y1{bottom:1143.360000px;}
.y182{bottom:1145.880000px;}
.h6{height:20.520000px;}
.h9{height:32.994844px;}
.h4{height:36.470694px;}
.h8{height:41.696016px;}
.h1{height:53.067656px;}
.h7{height:53.717344px;}
.h3{height:58.121192px;}
.h5{height:63.175781px;}
.h2{height:63.949219px;}
.h0{height:1263.000000px;}
.w1{width:0.720000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.439850px;}
.xe{left:148.680000px;}
.xb{left:154.440000px;}
.xc{left:181.440000px;}
.x7{left:374.400000px;}
.x5{left:395.640000px;}
.x3{left:435.240000px;}
.xa{left:461.520000px;}
.xd{left:466.200000px;}
.x2{left:496.080000px;}
.x6{left:573.480000px;}
.x8{left:628.920000px;}
.x4{left:632.880000px;}
.x9{left:786.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.021505pt;}
.ls1{letter-spacing:0.417793pt;}
.ls3{letter-spacing:0.642817pt;}
.ls6{letter-spacing:6.083329pt;}
.ls2{letter-spacing:37.545218pt;}
.ls5{letter-spacing:59.309571pt;}
.ws0{word-spacing:-14.719867pt;}
.ws2{word-spacing:-13.440000pt;}
.ws3{word-spacing:-10.560000pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-3.368960pt;}
._3{margin-left:-2.296299pt;}
._0{margin-left:-1.075200pt;}
._1{width:0.896000pt;}
._2{width:1.815054pt;}
._4{width:2.880145pt;}
._9{width:4.049875pt;}
._8{width:5.183955pt;}
._d{width:6.164338pt;}
._c{width:7.126977pt;}
._e{width:8.465835pt;}
._5{width:9.553843pt;}
._6{width:10.882418pt;}
._14{width:11.881277pt;}
._7{width:12.799973pt;}
._17{width:15.106560pt;}
._12{width:16.382879pt;}
._a{width:17.297755pt;}
._b{width:18.470259pt;}
._11{width:19.585392pt;}
._18{width:20.594829pt;}
._16{width:22.202880pt;}
._15{width:23.654400pt;}
._f{width:51.335036pt;}
._10{width:52.318791pt;}
._1a{width:59.331076pt;}
._1b{width:1124.708675pt;}
._13{width:1140.071748pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:48.639467pt;}
.fs0{font-size:53.760000pt;}
.fs2{font-size:58.879467pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:3.840000pt;}
.y38{bottom:47.360000pt;}
.y37{bottom:51.200000pt;}
.y164{bottom:98.880000pt;}
.y111{bottom:102.080000pt;}
.y181{bottom:103.680000pt;}
.y71{bottom:109.120000pt;}
.y9e{bottom:112.960000pt;}
.y163{bottom:114.240000pt;}
.ycb{bottom:114.880000pt;}
.y180{bottom:115.840000pt;}
.y138{bottom:120.000000pt;}
.y36{bottom:122.240000pt;}
.y70{bottom:124.480000pt;}
.y110{bottom:125.759867pt;}
.y9d{bottom:128.320000pt;}
.y162{bottom:129.279867pt;}
.yca{bottom:130.240000pt;}
.y17f{bottom:136.640000pt;}
.y35{bottom:137.600000pt;}
.y6f{bottom:139.520000pt;}
.y10f{bottom:140.800000pt;}
.y137{bottom:143.040000pt;}
.y9c{bottom:143.680000pt;}
.y161{bottom:144.640000pt;}
.yc9{bottom:153.600000pt;}
.y34{bottom:154.560000pt;}
.y6e{bottom:154.880000pt;}
.ye7{bottom:158.400000pt;}
.y9b{bottom:159.040000pt;}
.y160{bottom:160.000000pt;}
.y17e{bottom:160.320000pt;}
.y10e{bottom:164.480000pt;}
.y136{bottom:166.400000pt;}
.y33{bottom:171.520000pt;}
.ye6{bottom:173.760000pt;}
.y15f{bottom:175.360000pt;}
.y17d{bottom:175.680000pt;}
.yc8{bottom:176.960000pt;}
.y6d{bottom:178.240000pt;}
.y10d{bottom:179.520000pt;}
.y9a{bottom:182.080000pt;}
.y32{bottom:188.160000pt;}
.ye5{bottom:189.120000pt;}
.y135{bottom:189.760000pt;}
.y15e{bottom:190.400000pt;}
.yc7{bottom:192.320000pt;}
.y6c{bottom:193.600000pt;}
.y17c{bottom:199.040000pt;}
.y10c{bottom:203.200000pt;}
.y31{bottom:205.120000pt;}
.y99{bottom:205.760000pt;}
.yc6{bottom:207.680000pt;}
.y6b{bottom:208.960000pt;}
.ye4{bottom:212.160000pt;}
.y134{bottom:213.440000pt;}
.y15d{bottom:214.080000pt;}
.y17b{bottom:214.400000pt;}
.y10b{bottom:218.240000pt;}
.y98{bottom:221.120000pt;}
.y30{bottom:222.080000pt;}
.yc5{bottom:223.040000pt;}
.y6a{bottom:224.320000pt;}
.ye3{bottom:227.520000pt;}
.y133{bottom:228.800000pt;}
.y15c{bottom:229.440000pt;}
.y10a{bottom:233.600000pt;}
.y97{bottom:236.160000pt;}
.y2f{bottom:239.040000pt;}
.y69{bottom:239.680000pt;}
.ye2{bottom:242.880000pt;}
.y132{bottom:244.160000pt;}
.y15b{bottom:244.800000pt;}
.yc4{bottom:246.400000pt;}
.y17a{bottom:252.800000pt;}
.y68{bottom:255.040000pt;}
.y2e{bottom:255.680000pt;}
.y109{bottom:256.960000pt;}
.ye1{bottom:258.240000pt;}
.y96{bottom:259.520000pt;}
.y15a{bottom:260.160000pt;}
.y131{bottom:267.200000pt;}
.y179{bottom:268.160000pt;}
.yc3{bottom:269.760000pt;}
.y67{bottom:270.400000pt;}
.y2d{bottom:272.640000pt;}
.y159{bottom:275.520000pt;}
.y108{bottom:280.320000pt;}
.ye0{bottom:281.600000pt;}
.y95{bottom:282.880000pt;}
.yc2{bottom:285.120000pt;}
.y66{bottom:285.760000pt;}
.y2c{bottom:289.600000pt;}
.y130{bottom:290.560000pt;}
.y158{bottom:290.880000pt;}
.y178{bottom:291.520000pt;}
.y94{bottom:298.240000pt;}
.yc1{bottom:300.160000pt;}
.y65{bottom:301.120000pt;}
.y107{bottom:303.360000pt;}
.ydf{bottom:304.960000pt;}
.y2b{bottom:306.240000pt;}
.y177{bottom:306.880000pt;}
.y12f{bottom:313.920000pt;}
.yc0{bottom:315.520000pt;}
.y64{bottom:316.160000pt;}
.yde{bottom:320.320000pt;}
.y93{bottom:321.600000pt;}
.y2a{bottom:323.200000pt;}
.y106{bottom:327.040000pt;}
.y176{bottom:330.240000pt;}
.y63{bottom:331.520000pt;}
.ydd{bottom:335.680000pt;}
.y157{bottom:336.640000pt;}
.y92{bottom:336.960000pt;}
.y12e{bottom:337.280000pt;}
.ybf{bottom:338.880000pt;}
.y29{bottom:340.160000pt;}
.y105{bottom:350.400000pt;}
.y156{bottom:352.000000pt;}
.y12d{bottom:352.640000pt;}
.y175{bottom:353.600000pt;}
.ybe{bottom:354.240000pt;}
.y62{bottom:354.560000pt;}
.y28{bottom:356.800000pt;}
.ydc{bottom:358.720000pt;}
.y91{bottom:360.320000pt;}
.y174{bottom:368.960000pt;}
.ybd{bottom:369.600000pt;}
.y27{bottom:373.760000pt;}
.y155{bottom:375.360000pt;}
.y90{bottom:375.680000pt;}
.y12c{bottom:376.000000pt;}
.y61{bottom:377.920000pt;}
.y1aa{bottom:378.560000pt;}
.ydb{bottom:390.400000pt;}
.y26{bottom:390.720000pt;}
.y173{bottom:392.320000pt;}
.ybc{bottom:392.960000pt;}
.y1a9{bottom:393.920000pt;}
.y104{bottom:397.120000pt;}
.y8f{bottom:399.040000pt;}
.y12b{bottom:399.360000pt;}
.yda{bottom:405.760000pt;}
.y154{bottom:406.080000pt;}
.y25{bottom:407.680000pt;}
.ybb{bottom:408.320000pt;}
.y1a8{bottom:408.960000pt;}
.y60{bottom:409.600000pt;}
.y8e{bottom:414.400000pt;}
.y12a{bottom:414.720000pt;}
.y103{bottom:420.800000pt;}
.yd9{bottom:421.120000pt;}
.yba{bottom:423.680000pt;}
.y24{bottom:424.320000pt;}
.y5f{bottom:424.960000pt;}
.y129{bottom:430.080000pt;}
.y172{bottom:431.040000pt;}
.y102{bottom:436.160000pt;}
.y8d{bottom:437.760000pt;}
.yb9{bottom:439.040000pt;}
.y1a7{bottom:439.680000pt;}
.y5e{bottom:440.320000pt;}
.y23{bottom:441.280000pt;}
.yd8{bottom:444.160000pt;}
.y153{bottom:444.800000pt;}
.y171{bottom:446.080000pt;}
.y101{bottom:451.520000pt;}
.y128{bottom:453.440000pt;}
.yb8{bottom:454.400000pt;}
.y1a6{bottom:455.040000pt;}
.y5d{bottom:455.680000pt;}
.y22{bottom:458.240000pt;}
.y152{bottom:460.160000pt;}
.y8c{bottom:461.120000pt;}
.y170{bottom:461.440000pt;}
.yd7{bottom:467.520000pt;}
.y127{bottom:468.480000pt;}
.yb7{bottom:469.760000pt;}
.y1a5{bottom:470.400000pt;}
.y5c{bottom:471.040000pt;}
.y21{bottom:474.880000pt;}
.y151{bottom:475.520000pt;}
.y16f{bottom:476.800000pt;}
.y8b{bottom:484.160000pt;}
.yb6{bottom:485.120000pt;}
.y1a4{bottom:485.760000pt;}
.y5b{bottom:486.400000pt;}
.y100{bottom:489.920000pt;}
.yd6{bottom:490.880000pt;}
.y20{bottom:491.840000pt;}
.y126{bottom:492.160000pt;}
.yb5{bottom:500.160000pt;}
.y1a3{bottom:501.120000pt;}
.y5a{bottom:501.760000pt;}
.yff{bottom:505.280000pt;}
.y150{bottom:505.920000pt;}
.y125{bottom:507.200000pt;}
.y8a{bottom:507.520000pt;}
.y1f{bottom:508.800000pt;}
.yd5{bottom:514.240000pt;}
.yb4{bottom:515.520000pt;}
.y1a2{bottom:516.480000pt;}
.yfe{bottom:520.640000pt;}
.y59{bottom:525.120000pt;}
.y1e{bottom:525.760000pt;}
.y14f{bottom:529.600000pt;}
.y89{bottom:530.880000pt;}
.y1a1{bottom:531.840000pt;}
.yfd{bottom:536.000000pt;}
.yd4{bottom:537.600000pt;}
.yb3{bottom:538.880000pt;}
.y58{bottom:540.160000pt;}
.y1d{bottom:542.400000pt;}
.y14e{bottom:544.960000pt;}
.y88{bottom:546.240000pt;}
.y1a0{bottom:547.200000pt;}
.yfc{bottom:551.360000pt;}
.yb2{bottom:554.240000pt;}
.y57{bottom:555.520000pt;}
.y1c{bottom:559.360000pt;}
.yd3{bottom:560.960000pt;}
.y124{bottom:561.280000pt;}
.y87{bottom:561.600000pt;}
.y16e{bottom:562.240000pt;}
.y19f{bottom:562.560000pt;}
.yfb{bottom:566.720000pt;}
.y14d{bottom:568.000000pt;}
.yb1{bottom:569.600000pt;}
.y56{bottom:570.880000pt;}
.y1b{bottom:576.320000pt;}
.y86{bottom:576.960000pt;}
.y16d{bottom:577.600000pt;}
.yd2{bottom:584.320000pt;}
.y123{bottom:584.640000pt;}
.yb0{bottom:584.960000pt;}
.y55{bottom:586.240000pt;}
.y19e{bottom:589.120000pt;}
.yfa{bottom:590.080000pt;}
.y85{bottom:592.320000pt;}
.y1a{bottom:592.960000pt;}
.y14c{bottom:599.680000pt;}
.y16c{bottom:600.960000pt;}
.y54{bottom:601.600000pt;}
.yf9{bottom:605.120000pt;}
.y84{bottom:607.680000pt;}
.yaf{bottom:608.320000pt;}
.y19{bottom:609.920000pt;}
.y19d{bottom:613.760000pt;}
.y14b{bottom:615.040000pt;}
.y16b{bottom:616.320000pt;}
.y53{bottom:616.960000pt;}
.yae{bottom:623.680000pt;}
.y19c{bottom:625.920000pt;}
.y18{bottom:626.880000pt;}
.yf8{bottom:628.480000pt;}
.y14a{bottom:630.400000pt;}
.y83{bottom:631.040000pt;}
.y122{bottom:631.360000pt;}
.y52{bottom:632.320000pt;}
.y19b{bottom:638.400000pt;}
.yad{bottom:639.040000pt;}
.y16a{bottom:639.360000pt;}
.y17{bottom:643.520000pt;}
.y149{bottom:645.760000pt;}
.y82{bottom:646.400000pt;}
.y51{bottom:647.680000pt;}
.y19a{bottom:650.560000pt;}
.yf7{bottom:651.840000pt;}
.yac{bottom:654.400000pt;}
.y121{bottom:655.040000pt;}
.y16{bottom:660.480000pt;}
.y81{bottom:661.760000pt;}
.y199{bottom:662.720000pt;}
.y50{bottom:663.040000pt;}
.y148{bottom:668.800000pt;}
.yab{bottom:669.760000pt;}
.y120{bottom:670.080000pt;}
.y198{bottom:675.200000pt;}
.yf6{bottom:675.520000pt;}
.y80{bottom:676.800000pt;}
.y15{bottom:677.440000pt;}
.yd1{bottom:677.760000pt;}
.y169{bottom:678.080000pt;}
.y4f{bottom:678.400000pt;}
.y147{bottom:684.160000pt;}
.y11f{bottom:685.440000pt;}
.y197{bottom:687.360000pt;}
.yf5{bottom:690.560000pt;}
.y7f{bottom:692.160000pt;}
.yaa{bottom:692.800000pt;}
.y168{bottom:693.440000pt;}
.y4e{bottom:693.760000pt;}
.y14{bottom:694.400000pt;}
.y146{bottom:699.520000pt;}
.y11e{bottom:700.800000pt;}
.ya9{bottom:708.160000pt;}
.y4d{bottom:708.800000pt;}
.y13{bottom:711.040000pt;}
.y196{bottom:712.000000pt;}
.yf4{bottom:714.240000pt;}
.y7e{bottom:715.520000pt;}
.y11d{bottom:716.160000pt;}
.y167{bottom:716.800000pt;}
.y145{bottom:722.880000pt;}
.ya8{bottom:723.520000pt;}
.y4c{bottom:724.160000pt;}
.y12{bottom:728.000000pt;}
.y7d{bottom:730.880000pt;}
.y166{bottom:732.160000pt;}
.y195{bottom:736.320000pt;}
.yf3{bottom:737.280000pt;}
.y144{bottom:738.240000pt;}
.y11c{bottom:739.520000pt;}
.y11{bottom:744.000000pt;}
.y7c{bottom:746.240000pt;}
.ya7{bottom:746.880000pt;}
.y4b{bottom:747.520000pt;}
.y194{bottom:748.800000pt;}
.y143{bottom:753.600000pt;}
.y11b{bottom:754.880000pt;}
.y10{bottom:759.040000pt;}
.yf2{bottom:760.960000pt;}
.y7b{bottom:761.600000pt;}
.ya6{bottom:762.240000pt;}
.y4a{bottom:762.880000pt;}
.y142{bottom:768.960000pt;}
.y11a{bottom:770.240000pt;}
.y193{bottom:773.120000pt;}
.yf{bottom:775.680000pt;}
.yf1{bottom:776.320000pt;}
.ya5{bottom:777.600000pt;}
.y49{bottom:778.240000pt;}
.y141{bottom:784.320000pt;}
.y7a{bottom:784.960000pt;}
.y119{bottom:785.600000pt;}
.ye{bottom:792.640000pt;}
.yd0{bottom:792.960000pt;}
.y48{bottom:793.600000pt;}
.y192{bottom:797.760000pt;}
.yf0{bottom:799.680000pt;}
.y79{bottom:800.320000pt;}
.ya4{bottom:800.960000pt;}
.ycf{bottom:808.320000pt;}
.y47{bottom:808.960000pt;}
.yd{bottom:809.600000pt;}
.y191{bottom:809.920000pt;}
.yef{bottom:815.040000pt;}
.y78{bottom:815.680000pt;}
.ya3{bottom:816.320000pt;}
.y190{bottom:822.400000pt;}
.y140{bottom:823.040000pt;}
.yce{bottom:823.680000pt;}
.y46{bottom:824.320000pt;}
.yc{bottom:826.240000pt;}
.ya2{bottom:831.680000pt;}
.y18f{bottom:834.560000pt;}
.yee{bottom:838.400000pt;}
.y77{bottom:839.040000pt;}
.y45{bottom:839.680000pt;}
.yb{bottom:843.200000pt;}
.y18e{bottom:846.720000pt;}
.ya1{bottom:847.040000pt;}
.y13f{bottom:853.440000pt;}
.y76{bottom:854.400000pt;}
.y118{bottom:854.720000pt;}
.y44{bottom:855.040000pt;}
.y18d{bottom:859.200000pt;}
.ya{bottom:860.160000pt;}
.yed{bottom:861.440000pt;}
.ya0{bottom:862.400000pt;}
.y13e{bottom:868.800000pt;}
.ycd{bottom:869.440000pt;}
.y117{bottom:870.080000pt;}
.y43{bottom:870.400000pt;}
.y18c{bottom:871.360000pt;}
.yec{bottom:876.800000pt;}
.y9{bottom:877.120000pt;}
.y75{bottom:877.440000pt;}
.y18b{bottom:883.520000pt;}
.y116{bottom:885.120000pt;}
.y42{bottom:885.440000pt;}
.y13d{bottom:892.160000pt;}
.ycc{bottom:892.480000pt;}
.y74{bottom:892.800000pt;}
.y8{bottom:893.760000pt;}
.y18a{bottom:895.680000pt;}
.yeb{bottom:900.160000pt;}
.y165{bottom:900.480000pt;}
.y41{bottom:900.800000pt;}
.y13c{bottom:907.520000pt;}
.y73{bottom:908.160000pt;}
.y115{bottom:908.800000pt;}
.y7{bottom:910.720000pt;}
.yea{bottom:915.520000pt;}
.y40{bottom:916.160000pt;}
.y189{bottom:920.320000pt;}
.y13b{bottom:922.880000pt;}
.y114{bottom:924.160000pt;}
.y6{bottom:927.360000pt;}
.y3f{bottom:931.520000pt;}
.y188{bottom:932.480000pt;}
.ye9{bottom:938.880000pt;}
.y113{bottom:939.520000pt;}
.y187{bottom:944.960000pt;}
.y5{bottom:945.920000pt;}
.y13a{bottom:946.240000pt;}
.y3e{bottom:946.880000pt;}
.y112{bottom:954.880000pt;}
.y186{bottom:957.120000pt;}
.y3d{bottom:962.240000pt;}
.y4{bottom:964.160000pt;}
.y139{bottom:969.280000pt;}
.y9f{bottom:970.240000pt;}
.y3c{bottom:977.600000pt;}
.y185{bottom:981.760000pt;}
.y3{bottom:982.720000pt;}
.y72{bottom:985.600000pt;}
.ye8{bottom:992.960000pt;}
.y184{bottom:993.920000pt;}
.y3b{bottom:1000.640000pt;}
.y2{bottom:1000.960000pt;}
.y183{bottom:1006.080000pt;}
.y3a{bottom:1016.000000pt;}
.y1{bottom:1016.320000pt;}
.y182{bottom:1018.560000pt;}
.h6{height:18.240000pt;}
.h9{height:29.328750pt;}
.h4{height:32.418395pt;}
.h8{height:37.063125pt;}
.h1{height:47.171250pt;}
.h7{height:47.748750pt;}
.h3{height:51.663282pt;}
.h5{height:56.156250pt;}
.h2{height:56.843750pt;}
.h0{height:1122.666667pt;}
.w1{width:0.640000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.279867pt;}
.xe{left:132.160000pt;}
.xb{left:137.280000pt;}
.xc{left:161.280000pt;}
.x7{left:332.800000pt;}
.x5{left:351.680000pt;}
.x3{left:386.880000pt;}
.xa{left:410.240000pt;}
.xd{left:414.400000pt;}
.x2{left:440.960000pt;}
.x6{left:509.760000pt;}
.x8{left:559.040000pt;}
.x4{left:562.560000pt;}
.x9{left:699.200000pt;}
}




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