
    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_7c3a12f3ad61f1f1d294cfb0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986328;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_7f0d6ce7aa52ff1961d6c3fd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a30b8049e2991bd4903c2e8c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_a93b0d9c13d472f274955ae1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f87da38273dbae888380f68e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.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_be4ffa147cdf6c56f122ade6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.747559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.774000px;}
.ls14{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.360000px;}
.ls16{letter-spacing:16.506720px;}
.ls10{letter-spacing:36.666720px;}
.ls3{letter-spacing:37.386720px;}
.ls11{letter-spacing:39.546720px;}
.ls2{letter-spacing:41.868000px;}
.lsb{letter-spacing:46.026720px;}
.lsf{letter-spacing:53.226720px;}
.lse{letter-spacing:69.786720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws1{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.479800px;}
.wse{word-spacing:-14.166000px;}
.ws8{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.790600px;}
.wsc{word-spacing:0.000000px;}
._3{margin-left:-1.026000px;}
._0{width:1.135440px;}
._5{width:2.390400px;}
._9{width:3.944160px;}
._16{width:4.986000px;}
._1c{width:6.954480px;}
._15{width:8.037360px;}
._8{width:9.093600px;}
._7{width:10.099440px;}
._c{width:11.294640px;}
._d{width:12.405360px;}
._19{width:13.530000px;}
._6{width:16.015680px;}
._f{width:17.758800px;}
._e{width:18.764640px;}
._14{width:20.676960px;}
._13{width:22.051440px;}
._12{width:23.067360px;}
._1b{width:24.350160px;}
._1a{width:25.398000px;}
._24{width:26.533440px;}
._1d{width:28.266480px;}
._18{width:29.999520px;}
._20{width:31.672800px;}
._10{width:33.166800px;}
._11{width:34.384080px;}
._21{width:35.431200px;}
._b{width:37.370160px;}
._a{width:38.425680px;}
._27{width:39.740400px;}
._1e{width:41.234400px;}
._1f{width:42.728400px;}
._25{width:43.916880px;}
._26{width:45.192000px;}
._2d{width:47.150640px;}
._32{width:49.119120px;}
._2c{width:50.351760px;}
._2b{width:51.402240px;}
._2a{width:53.915040px;}
._29{width:55.092960px;}
._23{width:58.026960px;}
._22{width:59.281920px;}
._31{width:64.002960px;}
._2f{width:65.018880px;}
._2e{width:66.094560px;}
._28{width:67.349520px;}
._17{width:68.796000px;}
._2{width:131.442960px;}
._1{width:342.981120px;}
._4{width:1037.311440px;}
._30{width:1659.360000px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y128{bottom:0.540000px;}
.y6{bottom:2.520000px;}
.y12f{bottom:2.880000px;}
.y14{bottom:3.240000px;}
.y37{bottom:5.940000px;}
.y4{bottom:8.316000px;}
.y86{bottom:9.360000px;}
.y89{bottom:9.540000px;}
.y9{bottom:14.040000px;}
.y87{bottom:16.200000px;}
.y5{bottom:16.236000px;}
.y8a{bottom:16.380000px;}
.y8d{bottom:16.425000px;}
.y12e{bottom:18.360000px;}
.y35{bottom:19.440000px;}
.y2c{bottom:20.340000px;}
.y3c{bottom:25.200000px;}
.y125{bottom:30.240000px;}
.y12d{bottom:33.840000px;}
.y7{bottom:35.460000px;}
.y34{bottom:35.850000px;}
.y2b{bottom:37.620000px;}
.y3b{bottom:40.680000px;}
.y124{bottom:43.920000px;}
.y12c{bottom:49.320000px;}
.y3e{bottom:49.905000px;}
.y33{bottom:51.330000px;}
.y2a{bottom:54.945000px;}
.y3a{bottom:56.160000px;}
.y3{bottom:58.140000px;}
.y12b{bottom:64.980000px;}
.y32{bottom:66.810000px;}
.y39{bottom:71.820000px;}
.y29{bottom:72.225000px;}
.y12a{bottom:80.460000px;}
.y31{bottom:82.470000px;}
.y28{bottom:89.505000px;}
.y129{bottom:95.940000px;}
.y30{bottom:97.950000px;}
.y27{bottom:106.785000px;}
.ydb{bottom:112.896000px;}
.y2f{bottom:113.430000px;}
.y11c{bottom:114.516000px;}
.y48{bottom:115.236000px;}
.y98{bottom:116.676000px;}
.y7c{bottom:123.876000px;}
.y26{bottom:123.885000px;}
.y2e{bottom:128.910000px;}
.yda{bottom:130.176000px;}
.y47{bottom:130.716000px;}
.y11b{bottom:131.796000px;}
.y97{bottom:133.956000px;}
.y9c{bottom:138.456000px;}
.y7b{bottom:141.156000px;}
.y25{bottom:141.165000px;}
.yd4{bottom:143.496000px;}
.y46{bottom:146.196000px;}
.yd9{bottom:147.456000px;}
.y11a{bottom:148.896000px;}
.y96{bottom:151.050000px;}
.y3d{bottom:153.225000px;}
.y7a{bottom:158.430000px;}
.y24{bottom:158.445000px;}
.yd3{bottom:160.770000px;}
.yd8{bottom:161.490000px;}
.y45{bottom:161.670000px;}
.y119{bottom:166.170000px;}
.y95{bottom:168.330000px;}
.y79{bottom:175.710000px;}
.y23{bottom:175.725000px;}
.y44{bottom:177.330000px;}
.yd2{bottom:178.050000px;}
.y118{bottom:183.450000px;}
.y94{bottom:185.610000px;}
.y43{bottom:192.810000px;}
.y78{bottom:192.990000px;}
.y22{bottom:193.005000px;}
.yd1{bottom:195.330000px;}
.y117{bottom:200.730000px;}
.y93{bottom:202.890000px;}
.y42{bottom:208.290000px;}
.y77{bottom:210.090000px;}
.y21{bottom:210.285000px;}
.yd0{bottom:212.610000px;}
.y116{bottom:218.010000px;}
.y92{bottom:220.170000px;}
.y41{bottom:223.770000px;}
.y76{bottom:227.370000px;}
.y20{bottom:227.385000px;}
.ycf{bottom:229.890000px;}
.y115{bottom:235.290000px;}
.y91{bottom:237.270000px;}
.y40{bottom:239.610000px;}
.y75{bottom:244.650000px;}
.y1f{bottom:244.665000px;}
.yce{bottom:246.990000px;}
.y114{bottom:252.390000px;}
.y90{bottom:254.550000px;}
.y3f{bottom:256.530000px;}
.y74{bottom:261.930000px;}
.y1e{bottom:261.945000px;}
.y121{bottom:264.090000px;}
.ycd{bottom:264.270000px;}
.y113{bottom:269.670000px;}
.y15{bottom:270.030000px;}
.y8f{bottom:271.830000px;}
.y73{bottom:279.210000px;}
.y1d{bottom:279.225000px;}
.y120{bottom:281.370000px;}
.ycc{bottom:281.550000px;}
.y8e{bottom:286.590000px;}
.y112{bottom:286.950000px;}
.yec{bottom:296.310000px;}
.y72{bottom:296.490000px;}
.y1c{bottom:296.505000px;}
.y11f{bottom:298.650000px;}
.ycb{bottom:298.830000px;}
.y8c{bottom:301.170000px;}
.y111{bottom:304.230000px;}
.y71{bottom:313.590000px;}
.y1b{bottom:313.815000px;}
.y11e{bottom:315.930000px;}
.yca{bottom:316.110000px;}
.y110{bottom:321.555000px;}
.y8b{bottom:329.475000px;}
.y1a{bottom:330.915000px;}
.y11d{bottom:333.255000px;}
.yc9{bottom:333.435000px;}
.y10f{bottom:338.835000px;}
.y88{bottom:344.055000px;}
.y19{bottom:348.195000px;}
.yc8{bottom:350.535000px;}
.y10e{bottom:355.935000px;}
.y127{bottom:365.295000px;}
.y18{bottom:365.475000px;}
.yc7{bottom:367.815000px;}
.y85{bottom:372.495000px;}
.y10d{bottom:373.215000px;}
.yeb{bottom:382.575000px;}
.y17{bottom:382.755000px;}
.yc6{bottom:385.095000px;}
.y10c{bottom:390.495000px;}
.y70{bottom:399.855000px;}
.y16{bottom:400.035000px;}
.y84{bottom:400.755000px;}
.yc5{bottom:402.375000px;}
.y10b{bottom:407.775000px;}
.yea{bottom:414.615000px;}
.y83{bottom:415.335000px;}
.y6f{bottom:417.135000px;}
.yc4{bottom:419.655000px;}
.y10a{bottom:425.055000px;}
.ye9{bottom:429.195000px;}
.y82{bottom:432.435000px;}
.y6e{bottom:434.415000px;}
.y38{bottom:436.575000px;}
.yc3{bottom:436.755000px;}
.y109{bottom:442.155000px;}
.ye8{bottom:443.775000px;}
.y81{bottom:447.015000px;}
.y6d{bottom:451.695000px;}
.yc2{bottom:454.035000px;}
.ye7{bottom:458.355000px;}
.y108{bottom:459.435000px;}
.y80{bottom:464.115000px;}
.y6c{bottom:468.975000px;}
.yc1{bottom:471.315000px;}
.y126{bottom:474.555000px;}
.ye6{bottom:474.915000px;}
.y107{bottom:476.715000px;}
.y7f{bottom:478.155000px;}
.ye5{bottom:485.715000px;}
.y6b{bottom:486.255000px;}
.yc0{bottom:488.595000px;}
.y123{bottom:489.135000px;}
.y106{bottom:493.995000px;}
.ye4{bottom:500.295000px;}
.y6a{bottom:503.355000px;}
.ybf{bottom:505.875000px;}
.y105{bottom:511.275000px;}
.ye3{bottom:515.055000px;}
.y69{bottom:520.635000px;}
.y36{bottom:521.715000px;}
.ybe{bottom:523.155000px;}
.y104{bottom:528.555000px;}
.ye2{bottom:529.635000px;}
.y68{bottom:537.915000px;}
.ybd{bottom:540.255000px;}
.y2d{bottom:542.415000px;}
.ye1{bottom:544.035000px;}
.y122{bottom:545.115000px;}
.y103{bottom:545.655000px;}
.y67{bottom:555.195000px;}
.ybc{bottom:557.535000px;}
.ye0{bottom:558.615000px;}
.y102{bottom:562.935000px;}
.y66{bottom:572.505000px;}
.ydf{bottom:573.225000px;}
.ybb{bottom:574.845000px;}
.y101{bottom:580.245000px;}
.y65{bottom:589.785000px;}
.yba{bottom:592.125000px;}
.y100{bottom:597.525000px;}
.yde{bottom:600.585000px;}
.y64{bottom:606.885000px;}
.yb9{bottom:609.405000px;}
.yff{bottom:614.805000px;}
.ydd{bottom:615.165000px;}
.y63{bottom:624.165000px;}
.yb8{bottom:626.685000px;}
.ydc{bottom:629.205000px;}
.yfe{bottom:632.085000px;}
.y62{bottom:641.445000px;}
.yb7{bottom:643.785000px;}
.yfd{bottom:649.185000px;}
.y9b{bottom:654.045000px;}
.y61{bottom:658.725000px;}
.yb6{bottom:661.065000px;}
.y9a{bottom:664.845000px;}
.yfc{bottom:666.465000px;}
.y60{bottom:676.005000px;}
.yb5{bottom:678.345000px;}
.y99{bottom:678.705000px;}
.yfb{bottom:683.745000px;}
.y13{bottom:684.825000px;}
.y5f{bottom:693.285000px;}
.yb4{bottom:695.625000px;}
.yfa{bottom:701.025000px;}
.y5e{bottom:710.385000px;}
.yb3{bottom:712.905000px;}
.yf9{bottom:718.305000px;}
.y12{bottom:719.385000px;}
.y5d{bottom:727.665000px;}
.yb2{bottom:730.185000px;}
.yf8{bottom:735.405000px;}
.y11{bottom:739.185000px;}
.y5c{bottom:744.945000px;}
.yb1{bottom:747.285000px;}
.yf7{bottom:752.685000px;}
.yd7{bottom:754.305000px;}
.y5b{bottom:762.225000px;}
.yb0{bottom:764.565000px;}
.yf6{bottom:767.445000px;}
.y10{bottom:768.165000px;}
.yd6{bottom:770.685000px;}
.y5a{bottom:779.505000px;}
.yaf{bottom:781.845000px;}
.yf5{bottom:782.025000px;}
.yd5{bottom:784.545000px;}
.yf{bottom:787.065000px;}
.y59{bottom:796.605000px;}
.yae{bottom:799.125000px;}
.ye{bottom:808.125000px;}
.yf4{bottom:810.465000px;}
.y58{bottom:813.885000px;}
.yad{bottom:816.405000px;}
.y7e{bottom:823.110000px;}
.yf3{bottom:824.910000px;}
.y57{bottom:831.210000px;}
.yac{bottom:833.550000px;}
.y7d{bottom:833.910000px;}
.yd{bottom:839.310000px;}
.y56{bottom:848.490000px;}
.yab{bottom:850.830000px;}
.yf2{bottom:853.350000px;}
.y55{bottom:865.770000px;}
.yaa{bottom:868.110000px;}
.yc{bottom:870.270000px;}
.yf1{bottom:881.610000px;}
.y54{bottom:883.050000px;}
.ya9{bottom:885.390000px;}
.yf0{bottom:896.190000px;}
.y53{bottom:900.150000px;}
.yb{bottom:901.410000px;}
.ya8{bottom:902.670000px;}
.yef{bottom:912.930000px;}
.y52{bottom:917.430000px;}
.ya7{bottom:919.950000px;}
.yee{bottom:923.730000px;}
.ya{bottom:930.210000px;}
.y51{bottom:934.710000px;}
.ya6{bottom:937.050000px;}
.yed{bottom:937.410000px;}
.y8{bottom:945.510000px;}
.y50{bottom:951.990000px;}
.ya5{bottom:954.330000px;}
.y4f{bottom:969.270000px;}
.ya4{bottom:971.610000px;}
.ya3{bottom:986.370000px;}
.y4e{bottom:986.550000px;}
.ya2{bottom:1000.950000px;}
.y4d{bottom:1003.650000px;}
.ya1{bottom:1015.530000px;}
.y4c{bottom:1020.930000px;}
.ya0{bottom:1030.110000px;}
.y4b{bottom:1038.210000px;}
.y9f{bottom:1044.510000px;}
.y4a{bottom:1055.490000px;}
.y9e{bottom:1061.610000px;}
.y49{bottom:1072.800000px;}
.y9d{bottom:1075.500000px;}
.y2{bottom:1102.680000px;}
.y1{bottom:1119.960000px;}
.h20{height:13.680000px;}
.h22{height:13.716000px;}
.h1b{height:13.860000px;}
.h1c{height:13.860150px;}
.h21{height:13.896000px;}
.he{height:17.100000px;}
.h13{height:19.980000px;}
.h1a{height:24.996094px;}
.h1f{height:25.136719px;}
.h1d{height:27.540000px;}
.h3{height:27.576000px;}
.h1e{height:27.720000px;}
.h5{height:33.683203px;}
.h19{height:34.036523px;}
.h15{height:37.705078px;}
.h16{height:38.100586px;}
.h6{height:39.336328px;}
.h11{height:39.999023px;}
.h4{height:41.726953px;}
.hd{height:42.164648px;}
.h18{height:43.506914px;}
.h12{height:44.265586px;}
.h2{height:45.024258px;}
.h8{height:46.251562px;}
.h9{height:49.906406px;}
.h1{height:50.800781px;}
.hb{height:53.224453px;}
.h23{height:55.260000px;}
.hc{height:75.410156px;}
.ha{height:76.201172px;}
.h14{height:84.420000px;}
.h24{height:108.540000px;}
.h10{height:141.516000px;}
.h7{height:153.930000px;}
.h17{height:165.810000px;}
.hf{height:413.895000px;}
.h0{height:1188.000000px;}
.w2{width:39.096000px;}
.w16{width:71.316000px;}
.w7{width:95.580000px;}
.w11{width:95.940000px;}
.wf{width:140.040000px;}
.w8{width:169.230000px;}
.w12{width:173.190000px;}
.wb{width:178.950000px;}
.w13{width:214.410000px;}
.wd{width:215.670000px;}
.w9{width:219.270000px;}
.w6{width:220.170000px;}
.wa{width:231.150000px;}
.w14{width:231.870000px;}
.w17{width:339.555000px;}
.w15{width:411.585000px;}
.wc{width:434.955000px;}
.we{width:501.195000px;}
.w10{width:576.825000px;}
.w5{width:588.345000px;}
.w3{width:788.190000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:6.480000px;}
.x3{left:8.460000px;}
.x4a{left:12.960000px;}
.x26{left:16.920000px;}
.x2d{left:18.900000px;}
.x10{left:19.980000px;}
.x24{left:21.060000px;}
.x2e{left:23.040000px;}
.x29{left:24.840000px;}
.x4e{left:25.920000px;}
.x14{left:27.360000px;}
.x28{left:28.440000px;}
.x2a{left:29.880000px;}
.x30{left:31.500000px;}
.x12{left:34.065000px;}
.x13{left:35.865000px;}
.x4c{left:37.440000px;}
.x21{left:39.960000px;}
.x23{left:41.400000px;}
.x1f{left:44.460000px;}
.x6{left:45.540000px;}
.x2b{left:47.160000px;}
.x4f{left:50.400000px;}
.x40{left:51.834000px;}
.x2{left:53.999986px;}
.x25{left:57.960000px;}
.x1{left:60.659986px;}
.x35{left:62.820000px;}
.x38{left:64.260000px;}
.x15{left:65.519986px;}
.x36{left:67.500000px;}
.x54{left:69.330000px;}
.x41{left:70.914000px;}
.x37{left:76.320000px;}
.x2c{left:80.640000px;}
.x50{left:88.199986px;}
.x17{left:90.719986px;}
.x9{left:93.275986px;}
.x27{left:95.220000px;}
.x2f{left:97.200000px;}
.x4{left:100.836000px;}
.x4d{left:104.985000px;}
.x5{left:108.035986px;}
.x42{left:115.920000px;}
.x52{left:121.170000px;}
.x53{left:122.790000px;}
.x48{left:125.685000px;}
.x46{left:142.245000px;}
.x47{left:144.225000px;}
.x33{left:151.770000px;}
.xd{left:158.069986px;}
.x34{left:183.990000px;}
.x1e{left:196.590000px;}
.x3f{left:220.890000px;}
.x49{left:227.369986px;}
.x44{left:241.050000px;}
.x1d{left:249.689986px;}
.x45{left:265.395000px;}
.x32{left:299.414986px;}
.x3e{left:316.695000px;}
.x43{left:325.694986px;}
.x3b{left:328.574986px;}
.x3d{left:330.014986px;}
.x31{left:331.274986px;}
.x1a{left:339.194986px;}
.x20{left:366.735000px;}
.x4b{left:370.875000px;}
.xc{left:407.774986px;}
.xa{left:422.174986px;}
.x8{left:459.074986px;}
.x1b{left:461.954986px;}
.xb{left:464.294986px;}
.xe{left:465.374986px;}
.x51{left:476.715000px;}
.x16{left:478.334986px;}
.x18{left:479.804986px;}
.x19{left:509.324986px;}
.x39{left:539.564986px;}
.x55{left:548.745000px;}
.x22{left:586.725000px;}
.xf{left:642.345000px;}
.x1c{left:726.629986px;}
.x3c{left:746.609986px;}
.x7{left:812.490000px;}
.x3a{left:869.939986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls14{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.320000pt;}
.ls16{letter-spacing:14.672640pt;}
.ls10{letter-spacing:32.592640pt;}
.ls3{letter-spacing:33.232640pt;}
.ls11{letter-spacing:35.152640pt;}
.ls2{letter-spacing:37.216000pt;}
.lsb{letter-spacing:40.912640pt;}
.lsf{letter-spacing:47.312640pt;}
.lse{letter-spacing:62.032640pt;}
.ws9{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.096533pt;}
.ws10{word-spacing:-12.870933pt;}
.wse{word-spacing:-12.592000pt;}
.ws8{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.480533pt;}
.wsc{word-spacing:0.000000pt;}
._3{margin-left:-0.912000pt;}
._0{width:1.009280pt;}
._5{width:2.124800pt;}
._9{width:3.505920pt;}
._16{width:4.432000pt;}
._1c{width:6.181760pt;}
._15{width:7.144320pt;}
._8{width:8.083200pt;}
._7{width:8.977280pt;}
._c{width:10.039680pt;}
._d{width:11.026987pt;}
._19{width:12.026667pt;}
._6{width:14.236160pt;}
._f{width:15.785600pt;}
._e{width:16.679680pt;}
._14{width:18.379520pt;}
._13{width:19.601280pt;}
._12{width:20.504320pt;}
._1b{width:21.644587pt;}
._1a{width:22.576000pt;}
._24{width:23.585280pt;}
._1d{width:25.125760pt;}
._18{width:26.666240pt;}
._20{width:28.153600pt;}
._10{width:29.481600pt;}
._11{width:30.563627pt;}
._21{width:31.494400pt;}
._b{width:33.217920pt;}
._a{width:34.156160pt;}
._27{width:35.324800pt;}
._1e{width:36.652800pt;}
._1f{width:37.980800pt;}
._25{width:39.037227pt;}
._26{width:40.170667pt;}
._2d{width:41.911680pt;}
._32{width:43.661440pt;}
._2c{width:44.757120pt;}
._2b{width:45.690880pt;}
._2a{width:47.924480pt;}
._29{width:48.971520pt;}
._23{width:51.579520pt;}
._22{width:52.695040pt;}
._31{width:56.891520pt;}
._2f{width:57.794560pt;}
._2e{width:58.750720pt;}
._28{width:59.866240pt;}
._17{width:61.152000pt;}
._2{width:116.838187pt;}
._1{width:304.872107pt;}
._4{width:922.054613pt;}
._30{width:1474.986667pt;}
.fs3{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y128{bottom:0.480000pt;}
.y6{bottom:2.240000pt;}
.y12f{bottom:2.560000pt;}
.y14{bottom:2.880000pt;}
.y37{bottom:5.280000pt;}
.y4{bottom:7.392000pt;}
.y86{bottom:8.320000pt;}
.y89{bottom:8.480000pt;}
.y9{bottom:12.480000pt;}
.y87{bottom:14.400000pt;}
.y5{bottom:14.432000pt;}
.y8a{bottom:14.560000pt;}
.y8d{bottom:14.600000pt;}
.y12e{bottom:16.320000pt;}
.y35{bottom:17.280000pt;}
.y2c{bottom:18.080000pt;}
.y3c{bottom:22.400000pt;}
.y125{bottom:26.880000pt;}
.y12d{bottom:30.080000pt;}
.y7{bottom:31.520000pt;}
.y34{bottom:31.866667pt;}
.y2b{bottom:33.440000pt;}
.y3b{bottom:36.160000pt;}
.y124{bottom:39.040000pt;}
.y12c{bottom:43.840000pt;}
.y3e{bottom:44.360000pt;}
.y33{bottom:45.626667pt;}
.y2a{bottom:48.840000pt;}
.y3a{bottom:49.920000pt;}
.y3{bottom:51.680000pt;}
.y12b{bottom:57.760000pt;}
.y32{bottom:59.386667pt;}
.y39{bottom:63.840000pt;}
.y29{bottom:64.200000pt;}
.y12a{bottom:71.520000pt;}
.y31{bottom:73.306667pt;}
.y28{bottom:79.560000pt;}
.y129{bottom:85.280000pt;}
.y30{bottom:87.066667pt;}
.y27{bottom:94.920000pt;}
.ydb{bottom:100.352000pt;}
.y2f{bottom:100.826667pt;}
.y11c{bottom:101.792000pt;}
.y48{bottom:102.432000pt;}
.y98{bottom:103.712000pt;}
.y7c{bottom:110.112000pt;}
.y26{bottom:110.120000pt;}
.y2e{bottom:114.586667pt;}
.yda{bottom:115.712000pt;}
.y47{bottom:116.192000pt;}
.y11b{bottom:117.152000pt;}
.y97{bottom:119.072000pt;}
.y9c{bottom:123.072000pt;}
.y7b{bottom:125.472000pt;}
.y25{bottom:125.480000pt;}
.yd4{bottom:127.552000pt;}
.y46{bottom:129.952000pt;}
.yd9{bottom:131.072000pt;}
.y11a{bottom:132.352000pt;}
.y96{bottom:134.266667pt;}
.y3d{bottom:136.200000pt;}
.y7a{bottom:140.826667pt;}
.y24{bottom:140.840000pt;}
.yd3{bottom:142.906667pt;}
.yd8{bottom:143.546667pt;}
.y45{bottom:143.706667pt;}
.y119{bottom:147.706667pt;}
.y95{bottom:149.626667pt;}
.y79{bottom:156.186667pt;}
.y23{bottom:156.200000pt;}
.y44{bottom:157.626667pt;}
.yd2{bottom:158.266667pt;}
.y118{bottom:163.066667pt;}
.y94{bottom:164.986667pt;}
.y43{bottom:171.386667pt;}
.y78{bottom:171.546667pt;}
.y22{bottom:171.560000pt;}
.yd1{bottom:173.626667pt;}
.y117{bottom:178.426667pt;}
.y93{bottom:180.346667pt;}
.y42{bottom:185.146667pt;}
.y77{bottom:186.746667pt;}
.y21{bottom:186.920000pt;}
.yd0{bottom:188.986667pt;}
.y116{bottom:193.786667pt;}
.y92{bottom:195.706667pt;}
.y41{bottom:198.906667pt;}
.y76{bottom:202.106667pt;}
.y20{bottom:202.120000pt;}
.ycf{bottom:204.346667pt;}
.y115{bottom:209.146667pt;}
.y91{bottom:210.906667pt;}
.y40{bottom:212.986667pt;}
.y75{bottom:217.466667pt;}
.y1f{bottom:217.480000pt;}
.yce{bottom:219.546667pt;}
.y114{bottom:224.346667pt;}
.y90{bottom:226.266667pt;}
.y3f{bottom:228.026667pt;}
.y74{bottom:232.826667pt;}
.y1e{bottom:232.840000pt;}
.y121{bottom:234.746667pt;}
.ycd{bottom:234.906667pt;}
.y113{bottom:239.706667pt;}
.y15{bottom:240.026667pt;}
.y8f{bottom:241.626667pt;}
.y73{bottom:248.186667pt;}
.y1d{bottom:248.200000pt;}
.y120{bottom:250.106667pt;}
.ycc{bottom:250.266667pt;}
.y8e{bottom:254.746667pt;}
.y112{bottom:255.066667pt;}
.yec{bottom:263.386667pt;}
.y72{bottom:263.546667pt;}
.y1c{bottom:263.560000pt;}
.y11f{bottom:265.466667pt;}
.ycb{bottom:265.626667pt;}
.y8c{bottom:267.706667pt;}
.y111{bottom:270.426667pt;}
.y71{bottom:278.746667pt;}
.y1b{bottom:278.946667pt;}
.y11e{bottom:280.826667pt;}
.yca{bottom:280.986667pt;}
.y110{bottom:285.826667pt;}
.y8b{bottom:292.866667pt;}
.y1a{bottom:294.146667pt;}
.y11d{bottom:296.226667pt;}
.yc9{bottom:296.386667pt;}
.y10f{bottom:301.186667pt;}
.y88{bottom:305.826667pt;}
.y19{bottom:309.506667pt;}
.yc8{bottom:311.586667pt;}
.y10e{bottom:316.386667pt;}
.y127{bottom:324.706667pt;}
.y18{bottom:324.866667pt;}
.yc7{bottom:326.946667pt;}
.y85{bottom:331.106667pt;}
.y10d{bottom:331.746667pt;}
.yeb{bottom:340.066667pt;}
.y17{bottom:340.226667pt;}
.yc6{bottom:342.306667pt;}
.y10c{bottom:347.106667pt;}
.y70{bottom:355.426667pt;}
.y16{bottom:355.586667pt;}
.y84{bottom:356.226667pt;}
.yc5{bottom:357.666667pt;}
.y10b{bottom:362.466667pt;}
.yea{bottom:368.546667pt;}
.y83{bottom:369.186667pt;}
.y6f{bottom:370.786667pt;}
.yc4{bottom:373.026667pt;}
.y10a{bottom:377.826667pt;}
.ye9{bottom:381.506667pt;}
.y82{bottom:384.386667pt;}
.y6e{bottom:386.146667pt;}
.y38{bottom:388.066667pt;}
.yc3{bottom:388.226667pt;}
.y109{bottom:393.026667pt;}
.ye8{bottom:394.466667pt;}
.y81{bottom:397.346667pt;}
.y6d{bottom:401.506667pt;}
.yc2{bottom:403.586667pt;}
.ye7{bottom:407.426667pt;}
.y108{bottom:408.386667pt;}
.y80{bottom:412.546667pt;}
.y6c{bottom:416.866667pt;}
.yc1{bottom:418.946667pt;}
.y126{bottom:421.826667pt;}
.ye6{bottom:422.146667pt;}
.y107{bottom:423.746667pt;}
.y7f{bottom:425.026667pt;}
.ye5{bottom:431.746667pt;}
.y6b{bottom:432.226667pt;}
.yc0{bottom:434.306667pt;}
.y123{bottom:434.786667pt;}
.y106{bottom:439.106667pt;}
.ye4{bottom:444.706667pt;}
.y6a{bottom:447.426667pt;}
.ybf{bottom:449.666667pt;}
.y105{bottom:454.466667pt;}
.ye3{bottom:457.826667pt;}
.y69{bottom:462.786667pt;}
.y36{bottom:463.746667pt;}
.ybe{bottom:465.026667pt;}
.y104{bottom:469.826667pt;}
.ye2{bottom:470.786667pt;}
.y68{bottom:478.146667pt;}
.ybd{bottom:480.226667pt;}
.y2d{bottom:482.146667pt;}
.ye1{bottom:483.586667pt;}
.y122{bottom:484.546667pt;}
.y103{bottom:485.026667pt;}
.y67{bottom:493.506667pt;}
.ybc{bottom:495.586667pt;}
.ye0{bottom:496.546667pt;}
.y102{bottom:500.386667pt;}
.y66{bottom:508.893333pt;}
.ydf{bottom:509.533333pt;}
.ybb{bottom:510.973333pt;}
.y101{bottom:515.773333pt;}
.y65{bottom:524.253333pt;}
.yba{bottom:526.333333pt;}
.y100{bottom:531.133333pt;}
.yde{bottom:533.853333pt;}
.y64{bottom:539.453333pt;}
.yb9{bottom:541.693333pt;}
.yff{bottom:546.493333pt;}
.ydd{bottom:546.813333pt;}
.y63{bottom:554.813333pt;}
.yb8{bottom:557.053333pt;}
.ydc{bottom:559.293333pt;}
.yfe{bottom:561.853333pt;}
.y62{bottom:570.173333pt;}
.yb7{bottom:572.253333pt;}
.yfd{bottom:577.053333pt;}
.y9b{bottom:581.373333pt;}
.y61{bottom:585.533333pt;}
.yb6{bottom:587.613333pt;}
.y9a{bottom:590.973333pt;}
.yfc{bottom:592.413333pt;}
.y60{bottom:600.893333pt;}
.yb5{bottom:602.973333pt;}
.y99{bottom:603.293333pt;}
.yfb{bottom:607.773333pt;}
.y13{bottom:608.733333pt;}
.y5f{bottom:616.253333pt;}
.yb4{bottom:618.333333pt;}
.yfa{bottom:623.133333pt;}
.y5e{bottom:631.453333pt;}
.yb3{bottom:633.693333pt;}
.yf9{bottom:638.493333pt;}
.y12{bottom:639.453333pt;}
.y5d{bottom:646.813333pt;}
.yb2{bottom:649.053333pt;}
.yf8{bottom:653.693333pt;}
.y11{bottom:657.053333pt;}
.y5c{bottom:662.173333pt;}
.yb1{bottom:664.253333pt;}
.yf7{bottom:669.053333pt;}
.yd7{bottom:670.493333pt;}
.y5b{bottom:677.533333pt;}
.yb0{bottom:679.613333pt;}
.yf6{bottom:682.173333pt;}
.y10{bottom:682.813333pt;}
.yd6{bottom:685.053333pt;}
.y5a{bottom:692.893333pt;}
.yaf{bottom:694.973333pt;}
.yf5{bottom:695.133333pt;}
.yd5{bottom:697.373333pt;}
.yf{bottom:699.613333pt;}
.y59{bottom:708.093333pt;}
.yae{bottom:710.333333pt;}
.ye{bottom:718.333333pt;}
.yf4{bottom:720.413333pt;}
.y58{bottom:723.453333pt;}
.yad{bottom:725.693333pt;}
.y7e{bottom:731.653333pt;}
.yf3{bottom:733.253333pt;}
.y57{bottom:738.853333pt;}
.yac{bottom:740.933333pt;}
.y7d{bottom:741.253333pt;}
.yd{bottom:746.053333pt;}
.y56{bottom:754.213333pt;}
.yab{bottom:756.293333pt;}
.yf2{bottom:758.533333pt;}
.y55{bottom:769.573333pt;}
.yaa{bottom:771.653333pt;}
.yc{bottom:773.573333pt;}
.yf1{bottom:783.653333pt;}
.y54{bottom:784.933333pt;}
.ya9{bottom:787.013333pt;}
.yf0{bottom:796.613333pt;}
.y53{bottom:800.133333pt;}
.yb{bottom:801.253333pt;}
.ya8{bottom:802.373333pt;}
.yef{bottom:811.493333pt;}
.y52{bottom:815.493333pt;}
.ya7{bottom:817.733333pt;}
.yee{bottom:821.093333pt;}
.ya{bottom:826.853333pt;}
.y51{bottom:830.853333pt;}
.ya6{bottom:832.933333pt;}
.yed{bottom:833.253333pt;}
.y8{bottom:840.453333pt;}
.y50{bottom:846.213333pt;}
.ya5{bottom:848.293333pt;}
.y4f{bottom:861.573333pt;}
.ya4{bottom:863.653333pt;}
.ya3{bottom:876.773333pt;}
.y4e{bottom:876.933333pt;}
.ya2{bottom:889.733333pt;}
.y4d{bottom:892.133333pt;}
.ya1{bottom:902.693333pt;}
.y4c{bottom:907.493333pt;}
.ya0{bottom:915.653333pt;}
.y4b{bottom:922.853333pt;}
.y9f{bottom:928.453333pt;}
.y4a{bottom:938.213333pt;}
.y9e{bottom:943.653333pt;}
.y49{bottom:953.600000pt;}
.y9d{bottom:956.000000pt;}
.y2{bottom:980.160000pt;}
.y1{bottom:995.520000pt;}
.h20{height:12.160000pt;}
.h22{height:12.192000pt;}
.h1b{height:12.320000pt;}
.h1c{height:12.320133pt;}
.h21{height:12.352000pt;}
.he{height:15.200000pt;}
.h13{height:17.760000pt;}
.h1a{height:22.218750pt;}
.h1f{height:22.343750pt;}
.h1d{height:24.480000pt;}
.h3{height:24.512000pt;}
.h1e{height:24.640000pt;}
.h5{height:29.940625pt;}
.h19{height:30.254687pt;}
.h15{height:33.515625pt;}
.h16{height:33.867188pt;}
.h6{height:34.965625pt;}
.h11{height:35.554688pt;}
.h4{height:37.090625pt;}
.hd{height:37.479688pt;}
.h18{height:38.672812pt;}
.h12{height:39.347188pt;}
.h2{height:40.021563pt;}
.h8{height:41.112500pt;}
.h9{height:44.361250pt;}
.h1{height:45.156250pt;}
.hb{height:47.310625pt;}
.h23{height:49.120000pt;}
.hc{height:67.031250pt;}
.ha{height:67.734375pt;}
.h14{height:75.040000pt;}
.h24{height:96.480000pt;}
.h10{height:125.792000pt;}
.h7{height:136.826667pt;}
.h17{height:147.386667pt;}
.hf{height:367.906667pt;}
.h0{height:1056.000000pt;}
.w2{width:34.752000pt;}
.w16{width:63.392000pt;}
.w7{width:84.960000pt;}
.w11{width:85.280000pt;}
.wf{width:124.480000pt;}
.w8{width:150.426667pt;}
.w12{width:153.946667pt;}
.wb{width:159.066667pt;}
.w13{width:190.586667pt;}
.wd{width:191.706667pt;}
.w9{width:194.906667pt;}
.w6{width:195.706667pt;}
.wa{width:205.466667pt;}
.w14{width:206.106667pt;}
.w17{width:301.826667pt;}
.w15{width:365.853333pt;}
.wc{width:386.626667pt;}
.we{width:445.506667pt;}
.w10{width:512.733333pt;}
.w5{width:522.973333pt;}
.w3{width:700.613333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:5.760000pt;}
.x3{left:7.520000pt;}
.x4a{left:11.520000pt;}
.x26{left:15.040000pt;}
.x2d{left:16.800000pt;}
.x10{left:17.760000pt;}
.x24{left:18.720000pt;}
.x2e{left:20.480000pt;}
.x29{left:22.080000pt;}
.x4e{left:23.040000pt;}
.x14{left:24.320000pt;}
.x28{left:25.280000pt;}
.x2a{left:26.560000pt;}
.x30{left:28.000000pt;}
.x12{left:30.280000pt;}
.x13{left:31.880000pt;}
.x4c{left:33.280000pt;}
.x21{left:35.520000pt;}
.x23{left:36.800000pt;}
.x1f{left:39.520000pt;}
.x6{left:40.480000pt;}
.x2b{left:41.920000pt;}
.x4f{left:44.800000pt;}
.x40{left:46.074667pt;}
.x2{left:47.999988pt;}
.x25{left:51.520000pt;}
.x1{left:53.919988pt;}
.x35{left:55.840000pt;}
.x38{left:57.120000pt;}
.x15{left:58.239988pt;}
.x36{left:60.000000pt;}
.x54{left:61.626667pt;}
.x41{left:63.034667pt;}
.x37{left:67.840000pt;}
.x2c{left:71.680000pt;}
.x50{left:78.399988pt;}
.x17{left:80.639988pt;}
.x9{left:82.911988pt;}
.x27{left:84.640000pt;}
.x2f{left:86.400000pt;}
.x4{left:89.632000pt;}
.x4d{left:93.320000pt;}
.x5{left:96.031988pt;}
.x42{left:103.040000pt;}
.x52{left:107.706667pt;}
.x53{left:109.146667pt;}
.x48{left:111.720000pt;}
.x46{left:126.440000pt;}
.x47{left:128.200000pt;}
.x33{left:134.906667pt;}
.xd{left:140.506655pt;}
.x34{left:163.546667pt;}
.x1e{left:174.746667pt;}
.x3f{left:196.346667pt;}
.x49{left:202.106655pt;}
.x44{left:214.266667pt;}
.x1d{left:221.946655pt;}
.x45{left:235.906667pt;}
.x32{left:266.146655pt;}
.x3e{left:281.506667pt;}
.x43{left:289.506655pt;}
.x3b{left:292.066655pt;}
.x3d{left:293.346655pt;}
.x31{left:294.466655pt;}
.x1a{left:301.506655pt;}
.x20{left:325.986667pt;}
.x4b{left:329.666667pt;}
.xc{left:362.466655pt;}
.xa{left:375.266655pt;}
.x8{left:408.066655pt;}
.x1b{left:410.626655pt;}
.xb{left:412.706655pt;}
.xe{left:413.666655pt;}
.x51{left:423.746667pt;}
.x16{left:425.186655pt;}
.x18{left:426.493321pt;}
.x19{left:452.733321pt;}
.x39{left:479.613321pt;}
.x55{left:487.773333pt;}
.x22{left:521.533333pt;}
.xf{left:570.973333pt;}
.x1c{left:645.893321pt;}
.x3c{left:663.653321pt;}
.x7{left:722.213333pt;}
.x3a{left:773.279988pt;}
}




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