
    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_100f8868729ffbce99e4e99a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_5f11df48128241d4c772f6b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_98fe08c7e6759148fa953ff3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_8215c5f8b6dde28cec420a10.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ddca69345fc049436fa4f677.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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;}
.ls12{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:11.466720px;}
.ls7{letter-spacing:33.042720px;}
.ls9{letter-spacing:36.642720px;}
.ls10{letter-spacing:41.682720px;}
.lsf{letter-spacing:64.002720px;}
.lse{letter-spacing:64.026720px;}
.ls6{letter-spacing:201.036000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.238800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.328000px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-6.998400px;}
._19{margin-left:-5.512080px;}
._7{margin-left:-3.712800px;}
._8{margin-left:-2.547600px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._b{width:3.201120px;}
._2{width:4.245600px;}
._e{width:5.968320px;}
._10{width:7.111440px;}
._a{width:8.119680px;}
._9{width:9.262800px;}
._c{width:10.510080px;}
._d{width:11.892240px;}
._f{width:13.386240px;}
._16{width:16.254720px;}
._6{width:17.569440px;}
._11{width:19.175280px;}
._12{width:20.221440px;}
._17{width:21.782160px;}
._18{width:23.664960px;}
._20{width:25.984800px;}
._14{width:27.302640px;}
._15{width:28.326240px;}
._22{width:31.142640px;}
._25{width:32.800560px;}
._24{width:34.300080px;}
._21{width:36.804480px;}
._5{width:85.656000px;}
._28{width:87.600480px;}
._27{width:88.650000px;}
._1c{width:97.162080px;}
._1b{width:99.440640px;}
._1f{width:119.221200px;}
._1d{width:120.356640px;}
._1e{width:121.810080px;}
._26{width:122.978400px;}
._23{width:176.344080px;}
._13{width:201.036000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:3.240000px;}
.y84{bottom:20.340000px;}
.y7a{bottom:20.520000px;}
.yb{bottom:36.720000px;}
.y79{bottom:37.620000px;}
.y7d{bottom:37.800000px;}
.y86{bottom:37.830000px;}
.ya{bottom:55.260000px;}
.y9{bottom:70.776000px;}
.y77{bottom:119.556000px;}
.y111{bottom:121.176000px;}
.y40{bottom:126.216000px;}
.yba{bottom:126.396000px;}
.y9d{bottom:127.836000px;}
.y147{bottom:135.756000px;}
.y76{bottom:136.836000px;}
.y110{bottom:138.456000px;}
.y3f{bottom:143.496000px;}
.yb9{bottom:143.676000px;}
.y9c{bottom:145.116000px;}
.y146{bottom:153.030000px;}
.y75{bottom:154.110000px;}
.y10f{bottom:156.630000px;}
.y3e{bottom:160.590000px;}
.yb8{bottom:160.950000px;}
.y9b{bottom:162.390000px;}
.y145{bottom:170.310000px;}
.y74{bottom:171.390000px;}
.y10e{bottom:174.990000px;}
.y3d{bottom:177.870000px;}
.yb7{bottom:178.950000px;}
.y9a{bottom:179.490000px;}
.y144{bottom:187.410000px;}
.y73{bottom:188.490000px;}
.y10d{bottom:192.270000px;}
.y3c{bottom:195.150000px;}
.y99{bottom:196.770000px;}
.yb6{bottom:199.650000px;}
.ycf{bottom:203.430000px;}
.y143{bottom:204.690000px;}
.y72{bottom:205.770000px;}
.y10c{bottom:210.630000px;}
.y3b{bottom:212.430000px;}
.y98{bottom:214.050000px;}
.yb5{bottom:220.350000px;}
.yce{bottom:220.710000px;}
.y142{bottom:221.970000px;}
.y71{bottom:223.050000px;}
.y10b{bottom:227.910000px;}
.y3a{bottom:229.710000px;}
.y97{bottom:231.330000px;}
.ycd{bottom:237.990000px;}
.y141{bottom:239.250000px;}
.y70{bottom:240.330000px;}
.y10a{bottom:246.090000px;}
.y39{bottom:246.990000px;}
.y96{bottom:248.610000px;}
.yb4{bottom:254.370000px;}
.ycc{bottom:255.270000px;}
.y140{bottom:256.530000px;}
.y6f{bottom:257.610000px;}
.y38{bottom:264.090000px;}
.y109{bottom:264.450000px;}
.y95{bottom:265.890000px;}
.yb3{bottom:271.650000px;}
.ycb{bottom:272.550000px;}
.y13f{bottom:273.810000px;}
.y6e{bottom:274.890000px;}
.y37{bottom:281.370000px;}
.y108{bottom:282.810000px;}
.y94{bottom:282.990000px;}
.yb2{bottom:288.930000px;}
.yca{bottom:289.830000px;}
.y13e{bottom:290.910000px;}
.y6d{bottom:291.990000px;}
.y36{bottom:298.650000px;}
.y107{bottom:300.090000px;}
.y93{bottom:300.270000px;}
.yb1{bottom:306.030000px;}
.yc9{bottom:306.930000px;}
.y13d{bottom:308.190000px;}
.y6c{bottom:309.270000px;}
.y35{bottom:315.930000px;}
.y92{bottom:317.550000px;}
.y106{bottom:318.450000px;}
.yb0{bottom:323.310000px;}
.yc8{bottom:324.210000px;}
.y13c{bottom:325.470000px;}
.y6b{bottom:326.550000px;}
.y34{bottom:333.210000px;}
.y91{bottom:334.830000px;}
.y105{bottom:335.730000px;}
.yaf{bottom:340.635000px;}
.yc7{bottom:341.535000px;}
.y13b{bottom:342.795000px;}
.y6a{bottom:343.875000px;}
.y33{bottom:350.355000px;}
.y90{bottom:352.155000px;}
.y104{bottom:353.955000px;}
.yae{bottom:357.915000px;}
.yc6{bottom:358.815000px;}
.y13a{bottom:360.075000px;}
.y69{bottom:361.155000px;}
.y32{bottom:367.635000px;}
.y8f{bottom:369.255000px;}
.y103{bottom:372.315000px;}
.yad{bottom:375.195000px;}
.yc5{bottom:376.095000px;}
.y139{bottom:377.175000px;}
.y68{bottom:378.255000px;}
.y31{bottom:384.915000px;}
.y8e{bottom:386.535000px;}
.y102{bottom:389.595000px;}
.yac{bottom:392.475000px;}
.yc4{bottom:393.375000px;}
.y138{bottom:394.455000px;}
.y67{bottom:395.535000px;}
.y30{bottom:402.195000px;}
.y8d{bottom:403.815000px;}
.y101{bottom:406.875000px;}
.yab{bottom:407.055000px;}
.yc3{bottom:410.475000px;}
.y137{bottom:411.735000px;}
.y66{bottom:412.815000px;}
.y2f{bottom:419.475000px;}
.y8c{bottom:421.095000px;}
.y100{bottom:424.155000px;}
.yaa{bottom:424.335000px;}
.yc2{bottom:427.755000px;}
.y136{bottom:429.015000px;}
.y65{bottom:430.095000px;}
.y2e{bottom:436.755000px;}
.y8b{bottom:438.375000px;}
.yff{bottom:441.255000px;}
.ya9{bottom:441.615000px;}
.yc1{bottom:445.035000px;}
.y135{bottom:446.295000px;}
.y64{bottom:447.375000px;}
.y2d{bottom:453.855000px;}
.y8a{bottom:455.655000px;}
.yfe{bottom:458.535000px;}
.ya8{bottom:458.715000px;}
.yc0{bottom:462.315000px;}
.y134{bottom:463.575000px;}
.y63{bottom:464.655000px;}
.y2c{bottom:471.135000px;}
.y89{bottom:472.755000px;}
.yfd{bottom:475.815000px;}
.ya7{bottom:475.995000px;}
.ybf{bottom:479.595000px;}
.y133{bottom:480.675000px;}
.y62{bottom:481.755000px;}
.y88{bottom:487.515000px;}
.y2b{bottom:488.415000px;}
.yfc{bottom:493.095000px;}
.ya6{bottom:493.275000px;}
.ybe{bottom:496.875000px;}
.y132{bottom:497.955000px;}
.y61{bottom:499.035000px;}
.y2a{bottom:508.215000px;}
.yfb{bottom:510.375000px;}
.ya5{bottom:510.555000px;}
.ybd{bottom:513.975000px;}
.y131{bottom:515.235000px;}
.y60{bottom:516.315000px;}
.y87{bottom:522.795000px;}
.y29{bottom:525.495000px;}
.yfa{bottom:527.655000px;}
.ya4{bottom:527.835000px;}
.ybc{bottom:531.255000px;}
.y130{bottom:532.515000px;}
.y5f{bottom:533.595000px;}
.y28{bottom:542.775000px;}
.yf9{bottom:544.755000px;}
.ya3{bottom:545.115000px;}
.ybb{bottom:545.295000px;}
.y12f{bottom:549.795000px;}
.y5e{bottom:550.875000px;}
.y27{bottom:560.055000px;}
.yf8{bottom:562.035000px;}
.ya2{bottom:562.215000px;}
.y12e{bottom:567.075000px;}
.y5d{bottom:568.155000px;}
.y85{bottom:575.355000px;}
.y26{bottom:577.335000px;}
.yf7{bottom:579.315000px;}
.ya1{bottom:579.495000px;}
.y12d{bottom:584.175000px;}
.y5c{bottom:585.255000px;}
.y25{bottom:594.615000px;}
.yf6{bottom:596.595000px;}
.ya0{bottom:596.775000px;}
.y12c{bottom:601.455000px;}
.y5b{bottom:602.535000px;}
.y24{bottom:611.745000px;}
.yf5{bottom:613.905000px;}
.y9f{bottom:615.345000px;}
.y12b{bottom:618.765000px;}
.y5a{bottom:619.845000px;}
.ye1{bottom:620.565000px;}
.y83{bottom:627.945000px;}
.y23{bottom:629.025000px;}
.yf4{bottom:631.185000px;}
.y9e{bottom:635.505000px;}
.y12a{bottom:636.045000px;}
.y59{bottom:637.125000px;}
.ye0{bottom:641.265000px;}
.y22{bottom:646.305000px;}
.yf3{bottom:648.285000px;}
.y129{bottom:653.325000px;}
.y58{bottom:654.405000px;}
.ydf{bottom:661.965000px;}
.y82{bottom:663.045000px;}
.y21{bottom:663.585000px;}
.yf2{bottom:665.565000px;}
.y128{bottom:670.605000px;}
.y57{bottom:671.685000px;}
.y20{bottom:680.865000px;}
.yde{bottom:682.665000px;}
.yf1{bottom:682.845000px;}
.y127{bottom:687.705000px;}
.y56{bottom:688.785000px;}
.y1f{bottom:698.145000px;}
.y81{bottom:698.325000px;}
.yf0{bottom:700.125000px;}
.ydd{bottom:703.365000px;}
.y126{bottom:704.985000px;}
.y55{bottom:706.065000px;}
.y1e{bottom:715.245000px;}
.yef{bottom:717.405000px;}
.y125{bottom:722.265000px;}
.y54{bottom:723.345000px;}
.ydc{bottom:724.065000px;}
.y1d{bottom:732.525000px;}
.y80{bottom:733.605000px;}
.yee{bottom:734.505000px;}
.y124{bottom:739.545000px;}
.y53{bottom:740.625000px;}
.ydb{bottom:744.765000px;}
.y1c{bottom:749.805000px;}
.yed{bottom:751.785000px;}
.y123{bottom:756.825000px;}
.y52{bottom:757.905000px;}
.yda{bottom:765.465000px;}
.y1b{bottom:767.085000px;}
.y7f{bottom:768.885000px;}
.yec{bottom:769.065000px;}
.y122{bottom:773.925000px;}
.y51{bottom:775.005000px;}
.y1a{bottom:784.365000px;}
.yd9{bottom:786.165000px;}
.yeb{bottom:786.345000px;}
.y121{bottom:791.205000px;}
.y50{bottom:792.285000px;}
.y19{bottom:801.645000px;}
.yea{bottom:803.625000px;}
.yd8{bottom:806.865000px;}
.y120{bottom:808.485000px;}
.y4f{bottom:809.565000px;}
.y18{bottom:819.825000px;}
.ye9{bottom:820.905000px;}
.y7e{bottom:821.265000px;}
.y11f{bottom:825.765000px;}
.y4e{bottom:826.845000px;}
.ye8{bottom:835.665000px;}
.y17{bottom:837.645000px;}
.y11e{bottom:843.045000px;}
.y4d{bottom:844.125000px;}
.y16{bottom:856.545000px;}
.y11d{bottom:860.325000px;}
.y4c{bottom:861.405000px;}
.yd7{bottom:862.125000px;}
.ye7{bottom:870.810000px;}
.y7c{bottom:873.870000px;}
.y15{bottom:875.670000px;}
.y11c{bottom:877.470000px;}
.y4b{bottom:878.550000px;}
.yd6{bottom:882.870000px;}
.y14{bottom:894.570000px;}
.y11b{bottom:894.750000px;}
.y4a{bottom:895.830000px;}
.yd5{bottom:903.570000px;}
.ye6{bottom:906.090000px;}
.y11a{bottom:912.030000px;}
.y49{bottom:913.110000px;}
.y13{bottom:913.470000px;}
.yd4{bottom:924.270000px;}
.y78{bottom:926.430000px;}
.y119{bottom:929.310000px;}
.y48{bottom:930.390000px;}
.y12{bottom:932.550000px;}
.ye5{bottom:941.370000px;}
.yd3{bottom:944.970000px;}
.y118{bottom:946.590000px;}
.y47{bottom:947.670000px;}
.y11{bottom:951.450000px;}
.y117{bottom:963.870000px;}
.y46{bottom:964.950000px;}
.yd2{bottom:965.670000px;}
.y10{bottom:970.530000px;}
.ye4{bottom:976.650000px;}
.y116{bottom:980.970000px;}
.y45{bottom:982.050000px;}
.yd1{bottom:986.370000px;}
.yf{bottom:989.430000px;}
.y115{bottom:998.250000px;}
.y44{bottom:999.330000px;}
.yd0{bottom:1007.070000px;}
.ye{bottom:1008.510000px;}
.ye3{bottom:1011.930000px;}
.y114{bottom:1015.530000px;}
.y43{bottom:1016.610000px;}
.yd{bottom:1027.770000px;}
.y113{bottom:1032.810000px;}
.y42{bottom:1033.890000px;}
.ye2{bottom:1047.030000px;}
.yc{bottom:1048.290000px;}
.y112{bottom:1050.090000px;}
.y41{bottom:1051.170000px;}
.y8{bottom:1069.530000px;}
.y7{bottom:1088.250000px;}
.y6{bottom:1104.090000px;}
.y5{bottom:1121.910000px;}
.y4{bottom:1138.680000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h13{height:17.280000px;}
.hd{height:34.380000px;}
.hc{height:34.560000px;}
.h6{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h10{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h11{height:47.980898px;}
.hf{height:48.496641px;}
.h14{height:49.255313px;}
.h12{height:50.273438px;}
.h4{height:50.800781px;}
.h9{height:51.660000px;}
.he{height:51.696000px;}
.ha{height:51.840000px;}
.hb{height:51.876000px;}
.h7{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:99.576000px;}
.w5{width:106.740000px;}
.w8{width:107.460000px;}
.w4{width:111.276000px;}
.w3{width:119.340000px;}
.w6{width:127.476000px;}
.wa{width:141.516000px;}
.w9{width:155.880000px;}
.wb{width:167.790000px;}
.wc{width:207.930000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:8.460000px;}
.x2e{left:9.540000px;}
.x54{left:10.620000px;}
.x15{left:12.060000px;}
.x1e{left:13.860000px;}
.x21{left:15.660000px;}
.x1a{left:16.740000px;}
.x26{left:18.180000px;}
.x17{left:19.260000px;}
.x27{left:21.240000px;}
.x52{left:22.680000px;}
.x23{left:24.300000px;}
.x18{left:26.820000px;}
.x2f{left:29.700000px;}
.x20{left:31.140000px;}
.x30{left:32.400000px;}
.x22{left:34.920000px;}
.x25{left:36.000000px;}
.x28{left:38.340000px;}
.x24{left:39.600000px;}
.x2c{left:40.680000px;}
.x2d{left:41.940000px;}
.x2a{left:44.460000px;}
.x2b{left:46.440000px;}
.x53{left:49.680000px;}
.x4f{left:51.840000px;}
.x49{left:53.274000px;}
.x29{left:54.570000px;}
.x4c{left:58.140000px;}
.x4d{left:60.510000px;}
.x4e{left:62.100000px;}
.x50{left:72.000000px;}
.x55{left:77.400000px;}
.x51{left:81.045000px;}
.x1{left:108.035987px;}
.x43{left:115.415987px;}
.xb{left:120.815987px;}
.x2{left:123.155987px;}
.x37{left:127.295987px;}
.x39{left:133.235987px;}
.x34{left:135.035987px;}
.x10{left:153.029987px;}
.x4{left:157.169987px;}
.x13{left:162.029987px;}
.x8{left:163.109987px;}
.x7{left:190.469987px;}
.x31{left:197.489987px;}
.x41{left:206.309987px;}
.x3e{left:208.289987px;}
.x35{left:216.029987px;}
.x56{left:224.489987px;}
.x3a{left:227.189987px;}
.x16{left:228.810000px;}
.xc{left:236.729987px;}
.x42{left:237.989987px;}
.xd{left:260.129987px;}
.x38{left:261.209987px;}
.x4a{left:265.350000px;}
.x48{left:271.829987px;}
.x47{left:297.074987px;}
.xf{left:312.374987px;}
.x46{left:324.254987px;}
.x11{left:339.014987px;}
.x19{left:340.815000px;}
.x40{left:346.394987px;}
.x45{left:353.954987px;}
.x57{left:362.414987px;}
.x14{left:363.854987px;}
.xe{left:366.554987px;}
.xa{left:368.354987px;}
.x33{left:376.274987px;}
.x32{left:384.554987px;}
.x12{left:386.534987px;}
.x6{left:396.434987px;}
.x4b{left:407.775000px;}
.x5{left:412.274987px;}
.x3d{left:416.234987px;}
.x9{left:446.474987px;}
.x1b{left:448.275000px;}
.x44{left:473.504987px;}
.x3{left:518.504987px;}
.x1d{left:576.465000px;}
.x1f{left:676.950000px;}
.x36{left:707.189987px;}
.x3f{left:774.329987px;}
.x3b{left:776.129987px;}
.x3c{left:780.629987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:10.192640pt;}
.ls7{letter-spacing:29.371307pt;}
.ls9{letter-spacing:32.571307pt;}
.ls10{letter-spacing:37.051307pt;}
.lsf{letter-spacing:56.891307pt;}
.lse{letter-spacing:56.912640pt;}
.ls6{letter-spacing:178.698667pt;}
.ws9{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.545600pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.736000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-6.220800pt;}
._19{margin-left:-4.899627pt;}
._7{margin-left:-3.300267pt;}
._8{margin-left:-2.264533pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._b{width:2.845440pt;}
._2{width:3.773867pt;}
._e{width:5.305173pt;}
._10{width:6.321280pt;}
._a{width:7.217493pt;}
._9{width:8.233600pt;}
._c{width:9.342293pt;}
._d{width:10.570880pt;}
._f{width:11.898880pt;}
._16{width:14.448640pt;}
._6{width:15.617280pt;}
._11{width:17.044693pt;}
._12{width:17.974613pt;}
._17{width:19.361920pt;}
._18{width:21.035520pt;}
._20{width:23.097600pt;}
._14{width:24.269013pt;}
._15{width:25.178880pt;}
._22{width:27.682347pt;}
._25{width:29.156053pt;}
._24{width:30.488960pt;}
._21{width:32.715093pt;}
._5{width:76.138667pt;}
._28{width:77.867093pt;}
._27{width:78.800000pt;}
._1c{width:86.366293pt;}
._1b{width:88.391680pt;}
._1f{width:105.974400pt;}
._1d{width:106.983680pt;}
._1e{width:108.275627pt;}
._26{width:109.314133pt;}
._23{width:156.750293pt;}
._13{width:178.698667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.880000pt;}
.y84{bottom:18.080000pt;}
.y7a{bottom:18.240000pt;}
.yb{bottom:32.640000pt;}
.y79{bottom:33.440000pt;}
.y7d{bottom:33.600000pt;}
.y86{bottom:33.626667pt;}
.ya{bottom:49.120000pt;}
.y9{bottom:62.912000pt;}
.y77{bottom:106.272000pt;}
.y111{bottom:107.712000pt;}
.y40{bottom:112.192000pt;}
.yba{bottom:112.352000pt;}
.y9d{bottom:113.632000pt;}
.y147{bottom:120.672000pt;}
.y76{bottom:121.632000pt;}
.y110{bottom:123.072000pt;}
.y3f{bottom:127.552000pt;}
.yb9{bottom:127.712000pt;}
.y9c{bottom:128.992000pt;}
.y146{bottom:136.026667pt;}
.y75{bottom:136.986667pt;}
.y10f{bottom:139.226667pt;}
.y3e{bottom:142.746667pt;}
.yb8{bottom:143.066667pt;}
.y9b{bottom:144.346667pt;}
.y145{bottom:151.386667pt;}
.y74{bottom:152.346667pt;}
.y10e{bottom:155.546667pt;}
.y3d{bottom:158.106667pt;}
.yb7{bottom:159.066667pt;}
.y9a{bottom:159.546667pt;}
.y144{bottom:166.586667pt;}
.y73{bottom:167.546667pt;}
.y10d{bottom:170.906667pt;}
.y3c{bottom:173.466667pt;}
.y99{bottom:174.906667pt;}
.yb6{bottom:177.466667pt;}
.ycf{bottom:180.826667pt;}
.y143{bottom:181.946667pt;}
.y72{bottom:182.906667pt;}
.y10c{bottom:187.226667pt;}
.y3b{bottom:188.826667pt;}
.y98{bottom:190.266667pt;}
.yb5{bottom:195.866667pt;}
.yce{bottom:196.186667pt;}
.y142{bottom:197.306667pt;}
.y71{bottom:198.266667pt;}
.y10b{bottom:202.586667pt;}
.y3a{bottom:204.186667pt;}
.y97{bottom:205.626667pt;}
.ycd{bottom:211.546667pt;}
.y141{bottom:212.666667pt;}
.y70{bottom:213.626667pt;}
.y10a{bottom:218.746667pt;}
.y39{bottom:219.546667pt;}
.y96{bottom:220.986667pt;}
.yb4{bottom:226.106667pt;}
.ycc{bottom:226.906667pt;}
.y140{bottom:228.026667pt;}
.y6f{bottom:228.986667pt;}
.y38{bottom:234.746667pt;}
.y109{bottom:235.066667pt;}
.y95{bottom:236.346667pt;}
.yb3{bottom:241.466667pt;}
.ycb{bottom:242.266667pt;}
.y13f{bottom:243.386667pt;}
.y6e{bottom:244.346667pt;}
.y37{bottom:250.106667pt;}
.y108{bottom:251.386667pt;}
.y94{bottom:251.546667pt;}
.yb2{bottom:256.826667pt;}
.yca{bottom:257.626667pt;}
.y13e{bottom:258.586667pt;}
.y6d{bottom:259.546667pt;}
.y36{bottom:265.466667pt;}
.y107{bottom:266.746667pt;}
.y93{bottom:266.906667pt;}
.yb1{bottom:272.026667pt;}
.yc9{bottom:272.826667pt;}
.y13d{bottom:273.946667pt;}
.y6c{bottom:274.906667pt;}
.y35{bottom:280.826667pt;}
.y92{bottom:282.266667pt;}
.y106{bottom:283.066667pt;}
.yb0{bottom:287.386667pt;}
.yc8{bottom:288.186667pt;}
.y13c{bottom:289.306667pt;}
.y6b{bottom:290.266667pt;}
.y34{bottom:296.186667pt;}
.y91{bottom:297.626667pt;}
.y105{bottom:298.426667pt;}
.yaf{bottom:302.786667pt;}
.yc7{bottom:303.586667pt;}
.y13b{bottom:304.706667pt;}
.y6a{bottom:305.666667pt;}
.y33{bottom:311.426667pt;}
.y90{bottom:313.026667pt;}
.y104{bottom:314.626667pt;}
.yae{bottom:318.146667pt;}
.yc6{bottom:318.946667pt;}
.y13a{bottom:320.066667pt;}
.y69{bottom:321.026667pt;}
.y32{bottom:326.786667pt;}
.y8f{bottom:328.226667pt;}
.y103{bottom:330.946667pt;}
.yad{bottom:333.506667pt;}
.yc5{bottom:334.306667pt;}
.y139{bottom:335.266667pt;}
.y68{bottom:336.226667pt;}
.y31{bottom:342.146667pt;}
.y8e{bottom:343.586667pt;}
.y102{bottom:346.306667pt;}
.yac{bottom:348.866667pt;}
.yc4{bottom:349.666667pt;}
.y138{bottom:350.626667pt;}
.y67{bottom:351.586667pt;}
.y30{bottom:357.506667pt;}
.y8d{bottom:358.946667pt;}
.y101{bottom:361.666667pt;}
.yab{bottom:361.826667pt;}
.yc3{bottom:364.866667pt;}
.y137{bottom:365.986667pt;}
.y66{bottom:366.946667pt;}
.y2f{bottom:372.866667pt;}
.y8c{bottom:374.306667pt;}
.y100{bottom:377.026667pt;}
.yaa{bottom:377.186667pt;}
.yc2{bottom:380.226667pt;}
.y136{bottom:381.346667pt;}
.y65{bottom:382.306667pt;}
.y2e{bottom:388.226667pt;}
.y8b{bottom:389.666667pt;}
.yff{bottom:392.226667pt;}
.ya9{bottom:392.546667pt;}
.yc1{bottom:395.586667pt;}
.y135{bottom:396.706667pt;}
.y64{bottom:397.666667pt;}
.y2d{bottom:403.426667pt;}
.y8a{bottom:405.026667pt;}
.yfe{bottom:407.586667pt;}
.ya8{bottom:407.746667pt;}
.yc0{bottom:410.946667pt;}
.y134{bottom:412.066667pt;}
.y63{bottom:413.026667pt;}
.y2c{bottom:418.786667pt;}
.y89{bottom:420.226667pt;}
.yfd{bottom:422.946667pt;}
.ya7{bottom:423.106667pt;}
.ybf{bottom:426.306667pt;}
.y133{bottom:427.266667pt;}
.y62{bottom:428.226667pt;}
.y88{bottom:433.346667pt;}
.y2b{bottom:434.146667pt;}
.yfc{bottom:438.306667pt;}
.ya6{bottom:438.466667pt;}
.ybe{bottom:441.666667pt;}
.y132{bottom:442.626667pt;}
.y61{bottom:443.586667pt;}
.y2a{bottom:451.746667pt;}
.yfb{bottom:453.666667pt;}
.ya5{bottom:453.826667pt;}
.ybd{bottom:456.866667pt;}
.y131{bottom:457.986667pt;}
.y60{bottom:458.946667pt;}
.y87{bottom:464.706667pt;}
.y29{bottom:467.106667pt;}
.yfa{bottom:469.026667pt;}
.ya4{bottom:469.186667pt;}
.ybc{bottom:472.226667pt;}
.y130{bottom:473.346667pt;}
.y5f{bottom:474.306667pt;}
.y28{bottom:482.466667pt;}
.yf9{bottom:484.226667pt;}
.ya3{bottom:484.546667pt;}
.ybb{bottom:484.706667pt;}
.y12f{bottom:488.706667pt;}
.y5e{bottom:489.666667pt;}
.y27{bottom:497.826667pt;}
.yf8{bottom:499.586667pt;}
.ya2{bottom:499.746667pt;}
.y12e{bottom:504.066667pt;}
.y5d{bottom:505.026667pt;}
.y85{bottom:511.426667pt;}
.y26{bottom:513.186667pt;}
.yf7{bottom:514.946667pt;}
.ya1{bottom:515.106667pt;}
.y12d{bottom:519.266667pt;}
.y5c{bottom:520.226667pt;}
.y25{bottom:528.546667pt;}
.yf6{bottom:530.306667pt;}
.ya0{bottom:530.466667pt;}
.y12c{bottom:534.626667pt;}
.y5b{bottom:535.586667pt;}
.y24{bottom:543.773333pt;}
.yf5{bottom:545.693333pt;}
.y9f{bottom:546.973333pt;}
.y12b{bottom:550.013333pt;}
.y5a{bottom:550.973333pt;}
.ye1{bottom:551.613333pt;}
.y83{bottom:558.173333pt;}
.y23{bottom:559.133333pt;}
.yf4{bottom:561.053333pt;}
.y9e{bottom:564.893333pt;}
.y12a{bottom:565.373333pt;}
.y59{bottom:566.333333pt;}
.ye0{bottom:570.013333pt;}
.y22{bottom:574.493333pt;}
.yf3{bottom:576.253333pt;}
.y129{bottom:580.733333pt;}
.y58{bottom:581.693333pt;}
.ydf{bottom:588.413333pt;}
.y82{bottom:589.373333pt;}
.y21{bottom:589.853333pt;}
.yf2{bottom:591.613333pt;}
.y128{bottom:596.093333pt;}
.y57{bottom:597.053333pt;}
.y20{bottom:605.213333pt;}
.yde{bottom:606.813333pt;}
.yf1{bottom:606.973333pt;}
.y127{bottom:611.293333pt;}
.y56{bottom:612.253333pt;}
.y1f{bottom:620.573333pt;}
.y81{bottom:620.733333pt;}
.yf0{bottom:622.333333pt;}
.ydd{bottom:625.213333pt;}
.y126{bottom:626.653333pt;}
.y55{bottom:627.613333pt;}
.y1e{bottom:635.773333pt;}
.yef{bottom:637.693333pt;}
.y125{bottom:642.013333pt;}
.y54{bottom:642.973333pt;}
.ydc{bottom:643.613333pt;}
.y1d{bottom:651.133333pt;}
.y80{bottom:652.093333pt;}
.yee{bottom:652.893333pt;}
.y124{bottom:657.373333pt;}
.y53{bottom:658.333333pt;}
.ydb{bottom:662.013333pt;}
.y1c{bottom:666.493333pt;}
.yed{bottom:668.253333pt;}
.y123{bottom:672.733333pt;}
.y52{bottom:673.693333pt;}
.yda{bottom:680.413333pt;}
.y1b{bottom:681.853333pt;}
.y7f{bottom:683.453333pt;}
.yec{bottom:683.613333pt;}
.y122{bottom:687.933333pt;}
.y51{bottom:688.893333pt;}
.y1a{bottom:697.213333pt;}
.yd9{bottom:698.813333pt;}
.yeb{bottom:698.973333pt;}
.y121{bottom:703.293333pt;}
.y50{bottom:704.253333pt;}
.y19{bottom:712.573333pt;}
.yea{bottom:714.333333pt;}
.yd8{bottom:717.213333pt;}
.y120{bottom:718.653333pt;}
.y4f{bottom:719.613333pt;}
.y18{bottom:728.733333pt;}
.ye9{bottom:729.693333pt;}
.y7e{bottom:730.013333pt;}
.y11f{bottom:734.013333pt;}
.y4e{bottom:734.973333pt;}
.ye8{bottom:742.813333pt;}
.y17{bottom:744.573333pt;}
.y11e{bottom:749.373333pt;}
.y4d{bottom:750.333333pt;}
.y16{bottom:761.373333pt;}
.y11d{bottom:764.733333pt;}
.y4c{bottom:765.693333pt;}
.yd7{bottom:766.333333pt;}
.ye7{bottom:774.053333pt;}
.y7c{bottom:776.773333pt;}
.y15{bottom:778.373333pt;}
.y11c{bottom:779.973333pt;}
.y4b{bottom:780.933333pt;}
.yd6{bottom:784.773333pt;}
.y14{bottom:795.173333pt;}
.y11b{bottom:795.333333pt;}
.y4a{bottom:796.293333pt;}
.yd5{bottom:803.173333pt;}
.ye6{bottom:805.413333pt;}
.y11a{bottom:810.693333pt;}
.y49{bottom:811.653333pt;}
.y13{bottom:811.973333pt;}
.yd4{bottom:821.573333pt;}
.y78{bottom:823.493333pt;}
.y119{bottom:826.053333pt;}
.y48{bottom:827.013333pt;}
.y12{bottom:828.933333pt;}
.ye5{bottom:836.773333pt;}
.yd3{bottom:839.973333pt;}
.y118{bottom:841.413333pt;}
.y47{bottom:842.373333pt;}
.y11{bottom:845.733333pt;}
.y117{bottom:856.773333pt;}
.y46{bottom:857.733333pt;}
.yd2{bottom:858.373333pt;}
.y10{bottom:862.693333pt;}
.ye4{bottom:868.133333pt;}
.y116{bottom:871.973333pt;}
.y45{bottom:872.933333pt;}
.yd1{bottom:876.773333pt;}
.yf{bottom:879.493333pt;}
.y115{bottom:887.333333pt;}
.y44{bottom:888.293333pt;}
.yd0{bottom:895.173333pt;}
.ye{bottom:896.453333pt;}
.ye3{bottom:899.493333pt;}
.y114{bottom:902.693333pt;}
.y43{bottom:903.653333pt;}
.yd{bottom:913.573333pt;}
.y113{bottom:918.053333pt;}
.y42{bottom:919.013333pt;}
.ye2{bottom:930.693333pt;}
.yc{bottom:931.813333pt;}
.y112{bottom:933.413333pt;}
.y41{bottom:934.373333pt;}
.y8{bottom:950.693333pt;}
.y7{bottom:967.333333pt;}
.y6{bottom:981.413333pt;}
.y5{bottom:997.253333pt;}
.y4{bottom:1012.160000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h13{height:15.360000pt;}
.hd{height:30.560000pt;}
.hc{height:30.720000pt;}
.h6{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h10{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h11{height:42.649687pt;}
.hf{height:43.108125pt;}
.h14{height:43.782500pt;}
.h12{height:44.687500pt;}
.h4{height:45.156250pt;}
.h9{height:45.920000pt;}
.he{height:45.952000pt;}
.ha{height:46.080000pt;}
.hb{height:46.112000pt;}
.h7{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:88.512000pt;}
.w5{width:94.880000pt;}
.w8{width:95.520000pt;}
.w4{width:98.912000pt;}
.w3{width:106.080000pt;}
.w6{width:113.312000pt;}
.wa{width:125.792000pt;}
.w9{width:138.560000pt;}
.wb{width:149.146667pt;}
.wc{width:184.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:7.520000pt;}
.x2e{left:8.480000pt;}
.x54{left:9.440000pt;}
.x15{left:10.720000pt;}
.x1e{left:12.320000pt;}
.x21{left:13.920000pt;}
.x1a{left:14.880000pt;}
.x26{left:16.160000pt;}
.x17{left:17.120000pt;}
.x27{left:18.880000pt;}
.x52{left:20.160000pt;}
.x23{left:21.600000pt;}
.x18{left:23.840000pt;}
.x2f{left:26.400000pt;}
.x20{left:27.680000pt;}
.x30{left:28.800000pt;}
.x22{left:31.040000pt;}
.x25{left:32.000000pt;}
.x28{left:34.080000pt;}
.x24{left:35.200000pt;}
.x2c{left:36.160000pt;}
.x2d{left:37.280000pt;}
.x2a{left:39.520000pt;}
.x2b{left:41.280000pt;}
.x53{left:44.160000pt;}
.x4f{left:46.080000pt;}
.x49{left:47.354667pt;}
.x29{left:48.506667pt;}
.x4c{left:51.680000pt;}
.x4d{left:53.786667pt;}
.x4e{left:55.200000pt;}
.x50{left:64.000000pt;}
.x55{left:68.800000pt;}
.x51{left:72.040000pt;}
.x1{left:96.031988pt;}
.x43{left:102.591988pt;}
.xb{left:107.391988pt;}
.x2{left:109.471988pt;}
.x37{left:113.151988pt;}
.x39{left:118.431988pt;}
.x34{left:120.031988pt;}
.x10{left:136.026655pt;}
.x4{left:139.706655pt;}
.x13{left:144.026655pt;}
.x8{left:144.986655pt;}
.x7{left:169.306655pt;}
.x31{left:175.546655pt;}
.x41{left:183.386655pt;}
.x3e{left:185.146655pt;}
.x35{left:192.026655pt;}
.x56{left:199.546655pt;}
.x3a{left:201.946655pt;}
.x16{left:203.386667pt;}
.xc{left:210.426655pt;}
.x42{left:211.546655pt;}
.xd{left:231.226655pt;}
.x38{left:232.186655pt;}
.x4a{left:235.866667pt;}
.x48{left:241.626655pt;}
.x47{left:264.066655pt;}
.xf{left:277.666655pt;}
.x46{left:288.226655pt;}
.x11{left:301.346655pt;}
.x19{left:302.946667pt;}
.x40{left:307.906655pt;}
.x45{left:314.626655pt;}
.x57{left:322.146655pt;}
.x14{left:323.426655pt;}
.xe{left:325.826655pt;}
.xa{left:327.426655pt;}
.x33{left:334.466655pt;}
.x32{left:341.826655pt;}
.x12{left:343.586655pt;}
.x6{left:352.386655pt;}
.x4b{left:362.466667pt;}
.x5{left:366.466655pt;}
.x3d{left:369.986655pt;}
.x9{left:396.866655pt;}
.x1b{left:398.466667pt;}
.x44{left:420.893322pt;}
.x3{left:460.893322pt;}
.x1d{left:512.413333pt;}
.x1f{left:601.733333pt;}
.x36{left:628.613322pt;}
.x3f{left:688.293322pt;}
.x3b{left:689.893322pt;}
.x3c{left:693.893322pt;}
}




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