
    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_16f31786371a66808be29a50.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_55c5de034d862c377ecbefbe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b7d477dbea64cd13c0e073f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_443e40fd8b32cac30cf1f4fb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_9c7a2a1d39572b6e161cf301.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_23d25b41c9fa4069a2a0387f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4b9aaebd940ea99abfd6059f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_04895a05b5f0ab26f14b4ce6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_65fb7f761bfe6303a8c33ed1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_6a372ce7496dcea041a99e8f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0d9456f3b450ffe1fca6f215.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.160000px;}
.v2{vertical-align:23.760000px;}
.lsc{letter-spacing:-2.700000px;}
.lsd{letter-spacing:-2.610000px;}
.lsb{letter-spacing:-2.520000px;}
.lsa{letter-spacing:-1.980000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls13{letter-spacing:-0.696000px;}
.ls11{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.450600px;}
.lse{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.269400px;}
.lsf{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.022320px;}
.ls8{letter-spacing:0.028080px;}
.ls15{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.256200px;}
.ls3{letter-spacing:0.360000px;}
.ls17{letter-spacing:7.200000px;}
.ls16{letter-spacing:7.920000px;}
.ls1b{letter-spacing:25.308000px;}
.ls19{letter-spacing:52.668000px;}
.ls18{letter-spacing:68.508000px;}
.ls12{letter-spacing:68.652000px;}
.ls2{letter-spacing:140.580000px;}
.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;}
}
.ws13{word-spacing:-54.000000px;}
.ws3{word-spacing:-21.088080px;}
.ws15{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.226440px;}
.wsc{word-spacing:-13.860000px;}
.ws0{word-spacing:-13.716000px;}
.ws14{word-spacing:-13.608000px;}
.wsb{word-spacing:-13.500000px;}
.wsd{word-spacing:-13.482000px;}
.wse{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.ws8{word-spacing:-11.609400px;}
.ws11{word-spacing:-10.924560px;}
.ws12{word-spacing:-10.902240px;}
.ws10{word-spacing:-10.206240px;}
.ws9{word-spacing:-9.540000px;}
.ws5{word-spacing:-9.000000px;}
.ws4{word-spacing:-0.084240px;}
.ws6{word-spacing:-0.054000px;}
.wsf{word-spacing:0.000000px;}
._28{margin-left:-7.110000px;}
._7{margin-left:-2.824800px;}
._2{margin-left:-1.192320px;}
._0{width:1.254960px;}
._1{width:2.887440px;}
._14{width:4.181040px;}
._e{width:6.102000px;}
._13{width:7.160400px;}
._12{width:8.262000px;}
._17{width:9.271680px;}
._6{width:10.375680px;}
._5{width:11.614320px;}
._1e{width:15.492000px;}
._c{width:16.524000px;}
._b{width:17.658000px;}
._a{width:18.792000px;}
._20{width:19.872000px;}
._8{width:20.952000px;}
._9{width:22.882320px;}
._f{width:24.192000px;}
._1d{width:26.131440px;}
._d{width:27.324000px;}
._1f{width:28.448640px;}
._1a{width:29.538000px;}
._1b{width:30.632400px;}
._25{width:31.648320px;}
._18{width:32.778000px;}
._21{width:34.560000px;}
._1c{width:35.756640px;}
._15{width:36.828000px;}
._10{width:38.502000px;}
._11{width:39.677040px;}
._27{width:41.310000px;}
._16{width:42.606000px;}
._26{width:43.999680px;}
._19{width:45.630000px;}
._31{width:47.038320px;}
._29{width:48.514320px;}
._2a{width:49.914000px;}
._32{width:51.084000px;}
._3b{width:52.200000px;}
._24{width:53.464320px;}
._23{width:55.836000px;}
._22{width:56.970000px;}
._2e{width:59.562000px;}
._2d{width:60.642000px;}
._36{width:65.450640px;}
._2f{width:66.882000px;}
._30{width:67.944000px;}
._34{width:70.204320px;}
._33{width:71.226000px;}
._3a{width:86.256000px;}
._2b{width:87.664320px;}
._2c{width:88.753680px;}
._3c{width:95.850000px;}
._35{width:163.350000px;}
._39{width:210.330000px;}
._38{width:212.058000px;}
._4{width:391.163760px;}
._37{width:757.494000px;}
._3{width:1431.222000px;}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(0,31,95);}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:2.880000px;}
.fs8{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:5.400000px;}
.yab{bottom:5.580000px;}
.ya7{bottom:8.640000px;}
.y1f{bottom:9.720000px;}
.y16{bottom:12.060000px;}
.yd4{bottom:12.240000px;}
.yd2{bottom:12.600000px;}
.ya9{bottom:14.580000px;}
.yd0{bottom:16.005000px;}
.yaa{bottom:23.400000px;}
.yad{bottom:23.580000px;}
.y21{bottom:25.380000px;}
.ya6{bottom:26.460000px;}
.y15{bottom:34.920000px;}
.y1e{bottom:35.820000px;}
.y1d{bottom:51.300000px;}
.y14{bottom:57.780000px;}
.y67{bottom:58.500000px;}
.y1c{bottom:66.780000px;}
.y4{bottom:76.860000px;}
.y13{bottom:80.280000px;}
.y1b{bottom:82.305000px;}
.y12{bottom:103.365000px;}
.y6{bottom:105.120000px;}
.y1a{bottom:109.305000px;}
.y17a{bottom:109.980000px;}
.yd5{bottom:111.060000px;}
.y153{bottom:112.140000px;}
.y64{bottom:116.820000px;}
.y102{bottom:118.800000px;}
.y44{bottom:120.960000px;}
.y9e{bottom:123.300000px;}
.y132{bottom:123.840000px;}
.y11{bottom:126.225000px;}
.y19{bottom:127.125000px;}
.y179{bottom:127.980000px;}
.y152{bottom:129.960000px;}
.y63{bottom:134.640000px;}
.y101{bottom:136.620000px;}
.y43{bottom:138.780000px;}
.y9d{bottom:141.120000px;}
.y131{bottom:141.840000px;}
.yd3{bottom:142.920000px;}
.y18{bottom:144.945000px;}
.y178{bottom:145.800000px;}
.y151{bottom:147.780000px;}
.y10{bottom:148.905000px;}
.y62{bottom:152.460000px;}
.y100{bottom:154.440000px;}
.y42{bottom:156.600000px;}
.y130{bottom:159.660000px;}
.y17{bottom:162.945000px;}
.y177{bottom:163.620000px;}
.yf{bottom:164.385000px;}
.y9c{bottom:164.700000px;}
.y150{bottom:165.780000px;}
.y61{bottom:170.280000px;}
.yff{bottom:172.260000px;}
.y41{bottom:174.420000px;}
.yd1{bottom:174.780000px;}
.y14f{bottom:183.600000px;}
.y12f{bottom:186.480000px;}
.y60{bottom:188.100000px;}
.y9b{bottom:188.820000px;}
.yfe{bottom:190.260000px;}
.y176{bottom:190.440000px;}
.y40{bottom:192.240000px;}
.y14e{bottom:201.420000px;}
.y12e{bottom:204.300000px;}
.y5f{bottom:206.130000px;}
.y9a{bottom:206.670000px;}
.ycf{bottom:207.405000px;}
.y175{bottom:208.290000px;}
.y3f{bottom:210.090000px;}
.yfd{bottom:216.750000px;}
.y14d{bottom:219.270000px;}
.y12d{bottom:222.150000px;}
.y99{bottom:224.670000px;}
.y3e{bottom:228.090000px;}
.y5e{bottom:229.890000px;}
.y174{bottom:236.730000px;}
.y14c{bottom:237.090000px;}
.yfc{bottom:243.930000px;}
.y3d{bottom:245.910000px;}
.y5d{bottom:247.710000px;}
.yce{bottom:248.070000px;}
.y12c{bottom:248.970000px;}
.y98{bottom:249.870000px;}
.y1a0{bottom:251.490000px;}
.yfb{bottom:261.750000px;}
.y3c{bottom:263.730000px;}
.y14b{bottom:264.090000px;}
.y5c{bottom:265.530000px;}
.y12b{bottom:266.970000px;}
.y173{bottom:268.050000px;}
.ycd{bottom:275.250000px;}
.y97{bottom:278.130000px;}
.yfa{bottom:279.570000px;}
.y19f{bottom:281.550000px;}
.y14a{bottom:281.910000px;}
.y5b{bottom:283.530000px;}
.y12a{bottom:284.790000px;}
.y172{bottom:285.870000px;}
.y3b{bottom:287.670000px;}
.ycc{bottom:293.070000px;}
.y96{bottom:295.950000px;}
.y19e{bottom:299.370000px;}
.y149{bottom:299.730000px;}
.y129{bottom:302.610000px;}
.y171{bottom:303.690000px;}
.y3a{bottom:305.490000px;}
.yf9{bottom:306.390000px;}
.y5a{bottom:308.370000px;}
.y95{bottom:313.950000px;}
.y19d{bottom:317.190000px;}
.y148{bottom:317.550000px;}
.ycb{bottom:319.530000px;}
.y128{bottom:320.430000px;}
.y170{bottom:321.510000px;}
.y39{bottom:323.310000px;}
.yf8{bottom:324.390000px;}
.y195{bottom:326.190000px;}
.y94{bottom:331.770000px;}
.y59{bottom:335.190000px;}
.y147{bottom:335.370000px;}
.y127{bottom:338.250000px;}
.y16f{bottom:339.330000px;}
.y38{bottom:341.130000px;}
.yf7{bottom:342.210000px;}
.y194{bottom:344.190000px;}
.yca{bottom:346.890000px;}
.y93{bottom:349.590000px;}
.y58{bottom:353.010000px;}
.y146{bottom:353.190000px;}
.y126{bottom:356.250000px;}
.y37{bottom:358.950000px;}
.yf6{bottom:360.030000px;}
.y193{bottom:362.010000px;}
.yc9{bottom:364.710000px;}
.y16e{bottom:366.330000px;}
.y57{bottom:370.830000px;}
.y145{bottom:371.190000px;}
.y92{bottom:373.350000px;}
.y125{bottom:374.070000px;}
.y36{bottom:376.770000px;}
.yf5{bottom:377.850000px;}
.y192{bottom:379.830000px;}
.yc8{bottom:382.530000px;}
.y16d{bottom:384.150000px;}
.y56{bottom:388.650000px;}
.y144{bottom:389.010000px;}
.y91{bottom:391.350000px;}
.y124{bottom:391.890000px;}
.y35{bottom:394.770000px;}
.yc7{bottom:400.350000px;}
.y16c{bottom:401.970000px;}
.yf4{bottom:404.850000px;}
.y55{bottom:406.470000px;}
.y191{bottom:406.650000px;}
.y90{bottom:409.170000px;}
.y34{bottom:412.590000px;}
.y143{bottom:415.830000px;}
.yc6{bottom:418.170000px;}
.y16b{bottom:419.790000px;}
.y123{bottom:420.150000px;}
.yf3{bottom:423.570000px;}
.y54{bottom:424.470000px;}
.y8f{bottom:426.990000px;}
.y142{bottom:433.650000px;}
.y33{bottom:436.350000px;}
.yf2{bottom:441.435000px;}
.y190{bottom:442.335000px;}
.y8e{bottom:444.855000px;}
.yc5{bottom:445.215000px;}
.y16a{bottom:446.655000px;}
.y53{bottom:448.275000px;}
.y122{bottom:451.515000px;}
.y32{bottom:454.215000px;}
.yf1{bottom:460.335000px;}
.y8d{bottom:462.675000px;}
.yc4{bottom:463.035000px;}
.y169{bottom:464.655000px;}
.y52{bottom:466.095000px;}
.y121{bottom:469.335000px;}
.y31{bottom:472.215000px;}
.yf0{bottom:479.055000px;}
.y8c{bottom:480.675000px;}
.yc3{bottom:480.855000px;}
.y168{bottom:482.475000px;}
.y51{bottom:483.915000px;}
.y18f{bottom:487.155000px;}
.y120{bottom:487.335000px;}
.y30{bottom:490.035000px;}
.yef{bottom:497.055000px;}
.y167{bottom:500.295000px;}
.y50{bottom:501.915000px;}
.y8b{bottom:504.435000px;}
.y18e{bottom:504.975000px;}
.y11f{bottom:505.155000px;}
.yc2{bottom:507.315000px;}
.y2f{bottom:507.855000px;}
.yee{bottom:515.775000px;}
.y166{bottom:518.115000px;}
.y4f{bottom:519.735000px;}
.y8a{bottom:522.255000px;}
.y18d{bottom:522.795000px;}
.y11e{bottom:522.975000px;}
.y2e{bottom:525.675000px;}
.yc1{bottom:529.635000px;}
.y19c{bottom:531.795000px;}
.yed{bottom:533.775000px;}
.y165{bottom:535.935000px;}
.y4e{bottom:537.555000px;}
.y89{bottom:540.075000px;}
.y18c{bottom:540.615000px;}
.y11d{bottom:540.795000px;}
.y2d{bottom:543.495000px;}
.yc0{bottom:548.355000px;}
.y19b{bottom:549.615000px;}
.y141{bottom:549.795000px;}
.y164{bottom:553.755000px;}
.y88{bottom:558.075000px;}
.y11c{bottom:558.615000px;}
.y2c{bottom:561.495000px;}
.ybf{bottom:566.895000px;}
.y140{bottom:567.615000px;}
.y87{bottom:575.895000px;}
.y4d{bottom:579.315000px;}
.y163{bottom:580.395000px;}
.y2b{bottom:585.255000px;}
.ybe{bottom:585.435000px;}
.y11b{bottom:585.615000px;}
.y86{bottom:593.715000px;}
.y4c{bottom:597.135000px;}
.y2a{bottom:603.075000px;}
.y18b{bottom:603.255000px;}
.y11a{bottom:603.435000px;}
.ybd{bottom:604.155000px;}
.ybb{bottom:607.395000px;}
.y162{bottom:607.575000px;}
.y85{bottom:611.535000px;}
.y4b{bottom:614.955000px;}
.y29{bottom:620.895000px;}
.y18a{bottom:621.075000px;}
.y119{bottom:621.255000px;}
.yec{bottom:623.595000px;}
.y161{bottom:625.395000px;}
.y4a{bottom:632.775000px;}
.yba{bottom:634.755000px;}
.y84{bottom:635.475000px;}
.y28{bottom:638.895000px;}
.y118{bottom:639.075000px;}
.y160{bottom:643.395000px;}
.y189{bottom:647.895000px;}
.y13f{bottom:648.075000px;}
.y49{bottom:650.595000px;}
.yeb{bottom:650.775000px;}
.y83{bottom:653.295000px;}
.y27{bottom:656.715000px;}
.y117{bottom:656.895000px;}
.yb9{bottom:661.935000px;}
.y15f{bottom:662.115000px;}
.y188{bottom:665.715000px;}
.y13e{bottom:665.895000px;}
.y48{bottom:668.595000px;}
.yea{bottom:668.775000px;}
.y82{bottom:671.115000px;}
.y26{bottom:674.535000px;}
.yb8{bottom:679.785000px;}
.y15e{bottom:679.965000px;}
.y116{bottom:683.745000px;}
.y47{bottom:686.445000px;}
.ye9{bottom:686.625000px;}
.y81{bottom:688.965000px;}
.y25{bottom:692.385000px;}
.yb7{bottom:697.605000px;}
.y15d{bottom:697.965000px;}
.y187{bottom:701.565000px;}
.y115{bottom:701.745000px;}
.ye8{bottom:704.445000px;}
.y80{bottom:706.785000px;}
.y46{bottom:709.845000px;}
.y24{bottom:710.205000px;}
.y15c{bottom:716.685000px;}
.y19a{bottom:719.385000px;}
.y114{bottom:719.565000px;}
.yb6{bottom:724.065000px;}
.y7f{bottom:724.785000px;}
.y45{bottom:727.845000px;}
.y23{bottom:728.205000px;}
.y186{bottom:728.385000px;}
.ye7{bottom:731.265000px;}
.y15b{bottom:734.505000px;}
.y113{bottom:737.385000px;}
.y7e{bottom:742.605000px;}
.y185{bottom:746.205000px;}
.y13d{bottom:746.385000px;}
.ye6{bottom:749.085000px;}
.yb5{bottom:751.425000px;}
.y15a{bottom:752.325000px;}
.y22{bottom:753.405000px;}
.y112{bottom:755.205000px;}
.y184{bottom:764.025000px;}
.y13c{bottom:764.205000px;}
.ye5{bottom:766.905000px;}
.y7d{bottom:767.985000px;}
.yb4{bottom:769.245000px;}
.y159{bottom:771.225000px;}
.y20{bottom:779.865000px;}
.y111{bottom:781.665000px;}
.y13b{bottom:782.025000px;}
.ye4{bottom:784.905000px;}
.yb3{bottom:787.065000px;}
.y158{bottom:789.945000px;}
.y183{bottom:791.025000px;}
.y7c{bottom:796.245000px;}
.y199{bottom:799.845000px;}
.ye3{bottom:802.725000px;}
.yb2{bottom:804.885000px;}
.y157{bottom:807.765000px;}
.y182{bottom:808.845000px;}
.y110{bottom:809.025000px;}
.y7b{bottom:814.065000px;}
.yb1{bottom:822.705000px;}
.y156{bottom:825.765000px;}
.y198{bottom:826.665000px;}
.y10f{bottom:826.845000px;}
.ye{bottom:828.825000px;}
.ye2{bottom:830.985000px;}
.y7a{bottom:832.965000px;}
.y181{bottom:835.665000px;}
.yb0{bottom:840.525000px;}
.y197{bottom:844.485000px;}
.y10e{bottom:844.665000px;}
.y79{bottom:850.785000px;}
.y155{bottom:853.485000px;}
.yaf{bottom:858.525000px;}
.ye1{bottom:862.305000px;}
.y10d{bottom:862.485000px;}
.y78{bottom:869.505000px;}
.y180{bottom:871.305000px;}
.y154{bottom:879.945000px;}
.ye0{bottom:880.125000px;}
.y10c{bottom:880.305000px;}
.yae{bottom:880.485000px;}
.y77{bottom:887.505000px;}
.y17f{bottom:889.125000px;}
.y13a{bottom:889.305000px;}
.ydf{bottom:898.125000px;}
.y76{bottom:906.405000px;}
.y139{bottom:907.125000px;}
.y10b{bottom:916.170000px;}
.yac{bottom:916.890000px;}
.yde{bottom:924.990000px;}
.y138{bottom:925.170000px;}
.y75{bottom:930.750000px;}
.y10a{bottom:933.990000px;}
.ydd{bottom:942.810000px;}
.y137{bottom:942.990000px;}
.y17e{bottom:951.810000px;}
.ya8{bottom:953.430000px;}
.y74{bottom:954.870000px;}
.ydc{bottom:960.630000px;}
.y109{bottom:960.810000px;}
.y196{bottom:969.630000px;}
.y73{bottom:972.870000px;}
.ydb{bottom:978.450000px;}
.y108{bottom:978.630000px;}
.ya5{bottom:989.790000px;}
.y72{bottom:990.690000px;}
.yda{bottom:996.450000px;}
.y136{bottom:1005.450000px;}
.y71{bottom:1008.510000px;}
.y107{bottom:1014.450000px;}
.yd9{bottom:1022.910000px;}
.y135{bottom:1023.450000px;}
.y70{bottom:1026.330000px;}
.yd{bottom:1027.230000px;}
.y17d{bottom:1032.270000px;}
.ya4{bottom:1034.790000px;}
.y106{bottom:1041.270000px;}
.y6f{bottom:1044.330000px;}
.yd8{bottom:1050.090000px;}
.yc{bottom:1054.050000px;}
.y105{bottom:1059.090000px;}
.ya3{bottom:1062.150000px;}
.yd7{bottom:1067.910000px;}
.y6e{bottom:1068.090000px;}
.yb{bottom:1074.570000px;}
.y104{bottom:1076.910000px;}
.ya2{bottom:1079.970000px;}
.y6d{bottom:1085.910000px;}
.yd6{bottom:1094.370000px;}
.y103{bottom:1094.730000px;}
.ya1{bottom:1097.790000px;}
.y6c{bottom:1103.730000px;}
.ya{bottom:1104.450000px;}
.y134{bottom:1112.550000px;}
.y5{bottom:1112.940000px;}
.ya0{bottom:1115.610000px;}
.y6b{bottom:1121.550000px;}
.y133{bottom:1130.550000px;}
.y9{bottom:1132.350000px;}
.y9f{bottom:1133.610000px;}
.y6a{bottom:1139.550000px;}
.y17c{bottom:1148.400000px;}
.y69{bottom:1157.400000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y17b{bottom:1166.220000px;}
.y68{bottom:1175.220000px;}
.y2{bottom:1181.520000px;}
.y66{bottom:1188.540000px;}
.y7{bottom:1191.240000px;}
.y65{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h1f{height:2.826563px;}
.h16{height:15.169922px;}
.h20{height:17.805000px;}
.h1d{height:17.985000px;}
.h1e{height:24.465000px;}
.h21{height:28.605000px;}
.h23{height:31.138500px;}
.h22{height:31.896000px;}
.hc{height:35.332031px;}
.h1a{height:35.625000px;}
.h1c{height:35.662500px;}
.h1b{height:35.805000px;}
.h19{height:39.045000px;}
.h13{height:45.061523px;}
.h5{height:47.344922px;}
.h15{height:47.980898px;}
.h11{height:48.240000px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.hf{height:48.616875px;}
.h17{height:52.971680px;}
.h4{height:52.998047px;}
.he{height:54.421875px;}
.h18{height:55.503491px;}
.h2{height:58.651172px;}
.hb{height:60.041250px;}
.h10{height:60.226875px;}
.h3{height:65.884219px;}
.h14{height:66.757500px;}
.h9{height:72.229219px;}
.h12{height:72.562500px;}
.ha{height:84.898125px;}
.h6{height:149.940000px;}
.hd{height:185.970000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.w9{width:41.385000px;}
.w7{width:84.405000px;}
.wa{width:91.821000px;}
.wc{width:92.010000px;}
.wf{width:94.845000px;}
.we{width:116.121000px;}
.w8{width:126.750000px;}
.w6{width:145.641000px;}
.wd{width:169.410000px;}
.wb{width:190.635000px;}
.w3{width:210.133500px;}
.w4{width:536.505000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.065000px;}
.xd{left:7.740000px;}
.x3{left:12.090000px;}
.xb{left:18.394500px;}
.x1{left:54.000000px;}
.x11{left:55.440000px;}
.xa{left:72.901500px;}
.x14{left:81.000000px;}
.xe{left:95.256000px;}
.x15{left:108.036000px;}
.xc{left:283.755000px;}
.x9{left:318.135000px;}
.x7{left:328.215000px;}
.x8{left:339.195000px;}
.x6{left:344.775000px;}
.x13{left:438.195000px;}
.xf{left:473.505000px;}
.x17{left:477.120000px;}
.x1e{left:486.120000px;}
.x1b{left:496.020000px;}
.x25{left:500.505000px;}
.x1a{left:510.405000px;}
.x10{left:514.725000px;}
.x16{left:516.885000px;}
.x22{left:518.145000px;}
.x26{left:527.505000px;}
.x1d{left:539.580000px;}
.x23{left:550.380000px;}
.x18{left:623.490000px;}
.x24{left:667.410000px;}
.x21{left:677.490000px;}
.x1f{left:687.390000px;}
.x12{left:698.190000px;}
.x19{left:708.630000px;}
.x20{left:730.950000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.920000pt;}
.v2{vertical-align:21.120000pt;}
.lsc{letter-spacing:-2.400000pt;}
.lsd{letter-spacing:-2.320000pt;}
.lsb{letter-spacing:-2.240000pt;}
.lsa{letter-spacing:-1.760000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls13{letter-spacing:-0.618667pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.400533pt;}
.lse{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.239467pt;}
.lsf{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.019840pt;}
.ls8{letter-spacing:0.024960pt;}
.ls15{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.227733pt;}
.ls3{letter-spacing:0.320000pt;}
.ls17{letter-spacing:6.400000pt;}
.ls16{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:22.496000pt;}
.ls19{letter-spacing:46.816000pt;}
.ls18{letter-spacing:60.896000pt;}
.ls12{letter-spacing:61.024000pt;}
.ls2{letter-spacing:124.960000pt;}
.ws13{word-spacing:-48.000000pt;}
.ws3{word-spacing:-18.744960pt;}
.ws15{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.534613pt;}
.wsc{word-spacing:-12.320000pt;}
.ws0{word-spacing:-12.192000pt;}
.ws14{word-spacing:-12.096000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.984000pt;}
.wse{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.ws8{word-spacing:-10.319467pt;}
.ws11{word-spacing:-9.710720pt;}
.ws12{word-spacing:-9.690880pt;}
.ws10{word-spacing:-9.072213pt;}
.ws9{word-spacing:-8.480000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws4{word-spacing:-0.074880pt;}
.ws6{word-spacing:-0.048000pt;}
.wsf{word-spacing:0.000000pt;}
._28{margin-left:-6.320000pt;}
._7{margin-left:-2.510933pt;}
._2{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._1{width:2.566613pt;}
._14{width:3.716480pt;}
._e{width:5.424000pt;}
._13{width:6.364800pt;}
._12{width:7.344000pt;}
._17{width:8.241493pt;}
._6{width:9.222827pt;}
._5{width:10.323840pt;}
._1e{width:13.770667pt;}
._c{width:14.688000pt;}
._b{width:15.696000pt;}
._a{width:16.704000pt;}
._20{width:17.664000pt;}
._8{width:18.624000pt;}
._9{width:20.339840pt;}
._f{width:21.504000pt;}
._1d{width:23.227947pt;}
._d{width:24.288000pt;}
._1f{width:25.287680pt;}
._1a{width:26.256000pt;}
._1b{width:27.228800pt;}
._25{width:28.131840pt;}
._18{width:29.136000pt;}
._21{width:30.720000pt;}
._1c{width:31.783680pt;}
._15{width:32.736000pt;}
._10{width:34.224000pt;}
._11{width:35.268480pt;}
._27{width:36.720000pt;}
._16{width:37.872000pt;}
._26{width:39.110827pt;}
._19{width:40.560000pt;}
._31{width:41.811840pt;}
._29{width:43.123840pt;}
._2a{width:44.368000pt;}
._32{width:45.408000pt;}
._3b{width:46.400000pt;}
._24{width:47.523840pt;}
._23{width:49.632000pt;}
._22{width:50.640000pt;}
._2e{width:52.944000pt;}
._2d{width:53.904000pt;}
._36{width:58.178347pt;}
._2f{width:59.450667pt;}
._30{width:60.394667pt;}
._34{width:62.403840pt;}
._33{width:63.312000pt;}
._3a{width:76.672000pt;}
._2b{width:77.923840pt;}
._2c{width:78.892160pt;}
._3c{width:85.200000pt;}
._35{width:145.200000pt;}
._39{width:186.960000pt;}
._38{width:188.496000pt;}
._4{width:347.701120pt;}
._37{width:673.328000pt;}
._3{width:1272.197333pt;}
.fs9{font-size:2.560000pt;}
.fs8{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:4.800000pt;}
.yab{bottom:4.960000pt;}
.ya7{bottom:7.680000pt;}
.y1f{bottom:8.640000pt;}
.y16{bottom:10.720000pt;}
.yd4{bottom:10.880000pt;}
.yd2{bottom:11.200000pt;}
.ya9{bottom:12.960000pt;}
.yd0{bottom:14.226667pt;}
.yaa{bottom:20.800000pt;}
.yad{bottom:20.960000pt;}
.y21{bottom:22.560000pt;}
.ya6{bottom:23.520000pt;}
.y15{bottom:31.040000pt;}
.y1e{bottom:31.840000pt;}
.y1d{bottom:45.600000pt;}
.y14{bottom:51.360000pt;}
.y67{bottom:52.000000pt;}
.y1c{bottom:59.360000pt;}
.y4{bottom:68.320000pt;}
.y13{bottom:71.360000pt;}
.y1b{bottom:73.160000pt;}
.y12{bottom:91.880000pt;}
.y6{bottom:93.440000pt;}
.y1a{bottom:97.160000pt;}
.y17a{bottom:97.760000pt;}
.yd5{bottom:98.720000pt;}
.y153{bottom:99.680000pt;}
.y64{bottom:103.840000pt;}
.y102{bottom:105.600000pt;}
.y44{bottom:107.520000pt;}
.y9e{bottom:109.600000pt;}
.y132{bottom:110.080000pt;}
.y11{bottom:112.200000pt;}
.y19{bottom:113.000000pt;}
.y179{bottom:113.760000pt;}
.y152{bottom:115.520000pt;}
.y63{bottom:119.680000pt;}
.y101{bottom:121.440000pt;}
.y43{bottom:123.360000pt;}
.y9d{bottom:125.440000pt;}
.y131{bottom:126.080000pt;}
.yd3{bottom:127.040000pt;}
.y18{bottom:128.840000pt;}
.y178{bottom:129.600000pt;}
.y151{bottom:131.360000pt;}
.y10{bottom:132.360000pt;}
.y62{bottom:135.520000pt;}
.y100{bottom:137.280000pt;}
.y42{bottom:139.200000pt;}
.y130{bottom:141.920000pt;}
.y17{bottom:144.840000pt;}
.y177{bottom:145.440000pt;}
.yf{bottom:146.120000pt;}
.y9c{bottom:146.400000pt;}
.y150{bottom:147.360000pt;}
.y61{bottom:151.360000pt;}
.yff{bottom:153.120000pt;}
.y41{bottom:155.040000pt;}
.yd1{bottom:155.360000pt;}
.y14f{bottom:163.200000pt;}
.y12f{bottom:165.760000pt;}
.y60{bottom:167.200000pt;}
.y9b{bottom:167.840000pt;}
.yfe{bottom:169.120000pt;}
.y176{bottom:169.280000pt;}
.y40{bottom:170.880000pt;}
.y14e{bottom:179.040000pt;}
.y12e{bottom:181.600000pt;}
.y5f{bottom:183.226667pt;}
.y9a{bottom:183.706667pt;}
.ycf{bottom:184.360000pt;}
.y175{bottom:185.146667pt;}
.y3f{bottom:186.746667pt;}
.yfd{bottom:192.666667pt;}
.y14d{bottom:194.906667pt;}
.y12d{bottom:197.466667pt;}
.y99{bottom:199.706667pt;}
.y3e{bottom:202.746667pt;}
.y5e{bottom:204.346667pt;}
.y174{bottom:210.426667pt;}
.y14c{bottom:210.746667pt;}
.yfc{bottom:216.826667pt;}
.y3d{bottom:218.586667pt;}
.y5d{bottom:220.186667pt;}
.yce{bottom:220.506667pt;}
.y12c{bottom:221.306667pt;}
.y98{bottom:222.106667pt;}
.y1a0{bottom:223.546667pt;}
.yfb{bottom:232.666667pt;}
.y3c{bottom:234.426667pt;}
.y14b{bottom:234.746667pt;}
.y5c{bottom:236.026667pt;}
.y12b{bottom:237.306667pt;}
.y173{bottom:238.266667pt;}
.ycd{bottom:244.666667pt;}
.y97{bottom:247.226667pt;}
.yfa{bottom:248.506667pt;}
.y19f{bottom:250.266667pt;}
.y14a{bottom:250.586667pt;}
.y5b{bottom:252.026667pt;}
.y12a{bottom:253.146667pt;}
.y172{bottom:254.106667pt;}
.y3b{bottom:255.706667pt;}
.ycc{bottom:260.506667pt;}
.y96{bottom:263.066667pt;}
.y19e{bottom:266.106667pt;}
.y149{bottom:266.426667pt;}
.y129{bottom:268.986667pt;}
.y171{bottom:269.946667pt;}
.y3a{bottom:271.546667pt;}
.yf9{bottom:272.346667pt;}
.y5a{bottom:274.106667pt;}
.y95{bottom:279.066667pt;}
.y19d{bottom:281.946667pt;}
.y148{bottom:282.266667pt;}
.ycb{bottom:284.026667pt;}
.y128{bottom:284.826667pt;}
.y170{bottom:285.786667pt;}
.y39{bottom:287.386667pt;}
.yf8{bottom:288.346667pt;}
.y195{bottom:289.946667pt;}
.y94{bottom:294.906667pt;}
.y59{bottom:297.946667pt;}
.y147{bottom:298.106667pt;}
.y127{bottom:300.666667pt;}
.y16f{bottom:301.626667pt;}
.y38{bottom:303.226667pt;}
.yf7{bottom:304.186667pt;}
.y194{bottom:305.946667pt;}
.yca{bottom:308.346667pt;}
.y93{bottom:310.746667pt;}
.y58{bottom:313.786667pt;}
.y146{bottom:313.946667pt;}
.y126{bottom:316.666667pt;}
.y37{bottom:319.066667pt;}
.yf6{bottom:320.026667pt;}
.y193{bottom:321.786667pt;}
.yc9{bottom:324.186667pt;}
.y16e{bottom:325.626667pt;}
.y57{bottom:329.626667pt;}
.y145{bottom:329.946667pt;}
.y92{bottom:331.866667pt;}
.y125{bottom:332.506667pt;}
.y36{bottom:334.906667pt;}
.yf5{bottom:335.866667pt;}
.y192{bottom:337.626667pt;}
.yc8{bottom:340.026667pt;}
.y16d{bottom:341.466667pt;}
.y56{bottom:345.466667pt;}
.y144{bottom:345.786667pt;}
.y91{bottom:347.866667pt;}
.y124{bottom:348.346667pt;}
.y35{bottom:350.906667pt;}
.yc7{bottom:355.866667pt;}
.y16c{bottom:357.306667pt;}
.yf4{bottom:359.866667pt;}
.y55{bottom:361.306667pt;}
.y191{bottom:361.466667pt;}
.y90{bottom:363.706667pt;}
.y34{bottom:366.746667pt;}
.y143{bottom:369.626667pt;}
.yc6{bottom:371.706667pt;}
.y16b{bottom:373.146667pt;}
.y123{bottom:373.466667pt;}
.yf3{bottom:376.506667pt;}
.y54{bottom:377.306667pt;}
.y8f{bottom:379.546667pt;}
.y142{bottom:385.466667pt;}
.y33{bottom:387.866667pt;}
.yf2{bottom:392.386667pt;}
.y190{bottom:393.186667pt;}
.y8e{bottom:395.426667pt;}
.yc5{bottom:395.746667pt;}
.y16a{bottom:397.026667pt;}
.y53{bottom:398.466667pt;}
.y122{bottom:401.346667pt;}
.y32{bottom:403.746667pt;}
.yf1{bottom:409.186667pt;}
.y8d{bottom:411.266667pt;}
.yc4{bottom:411.586667pt;}
.y169{bottom:413.026667pt;}
.y52{bottom:414.306667pt;}
.y121{bottom:417.186667pt;}
.y31{bottom:419.746667pt;}
.yf0{bottom:425.826667pt;}
.y8c{bottom:427.266667pt;}
.yc3{bottom:427.426667pt;}
.y168{bottom:428.866667pt;}
.y51{bottom:430.146667pt;}
.y18f{bottom:433.026667pt;}
.y120{bottom:433.186667pt;}
.y30{bottom:435.586667pt;}
.yef{bottom:441.826667pt;}
.y167{bottom:444.706667pt;}
.y50{bottom:446.146667pt;}
.y8b{bottom:448.386667pt;}
.y18e{bottom:448.866667pt;}
.y11f{bottom:449.026667pt;}
.yc2{bottom:450.946667pt;}
.y2f{bottom:451.426667pt;}
.yee{bottom:458.466667pt;}
.y166{bottom:460.546667pt;}
.y4f{bottom:461.986667pt;}
.y8a{bottom:464.226667pt;}
.y18d{bottom:464.706667pt;}
.y11e{bottom:464.866667pt;}
.y2e{bottom:467.266667pt;}
.yc1{bottom:470.786667pt;}
.y19c{bottom:472.706667pt;}
.yed{bottom:474.466667pt;}
.y165{bottom:476.386667pt;}
.y4e{bottom:477.826667pt;}
.y89{bottom:480.066667pt;}
.y18c{bottom:480.546667pt;}
.y11d{bottom:480.706667pt;}
.y2d{bottom:483.106667pt;}
.yc0{bottom:487.426667pt;}
.y19b{bottom:488.546667pt;}
.y141{bottom:488.706667pt;}
.y164{bottom:492.226667pt;}
.y88{bottom:496.066667pt;}
.y11c{bottom:496.546667pt;}
.y2c{bottom:499.106667pt;}
.ybf{bottom:503.906667pt;}
.y140{bottom:504.546667pt;}
.y87{bottom:511.906667pt;}
.y4d{bottom:514.946667pt;}
.y163{bottom:515.906667pt;}
.y2b{bottom:520.226667pt;}
.ybe{bottom:520.386667pt;}
.y11b{bottom:520.546667pt;}
.y86{bottom:527.746667pt;}
.y4c{bottom:530.786667pt;}
.y2a{bottom:536.066667pt;}
.y18b{bottom:536.226667pt;}
.y11a{bottom:536.386667pt;}
.ybd{bottom:537.026667pt;}
.ybb{bottom:539.906667pt;}
.y162{bottom:540.066667pt;}
.y85{bottom:543.586667pt;}
.y4b{bottom:546.626667pt;}
.y29{bottom:551.906667pt;}
.y18a{bottom:552.066667pt;}
.y119{bottom:552.226667pt;}
.yec{bottom:554.306667pt;}
.y161{bottom:555.906667pt;}
.y4a{bottom:562.466667pt;}
.yba{bottom:564.226667pt;}
.y84{bottom:564.866667pt;}
.y28{bottom:567.906667pt;}
.y118{bottom:568.066667pt;}
.y160{bottom:571.906667pt;}
.y189{bottom:575.906667pt;}
.y13f{bottom:576.066667pt;}
.y49{bottom:578.306667pt;}
.yeb{bottom:578.466667pt;}
.y83{bottom:580.706667pt;}
.y27{bottom:583.746667pt;}
.y117{bottom:583.906667pt;}
.yb9{bottom:588.386667pt;}
.y15f{bottom:588.546667pt;}
.y188{bottom:591.746667pt;}
.y13e{bottom:591.906667pt;}
.y48{bottom:594.306667pt;}
.yea{bottom:594.466667pt;}
.y82{bottom:596.546667pt;}
.y26{bottom:599.586667pt;}
.yb8{bottom:604.253333pt;}
.y15e{bottom:604.413333pt;}
.y116{bottom:607.773333pt;}
.y47{bottom:610.173333pt;}
.ye9{bottom:610.333333pt;}
.y81{bottom:612.413333pt;}
.y25{bottom:615.453333pt;}
.yb7{bottom:620.093333pt;}
.y15d{bottom:620.413333pt;}
.y187{bottom:623.613333pt;}
.y115{bottom:623.773333pt;}
.ye8{bottom:626.173333pt;}
.y80{bottom:628.253333pt;}
.y46{bottom:630.973333pt;}
.y24{bottom:631.293333pt;}
.y15c{bottom:637.053333pt;}
.y19a{bottom:639.453333pt;}
.y114{bottom:639.613333pt;}
.yb6{bottom:643.613333pt;}
.y7f{bottom:644.253333pt;}
.y45{bottom:646.973333pt;}
.y23{bottom:647.293333pt;}
.y186{bottom:647.453333pt;}
.ye7{bottom:650.013333pt;}
.y15b{bottom:652.893333pt;}
.y113{bottom:655.453333pt;}
.y7e{bottom:660.093333pt;}
.y185{bottom:663.293333pt;}
.y13d{bottom:663.453333pt;}
.ye6{bottom:665.853333pt;}
.yb5{bottom:667.933333pt;}
.y15a{bottom:668.733333pt;}
.y22{bottom:669.693333pt;}
.y112{bottom:671.293333pt;}
.y184{bottom:679.133333pt;}
.y13c{bottom:679.293333pt;}
.ye5{bottom:681.693333pt;}
.y7d{bottom:682.653333pt;}
.yb4{bottom:683.773333pt;}
.y159{bottom:685.533333pt;}
.y20{bottom:693.213333pt;}
.y111{bottom:694.813333pt;}
.y13b{bottom:695.133333pt;}
.ye4{bottom:697.693333pt;}
.yb3{bottom:699.613333pt;}
.y158{bottom:702.173333pt;}
.y183{bottom:703.133333pt;}
.y7c{bottom:707.773333pt;}
.y199{bottom:710.973333pt;}
.ye3{bottom:713.533333pt;}
.yb2{bottom:715.453333pt;}
.y157{bottom:718.013333pt;}
.y182{bottom:718.973333pt;}
.y110{bottom:719.133333pt;}
.y7b{bottom:723.613333pt;}
.yb1{bottom:731.293333pt;}
.y156{bottom:734.013333pt;}
.y198{bottom:734.813333pt;}
.y10f{bottom:734.973333pt;}
.ye{bottom:736.733333pt;}
.ye2{bottom:738.653333pt;}
.y7a{bottom:740.413333pt;}
.y181{bottom:742.813333pt;}
.yb0{bottom:747.133333pt;}
.y197{bottom:750.653333pt;}
.y10e{bottom:750.813333pt;}
.y79{bottom:756.253333pt;}
.y155{bottom:758.653333pt;}
.yaf{bottom:763.133333pt;}
.ye1{bottom:766.493333pt;}
.y10d{bottom:766.653333pt;}
.y78{bottom:772.893333pt;}
.y180{bottom:774.493333pt;}
.y154{bottom:782.173333pt;}
.ye0{bottom:782.333333pt;}
.y10c{bottom:782.493333pt;}
.yae{bottom:782.653333pt;}
.y77{bottom:788.893333pt;}
.y17f{bottom:790.333333pt;}
.y13a{bottom:790.493333pt;}
.ydf{bottom:798.333333pt;}
.y76{bottom:805.693333pt;}
.y139{bottom:806.333333pt;}
.y10b{bottom:814.373333pt;}
.yac{bottom:815.013333pt;}
.yde{bottom:822.213333pt;}
.y138{bottom:822.373333pt;}
.y75{bottom:827.333333pt;}
.y10a{bottom:830.213333pt;}
.ydd{bottom:838.053333pt;}
.y137{bottom:838.213333pt;}
.y17e{bottom:846.053333pt;}
.ya8{bottom:847.493333pt;}
.y74{bottom:848.773333pt;}
.ydc{bottom:853.893333pt;}
.y109{bottom:854.053333pt;}
.y196{bottom:861.893333pt;}
.y73{bottom:864.773333pt;}
.ydb{bottom:869.733333pt;}
.y108{bottom:869.893333pt;}
.ya5{bottom:879.813333pt;}
.y72{bottom:880.613333pt;}
.yda{bottom:885.733333pt;}
.y136{bottom:893.733333pt;}
.y71{bottom:896.453333pt;}
.y107{bottom:901.733333pt;}
.yd9{bottom:909.253333pt;}
.y135{bottom:909.733333pt;}
.y70{bottom:912.293333pt;}
.yd{bottom:913.093333pt;}
.y17d{bottom:917.573333pt;}
.ya4{bottom:919.813333pt;}
.y106{bottom:925.573333pt;}
.y6f{bottom:928.293333pt;}
.yd8{bottom:933.413333pt;}
.yc{bottom:936.933333pt;}
.y105{bottom:941.413333pt;}
.ya3{bottom:944.133333pt;}
.yd7{bottom:949.253333pt;}
.y6e{bottom:949.413333pt;}
.yb{bottom:955.173333pt;}
.y104{bottom:957.253333pt;}
.ya2{bottom:959.973333pt;}
.y6d{bottom:965.253333pt;}
.yd6{bottom:972.773333pt;}
.y103{bottom:973.093333pt;}
.ya1{bottom:975.813333pt;}
.y6c{bottom:981.093333pt;}
.ya{bottom:981.733333pt;}
.y134{bottom:988.933333pt;}
.y5{bottom:989.280000pt;}
.ya0{bottom:991.653333pt;}
.y6b{bottom:996.933333pt;}
.y133{bottom:1004.933333pt;}
.y9{bottom:1006.533333pt;}
.y9f{bottom:1007.653333pt;}
.y6a{bottom:1012.933333pt;}
.y17c{bottom:1020.800000pt;}
.y69{bottom:1028.800000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y17b{bottom:1036.640000pt;}
.y68{bottom:1044.640000pt;}
.y2{bottom:1050.240000pt;}
.y66{bottom:1056.480000pt;}
.y7{bottom:1058.880000pt;}
.y65{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h1f{height:2.512500pt;}
.h16{height:13.484375pt;}
.h20{height:15.826667pt;}
.h1d{height:15.986667pt;}
.h1e{height:21.746667pt;}
.h21{height:25.426667pt;}
.h23{height:27.678667pt;}
.h22{height:28.352000pt;}
.hc{height:31.406250pt;}
.h1a{height:31.666667pt;}
.h1c{height:31.700000pt;}
.h1b{height:31.826667pt;}
.h19{height:34.706667pt;}
.h13{height:40.054688pt;}
.h5{height:42.084375pt;}
.h15{height:42.649687pt;}
.h11{height:42.880000pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.hf{height:43.215000pt;}
.h17{height:47.085938pt;}
.h4{height:47.109375pt;}
.he{height:48.375000pt;}
.h18{height:49.336436pt;}
.h2{height:52.134375pt;}
.hb{height:53.370000pt;}
.h10{height:53.535000pt;}
.h3{height:58.563750pt;}
.h14{height:59.340000pt;}
.h9{height:64.203750pt;}
.h12{height:64.500000pt;}
.ha{height:75.465000pt;}
.h6{height:133.280000pt;}
.hd{height:165.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.w9{width:36.786667pt;}
.w7{width:75.026667pt;}
.wa{width:81.618667pt;}
.wc{width:81.786667pt;}
.wf{width:84.306667pt;}
.we{width:103.218667pt;}
.w8{width:112.666667pt;}
.w6{width:129.458667pt;}
.wd{width:150.586667pt;}
.wb{width:169.453333pt;}
.w3{width:186.785333pt;}
.w4{width:476.893333pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.946667pt;}
.xd{left:6.880000pt;}
.x3{left:10.746667pt;}
.xb{left:16.350667pt;}
.x1{left:48.000000pt;}
.x11{left:49.280000pt;}
.xa{left:64.801333pt;}
.x14{left:72.000000pt;}
.xe{left:84.672000pt;}
.x15{left:96.032000pt;}
.xc{left:252.226667pt;}
.x9{left:282.786667pt;}
.x7{left:291.746667pt;}
.x8{left:301.506667pt;}
.x6{left:306.466667pt;}
.x13{left:389.506667pt;}
.xf{left:420.893333pt;}
.x17{left:424.106667pt;}
.x1e{left:432.106667pt;}
.x1b{left:440.906667pt;}
.x25{left:444.893333pt;}
.x1a{left:453.693333pt;}
.x10{left:457.533333pt;}
.x16{left:459.453333pt;}
.x22{left:460.573333pt;}
.x26{left:468.893333pt;}
.x1d{left:479.626667pt;}
.x23{left:489.226667pt;}
.x18{left:554.213333pt;}
.x24{left:593.253333pt;}
.x21{left:602.213333pt;}
.x1f{left:611.013333pt;}
.x12{left:620.613333pt;}
.x19{left:629.893333pt;}
.x20{left:649.733333pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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