
    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_78f8f1c03937925e368270b8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_19c4fba023bbb50960c8b740.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1c5a9b81758d3707c696e7fc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_cd06ff9fa778f3384dc2b4fd.woff')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_47dd24fe458bbea20fa69fcd.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8e5781f7d7b59115de2bf6a7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2cf911d20db2d0107084172a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4b8f3ba73581e2dd22003021.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d78f07fec28b8650f952ec12.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1356953116689bde2b3a5334.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-76.320000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls9{letter-spacing:-1.008000px;}
.ls7{letter-spacing:-0.792000px;}
.lsa{letter-spacing:-0.612000px;}
.lsb{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.017280px;}
.lsd{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.018000px;}
.lse{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.256200px;}
.ls8{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:1.049760px;}
.ls14{letter-spacing:25.308000px;}
.ls13{letter-spacing:52.668000px;}
.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;}
}
.ws6{word-spacing:-19.457280px;}
.ws9{word-spacing:-19.440000px;}
.ws2{word-spacing:-17.208000px;}
.ws5{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws1{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.940000px;}
.wsd{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.374000px;}
.wsc{word-spacing:-13.284000px;}
.ws4{word-spacing:-10.440000px;}
.ws8{word-spacing:0.000000px;}
._c{margin-left:-10.673280px;}
._0{margin-left:-1.026000px;}
._1{width:1.146000px;}
._4{width:2.172960px;}
._3{width:3.645360px;}
._b{width:4.761600px;}
._5{width:5.772000px;}
._7{width:6.861840px;}
._6{width:7.888320px;}
._9{width:8.942880px;}
._f{width:10.006800px;}
._8{width:11.888880px;}
._a{width:13.754880px;}
._d{width:15.660000px;}
._e{width:16.686000px;}
._16{width:18.048000px;}
._15{width:19.428000px;}
._11{width:20.628000px;}
._12{width:21.750000px;}
._19{width:23.004000px;}
._13{width:24.300000px;}
._10{width:25.380000px;}
._17{width:26.568000px;}
._18{width:27.738000px;}
._1e{width:28.908000px;}
._1b{width:29.916000px;}
._14{width:32.022000px;}
._1a{width:33.696000px;}
._1f{width:35.424000px;}
._1c{width:37.854000px;}
._1d{width:38.934000px;}
._23{width:42.822000px;}
._20{width:44.012160px;}
._22{width:57.640560px;}
._21{width:67.573440px;}
._24{width:161.752320px;}
._2{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.y44{bottom:35.100000px;}
.y5{bottom:39.780000px;}
.y43{bottom:54.900000px;}
.y1{bottom:60.660000px;}
.y42{bottom:74.880000px;}
.y41{bottom:94.680000px;}
.yb8{bottom:102.240000px;}
.y2f{bottom:104.400000px;}
.y175{bottom:108.180000px;}
.y110{bottom:109.080000px;}
.y40{bottom:114.510000px;}
.y30{bottom:115.020000px;}
.yd9{bottom:117.000000px;}
.y140{bottom:118.800000px;}
.yb7{bottom:120.060000px;}
.y2e{bottom:122.220000px;}
.y174{bottom:123.660000px;}
.y7f{bottom:126.000000px;}
.y10f{bottom:126.900000px;}
.y45{bottom:130.140000px;}
.y3f{bottom:134.310000px;}
.yd8{bottom:134.820000px;}
.y13f{bottom:136.800000px;}
.yb6{bottom:137.880000px;}
.y173{bottom:139.320000px;}
.y2d{bottom:140.220000px;}
.y7e{bottom:143.820000px;}
.y10e{bottom:144.720000px;}
.yd7{bottom:152.640000px;}
.y3e{bottom:154.110000px;}
.y172{bottom:154.800000px;}
.yb5{bottom:155.700000px;}
.y13e{bottom:156.600000px;}
.y2c{bottom:158.040000px;}
.y7d{bottom:161.640000px;}
.y10d{bottom:162.540000px;}
.yd6{bottom:170.460000px;}
.y3d{bottom:174.090000px;}
.y2b{bottom:175.860000px;}
.y7c{bottom:179.460000px;}
.yb4{bottom:180.360000px;}
.y171{bottom:181.620000px;}
.y13d{bottom:182.340000px;}
.yd5{bottom:188.280000px;}
.y2a{bottom:193.680000px;}
.y3c{bottom:193.890000px;}
.yb3{bottom:195.840000px;}
.y7b{bottom:197.280000px;}
.y170{bottom:199.440000px;}
.yd4{bottom:206.310000px;}
.y10c{bottom:207.210000px;}
.y13c{bottom:208.110000px;}
.yb2{bottom:211.350000px;}
.y29{bottom:211.530000px;}
.y3b{bottom:213.690000px;}
.y16f{bottom:217.290000px;}
.yd3{bottom:224.130000px;}
.y7a{bottom:224.310000px;}
.y10b{bottom:225.210000px;}
.yb1{bottom:226.830000px;}
.y28{bottom:229.350000px;}
.y3a{bottom:233.490000px;}
.y16e{bottom:235.290000px;}
.y13b{bottom:241.050000px;}
.y79{bottom:242.130000px;}
.yb0{bottom:242.310000px;}
.y10a{bottom:243.030000px;}
.y27{bottom:247.350000px;}
.yd2{bottom:250.950000px;}
.y16d{bottom:253.110000px;}
.y39{bottom:253.290000px;}
.yaf{bottom:257.970000px;}
.y13a{bottom:258.870000px;}
.y78{bottom:259.950000px;}
.y109{bottom:260.850000px;}
.y26{bottom:265.170000px;}
.yd1{bottom:268.770000px;}
.y16c{bottom:270.930000px;}
.y38{bottom:273.270000px;}
.yae{bottom:273.450000px;}
.y139{bottom:276.690000px;}
.y77{bottom:277.770000px;}
.y108{bottom:278.670000px;}
.y25{bottom:282.990000px;}
.yd0{bottom:286.590000px;}
.y16b{bottom:288.750000px;}
.yad{bottom:288.930000px;}
.y37{bottom:293.070000px;}
.y138{bottom:294.510000px;}
.y76{bottom:295.590000px;}
.y107{bottom:296.490000px;}
.y24{bottom:300.810000px;}
.yac{bottom:304.410000px;}
.y16a{bottom:306.570000px;}
.y137{bottom:312.330000px;}
.y36{bottom:312.870000px;}
.y75{bottom:313.410000px;}
.y106{bottom:314.490000px;}
.y23{bottom:318.630000px;}
.ycf{bottom:322.410000px;}
.y169{bottom:324.390000px;}
.y136{bottom:330.150000px;}
.y74{bottom:331.410000px;}
.y105{bottom:332.310000px;}
.y35{bottom:332.715000px;}
.yce{bottom:340.230000px;}
.y168{bottom:342.390000px;}
.y22{bottom:345.630000px;}
.y135{bottom:348.150000px;}
.y73{bottom:349.230000px;}
.y104{bottom:350.130000px;}
.y34{bottom:352.515000px;}
.ycd{bottom:358.050000px;}
.y167{bottom:360.210000px;}
.y134{bottom:365.970000px;}
.yab{bottom:367.050000px;}
.y103{bottom:367.950000px;}
.y21{bottom:372.450000px;}
.y33{bottom:372.495000px;}
.ycc{bottom:375.870000px;}
.y72{bottom:376.050000px;}
.y166{bottom:378.030000px;}
.y133{bottom:383.790000px;}
.yaa{bottom:384.870000px;}
.y102{bottom:385.770000px;}
.y32{bottom:392.295000px;}
.ycb{bottom:393.690000px;}
.y71{bottom:393.870000px;}
.y165{bottom:395.850000px;}
.y20{bottom:399.270000px;}
.y132{bottom:401.610000px;}
.ya9{bottom:402.690000px;}
.y70{bottom:411.690000px;}
.y101{bottom:412.590000px;}
.y164{bottom:413.670000px;}
.ya8{bottom:420.690000px;}
.y31{bottom:422.535000px;}
.y1f{bottom:426.090000px;}
.yca{bottom:429.510000px;}
.y6f{bottom:429.690000px;}
.y100{bottom:430.590000px;}
.ya7{bottom:438.510000px;}
.y163{bottom:440.715000px;}
.y131{bottom:441.795000px;}
.y6e{bottom:447.555000px;}
.yff{bottom:448.455000px;}
.ya6{bottom:456.375000px;}
.y130{bottom:457.275000px;}
.y162{bottom:458.535000px;}
.y1e{bottom:461.775000px;}
.y6d{bottom:465.375000px;}
.yfe{bottom:466.275000px;}
.y12f{bottom:472.755000px;}
.ya5{bottom:474.195000px;}
.y161{bottom:476.355000px;}
.y1d{bottom:479.775000px;}
.y6c{bottom:483.195000px;}
.yfd{bottom:484.095000px;}
.y12e{bottom:488.235000px;}
.ya4{bottom:492.015000px;}
.y160{bottom:494.175000px;}
.y1c{bottom:499.395000px;}
.y6b{bottom:501.015000px;}
.yfc{bottom:501.915000px;}
.y12d{bottom:503.895000px;}
.ya3{bottom:509.835000px;}
.y15f{bottom:511.995000px;}
.y6a{bottom:518.835000px;}
.y12c{bottom:519.375000px;}
.yfb{bottom:519.915000px;}
.y1b{bottom:523.155000px;}
.ya2{bottom:527.835000px;}
.y15e{bottom:529.815000px;}
.y12b{bottom:534.855000px;}
.yfa{bottom:537.735000px;}
.ya1{bottom:545.655000px;}
.y69{bottom:545.835000px;}
.y1a{bottom:546.915000px;}
.y15d{bottom:547.815000px;}
.y12a{bottom:550.335000px;}
.yf9{bottom:555.555000px;}
.yc9{bottom:563.475000px;}
.y68{bottom:563.655000px;}
.y15c{bottom:565.635000px;}
.y129{bottom:565.995000px;}
.y19{bottom:570.855000px;}
.ya0{bottom:572.475000px;}
.yf8{bottom:573.375000px;}
.yc8{bottom:581.295000px;}
.y67{bottom:581.475000px;}
.y15b{bottom:583.455000px;}
.y9f{bottom:590.295000px;}
.yf7{bottom:591.195000px;}
.y18{bottom:594.435000px;}
.y128{bottom:596.955000px;}
.yc7{bottom:599.115000px;}
.y66{bottom:599.295000px;}
.y15a{bottom:601.275000px;}
.y9e{bottom:608.115000px;}
.yf6{bottom:609.015000px;}
.y127{bottom:612.435000px;}
.y194{bottom:614.955000px;}
.y65{bottom:617.115000px;}
.y159{bottom:619.095000px;}
.y17{bottom:625.215000px;}
.y9d{bottom:626.115000px;}
.y126{bottom:628.095000px;}
.y193{bottom:633.135000px;}
.yc6{bottom:634.935000px;}
.y64{bottom:635.115000px;}
.yf5{bottom:636.015000px;}
.y158{bottom:637.095000px;}
.y9c{bottom:643.935000px;}
.y192{bottom:650.955000px;}
.yc5{bottom:652.755000px;}
.y63{bottom:652.935000px;}
.yf4{bottom:653.835000px;}
.y125{bottom:654.915000px;}
.y16{bottom:655.995000px;}
.y157{bottom:656.895000px;}
.y9b{bottom:661.755000px;}
.y191{bottom:668.955000px;}
.yc4{bottom:670.575000px;}
.y62{bottom:670.755000px;}
.yf3{bottom:671.655000px;}
.y124{bottom:672.735000px;}
.y9a{bottom:679.605000px;}
.y156{bottom:682.665000px;}
.y190{bottom:686.805000px;}
.y61{bottom:688.605000px;}
.yf2{bottom:689.505000px;}
.y123{bottom:690.585000px;}
.y99{bottom:697.425000px;}
.y18f{bottom:704.625000px;}
.yf1{bottom:707.325000px;}
.y122{bottom:708.405000px;}
.y15{bottom:712.365000px;}
.y98{bottom:715.245000px;}
.y60{bottom:715.425000px;}
.y18e{bottom:722.445000px;}
.yf0{bottom:725.325000px;}
.y121{bottom:726.225000px;}
.y5f{bottom:733.245000px;}
.y18d{bottom:740.265000px;}
.y155{bottom:741.165000px;}
.y97{bottom:742.245000px;}
.yef{bottom:743.145000px;}
.y120{bottom:744.225000px;}
.yc3{bottom:751.065000px;}
.y5e{bottom:751.245000px;}
.y14{bottom:753.405000px;}
.y18c{bottom:758.085000px;}
.y154{bottom:759.165000px;}
.y96{bottom:760.065000px;}
.yee{bottom:760.965000px;}
.y11f{bottom:762.045000px;}
.yc2{bottom:768.885000px;}
.y5d{bottom:769.065000px;}
.y18b{bottom:776.085000px;}
.y153{bottom:776.985000px;}
.y95{bottom:777.885000px;}
.y11e{bottom:779.865000px;}
.yc1{bottom:786.705000px;}
.y5c{bottom:786.885000px;}
.yed{bottom:787.785000px;}
.y18a{bottom:793.905000px;}
.y152{bottom:794.805000px;}
.y94{bottom:795.705000px;}
.y11d{bottom:797.685000px;}
.y13{bottom:799.665000px;}
.yc0{bottom:804.525000px;}
.y5b{bottom:804.705000px;}
.yec{bottom:805.605000px;}
.y189{bottom:811.725000px;}
.y151{bottom:812.625000px;}
.y93{bottom:813.525000px;}
.y11c{bottom:815.505000px;}
.ybf{bottom:822.345000px;}
.yeb{bottom:823.425000px;}
.y12{bottom:828.465000px;}
.y188{bottom:829.545000px;}
.y150{bottom:830.445000px;}
.y92{bottom:831.345000px;}
.y5a{bottom:831.525000px;}
.y11b{bottom:833.505000px;}
.ybe{bottom:840.345000px;}
.yea{bottom:841.425000px;}
.y187{bottom:847.365000px;}
.y14f{bottom:848.445000px;}
.y59{bottom:849.345000px;}
.y11a{bottom:851.325000px;}
.ybd{bottom:858.165000px;}
.ye9{bottom:859.245000px;}
.y186{bottom:865.185000px;}
.y14e{bottom:866.265000px;}
.y11{bottom:866.445000px;}
.y91{bottom:867.165000px;}
.y58{bottom:867.345000px;}
.y119{bottom:869.145000px;}
.ye8{bottom:877.065000px;}
.y185{bottom:883.185000px;}
.y14d{bottom:884.085000px;}
.y90{bottom:884.985000px;}
.y57{bottom:885.165000px;}
.y118{bottom:886.965000px;}
.y10{bottom:889.125000px;}
.ye7{bottom:894.885000px;}
.y184{bottom:901.005000px;}
.y14c{bottom:901.905000px;}
.y8f{bottom:902.805000px;}
.y56{bottom:902.985000px;}
.y117{bottom:904.785000px;}
.yf{bottom:910.950000px;}
.ye6{bottom:912.750000px;}
.y183{bottom:918.870000px;}
.y14b{bottom:919.770000px;}
.y8e{bottom:920.670000px;}
.y55{bottom:920.850000px;}
.y116{bottom:924.630000px;}
.ye5{bottom:930.570000px;}
.ye{bottom:932.730000px;}
.y182{bottom:936.690000px;}
.y14a{bottom:937.590000px;}
.y54{bottom:938.670000px;}
.y8d{bottom:947.670000px;}
.ye4{bottom:948.570000px;}
.y115{bottom:950.550000px;}
.yd{bottom:954.150000px;}
.y181{bottom:954.510000px;}
.y149{bottom:955.590000px;}
.y53{bottom:956.670000px;}
.y8c{bottom:965.490000px;}
.ye3{bottom:966.390000px;}
.y180{bottom:972.510000px;}
.y52{bottom:974.490000px;}
.yc{bottom:976.290000px;}
.y148{bottom:982.410000px;}
.y8b{bottom:983.310000px;}
.ye2{bottom:984.210000px;}
.y17f{bottom:990.330000px;}
.y51{bottom:992.310000px;}
.y147{bottom:1000.230000px;}
.y8a{bottom:1001.130000px;}
.ye1{bottom:1002.030000px;}
.y17e{bottom:1008.150000px;}
.y114{bottom:1009.050000px;}
.y50{bottom:1010.130000px;}
.yb{bottom:1017.510000px;}
.y146{bottom:1018.050000px;}
.y89{bottom:1018.950000px;}
.ye0{bottom:1021.830000px;}
.y17d{bottom:1025.970000px;}
.y113{bottom:1026.870000px;}
.y4f{bottom:1027.950000px;}
.ya{bottom:1029.570000px;}
.y145{bottom:1035.870000px;}
.y88{bottom:1036.770000px;}
.y9{bottom:1041.630000px;}
.y17c{bottom:1043.790000px;}
.y112{bottom:1044.870000px;}
.y4e{bottom:1045.770000px;}
.ydf{bottom:1047.750000px;}
.y8{bottom:1053.690000px;}
.y144{bottom:1053.870000px;}
.y87{bottom:1054.770000px;}
.y17b{bottom:1061.610000px;}
.y111{bottom:1062.690000px;}
.y4d{bottom:1063.770000px;}
.y7{bottom:1068.270000px;}
.y143{bottom:1071.690000px;}
.y86{bottom:1072.590000px;}
.y17a{bottom:1079.610000px;}
.yde{bottom:1080.510000px;}
.y4c{bottom:1081.590000px;}
.y142{bottom:1089.510000px;}
.y85{bottom:1090.410000px;}
.ybc{bottom:1092.390000px;}
.y6{bottom:1093.830000px;}
.y179{bottom:1097.430000px;}
.ydd{bottom:1098.330000px;}
.y4b{bottom:1099.410000px;}
.y141{bottom:1107.330000px;}
.y84{bottom:1108.230000px;}
.y178{bottom:1115.250000px;}
.ydc{bottom:1116.150000px;}
.y4a{bottom:1117.230000px;}
.ybb{bottom:1125.150000px;}
.y83{bottom:1126.050000px;}
.ydb{bottom:1133.970000px;}
.y49{bottom:1135.050000px;}
.yba{bottom:1142.970000px;}
.y82{bottom:1146.060000px;}
.yda{bottom:1152.000000px;}
.y48{bottom:1153.080000px;}
.yb9{bottom:1161.000000px;}
.y177{bottom:1165.680000px;}
.y47{bottom:1170.900000px;}
.y81{bottom:1178.820000px;}
.y176{bottom:1181.160000px;}
.y46{bottom:1190.700000px;}
.y80{bottom:1196.640000px;}
.h2{height:31.135500px;}
.h16{height:37.705078px;}
.h7{height:40.985156px;}
.h14{height:52.971680px;}
.h3{height:52.998047px;}
.hf{height:54.421875px;}
.h17{height:55.503491px;}
.h12{height:58.621992px;}
.h8{height:58.651172px;}
.h13{height:58.763250px;}
.h9{height:60.226875px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.hc{height:72.326250px;}
.he{height:72.562500px;}
.h11{height:78.367500px;}
.h15{height:80.949375px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.hb{height:85.460977px;}
.h6{height:90.703125px;}
.h10{height:449.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.640000px;}
.x13{left:10.800000px;}
.x12{left:39.240000px;}
.x1{left:45.364500px;}
.x14{left:50.040000px;}
.x6{left:54.000000px;}
.xc{left:59.040000px;}
.x15{left:81.000000px;}
.x18{left:108.036000px;}
.x2{left:222.370500px;}
.xf{left:241.590000px;}
.xe{left:252.030000px;}
.x3{left:271.330500px;}
.x9{left:283.575000px;}
.xa{left:297.075000px;}
.x7{left:300.495000px;}
.x10{left:314.355000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.xd{left:398.775000px;}
.x11{left:473.505000px;}
.x16{left:500.505000px;}
.x17{left:527.505000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls9{letter-spacing:-0.896000pt;}
.ls7{letter-spacing:-0.704000pt;}
.lsa{letter-spacing:-0.544000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.015360pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.016000pt;}
.lse{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.227733pt;}
.ls8{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.933120pt;}
.ls14{letter-spacing:22.496000pt;}
.ls13{letter-spacing:46.816000pt;}
.ws6{word-spacing:-17.295360pt;}
.ws9{word-spacing:-17.280000pt;}
.ws2{word-spacing:-15.296000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.888000pt;}
.wsc{word-spacing:-11.808000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws8{word-spacing:0.000000pt;}
._c{margin-left:-9.487360pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.018667pt;}
._4{width:1.931520pt;}
._3{width:3.240320pt;}
._b{width:4.232533pt;}
._5{width:5.130667pt;}
._7{width:6.099413pt;}
._6{width:7.011840pt;}
._9{width:7.949227pt;}
._f{width:8.894933pt;}
._8{width:10.567893pt;}
._a{width:12.226560pt;}
._d{width:13.920000pt;}
._e{width:14.832000pt;}
._16{width:16.042667pt;}
._15{width:17.269333pt;}
._11{width:18.336000pt;}
._12{width:19.333333pt;}
._19{width:20.448000pt;}
._13{width:21.600000pt;}
._10{width:22.560000pt;}
._17{width:23.616000pt;}
._18{width:24.656000pt;}
._1e{width:25.696000pt;}
._1b{width:26.592000pt;}
._14{width:28.464000pt;}
._1a{width:29.952000pt;}
._1f{width:31.488000pt;}
._1c{width:33.648000pt;}
._1d{width:34.608000pt;}
._23{width:38.064000pt;}
._20{width:39.121920pt;}
._22{width:51.236053pt;}
._21{width:60.065280pt;}
._24{width:143.779840pt;}
._2{width:1088.266667pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.y44{bottom:31.200000pt;}
.y5{bottom:35.360000pt;}
.y43{bottom:48.800000pt;}
.y1{bottom:53.920000pt;}
.y42{bottom:66.560000pt;}
.y41{bottom:84.160000pt;}
.yb8{bottom:90.880000pt;}
.y2f{bottom:92.800000pt;}
.y175{bottom:96.160000pt;}
.y110{bottom:96.960000pt;}
.y40{bottom:101.786667pt;}
.y30{bottom:102.240000pt;}
.yd9{bottom:104.000000pt;}
.y140{bottom:105.600000pt;}
.yb7{bottom:106.720000pt;}
.y2e{bottom:108.640000pt;}
.y174{bottom:109.920000pt;}
.y7f{bottom:112.000000pt;}
.y10f{bottom:112.800000pt;}
.y45{bottom:115.680000pt;}
.y3f{bottom:119.386667pt;}
.yd8{bottom:119.840000pt;}
.y13f{bottom:121.600000pt;}
.yb6{bottom:122.560000pt;}
.y173{bottom:123.840000pt;}
.y2d{bottom:124.640000pt;}
.y7e{bottom:127.840000pt;}
.y10e{bottom:128.640000pt;}
.yd7{bottom:135.680000pt;}
.y3e{bottom:136.986667pt;}
.y172{bottom:137.600000pt;}
.yb5{bottom:138.400000pt;}
.y13e{bottom:139.200000pt;}
.y2c{bottom:140.480000pt;}
.y7d{bottom:143.680000pt;}
.y10d{bottom:144.480000pt;}
.yd6{bottom:151.520000pt;}
.y3d{bottom:154.746667pt;}
.y2b{bottom:156.320000pt;}
.y7c{bottom:159.520000pt;}
.yb4{bottom:160.320000pt;}
.y171{bottom:161.440000pt;}
.y13d{bottom:162.080000pt;}
.yd5{bottom:167.360000pt;}
.y2a{bottom:172.160000pt;}
.y3c{bottom:172.346667pt;}
.yb3{bottom:174.080000pt;}
.y7b{bottom:175.360000pt;}
.y170{bottom:177.280000pt;}
.yd4{bottom:183.386667pt;}
.y10c{bottom:184.186667pt;}
.y13c{bottom:184.986667pt;}
.yb2{bottom:187.866667pt;}
.y29{bottom:188.026667pt;}
.y3b{bottom:189.946667pt;}
.y16f{bottom:193.146667pt;}
.yd3{bottom:199.226667pt;}
.y7a{bottom:199.386667pt;}
.y10b{bottom:200.186667pt;}
.yb1{bottom:201.626667pt;}
.y28{bottom:203.866667pt;}
.y3a{bottom:207.546667pt;}
.y16e{bottom:209.146667pt;}
.y13b{bottom:214.266667pt;}
.y79{bottom:215.226667pt;}
.yb0{bottom:215.386667pt;}
.y10a{bottom:216.026667pt;}
.y27{bottom:219.866667pt;}
.yd2{bottom:223.066667pt;}
.y16d{bottom:224.986667pt;}
.y39{bottom:225.146667pt;}
.yaf{bottom:229.306667pt;}
.y13a{bottom:230.106667pt;}
.y78{bottom:231.066667pt;}
.y109{bottom:231.866667pt;}
.y26{bottom:235.706667pt;}
.yd1{bottom:238.906667pt;}
.y16c{bottom:240.826667pt;}
.y38{bottom:242.906667pt;}
.yae{bottom:243.066667pt;}
.y139{bottom:245.946667pt;}
.y77{bottom:246.906667pt;}
.y108{bottom:247.706667pt;}
.y25{bottom:251.546667pt;}
.yd0{bottom:254.746667pt;}
.y16b{bottom:256.666667pt;}
.yad{bottom:256.826667pt;}
.y37{bottom:260.506667pt;}
.y138{bottom:261.786667pt;}
.y76{bottom:262.746667pt;}
.y107{bottom:263.546667pt;}
.y24{bottom:267.386667pt;}
.yac{bottom:270.586667pt;}
.y16a{bottom:272.506667pt;}
.y137{bottom:277.626667pt;}
.y36{bottom:278.106667pt;}
.y75{bottom:278.586667pt;}
.y106{bottom:279.546667pt;}
.y23{bottom:283.226667pt;}
.ycf{bottom:286.586667pt;}
.y169{bottom:288.346667pt;}
.y136{bottom:293.466667pt;}
.y74{bottom:294.586667pt;}
.y105{bottom:295.386667pt;}
.y35{bottom:295.746667pt;}
.yce{bottom:302.426667pt;}
.y168{bottom:304.346667pt;}
.y22{bottom:307.226667pt;}
.y135{bottom:309.466667pt;}
.y73{bottom:310.426667pt;}
.y104{bottom:311.226667pt;}
.y34{bottom:313.346667pt;}
.ycd{bottom:318.266667pt;}
.y167{bottom:320.186667pt;}
.y134{bottom:325.306667pt;}
.yab{bottom:326.266667pt;}
.y103{bottom:327.066667pt;}
.y21{bottom:331.066667pt;}
.y33{bottom:331.106667pt;}
.ycc{bottom:334.106667pt;}
.y72{bottom:334.266667pt;}
.y166{bottom:336.026667pt;}
.y133{bottom:341.146667pt;}
.yaa{bottom:342.106667pt;}
.y102{bottom:342.906667pt;}
.y32{bottom:348.706667pt;}
.ycb{bottom:349.946667pt;}
.y71{bottom:350.106667pt;}
.y165{bottom:351.866667pt;}
.y20{bottom:354.906667pt;}
.y132{bottom:356.986667pt;}
.ya9{bottom:357.946667pt;}
.y70{bottom:365.946667pt;}
.y101{bottom:366.746667pt;}
.y164{bottom:367.706667pt;}
.ya8{bottom:373.946667pt;}
.y31{bottom:375.586667pt;}
.y1f{bottom:378.746667pt;}
.yca{bottom:381.786667pt;}
.y6f{bottom:381.946667pt;}
.y100{bottom:382.746667pt;}
.ya7{bottom:389.786667pt;}
.y163{bottom:391.746667pt;}
.y131{bottom:392.706667pt;}
.y6e{bottom:397.826667pt;}
.yff{bottom:398.626667pt;}
.ya6{bottom:405.666667pt;}
.y130{bottom:406.466667pt;}
.y162{bottom:407.586667pt;}
.y1e{bottom:410.466667pt;}
.y6d{bottom:413.666667pt;}
.yfe{bottom:414.466667pt;}
.y12f{bottom:420.226667pt;}
.ya5{bottom:421.506667pt;}
.y161{bottom:423.426667pt;}
.y1d{bottom:426.466667pt;}
.y6c{bottom:429.506667pt;}
.yfd{bottom:430.306667pt;}
.y12e{bottom:433.986667pt;}
.ya4{bottom:437.346667pt;}
.y160{bottom:439.266667pt;}
.y1c{bottom:443.906667pt;}
.y6b{bottom:445.346667pt;}
.yfc{bottom:446.146667pt;}
.y12d{bottom:447.906667pt;}
.ya3{bottom:453.186667pt;}
.y15f{bottom:455.106667pt;}
.y6a{bottom:461.186667pt;}
.y12c{bottom:461.666667pt;}
.yfb{bottom:462.146667pt;}
.y1b{bottom:465.026667pt;}
.ya2{bottom:469.186667pt;}
.y15e{bottom:470.946667pt;}
.y12b{bottom:475.426667pt;}
.yfa{bottom:477.986667pt;}
.ya1{bottom:485.026667pt;}
.y69{bottom:485.186667pt;}
.y1a{bottom:486.146667pt;}
.y15d{bottom:486.946667pt;}
.y12a{bottom:489.186667pt;}
.yf9{bottom:493.826667pt;}
.yc9{bottom:500.866667pt;}
.y68{bottom:501.026667pt;}
.y15c{bottom:502.786667pt;}
.y129{bottom:503.106667pt;}
.y19{bottom:507.426667pt;}
.ya0{bottom:508.866667pt;}
.yf8{bottom:509.666667pt;}
.yc8{bottom:516.706667pt;}
.y67{bottom:516.866667pt;}
.y15b{bottom:518.626667pt;}
.y9f{bottom:524.706667pt;}
.yf7{bottom:525.506667pt;}
.y18{bottom:528.386667pt;}
.y128{bottom:530.626667pt;}
.yc7{bottom:532.546667pt;}
.y66{bottom:532.706667pt;}
.y15a{bottom:534.466667pt;}
.y9e{bottom:540.546667pt;}
.yf6{bottom:541.346667pt;}
.y127{bottom:544.386667pt;}
.y194{bottom:546.626667pt;}
.y65{bottom:548.546667pt;}
.y159{bottom:550.306667pt;}
.y17{bottom:555.746667pt;}
.y9d{bottom:556.546667pt;}
.y126{bottom:558.306667pt;}
.y193{bottom:562.786667pt;}
.yc6{bottom:564.386667pt;}
.y64{bottom:564.546667pt;}
.yf5{bottom:565.346667pt;}
.y158{bottom:566.306667pt;}
.y9c{bottom:572.386667pt;}
.y192{bottom:578.626667pt;}
.yc5{bottom:580.226667pt;}
.y63{bottom:580.386667pt;}
.yf4{bottom:581.186667pt;}
.y125{bottom:582.146667pt;}
.y16{bottom:583.106667pt;}
.y157{bottom:583.906667pt;}
.y9b{bottom:588.226667pt;}
.y191{bottom:594.626667pt;}
.yc4{bottom:596.066667pt;}
.y62{bottom:596.226667pt;}
.yf3{bottom:597.026667pt;}
.y124{bottom:597.986667pt;}
.y9a{bottom:604.093333pt;}
.y156{bottom:606.813333pt;}
.y190{bottom:610.493333pt;}
.y61{bottom:612.093333pt;}
.yf2{bottom:612.893333pt;}
.y123{bottom:613.853333pt;}
.y99{bottom:619.933333pt;}
.y18f{bottom:626.333333pt;}
.yf1{bottom:628.733333pt;}
.y122{bottom:629.693333pt;}
.y15{bottom:633.213333pt;}
.y98{bottom:635.773333pt;}
.y60{bottom:635.933333pt;}
.y18e{bottom:642.173333pt;}
.yf0{bottom:644.733333pt;}
.y121{bottom:645.533333pt;}
.y5f{bottom:651.773333pt;}
.y18d{bottom:658.013333pt;}
.y155{bottom:658.813333pt;}
.y97{bottom:659.773333pt;}
.yef{bottom:660.573333pt;}
.y120{bottom:661.533333pt;}
.yc3{bottom:667.613333pt;}
.y5e{bottom:667.773333pt;}
.y14{bottom:669.693333pt;}
.y18c{bottom:673.853333pt;}
.y154{bottom:674.813333pt;}
.y96{bottom:675.613333pt;}
.yee{bottom:676.413333pt;}
.y11f{bottom:677.373333pt;}
.yc2{bottom:683.453333pt;}
.y5d{bottom:683.613333pt;}
.y18b{bottom:689.853333pt;}
.y153{bottom:690.653333pt;}
.y95{bottom:691.453333pt;}
.y11e{bottom:693.213333pt;}
.yc1{bottom:699.293333pt;}
.y5c{bottom:699.453333pt;}
.yed{bottom:700.253333pt;}
.y18a{bottom:705.693333pt;}
.y152{bottom:706.493333pt;}
.y94{bottom:707.293333pt;}
.y11d{bottom:709.053333pt;}
.y13{bottom:710.813333pt;}
.yc0{bottom:715.133333pt;}
.y5b{bottom:715.293333pt;}
.yec{bottom:716.093333pt;}
.y189{bottom:721.533333pt;}
.y151{bottom:722.333333pt;}
.y93{bottom:723.133333pt;}
.y11c{bottom:724.893333pt;}
.ybf{bottom:730.973333pt;}
.yeb{bottom:731.933333pt;}
.y12{bottom:736.413333pt;}
.y188{bottom:737.373333pt;}
.y150{bottom:738.173333pt;}
.y92{bottom:738.973333pt;}
.y5a{bottom:739.133333pt;}
.y11b{bottom:740.893333pt;}
.ybe{bottom:746.973333pt;}
.yea{bottom:747.933333pt;}
.y187{bottom:753.213333pt;}
.y14f{bottom:754.173333pt;}
.y59{bottom:754.973333pt;}
.y11a{bottom:756.733333pt;}
.ybd{bottom:762.813333pt;}
.ye9{bottom:763.773333pt;}
.y186{bottom:769.053333pt;}
.y14e{bottom:770.013333pt;}
.y11{bottom:770.173333pt;}
.y91{bottom:770.813333pt;}
.y58{bottom:770.973333pt;}
.y119{bottom:772.573333pt;}
.ye8{bottom:779.613333pt;}
.y185{bottom:785.053333pt;}
.y14d{bottom:785.853333pt;}
.y90{bottom:786.653333pt;}
.y57{bottom:786.813333pt;}
.y118{bottom:788.413333pt;}
.y10{bottom:790.333333pt;}
.ye7{bottom:795.453333pt;}
.y184{bottom:800.893333pt;}
.y14c{bottom:801.693333pt;}
.y8f{bottom:802.493333pt;}
.y56{bottom:802.653333pt;}
.y117{bottom:804.253333pt;}
.yf{bottom:809.733333pt;}
.ye6{bottom:811.333333pt;}
.y183{bottom:816.773333pt;}
.y14b{bottom:817.573333pt;}
.y8e{bottom:818.373333pt;}
.y55{bottom:818.533333pt;}
.y116{bottom:821.893333pt;}
.ye5{bottom:827.173333pt;}
.ye{bottom:829.093333pt;}
.y182{bottom:832.613333pt;}
.y14a{bottom:833.413333pt;}
.y54{bottom:834.373333pt;}
.y8d{bottom:842.373333pt;}
.ye4{bottom:843.173333pt;}
.y115{bottom:844.933333pt;}
.yd{bottom:848.133333pt;}
.y181{bottom:848.453333pt;}
.y149{bottom:849.413333pt;}
.y53{bottom:850.373333pt;}
.y8c{bottom:858.213333pt;}
.ye3{bottom:859.013333pt;}
.y180{bottom:864.453333pt;}
.y52{bottom:866.213333pt;}
.yc{bottom:867.813333pt;}
.y148{bottom:873.253333pt;}
.y8b{bottom:874.053333pt;}
.ye2{bottom:874.853333pt;}
.y17f{bottom:880.293333pt;}
.y51{bottom:882.053333pt;}
.y147{bottom:889.093333pt;}
.y8a{bottom:889.893333pt;}
.ye1{bottom:890.693333pt;}
.y17e{bottom:896.133333pt;}
.y114{bottom:896.933333pt;}
.y50{bottom:897.893333pt;}
.yb{bottom:904.453333pt;}
.y146{bottom:904.933333pt;}
.y89{bottom:905.733333pt;}
.ye0{bottom:908.293333pt;}
.y17d{bottom:911.973333pt;}
.y113{bottom:912.773333pt;}
.y4f{bottom:913.733333pt;}
.ya{bottom:915.173333pt;}
.y145{bottom:920.773333pt;}
.y88{bottom:921.573333pt;}
.y9{bottom:925.893333pt;}
.y17c{bottom:927.813333pt;}
.y112{bottom:928.773333pt;}
.y4e{bottom:929.573333pt;}
.ydf{bottom:931.333333pt;}
.y8{bottom:936.613333pt;}
.y144{bottom:936.773333pt;}
.y87{bottom:937.573333pt;}
.y17b{bottom:943.653333pt;}
.y111{bottom:944.613333pt;}
.y4d{bottom:945.573333pt;}
.y7{bottom:949.573333pt;}
.y143{bottom:952.613333pt;}
.y86{bottom:953.413333pt;}
.y17a{bottom:959.653333pt;}
.yde{bottom:960.453333pt;}
.y4c{bottom:961.413333pt;}
.y142{bottom:968.453333pt;}
.y85{bottom:969.253333pt;}
.ybc{bottom:971.013333pt;}
.y6{bottom:972.293333pt;}
.y179{bottom:975.493333pt;}
.ydd{bottom:976.293333pt;}
.y4b{bottom:977.253333pt;}
.y141{bottom:984.293333pt;}
.y84{bottom:985.093333pt;}
.y178{bottom:991.333333pt;}
.ydc{bottom:992.133333pt;}
.y4a{bottom:993.093333pt;}
.ybb{bottom:1000.133333pt;}
.y83{bottom:1000.933333pt;}
.ydb{bottom:1007.973333pt;}
.y49{bottom:1008.933333pt;}
.yba{bottom:1015.973333pt;}
.y82{bottom:1018.720000pt;}
.yda{bottom:1024.000000pt;}
.y48{bottom:1024.960000pt;}
.yb9{bottom:1032.000000pt;}
.y177{bottom:1036.160000pt;}
.y47{bottom:1040.800000pt;}
.y81{bottom:1047.840000pt;}
.y176{bottom:1049.920000pt;}
.y46{bottom:1058.400000pt;}
.y80{bottom:1063.680000pt;}
.h2{height:27.676000pt;}
.h16{height:33.515625pt;}
.h7{height:36.431250pt;}
.h14{height:47.085938pt;}
.h3{height:47.109375pt;}
.hf{height:48.375000pt;}
.h17{height:49.336436pt;}
.h12{height:52.108438pt;}
.h8{height:52.134375pt;}
.h13{height:52.234000pt;}
.h9{height:53.535000pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.hc{height:64.290000pt;}
.he{height:64.500000pt;}
.h11{height:69.660000pt;}
.h15{height:71.955000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.hb{height:75.965312pt;}
.h6{height:80.625000pt;}
.h10{height:399.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.680000pt;}
.x13{left:9.600000pt;}
.x12{left:34.880000pt;}
.x1{left:40.324000pt;}
.x14{left:44.480000pt;}
.x6{left:48.000000pt;}
.xc{left:52.480000pt;}
.x15{left:72.000000pt;}
.x18{left:96.032000pt;}
.x2{left:197.662667pt;}
.xf{left:214.746667pt;}
.xe{left:224.026667pt;}
.x3{left:241.182667pt;}
.x9{left:252.066667pt;}
.xa{left:264.066667pt;}
.x7{left:267.106667pt;}
.x10{left:279.426667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.xd{left:354.466667pt;}
.x11{left:420.893333pt;}
.x16{left:444.893333pt;}
.x17{left:468.893333pt;}
.x4{left:682.213333pt;}
}




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