
    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_fdf8bb505151948d10679999.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_7525736fe6c65441189d7ada.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_5477034f50f9b22146680e64.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_1b055eb867bbf8f31f11db76.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_67f550fce952918e87089811.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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: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_9b45de81b71bc03d2b686c03.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_469f8adbacf1fa67e95e7966.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.940000px;}
.ls25{letter-spacing:-0.216000px;}
.ls26{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls20{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.720000px;}
.ls8{letter-spacing:1.440000px;}
.ls1f{letter-spacing:2.160000px;}
.ls19{letter-spacing:2.880000px;}
.ls1e{letter-spacing:4.320000px;}
.ls6{letter-spacing:5.040000px;}
.lsa{letter-spacing:5.760000px;}
.ls9{letter-spacing:6.480000px;}
.ls28{letter-spacing:7.200000px;}
.lsc{letter-spacing:7.920000px;}
.ls2b{letter-spacing:8.640000px;}
.ls1c{letter-spacing:9.360000px;}
.ls29{letter-spacing:10.080000px;}
.ls22{letter-spacing:10.800000px;}
.lsd{letter-spacing:10.944000px;}
.ls24{letter-spacing:11.520000px;}
.ls23{letter-spacing:12.240000px;}
.ls1b{letter-spacing:12.960000px;}
.ls16{letter-spacing:13.680000px;}
.ls7{letter-spacing:15.840000px;}
.ls27{letter-spacing:18.720000px;}
.ls14{letter-spacing:19.440000px;}
.ls21{letter-spacing:21.600000px;}
.ls2a{letter-spacing:22.320000px;}
.ls1d{letter-spacing:23.040000px;}
.ls17{letter-spacing:25.920000px;}
.lse{letter-spacing:37.440000px;}
.ls18{letter-spacing:39.600000px;}
.ls5{letter-spacing:41.880000px;}
.ls1a{letter-spacing:54.144000px;}
.ls15{letter-spacing:116.784000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.wsc{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws1{word-spacing:-16.488000px;}
.ws8{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.833200px;}
.ws0{word-spacing:-13.505760px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._26{margin-left:-4.752000px;}
._3{margin-left:-3.634800px;}
._2{margin-left:-2.400000px;}
._1{margin-left:-1.008000px;}
._0{width:1.090800px;}
._19{width:2.634000px;}
._15{width:4.104000px;}
._21{width:5.328000px;}
._1a{width:6.336000px;}
._16{width:7.992000px;}
._9{width:9.072000px;}
._8{width:10.440000px;}
._d{width:11.592000px;}
._5{width:12.672000px;}
._4{width:13.752000px;}
._1b{width:14.786400px;}
._11{width:15.912000px;}
._10{width:16.992000px;}
._3c{width:18.032400px;}
._e{width:19.069200px;}
._1c{width:20.530800px;}
._f{width:22.320000px;}
._1e{width:23.328000px;}
._1f{width:24.962400px;}
._12{width:26.352000px;}
._c{width:27.576000px;}
._1d{width:28.656000px;}
._27{width:29.664000px;}
._17{width:30.744000px;}
._18{width:32.029200px;}
._13{width:33.192000px;}
._14{width:34.200000px;}
._a{width:35.280000px;}
._b{width:36.288000px;}
._2c{width:37.308000px;}
._24{width:38.592000px;}
._25{width:40.032000px;}
._38{width:41.173200px;}
._2a{width:42.192000px;}
._2b{width:43.776000px;}
._30{width:45.776160px;}
._2e{width:47.748240px;}
._6{width:49.608000px;}
._7{width:50.976000px;}
._46{width:52.110720px;}
._3a{width:53.365680px;}
._33{width:55.083600px;}
._20{width:56.232000px;}
._37{width:57.998880px;}
._2f{width:59.027760px;}
._47{width:65.541600px;}
._45{width:67.289760px;}
._35{width:71.413200px;}
._3f{width:72.832320px;}
._28{width:76.392000px;}
._29{width:77.832000px;}
._3e{width:81.333360px;}
._22{width:83.376000px;}
._23{width:84.816000px;}
._36{width:87.010560px;}
._42{width:89.460720px;}
._31{width:92.030400px;}
._41{width:93.404880px;}
._43{width:104.400720px;}
._39{width:112.289040px;}
._49{width:119.520000px;}
._34{width:123.389280px;}
._32{width:139.479840px;}
._40{width:176.710320px;}
._3b{width:183.149280px;}
._2d{width:185.375520px;}
._44{width:194.502720px;}
._48{width:196.356240px;}
._3d{width:219.841920px;}
._4b{width:972.156000px;}
._4a{width:2221.776000px;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,255);}
.fs3{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y7{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.680000px;}
.y10a{bottom:12.060000px;}
.yfa{bottom:12.240000px;}
.y12c{bottom:12.270000px;}
.y126{bottom:12.285000px;}
.ye{bottom:12.600000px;}
.y5{bottom:14.940000px;}
.y105{bottom:20.700000px;}
.yf8{bottom:20.880000px;}
.y121{bottom:20.910000px;}
.yfd{bottom:20.925000px;}
.y3{bottom:21.420000px;}
.y1{bottom:23.760000px;}
.y109{bottom:29.340000px;}
.y12a{bottom:29.370000px;}
.yf9{bottom:29.520000px;}
.y106{bottom:29.550000px;}
.yfe{bottom:29.565000px;}
.y6{bottom:34.200000px;}
.y113{bottom:37.980000px;}
.y102{bottom:38.160000px;}
.y114{bottom:46.620000px;}
.y12b{bottom:46.650000px;}
.y103{bottom:46.800000px;}
.yc{bottom:57.420000px;}
.yb{bottom:77.580000px;}
.ya{bottom:93.420000px;}
.y8a{bottom:112.860000px;}
.yb9{bottom:115.560000px;}
.y39{bottom:117.360000px;}
.ya7{bottom:124.560000px;}
.y17b{bottom:125.100000px;}
.ycc{bottom:127.260000px;}
.yf4{bottom:129.060000px;}
.yd9{bottom:129.960000px;}
.y12d{bottom:131.580000px;}
.y89{bottom:133.560000px;}
.y67{bottom:136.260000px;}
.y151{bottom:136.440000px;}
.y38{bottom:138.060000px;}
.y195{bottom:140.760000px;}
.ya6{bottom:145.260000px;}
.y17a{bottom:145.800000px;}
.ycb{bottom:147.960000px;}
.yd8{bottom:150.660000px;}
.y11b{bottom:154.080000px;}
.y88{bottom:154.260000px;}
.y66{bottom:156.960000px;}
.y150{bottom:157.140000px;}
.y37{bottom:158.760000px;}
.y194{bottom:161.460000px;}
.ya5{bottom:165.960000px;}
.yd7{bottom:171.360000px;}
.y104{bottom:172.620000px;}
.y1a5{bottom:173.160000px;}
.y87{bottom:174.960000px;}
.y179{bottom:175.500000px;}
.y65{bottom:177.660000px;}
.y14f{bottom:177.840000px;}
.y36{bottom:179.460000px;}
.ya4{bottom:186.660000px;}
.yf3{bottom:188.460000px;}
.y129{bottom:188.640000px;}
.y193{bottom:191.160000px;}
.yd6{bottom:192.060000px;}
.y86{bottom:195.660000px;}
.y178{bottom:196.200000px;}
.y64{bottom:198.390000px;}
.y14e{bottom:198.570000px;}
.y35{bottom:200.190000px;}
.y1a4{bottom:202.890000px;}
.ya3{bottom:207.390000px;}
.y11a{bottom:211.170000px;}
.y192{bottom:211.890000px;}
.y85{bottom:216.390000px;}
.yf2{bottom:218.190000px;}
.y63{bottom:219.090000px;}
.yd5{bottom:221.790000px;}
.y177{bottom:225.930000px;}
.ya2{bottom:228.090000px;}
.y101{bottom:229.530000px;}
.y34{bottom:229.890000px;}
.y1a3{bottom:232.590000px;}
.yf1{bottom:238.890000px;}
.y62{bottom:239.790000px;}
.y191{bottom:241.590000px;}
.y134{bottom:245.550000px;}
.y84{bottom:246.090000px;}
.y176{bottom:246.630000px;}
.ya1{bottom:248.790000px;}
.y14d{bottom:250.230000px;}
.yd4{bottom:251.490000px;}
.y33{bottom:259.590000px;}
.y61{bottom:260.490000px;}
.y190{bottom:262.290000px;}
.y128{bottom:262.830000px;}
.y83{bottom:266.790000px;}
.y119{bottom:268.050000px;}
.yf0{bottom:268.590000px;}
.y14c{bottom:270.930000px;}
.yd3{bottom:272.190000px;}
.y175{bottom:276.330000px;}
.ya0{bottom:278.490000px;}
.y60{bottom:281.190000px;}
.y1a2{bottom:282.990000px;}
.y82{bottom:287.490000px;}
.y32{bottom:289.290000px;}
.yb8{bottom:290.190000px;}
.y14b{bottom:291.810000px;}
.y18f{bottom:291.990000px;}
.yd2{bottom:292.890000px;}
.y174{bottom:297.030000px;}
.yef{bottom:298.290000px;}
.y9f{bottom:299.190000px;}
.yca{bottom:301.890000px;}
.y133{bottom:302.610000px;}
.y100{bottom:303.870000px;}
.y81{bottom:308.190000px;}
.y31{bottom:309.990000px;}
.y5f{bottom:310.890000px;}
.y18e{bottom:312.690000px;}
.yd1{bottom:313.590000px;}
.yee{bottom:318.990000px;}
.y9e{bottom:319.890000px;}
.y14a{bottom:322.770000px;}
.y118{bottom:325.110000px;}
.y173{bottom:326.730000px;}
.y80{bottom:328.890000px;}
.y5e{bottom:331.590000px;}
.y1a1{bottom:333.390000px;}
.y30{bottom:339.690000px;}
.y9d{bottom:340.590000px;}
.y18d{bottom:342.390000px;}
.yd0{bottom:343.290000px;}
.y149{bottom:343.470000px;}
.y172{bottom:347.430000px;}
.yed{bottom:348.690000px;}
.y7f{bottom:349.590000px;}
.y5d{bottom:352.290000px;}
.y132{bottom:359.670000px;}
.y2f{bottom:360.390000px;}
.yff{bottom:360.750000px;}
.y9c{bottom:361.290000px;}
.y18c{bottom:363.090000px;}
.y148{bottom:364.170000px;}
.y7e{bottom:370.290000px;}
.y5c{bottom:372.990000px;}
.y127{bottom:376.950000px;}
.y171{bottom:377.130000px;}
.yec{bottom:378.390000px;}
.y2e{bottom:381.090000px;}
.y9b{bottom:381.990000px;}
.y117{bottom:382.170000px;}
.y1a0{bottom:383.790000px;}
.y147{bottom:384.870000px;}
.y7d{bottom:390.990000px;}
.y18b{bottom:392.790000px;}
.y5b{bottom:393.690000px;}
.y170{bottom:397.830000px;}
.yeb{bottom:399.090000px;}
.y2d{bottom:401.790000px;}
.y9a{bottom:402.690000px;}
.y18a{bottom:413.490000px;}
.y5a{bottom:414.390000px;}
.y146{bottom:415.830000px;}
.y131{bottom:416.550000px;}
.yfc{bottom:417.810000px;}
.yea{bottom:419.790000px;}
.y7c{bottom:420.690000px;}
.y2c{bottom:422.490000px;}
.y99{bottom:423.390000px;}
.y16f{bottom:427.530000px;}
.yb7{bottom:432.390000px;}
.y125{bottom:433.830000px;}
.y19f{bottom:434.190000px;}
.y59{bottom:435.090000px;}
.y145{bottom:436.575000px;}
.y7b{bottom:441.435000px;}
.y2b{bottom:443.235000px;}
.y16e{bottom:448.275000px;}
.ye9{bottom:449.535000px;}
.y98{bottom:453.135000px;}
.yc9{bottom:455.835000px;}
.y116{bottom:456.375000px;}
.y144{bottom:457.275000px;}
.y7a{bottom:462.135000px;}
.y2a{bottom:463.935000px;}
.y58{bottom:464.835000px;}
.y16d{bottom:468.975000px;}
.y130{bottom:473.655000px;}
.yb6{bottom:473.835000px;}
.yfb{bottom:474.915000px;}
.yc8{bottom:476.535000px;}
.y143{bottom:477.975000px;}
.ye8{bottom:479.235000px;}
.y79{bottom:482.835000px;}
.y19e{bottom:484.635000px;}
.y57{bottom:485.535000px;}
.y124{bottom:490.935000px;}
.y29{bottom:493.635000px;}
.yb5{bottom:494.535000px;}
.yc7{bottom:497.235000px;}
.y16c{bottom:498.675000px;}
.ye7{bottom:499.935000px;}
.y78{bottom:503.535000px;}
.y56{bottom:506.235000px;}
.y142{bottom:508.935000px;}
.y115{bottom:513.435000px;}
.y28{bottom:514.335000px;}
.yb4{bottom:515.235000px;}
.y16b{bottom:519.375000px;}
.ye6{bottom:520.635000px;}
.y77{bottom:524.235000px;}
.y55{bottom:526.935000px;}
.y12f{bottom:530.715000px;}
.yf7{bottom:531.795000px;}
.y27{bottom:535.035000px;}
.yb3{bottom:535.935000px;}
.y141{bottom:538.635000px;}
.ye5{bottom:541.335000px;}
.y189{bottom:544.035000px;}
.y76{bottom:544.935000px;}
.y54{bottom:547.635000px;}
.y123{bottom:547.995000px;}
.y16a{bottom:549.075000px;}
.y26{bottom:555.735000px;}
.yb2{bottom:556.635000px;}
.y140{bottom:559.335000px;}
.y188{bottom:564.735000px;}
.y75{bottom:565.635000px;}
.y53{bottom:568.335000px;}
.y169{bottom:569.775000px;}
.y112{bottom:570.495000px;}
.ye4{bottom:571.035000px;}
.y25{bottom:576.435000px;}
.y13f{bottom:580.035000px;}
.y19d{bottom:585.435000px;}
.y74{bottom:586.335000px;}
.y12e{bottom:587.595000px;}
.y52{bottom:589.035000px;}
.y187{bottom:594.435000px;}
.y24{bottom:597.135000px;}
.ycf{bottom:598.035000px;}
.y168{bottom:599.475000px;}
.ye3{bottom:600.735000px;}
.y122{bottom:604.875000px;}
.y97{bottom:607.035000px;}
.y51{bottom:609.735000px;}
.y186{bottom:615.135000px;}
.y73{bottom:616.035000px;}
.yd{bottom:617.475000px;}
.y23{bottom:617.835000px;}
.yce{bottom:618.735000px;}
.y167{bottom:620.175000px;}
.yf6{bottom:621.435000px;}
.y96{bottom:627.735000px;}
.yc6{bottom:630.435000px;}
.y19c{bottom:635.835000px;}
.y72{bottom:636.735000px;}
.y22{bottom:638.535000px;}
.y50{bottom:639.435000px;}
.y13e{bottom:642.135000px;}
.y111{bottom:644.655000px;}
.y185{bottom:644.835000px;}
.yb1{bottom:648.435000px;}
.y166{bottom:649.875000px;}
.ye2{bottom:651.135000px;}
.y71{bottom:657.435000px;}
.y21{bottom:659.235000px;}
.y4f{bottom:660.135000px;}
.y120{bottom:661.935000px;}
.y13d{bottom:662.835000px;}
.y184{bottom:665.535000px;}
.yb0{bottom:669.135000px;}
.y165{bottom:670.575000px;}
.ye1{bottom:671.835000px;}
.y70{bottom:678.165000px;}
.y20{bottom:679.965000px;}
.y4e{bottom:680.865000px;}
.y13c{bottom:683.565000px;}
.y19b{bottom:686.265000px;}
.yaf{bottom:689.865000px;}
.ye0{bottom:692.565000px;}
.y183{bottom:695.265000px;}
.y6f{bottom:698.865000px;}
.y164{bottom:700.305000px;}
.y1f{bottom:700.665000px;}
.y4d{bottom:701.565000px;}
.y110{bottom:701.745000px;}
.y13b{bottom:704.265000px;}
.yae{bottom:710.565000px;}
.ydf{bottom:713.265000px;}
.y182{bottom:715.965000px;}
.y11f{bottom:718.845000px;}
.y6e{bottom:719.565000px;}
.y163{bottom:721.005000px;}
.y1e{bottom:721.365000px;}
.y4c{bottom:722.265000px;}
.yad{bottom:731.265000px;}
.yde{bottom:733.965000px;}
.y19a{bottom:736.665000px;}
.y6d{bottom:740.265000px;}
.y4b{bottom:742.965000px;}
.y181{bottom:745.665000px;}
.y162{bottom:750.705000px;}
.y1d{bottom:751.065000px;}
.yac{bottom:751.965000px;}
.y10f{bottom:758.625000px;}
.y6c{bottom:760.965000px;}
.yc5{bottom:763.665000px;}
.y180{bottom:766.365000px;}
.y161{bottom:771.405000px;}
.y4a{bottom:772.665000px;}
.y11e{bottom:775.905000px;}
.y1c{bottom:780.765000px;}
.y6b{bottom:781.665000px;}
.yc4{bottom:784.365000px;}
.y199{bottom:787.065000px;}
.ycd{bottom:793.365000px;}
.y17f{bottom:796.065000px;}
.y160{bottom:801.105000px;}
.y49{bottom:802.365000px;}
.y13a{bottom:805.065000px;}
.y1b{bottom:810.465000px;}
.y6a{bottom:811.365000px;}
.yc3{bottom:814.065000px;}
.y10e{bottom:815.685000px;}
.y17e{bottom:816.765000px;}
.y15f{bottom:821.805000px;}
.y95{bottom:823.065000px;}
.y48{bottom:832.065000px;}
.y11d{bottom:832.965000px;}
.ydd{bottom:834.765000px;}
.y198{bottom:837.465000px;}
.y1a{bottom:838.005000px;}
.y69{bottom:841.065000px;}
.yc2{bottom:843.765000px;}
.y17d{bottom:846.465000px;}
.y15e{bottom:851.505000px;}
.y47{bottom:852.765000px;}
.ydc{bottom:855.465000px;}
.y19{bottom:860.865000px;}
.y68{bottom:861.765000px;}
.yc1{bottom:864.465000px;}
.y17c{bottom:867.165000px;}
.y10d{bottom:872.745000px;}
.y94{bottom:873.465000px;}
.ydb{bottom:876.165000px;}
.y15d{bottom:881.205000px;}
.y46{bottom:882.465000px;}
.yc0{bottom:885.165000px;}
.y197{bottom:887.865000px;}
.y18{bottom:888.405000px;}
.y11c{bottom:889.845000px;}
.y93{bottom:894.165000px;}
.yda{bottom:896.865000px;}
.y45{bottom:903.165000px;}
.ybf{bottom:905.865000px;}
.y15c{bottom:910.905000px;}
.y17{bottom:911.265000px;}
.y92{bottom:914.910000px;}
.y139{bottom:917.610000px;}
.y44{bottom:923.910000px;}
.ybe{bottom:926.610000px;}
.y10c{bottom:929.670000px;}
.y15b{bottom:931.650000px;}
.y91{bottom:935.610000px;}
.y196{bottom:938.310000px;}
.y16{bottom:941.010000px;}
.y43{bottom:944.610000px;}
.ybd{bottom:947.310000px;}
.y15a{bottom:952.350000px;}
.y90{bottom:956.310000px;}
.y42{bottom:965.310000px;}
.yf5{bottom:968.010000px;}
.y15{bottom:970.710000px;}
.y159{bottom:973.050000px;}
.y8f{bottom:977.010000px;}
.y41{bottom:986.010000px;}
.y10b{bottom:986.730000px;}
.y138{bottom:988.710000px;}
.y14{bottom:991.410000px;}
.y8e{bottom:997.710000px;}
.y158{bottom:1004.010000px;}
.yab{bottom:1006.710000px;}
.y137{bottom:1009.410000px;}
.y40{bottom:1015.710000px;}
.y8d{bottom:1018.410000px;}
.y13{bottom:1021.110000px;}
.y157{bottom:1024.710000px;}
.yaa{bottom:1027.410000px;}
.y136{bottom:1030.110000px;}
.y3f{bottom:1036.410000px;}
.y8c{bottom:1039.110000px;}
.y12{bottom:1041.810000px;}
.y108{bottom:1043.790000px;}
.y156{bottom:1045.410000px;}
.ya9{bottom:1048.110000px;}
.y135{bottom:1050.810000px;}
.y3e{bottom:1057.110000px;}
.ybc{bottom:1059.810000px;}
.y155{bottom:1066.110000px;}
.y8b{bottom:1068.810000px;}
.y11{bottom:1071.510000px;}
.y3d{bottom:1077.810000px;}
.ybb{bottom:1080.510000px;}
.ya8{bottom:1089.510000px;}
.y154{bottom:1097.070000px;}
.y3c{bottom:1098.510000px;}
.y107{bottom:1100.670000px;}
.y10{bottom:1101.210000px;}
.yba{bottom:1110.210000px;}
.y153{bottom:1117.770000px;}
.y3b{bottom:1119.210000px;}
.yf{bottom:1130.910000px;}
.y152{bottom:1138.650000px;}
.y3a{bottom:1139.910000px;}
.y9{bottom:1193.220000px;}
.y8{bottom:1208.880000px;}
.y4{bottom:1212.840000px;}
.h2{height:18.000000px;}
.h9{height:28.260000px;}
.h4{height:29.700000px;}
.h16{height:35.316000px;}
.hd{height:40.254961px;}
.h6{height:48.960000px;}
.h7{height:49.868086px;}
.hf{height:51.239531px;}
.h10{height:52.380000px;}
.h13{height:52.416000px;}
.he{height:52.560000px;}
.h11{height:52.596000px;}
.hb{height:60.082031px;}
.h3{height:61.189805px;}
.ha{height:61.734375px;}
.hc{height:65.302031px;}
.h8{height:65.884219px;}
.h14{height:69.660000px;}
.h15{height:69.696000px;}
.h12{height:69.840000px;}
.h5{height:73.722656px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:20.700000px;}
.wb{width:68.256000px;}
.wc{width:70.020000px;}
.w8{width:84.990000px;}
.we{width:93.780000px;}
.wd{width:95.616000px;}
.wa{width:130.140000px;}
.w6{width:130.536000px;}
.w2{width:165.810000px;}
.w4{width:167.970000px;}
.wf{width:184.170000px;}
.w3{width:184.530000px;}
.w5{width:667.770000px;}
.w7{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.440000px;}
.xc{left:10.800000px;}
.x5{left:20.340000px;}
.x8{left:21.780000px;}
.x9{left:26.640000px;}
.x3{left:61.380000px;}
.x6{left:83.556000px;}
.xa{left:106.235987px;}
.x14{left:107.495987px;}
.xd{left:108.755987px;}
.x18{left:116.855987px;}
.x16{left:119.375987px;}
.xe{left:125.855987px;}
.x1b{left:131.436000px;}
.x10{left:141.335987px;}
.x19{left:159.329987px;}
.x1a{left:170.129987px;}
.x15{left:249.149987px;}
.x1c{left:263.730000px;}
.x17{left:284.654987px;}
.x13{left:303.734987px;}
.x1d{left:334.155000px;}
.x11{left:381.134987px;}
.x4{left:385.635000px;}
.xf{left:405.974987px;}
.x12{left:446.474987px;}
.x1e{left:504.465000px;}
.x1f{left:600.405000px;}
.x1{left:694.950000px;}
.x7{left:745.350000px;}
.xb{left:807.990000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.280000pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls20{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls8{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls19{letter-spacing:2.560000pt;}
.ls1e{letter-spacing:3.840000pt;}
.ls6{letter-spacing:4.480000pt;}
.lsa{letter-spacing:5.120000pt;}
.ls9{letter-spacing:5.760000pt;}
.ls28{letter-spacing:6.400000pt;}
.lsc{letter-spacing:7.040000pt;}
.ls2b{letter-spacing:7.680000pt;}
.ls1c{letter-spacing:8.320000pt;}
.ls29{letter-spacing:8.960000pt;}
.ls22{letter-spacing:9.600000pt;}
.lsd{letter-spacing:9.728000pt;}
.ls24{letter-spacing:10.240000pt;}
.ls23{letter-spacing:10.880000pt;}
.ls1b{letter-spacing:11.520000pt;}
.ls16{letter-spacing:12.160000pt;}
.ls7{letter-spacing:14.080000pt;}
.ls27{letter-spacing:16.640000pt;}
.ls14{letter-spacing:17.280000pt;}
.ls21{letter-spacing:19.200000pt;}
.ls2a{letter-spacing:19.840000pt;}
.ls1d{letter-spacing:20.480000pt;}
.ls17{letter-spacing:23.040000pt;}
.lse{letter-spacing:33.280000pt;}
.ls18{letter-spacing:35.200000pt;}
.ls5{letter-spacing:37.226667pt;}
.ls1a{letter-spacing:48.128000pt;}
.ls15{letter-spacing:103.808000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.wsc{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws1{word-spacing:-14.656000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.005120pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._26{margin-left:-4.224000pt;}
._3{margin-left:-3.230933pt;}
._2{margin-left:-2.133333pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.969600pt;}
._19{width:2.341333pt;}
._15{width:3.648000pt;}
._21{width:4.736000pt;}
._1a{width:5.632000pt;}
._16{width:7.104000pt;}
._9{width:8.064000pt;}
._8{width:9.280000pt;}
._d{width:10.304000pt;}
._5{width:11.264000pt;}
._4{width:12.224000pt;}
._1b{width:13.143467pt;}
._11{width:14.144000pt;}
._10{width:15.104000pt;}
._3c{width:16.028800pt;}
._e{width:16.950400pt;}
._1c{width:18.249600pt;}
._f{width:19.840000pt;}
._1e{width:20.736000pt;}
._1f{width:22.188800pt;}
._12{width:23.424000pt;}
._c{width:24.512000pt;}
._1d{width:25.472000pt;}
._27{width:26.368000pt;}
._17{width:27.328000pt;}
._18{width:28.470400pt;}
._13{width:29.504000pt;}
._14{width:30.400000pt;}
._a{width:31.360000pt;}
._b{width:32.256000pt;}
._2c{width:33.162667pt;}
._24{width:34.304000pt;}
._25{width:35.584000pt;}
._38{width:36.598400pt;}
._2a{width:37.504000pt;}
._2b{width:38.912000pt;}
._30{width:40.689920pt;}
._2e{width:42.442880pt;}
._6{width:44.096000pt;}
._7{width:45.312000pt;}
._46{width:46.320640pt;}
._3a{width:47.436160pt;}
._33{width:48.963200pt;}
._20{width:49.984000pt;}
._37{width:51.554560pt;}
._2f{width:52.469120pt;}
._47{width:58.259200pt;}
._45{width:59.813120pt;}
._35{width:63.478400pt;}
._3f{width:64.739840pt;}
._28{width:67.904000pt;}
._29{width:69.184000pt;}
._3e{width:72.296320pt;}
._22{width:74.112000pt;}
._23{width:75.392000pt;}
._36{width:77.342720pt;}
._42{width:79.520640pt;}
._31{width:81.804800pt;}
._41{width:83.026560pt;}
._43{width:92.800640pt;}
._39{width:99.812480pt;}
._49{width:106.240000pt;}
._34{width:109.679360pt;}
._32{width:123.982080pt;}
._40{width:157.075840pt;}
._3b{width:162.799360pt;}
._2d{width:164.778240pt;}
._44{width:172.891307pt;}
._48{width:174.538880pt;}
._3d{width:195.415040pt;}
._4b{width:864.138667pt;}
._4a{width:1974.912000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y7{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.160000pt;}
.y10a{bottom:10.720000pt;}
.yfa{bottom:10.880000pt;}
.y12c{bottom:10.906667pt;}
.y126{bottom:10.920000pt;}
.ye{bottom:11.200000pt;}
.y5{bottom:13.280000pt;}
.y105{bottom:18.400000pt;}
.yf8{bottom:18.560000pt;}
.y121{bottom:18.586667pt;}
.yfd{bottom:18.600000pt;}
.y3{bottom:19.040000pt;}
.y1{bottom:21.120000pt;}
.y109{bottom:26.080000pt;}
.y12a{bottom:26.106667pt;}
.yf9{bottom:26.240000pt;}
.y106{bottom:26.266667pt;}
.yfe{bottom:26.280000pt;}
.y6{bottom:30.400000pt;}
.y113{bottom:33.760000pt;}
.y102{bottom:33.920000pt;}
.y114{bottom:41.440000pt;}
.y12b{bottom:41.466667pt;}
.y103{bottom:41.600000pt;}
.yc{bottom:51.040000pt;}
.yb{bottom:68.960000pt;}
.ya{bottom:83.040000pt;}
.y8a{bottom:100.320000pt;}
.yb9{bottom:102.720000pt;}
.y39{bottom:104.320000pt;}
.ya7{bottom:110.720000pt;}
.y17b{bottom:111.200000pt;}
.ycc{bottom:113.120000pt;}
.yf4{bottom:114.720000pt;}
.yd9{bottom:115.520000pt;}
.y12d{bottom:116.960000pt;}
.y89{bottom:118.720000pt;}
.y67{bottom:121.120000pt;}
.y151{bottom:121.280000pt;}
.y38{bottom:122.720000pt;}
.y195{bottom:125.120000pt;}
.ya6{bottom:129.120000pt;}
.y17a{bottom:129.600000pt;}
.ycb{bottom:131.520000pt;}
.yd8{bottom:133.920000pt;}
.y11b{bottom:136.960000pt;}
.y88{bottom:137.120000pt;}
.y66{bottom:139.520000pt;}
.y150{bottom:139.680000pt;}
.y37{bottom:141.120000pt;}
.y194{bottom:143.520000pt;}
.ya5{bottom:147.520000pt;}
.yd7{bottom:152.320000pt;}
.y104{bottom:153.440000pt;}
.y1a5{bottom:153.920000pt;}
.y87{bottom:155.520000pt;}
.y179{bottom:156.000000pt;}
.y65{bottom:157.920000pt;}
.y14f{bottom:158.080000pt;}
.y36{bottom:159.520000pt;}
.ya4{bottom:165.920000pt;}
.yf3{bottom:167.520000pt;}
.y129{bottom:167.680000pt;}
.y193{bottom:169.920000pt;}
.yd6{bottom:170.720000pt;}
.y86{bottom:173.920000pt;}
.y178{bottom:174.400000pt;}
.y64{bottom:176.346667pt;}
.y14e{bottom:176.506667pt;}
.y35{bottom:177.946667pt;}
.y1a4{bottom:180.346667pt;}
.ya3{bottom:184.346667pt;}
.y11a{bottom:187.706667pt;}
.y192{bottom:188.346667pt;}
.y85{bottom:192.346667pt;}
.yf2{bottom:193.946667pt;}
.y63{bottom:194.746667pt;}
.yd5{bottom:197.146667pt;}
.y177{bottom:200.826667pt;}
.ya2{bottom:202.746667pt;}
.y101{bottom:204.026667pt;}
.y34{bottom:204.346667pt;}
.y1a3{bottom:206.746667pt;}
.yf1{bottom:212.346667pt;}
.y62{bottom:213.146667pt;}
.y191{bottom:214.746667pt;}
.y134{bottom:218.266667pt;}
.y84{bottom:218.746667pt;}
.y176{bottom:219.226667pt;}
.ya1{bottom:221.146667pt;}
.y14d{bottom:222.426667pt;}
.yd4{bottom:223.546667pt;}
.y33{bottom:230.746667pt;}
.y61{bottom:231.546667pt;}
.y190{bottom:233.146667pt;}
.y128{bottom:233.626667pt;}
.y83{bottom:237.146667pt;}
.y119{bottom:238.266667pt;}
.yf0{bottom:238.746667pt;}
.y14c{bottom:240.826667pt;}
.yd3{bottom:241.946667pt;}
.y175{bottom:245.626667pt;}
.ya0{bottom:247.546667pt;}
.y60{bottom:249.946667pt;}
.y1a2{bottom:251.546667pt;}
.y82{bottom:255.546667pt;}
.y32{bottom:257.146667pt;}
.yb8{bottom:257.946667pt;}
.y14b{bottom:259.386667pt;}
.y18f{bottom:259.546667pt;}
.yd2{bottom:260.346667pt;}
.y174{bottom:264.026667pt;}
.yef{bottom:265.146667pt;}
.y9f{bottom:265.946667pt;}
.yca{bottom:268.346667pt;}
.y133{bottom:268.986667pt;}
.y100{bottom:270.106667pt;}
.y81{bottom:273.946667pt;}
.y31{bottom:275.546667pt;}
.y5f{bottom:276.346667pt;}
.y18e{bottom:277.946667pt;}
.yd1{bottom:278.746667pt;}
.yee{bottom:283.546667pt;}
.y9e{bottom:284.346667pt;}
.y14a{bottom:286.906667pt;}
.y118{bottom:288.986667pt;}
.y173{bottom:290.426667pt;}
.y80{bottom:292.346667pt;}
.y5e{bottom:294.746667pt;}
.y1a1{bottom:296.346667pt;}
.y30{bottom:301.946667pt;}
.y9d{bottom:302.746667pt;}
.y18d{bottom:304.346667pt;}
.yd0{bottom:305.146667pt;}
.y149{bottom:305.306667pt;}
.y172{bottom:308.826667pt;}
.yed{bottom:309.946667pt;}
.y7f{bottom:310.746667pt;}
.y5d{bottom:313.146667pt;}
.y132{bottom:319.706667pt;}
.y2f{bottom:320.346667pt;}
.yff{bottom:320.666667pt;}
.y9c{bottom:321.146667pt;}
.y18c{bottom:322.746667pt;}
.y148{bottom:323.706667pt;}
.y7e{bottom:329.146667pt;}
.y5c{bottom:331.546667pt;}
.y127{bottom:335.066667pt;}
.y171{bottom:335.226667pt;}
.yec{bottom:336.346667pt;}
.y2e{bottom:338.746667pt;}
.y9b{bottom:339.546667pt;}
.y117{bottom:339.706667pt;}
.y1a0{bottom:341.146667pt;}
.y147{bottom:342.106667pt;}
.y7d{bottom:347.546667pt;}
.y18b{bottom:349.146667pt;}
.y5b{bottom:349.946667pt;}
.y170{bottom:353.626667pt;}
.yeb{bottom:354.746667pt;}
.y2d{bottom:357.146667pt;}
.y9a{bottom:357.946667pt;}
.y18a{bottom:367.546667pt;}
.y5a{bottom:368.346667pt;}
.y146{bottom:369.626667pt;}
.y131{bottom:370.266667pt;}
.yfc{bottom:371.386667pt;}
.yea{bottom:373.146667pt;}
.y7c{bottom:373.946667pt;}
.y2c{bottom:375.546667pt;}
.y99{bottom:376.346667pt;}
.y16f{bottom:380.026667pt;}
.yb7{bottom:384.346667pt;}
.y125{bottom:385.626667pt;}
.y19f{bottom:385.946667pt;}
.y59{bottom:386.746667pt;}
.y145{bottom:388.066667pt;}
.y7b{bottom:392.386667pt;}
.y2b{bottom:393.986667pt;}
.y16e{bottom:398.466667pt;}
.ye9{bottom:399.586667pt;}
.y98{bottom:402.786667pt;}
.yc9{bottom:405.186667pt;}
.y116{bottom:405.666667pt;}
.y144{bottom:406.466667pt;}
.y7a{bottom:410.786667pt;}
.y2a{bottom:412.386667pt;}
.y58{bottom:413.186667pt;}
.y16d{bottom:416.866667pt;}
.y130{bottom:421.026667pt;}
.yb6{bottom:421.186667pt;}
.yfb{bottom:422.146667pt;}
.yc8{bottom:423.586667pt;}
.y143{bottom:424.866667pt;}
.ye8{bottom:425.986667pt;}
.y79{bottom:429.186667pt;}
.y19e{bottom:430.786667pt;}
.y57{bottom:431.586667pt;}
.y124{bottom:436.386667pt;}
.y29{bottom:438.786667pt;}
.yb5{bottom:439.586667pt;}
.yc7{bottom:441.986667pt;}
.y16c{bottom:443.266667pt;}
.ye7{bottom:444.386667pt;}
.y78{bottom:447.586667pt;}
.y56{bottom:449.986667pt;}
.y142{bottom:452.386667pt;}
.y115{bottom:456.386667pt;}
.y28{bottom:457.186667pt;}
.yb4{bottom:457.986667pt;}
.y16b{bottom:461.666667pt;}
.ye6{bottom:462.786667pt;}
.y77{bottom:465.986667pt;}
.y55{bottom:468.386667pt;}
.y12f{bottom:471.746667pt;}
.yf7{bottom:472.706667pt;}
.y27{bottom:475.586667pt;}
.yb3{bottom:476.386667pt;}
.y141{bottom:478.786667pt;}
.ye5{bottom:481.186667pt;}
.y189{bottom:483.586667pt;}
.y76{bottom:484.386667pt;}
.y54{bottom:486.786667pt;}
.y123{bottom:487.106667pt;}
.y16a{bottom:488.066667pt;}
.y26{bottom:493.986667pt;}
.yb2{bottom:494.786667pt;}
.y140{bottom:497.186667pt;}
.y188{bottom:501.986667pt;}
.y75{bottom:502.786667pt;}
.y53{bottom:505.186667pt;}
.y169{bottom:506.466667pt;}
.y112{bottom:507.106667pt;}
.ye4{bottom:507.586667pt;}
.y25{bottom:512.386667pt;}
.y13f{bottom:515.586667pt;}
.y19d{bottom:520.386667pt;}
.y74{bottom:521.186667pt;}
.y12e{bottom:522.306667pt;}
.y52{bottom:523.586667pt;}
.y187{bottom:528.386667pt;}
.y24{bottom:530.786667pt;}
.ycf{bottom:531.586667pt;}
.y168{bottom:532.866667pt;}
.ye3{bottom:533.986667pt;}
.y122{bottom:537.666667pt;}
.y97{bottom:539.586667pt;}
.y51{bottom:541.986667pt;}
.y186{bottom:546.786667pt;}
.y73{bottom:547.586667pt;}
.yd{bottom:548.866667pt;}
.y23{bottom:549.186667pt;}
.yce{bottom:549.986667pt;}
.y167{bottom:551.266667pt;}
.yf6{bottom:552.386667pt;}
.y96{bottom:557.986667pt;}
.yc6{bottom:560.386667pt;}
.y19c{bottom:565.186667pt;}
.y72{bottom:565.986667pt;}
.y22{bottom:567.586667pt;}
.y50{bottom:568.386667pt;}
.y13e{bottom:570.786667pt;}
.y111{bottom:573.026667pt;}
.y185{bottom:573.186667pt;}
.yb1{bottom:576.386667pt;}
.y166{bottom:577.666667pt;}
.ye2{bottom:578.786667pt;}
.y71{bottom:584.386667pt;}
.y21{bottom:585.986667pt;}
.y4f{bottom:586.786667pt;}
.y120{bottom:588.386667pt;}
.y13d{bottom:589.186667pt;}
.y184{bottom:591.586667pt;}
.yb0{bottom:594.786667pt;}
.y165{bottom:596.066667pt;}
.ye1{bottom:597.186667pt;}
.y70{bottom:602.813333pt;}
.y20{bottom:604.413333pt;}
.y4e{bottom:605.213333pt;}
.y13c{bottom:607.613333pt;}
.y19b{bottom:610.013333pt;}
.yaf{bottom:613.213333pt;}
.ye0{bottom:615.613333pt;}
.y183{bottom:618.013333pt;}
.y6f{bottom:621.213333pt;}
.y164{bottom:622.493333pt;}
.y1f{bottom:622.813333pt;}
.y4d{bottom:623.613333pt;}
.y110{bottom:623.773333pt;}
.y13b{bottom:626.013333pt;}
.yae{bottom:631.613333pt;}
.ydf{bottom:634.013333pt;}
.y182{bottom:636.413333pt;}
.y11f{bottom:638.973333pt;}
.y6e{bottom:639.613333pt;}
.y163{bottom:640.893333pt;}
.y1e{bottom:641.213333pt;}
.y4c{bottom:642.013333pt;}
.yad{bottom:650.013333pt;}
.yde{bottom:652.413333pt;}
.y19a{bottom:654.813333pt;}
.y6d{bottom:658.013333pt;}
.y4b{bottom:660.413333pt;}
.y181{bottom:662.813333pt;}
.y162{bottom:667.293333pt;}
.y1d{bottom:667.613333pt;}
.yac{bottom:668.413333pt;}
.y10f{bottom:674.333333pt;}
.y6c{bottom:676.413333pt;}
.yc5{bottom:678.813333pt;}
.y180{bottom:681.213333pt;}
.y161{bottom:685.693333pt;}
.y4a{bottom:686.813333pt;}
.y11e{bottom:689.693333pt;}
.y1c{bottom:694.013333pt;}
.y6b{bottom:694.813333pt;}
.yc4{bottom:697.213333pt;}
.y199{bottom:699.613333pt;}
.ycd{bottom:705.213333pt;}
.y17f{bottom:707.613333pt;}
.y160{bottom:712.093333pt;}
.y49{bottom:713.213333pt;}
.y13a{bottom:715.613333pt;}
.y1b{bottom:720.413333pt;}
.y6a{bottom:721.213333pt;}
.yc3{bottom:723.613333pt;}
.y10e{bottom:725.053333pt;}
.y17e{bottom:726.013333pt;}
.y15f{bottom:730.493333pt;}
.y95{bottom:731.613333pt;}
.y48{bottom:739.613333pt;}
.y11d{bottom:740.413333pt;}
.ydd{bottom:742.013333pt;}
.y198{bottom:744.413333pt;}
.y1a{bottom:744.893333pt;}
.y69{bottom:747.613333pt;}
.yc2{bottom:750.013333pt;}
.y17d{bottom:752.413333pt;}
.y15e{bottom:756.893333pt;}
.y47{bottom:758.013333pt;}
.ydc{bottom:760.413333pt;}
.y19{bottom:765.213333pt;}
.y68{bottom:766.013333pt;}
.yc1{bottom:768.413333pt;}
.y17c{bottom:770.813333pt;}
.y10d{bottom:775.773333pt;}
.y94{bottom:776.413333pt;}
.ydb{bottom:778.813333pt;}
.y15d{bottom:783.293333pt;}
.y46{bottom:784.413333pt;}
.yc0{bottom:786.813333pt;}
.y197{bottom:789.213333pt;}
.y18{bottom:789.693333pt;}
.y11c{bottom:790.973333pt;}
.y93{bottom:794.813333pt;}
.yda{bottom:797.213333pt;}
.y45{bottom:802.813333pt;}
.ybf{bottom:805.213333pt;}
.y15c{bottom:809.693333pt;}
.y17{bottom:810.013333pt;}
.y92{bottom:813.253333pt;}
.y139{bottom:815.653333pt;}
.y44{bottom:821.253333pt;}
.ybe{bottom:823.653333pt;}
.y10c{bottom:826.373333pt;}
.y15b{bottom:828.133333pt;}
.y91{bottom:831.653333pt;}
.y196{bottom:834.053333pt;}
.y16{bottom:836.453333pt;}
.y43{bottom:839.653333pt;}
.ybd{bottom:842.053333pt;}
.y15a{bottom:846.533333pt;}
.y90{bottom:850.053333pt;}
.y42{bottom:858.053333pt;}
.yf5{bottom:860.453333pt;}
.y15{bottom:862.853333pt;}
.y159{bottom:864.933333pt;}
.y8f{bottom:868.453333pt;}
.y41{bottom:876.453333pt;}
.y10b{bottom:877.093333pt;}
.y138{bottom:878.853333pt;}
.y14{bottom:881.253333pt;}
.y8e{bottom:886.853333pt;}
.y158{bottom:892.453333pt;}
.yab{bottom:894.853333pt;}
.y137{bottom:897.253333pt;}
.y40{bottom:902.853333pt;}
.y8d{bottom:905.253333pt;}
.y13{bottom:907.653333pt;}
.y157{bottom:910.853333pt;}
.yaa{bottom:913.253333pt;}
.y136{bottom:915.653333pt;}
.y3f{bottom:921.253333pt;}
.y8c{bottom:923.653333pt;}
.y12{bottom:926.053333pt;}
.y108{bottom:927.813333pt;}
.y156{bottom:929.253333pt;}
.ya9{bottom:931.653333pt;}
.y135{bottom:934.053333pt;}
.y3e{bottom:939.653333pt;}
.ybc{bottom:942.053333pt;}
.y155{bottom:947.653333pt;}
.y8b{bottom:950.053333pt;}
.y11{bottom:952.453333pt;}
.y3d{bottom:958.053333pt;}
.ybb{bottom:960.453333pt;}
.ya8{bottom:968.453333pt;}
.y154{bottom:975.173333pt;}
.y3c{bottom:976.453333pt;}
.y107{bottom:978.373333pt;}
.y10{bottom:978.853333pt;}
.yba{bottom:986.853333pt;}
.y153{bottom:993.573333pt;}
.y3b{bottom:994.853333pt;}
.yf{bottom:1005.253333pt;}
.y152{bottom:1012.133333pt;}
.y3a{bottom:1013.253333pt;}
.y9{bottom:1060.640000pt;}
.y8{bottom:1074.560000pt;}
.y4{bottom:1078.080000pt;}
.h2{height:16.000000pt;}
.h9{height:25.120000pt;}
.h4{height:26.400000pt;}
.h16{height:31.392000pt;}
.hd{height:35.782187pt;}
.h6{height:43.520000pt;}
.h7{height:44.327188pt;}
.hf{height:45.546250pt;}
.h10{height:46.560000pt;}
.h13{height:46.592000pt;}
.he{height:46.720000pt;}
.h11{height:46.752000pt;}
.hb{height:53.406250pt;}
.h3{height:54.390938pt;}
.ha{height:54.875000pt;}
.hc{height:58.046250pt;}
.h8{height:58.563750pt;}
.h14{height:61.920000pt;}
.h15{height:61.952000pt;}
.h12{height:62.080000pt;}
.h5{height:65.531250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.400000pt;}
.wb{width:60.672000pt;}
.wc{width:62.240000pt;}
.w8{width:75.546667pt;}
.we{width:83.360000pt;}
.wd{width:84.992000pt;}
.wa{width:115.680000pt;}
.w6{width:116.032000pt;}
.w2{width:147.386667pt;}
.w4{width:149.306667pt;}
.wf{width:163.706667pt;}
.w3{width:164.026667pt;}
.w5{width:593.573333pt;}
.w7{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:1.280000pt;}
.xc{left:9.600000pt;}
.x5{left:18.080000pt;}
.x8{left:19.360000pt;}
.x9{left:23.680000pt;}
.x3{left:54.560000pt;}
.x6{left:74.272000pt;}
.xa{left:94.431988pt;}
.x14{left:95.551988pt;}
.xd{left:96.671988pt;}
.x18{left:103.871988pt;}
.x16{left:106.111988pt;}
.xe{left:111.871988pt;}
.x1b{left:116.832000pt;}
.x10{left:125.631988pt;}
.x19{left:141.626655pt;}
.x1a{left:151.226655pt;}
.x15{left:221.466655pt;}
.x1c{left:234.426667pt;}
.x17{left:253.026655pt;}
.x13{left:269.986655pt;}
.x1d{left:297.026667pt;}
.x11{left:338.786655pt;}
.x4{left:342.786667pt;}
.xf{left:360.866655pt;}
.x12{left:396.866655pt;}
.x1e{left:448.413333pt;}
.x1f{left:533.693333pt;}
.x1{left:617.733333pt;}
.x7{left:662.533333pt;}
.xb{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; }
  