
    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_82a89c2be46669212136a5a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_9c676be7ad408d151321fded.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3953adb2c921df4feb023cb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_93fd9f78305cb634e0a05150.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_ead9a3fd62c73219bc010d65.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.107422;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_e534dcb9010b944d2cba36a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_a576cb0695875a94f5595581.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.962402;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_718913027fca67fdf08edc80.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960449;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:-23.760000px;}
.v5{vertical-align:-18.000000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.936000px;}
.ls19{letter-spacing:-0.630000px;}
.ls3{letter-spacing:-0.576000px;}
.lsf{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.269400px;}
.ls22{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.181200px;}
.ls4{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.109200px;}
.ls1e{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.001440px;}
.ls14{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.162000px;}
.ls1f{letter-spacing:0.206400px;}
.lse{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.408000px;}
.ls23{letter-spacing:0.468000px;}
.ls6{letter-spacing:0.538560px;}
.ls12{letter-spacing:0.613440px;}
.ls5{letter-spacing:0.648000px;}
.ls21{letter-spacing:0.666720px;}
.ls18{letter-spacing:1.260000px;}
.ls13{letter-spacing:1.386720px;}
.ls1b{letter-spacing:3.546720px;}
.ls1c{letter-spacing:4.464000px;}
.ls20{letter-spacing:4.986720px;}
.ls11{letter-spacing:8.586720px;}
.lsd{letter-spacing:11.664000px;}
.ls24{letter-spacing:30.096000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws5{word-spacing:-20.664000px;}
.ws8{word-spacing:-20.304000px;}
.wse{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.872000px;}
.wsa{word-spacing:-19.800000px;}
.ws9{word-spacing:-19.584000px;}
.ws7{word-spacing:-19.440000px;}
.wsc{word-spacing:-18.305520px;}
.wsb{word-spacing:-17.956920px;}
.ws18{word-spacing:-16.819680px;}
.ws13{word-spacing:-16.613280px;}
.ws17{word-spacing:-16.506480px;}
.ws19{word-spacing:-16.353480px;}
.ws15{word-spacing:-15.228000px;}
.ws14{word-spacing:-15.138000px;}
.ws16{word-spacing:-15.012000px;}
.ws11{word-spacing:-14.670720px;}
.ws1{word-spacing:-13.410720px;}
.ws10{word-spacing:-13.229520px;}
.ws12{word-spacing:-12.780720px;}
.wsd{word-spacing:-10.808640px;}
.ws2{word-spacing:0.000000px;}
.ws0{word-spacing:0.216000px;}
._0{margin-left:-1.464000px;}
._1{width:1.296000px;}
._6{width:2.304000px;}
._5{width:3.528000px;}
._4{width:4.752000px;}
._7{width:6.048000px;}
._13{width:7.224000px;}
._14{width:8.832000px;}
._15{width:10.644000px;}
._d{width:11.664000px;}
._10{width:13.080000px;}
._3{width:14.340000px;}
._2{width:15.672000px;}
._f{width:17.376000px;}
._8{width:18.648000px;}
._e{width:21.276000px;}
._b{width:22.968000px;}
._c{width:24.336000px;}
._16{width:26.136000px;}
._12{width:27.720000px;}
._11{width:28.800000px;}
._17{width:29.868000px;}
._9{width:31.392000px;}
._a{width:32.604000px;}
._18{width:34.128000px;}
._1d{width:35.136000px;}
._1a{width:36.720000px;}
._19{width:37.872000px;}
._20{width:39.036000px;}
._1b{width:40.680000px;}
._1e{width:42.264000px;}
._1f{width:43.488000px;}
._3c{width:44.928000px;}
._46{width:46.920000px;}
._22{width:47.952000px;}
._21{width:48.960000px;}
._1c{width:50.472000px;}
._35{width:51.996000px;}
._43{width:53.556000px;}
._45{width:58.536000px;}
._26{width:63.792000px;}
._44{width:64.956000px;}
._3b{width:66.600000px;}
._2d{width:72.936000px;}
._2c{width:74.016000px;}
._2e{width:75.648000px;}
._3e{width:76.752000px;}
._3d{width:77.832000px;}
._3f{width:79.392000px;}
._28{width:84.816000px;}
._24{width:88.848000px;}
._23{width:89.856000px;}
._31{width:94.680000px;}
._3a{width:111.240000px;}
._30{width:112.536000px;}
._2f{width:113.616000px;}
._33{width:119.520000px;}
._32{width:120.528000px;}
._38{width:121.608000px;}
._42{width:128.304000px;}
._41{width:129.312000px;}
._34{width:154.152000px;}
._39{width:222.552000px;}
._25{width:233.928000px;}
._2b{width:248.352000px;}
._2a{width:249.408000px;}
._37{width:284.256000px;}
._29{width:294.264000px;}
._40{width:326.664000px;}
._27{width:473.688000px;}
._36{width:527.184000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:42.000000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yad{bottom:2.880000px;}
.ycd{bottom:2.925000px;}
.yc5{bottom:3.060000px;}
.y5c{bottom:3.420000px;}
.y56{bottom:3.780000px;}
.y74{bottom:4.140000px;}
.y16e{bottom:5.400000px;}
.y165{bottom:8.130000px;}
.y16a{bottom:8.640000px;}
.y172{bottom:8.820000px;}
.y152{bottom:10.260000px;}
.y14f{bottom:10.440000px;}
.y15c{bottom:10.485000px;}
.y161{bottom:10.620000px;}
.y6c{bottom:10.800000px;}
.y16c{bottom:11.340000px;}
.y170{bottom:11.880000px;}
.y163{bottom:16.050000px;}
.y168{bottom:16.380000px;}
.yac{bottom:16.740000px;}
.y71{bottom:18.360000px;}
.ye1{bottom:18.405000px;}
.yd9{bottom:18.540000px;}
.y5b{bottom:20.520000px;}
.y73{bottom:21.420000px;}
.y63{bottom:22.185000px;}
.y55{bottom:22.680000px;}
.y164{bottom:23.790000px;}
.y169{bottom:24.120000px;}
.y6b{bottom:29.700000px;}
.yab{bottom:30.420000px;}
.y6e{bottom:32.940000px;}
.y68{bottom:34.560000px;}
.y70{bottom:37.260000px;}
.y5a{bottom:37.800000px;}
.y72{bottom:38.700000px;}
.y62{bottom:39.465000px;}
.y54{bottom:41.580000px;}
.y6a{bottom:48.780000px;}
.y6d{bottom:50.220000px;}
.y67{bottom:51.840000px;}
.y5f{bottom:53.505000px;}
.y58{bottom:53.640000px;}
.y59{bottom:55.080000px;}
.y61{bottom:56.745000px;}
.y1b{bottom:57.060000px;}
.y182{bottom:57.240000px;}
.y65{bottom:67.680000px;}
.y66{bottom:69.120000px;}
.y5e{bottom:72.585000px;}
.y60{bottom:74.025000px;}
.y1{bottom:77.760000px;}
.y181{bottom:77.940000px;}
.y13d{bottom:113.400000px;}
.y143{bottom:113.580000px;}
.yfd{bottom:117.360000px;}
.y166{bottom:125.640000px;}
.y39{bottom:131.220000px;}
.y142{bottom:134.280000px;}
.y95{bottom:142.920000px;}
.y2e{bottom:143.820000px;}
.y77{bottom:144.000000px;}
.y13c{bottom:144.360000px;}
.y15{bottom:144.540000px;}
.y48{bottom:144.720000px;}
.yf5{bottom:147.600000px;}
.ya6{bottom:148.140000px;}
.y141{bottom:154.980000px;}
.y162{bottom:156.600000px;}
.y76{bottom:156.960000px;}
.yfc{bottom:158.760000px;}
.y11b{bottom:165.060000px;}
.yd6{bottom:166.140000px;}
.y46{bottom:166.500000px;}
.y1b0{bottom:167.040000px;}
.y38{bottom:172.620000px;}
.y41{bottom:174.420000px;}
.y13b{bottom:175.500000px;}
.y140{bottom:175.680000px;}
.y99{bottom:184.320000px;}
.y94{bottom:184.680000px;}
.y2d{bottom:185.220000px;}
.y14{bottom:185.940000px;}
.yfb{bottom:187.380000px;}
.y1af{bottom:187.740000px;}
.yf4{bottom:189.000000px;}
.ya5{bottom:189.540000px;}
.y11a{bottom:196.230000px;}
.y13f{bottom:196.410000px;}
.y160{bottom:198.210000px;}
.y75{bottom:198.570000px;}
.y13a{bottom:206.490000px;}
.yd5{bottom:207.570000px;}
.y45{bottom:207.930000px;}
.y1ae{bottom:208.470000px;}
.y6f{bottom:208.650000px;}
.yfa{bottom:213.510000px;}
.y37{bottom:214.050000px;}
.y40{bottom:215.850000px;}
.y8d{bottom:225.750000px;}
.y2c{bottom:226.650000px;}
.y93{bottom:226.830000px;}
.yf9{bottom:227.190000px;}
.y13{bottom:227.370000px;}
.y15f{bottom:229.170000px;}
.yf3{bottom:230.430000px;}
.ya4{bottom:230.970000px;}
.y139{bottom:237.630000px;}
.y13e{bottom:237.810000px;}
.y44{bottom:245.190000px;}
.yd4{bottom:248.970000px;}
.y1ad{bottom:249.870000px;}
.y36{bottom:255.450000px;}
.y3f{bottom:257.250000px;}
.y119{bottom:258.330000px;}
.y15e{bottom:259.770000px;}
.y69{bottom:261.210000px;}
.y8c{bottom:267.150000px;}
.y2b{bottom:268.050000px;}
.y138{bottom:268.590000px;}
.y12{bottom:268.770000px;}
.y1ac{bottom:270.570000px;}
.yf2{bottom:271.830000px;}
.ya3{bottom:272.370000px;}
.y43{bottom:279.750000px;}
.y118{bottom:289.290000px;}
.y15d{bottom:290.190000px;}
.yd3{bottom:290.370000px;}
.y1ab{bottom:291.270000px;}
.y35{bottom:296.850000px;}
.y3e{bottom:298.650000px;}
.y137{bottom:299.730000px;}
.y8b{bottom:308.550000px;}
.y2a{bottom:309.450000px;}
.y11{bottom:310.170000px;}
.y1aa{bottom:311.970000px;}
.yf1{bottom:313.230000px;}
.ya2{bottom:313.770000px;}
.y42{bottom:314.310000px;}
.y117{bottom:320.430000px;}
.y15b{bottom:320.610000px;}
.y180{bottom:321.870000px;}
.y64{bottom:325.290000px;}
.y136{bottom:330.690000px;}
.yd2{bottom:331.770000px;}
.y1a9{bottom:332.670000px;}
.y34{bottom:338.250000px;}
.y3d{bottom:340.050000px;}
.y17f{bottom:342.615000px;}
.y8a{bottom:349.950000px;}
.y29{bottom:350.850000px;}
.y15a{bottom:351.075000px;}
.y116{bottom:351.390000px;}
.y10{bottom:351.570000px;}
.y51{bottom:351.750000px;}
.y1a8{bottom:353.370000px;}
.yf0{bottom:354.630000px;}
.ya1{bottom:355.170000px;}
.y135{bottom:361.830000px;}
.yd1{bottom:362.730000px;}
.y17e{bottom:363.315000px;}
.y1a7{bottom:374.070000px;}
.y3c{bottom:377.130000px;}
.y33{bottom:379.830000px;}
.yd0{bottom:380.190000px;}
.y159{bottom:381.495000px;}
.y115{bottom:382.530000px;}
.y17d{bottom:384.015000px;}
.y89{bottom:391.350000px;}
.y28{bottom:392.250000px;}
.y134{bottom:392.790000px;}
.yf{bottom:392.970000px;}
.y47{bottom:393.150000px;}
.y1a6{bottom:394.770000px;}
.ycf{bottom:395.670000px;}
.yef{bottom:396.030000px;}
.ya0{bottom:396.570000px;}
.y17c{bottom:404.715000px;}
.y5d{bottom:408.270000px;}
.yce{bottom:411.150000px;}
.y3b{bottom:411.870000px;}
.y158{bottom:411.915000px;}
.y114{bottom:413.490000px;}
.y1a5{bottom:415.470000px;}
.y32{bottom:421.050000px;}
.y133{bottom:423.930000px;}
.y17b{bottom:425.415000px;}
.ycc{bottom:426.810000px;}
.y88{bottom:432.795000px;}
.y98{bottom:433.155000px;}
.y27{bottom:433.695000px;}
.ye{bottom:434.415000px;}
.y24{bottom:434.595000px;}
.y1a4{bottom:436.035000px;}
.yee{bottom:437.475000px;}
.y9f{bottom:437.835000px;}
.ycb{bottom:442.335000px;}
.y157{bottom:443.055000px;}
.y113{bottom:444.675000px;}
.y17a{bottom:446.115000px;}
.y3a{bottom:446.295000px;}
.y132{bottom:454.935000px;}
.y1a3{bottom:456.735000px;}
.yca{bottom:457.815000px;}
.y31{bottom:458.355000px;}
.y179{bottom:466.815000px;}
.y26{bottom:471.135000px;}
.yc9{bottom:473.295000px;}
.y156{bottom:473.475000px;}
.y87{bottom:474.195000px;}
.y92{bottom:475.095000px;}
.y112{bottom:475.635000px;}
.yd{bottom:475.815000px;}
.y23{bottom:475.995000px;}
.y1a2{bottom:477.435000px;}
.yed{bottom:478.875000px;}
.y9e{bottom:479.235000px;}
.y131{bottom:486.075000px;}
.y178{bottom:487.545000px;}
.yc8{bottom:488.955000px;}
.y30{bottom:492.915000px;}
.y57{bottom:496.155000px;}
.y1a1{bottom:498.135000px;}
.y155{bottom:503.925000px;}
.yc7{bottom:504.435000px;}
.y25{bottom:505.515000px;}
.y111{bottom:506.775000px;}
.y177{bottom:508.245000px;}
.y86{bottom:515.595000px;}
.y91{bottom:516.495000px;}
.y130{bottom:517.035000px;}
.yc{bottom:517.215000px;}
.y1a0{bottom:518.835000px;}
.yc6{bottom:519.915000px;}
.yec{bottom:520.275000px;}
.y9d{bottom:520.635000px;}
.y2f{bottom:527.475000px;}
.y176{bottom:528.945000px;}
.y154{bottom:534.345000px;}
.yc4{bottom:535.395000px;}
.y110{bottom:537.735000px;}
.y19f{bottom:539.535000px;}
.y12f{bottom:548.175000px;}
.y175{bottom:549.645000px;}
.yc3{bottom:551.055000px;}
.y85{bottom:556.995000px;}
.y90{bottom:557.895000px;}
.yb{bottom:558.615000px;}
.y4a{bottom:558.795000px;}
.y19e{bottom:560.235000px;}
.yeb{bottom:561.675000px;}
.y9c{bottom:562.035000px;}
.y153{bottom:564.945000px;}
.y53{bottom:565.815000px;}
.yc2{bottom:566.535000px;}
.y10f{bottom:568.875000px;}
.y174{bottom:570.345000px;}
.y12e{bottom:579.135000px;}
.y19d{bottom:580.935000px;}
.yc1{bottom:582.735000px;}
.y151{bottom:595.365000px;}
.y84{bottom:598.755000px;}
.y8f{bottom:599.295000px;}
.y10e{bottom:599.835000px;}
.ya{bottom:600.015000px;}
.y9b{bottom:601.275000px;}
.y19c{bottom:601.635000px;}
.yea{bottom:603.075000px;}
.y12d{bottom:610.275000px;}
.yc0{bottom:610.995000px;}
.y173{bottom:611.745000px;}
.y19b{bottom:622.335000px;}
.y150{bottom:625.785000px;}
.y171{bottom:629.025000px;}
.y10d{bottom:630.975000px;}
.ybf{bottom:637.095000px;}
.y83{bottom:640.695000px;}
.y12c{bottom:641.235000px;}
.y9{bottom:641.415000px;}
.y4e{bottom:641.595000px;}
.y19a{bottom:643.035000px;}
.y52{bottom:644.295000px;}
.y14e{bottom:656.250000px;}
.y16f{bottom:656.430000px;}
.yf8{bottom:657.615000px;}
.y10c{bottom:661.935000px;}
.y199{bottom:663.735000px;}
.y12b{bottom:672.405000px;}
.ybe{bottom:675.645000px;}
.y82{bottom:682.125000px;}
.y22{bottom:682.845000px;}
.yf7{bottom:683.745000px;}
.y198{bottom:684.465000px;}
.ye9{bottom:685.725000px;}
.y14d{bottom:686.670000px;}
.y16d{bottom:689.730000px;}
.ybd{bottom:692.925000px;}
.y10b{bottom:693.105000px;}
.y12a{bottom:703.365000px;}
.y197{bottom:705.165000px;}
.yf6{bottom:708.405000px;}
.y16b{bottom:710.070000px;}
.ybc{bottom:714.525000px;}
.y14c{bottom:718.530000px;}
.y81{bottom:723.525000px;}
.y10a{bottom:724.065000px;}
.y21{bottom:724.245000px;}
.y50{bottom:724.425000px;}
.y196{bottom:725.865000px;}
.ye8{bottom:727.125000px;}
.y129{bottom:734.505000px;}
.ybb{bottom:736.125000px;}
.y167{bottom:742.470000px;}
.y195{bottom:746.565000px;}
.y109{bottom:755.205000px;}
.yba{bottom:757.725000px;}
.y80{bottom:764.925000px;}
.y128{bottom:765.465000px;}
.y8{bottom:765.645000px;}
.y194{bottom:767.265000px;}
.ye7{bottom:768.525000px;}
.y14b{bottom:771.270000px;}
.yb9{bottom:779.325000px;}
.y108{bottom:786.165000px;}
.y193{bottom:787.965000px;}
.y127{bottom:796.605000px;}
.yb8{bottom:800.925000px;}
.y7f{bottom:806.325000px;}
.y20{bottom:807.045000px;}
.y192{bottom:808.665000px;}
.ye6{bottom:809.925000px;}
.y107{bottom:817.305000px;}
.yb7{bottom:822.525000px;}
.ye5{bottom:827.385000px;}
.y126{bottom:827.565000px;}
.y191{bottom:829.365000px;}
.ye4{bottom:842.865000px;}
.yb6{bottom:844.125000px;}
.y7e{bottom:847.725000px;}
.y106{bottom:848.265000px;}
.y7{bottom:848.445000px;}
.y4f{bottom:848.625000px;}
.y190{bottom:850.065000px;}
.ye3{bottom:858.345000px;}
.y125{bottom:858.705000px;}
.yb5{bottom:865.725000px;}
.y14a{bottom:869.145000px;}
.y18f{bottom:870.765000px;}
.ye2{bottom:873.825000px;}
.y105{bottom:879.405000px;}
.yb4{bottom:887.325000px;}
.y7d{bottom:889.125000px;}
.y124{bottom:889.665000px;}
.y1f{bottom:889.845000px;}
.y4d{bottom:890.025000px;}
.y18e{bottom:891.465000px;}
.ye0{bottom:904.965000px;}
.yb3{bottom:908.970000px;}
.y104{bottom:910.410000px;}
.y149{bottom:910.590000px;}
.y18d{bottom:912.210000px;}
.y123{bottom:920.850000px;}
.y7c{bottom:930.570000px;}
.y1e{bottom:931.290000px;}
.y6{bottom:931.470000px;}
.y18c{bottom:932.910000px;}
.ydf{bottom:935.970000px;}
.y103{bottom:941.550000px;}
.yde{bottom:951.630000px;}
.y122{bottom:951.810000px;}
.y148{bottom:951.990000px;}
.yb2{bottom:952.170000px;}
.y18b{bottom:953.610000px;}
.ydd{bottom:967.110000px;}
.y7b{bottom:971.970000px;}
.y9a{bottom:972.150000px;}
.y102{bottom:972.510000px;}
.y1d{bottom:972.690000px;}
.y4b{bottom:972.870000px;}
.yb1{bottom:973.770000px;}
.y18a{bottom:974.310000px;}
.y5{bottom:978.810000px;}
.ydc{bottom:982.590000px;}
.y121{bottom:982.950000px;}
.y147{bottom:993.390000px;}
.y189{bottom:995.010000px;}
.yb0{bottom:995.370000px;}
.ydb{bottom:998.070000px;}
.y101{bottom:1003.650000px;}
.y7a{bottom:1013.370000px;}
.y8e{bottom:1013.550000px;}
.y120{bottom:1013.910000px;}
.y1c{bottom:1014.090000px;}
.y4c{bottom:1014.270000px;}
.y188{bottom:1015.710000px;}
.yaf{bottom:1016.970000px;}
.yda{bottom:1029.210000px;}
.y100{bottom:1034.610000px;}
.y146{bottom:1034.790000px;}
.y187{bottom:1036.410000px;}
.yae{bottom:1038.570000px;}
.y11f{bottom:1045.050000px;}
.yd8{bottom:1045.410000px;}
.y79{bottom:1054.770000px;}
.y4{bottom:1055.490000px;}
.y186{bottom:1057.110000px;}
.yaa{bottom:1060.890000px;}
.yff{bottom:1065.750000px;}
.y11e{bottom:1076.010000px;}
.y145{bottom:1076.370000px;}
.y185{bottom:1077.810000px;}
.yd7{bottom:1089.330000px;}
.y97{bottom:1096.170000px;}
.y78{bottom:1096.350000px;}
.yfe{bottom:1096.710000px;}
.y3{bottom:1096.890000px;}
.ya7{bottom:1097.070000px;}
.y184{bottom:1098.510000px;}
.y11d{bottom:1107.150000px;}
.ya9{bottom:1115.070000px;}
.y144{bottom:1117.590000px;}
.y1b1{bottom:1119.210000px;}
.y96{bottom:1137.750000px;}
.y11c{bottom:1138.110000px;}
.y2{bottom:1138.290000px;}
.y49{bottom:1138.470000px;}
.y183{bottom:1139.910000px;}
.ya8{bottom:1141.170000px;}
.y1a{bottom:1171.915500px;}
.y19{bottom:1184.515500px;}
.y18{bottom:1197.115500px;}
.y17{bottom:1209.715500px;}
.y16{bottom:1234.915500px;}
.h15{height:15.480000px;}
.h18{height:15.516000px;}
.h17{height:15.660000px;}
.h25{height:20.340000px;}
.h13{height:21.600000px;}
.h14{height:21.636000px;}
.h27{height:27.396000px;}
.h1e{height:30.420000px;}
.h1f{height:30.456000px;}
.h4{height:30.597656px;}
.h20{height:30.600000px;}
.h21{height:30.960000px;}
.h1a{height:30.996000px;}
.h19{height:31.140000px;}
.h24{height:32.400000px;}
.h26{height:33.300000px;}
.h11{height:41.400000px;}
.h22{height:41.616000px;}
.h23{height:42.480000px;}
.he{height:44.327813px;}
.h12{height:50.312812px;}
.h3{height:51.333750px;}
.hd{height:52.560000px;}
.hf{height:54.140625px;}
.h16{height:56.320312px;}
.h7{height:56.880000px;}
.h5{height:62.327813px;}
.hc{height:64.080000px;}
.h6{height:64.582031px;}
.h1b{height:68.554688px;}
.h9{height:68.940000px;}
.h8{height:69.086250px;}
.h10{height:72.562500px;}
.h2{height:75.093750px;}
.hb{height:82.980000px;}
.ha{height:87.876000px;}
.h1c{height:892.980000px;}
.h1d{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:50.940000px;}
.w7{width:61.560000px;}
.w8{width:66.060000px;}
.wa{width:69.156000px;}
.wc{width:69.696000px;}
.wb{width:92.520000px;}
.w11{width:95.616000px;}
.w10{width:95.760000px;}
.w4{width:97.776000px;}
.w12{width:106.416000px;}
.w19{width:132.480000px;}
.w3{width:136.260000px;}
.w9{width:138.276000px;}
.w1a{width:148.896000px;}
.w6{width:159.510000px;}
.wf{width:167.610000px;}
.wd{width:170.130000px;}
.w17{width:178.950000px;}
.w1b{width:182.370000px;}
.w18{width:188.850000px;}
.w16{width:198.930000px;}
.w5{width:432.645000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w15{width:1262.879981px;}
.w13{width:1262.880000px;}
.w14{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x9{left:99.936000px;}
.x3{left:103.404000px;}
.x1f{left:106.415987px;}
.x2{left:108.036000px;}
.x20{left:148.895987px;}
.xd{left:150.509987px;}
.xb{left:236.190000px;}
.xe{left:267.555000px;}
.x13{left:278.175000px;}
.x19{left:298.830000px;}
.xf{left:329.115000px;}
.xc{left:333.975000px;}
.x14{left:363.315000px;}
.x10{left:395.175000px;}
.x1a{left:477.795000px;}
.x11{left:533.445000px;}
.x12{left:602.610000px;}
.x15{left:629.070000px;}
.x1b{left:666.645000px;}
.x6{left:686.309987px;}
.x7{left:695.309987px;}
.x17{left:717.629987px;}
.x5{left:720.149987px;}
.x16{left:733.499987px;}
.x4{left:745.919987px;}
.x8{left:764.999987px;}
.x1e{left:766.619987px;}
.x1{left:775.080000px;}
.x1c{left:799.125000px;}
.x1d{left:948.030000px;}
.x18{left:1134.899981px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v5{vertical-align:-16.000000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls19{letter-spacing:-0.560000pt;}
.ls3{letter-spacing:-0.512000pt;}
.lsf{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.239467pt;}
.ls22{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.161067pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.097067pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.001280pt;}
.ls14{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.144000pt;}
.ls1f{letter-spacing:0.183467pt;}
.lse{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.362667pt;}
.ls23{letter-spacing:0.416000pt;}
.ls6{letter-spacing:0.478720pt;}
.ls12{letter-spacing:0.545280pt;}
.ls5{letter-spacing:0.576000pt;}
.ls21{letter-spacing:0.592640pt;}
.ls18{letter-spacing:1.120000pt;}
.ls13{letter-spacing:1.232640pt;}
.ls1b{letter-spacing:3.152640pt;}
.ls1c{letter-spacing:3.968000pt;}
.ls20{letter-spacing:4.432640pt;}
.ls11{letter-spacing:7.632640pt;}
.lsd{letter-spacing:10.368000pt;}
.ls24{letter-spacing:26.752000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws5{word-spacing:-18.368000pt;}
.ws8{word-spacing:-18.048000pt;}
.wse{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.664000pt;}
.wsa{word-spacing:-17.600000pt;}
.ws9{word-spacing:-17.408000pt;}
.ws7{word-spacing:-17.280000pt;}
.wsc{word-spacing:-16.271573pt;}
.wsb{word-spacing:-15.961707pt;}
.ws18{word-spacing:-14.950827pt;}
.ws13{word-spacing:-14.767360pt;}
.ws17{word-spacing:-14.672427pt;}
.ws19{word-spacing:-14.536427pt;}
.ws15{word-spacing:-13.536000pt;}
.ws14{word-spacing:-13.456000pt;}
.ws16{word-spacing:-13.344000pt;}
.ws11{word-spacing:-13.040640pt;}
.ws1{word-spacing:-11.920640pt;}
.ws10{word-spacing:-11.759573pt;}
.ws12{word-spacing:-11.360640pt;}
.wsd{word-spacing:-9.607680pt;}
.ws2{word-spacing:0.000000pt;}
.ws0{word-spacing:0.192000pt;}
._0{margin-left:-1.301333pt;}
._1{width:1.152000pt;}
._6{width:2.048000pt;}
._5{width:3.136000pt;}
._4{width:4.224000pt;}
._7{width:5.376000pt;}
._13{width:6.421333pt;}
._14{width:7.850667pt;}
._15{width:9.461333pt;}
._d{width:10.368000pt;}
._10{width:11.626667pt;}
._3{width:12.746667pt;}
._2{width:13.930667pt;}
._f{width:15.445333pt;}
._8{width:16.576000pt;}
._e{width:18.912000pt;}
._b{width:20.416000pt;}
._c{width:21.632000pt;}
._16{width:23.232000pt;}
._12{width:24.640000pt;}
._11{width:25.600000pt;}
._17{width:26.549333pt;}
._9{width:27.904000pt;}
._a{width:28.981333pt;}
._18{width:30.336000pt;}
._1d{width:31.232000pt;}
._1a{width:32.640000pt;}
._19{width:33.664000pt;}
._20{width:34.698667pt;}
._1b{width:36.160000pt;}
._1e{width:37.568000pt;}
._1f{width:38.656000pt;}
._3c{width:39.936000pt;}
._46{width:41.706667pt;}
._22{width:42.624000pt;}
._21{width:43.520000pt;}
._1c{width:44.864000pt;}
._35{width:46.218667pt;}
._43{width:47.605333pt;}
._45{width:52.032000pt;}
._26{width:56.704000pt;}
._44{width:57.738667pt;}
._3b{width:59.200000pt;}
._2d{width:64.832000pt;}
._2c{width:65.792000pt;}
._2e{width:67.242667pt;}
._3e{width:68.224000pt;}
._3d{width:69.184000pt;}
._3f{width:70.570667pt;}
._28{width:75.392000pt;}
._24{width:78.976000pt;}
._23{width:79.872000pt;}
._31{width:84.160000pt;}
._3a{width:98.880000pt;}
._30{width:100.032000pt;}
._2f{width:100.992000pt;}
._33{width:106.240000pt;}
._32{width:107.136000pt;}
._38{width:108.096000pt;}
._42{width:114.048000pt;}
._41{width:114.944000pt;}
._34{width:137.024000pt;}
._39{width:197.824000pt;}
._25{width:207.936000pt;}
._2b{width:220.757333pt;}
._2a{width:221.696000pt;}
._37{width:252.672000pt;}
._29{width:261.568000pt;}
._40{width:290.368000pt;}
._27{width:421.056000pt;}
._36{width:468.608000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:37.333333pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:2.560000pt;}
.ycd{bottom:2.600000pt;}
.yc5{bottom:2.720000pt;}
.y5c{bottom:3.040000pt;}
.y56{bottom:3.360000pt;}
.y74{bottom:3.680000pt;}
.y16e{bottom:4.800000pt;}
.y165{bottom:7.226667pt;}
.y16a{bottom:7.680000pt;}
.y172{bottom:7.840000pt;}
.y152{bottom:9.120000pt;}
.y14f{bottom:9.280000pt;}
.y15c{bottom:9.320000pt;}
.y161{bottom:9.440000pt;}
.y6c{bottom:9.600000pt;}
.y16c{bottom:10.080000pt;}
.y170{bottom:10.560000pt;}
.y163{bottom:14.266667pt;}
.y168{bottom:14.560000pt;}
.yac{bottom:14.880000pt;}
.y71{bottom:16.320000pt;}
.ye1{bottom:16.360000pt;}
.yd9{bottom:16.480000pt;}
.y5b{bottom:18.240000pt;}
.y73{bottom:19.040000pt;}
.y63{bottom:19.720000pt;}
.y55{bottom:20.160000pt;}
.y164{bottom:21.146667pt;}
.y169{bottom:21.440000pt;}
.y6b{bottom:26.400000pt;}
.yab{bottom:27.040000pt;}
.y6e{bottom:29.280000pt;}
.y68{bottom:30.720000pt;}
.y70{bottom:33.120000pt;}
.y5a{bottom:33.600000pt;}
.y72{bottom:34.400000pt;}
.y62{bottom:35.080000pt;}
.y54{bottom:36.960000pt;}
.y6a{bottom:43.360000pt;}
.y6d{bottom:44.640000pt;}
.y67{bottom:46.080000pt;}
.y5f{bottom:47.560000pt;}
.y58{bottom:47.680000pt;}
.y59{bottom:48.960000pt;}
.y61{bottom:50.440000pt;}
.y1b{bottom:50.720000pt;}
.y182{bottom:50.880000pt;}
.y65{bottom:60.160000pt;}
.y66{bottom:61.440000pt;}
.y5e{bottom:64.520000pt;}
.y60{bottom:65.800000pt;}
.y1{bottom:69.120000pt;}
.y181{bottom:69.280000pt;}
.y13d{bottom:100.800000pt;}
.y143{bottom:100.960000pt;}
.yfd{bottom:104.320000pt;}
.y166{bottom:111.680000pt;}
.y39{bottom:116.640000pt;}
.y142{bottom:119.360000pt;}
.y95{bottom:127.040000pt;}
.y2e{bottom:127.840000pt;}
.y77{bottom:128.000000pt;}
.y13c{bottom:128.320000pt;}
.y15{bottom:128.480000pt;}
.y48{bottom:128.640000pt;}
.yf5{bottom:131.200000pt;}
.ya6{bottom:131.680000pt;}
.y141{bottom:137.760000pt;}
.y162{bottom:139.200000pt;}
.y76{bottom:139.520000pt;}
.yfc{bottom:141.120000pt;}
.y11b{bottom:146.720000pt;}
.yd6{bottom:147.680000pt;}
.y46{bottom:148.000000pt;}
.y1b0{bottom:148.480000pt;}
.y38{bottom:153.440000pt;}
.y41{bottom:155.040000pt;}
.y13b{bottom:156.000000pt;}
.y140{bottom:156.160000pt;}
.y99{bottom:163.840000pt;}
.y94{bottom:164.160000pt;}
.y2d{bottom:164.640000pt;}
.y14{bottom:165.280000pt;}
.yfb{bottom:166.560000pt;}
.y1af{bottom:166.880000pt;}
.yf4{bottom:168.000000pt;}
.ya5{bottom:168.480000pt;}
.y11a{bottom:174.426667pt;}
.y13f{bottom:174.586667pt;}
.y160{bottom:176.186667pt;}
.y75{bottom:176.506667pt;}
.y13a{bottom:183.546667pt;}
.yd5{bottom:184.506667pt;}
.y45{bottom:184.826667pt;}
.y1ae{bottom:185.306667pt;}
.y6f{bottom:185.466667pt;}
.yfa{bottom:189.786667pt;}
.y37{bottom:190.266667pt;}
.y40{bottom:191.866667pt;}
.y8d{bottom:200.666667pt;}
.y2c{bottom:201.466667pt;}
.y93{bottom:201.626667pt;}
.yf9{bottom:201.946667pt;}
.y13{bottom:202.106667pt;}
.y15f{bottom:203.706667pt;}
.yf3{bottom:204.826667pt;}
.ya4{bottom:205.306667pt;}
.y139{bottom:211.226667pt;}
.y13e{bottom:211.386667pt;}
.y44{bottom:217.946667pt;}
.yd4{bottom:221.306667pt;}
.y1ad{bottom:222.106667pt;}
.y36{bottom:227.066667pt;}
.y3f{bottom:228.666667pt;}
.y119{bottom:229.626667pt;}
.y15e{bottom:230.906667pt;}
.y69{bottom:232.186667pt;}
.y8c{bottom:237.466667pt;}
.y2b{bottom:238.266667pt;}
.y138{bottom:238.746667pt;}
.y12{bottom:238.906667pt;}
.y1ac{bottom:240.506667pt;}
.yf2{bottom:241.626667pt;}
.ya3{bottom:242.106667pt;}
.y43{bottom:248.666667pt;}
.y118{bottom:257.146667pt;}
.y15d{bottom:257.946667pt;}
.yd3{bottom:258.106667pt;}
.y1ab{bottom:258.906667pt;}
.y35{bottom:263.866667pt;}
.y3e{bottom:265.466667pt;}
.y137{bottom:266.426667pt;}
.y8b{bottom:274.266667pt;}
.y2a{bottom:275.066667pt;}
.y11{bottom:275.706667pt;}
.y1aa{bottom:277.306667pt;}
.yf1{bottom:278.426667pt;}
.ya2{bottom:278.906667pt;}
.y42{bottom:279.386667pt;}
.y117{bottom:284.826667pt;}
.y15b{bottom:284.986667pt;}
.y180{bottom:286.106667pt;}
.y64{bottom:289.146667pt;}
.y136{bottom:293.946667pt;}
.yd2{bottom:294.906667pt;}
.y1a9{bottom:295.706667pt;}
.y34{bottom:300.666667pt;}
.y3d{bottom:302.266667pt;}
.y17f{bottom:304.546667pt;}
.y8a{bottom:311.066667pt;}
.y29{bottom:311.866667pt;}
.y15a{bottom:312.066667pt;}
.y116{bottom:312.346667pt;}
.y10{bottom:312.506667pt;}
.y51{bottom:312.666667pt;}
.y1a8{bottom:314.106667pt;}
.yf0{bottom:315.226667pt;}
.ya1{bottom:315.706667pt;}
.y135{bottom:321.626667pt;}
.yd1{bottom:322.426667pt;}
.y17e{bottom:322.946667pt;}
.y1a7{bottom:332.506667pt;}
.y3c{bottom:335.226667pt;}
.y33{bottom:337.626667pt;}
.yd0{bottom:337.946667pt;}
.y159{bottom:339.106667pt;}
.y115{bottom:340.026667pt;}
.y17d{bottom:341.346667pt;}
.y89{bottom:347.866667pt;}
.y28{bottom:348.666667pt;}
.y134{bottom:349.146667pt;}
.yf{bottom:349.306667pt;}
.y47{bottom:349.466667pt;}
.y1a6{bottom:350.906667pt;}
.ycf{bottom:351.706667pt;}
.yef{bottom:352.026667pt;}
.ya0{bottom:352.506667pt;}
.y17c{bottom:359.746667pt;}
.y5d{bottom:362.906667pt;}
.yce{bottom:365.466667pt;}
.y3b{bottom:366.106667pt;}
.y158{bottom:366.146667pt;}
.y114{bottom:367.546667pt;}
.y1a5{bottom:369.306667pt;}
.y32{bottom:374.266667pt;}
.y133{bottom:376.826667pt;}
.y17b{bottom:378.146667pt;}
.ycc{bottom:379.386667pt;}
.y88{bottom:384.706667pt;}
.y98{bottom:385.026667pt;}
.y27{bottom:385.506667pt;}
.ye{bottom:386.146667pt;}
.y24{bottom:386.306667pt;}
.y1a4{bottom:387.586667pt;}
.yee{bottom:388.866667pt;}
.y9f{bottom:389.186667pt;}
.ycb{bottom:393.186667pt;}
.y157{bottom:393.826667pt;}
.y113{bottom:395.266667pt;}
.y17a{bottom:396.546667pt;}
.y3a{bottom:396.706667pt;}
.y132{bottom:404.386667pt;}
.y1a3{bottom:405.986667pt;}
.yca{bottom:406.946667pt;}
.y31{bottom:407.426667pt;}
.y179{bottom:414.946667pt;}
.y26{bottom:418.786667pt;}
.yc9{bottom:420.706667pt;}
.y156{bottom:420.866667pt;}
.y87{bottom:421.506667pt;}
.y92{bottom:422.306667pt;}
.y112{bottom:422.786667pt;}
.yd{bottom:422.946667pt;}
.y23{bottom:423.106667pt;}
.y1a2{bottom:424.386667pt;}
.yed{bottom:425.666667pt;}
.y9e{bottom:425.986667pt;}
.y131{bottom:432.066667pt;}
.y178{bottom:433.373333pt;}
.yc8{bottom:434.626667pt;}
.y30{bottom:438.146667pt;}
.y57{bottom:441.026667pt;}
.y1a1{bottom:442.786667pt;}
.y155{bottom:447.933333pt;}
.yc7{bottom:448.386667pt;}
.y25{bottom:449.346667pt;}
.y111{bottom:450.466667pt;}
.y177{bottom:451.773333pt;}
.y86{bottom:458.306667pt;}
.y91{bottom:459.106667pt;}
.y130{bottom:459.586667pt;}
.yc{bottom:459.746667pt;}
.y1a0{bottom:461.186667pt;}
.yc6{bottom:462.146667pt;}
.yec{bottom:462.466667pt;}
.y9d{bottom:462.786667pt;}
.y2f{bottom:468.866667pt;}
.y176{bottom:470.173333pt;}
.y154{bottom:474.973333pt;}
.yc4{bottom:475.906667pt;}
.y110{bottom:477.986667pt;}
.y19f{bottom:479.586667pt;}
.y12f{bottom:487.266667pt;}
.y175{bottom:488.573333pt;}
.yc3{bottom:489.826667pt;}
.y85{bottom:495.106667pt;}
.y90{bottom:495.906667pt;}
.yb{bottom:496.546667pt;}
.y4a{bottom:496.706667pt;}
.y19e{bottom:497.986667pt;}
.yeb{bottom:499.266667pt;}
.y9c{bottom:499.586667pt;}
.y153{bottom:502.173333pt;}
.y53{bottom:502.946667pt;}
.yc2{bottom:503.586667pt;}
.y10f{bottom:505.666667pt;}
.y174{bottom:506.973333pt;}
.y12e{bottom:514.786667pt;}
.y19d{bottom:516.386667pt;}
.yc1{bottom:517.986667pt;}
.y151{bottom:529.213333pt;}
.y84{bottom:532.226667pt;}
.y8f{bottom:532.706667pt;}
.y10e{bottom:533.186667pt;}
.ya{bottom:533.346667pt;}
.y9b{bottom:534.466667pt;}
.y19c{bottom:534.786667pt;}
.yea{bottom:536.066667pt;}
.y12d{bottom:542.466667pt;}
.yc0{bottom:543.106667pt;}
.y173{bottom:543.773333pt;}
.y19b{bottom:553.186667pt;}
.y150{bottom:556.253333pt;}
.y171{bottom:559.133333pt;}
.y10d{bottom:560.866667pt;}
.ybf{bottom:566.306667pt;}
.y83{bottom:569.506667pt;}
.y12c{bottom:569.986667pt;}
.y9{bottom:570.146667pt;}
.y4e{bottom:570.306667pt;}
.y19a{bottom:571.586667pt;}
.y52{bottom:572.706667pt;}
.y14e{bottom:583.333333pt;}
.y16f{bottom:583.493333pt;}
.yf8{bottom:584.546667pt;}
.y10c{bottom:588.386667pt;}
.y199{bottom:589.986667pt;}
.y12b{bottom:597.693333pt;}
.ybe{bottom:600.573333pt;}
.y82{bottom:606.333333pt;}
.y22{bottom:606.973333pt;}
.yf7{bottom:607.773333pt;}
.y198{bottom:608.413333pt;}
.ye9{bottom:609.533333pt;}
.y14d{bottom:610.373333pt;}
.y16d{bottom:613.093333pt;}
.ybd{bottom:615.933333pt;}
.y10b{bottom:616.093333pt;}
.y12a{bottom:625.213333pt;}
.y197{bottom:626.813333pt;}
.yf6{bottom:629.693333pt;}
.y16b{bottom:631.173333pt;}
.ybc{bottom:635.133333pt;}
.y14c{bottom:638.693333pt;}
.y81{bottom:643.133333pt;}
.y10a{bottom:643.613333pt;}
.y21{bottom:643.773333pt;}
.y50{bottom:643.933333pt;}
.y196{bottom:645.213333pt;}
.ye8{bottom:646.333333pt;}
.y129{bottom:652.893333pt;}
.ybb{bottom:654.333333pt;}
.y167{bottom:659.973333pt;}
.y195{bottom:663.613333pt;}
.y109{bottom:671.293333pt;}
.yba{bottom:673.533333pt;}
.y80{bottom:679.933333pt;}
.y128{bottom:680.413333pt;}
.y8{bottom:680.573333pt;}
.y194{bottom:682.013333pt;}
.ye7{bottom:683.133333pt;}
.y14b{bottom:685.573333pt;}
.yb9{bottom:692.733333pt;}
.y108{bottom:698.813333pt;}
.y193{bottom:700.413333pt;}
.y127{bottom:708.093333pt;}
.yb8{bottom:711.933333pt;}
.y7f{bottom:716.733333pt;}
.y20{bottom:717.373333pt;}
.y192{bottom:718.813333pt;}
.ye6{bottom:719.933333pt;}
.y107{bottom:726.493333pt;}
.yb7{bottom:731.133333pt;}
.ye5{bottom:735.453333pt;}
.y126{bottom:735.613333pt;}
.y191{bottom:737.213333pt;}
.ye4{bottom:749.213333pt;}
.yb6{bottom:750.333333pt;}
.y7e{bottom:753.533333pt;}
.y106{bottom:754.013333pt;}
.y7{bottom:754.173333pt;}
.y4f{bottom:754.333333pt;}
.y190{bottom:755.613333pt;}
.ye3{bottom:762.973333pt;}
.y125{bottom:763.293333pt;}
.yb5{bottom:769.533333pt;}
.y14a{bottom:772.573333pt;}
.y18f{bottom:774.013333pt;}
.ye2{bottom:776.733333pt;}
.y105{bottom:781.693333pt;}
.yb4{bottom:788.733333pt;}
.y7d{bottom:790.333333pt;}
.y124{bottom:790.813333pt;}
.y1f{bottom:790.973333pt;}
.y4d{bottom:791.133333pt;}
.y18e{bottom:792.413333pt;}
.ye0{bottom:804.413333pt;}
.yb3{bottom:807.973333pt;}
.y104{bottom:809.253333pt;}
.y149{bottom:809.413333pt;}
.y18d{bottom:810.853333pt;}
.y123{bottom:818.533333pt;}
.y7c{bottom:827.173333pt;}
.y1e{bottom:827.813333pt;}
.y6{bottom:827.973333pt;}
.y18c{bottom:829.253333pt;}
.ydf{bottom:831.973333pt;}
.y103{bottom:836.933333pt;}
.yde{bottom:845.893333pt;}
.y122{bottom:846.053333pt;}
.y148{bottom:846.213333pt;}
.yb2{bottom:846.373333pt;}
.y18b{bottom:847.653333pt;}
.ydd{bottom:859.653333pt;}
.y7b{bottom:863.973333pt;}
.y9a{bottom:864.133333pt;}
.y102{bottom:864.453333pt;}
.y1d{bottom:864.613333pt;}
.y4b{bottom:864.773333pt;}
.yb1{bottom:865.573333pt;}
.y18a{bottom:866.053333pt;}
.y5{bottom:870.053333pt;}
.ydc{bottom:873.413333pt;}
.y121{bottom:873.733333pt;}
.y147{bottom:883.013333pt;}
.y189{bottom:884.453333pt;}
.yb0{bottom:884.773333pt;}
.ydb{bottom:887.173333pt;}
.y101{bottom:892.133333pt;}
.y7a{bottom:900.773333pt;}
.y8e{bottom:900.933333pt;}
.y120{bottom:901.253333pt;}
.y1c{bottom:901.413333pt;}
.y4c{bottom:901.573333pt;}
.y188{bottom:902.853333pt;}
.yaf{bottom:903.973333pt;}
.yda{bottom:914.853333pt;}
.y100{bottom:919.653333pt;}
.y146{bottom:919.813333pt;}
.y187{bottom:921.253333pt;}
.yae{bottom:923.173333pt;}
.y11f{bottom:928.933333pt;}
.yd8{bottom:929.253333pt;}
.y79{bottom:937.573333pt;}
.y4{bottom:938.213333pt;}
.y186{bottom:939.653333pt;}
.yaa{bottom:943.013333pt;}
.yff{bottom:947.333333pt;}
.y11e{bottom:956.453333pt;}
.y145{bottom:956.773333pt;}
.y185{bottom:958.053333pt;}
.yd7{bottom:968.293333pt;}
.y97{bottom:974.373333pt;}
.y78{bottom:974.533333pt;}
.yfe{bottom:974.853333pt;}
.y3{bottom:975.013333pt;}
.ya7{bottom:975.173333pt;}
.y184{bottom:976.453333pt;}
.y11d{bottom:984.133333pt;}
.ya9{bottom:991.173333pt;}
.y144{bottom:993.413333pt;}
.y1b1{bottom:994.853333pt;}
.y96{bottom:1011.333333pt;}
.y11c{bottom:1011.653333pt;}
.y2{bottom:1011.813333pt;}
.y49{bottom:1011.973333pt;}
.y183{bottom:1013.253333pt;}
.ya8{bottom:1014.373333pt;}
.y1a{bottom:1041.702667pt;}
.y19{bottom:1052.902667pt;}
.y18{bottom:1064.102667pt;}
.y17{bottom:1075.302667pt;}
.y16{bottom:1097.702667pt;}
.h15{height:13.760000pt;}
.h18{height:13.792000pt;}
.h17{height:13.920000pt;}
.h25{height:18.080000pt;}
.h13{height:19.200000pt;}
.h14{height:19.232000pt;}
.h27{height:24.352000pt;}
.h1e{height:27.040000pt;}
.h1f{height:27.072000pt;}
.h4{height:27.197917pt;}
.h20{height:27.200000pt;}
.h21{height:27.520000pt;}
.h1a{height:27.552000pt;}
.h19{height:27.680000pt;}
.h24{height:28.800000pt;}
.h26{height:29.600000pt;}
.h11{height:36.800000pt;}
.h22{height:36.992000pt;}
.h23{height:37.760000pt;}
.he{height:39.402500pt;}
.h12{height:44.722500pt;}
.h3{height:45.630000pt;}
.hd{height:46.720000pt;}
.hf{height:48.125000pt;}
.h16{height:50.062500pt;}
.h7{height:50.560000pt;}
.h5{height:55.402500pt;}
.hc{height:56.960000pt;}
.h6{height:57.406250pt;}
.h1b{height:60.937500pt;}
.h9{height:61.280000pt;}
.h8{height:61.410000pt;}
.h10{height:64.500000pt;}
.h2{height:66.750000pt;}
.hb{height:73.760000pt;}
.ha{height:78.112000pt;}
.h1c{height:793.760000pt;}
.h1d{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:45.280000pt;}
.w7{width:54.720000pt;}
.w8{width:58.720000pt;}
.wa{width:61.472000pt;}
.wc{width:61.952000pt;}
.wb{width:82.240000pt;}
.w11{width:84.992000pt;}
.w10{width:85.120000pt;}
.w4{width:86.912000pt;}
.w12{width:94.592000pt;}
.w19{width:117.760000pt;}
.w3{width:121.120000pt;}
.w9{width:122.912000pt;}
.w1a{width:132.352000pt;}
.w6{width:141.786667pt;}
.wf{width:148.986667pt;}
.wd{width:151.226667pt;}
.w17{width:159.066667pt;}
.w1b{width:162.106667pt;}
.w18{width:167.866667pt;}
.w16{width:176.826667pt;}
.w5{width:384.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w15{width:1122.559983pt;}
.w13{width:1122.560000pt;}
.w14{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x9{left:88.832000pt;}
.x3{left:91.914667pt;}
.x1f{left:94.591988pt;}
.x2{left:96.032000pt;}
.x20{left:132.351988pt;}
.xd{left:133.786655pt;}
.xb{left:209.946667pt;}
.xe{left:237.826667pt;}
.x13{left:247.266667pt;}
.x19{left:265.626667pt;}
.xf{left:292.546667pt;}
.xc{left:296.866667pt;}
.x14{left:322.946667pt;}
.x10{left:351.266667pt;}
.x1a{left:424.706667pt;}
.x11{left:474.173333pt;}
.x12{left:535.653333pt;}
.x15{left:559.173333pt;}
.x1b{left:592.573333pt;}
.x6{left:610.053322pt;}
.x7{left:618.053322pt;}
.x17{left:637.893322pt;}
.x5{left:640.133322pt;}
.x16{left:651.999988pt;}
.x4{left:663.039988pt;}
.x8{left:679.999988pt;}
.x1e{left:681.439988pt;}
.x1{left:688.960000pt;}
.x1c{left:710.333333pt;}
.x1d{left:842.693333pt;}
.x18{left:1008.799983pt;}
}




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