
    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_3f44c9d279bc08cff32ae512.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_3ebf2a01893f0ef0ca336c99.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_ec6efce4e2aeaf5fd9cb7f26.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_063e32dd4fa4db54b0bc7340.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_2fe29276c472582d5780b110.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_91c5b30393db6903f32fe787.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_911ea65105f08c3d6e6fa54b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_16d9d0b554de638cba59c59e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0ac8a58bd72603846aba9418.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.864000px;}
.lsf{letter-spacing:2.160000px;}
.ls10{letter-spacing:5.760000px;}
.lse{letter-spacing:8.064000px;}
.lsa{letter-spacing:18.720000px;}
.ls9{letter-spacing:20.160000px;}
.lsb{letter-spacing:25.200000px;}
.lsc{letter-spacing:28.800000px;}
.ls11{letter-spacing:38.106720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.wsc{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.ws1{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:29.482800px;}
.wsb{word-spacing:78.472800px;}
.ws8{word-spacing:100.564320px;}
.ws9{word-spacing:104.260080px;}
._1f{margin-left:-4.759440px;}
._5{margin-left:-3.559920px;}
._4{margin-left:-2.400000px;}
._0{margin-left:-1.192320px;}
._1{width:1.015920px;}
._2{width:2.216880px;}
._15{width:4.104000px;}
._11{width:6.048000px;}
._f{width:7.272000px;}
._10{width:9.216000px;}
._18{width:11.016000px;}
._8{width:12.744000px;}
._7{width:14.040000px;}
._a{width:15.799680px;}
._9{width:16.816320px;}
._b{width:19.000080px;}
._c{width:20.039760px;}
._1c{width:21.114000px;}
._e{width:22.311360px;}
._d{width:23.368320px;}
._19{width:24.575040px;}
._20{width:26.104320px;}
._17{width:27.144000px;}
._1e{width:28.656000px;}
._1a{width:29.880000px;}
._1b{width:31.464000px;}
._16{width:33.048000px;}
._12{width:34.848000px;}
._13{width:36.176400px;}
._14{width:37.570800px;}
._1d{width:38.952000px;}
._23{width:40.432320px;}
._24{width:41.559120px;}
._2d{width:42.680880px;}
._27{width:46.152000px;}
._28{width:50.328000px;}
._21{width:51.624000px;}
._22{width:52.992000px;}
._2c{width:59.503680px;}
._2b{width:60.664320px;}
._2a{width:113.976000px;}
._29{width:115.488000px;}
._25{width:158.782320px;}
._26{width:178.638720px;}
._3{width:194.376000px;}
._6{width:1864.536000px;}
.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:41.760000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y9{bottom:-12.060000px;}
.yb{bottom:-11.700000px;}
.ye{bottom:-10.440000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.680000px;}
.ya{bottom:5.040000px;}
.yd{bottom:6.300000px;}
.yd0{bottom:12.060000px;}
.yde{bottom:12.090000px;}
.y9f{bottom:12.240000px;}
.yc0{bottom:12.270000px;}
.ya9{bottom:12.285000px;}
.y14{bottom:12.630000px;}
.y43{bottom:12.780000px;}
.y6{bottom:18.000000px;}
.y11e{bottom:18.150000px;}
.y3{bottom:19.800000px;}
.yc{bottom:20.160000px;}
.yad{bottom:20.880000px;}
.y7{bottom:21.420000px;}
.yec{bottom:29.340000px;}
.yae{bottom:29.520000px;}
.yf2{bottom:30.060000px;}
.yef{bottom:30.240000px;}
.yd4{bottom:35.100000px;}
.y5{bottom:37.260000px;}
.y2{bottom:39.060000px;}
.y11d{bottom:49.785000px;}
.y9e{bottom:52.560000px;}
.y12{bottom:57.420000px;}
.y113{bottom:69.300000px;}
.y11{bottom:73.260000px;}
.y10b{bottom:84.390000px;}
.ybf{bottom:92.880000px;}
.y114{bottom:106.125000px;}
.y41{bottom:109.440000px;}
.y14a{bottom:113.760000px;}
.ybe{bottom:115.920000px;}
.y71{bottom:118.260000px;}
.y16d{bottom:120.060000px;}
.y95{bottom:120.960000px;}
.y137{bottom:124.560000px;}
.y111{bottom:125.310000px;}
.yb3{bottom:127.980000px;}
.yce{bottom:129.060000px;}
.y40{bottom:135.540000px;}
.y109{bottom:137.340000px;}
.yf1{bottom:138.780000px;}
.y94{bottom:141.660000px;}
.y115{bottom:142.995000px;}
.y136{bottom:145.260000px;}
.y70{bottom:147.960000px;}
.y16c{bottom:149.760000px;}
.y3f{bottom:153.360000px;}
.y3e{bottom:159.300000px;}
.y93{bottom:162.360000px;}
.yb2{bottom:163.980000px;}
.ycd{bottom:165.060000px;}
.y135{bottom:165.960000px;}
.y108{bottom:167.040000px;}
.y16b{bottom:170.460000px;}
.yf0{bottom:174.780000px;}
.y6f{bottom:177.660000px;}
.y116{bottom:179.820000px;}
.y10f{bottom:179.895000px;}
.y3d{bottom:181.260000px;}
.y134{bottom:186.660000px;}
.y107{bottom:187.740000px;}
.y16a{bottom:191.160000px;}
.y92{bottom:192.060000px;}
.y6e{bottom:198.390000px;}
.yb1{bottom:200.010000px;}
.ycc{bottom:201.090000px;}
.y10d{bottom:205.170000px;}
.y133{bottom:207.390000px;}
.y106{bottom:208.470000px;}
.yee{bottom:210.810000px;}
.y117{bottom:216.690000px;}
.y3c{bottom:218.190000px;}
.y169{bottom:220.890000px;}
.y91{bottom:221.790000px;}
.y6d{bottom:228.090000px;}
.y105{bottom:229.170000px;}
.yb0{bottom:236.010000px;}
.ycb{bottom:237.090000px;}
.y3b{bottom:238.890000px;}
.y168{bottom:241.590000px;}
.yed{bottom:246.810000px;}
.y112{bottom:248.115000px;}
.y132{bottom:248.790000px;}
.y90{bottom:251.490000px;}
.y118{bottom:253.515000px;}
.y6c{bottom:257.790000px;}
.y104{bottom:258.870000px;}
.y3a{bottom:259.590000px;}
.y167{bottom:271.290000px;}
.yaf{bottom:272.010000px;}
.y8f{bottom:272.190000px;}
.yca{bottom:273.090000px;}
.y110{bottom:275.400000px;}
.y131{bottom:278.490000px;}
.y103{bottom:279.570000px;}
.y39{bottom:280.290000px;}
.yeb{bottom:282.810000px;}
.y6b{bottom:287.490000px;}
.y10e{bottom:289.725000px;}
.y119{bottom:290.340000px;}
.y166{bottom:291.990000px;}
.y8e{bottom:292.890000px;}
.y130{bottom:299.190000px;}
.y102{bottom:300.270000px;}
.y38{bottom:300.990000px;}
.yac{bottom:308.010000px;}
.yc9{bottom:309.090000px;}
.y165{bottom:312.690000px;}
.y8d{bottom:313.590000px;}
.y6a{bottom:317.190000px;}
.y12f{bottom:319.890000px;}
.y37{bottom:321.690000px;}
.y11a{bottom:327.210000px;}
.y101{bottom:329.970000px;}
.y17c{bottom:333.390000px;}
.y8c{bottom:334.290000px;}
.y69{bottom:337.890000px;}
.y12e{bottom:340.590000px;}
.y36{bottom:342.390000px;}
.yc8{bottom:345.090000px;}
.yea{bottom:349.050000px;}
.y100{bottom:350.670000px;}
.y8b{bottom:354.990000px;}
.y68{bottom:358.590000px;}
.yab{bottom:361.290000px;}
.y35{bottom:363.090000px;}
.y149{bottom:363.990000px;}
.y11b{bottom:364.035000px;}
.ye9{bottom:369.750000px;}
.y164{bottom:372.090000px;}
.y10c{bottom:374.295000px;}
.y8a{bottom:375.690000px;}
.y67{bottom:379.290000px;}
.yff{bottom:380.370000px;}
.yc7{bottom:381.090000px;}
.y12d{bottom:381.990000px;}
.y34{bottom:383.790000px;}
.y148{bottom:384.690000px;}
.y17b{bottom:392.790000px;}
.y89{bottom:396.390000px;}
.yaa{bottom:397.290000px;}
.ye8{bottom:399.270000px;}
.y66{bottom:399.990000px;}
.y11c{bottom:400.860000px;}
.y163{bottom:401.790000px;}
.y12c{bottom:402.690000px;}
.y33{bottom:404.490000px;}
.yfe{bottom:406.110000px;}
.y10a{bottom:407.340000px;}
.y147{bottom:414.390000px;}
.y88{bottom:417.090000px;}
.y65{bottom:420.690000px;}
.y162{bottom:422.490000px;}
.y12b{bottom:423.390000px;}
.y32{bottom:425.190000px;}
.ye7{bottom:428.970000px;}
.ya8{bottom:433.290000px;}
.y64{bottom:441.435000px;}
.y161{bottom:443.235000px;}
.y146{bottom:444.135000px;}
.y31{bottom:445.935000px;}
.y87{bottom:446.835000px;}
.ye6{bottom:449.715000px;}
.yc6{bottom:453.135000px;}
.y63{bottom:462.135000px;}
.y30{bottom:466.635000px;}
.ya7{bottom:469.335000px;}
.ye5{bottom:470.415000px;}
.y160{bottom:472.935000px;}
.y12a{bottom:473.835000px;}
.y86{bottom:476.535000px;}
.y62{bottom:482.835000px;}
.y2f{bottom:487.335000px;}
.yc5{bottom:489.135000px;}
.ye4{bottom:491.115000px;}
.y15f{bottom:493.635000px;}
.y129{bottom:494.535000px;}
.y61{bottom:503.535000px;}
.ya6{bottom:505.335000px;}
.y85{bottom:506.235000px;}
.y2e{bottom:508.035000px;}
.ye3{bottom:511.815000px;}
.y15e{bottom:514.335000px;}
.y128{bottom:515.235000px;}
.y17a{bottom:523.335000px;}
.y60{bottom:524.235000px;}
.yc4{bottom:525.135000px;}
.y2d{bottom:528.735000px;}
.ye2{bottom:532.515000px;}
.y145{bottom:533.235000px;}
.y84{bottom:535.935000px;}
.ya5{bottom:541.335000px;}
.y15d{bottom:544.035000px;}
.y5f{bottom:544.935000px;}
.y2c{bottom:549.435000px;}
.y144{bottom:553.935000px;}
.y83{bottom:556.635000px;}
.ye1{bottom:559.155000px;}
.yc3{bottom:561.135000px;}
.y15c{bottom:564.735000px;}
.y5e{bottom:565.635000px;}
.y2b{bottom:570.135000px;}
.y179{bottom:573.735000px;}
.y143{bottom:574.635000px;}
.y82{bottom:577.335000px;}
.y5d{bottom:586.335000px;}
.y2a{bottom:590.835000px;}
.y15b{bottom:594.435000px;}
.ye0{bottom:595.155000px;}
.y142{bottom:595.335000px;}
.yc2{bottom:597.135000px;}
.y127{bottom:598.035000px;}
.y5c{bottom:607.035000px;}
.y29{bottom:611.535000px;}
.ya4{bottom:613.335000px;}
.y15a{bottom:615.135000px;}
.y42{bottom:617.475000px;}
.y178{bottom:624.135000px;}
.y141{bottom:625.035000px;}
.y5b{bottom:627.735000px;}
.ydf{bottom:631.155000px;}
.y28{bottom:632.235000px;}
.yc1{bottom:633.135000px;}
.y159{bottom:635.835000px;}
.y177{bottom:644.835000px;}
.y140{bottom:645.735000px;}
.y5a{bottom:648.435000px;}
.ya3{bottom:649.335000px;}
.y27{bottom:652.935000px;}
.y13{bottom:662.655000px;}
.y158{bottom:665.535000px;}
.y13f{bottom:666.435000px;}
.ydd{bottom:667.155000px;}
.y59{bottom:669.135000px;}
.y26{bottom:673.635000px;}
.y176{bottom:674.565000px;}
.y81{bottom:678.165000px;}
.ya2{bottom:685.365000px;}
.y13e{bottom:687.165000px;}
.y58{bottom:689.865000px;}
.y157{bottom:695.265000px;}
.y80{bottom:698.865000px;}
.ydc{bottom:703.185000px;}
.y25{bottom:703.365000px;}
.ybd{bottom:705.165000px;}
.y13d{bottom:707.865000px;}
.y57{bottom:710.565000px;}
.y156{bottom:715.965000px;}
.y7f{bottom:719.565000px;}
.ya1{bottom:721.365000px;}
.y175{bottom:724.965000px;}
.y13c{bottom:728.565000px;}
.y56{bottom:731.265000px;}
.y24{bottom:733.065000px;}
.y155{bottom:736.665000px;}
.y7e{bottom:740.265000px;}
.y174{bottom:745.665000px;}
.y13b{bottom:749.265000px;}
.y55{bottom:751.965000px;}
.ydb{bottom:752.145000px;}
.ya0{bottom:757.365000px;}
.y7d{bottom:760.965000px;}
.y154{bottom:766.365000px;}
.y23{bottom:769.605000px;}
.y13a{bottom:769.965000px;}
.y54{bottom:772.665000px;}
.yda{bottom:772.845000px;}
.y173{bottom:775.365000px;}
.y153{bottom:787.065000px;}
.y7c{bottom:790.665000px;}
.y53{bottom:793.365000px;}
.y172{bottom:796.065000px;}
.y22{bottom:799.305000px;}
.y126{bottom:802.365000px;}
.yd9{bottom:802.545000px;}
.y152{bottom:807.765000px;}
.y7b{bottom:811.365000px;}
.y52{bottom:814.065000px;}
.y139{bottom:820.365000px;}
.y21{bottom:822.165000px;}
.y125{bottom:823.065000px;}
.y171{bottom:825.765000px;}
.y9d{bottom:829.365000px;}
.y7a{bottom:832.065000px;}
.yd8{bottom:832.245000px;}
.y51{bottom:834.765000px;}
.y151{bottom:837.465000px;}
.y138{bottom:841.065000px;}
.yfd{bottom:842.145000px;}
.y124{bottom:843.765000px;}
.y170{bottom:846.465000px;}
.yd7{bottom:852.945000px;}
.y50{bottom:855.465000px;}
.y150{bottom:858.165000px;}
.y20{bottom:858.705000px;}
.y79{bottom:861.765000px;}
.yfc{bottom:862.845000px;}
.y123{bottom:864.465000px;}
.y16f{bottom:867.165000px;}
.yd6{bottom:873.645000px;}
.y4f{bottom:876.165000px;}
.y14f{bottom:878.865000px;}
.y1f{bottom:881.565000px;}
.y78{bottom:882.465000px;}
.yfb{bottom:883.545000px;}
.ybc{bottom:885.165000px;}
.yd5{bottom:894.165000px;}
.y4e{bottom:896.865000px;}
.y77{bottom:903.165000px;}
.yfa{bottom:904.245000px;}
.y122{bottom:905.865000px;}
.y14e{bottom:908.565000px;}
.y1e{bottom:911.265000px;}
.ybb{bottom:914.910000px;}
.y4d{bottom:917.610000px;}
.y76{bottom:923.910000px;}
.yf9{bottom:924.990000px;}
.y121{bottom:926.610000px;}
.y14d{bottom:929.310000px;}
.yba{bottom:935.610000px;}
.y1d{bottom:941.010000px;}
.y75{bottom:944.610000px;}
.yf8{bottom:945.510000px;}
.y4c{bottom:947.310000px;}
.y9c{bottom:959.010000px;}
.y1c{bottom:961.710000px;}
.yb9{bottom:965.310000px;}
.y120{bottom:968.010000px;}
.y74{bottom:974.310000px;}
.yf7{bottom:975.210000px;}
.y4b{bottom:977.010000px;}
.y9b{bottom:979.710000px;}
.yb8{bottom:986.010000px;}
.y11f{bottom:988.710000px;}
.y1a{bottom:991.410000px;}
.y73{bottom:995.010000px;}
.yf6{bottom:995.910000px;}
.y1b{bottom:997.350000px;}
.y14c{bottom:1000.410000px;}
.y4a{bottom:1006.710000px;}
.y9a{bottom:1009.410000px;}
.y19{bottom:1012.110000px;}
.yd3{bottom:1012.650000px;}
.y72{bottom:1015.710000px;}
.yf5{bottom:1016.610000px;}
.y16e{bottom:1018.410000px;}
.yb7{bottom:1027.410000px;}
.y14b{bottom:1030.110000px;}
.y49{bottom:1036.410000px;}
.yf4{bottom:1037.310000px;}
.y99{bottom:1039.110000px;}
.y18{bottom:1041.810000px;}
.yb6{bottom:1048.110000px;}
.yd2{bottom:1048.650000px;}
.y48{bottom:1057.110000px;}
.yf3{bottom:1058.010000px;}
.y98{bottom:1059.810000px;}
.yb5{bottom:1068.810000px;}
.y17{bottom:1071.510000px;}
.y47{bottom:1077.810000px;}
.y97{bottom:1080.510000px;}
.yd1{bottom:1084.650000px;}
.yb4{bottom:1089.510000px;}
.y46{bottom:1098.510000px;}
.y16{bottom:1101.210000px;}
.y96{bottom:1110.210000px;}
.y45{bottom:1119.210000px;}
.ycf{bottom:1120.650000px;}
.y15{bottom:1130.910000px;}
.y44{bottom:1139.910000px;}
.y10{bottom:1193.220000px;}
.y1{bottom:1206.180000px;}
.y4{bottom:1207.980000px;}
.yf{bottom:1208.880000px;}
.h6{height:18.000000px;}
.h8{height:18.360000px;}
.h9{height:19.620000px;}
.hb{height:28.116000px;}
.h13{height:28.260000px;}
.h12{height:34.847578px;}
.h1c{height:35.100000px;}
.h1b{height:35.136000px;}
.h17{height:35.280000px;}
.h18{height:35.316000px;}
.h11{height:40.254961px;}
.hf{height:41.362031px;}
.ha{height:49.868086px;}
.h16{height:51.239531px;}
.h5{height:52.020000px;}
.h1d{height:52.380000px;}
.h19{height:52.560000px;}
.h2{height:53.820000px;}
.hc{height:55.275469px;}
.h21{height:59.439023px;}
.hd{height:60.082031px;}
.h14{height:61.171875px;}
.h7{height:61.189805px;}
.he{height:61.734375px;}
.h10{height:65.122031px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h1f{height:71.136000px;}
.h1e{height:71.280000px;}
.h15{height:115.776000px;}
.h1a{height:115.920000px;}
.h20{height:421.920000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:30.960000px;}
.wa{width:34.920000px;}
.wc{width:59.040000px;}
.w21{width:59.580000px;}
.w17{width:59.976000px;}
.w13{width:60.120000px;}
.w25{width:65.556000px;}
.w1c{width:70.236000px;}
.w1a{width:71.856000px;}
.w10{width:74.880000px;}
.w3{width:75.060000px;}
.we{width:75.240000px;}
.wf{width:75.420000px;}
.wd{width:75.456000px;}
.w18{width:76.860000px;}
.w1e{width:77.256000px;}
.w15{width:77.940000px;}
.w14{width:77.976000px;}
.w16{width:78.120000px;}
.w1f{width:79.560000px;}
.w22{width:81.360000px;}
.w26{width:83.160000px;}
.w24{width:84.240000px;}
.w8{width:84.990000px;}
.w19{width:87.840000px;}
.w1b{width:90.900000px;}
.w23{width:116.676000px;}
.w1d{width:126.000000px;}
.w6{width:170.100000px;}
.w5{width:175.890000px;}
.w4{width:184.530000px;}
.w20{width:189.930000px;}
.wb{width:210.090000px;}
.w12{width:223.770000px;}
.w2{width:383.115000px;}
.w27{width:644.580000px;}
.w9{width:892.979973px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:1.440000px;}
.x1c{left:5.220000px;}
.xb{left:10.800000px;}
.x43{left:17.496000px;}
.x5{left:21.960000px;}
.x1a{left:28.620000px;}
.x1e{left:34.920000px;}
.x20{left:43.020000px;}
.x6{left:61.380000px;}
.x39{left:79.815000px;}
.x44{left:85.320000px;}
.x9{left:106.235987px;}
.xc{left:108.755987px;}
.x25{left:110.376000px;}
.x19{left:111.455987px;}
.x3e{left:113.760000px;}
.xd{left:123.335987px;}
.x11{left:136.475987px;}
.x17{left:139.895987px;}
.x1b{left:141.156000px;}
.x2{left:148.005000px;}
.x14{left:156.449987px;}
.x47{left:160.229987px;}
.x1{left:165.270000px;}
.x3a{left:169.305000px;}
.x15{left:177.329987px;}
.x2c{left:183.090000px;}
.x3f{left:203.250000px;}
.xe{left:232.049987px;}
.x12{left:254.549987px;}
.x3b{left:262.620000px;}
.x2d{left:270.930000px;}
.x45{left:287.715000px;}
.x32{left:296.175000px;}
.x18{left:322.274987px;}
.x16{left:340.274987px;}
.x2e{left:342.795000px;}
.x1d{left:351.255000px;}
.x33{left:355.755000px;}
.x26{left:365.115000px;}
.x7{left:378.075000px;}
.x40{left:389.805000px;}
.x1f{left:410.295000px;}
.x27{left:425.235000px;}
.x2f{left:433.695000px;}
.x34{left:437.115000px;}
.x13{left:446.474987px;}
.x3c{left:452.955000px;}
.x21{left:485.745000px;}
.x41{left:486.870000px;}
.x28{left:503.205000px;}
.x46{left:533.444987px;}
.x3d{left:542.445000px;}
.x35{left:553.785000px;}
.x22{left:560.985000px;}
.x42{left:576.360000px;}
.x29{left:581.145000px;}
.x30{left:629.925000px;}
.x23{left:636.405000px;}
.x36{left:638.025000px;}
.xf{left:654.764973px;}
.x2a{left:659.265000px;}
.x10{left:660.929987px;}
.x8{left:662.730000px;}
.x37{left:703.590000px;}
.x31{left:707.190000px;}
.x24{left:711.870000px;}
.x2b{left:719.250000px;}
.x4{left:765.510000px;}
.x38{left:769.289987px;}
.xa{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.768000pt;}
.lsf{letter-spacing:1.920000pt;}
.ls10{letter-spacing:5.120000pt;}
.lse{letter-spacing:7.168000pt;}
.lsa{letter-spacing:16.640000pt;}
.ls9{letter-spacing:17.920000pt;}
.lsb{letter-spacing:22.400000pt;}
.lsc{letter-spacing:25.600000pt;}
.ls11{letter-spacing:33.872640pt;}
.wsd{word-spacing:-53.120000pt;}
.wsc{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.ws1{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:26.206933pt;}
.wsb{word-spacing:69.753600pt;}
.ws8{word-spacing:89.390507pt;}
.ws9{word-spacing:92.675627pt;}
._1f{margin-left:-4.230613pt;}
._5{margin-left:-3.164373pt;}
._4{margin-left:-2.133333pt;}
._0{margin-left:-1.059840pt;}
._1{width:0.903040pt;}
._2{width:1.970560pt;}
._15{width:3.648000pt;}
._11{width:5.376000pt;}
._f{width:6.464000pt;}
._10{width:8.192000pt;}
._18{width:9.792000pt;}
._8{width:11.328000pt;}
._7{width:12.480000pt;}
._a{width:14.044160pt;}
._9{width:14.947840pt;}
._b{width:16.888960pt;}
._c{width:17.813120pt;}
._1c{width:18.768000pt;}
._e{width:19.832320pt;}
._d{width:20.771840pt;}
._19{width:21.844480pt;}
._20{width:23.203840pt;}
._17{width:24.128000pt;}
._1e{width:25.472000pt;}
._1a{width:26.560000pt;}
._1b{width:27.968000pt;}
._16{width:29.376000pt;}
._12{width:30.976000pt;}
._13{width:32.156800pt;}
._14{width:33.396267pt;}
._1d{width:34.624000pt;}
._23{width:35.939840pt;}
._24{width:36.941440pt;}
._2d{width:37.938560pt;}
._27{width:41.024000pt;}
._28{width:44.736000pt;}
._21{width:45.888000pt;}
._22{width:47.104000pt;}
._2c{width:52.892160pt;}
._2b{width:53.923840pt;}
._2a{width:101.312000pt;}
._29{width:102.656000pt;}
._25{width:141.139840pt;}
._26{width:158.789973pt;}
._3{width:172.778667pt;}
._6{width:1657.365333pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y9{bottom:-10.720000pt;}
.yb{bottom:-10.400000pt;}
.ye{bottom:-9.280000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.160000pt;}
.ya{bottom:4.480000pt;}
.yd{bottom:5.600000pt;}
.yd0{bottom:10.720000pt;}
.yde{bottom:10.746667pt;}
.y9f{bottom:10.880000pt;}
.yc0{bottom:10.906667pt;}
.ya9{bottom:10.920000pt;}
.y14{bottom:11.226667pt;}
.y43{bottom:11.360000pt;}
.y6{bottom:16.000000pt;}
.y11e{bottom:16.133333pt;}
.y3{bottom:17.600000pt;}
.yc{bottom:17.920000pt;}
.yad{bottom:18.560000pt;}
.y7{bottom:19.040000pt;}
.yec{bottom:26.080000pt;}
.yae{bottom:26.240000pt;}
.yf2{bottom:26.720000pt;}
.yef{bottom:26.880000pt;}
.yd4{bottom:31.200000pt;}
.y5{bottom:33.120000pt;}
.y2{bottom:34.720000pt;}
.y11d{bottom:44.253333pt;}
.y9e{bottom:46.720000pt;}
.y12{bottom:51.040000pt;}
.y113{bottom:61.600000pt;}
.y11{bottom:65.120000pt;}
.y10b{bottom:75.013333pt;}
.ybf{bottom:82.560000pt;}
.y114{bottom:94.333333pt;}
.y41{bottom:97.280000pt;}
.y14a{bottom:101.120000pt;}
.ybe{bottom:103.040000pt;}
.y71{bottom:105.120000pt;}
.y16d{bottom:106.720000pt;}
.y95{bottom:107.520000pt;}
.y137{bottom:110.720000pt;}
.y111{bottom:111.386667pt;}
.yb3{bottom:113.760000pt;}
.yce{bottom:114.720000pt;}
.y40{bottom:120.480000pt;}
.y109{bottom:122.080000pt;}
.yf1{bottom:123.360000pt;}
.y94{bottom:125.920000pt;}
.y115{bottom:127.106667pt;}
.y136{bottom:129.120000pt;}
.y70{bottom:131.520000pt;}
.y16c{bottom:133.120000pt;}
.y3f{bottom:136.320000pt;}
.y3e{bottom:141.600000pt;}
.y93{bottom:144.320000pt;}
.yb2{bottom:145.760000pt;}
.ycd{bottom:146.720000pt;}
.y135{bottom:147.520000pt;}
.y108{bottom:148.480000pt;}
.y16b{bottom:151.520000pt;}
.yf0{bottom:155.360000pt;}
.y6f{bottom:157.920000pt;}
.y116{bottom:159.840000pt;}
.y10f{bottom:159.906667pt;}
.y3d{bottom:161.120000pt;}
.y134{bottom:165.920000pt;}
.y107{bottom:166.880000pt;}
.y16a{bottom:169.920000pt;}
.y92{bottom:170.720000pt;}
.y6e{bottom:176.346667pt;}
.yb1{bottom:177.786667pt;}
.ycc{bottom:178.746667pt;}
.y10d{bottom:182.373333pt;}
.y133{bottom:184.346667pt;}
.y106{bottom:185.306667pt;}
.yee{bottom:187.386667pt;}
.y117{bottom:192.613333pt;}
.y3c{bottom:193.946667pt;}
.y169{bottom:196.346667pt;}
.y91{bottom:197.146667pt;}
.y6d{bottom:202.746667pt;}
.y105{bottom:203.706667pt;}
.yb0{bottom:209.786667pt;}
.ycb{bottom:210.746667pt;}
.y3b{bottom:212.346667pt;}
.y168{bottom:214.746667pt;}
.yed{bottom:219.386667pt;}
.y112{bottom:220.546667pt;}
.y132{bottom:221.146667pt;}
.y90{bottom:223.546667pt;}
.y118{bottom:225.346667pt;}
.y6c{bottom:229.146667pt;}
.y104{bottom:230.106667pt;}
.y3a{bottom:230.746667pt;}
.y167{bottom:241.146667pt;}
.yaf{bottom:241.786667pt;}
.y8f{bottom:241.946667pt;}
.yca{bottom:242.746667pt;}
.y110{bottom:244.800000pt;}
.y131{bottom:247.546667pt;}
.y103{bottom:248.506667pt;}
.y39{bottom:249.146667pt;}
.yeb{bottom:251.386667pt;}
.y6b{bottom:255.546667pt;}
.y10e{bottom:257.533333pt;}
.y119{bottom:258.080000pt;}
.y166{bottom:259.546667pt;}
.y8e{bottom:260.346667pt;}
.y130{bottom:265.946667pt;}
.y102{bottom:266.906667pt;}
.y38{bottom:267.546667pt;}
.yac{bottom:273.786667pt;}
.yc9{bottom:274.746667pt;}
.y165{bottom:277.946667pt;}
.y8d{bottom:278.746667pt;}
.y6a{bottom:281.946667pt;}
.y12f{bottom:284.346667pt;}
.y37{bottom:285.946667pt;}
.y11a{bottom:290.853333pt;}
.y101{bottom:293.306667pt;}
.y17c{bottom:296.346667pt;}
.y8c{bottom:297.146667pt;}
.y69{bottom:300.346667pt;}
.y12e{bottom:302.746667pt;}
.y36{bottom:304.346667pt;}
.yc8{bottom:306.746667pt;}
.yea{bottom:310.266667pt;}
.y100{bottom:311.706667pt;}
.y8b{bottom:315.546667pt;}
.y68{bottom:318.746667pt;}
.yab{bottom:321.146667pt;}
.y35{bottom:322.746667pt;}
.y149{bottom:323.546667pt;}
.y11b{bottom:323.586667pt;}
.ye9{bottom:328.666667pt;}
.y164{bottom:330.746667pt;}
.y10c{bottom:332.706667pt;}
.y8a{bottom:333.946667pt;}
.y67{bottom:337.146667pt;}
.yff{bottom:338.106667pt;}
.yc7{bottom:338.746667pt;}
.y12d{bottom:339.546667pt;}
.y34{bottom:341.146667pt;}
.y148{bottom:341.946667pt;}
.y17b{bottom:349.146667pt;}
.y89{bottom:352.346667pt;}
.yaa{bottom:353.146667pt;}
.ye8{bottom:354.906667pt;}
.y66{bottom:355.546667pt;}
.y11c{bottom:356.320000pt;}
.y163{bottom:357.146667pt;}
.y12c{bottom:357.946667pt;}
.y33{bottom:359.546667pt;}
.yfe{bottom:360.986667pt;}
.y10a{bottom:362.080000pt;}
.y147{bottom:368.346667pt;}
.y88{bottom:370.746667pt;}
.y65{bottom:373.946667pt;}
.y162{bottom:375.546667pt;}
.y12b{bottom:376.346667pt;}
.y32{bottom:377.946667pt;}
.ye7{bottom:381.306667pt;}
.ya8{bottom:385.146667pt;}
.y64{bottom:392.386667pt;}
.y161{bottom:393.986667pt;}
.y146{bottom:394.786667pt;}
.y31{bottom:396.386667pt;}
.y87{bottom:397.186667pt;}
.ye6{bottom:399.746667pt;}
.yc6{bottom:402.786667pt;}
.y63{bottom:410.786667pt;}
.y30{bottom:414.786667pt;}
.ya7{bottom:417.186667pt;}
.ye5{bottom:418.146667pt;}
.y160{bottom:420.386667pt;}
.y12a{bottom:421.186667pt;}
.y86{bottom:423.586667pt;}
.y62{bottom:429.186667pt;}
.y2f{bottom:433.186667pt;}
.yc5{bottom:434.786667pt;}
.ye4{bottom:436.546667pt;}
.y15f{bottom:438.786667pt;}
.y129{bottom:439.586667pt;}
.y61{bottom:447.586667pt;}
.ya6{bottom:449.186667pt;}
.y85{bottom:449.986667pt;}
.y2e{bottom:451.586667pt;}
.ye3{bottom:454.946667pt;}
.y15e{bottom:457.186667pt;}
.y128{bottom:457.986667pt;}
.y17a{bottom:465.186667pt;}
.y60{bottom:465.986667pt;}
.yc4{bottom:466.786667pt;}
.y2d{bottom:469.986667pt;}
.ye2{bottom:473.346667pt;}
.y145{bottom:473.986667pt;}
.y84{bottom:476.386667pt;}
.ya5{bottom:481.186667pt;}
.y15d{bottom:483.586667pt;}
.y5f{bottom:484.386667pt;}
.y2c{bottom:488.386667pt;}
.y144{bottom:492.386667pt;}
.y83{bottom:494.786667pt;}
.ye1{bottom:497.026667pt;}
.yc3{bottom:498.786667pt;}
.y15c{bottom:501.986667pt;}
.y5e{bottom:502.786667pt;}
.y2b{bottom:506.786667pt;}
.y179{bottom:509.986667pt;}
.y143{bottom:510.786667pt;}
.y82{bottom:513.186667pt;}
.y5d{bottom:521.186667pt;}
.y2a{bottom:525.186667pt;}
.y15b{bottom:528.386667pt;}
.ye0{bottom:529.026667pt;}
.y142{bottom:529.186667pt;}
.yc2{bottom:530.786667pt;}
.y127{bottom:531.586667pt;}
.y5c{bottom:539.586667pt;}
.y29{bottom:543.586667pt;}
.ya4{bottom:545.186667pt;}
.y15a{bottom:546.786667pt;}
.y42{bottom:548.866667pt;}
.y178{bottom:554.786667pt;}
.y141{bottom:555.586667pt;}
.y5b{bottom:557.986667pt;}
.ydf{bottom:561.026667pt;}
.y28{bottom:561.986667pt;}
.yc1{bottom:562.786667pt;}
.y159{bottom:565.186667pt;}
.y177{bottom:573.186667pt;}
.y140{bottom:573.986667pt;}
.y5a{bottom:576.386667pt;}
.ya3{bottom:577.186667pt;}
.y27{bottom:580.386667pt;}
.y13{bottom:589.026667pt;}
.y158{bottom:591.586667pt;}
.y13f{bottom:592.386667pt;}
.ydd{bottom:593.026667pt;}
.y59{bottom:594.786667pt;}
.y26{bottom:598.786667pt;}
.y176{bottom:599.613333pt;}
.y81{bottom:602.813333pt;}
.ya2{bottom:609.213333pt;}
.y13e{bottom:610.813333pt;}
.y58{bottom:613.213333pt;}
.y157{bottom:618.013333pt;}
.y80{bottom:621.213333pt;}
.ydc{bottom:625.053333pt;}
.y25{bottom:625.213333pt;}
.ybd{bottom:626.813333pt;}
.y13d{bottom:629.213333pt;}
.y57{bottom:631.613333pt;}
.y156{bottom:636.413333pt;}
.y7f{bottom:639.613333pt;}
.ya1{bottom:641.213333pt;}
.y175{bottom:644.413333pt;}
.y13c{bottom:647.613333pt;}
.y56{bottom:650.013333pt;}
.y24{bottom:651.613333pt;}
.y155{bottom:654.813333pt;}
.y7e{bottom:658.013333pt;}
.y174{bottom:662.813333pt;}
.y13b{bottom:666.013333pt;}
.y55{bottom:668.413333pt;}
.ydb{bottom:668.573333pt;}
.ya0{bottom:673.213333pt;}
.y7d{bottom:676.413333pt;}
.y154{bottom:681.213333pt;}
.y23{bottom:684.093333pt;}
.y13a{bottom:684.413333pt;}
.y54{bottom:686.813333pt;}
.yda{bottom:686.973333pt;}
.y173{bottom:689.213333pt;}
.y153{bottom:699.613333pt;}
.y7c{bottom:702.813333pt;}
.y53{bottom:705.213333pt;}
.y172{bottom:707.613333pt;}
.y22{bottom:710.493333pt;}
.y126{bottom:713.213333pt;}
.yd9{bottom:713.373333pt;}
.y152{bottom:718.013333pt;}
.y7b{bottom:721.213333pt;}
.y52{bottom:723.613333pt;}
.y139{bottom:729.213333pt;}
.y21{bottom:730.813333pt;}
.y125{bottom:731.613333pt;}
.y171{bottom:734.013333pt;}
.y9d{bottom:737.213333pt;}
.y7a{bottom:739.613333pt;}
.yd8{bottom:739.773333pt;}
.y51{bottom:742.013333pt;}
.y151{bottom:744.413333pt;}
.y138{bottom:747.613333pt;}
.yfd{bottom:748.573333pt;}
.y124{bottom:750.013333pt;}
.y170{bottom:752.413333pt;}
.yd7{bottom:758.173333pt;}
.y50{bottom:760.413333pt;}
.y150{bottom:762.813333pt;}
.y20{bottom:763.293333pt;}
.y79{bottom:766.013333pt;}
.yfc{bottom:766.973333pt;}
.y123{bottom:768.413333pt;}
.y16f{bottom:770.813333pt;}
.yd6{bottom:776.573333pt;}
.y4f{bottom:778.813333pt;}
.y14f{bottom:781.213333pt;}
.y1f{bottom:783.613333pt;}
.y78{bottom:784.413333pt;}
.yfb{bottom:785.373333pt;}
.ybc{bottom:786.813333pt;}
.yd5{bottom:794.813333pt;}
.y4e{bottom:797.213333pt;}
.y77{bottom:802.813333pt;}
.yfa{bottom:803.773333pt;}
.y122{bottom:805.213333pt;}
.y14e{bottom:807.613333pt;}
.y1e{bottom:810.013333pt;}
.ybb{bottom:813.253333pt;}
.y4d{bottom:815.653333pt;}
.y76{bottom:821.253333pt;}
.yf9{bottom:822.213333pt;}
.y121{bottom:823.653333pt;}
.y14d{bottom:826.053333pt;}
.yba{bottom:831.653333pt;}
.y1d{bottom:836.453333pt;}
.y75{bottom:839.653333pt;}
.yf8{bottom:840.453333pt;}
.y4c{bottom:842.053333pt;}
.y9c{bottom:852.453333pt;}
.y1c{bottom:854.853333pt;}
.yb9{bottom:858.053333pt;}
.y120{bottom:860.453333pt;}
.y74{bottom:866.053333pt;}
.yf7{bottom:866.853333pt;}
.y4b{bottom:868.453333pt;}
.y9b{bottom:870.853333pt;}
.yb8{bottom:876.453333pt;}
.y11f{bottom:878.853333pt;}
.y1a{bottom:881.253333pt;}
.y73{bottom:884.453333pt;}
.yf6{bottom:885.253333pt;}
.y1b{bottom:886.533333pt;}
.y14c{bottom:889.253333pt;}
.y4a{bottom:894.853333pt;}
.y9a{bottom:897.253333pt;}
.y19{bottom:899.653333pt;}
.yd3{bottom:900.133333pt;}
.y72{bottom:902.853333pt;}
.yf5{bottom:903.653333pt;}
.y16e{bottom:905.253333pt;}
.yb7{bottom:913.253333pt;}
.y14b{bottom:915.653333pt;}
.y49{bottom:921.253333pt;}
.yf4{bottom:922.053333pt;}
.y99{bottom:923.653333pt;}
.y18{bottom:926.053333pt;}
.yb6{bottom:931.653333pt;}
.yd2{bottom:932.133333pt;}
.y48{bottom:939.653333pt;}
.yf3{bottom:940.453333pt;}
.y98{bottom:942.053333pt;}
.yb5{bottom:950.053333pt;}
.y17{bottom:952.453333pt;}
.y47{bottom:958.053333pt;}
.y97{bottom:960.453333pt;}
.yd1{bottom:964.133333pt;}
.yb4{bottom:968.453333pt;}
.y46{bottom:976.453333pt;}
.y16{bottom:978.853333pt;}
.y96{bottom:986.853333pt;}
.y45{bottom:994.853333pt;}
.ycf{bottom:996.133333pt;}
.y15{bottom:1005.253333pt;}
.y44{bottom:1013.253333pt;}
.y10{bottom:1060.640000pt;}
.y1{bottom:1072.160000pt;}
.y4{bottom:1073.760000pt;}
.yf{bottom:1074.560000pt;}
.h6{height:16.000000pt;}
.h8{height:16.320000pt;}
.h9{height:17.440000pt;}
.hb{height:24.992000pt;}
.h13{height:25.120000pt;}
.h12{height:30.975625pt;}
.h1c{height:31.200000pt;}
.h1b{height:31.232000pt;}
.h17{height:31.360000pt;}
.h18{height:31.392000pt;}
.h11{height:35.782187pt;}
.hf{height:36.766250pt;}
.ha{height:44.327188pt;}
.h16{height:45.546250pt;}
.h5{height:46.240000pt;}
.h1d{height:46.560000pt;}
.h19{height:46.720000pt;}
.h2{height:47.840000pt;}
.hc{height:49.133750pt;}
.h21{height:52.834688pt;}
.hd{height:53.406250pt;}
.h14{height:54.375000pt;}
.h7{height:54.390938pt;}
.he{height:54.875000pt;}
.h10{height:57.886250pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h1f{height:63.232000pt;}
.h1e{height:63.360000pt;}
.h15{height:102.912000pt;}
.h1a{height:103.040000pt;}
.h20{height:375.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:27.520000pt;}
.wa{width:31.040000pt;}
.wc{width:52.480000pt;}
.w21{width:52.960000pt;}
.w17{width:53.312000pt;}
.w13{width:53.440000pt;}
.w25{width:58.272000pt;}
.w1c{width:62.432000pt;}
.w1a{width:63.872000pt;}
.w10{width:66.560000pt;}
.w3{width:66.720000pt;}
.we{width:66.880000pt;}
.wf{width:67.040000pt;}
.wd{width:67.072000pt;}
.w18{width:68.320000pt;}
.w1e{width:68.672000pt;}
.w15{width:69.280000pt;}
.w14{width:69.312000pt;}
.w16{width:69.440000pt;}
.w1f{width:70.720000pt;}
.w22{width:72.320000pt;}
.w26{width:73.920000pt;}
.w24{width:74.880000pt;}
.w8{width:75.546667pt;}
.w19{width:78.080000pt;}
.w1b{width:80.800000pt;}
.w23{width:103.712000pt;}
.w1d{width:112.000000pt;}
.w6{width:151.200000pt;}
.w5{width:156.346667pt;}
.w4{width:164.026667pt;}
.w20{width:168.826667pt;}
.wb{width:186.746667pt;}
.w12{width:198.906667pt;}
.w2{width:340.546667pt;}
.w27{width:572.960000pt;}
.w9{width:793.759976pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:1.280000pt;}
.x1c{left:4.640000pt;}
.xb{left:9.600000pt;}
.x43{left:15.552000pt;}
.x5{left:19.520000pt;}
.x1a{left:25.440000pt;}
.x1e{left:31.040000pt;}
.x20{left:38.240000pt;}
.x6{left:54.560000pt;}
.x39{left:70.946667pt;}
.x44{left:75.840000pt;}
.x9{left:94.431988pt;}
.xc{left:96.671988pt;}
.x25{left:98.112000pt;}
.x19{left:99.071988pt;}
.x3e{left:101.120000pt;}
.xd{left:109.631988pt;}
.x11{left:121.311988pt;}
.x17{left:124.351988pt;}
.x1b{left:125.472000pt;}
.x2{left:131.560000pt;}
.x14{left:139.066655pt;}
.x47{left:142.426655pt;}
.x1{left:146.906667pt;}
.x3a{left:150.493333pt;}
.x15{left:157.626655pt;}
.x2c{left:162.746667pt;}
.x3f{left:180.666667pt;}
.xe{left:206.266655pt;}
.x12{left:226.266655pt;}
.x3b{left:233.440000pt;}
.x2d{left:240.826667pt;}
.x45{left:255.746667pt;}
.x32{left:263.266667pt;}
.x18{left:286.466655pt;}
.x16{left:302.466655pt;}
.x2e{left:304.706667pt;}
.x1d{left:312.226667pt;}
.x33{left:316.226667pt;}
.x26{left:324.546667pt;}
.x7{left:336.066667pt;}
.x40{left:346.493333pt;}
.x1f{left:364.706667pt;}
.x27{left:377.986667pt;}
.x2f{left:385.506667pt;}
.x34{left:388.546667pt;}
.x13{left:396.866655pt;}
.x3c{left:402.626667pt;}
.x21{left:431.773333pt;}
.x41{left:432.773333pt;}
.x28{left:447.293333pt;}
.x46{left:474.173322pt;}
.x3d{left:482.173333pt;}
.x35{left:492.253333pt;}
.x22{left:498.653333pt;}
.x42{left:512.320000pt;}
.x29{left:516.573333pt;}
.x30{left:559.933333pt;}
.x23{left:565.693333pt;}
.x36{left:567.133333pt;}
.xf{left:582.013310pt;}
.x2a{left:586.013333pt;}
.x10{left:587.493322pt;}
.x8{left:589.093333pt;}
.x37{left:625.413333pt;}
.x31{left:628.613333pt;}
.x24{left:632.773333pt;}
.x2b{left:639.333333pt;}
.x4{left:680.453333pt;}
.x38{left:683.813322pt;}
.xa{left:718.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; }
  