
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_508dd43ab748d97c6e053b35.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ec59959ada4d4ecb3c3d783.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_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.751953;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_436083091ba4a864f36dcca7.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lse{letter-spacing:-0.942000px;}
.ls7{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.181200px;}
.lsa{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.045360px;}
.ls5{letter-spacing:0.161760px;}
.ls3{letter-spacing:0.169920px;}
.lsb{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.506720px;}
.ls4{letter-spacing:37.386720px;}
.ls0{letter-spacing:41.868000px;}
.ls8{letter-spacing:46.026720px;}
.ls12{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws8{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.wse{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.105360px;}
.ws1{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.878800px;}
.ws2{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-1.122480px;}
._1{width:1.135440px;}
._5{width:2.153040px;}
._e{width:3.192480px;}
._b{width:4.212000px;}
._c{width:5.616000px;}
._18{width:7.175520px;}
._d{width:8.254800px;}
._a{width:9.347520px;}
._9{width:10.476000px;}
._7{width:11.610000px;}
._19{width:13.266720px;}
._8{width:14.903040px;}
._17{width:16.710240px;}
._15{width:17.806800px;}
._14{width:19.123200px;}
._24{width:20.890080px;}
._16{width:22.170960px;}
._26{width:23.171520px;}
._1b{width:24.201120px;}
._1a{width:25.624080px;}
._1f{width:27.190800px;}
._1e{width:28.744560px;}
._25{width:30.114960px;}
._20{width:31.672800px;}
._22{width:32.868000px;}
._21{width:34.302240px;}
._10{width:35.424000px;}
._35{width:36.463680px;}
._23{width:37.529280px;}
._12{width:39.341520px;}
._11{width:41.352480px;}
._28{width:43.146720px;}
._27{width:44.341920px;}
._1d{width:47.200080px;}
._1c{width:48.525120px;}
._29{width:50.198400px;}
._2c{width:51.931440px;}
._f{width:53.298000px;}
._2b{width:57.252000px;}
._2a{width:58.445280px;}
._2d{width:61.433280px;}
._32{width:69.560400px;}
._37{width:74.959680px;}
._33{width:83.903040px;}
._13{width:87.804000px;}
._3{width:131.442960px;}
._34{width:171.451440px;}
._39{width:190.216080px;}
._38{width:191.530800px;}
._2f{width:205.454880px;}
._2e{width:206.769600px;}
._31{width:255.713040px;}
._2{width:342.981120px;}
._30{width:633.814560px;}
._36{width:1132.750800px;}
._6{width:1230.455760px;}
._0{width:2857.020000px;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.520000px;}
.y4a{bottom:2.556000px;}
.y3e{bottom:2.880000px;}
.y18{bottom:3.240000px;}
.y36{bottom:6.120000px;}
.y7{bottom:8.316000px;}
.y48{bottom:8.496000px;}
.y3c{bottom:9.540000px;}
.yc{bottom:14.040000px;}
.y12d{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y11e{bottom:16.380000px;}
.y49{bottom:16.416000px;}
.y100{bottom:16.920000px;}
.ye2{bottom:17.100000px;}
.y34{bottom:19.260000px;}
.y129{bottom:20.520000px;}
.y3b{bottom:25.200000px;}
.y12c{bottom:30.060000px;}
.y11d{bottom:30.240000px;}
.yd0{bottom:31.680000px;}
.ya{bottom:35.460000px;}
.y33{bottom:35.820000px;}
.y128{bottom:37.800000px;}
.yd6{bottom:38.880000px;}
.y3a{bottom:40.680000px;}
.y4b{bottom:41.400000px;}
.y11c{bottom:43.920000px;}
.y32{bottom:51.300000px;}
.y127{bottom:55.080000px;}
.y39{bottom:56.160000px;}
.y11b{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y12b{bottom:58.320000px;}
.y47{bottom:64.080000px;}
.y31{bottom:66.780000px;}
.y38{bottom:71.640000px;}
.y126{bottom:72.405000px;}
.y30{bottom:82.260000px;}
.y2b{bottom:87.885000px;}
.y125{bottom:89.505000px;}
.y2f{bottom:97.950000px;}
.y2a{bottom:103.545000px;}
.y3d{bottom:106.245000px;}
.y124{bottom:106.785000px;}
.yd5{bottom:109.296000px;}
.yae{bottom:112.176000px;}
.y81{bottom:112.536000px;}
.y2e{bottom:113.430000px;}
.y29{bottom:119.025000px;}
.y91{bottom:119.556000px;}
.y118{bottom:123.336000px;}
.y46{bottom:123.696000px;}
.ydb{bottom:123.876000px;}
.yad{bottom:126.576000px;}
.y2d{bottom:128.910000px;}
.y80{bottom:129.816000px;}
.y90{bottom:130.716000px;}
.y28{bottom:134.505000px;}
.yda{bottom:138.456000px;}
.y45{bottom:140.256000px;}
.y117{bottom:140.616000px;}
.yac{bottom:143.856000px;}
.y7f{bottom:147.096000px;}
.y27{bottom:149.985000px;}
.yd9{bottom:153.030000px;}
.y44{bottom:154.650000px;}
.y116{bottom:157.890000px;}
.yab{bottom:161.130000px;}
.y12e{bottom:161.310000px;}
.y7e{bottom:164.190000px;}
.y26{bottom:165.645000px;}
.yd8{bottom:167.610000px;}
.y43{bottom:171.930000px;}
.y115{bottom:175.170000px;}
.y12a{bottom:175.350000px;}
.yaa{bottom:178.410000px;}
.y25{bottom:181.125000px;}
.y7d{bottom:181.470000px;}
.yd7{bottom:182.010000px;}
.y42{bottom:189.210000px;}
.y114{bottom:192.450000px;}
.ya9{bottom:195.690000px;}
.ycf{bottom:196.590000px;}
.y24{bottom:196.605000px;}
.y7c{bottom:198.750000px;}
.y41{bottom:206.490000px;}
.y113{bottom:209.730000px;}
.yd4{bottom:211.170000px;}
.y23{bottom:212.085000px;}
.ya8{bottom:212.970000px;}
.y7b{bottom:216.030000px;}
.y40{bottom:224.310000px;}
.yd3{bottom:225.750000px;}
.y112{bottom:226.830000px;}
.y22{bottom:227.745000px;}
.ya7{bottom:230.070000px;}
.y7a{bottom:233.310000px;}
.yd2{bottom:240.330000px;}
.y21{bottom:243.225000px;}
.y3f{bottom:243.390000px;}
.y111{bottom:244.110000px;}
.ya6{bottom:245.730000px;}
.y123{bottom:248.430000px;}
.y79{bottom:250.590000px;}
.yd1{bottom:254.910000px;}
.ya5{bottom:255.270000px;}
.y19{bottom:256.710000px;}
.y20{bottom:258.705000px;}
.y110{bottom:261.390000px;}
.ya4{bottom:266.610000px;}
.y78{bottom:267.690000px;}
.yce{bottom:269.310000px;}
.y1f{bottom:274.185000px;}
.y10f{bottom:278.670000px;}
.ycd{bottom:283.890000px;}
.y77{bottom:284.970000px;}
.y1e{bottom:289.845000px;}
.y10e{bottom:295.950000px;}
.ycc{bottom:300.090000px;}
.y76{bottom:302.250000px;}
.y1d{bottom:305.325000px;}
.ycb{bottom:309.630000px;}
.y10d{bottom:313.050000px;}
.y75{bottom:319.575000px;}
.y1c{bottom:320.835000px;}
.yca{bottom:324.255000px;}
.y10c{bottom:330.375000px;}
.y1b{bottom:336.315000px;}
.y74{bottom:336.855000px;}
.yc9{bottom:341.355000px;}
.y10b{bottom:347.655000px;}
.y1a{bottom:352.335000px;}
.y73{bottom:354.135000px;}
.y8f{bottom:357.555000px;}
.yc8{bottom:358.635000px;}
.y10a{bottom:364.935000px;}
.y8e{bottom:367.095000px;}
.y72{bottom:371.235000px;}
.y122{bottom:372.495000px;}
.yc7{bottom:375.915000px;}
.y37{bottom:376.275000px;}
.y8d{bottom:380.955000px;}
.y109{bottom:381.495000px;}
.y71{bottom:388.515000px;}
.y121{bottom:389.775000px;}
.yc6{bottom:393.195000px;}
.y108{bottom:393.555000px;}
.y8c{bottom:395.355000px;}
.y70{bottom:405.795000px;}
.y120{bottom:407.055000px;}
.y107{bottom:407.955000px;}
.yc5{bottom:410.475000px;}
.y8b{bottom:412.635000px;}
.y106{bottom:422.535000px;}
.y6f{bottom:423.075000px;}
.y11f{bottom:424.335000px;}
.yc4{bottom:427.755000px;}
.y8a{bottom:429.915000px;}
.y105{bottom:437.115000px;}
.y11a{bottom:438.915000px;}
.y6e{bottom:440.355000px;}
.yc3{bottom:444.855000px;}
.y89{bottom:447.195000px;}
.y104{bottom:451.695000px;}
.y6d{bottom:457.455000px;}
.y35{bottom:461.235000px;}
.yc2{bottom:462.135000px;}
.y88{bottom:464.475000px;}
.y103{bottom:466.275000px;}
.y6c{bottom:474.735000px;}
.yc1{bottom:479.415000px;}
.yff{bottom:480.855000px;}
.y87{bottom:481.755000px;}
.y2c{bottom:482.115000px;}
.y6b{bottom:492.015000px;}
.y102{bottom:495.255000px;}
.yc0{bottom:496.695000px;}
.y86{bottom:497.235000px;}
.y85{bottom:506.775000px;}
.y119{bottom:508.755000px;}
.y6a{bottom:509.295000px;}
.y101{bottom:509.835000px;}
.ybf{bottom:513.975000px;}
.y84{bottom:518.115000px;}
.yfa{bottom:524.415000px;}
.y69{bottom:526.575000px;}
.ybe{bottom:531.075000px;}
.yfe{bottom:538.995000px;}
.y68{bottom:543.855000px;}
.ybd{bottom:548.355000px;}
.yfd{bottom:553.575000px;}
.ya3{bottom:560.775000px;}
.y67{bottom:560.955000px;}
.ybc{bottom:565.635000px;}
.yfc{bottom:568.185000px;}
.ya2{bottom:570.345000px;}
.y66{bottom:578.265000px;}
.yfb{bottom:582.585000px;}
.ybb{bottom:582.945000px;}
.ya1{bottom:584.025000px;}
.y65{bottom:595.545000px;}
.yf4{bottom:597.165000px;}
.ya0{bottom:598.605000px;}
.yba{bottom:600.225000px;}
.yf9{bottom:611.745000px;}
.y64{bottom:612.825000px;}
.y9f{bottom:615.885000px;}
.yb9{bottom:617.505000px;}
.y17{bottom:624.345000px;}
.yf8{bottom:626.325000px;}
.y63{bottom:630.105000px;}
.y9e{bottom:633.165000px;}
.yb8{bottom:634.605000px;}
.yf7{bottom:640.905000px;}
.y62{bottom:647.385000px;}
.y9d{bottom:650.445000px;}
.yb7{bottom:651.885000px;}
.yf6{bottom:655.305000px;}
.y16{bottom:658.905000px;}
.y61{bottom:664.485000px;}
.y9c{bottom:667.545000px;}
.yb6{bottom:669.165000px;}
.yf5{bottom:669.885000px;}
.y15{bottom:678.885000px;}
.y60{bottom:681.765000px;}
.yf0{bottom:684.465000px;}
.y9b{bottom:684.825000px;}
.yb5{bottom:686.445000px;}
.y5f{bottom:699.045000px;}
.y9a{bottom:702.105000px;}
.yb4{bottom:703.725000px;}
.y14{bottom:707.325000px;}
.yf3{bottom:713.625000px;}
.y5e{bottom:716.325000px;}
.y99{bottom:719.385000px;}
.yb3{bottom:721.005000px;}
.y83{bottom:726.765000px;}
.yf2{bottom:728.205000px;}
.y13{bottom:729.825000px;}
.y5d{bottom:733.605000px;}
.y82{bottom:736.305000px;}
.yb2{bottom:736.485000px;}
.y98{bottom:736.665000px;}
.yf1{bottom:742.605000px;}
.yb1{bottom:746.025000px;}
.y12{bottom:746.925000px;}
.y5c{bottom:750.885000px;}
.y97{bottom:753.765000px;}
.yef{bottom:757.185000px;}
.yb0{bottom:757.365000px;}
.y11{bottom:759.525000px;}
.y5b{bottom:767.985000px;}
.y96{bottom:769.425000px;}
.yee{bottom:771.765000px;}
.y95{bottom:778.965000px;}
.y10{bottom:780.585000px;}
.y5a{bottom:785.265000px;}
.yed{bottom:787.965000px;}
.y94{bottom:790.305000px;}
.yec{bottom:797.505000px;}
.y59{bottom:802.545000px;}
.yeb{bottom:811.185000px;}
.yf{bottom:811.725000px;}
.y58{bottom:819.870000px;}
.yea{bottom:825.090000px;}
.y57{bottom:837.150000px;}
.ye{bottom:842.730000px;}
.ye9{bottom:851.730000px;}
.y56{bottom:854.250000px;}
.ye8{bottom:866.310000px;}
.y55{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.ye7{bottom:880.710000px;}
.yb{bottom:887.010000px;}
.y54{bottom:888.810000px;}
.ye6{bottom:895.290000px;}
.y53{bottom:906.090000px;}
.ye5{bottom:909.870000px;}
.y52{bottom:923.370000px;}
.ye1{bottom:924.450000px;}
.ye4{bottom:939.030000px;}
.y51{bottom:940.650000px;}
.ye3{bottom:953.610000px;}
.y50{bottom:957.750000px;}
.ydc{bottom:968.010000px;}
.y4f{bottom:975.030000px;}
.ye0{bottom:982.590000px;}
.y4e{bottom:992.310000px;}
.ydf{bottom:997.170000px;}
.y4d{bottom:1009.590000px;}
.yde{bottom:1011.750000px;}
.y93{bottom:1017.330000px;}
.yaf{bottom:1020.030000px;}
.ydd{bottom:1026.330000px;}
.y4c{bottom:1026.870000px;}
.y92{bottom:1029.570000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h25{height:13.680000px;}
.h23{height:13.860000px;}
.h26{height:13.860150px;}
.h10{height:17.280000px;}
.h17{height:20.160000px;}
.h1e{height:21.114844px;}
.h22{height:21.336328px;}
.hd{height:27.147656px;}
.h4{height:27.576000px;}
.h20{height:29.464453px;}
.h6{height:33.683203px;}
.h1f{height:34.036523px;}
.h13{height:37.705078px;}
.h19{height:38.100586px;}
.h21{height:39.147891px;}
.h7{height:39.336328px;}
.h12{height:39.972656px;}
.h15{height:39.999023px;}
.h5{height:41.726953px;}
.hf{height:42.164648px;}
.h28{height:42.840000px;}
.h1c{height:43.506914px;}
.h1b{height:44.236406px;}
.h16{height:44.265586px;}
.h9{height:46.251562px;}
.h1d{height:48.027656px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h1{height:58.429688px;}
.h2a{height:69.120000px;}
.h24{height:72.000000px;}
.h29{height:72.036000px;}
.h2c{height:72.360000px;}
.he{height:75.410156px;}
.hb{height:76.201172px;}
.h18{height:84.240000px;}
.h27{height:86.580000px;}
.h1a{height:118.836000px;}
.h2b{height:120.816000px;}
.h14{height:141.516000px;}
.h8{height:153.900000px;}
.h11{height:366.915000px;}
.h0{height:1188.000000px;}
.w15{width:10.440000px;}
.wd{width:17.460000px;}
.w10{width:34.776000px;}
.w7{width:36.396000px;}
.w2{width:45.036000px;}
.we{width:84.420000px;}
.w16{width:92.520000px;}
.w8{width:102.600000px;}
.w11{width:103.680000px;}
.w9{width:116.136000px;}
.w12{width:117.756000px;}
.w6{width:201.270000px;}
.wb{width:235.470000px;}
.w14{width:236.910000px;}
.w13{width:295.050000px;}
.wa{width:297.390000px;}
.w17{width:329.295000px;}
.w5{width:607.425000px;}
.wc{width:753.765000px;}
.w3{width:783.510000px;}
.wf{width:791.070000px;}
.w18{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x26{left:2.880000px;}
.x43{left:4.680000px;}
.x14{left:6.660000px;}
.x5{left:8.640000px;}
.x56{left:12.420000px;}
.x30{left:13.860000px;}
.x2b{left:15.120000px;}
.x17{left:18.045000px;}
.x2a{left:19.080000px;}
.x13{left:20.205000px;}
.x27{left:21.420000px;}
.x15{left:24.705000px;}
.x16{left:26.505000px;}
.x3b{left:28.080000px;}
.x36{left:30.060000px;}
.x49{left:31.320000px;}
.x4d{left:32.580000px;}
.x46{left:33.840000px;}
.x39{left:35.094000px;}
.x4a{left:36.540000px;}
.x3d{left:39.960000px;}
.x35{left:43.020000px;}
.x8{left:45.540000px;}
.x2c{left:48.240000px;}
.x4b{left:49.860000px;}
.x33{left:52.020000px;}
.x4{left:53.999986px;}
.x2d{left:55.080000px;}
.x38{left:57.960000px;}
.x3{left:60.659986px;}
.x25{left:63.540000px;}
.x18{left:65.519986px;}
.x53{left:80.130000px;}
.x52{left:85.140000px;}
.x51{left:86.759986px;}
.x42{left:99.036000px;}
.x6{left:100.836000px;}
.x4f{left:101.925000px;}
.x3f{left:104.265000px;}
.x7{left:108.035986px;}
.x48{left:110.196000px;}
.x2f{left:114.705000px;}
.x32{left:119.016000px;}
.xb{left:122.975986px;}
.xe{left:128.555986px;}
.x4e{left:131.040000px;}
.x40{left:132.120000px;}
.x4c{left:133.920000px;}
.x3e{left:135.000000px;}
.x45{left:144.540000px;}
.x2e{left:145.620000px;}
.x47{left:147.420000px;}
.x1{left:150.509986px;}
.xf{left:163.289986px;}
.x20{left:182.549986px;}
.x1d{left:203.789986px;}
.x24{left:210.089986px;}
.x41{left:211.709986px;}
.x2{left:220.709986px;}
.x1e{left:290.594986px;}
.x55{left:295.635000px;}
.x28{left:321.015000px;}
.x3a{left:327.279000px;}
.x37{left:355.539000px;}
.x31{left:357.519000px;}
.x34{left:360.759000px;}
.x3c{left:362.955000px;}
.x10{left:366.014986px;}
.xd{left:381.494986px;}
.x21{left:386.174986px;}
.x1a{left:405.794986px;}
.xa{left:459.074986px;}
.x1b{left:461.954986px;}
.xc{left:464.294986px;}
.x11{left:465.374986px;}
.x19{left:478.334986px;}
.x50{left:505.364986px;}
.x54{left:526.604986px;}
.x44{left:617.685000px;}
.x29{left:619.125000px;}
.x12{left:661.245000px;}
.x1c{left:718.529986px;}
.x1f{left:738.329986px;}
.x23{left:763.709986px;}
.x9{left:812.490000px;}
.x22{left:814.649986px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.837333pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.161067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls5{letter-spacing:0.143787pt;}
.ls3{letter-spacing:0.151040pt;}
.lsb{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls4{letter-spacing:33.232640pt;}
.ls0{letter-spacing:37.216000pt;}
.ls8{letter-spacing:40.912640pt;}
.ls12{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.760320pt;}
.ws1{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.558933pt;}
.ws2{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-0.997760pt;}
._1{width:1.009280pt;}
._5{width:1.913813pt;}
._e{width:2.837760pt;}
._b{width:3.744000pt;}
._c{width:4.992000pt;}
._18{width:6.378240pt;}
._d{width:7.337600pt;}
._a{width:8.308907pt;}
._9{width:9.312000pt;}
._7{width:10.320000pt;}
._19{width:11.792640pt;}
._8{width:13.247147pt;}
._17{width:14.853547pt;}
._15{width:15.828267pt;}
._14{width:16.998400pt;}
._24{width:18.568960pt;}
._16{width:19.707520pt;}
._26{width:20.596907pt;}
._1b{width:21.512107pt;}
._1a{width:22.776960pt;}
._1f{width:24.169600pt;}
._1e{width:25.550720pt;}
._25{width:26.768853pt;}
._20{width:28.153600pt;}
._22{width:29.216000pt;}
._21{width:30.490880pt;}
._10{width:31.488000pt;}
._35{width:32.412160pt;}
._23{width:33.359360pt;}
._12{width:34.970240pt;}
._11{width:36.757760pt;}
._28{width:38.352640pt;}
._27{width:39.415040pt;}
._1d{width:41.955627pt;}
._1c{width:43.133440pt;}
._29{width:44.620800pt;}
._2c{width:46.161280pt;}
._f{width:47.376000pt;}
._2b{width:50.890667pt;}
._2a{width:51.951360pt;}
._2d{width:54.607360pt;}
._32{width:61.831467pt;}
._37{width:66.630827pt;}
._33{width:74.580480pt;}
._13{width:78.048000pt;}
._3{width:116.838187pt;}
._34{width:152.401280pt;}
._39{width:169.080960pt;}
._38{width:170.249600pt;}
._2f{width:182.626560pt;}
._2e{width:183.795200pt;}
._31{width:227.300480pt;}
._2{width:304.872107pt;}
._30{width:563.390720pt;}
._36{width:1006.889600pt;}
._6{width:1093.738453pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.240000pt;}
.y4a{bottom:2.272000pt;}
.y3e{bottom:2.560000pt;}
.y18{bottom:2.880000pt;}
.y36{bottom:5.440000pt;}
.y7{bottom:7.392000pt;}
.y48{bottom:7.552000pt;}
.y3c{bottom:8.480000pt;}
.yc{bottom:12.480000pt;}
.y12d{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y11e{bottom:14.560000pt;}
.y49{bottom:14.592000pt;}
.y100{bottom:15.040000pt;}
.ye2{bottom:15.200000pt;}
.y34{bottom:17.120000pt;}
.y129{bottom:18.240000pt;}
.y3b{bottom:22.400000pt;}
.y12c{bottom:26.720000pt;}
.y11d{bottom:26.880000pt;}
.yd0{bottom:28.160000pt;}
.ya{bottom:31.520000pt;}
.y33{bottom:31.840000pt;}
.y128{bottom:33.600000pt;}
.yd6{bottom:34.560000pt;}
.y3a{bottom:36.160000pt;}
.y4b{bottom:36.800000pt;}
.y11c{bottom:39.040000pt;}
.y32{bottom:45.600000pt;}
.y127{bottom:48.960000pt;}
.y39{bottom:49.920000pt;}
.y11b{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y12b{bottom:51.840000pt;}
.y47{bottom:56.960000pt;}
.y31{bottom:59.360000pt;}
.y38{bottom:63.680000pt;}
.y126{bottom:64.360000pt;}
.y30{bottom:73.120000pt;}
.y2b{bottom:78.120000pt;}
.y125{bottom:79.560000pt;}
.y2f{bottom:87.066667pt;}
.y2a{bottom:92.040000pt;}
.y3d{bottom:94.440000pt;}
.y124{bottom:94.920000pt;}
.yd5{bottom:97.152000pt;}
.yae{bottom:99.712000pt;}
.y81{bottom:100.032000pt;}
.y2e{bottom:100.826667pt;}
.y29{bottom:105.800000pt;}
.y91{bottom:106.272000pt;}
.y118{bottom:109.632000pt;}
.y46{bottom:109.952000pt;}
.ydb{bottom:110.112000pt;}
.yad{bottom:112.512000pt;}
.y2d{bottom:114.586667pt;}
.y80{bottom:115.392000pt;}
.y90{bottom:116.192000pt;}
.y28{bottom:119.560000pt;}
.yda{bottom:123.072000pt;}
.y45{bottom:124.672000pt;}
.y117{bottom:124.992000pt;}
.yac{bottom:127.872000pt;}
.y7f{bottom:130.752000pt;}
.y27{bottom:133.320000pt;}
.yd9{bottom:136.026667pt;}
.y44{bottom:137.466667pt;}
.y116{bottom:140.346667pt;}
.yab{bottom:143.226667pt;}
.y12e{bottom:143.386667pt;}
.y7e{bottom:145.946667pt;}
.y26{bottom:147.240000pt;}
.yd8{bottom:148.986667pt;}
.y43{bottom:152.826667pt;}
.y115{bottom:155.706667pt;}
.y12a{bottom:155.866667pt;}
.yaa{bottom:158.586667pt;}
.y25{bottom:161.000000pt;}
.y7d{bottom:161.306667pt;}
.yd7{bottom:161.786667pt;}
.y42{bottom:168.186667pt;}
.y114{bottom:171.066667pt;}
.ya9{bottom:173.946667pt;}
.ycf{bottom:174.746667pt;}
.y24{bottom:174.760000pt;}
.y7c{bottom:176.666667pt;}
.y41{bottom:183.546667pt;}
.y113{bottom:186.426667pt;}
.yd4{bottom:187.706667pt;}
.y23{bottom:188.520000pt;}
.ya8{bottom:189.306667pt;}
.y7b{bottom:192.026667pt;}
.y40{bottom:199.386667pt;}
.yd3{bottom:200.666667pt;}
.y112{bottom:201.626667pt;}
.y22{bottom:202.440000pt;}
.ya7{bottom:204.506667pt;}
.y7a{bottom:207.386667pt;}
.yd2{bottom:213.626667pt;}
.y21{bottom:216.200000pt;}
.y3f{bottom:216.346667pt;}
.y111{bottom:216.986667pt;}
.ya6{bottom:218.426667pt;}
.y123{bottom:220.826667pt;}
.y79{bottom:222.746667pt;}
.yd1{bottom:226.586667pt;}
.ya5{bottom:226.906667pt;}
.y19{bottom:228.186667pt;}
.y20{bottom:229.960000pt;}
.y110{bottom:232.346667pt;}
.ya4{bottom:236.986667pt;}
.y78{bottom:237.946667pt;}
.yce{bottom:239.386667pt;}
.y1f{bottom:243.720000pt;}
.y10f{bottom:247.706667pt;}
.ycd{bottom:252.346667pt;}
.y77{bottom:253.306667pt;}
.y1e{bottom:257.640000pt;}
.y10e{bottom:263.066667pt;}
.ycc{bottom:266.746667pt;}
.y76{bottom:268.666667pt;}
.y1d{bottom:271.400000pt;}
.ycb{bottom:275.226667pt;}
.y10d{bottom:278.266667pt;}
.y75{bottom:284.066667pt;}
.y1c{bottom:285.186667pt;}
.yca{bottom:288.226667pt;}
.y10c{bottom:293.666667pt;}
.y1b{bottom:298.946667pt;}
.y74{bottom:299.426667pt;}
.yc9{bottom:303.426667pt;}
.y10b{bottom:309.026667pt;}
.y1a{bottom:313.186667pt;}
.y73{bottom:314.786667pt;}
.y8f{bottom:317.826667pt;}
.yc8{bottom:318.786667pt;}
.y10a{bottom:324.386667pt;}
.y8e{bottom:326.306667pt;}
.y72{bottom:329.986667pt;}
.y122{bottom:331.106667pt;}
.yc7{bottom:334.146667pt;}
.y37{bottom:334.466667pt;}
.y8d{bottom:338.626667pt;}
.y109{bottom:339.106667pt;}
.y71{bottom:345.346667pt;}
.y121{bottom:346.466667pt;}
.yc6{bottom:349.506667pt;}
.y108{bottom:349.826667pt;}
.y8c{bottom:351.426667pt;}
.y70{bottom:360.706667pt;}
.y120{bottom:361.826667pt;}
.y107{bottom:362.626667pt;}
.yc5{bottom:364.866667pt;}
.y8b{bottom:366.786667pt;}
.y106{bottom:375.586667pt;}
.y6f{bottom:376.066667pt;}
.y11f{bottom:377.186667pt;}
.yc4{bottom:380.226667pt;}
.y8a{bottom:382.146667pt;}
.y105{bottom:388.546667pt;}
.y11a{bottom:390.146667pt;}
.y6e{bottom:391.426667pt;}
.yc3{bottom:395.426667pt;}
.y89{bottom:397.506667pt;}
.y104{bottom:401.506667pt;}
.y6d{bottom:406.626667pt;}
.y35{bottom:409.986667pt;}
.yc2{bottom:410.786667pt;}
.y88{bottom:412.866667pt;}
.y103{bottom:414.466667pt;}
.y6c{bottom:421.986667pt;}
.yc1{bottom:426.146667pt;}
.yff{bottom:427.426667pt;}
.y87{bottom:428.226667pt;}
.y2c{bottom:428.546667pt;}
.y6b{bottom:437.346667pt;}
.y102{bottom:440.226667pt;}
.yc0{bottom:441.506667pt;}
.y86{bottom:441.986667pt;}
.y85{bottom:450.466667pt;}
.y119{bottom:452.226667pt;}
.y6a{bottom:452.706667pt;}
.y101{bottom:453.186667pt;}
.ybf{bottom:456.866667pt;}
.y84{bottom:460.546667pt;}
.yfa{bottom:466.146667pt;}
.y69{bottom:468.066667pt;}
.ybe{bottom:472.066667pt;}
.yfe{bottom:479.106667pt;}
.y68{bottom:483.426667pt;}
.ybd{bottom:487.426667pt;}
.yfd{bottom:492.066667pt;}
.ya3{bottom:498.466667pt;}
.y67{bottom:498.626667pt;}
.ybc{bottom:502.786667pt;}
.yfc{bottom:505.053333pt;}
.ya2{bottom:506.973333pt;}
.y66{bottom:514.013333pt;}
.yfb{bottom:517.853333pt;}
.ybb{bottom:518.173333pt;}
.ya1{bottom:519.133333pt;}
.y65{bottom:529.373333pt;}
.yf4{bottom:530.813333pt;}
.ya0{bottom:532.093333pt;}
.yba{bottom:533.533333pt;}
.yf9{bottom:543.773333pt;}
.y64{bottom:544.733333pt;}
.y9f{bottom:547.453333pt;}
.yb9{bottom:548.893333pt;}
.y17{bottom:554.973333pt;}
.yf8{bottom:556.733333pt;}
.y63{bottom:560.093333pt;}
.y9e{bottom:562.813333pt;}
.yb8{bottom:564.093333pt;}
.yf7{bottom:569.693333pt;}
.y62{bottom:575.453333pt;}
.y9d{bottom:578.173333pt;}
.yb7{bottom:579.453333pt;}
.yf6{bottom:582.493333pt;}
.y16{bottom:585.693333pt;}
.y61{bottom:590.653333pt;}
.y9c{bottom:593.373333pt;}
.yb6{bottom:594.813333pt;}
.yf5{bottom:595.453333pt;}
.y15{bottom:603.453333pt;}
.y60{bottom:606.013333pt;}
.yf0{bottom:608.413333pt;}
.y9b{bottom:608.733333pt;}
.yb5{bottom:610.173333pt;}
.y5f{bottom:621.373333pt;}
.y9a{bottom:624.093333pt;}
.yb4{bottom:625.533333pt;}
.y14{bottom:628.733333pt;}
.yf3{bottom:634.333333pt;}
.y5e{bottom:636.733333pt;}
.y99{bottom:639.453333pt;}
.yb3{bottom:640.893333pt;}
.y83{bottom:646.013333pt;}
.yf2{bottom:647.293333pt;}
.y13{bottom:648.733333pt;}
.y5d{bottom:652.093333pt;}
.y82{bottom:654.493333pt;}
.yb2{bottom:654.653333pt;}
.y98{bottom:654.813333pt;}
.yf1{bottom:660.093333pt;}
.yb1{bottom:663.133333pt;}
.y12{bottom:663.933333pt;}
.y5c{bottom:667.453333pt;}
.y97{bottom:670.013333pt;}
.yef{bottom:673.053333pt;}
.yb0{bottom:673.213333pt;}
.y11{bottom:675.133333pt;}
.y5b{bottom:682.653333pt;}
.y96{bottom:683.933333pt;}
.yee{bottom:686.013333pt;}
.y95{bottom:692.413333pt;}
.y10{bottom:693.853333pt;}
.y5a{bottom:698.013333pt;}
.yed{bottom:700.413333pt;}
.y94{bottom:702.493333pt;}
.yec{bottom:708.893333pt;}
.y59{bottom:713.373333pt;}
.yeb{bottom:721.053333pt;}
.yf{bottom:721.533333pt;}
.y58{bottom:728.773333pt;}
.yea{bottom:733.413333pt;}
.y57{bottom:744.133333pt;}
.ye{bottom:749.093333pt;}
.ye9{bottom:757.093333pt;}
.y56{bottom:759.333333pt;}
.ye8{bottom:770.053333pt;}
.y55{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.ye7{bottom:782.853333pt;}
.yb{bottom:788.453333pt;}
.y54{bottom:790.053333pt;}
.ye6{bottom:795.813333pt;}
.y53{bottom:805.413333pt;}
.ye5{bottom:808.773333pt;}
.y52{bottom:820.773333pt;}
.ye1{bottom:821.733333pt;}
.ye4{bottom:834.693333pt;}
.y51{bottom:836.133333pt;}
.ye3{bottom:847.653333pt;}
.y50{bottom:851.333333pt;}
.ydc{bottom:860.453333pt;}
.y4f{bottom:866.693333pt;}
.ye0{bottom:873.413333pt;}
.y4e{bottom:882.053333pt;}
.ydf{bottom:886.373333pt;}
.y4d{bottom:897.413333pt;}
.yde{bottom:899.333333pt;}
.y93{bottom:904.293333pt;}
.yaf{bottom:906.693333pt;}
.ydd{bottom:912.293333pt;}
.y4c{bottom:912.773333pt;}
.y92{bottom:915.173333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h25{height:12.160000pt;}
.h23{height:12.320000pt;}
.h26{height:12.320133pt;}
.h10{height:15.360000pt;}
.h17{height:17.920000pt;}
.h1e{height:18.768750pt;}
.h22{height:18.965625pt;}
.hd{height:24.131250pt;}
.h4{height:24.512000pt;}
.h20{height:26.190625pt;}
.h6{height:29.940625pt;}
.h1f{height:30.254687pt;}
.h13{height:33.515625pt;}
.h19{height:33.867188pt;}
.h21{height:34.798125pt;}
.h7{height:34.965625pt;}
.h12{height:35.531250pt;}
.h15{height:35.554688pt;}
.h5{height:37.090625pt;}
.hf{height:37.479688pt;}
.h28{height:38.080000pt;}
.h1c{height:38.672812pt;}
.h1b{height:39.321250pt;}
.h16{height:39.347188pt;}
.h9{height:41.112500pt;}
.h1d{height:42.691250pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h1{height:51.937500pt;}
.h2a{height:61.440000pt;}
.h24{height:64.000000pt;}
.h29{height:64.032000pt;}
.h2c{height:64.320000pt;}
.he{height:67.031250pt;}
.hb{height:67.734375pt;}
.h18{height:74.880000pt;}
.h27{height:76.960000pt;}
.h1a{height:105.632000pt;}
.h2b{height:107.392000pt;}
.h14{height:125.792000pt;}
.h8{height:136.800000pt;}
.h11{height:326.146667pt;}
.h0{height:1056.000000pt;}
.w15{width:9.280000pt;}
.wd{width:15.520000pt;}
.w10{width:30.912000pt;}
.w7{width:32.352000pt;}
.w2{width:40.032000pt;}
.we{width:75.040000pt;}
.w16{width:82.240000pt;}
.w8{width:91.200000pt;}
.w11{width:92.160000pt;}
.w9{width:103.232000pt;}
.w12{width:104.672000pt;}
.w6{width:178.906667pt;}
.wb{width:209.306667pt;}
.w14{width:210.586667pt;}
.w13{width:262.266667pt;}
.wa{width:264.346667pt;}
.w17{width:292.706667pt;}
.w5{width:539.933333pt;}
.wc{width:670.013333pt;}
.w3{width:696.453333pt;}
.wf{width:703.173333pt;}
.w18{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x26{left:2.560000pt;}
.x43{left:4.160000pt;}
.x14{left:5.920000pt;}
.x5{left:7.680000pt;}
.x56{left:11.040000pt;}
.x30{left:12.320000pt;}
.x2b{left:13.440000pt;}
.x17{left:16.040000pt;}
.x2a{left:16.960000pt;}
.x13{left:17.960000pt;}
.x27{left:19.040000pt;}
.x15{left:21.960000pt;}
.x16{left:23.560000pt;}
.x3b{left:24.960000pt;}
.x36{left:26.720000pt;}
.x49{left:27.840000pt;}
.x4d{left:28.960000pt;}
.x46{left:30.080000pt;}
.x39{left:31.194667pt;}
.x4a{left:32.480000pt;}
.x3d{left:35.520000pt;}
.x35{left:38.240000pt;}
.x8{left:40.480000pt;}
.x2c{left:42.880000pt;}
.x4b{left:44.320000pt;}
.x33{left:46.240000pt;}
.x4{left:47.999988pt;}
.x2d{left:48.960000pt;}
.x38{left:51.520000pt;}
.x3{left:53.919988pt;}
.x25{left:56.480000pt;}
.x18{left:58.239988pt;}
.x53{left:71.226667pt;}
.x52{left:75.680000pt;}
.x51{left:77.119988pt;}
.x42{left:88.032000pt;}
.x6{left:89.632000pt;}
.x4f{left:90.600000pt;}
.x3f{left:92.680000pt;}
.x7{left:96.031988pt;}
.x48{left:97.952000pt;}
.x2f{left:101.960000pt;}
.x32{left:105.792000pt;}
.xb{left:109.311988pt;}
.xe{left:114.271988pt;}
.x4e{left:116.480000pt;}
.x40{left:117.440000pt;}
.x4c{left:119.040000pt;}
.x3e{left:120.000000pt;}
.x45{left:128.480000pt;}
.x2e{left:129.440000pt;}
.x47{left:131.040000pt;}
.x1{left:133.786655pt;}
.xf{left:145.146655pt;}
.x20{left:162.266655pt;}
.x1d{left:181.146655pt;}
.x24{left:186.746655pt;}
.x41{left:188.186655pt;}
.x2{left:196.186655pt;}
.x1e{left:258.306655pt;}
.x55{left:262.786667pt;}
.x28{left:285.346667pt;}
.x3a{left:290.914667pt;}
.x37{left:316.034667pt;}
.x31{left:317.794667pt;}
.x34{left:320.674667pt;}
.x3c{left:322.626667pt;}
.x10{left:325.346655pt;}
.xd{left:339.106655pt;}
.x21{left:343.266655pt;}
.x1a{left:360.706655pt;}
.xa{left:408.066655pt;}
.x1b{left:410.626655pt;}
.xc{left:412.706655pt;}
.x11{left:413.666655pt;}
.x19{left:425.186655pt;}
.x50{left:449.213321pt;}
.x54{left:468.093321pt;}
.x44{left:549.053333pt;}
.x29{left:550.333333pt;}
.x12{left:587.773333pt;}
.x1c{left:638.693321pt;}
.x1f{left:656.293321pt;}
.x23{left:678.853321pt;}
.x9{left:722.213333pt;}
.x22{left:724.133321pt;}
}




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