
    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_d42fca9d3c0487109051e879.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d87e4680da27755ce0cf2dbd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_041f1471a886ace4a5d36b4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_ee99fa5480b70a0727896280.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_3201372bbf952511fd369dcd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_37bcaa36bae41e614f845975.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_59413fba45e39b4a08532d47.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_2ce1fbfe3992d904daa11bd9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_f0bd51af208ad63e55e88f5c.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6f0f67918aabed531ac37e89.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.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_2bcc1b17faecdce1d3bf1a7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.864000px;}
.ls11{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.576000px;}
.ls2{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000003px;}
.lsc{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.216000px;}
.lse{letter-spacing:0.238200px;}
.ls6{letter-spacing:0.256200px;}
.ls5{letter-spacing:0.274800px;}
.ls4{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.576000px;}
.ls15{letter-spacing:8.064000px;}
.ls17{letter-spacing:28.224000px;}
.ls13{letter-spacing:31.824000px;}
.ls16{letter-spacing:33.264000px;}
.ls1c{letter-spacing:33.984000px;}
.ls18{letter-spacing:35.424000px;}
.ls1a{letter-spacing:44.784000px;}
.ls14{letter-spacing:49.800000px;}
.ls1e{letter-spacing:54.864000px;}
.ls12{letter-spacing:65.664000px;}
.ls1b{letter-spacing:76.464000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-72.000000px;}
.ws11{word-spacing:-43.200003px;}
.ws0{word-spacing:-37.913760px;}
.ws9{word-spacing:-27.412440px;}
.wsa{word-spacing:-19.038240px;}
.wse{word-spacing:-16.632000px;}
.ws2{word-spacing:-16.488000px;}
.wsc{word-spacing:-16.416000px;}
.wsb{word-spacing:-16.344000px;}
.ws1{word-spacing:-16.272000px;}
.wsd{word-spacing:-16.200000px;}
.ws8{word-spacing:-16.128000px;}
.wsf{word-spacing:-16.056000px;}
.ws3{word-spacing:-15.768000px;}
.ws12{word-spacing:-15.408000px;}
.ws7{word-spacing:-15.226440px;}
.ws5{word-spacing:-14.970240px;}
.ws6{word-spacing:-13.780560px;}
.ws4{word-spacing:0.000000px;}
._1c{margin-left:-20.515680px;}
._6{margin-left:-16.104960px;}
._5{margin-left:-14.930640px;}
._16{margin-left:-12.348000px;}
._1b{margin-left:-11.064000px;}
._14{margin-left:-10.056000px;}
._1a{margin-left:-9.024000px;}
._19{margin-left:-7.668000px;}
._17{margin-left:-5.428560px;}
._3{margin-left:-3.522960px;}
._2{margin-left:-2.516400px;}
._8{margin-left:-1.032000px;}
._0{width:1.015920px;}
._1{width:2.332560px;}
._9{width:5.030400px;}
._c{width:6.273600px;}
._d{width:7.308000px;}
._12{width:9.084000px;}
._11{width:10.584000px;}
._10{width:11.808000px;}
._a{width:18.144000px;}
._b{width:19.972080px;}
._e{width:25.200000px;}
._f{width:26.392080px;}
._13{width:72.792000px;}
._4{width:86.104800px;}
._15{width:96.168000px;}
._18{width:113.520000px;}
._7{width:848.028000px;}
._1d{width:1317.180000px;}
.fcb{color:rgb(255,0,0);}
.fca{color:rgb(31,55,99);}
.fc6{color:rgb(46,116,181);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(0,112,192);}
.fc8{color:rgb(5,99,193);}
.fc7{color:rgb(47,84,150);}
.fc1{color:rgb(89,102,109);}
.fc9{color:rgb(68,84,106);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:167.760000px;}
.y1a1{bottom:-22.680000px;}
.y63{bottom:-14.760000px;}
.y5e{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y36{bottom:1.260000px;}
.y62{bottom:4.860000px;}
.y45{bottom:5.040000px;}
.y39{bottom:7.920000px;}
.y1d3{bottom:8.280000px;}
.y1d1{bottom:8.460000px;}
.ya4{bottom:9.540000px;}
.y23{bottom:11.160000px;}
.y1a0{bottom:11.880000px;}
.y59{bottom:12.420000px;}
.y3b{bottom:13.725000px;}
.y66{bottom:14.040000px;}
.y3d{bottom:14.400000px;}
.y43{bottom:14.760000px;}
.y57{bottom:14.940000px;}
.y2f{bottom:15.660000px;}
.y48{bottom:16.200000px;}
.y6{bottom:17.100000px;}
.y3{bottom:17.460000px;}
.y4f{bottom:18.180000px;}
.y1ca{bottom:18.534000px;}
.y10{bottom:18.540000px;}
.y1f{bottom:18.585000px;}
.y18{bottom:18.720000px;}
.y15{bottom:18.750000px;}
.y55{bottom:18.900000px;}
.y5b{bottom:19.440000px;}
.y33{bottom:19.620000px;}
.y41{bottom:19.800000px;}
.y12{bottom:20.160000px;}
.ye{bottom:20.340000px;}
.y31{bottom:21.060000px;}
.y4c{bottom:21.240000px;}
.y5d{bottom:21.420000px;}
.y1aa{bottom:23.040000px;}
.y61{bottom:24.480000px;}
.y44{bottom:24.660000px;}
.y3f{bottom:26.100000px;}
.y38{bottom:26.145000px;}
.y65{bottom:30.594000px;}
.y2e{bottom:30.600000px;}
.y4e{bottom:30.630000px;}
.y35{bottom:30.645000px;}
.ya3{bottom:31.680000px;}
.y22{bottom:33.120000px;}
.y3a{bottom:33.885000px;}
.y1cd{bottom:34.734000px;}
.y1c9{bottom:35.094000px;}
.y5{bottom:35.460000px;}
.y30{bottom:39.240000px;}
.y32{bottom:39.780000px;}
.y40{bottom:39.960000px;}
.y67{bottom:40.674000px;}
.y53{bottom:40.680000px;}
.y50{bottom:40.710000px;}
.y4b{bottom:40.860000px;}
.y68{bottom:41.394000px;}
.y46{bottom:41.400000px;}
.y51{bottom:41.430000px;}
.y49{bottom:41.580000px;}
.y73{bottom:42.300000px;}
.y6d{bottom:42.480000px;}
.y5c{bottom:43.245000px;}
.y60{bottom:44.280000px;}
.y3e{bottom:44.460000px;}
.y37{bottom:44.505000px;}
.y1cc{bottom:51.294000px;}
.y1c8{bottom:51.654000px;}
.y4{bottom:53.820000px;}
.y1a9{bottom:57.240000px;}
.y7{bottom:57.456000px;}
.y27{bottom:57.816000px;}
.y1cb{bottom:64.254000px;}
.y1c7{bottom:64.434000px;}
.y72{bottom:65.880000px;}
.y2{bottom:73.116000px;}
.y19f{bottom:76.680000px;}
.y26{bottom:79.416000px;}
.y1a8{bottom:91.290000px;}
.y69{bottom:103.356000px;}
.ye5{bottom:103.536000px;}
.ycc{bottom:104.076000px;}
.y12d{bottom:108.036000px;}
.y19e{bottom:109.080000px;}
.y17a{bottom:112.356000px;}
.ya0{bottom:114.156000px;}
.y15b{bottom:116.496000px;}
.y64{bottom:121.176000px;}
.y1a7{bottom:125.310000px;}
.ye4{bottom:127.296000px;}
.y12c{bottom:131.796000px;}
.y1ce{bottom:132.156000px;}
.y179{bottom:136.116000px;}
.ycb{bottom:139.716000px;}
.y15a{bottom:140.256000px;}
.y107{bottom:140.796000px;}
.y19d{bottom:141.480000px;}
.y1{bottom:146.016000px;}
.y1c6{bottom:149.256000px;}
.y9f{bottom:149.796000px;}
.y12b{bottom:155.550000px;}
.y1a6{bottom:159.330000px;}
.yca{bottom:163.470000px;}
.y159{bottom:163.830000px;}
.ye3{bottom:169.770000px;}
.y178{bottom:171.750000px;}
.y9e{bottom:173.550000px;}
.y19c{bottom:173.880000px;}
.y106{bottom:176.430000px;}
.y5f{bottom:180.750000px;}
.yc9{bottom:187.050000px;}
.y12a{bottom:191.190000px;}
.y1a5{bottom:193.350000px;}
.y177{bottom:195.510000px;}
.y9d{bottom:197.310000px;}
.y158{bottom:199.650000px;}
.y105{bottom:200.190000px;}
.yc8{bottom:210.810000px;}
.y129{bottom:214.950000px;}
.ye2{bottom:217.650000px;}
.y176{bottom:219.270000px;}
.y9c{bottom:220.890000px;}
.y104{bottom:223.950000px;}
.y1a4{bottom:227.370000px;}
.yc7{bottom:234.570000px;}
.y157{bottom:235.290000px;}
.y128{bottom:238.710000px;}
.y5a{bottom:240.150000px;}
.y9b{bottom:244.650000px;}
.y103{bottom:247.710000px;}
.y20{bottom:250.410000px;}
.ye1{bottom:253.290000px;}
.y175{bottom:254.910000px;}
.y1a3{bottom:261.210000px;}
.y1e{bottom:268.230000px;}
.y156{bottom:270.930000px;}
.y102{bottom:271.290000px;}
.y127{bottom:274.350000px;}
.yc6{bottom:277.230000px;}
.y174{bottom:278.670000px;}
.ye0{bottom:279.750000px;}
.y190{bottom:283.755000px;}
.y9a{bottom:286.995000px;}
.y101{bottom:295.095000px;}
.y126{bottom:298.155000px;}
.y58{bottom:299.775000px;}
.y173{bottom:302.475000px;}
.y1d{bottom:304.635000px;}
.y155{bottom:306.795000px;}
.y18f{bottom:307.515000px;}
.y100{bottom:318.855000px;}
.y125{bottom:321.735000px;}
.y99{bottom:322.095000px;}
.yc5{bottom:324.975000px;}
.y154{bottom:330.555000px;}
.y18e{bottom:331.275000px;}
.y172{bottom:338.115000px;}
.yff{bottom:342.615000px;}
.y1c{bottom:342.795000px;}
.y124{bottom:345.495000px;}
.y98{bottom:345.855000px;}
.yc4{bottom:348.735000px;}
.y1c5{bottom:349.095000px;}
.y18d{bottom:354.855000px;}
.y19a{bottom:357.375000px;}
.y56{bottom:359.355000px;}
.yfe{bottom:366.195000px;}
.y1c4{bottom:371.055000px;}
.yc3{bottom:372.315000px;}
.y171{bottom:373.935000px;}
.y97{bottom:377.175000px;}
.y1b{bottom:379.335000px;}
.y123{bottom:388.155000px;}
.yfd{bottom:389.955000px;}
.y199{bottom:393.015000px;}
.y1c3{bottom:393.195000px;}
.yc2{bottom:396.075000px;}
.y18c{bottom:397.515000px;}
.y153{bottom:401.835000px;}
.y96{bottom:408.315000px;}
.y170{bottom:409.575000px;}
.yfc{bottom:413.715000px;}
.y1c2{bottom:415.155000px;}
.y1a{bottom:417.495000px;}
.y54{bottom:418.935000px;}
.yc1{bottom:419.835000px;}
.y198{bottom:428.835000px;}
.y122{bottom:435.855000px;}
.y1c1{bottom:437.115000px;}
.yfb{bottom:437.295000px;}
.y152{bottom:437.655000px;}
.y95{bottom:439.455000px;}
.yc0{bottom:443.595000px;}
.y16f{bottom:445.215000px;}
.y19{bottom:454.035000px;}
.y1c0{bottom:459.075000px;}
.yfa{bottom:461.055000px;}
.y151{bottom:461.415000px;}
.y197{bottom:464.475000px;}
.ybf{bottom:467.175000px;}
.y16e{bottom:468.975000px;}
.y94{bottom:470.775000px;}
.y121{bottom:471.675000px;}
.y52{bottom:478.515000px;}
.y18b{bottom:481.035000px;}
.yf9{bottom:484.815000px;}
.ydf{bottom:485.355000px;}
.y17{bottom:490.395000px;}
.y16d{bottom:492.735000px;}
.y1bf{bottom:494.715000px;}
.y196{bottom:495.075000px;}
.y120{bottom:495.255000px;}
.y93{bottom:501.915000px;}
.ybe{bottom:502.995000px;}
.y1a2{bottom:503.355000px;}
.y150{bottom:503.895000px;}
.y18a{bottom:504.795000px;}
.y140{bottom:506.235000px;}
.yf8{bottom:508.575000px;}
.yde{bottom:509.115000px;}
.y16c{bottom:516.495000px;}
.y1be{bottom:518.475000px;}
.y11f{bottom:519.015000px;}
.ybd{bottom:526.575000px;}
.y16{bottom:526.935000px;}
.y189{bottom:528.375000px;}
.yf7{bottom:532.155000px;}
.ydd{bottom:532.695000px;}
.y92{bottom:533.235000px;}
.y4d{bottom:538.095000px;}
.y16b{bottom:540.075000px;}
.y13f{bottom:542.055000px;}
.y1bd{bottom:542.235000px;}
.y11e{bottom:542.775000px;}
.ybc{bottom:550.335000px;}
.y14f{bottom:551.775000px;}
.y188{bottom:552.135000px;}
.yf6{bottom:555.915000px;}
.ydc{bottom:556.455000px;}
.y14{bottom:563.295000px;}
.y16a{bottom:563.835000px;}
.y91{bottom:564.375000px;}
.y1bc{bottom:565.845000px;}
.y11d{bottom:566.565000px;}
.ybb{bottom:574.125000px;}
.y14e{bottom:575.385000px;}
.y187{bottom:575.925000px;}
.y13e{bottom:577.725000px;}
.yf5{bottom:579.705000px;}
.ydb{bottom:580.245000px;}
.y169{bottom:587.625000px;}
.y11c{bottom:590.145000px;}
.y90{bottom:595.545000px;}
.y4a{bottom:597.525000px;}
.yba{bottom:597.885000px;}
.y14d{bottom:599.145000px;}
.y186{bottom:599.505000px;}
.y13{bottom:599.865000px;}
.y13d{bottom:601.305000px;}
.y1bb{bottom:601.485000px;}
.yf4{bottom:603.465000px;}
.y168{bottom:611.385000px;}
.y11b{bottom:613.905000px;}
.yb9{bottom:621.465000px;}
.yda{bottom:622.905000px;}
.y185{bottom:623.265000px;}
.y13c{bottom:626.145000px;}
.y8f{bottom:626.865000px;}
.yf3{bottom:627.045000px;}
.y11{bottom:636.405000px;}
.y11a{bottom:637.665000px;}
.y1ba{bottom:638.205000px;}
.yb8{bottom:645.225000px;}
.y167{bottom:647.025000px;}
.y13b{bottom:649.725000px;}
.yf2{bottom:650.805000px;}
.y47{bottom:657.105000px;}
.y8e{bottom:658.005000px;}
.y14c{bottom:658.545000px;}
.y119{bottom:661.425000px;}
.y1b9{bottom:661.965000px;}
.yb7{bottom:668.985000px;}
.y166{bottom:670.785000px;}
.yd9{bottom:671.505000px;}
.yf{bottom:674.565000px;}
.y14b{bottom:682.305000px;}
.y184{bottom:682.665000px;}
.y118{bottom:685.005000px;}
.y1b8{bottom:685.725000px;}
.y8d{bottom:689.325000px;}
.y75{bottom:691.845000px;}
.y165{bottom:694.365000px;}
.y13a{bottom:698.145000px;}
.yf1{bottom:698.325000px;}
.yb6{bottom:704.625000px;}
.y14a{bottom:706.065000px;}
.y183{bottom:706.425000px;}
.y117{bottom:708.765000px;}
.y1b7{bottom:709.485000px;}
.y74{bottom:709.665000px;}
.yd{bottom:710.925000px;}
.y7f{bottom:712.365000px;}
.y42{bottom:716.685000px;}
.yd8{bottom:719.205000px;}
.y8c{bottom:720.465000px;}
.yf0{bottom:721.905000px;}
.yb5{bottom:728.385000px;}
.y149{bottom:729.645000px;}
.y164{bottom:730.185000px;}
.y116{bottom:732.525000px;}
.y139{bottom:734.865000px;}
.y1b6{bottom:744.945000px;}
.yef{bottom:745.665000px;}
.y7e{bottom:748.005000px;}
.y8b{bottom:751.605000px;}
.yb4{bottom:752.145000px;}
.y163{bottom:753.945000px;}
.yd7{bottom:755.025000px;}
.y115{bottom:756.285000px;}
.y138{bottom:758.625000px;}
.y148{bottom:765.465000px;}
.y182{bottom:765.825000px;}
.yc{bottom:767.805000px;}
.y71{bottom:769.245000px;}
.yee{bottom:769.425000px;}
.yb3{bottom:775.905000px;}
.y3c{bottom:776.265000px;}
.y162{bottom:777.525000px;}
.yd6{bottom:778.605000px;}
.y114{bottom:779.865000px;}
.y1d8{bottom:781.125000px;}
.y1b5{bottom:781.845000px;}
.y8a{bottom:782.925000px;}
.y7d{bottom:783.825000px;}
.y181{bottom:789.585000px;}
.yed{bottom:793.185000px;}
.y137{bottom:794.265000px;}
.yb{bottom:796.245000px;}
.yb2{bottom:799.485000px;}
.y113{bottom:803.625000px;}
.y195{bottom:804.165000px;}
.y1b4{bottom:805.605000px;}
.y7c{bottom:807.585000px;}
.y147{bottom:808.125000px;}
.y161{bottom:813.345000px;}
.y89{bottom:814.065000px;}
.yd5{bottom:814.425000px;}
.yec{bottom:816.765000px;}
.y1d7{bottom:822.885000px;}
.yb1{bottom:823.245000px;}
.y112{bottom:827.385000px;}
.y194{bottom:827.745000px;}
.y1b3{bottom:829.185000px;}
.y136{bottom:830.085000px;}
.y7b{bottom:831.165000px;}
.y34{bottom:835.845000px;}
.yd4{bottom:838.185000px;}
.y88{bottom:845.385000px;}
.yb0{bottom:847.005000px;}
.ya{bottom:847.590000px;}
.y160{bottom:849.030000px;}
.y111{bottom:851.010000px;}
.y193{bottom:851.550000px;}
.y70{bottom:852.270000px;}
.yeb{bottom:852.630000px;}
.y1d6{bottom:852.810000px;}
.y1b2{bottom:852.990000px;}
.y135{bottom:853.890000px;}
.y7a{bottom:854.970000px;}
.y146{bottom:855.870000px;}
.yd3{bottom:861.810000px;}
.yaf{bottom:870.630000px;}
.y15f{bottom:872.790000px;}
.y110{bottom:874.770000px;}
.y87{bottom:876.570000px;}
.y134{bottom:877.470000px;}
.y79{bottom:878.730000px;}
.ya8{bottom:880.890000px;}
.y1d5{bottom:882.510000px;}
.y180{bottom:884.670000px;}
.y192{bottom:886.110000px;}
.y1b1{bottom:888.630000px;}
.y145{bottom:891.510000px;}
.yae{bottom:894.390000px;}
.yea{bottom:895.290000px;}
.y2d{bottom:895.470000px;}
.yd2{bottom:897.630000px;}
.y10f{bottom:898.530000px;}
.y9{bottom:898.710000px;}
.y133{bottom:901.230000px;}
.y78{bottom:902.490000px;}
.y86{bottom:907.710000px;}
.y15e{bottom:908.430000px;}
.y6f{bottom:911.850000px;}
.y1d4{bottom:912.210000px;}
.y191{bottom:913.110000px;}
.y144{bottom:915.270000px;}
.yad{bottom:918.150000px;}
.y17f{bottom:920.490000px;}
.y19b{bottom:920.850000px;}
.yd1{bottom:921.210000px;}
.ya7{bottom:921.390000px;}
.y10e{bottom:922.290000px;}
.y132{bottom:924.990000px;}
.y1b0{bottom:925.350000px;}
.y77{bottom:926.070000px;}
.y8{bottom:938.850000px;}
.y85{bottom:939.030000px;}
.yac{bottom:941.910000px;}
.y1d2{bottom:942.090000px;}
.ye9{bottom:943.890000px;}
.ya6{bottom:944.250000px;}
.y10d{bottom:945.870000px;}
.y6e{bottom:947.490000px;}
.y131{bottom:948.570000px;}
.y76{bottom:949.830000px;}
.y17e{bottom:956.130000px;}
.yd0{bottom:957.030000px;}
.y1af{bottom:961.170000px;}
.yab{bottom:965.490000px;}
.ya5{bottom:966.930000px;}
.y15d{bottom:967.830000px;}
.y10c{bottom:969.630000px;}
.y84{bottom:970.170000px;}
.y1d0{bottom:971.790000px;}
.y130{bottom:972.330000px;}
.y2c{bottom:973.590000px;}
.y143{bottom:974.670000px;}
.y17d{bottom:979.890000px;}
.ycf{bottom:980.790000px;}
.y6c{bottom:983.130000px;}
.y1ae{bottom:984.750000px;}
.yaa{bottom:989.250000px;}
.ya2{bottom:989.610000px;}
.ye8{bottom:991.590000px;}
.y10b{bottom:993.390000px;}
.y2b{bottom:997.350000px;}
.y83{bottom:1001.490000px;}
.y17c{bottom:1003.650000px;}
.y142{bottom:1005.630000px;}
.y12f{bottom:1008.150000px;}
.y1ad{bottom:1008.510000px;}
.ye7{bottom:1015.350000px;}
.yce{bottom:1016.430000px;}
.y10a{bottom:1017.150000px;}
.y1cf{bottom:1020.210000px;}
.y2a{bottom:1020.930000px;}
.y17b{bottom:1027.230000px;}
.ya9{bottom:1031.910000px;}
.y1ac{bottom:1032.270000px;}
.y82{bottom:1032.630000px;}
.ya1{bottom:1039.110000px;}
.y6b{bottom:1043.430000px;}
.y29{bottom:1044.690000px;}
.y141{bottom:1045.230000px;}
.ycd{bottom:1047.390000px;}
.y12e{bottom:1050.630000px;}
.y15c{bottom:1050.990000px;}
.y109{bottom:1052.790000px;}
.y1ab{bottom:1055.850000px;}
.y81{bottom:1063.770000px;}
.ye6{bottom:1074.750000px;}
.y28{bottom:1086.990000px;}
.y80{bottom:1092.750000px;}
.y108{bottom:1095.450000px;}
.y6a{bottom:1098.510000px;}
.y25{bottom:1120.470000px;}
.y24{bottom:1142.460000px;}
.y21{bottom:1159.560000px;}
.h1b{height:21.960000px;}
.h1d{height:22.140000px;}
.h29{height:28.980000px;}
.h2a{height:29.016000px;}
.h27{height:29.160000px;}
.ha{height:35.640000px;}
.he{height:35.676000px;}
.hd{height:35.820000px;}
.hc{height:35.856000px;}
.hb{height:37.260000px;}
.h9{height:37.440000px;}
.h21{height:43.453125px;}
.h23{height:47.988281px;}
.h1c{height:48.780000px;}
.hf{height:50.220000px;}
.h7{height:53.302500px;}
.h28{height:54.386719px;}
.h5{height:56.900391px;}
.h11{height:58.680000px;}
.h15{height:58.716000px;}
.h16{height:58.860000px;}
.h17{height:58.896000px;}
.h14{height:59.439023px;}
.h18{height:59.580000px;}
.h13{height:65.884219px;}
.h12{height:67.824844px;}
.h3{height:68.040000px;}
.h6{height:68.554688px;}
.h2{height:71.613281px;}
.h4{height:73.722656px;}
.h20{height:74.004654px;}
.h22{height:74.953125px;}
.h2b{height:80.208984px;}
.h19{height:83.016000px;}
.h1f{height:87.695156px;}
.h1a{height:91.177734px;}
.h10{height:114.486328px;}
.h1e{height:125.171719px;}
.h8{height:159.732422px;}
.h24{height:188.820000px;}
.h26{height:194.970000px;}
.h25{height:276.150000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:41.436000px;}
.w3{width:101.556000px;}
.wd{width:143.676000px;}
.we{width:143.820000px;}
.wf{width:144.396000px;}
.w11{width:144.540000px;}
.w10{width:144.576000px;}
.w12{width:169.230000px;}
.w8{width:212.070000px;}
.wa{width:230.070000px;}
.wc{width:230.250000px;}
.w15{width:239.475000px;}
.w16{width:241.770000px;}
.wb{width:261.750000px;}
.w18{width:360.255000px;}
.w17{width:360.435000px;}
.w6{width:367.815000px;}
.w5{width:367.995000px;}
.w14{width:500.865000px;}
.w7{width:510.225000px;}
.w13{width:551.265000px;}
.w4{width:688.605000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x2b{left:10.836000px;}
.xc{left:75.060000px;}
.x2{left:84.960000px;}
.x3{left:90.210000px;}
.x1e{left:101.555987px;}
.x21{left:111.995987px;}
.xd{left:117.216000px;}
.x1f{left:120.995987px;}
.x22{left:138.995987px;}
.x17{left:142.014000px;}
.x29{left:144.395987px;}
.x26{left:165.989987px;}
.x13{left:170.454000px;}
.x12{left:172.434000px;}
.x28{left:176.789987px;}
.xe{left:182.919000px;}
.x4{left:186.510000px;}
.x19{left:187.599000px;}
.x7{left:191.189987px;}
.x14{left:192.999000px;}
.xa{left:203.985000px;}
.x15{left:206.859000px;}
.x11{left:217.479000px;}
.x16{left:221.799000px;}
.x18{left:223.239000px;}
.x24{left:224.489987px;}
.x1a{left:229.530000px;}
.x2c{left:238.035000px;}
.x2e{left:240.510000px;}
.x20{left:255.990000px;}
.x2d{left:324.435000px;}
.xf{left:348.015000px;}
.x23{left:352.514987px;}
.x1b{left:373.935000px;}
.x6{left:434.774987px;}
.x25{left:446.474987px;}
.x8{left:452.955000px;}
.x1c{left:518.325000px;}
.x2f{left:566.205000px;}
.x2a{left:589.064987px;}
.x9{left:595.185000px;}
.x10{left:610.485000px;}
.x1d{left:662.865000px;}
.x27{left:787.829987px;}
.xb{left:796.289987px;}
.x1{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.512000pt;}
.ls2{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000003pt;}
.lsc{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.211733pt;}
.ls6{letter-spacing:0.227733pt;}
.ls5{letter-spacing:0.244267pt;}
.ls4{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.512000pt;}
.ls15{letter-spacing:7.168000pt;}
.ls17{letter-spacing:25.088000pt;}
.ls13{letter-spacing:28.288000pt;}
.ls16{letter-spacing:29.568000pt;}
.ls1c{letter-spacing:30.208000pt;}
.ls18{letter-spacing:31.488000pt;}
.ls1a{letter-spacing:39.808000pt;}
.ls14{letter-spacing:44.266667pt;}
.ls1e{letter-spacing:48.768000pt;}
.ls12{letter-spacing:58.368000pt;}
.ls1b{letter-spacing:67.968000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws11{word-spacing:-38.400003pt;}
.ws0{word-spacing:-33.701120pt;}
.ws9{word-spacing:-24.366613pt;}
.wsa{word-spacing:-16.922880pt;}
.wse{word-spacing:-14.784000pt;}
.ws2{word-spacing:-14.656000pt;}
.wsc{word-spacing:-14.592000pt;}
.wsb{word-spacing:-14.528000pt;}
.ws1{word-spacing:-14.464000pt;}
.wsd{word-spacing:-14.400000pt;}
.ws8{word-spacing:-14.336000pt;}
.wsf{word-spacing:-14.272000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws12{word-spacing:-13.696000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws5{word-spacing:-13.306880pt;}
.ws6{word-spacing:-12.249387pt;}
.ws4{word-spacing:0.000000pt;}
._1c{margin-left:-18.236160pt;}
._6{margin-left:-14.315520pt;}
._5{margin-left:-13.271680pt;}
._16{margin-left:-10.976000pt;}
._1b{margin-left:-9.834667pt;}
._14{margin-left:-8.938667pt;}
._1a{margin-left:-8.021333pt;}
._19{margin-left:-6.816000pt;}
._17{margin-left:-4.825387pt;}
._3{margin-left:-3.131520pt;}
._2{margin-left:-2.236800pt;}
._8{margin-left:-0.917333pt;}
._0{width:0.903040pt;}
._1{width:2.073387pt;}
._9{width:4.471467pt;}
._c{width:5.576533pt;}
._d{width:6.496000pt;}
._12{width:8.074667pt;}
._11{width:9.408000pt;}
._10{width:10.496000pt;}
._a{width:16.128000pt;}
._b{width:17.752960pt;}
._e{width:22.400000pt;}
._f{width:23.459627pt;}
._13{width:64.704000pt;}
._4{width:76.537600pt;}
._15{width:85.482667pt;}
._18{width:100.906667pt;}
._7{width:753.802667pt;}
._1d{width:1170.826667pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:149.120000pt;}
.y1a1{bottom:-20.160000pt;}
.y63{bottom:-13.120000pt;}
.y5e{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:1.120000pt;}
.y62{bottom:4.320000pt;}
.y45{bottom:4.480000pt;}
.y39{bottom:7.040000pt;}
.y1d3{bottom:7.360000pt;}
.y1d1{bottom:7.520000pt;}
.ya4{bottom:8.480000pt;}
.y23{bottom:9.920000pt;}
.y1a0{bottom:10.560000pt;}
.y59{bottom:11.040000pt;}
.y3b{bottom:12.200000pt;}
.y66{bottom:12.480000pt;}
.y3d{bottom:12.800000pt;}
.y43{bottom:13.120000pt;}
.y57{bottom:13.280000pt;}
.y2f{bottom:13.920000pt;}
.y48{bottom:14.400000pt;}
.y6{bottom:15.200000pt;}
.y3{bottom:15.520000pt;}
.y4f{bottom:16.160000pt;}
.y1ca{bottom:16.474667pt;}
.y10{bottom:16.480000pt;}
.y1f{bottom:16.520000pt;}
.y18{bottom:16.640000pt;}
.y15{bottom:16.666667pt;}
.y55{bottom:16.800000pt;}
.y5b{bottom:17.280000pt;}
.y33{bottom:17.440000pt;}
.y41{bottom:17.600000pt;}
.y12{bottom:17.920000pt;}
.ye{bottom:18.080000pt;}
.y31{bottom:18.720000pt;}
.y4c{bottom:18.880000pt;}
.y5d{bottom:19.040000pt;}
.y1aa{bottom:20.480000pt;}
.y61{bottom:21.760000pt;}
.y44{bottom:21.920000pt;}
.y3f{bottom:23.200000pt;}
.y38{bottom:23.240000pt;}
.y65{bottom:27.194667pt;}
.y2e{bottom:27.200000pt;}
.y4e{bottom:27.226667pt;}
.y35{bottom:27.240000pt;}
.ya3{bottom:28.160000pt;}
.y22{bottom:29.440000pt;}
.y3a{bottom:30.120000pt;}
.y1cd{bottom:30.874667pt;}
.y1c9{bottom:31.194667pt;}
.y5{bottom:31.520000pt;}
.y30{bottom:34.880000pt;}
.y32{bottom:35.360000pt;}
.y40{bottom:35.520000pt;}
.y67{bottom:36.154667pt;}
.y53{bottom:36.160000pt;}
.y50{bottom:36.186667pt;}
.y4b{bottom:36.320000pt;}
.y68{bottom:36.794667pt;}
.y46{bottom:36.800000pt;}
.y51{bottom:36.826667pt;}
.y49{bottom:36.960000pt;}
.y73{bottom:37.600000pt;}
.y6d{bottom:37.760000pt;}
.y5c{bottom:38.440000pt;}
.y60{bottom:39.360000pt;}
.y3e{bottom:39.520000pt;}
.y37{bottom:39.560000pt;}
.y1cc{bottom:45.594667pt;}
.y1c8{bottom:45.914667pt;}
.y4{bottom:47.840000pt;}
.y1a9{bottom:50.880000pt;}
.y7{bottom:51.072000pt;}
.y27{bottom:51.392000pt;}
.y1cb{bottom:57.114667pt;}
.y1c7{bottom:57.274667pt;}
.y72{bottom:58.560000pt;}
.y2{bottom:64.992000pt;}
.y19f{bottom:68.160000pt;}
.y26{bottom:70.592000pt;}
.y1a8{bottom:81.146667pt;}
.y69{bottom:91.872000pt;}
.ye5{bottom:92.032000pt;}
.ycc{bottom:92.512000pt;}
.y12d{bottom:96.032000pt;}
.y19e{bottom:96.960000pt;}
.y17a{bottom:99.872000pt;}
.ya0{bottom:101.472000pt;}
.y15b{bottom:103.552000pt;}
.y64{bottom:107.712000pt;}
.y1a7{bottom:111.386667pt;}
.ye4{bottom:113.152000pt;}
.y12c{bottom:117.152000pt;}
.y1ce{bottom:117.472000pt;}
.y179{bottom:120.992000pt;}
.ycb{bottom:124.192000pt;}
.y15a{bottom:124.672000pt;}
.y107{bottom:125.152000pt;}
.y19d{bottom:125.760000pt;}
.y1{bottom:129.792000pt;}
.y1c6{bottom:132.672000pt;}
.y9f{bottom:133.152000pt;}
.y12b{bottom:138.266667pt;}
.y1a6{bottom:141.626667pt;}
.yca{bottom:145.306667pt;}
.y159{bottom:145.626667pt;}
.ye3{bottom:150.906667pt;}
.y178{bottom:152.666667pt;}
.y9e{bottom:154.266667pt;}
.y19c{bottom:154.560000pt;}
.y106{bottom:156.826667pt;}
.y5f{bottom:160.666667pt;}
.yc9{bottom:166.266667pt;}
.y12a{bottom:169.946667pt;}
.y1a5{bottom:171.866667pt;}
.y177{bottom:173.786667pt;}
.y9d{bottom:175.386667pt;}
.y158{bottom:177.466667pt;}
.y105{bottom:177.946667pt;}
.yc8{bottom:187.386667pt;}
.y129{bottom:191.066667pt;}
.ye2{bottom:193.466667pt;}
.y176{bottom:194.906667pt;}
.y9c{bottom:196.346667pt;}
.y104{bottom:199.066667pt;}
.y1a4{bottom:202.106667pt;}
.yc7{bottom:208.506667pt;}
.y157{bottom:209.146667pt;}
.y128{bottom:212.186667pt;}
.y5a{bottom:213.466667pt;}
.y9b{bottom:217.466667pt;}
.y103{bottom:220.186667pt;}
.y20{bottom:222.586667pt;}
.ye1{bottom:225.146667pt;}
.y175{bottom:226.586667pt;}
.y1a3{bottom:232.186667pt;}
.y1e{bottom:238.426667pt;}
.y156{bottom:240.826667pt;}
.y102{bottom:241.146667pt;}
.y127{bottom:243.866667pt;}
.yc6{bottom:246.426667pt;}
.y174{bottom:247.706667pt;}
.ye0{bottom:248.666667pt;}
.y190{bottom:252.226667pt;}
.y9a{bottom:255.106667pt;}
.y101{bottom:262.306667pt;}
.y126{bottom:265.026667pt;}
.y58{bottom:266.466667pt;}
.y173{bottom:268.866667pt;}
.y1d{bottom:270.786667pt;}
.y155{bottom:272.706667pt;}
.y18f{bottom:273.346667pt;}
.y100{bottom:283.426667pt;}
.y125{bottom:285.986667pt;}
.y99{bottom:286.306667pt;}
.yc5{bottom:288.866667pt;}
.y154{bottom:293.826667pt;}
.y18e{bottom:294.466667pt;}
.y172{bottom:300.546667pt;}
.yff{bottom:304.546667pt;}
.y1c{bottom:304.706667pt;}
.y124{bottom:307.106667pt;}
.y98{bottom:307.426667pt;}
.yc4{bottom:309.986667pt;}
.y1c5{bottom:310.306667pt;}
.y18d{bottom:315.426667pt;}
.y19a{bottom:317.666667pt;}
.y56{bottom:319.426667pt;}
.yfe{bottom:325.506667pt;}
.y1c4{bottom:329.826667pt;}
.yc3{bottom:330.946667pt;}
.y171{bottom:332.386667pt;}
.y97{bottom:335.266667pt;}
.y1b{bottom:337.186667pt;}
.y123{bottom:345.026667pt;}
.yfd{bottom:346.626667pt;}
.y199{bottom:349.346667pt;}
.y1c3{bottom:349.506667pt;}
.yc2{bottom:352.066667pt;}
.y18c{bottom:353.346667pt;}
.y153{bottom:357.186667pt;}
.y96{bottom:362.946667pt;}
.y170{bottom:364.066667pt;}
.yfc{bottom:367.746667pt;}
.y1c2{bottom:369.026667pt;}
.y1a{bottom:371.106667pt;}
.y54{bottom:372.386667pt;}
.yc1{bottom:373.186667pt;}
.y198{bottom:381.186667pt;}
.y122{bottom:387.426667pt;}
.y1c1{bottom:388.546667pt;}
.yfb{bottom:388.706667pt;}
.y152{bottom:389.026667pt;}
.y95{bottom:390.626667pt;}
.yc0{bottom:394.306667pt;}
.y16f{bottom:395.746667pt;}
.y19{bottom:403.586667pt;}
.y1c0{bottom:408.066667pt;}
.yfa{bottom:409.826667pt;}
.y151{bottom:410.146667pt;}
.y197{bottom:412.866667pt;}
.ybf{bottom:415.266667pt;}
.y16e{bottom:416.866667pt;}
.y94{bottom:418.466667pt;}
.y121{bottom:419.266667pt;}
.y52{bottom:425.346667pt;}
.y18b{bottom:427.586667pt;}
.yf9{bottom:430.946667pt;}
.ydf{bottom:431.426667pt;}
.y17{bottom:435.906667pt;}
.y16d{bottom:437.986667pt;}
.y1bf{bottom:439.746667pt;}
.y196{bottom:440.066667pt;}
.y120{bottom:440.226667pt;}
.y93{bottom:446.146667pt;}
.ybe{bottom:447.106667pt;}
.y1a2{bottom:447.426667pt;}
.y150{bottom:447.906667pt;}
.y18a{bottom:448.706667pt;}
.y140{bottom:449.986667pt;}
.yf8{bottom:452.066667pt;}
.yde{bottom:452.546667pt;}
.y16c{bottom:459.106667pt;}
.y1be{bottom:460.866667pt;}
.y11f{bottom:461.346667pt;}
.ybd{bottom:468.066667pt;}
.y16{bottom:468.386667pt;}
.y189{bottom:469.666667pt;}
.yf7{bottom:473.026667pt;}
.ydd{bottom:473.506667pt;}
.y92{bottom:473.986667pt;}
.y4d{bottom:478.306667pt;}
.y16b{bottom:480.066667pt;}
.y13f{bottom:481.826667pt;}
.y1bd{bottom:481.986667pt;}
.y11e{bottom:482.466667pt;}
.ybc{bottom:489.186667pt;}
.y14f{bottom:490.466667pt;}
.y188{bottom:490.786667pt;}
.yf6{bottom:494.146667pt;}
.ydc{bottom:494.626667pt;}
.y14{bottom:500.706667pt;}
.y16a{bottom:501.186667pt;}
.y91{bottom:501.666667pt;}
.y1bc{bottom:502.973333pt;}
.y11d{bottom:503.613333pt;}
.ybb{bottom:510.333333pt;}
.y14e{bottom:511.453333pt;}
.y187{bottom:511.933333pt;}
.y13e{bottom:513.533333pt;}
.yf5{bottom:515.293333pt;}
.ydb{bottom:515.773333pt;}
.y169{bottom:522.333333pt;}
.y11c{bottom:524.573333pt;}
.y90{bottom:529.373333pt;}
.y4a{bottom:531.133333pt;}
.yba{bottom:531.453333pt;}
.y14d{bottom:532.573333pt;}
.y186{bottom:532.893333pt;}
.y13{bottom:533.213333pt;}
.y13d{bottom:534.493333pt;}
.y1bb{bottom:534.653333pt;}
.yf4{bottom:536.413333pt;}
.y168{bottom:543.453333pt;}
.y11b{bottom:545.693333pt;}
.yb9{bottom:552.413333pt;}
.yda{bottom:553.693333pt;}
.y185{bottom:554.013333pt;}
.y13c{bottom:556.573333pt;}
.y8f{bottom:557.213333pt;}
.yf3{bottom:557.373333pt;}
.y11{bottom:565.693333pt;}
.y11a{bottom:566.813333pt;}
.y1ba{bottom:567.293333pt;}
.yb8{bottom:573.533333pt;}
.y167{bottom:575.133333pt;}
.y13b{bottom:577.533333pt;}
.yf2{bottom:578.493333pt;}
.y47{bottom:584.093333pt;}
.y8e{bottom:584.893333pt;}
.y14c{bottom:585.373333pt;}
.y119{bottom:587.933333pt;}
.y1b9{bottom:588.413333pt;}
.yb7{bottom:594.653333pt;}
.y166{bottom:596.253333pt;}
.yd9{bottom:596.893333pt;}
.yf{bottom:599.613333pt;}
.y14b{bottom:606.493333pt;}
.y184{bottom:606.813333pt;}
.y118{bottom:608.893333pt;}
.y1b8{bottom:609.533333pt;}
.y8d{bottom:612.733333pt;}
.y75{bottom:614.973333pt;}
.y165{bottom:617.213333pt;}
.y13a{bottom:620.573333pt;}
.yf1{bottom:620.733333pt;}
.yb6{bottom:626.333333pt;}
.y14a{bottom:627.613333pt;}
.y183{bottom:627.933333pt;}
.y117{bottom:630.013333pt;}
.y1b7{bottom:630.653333pt;}
.y74{bottom:630.813333pt;}
.yd{bottom:631.933333pt;}
.y7f{bottom:633.213333pt;}
.y42{bottom:637.053333pt;}
.yd8{bottom:639.293333pt;}
.y8c{bottom:640.413333pt;}
.yf0{bottom:641.693333pt;}
.yb5{bottom:647.453333pt;}
.y149{bottom:648.573333pt;}
.y164{bottom:649.053333pt;}
.y116{bottom:651.133333pt;}
.y139{bottom:653.213333pt;}
.y1b6{bottom:662.173333pt;}
.yef{bottom:662.813333pt;}
.y7e{bottom:664.893333pt;}
.y8b{bottom:668.093333pt;}
.yb4{bottom:668.573333pt;}
.y163{bottom:670.173333pt;}
.yd7{bottom:671.133333pt;}
.y115{bottom:672.253333pt;}
.y138{bottom:674.333333pt;}
.y148{bottom:680.413333pt;}
.y182{bottom:680.733333pt;}
.yc{bottom:682.493333pt;}
.y71{bottom:683.773333pt;}
.yee{bottom:683.933333pt;}
.yb3{bottom:689.693333pt;}
.y3c{bottom:690.013333pt;}
.y162{bottom:691.133333pt;}
.yd6{bottom:692.093333pt;}
.y114{bottom:693.213333pt;}
.y1d8{bottom:694.333333pt;}
.y1b5{bottom:694.973333pt;}
.y8a{bottom:695.933333pt;}
.y7d{bottom:696.733333pt;}
.y181{bottom:701.853333pt;}
.yed{bottom:705.053333pt;}
.y137{bottom:706.013333pt;}
.yb{bottom:707.773333pt;}
.yb2{bottom:710.653333pt;}
.y113{bottom:714.333333pt;}
.y195{bottom:714.813333pt;}
.y1b4{bottom:716.093333pt;}
.y7c{bottom:717.853333pt;}
.y147{bottom:718.333333pt;}
.y161{bottom:722.973333pt;}
.y89{bottom:723.613333pt;}
.yd5{bottom:723.933333pt;}
.yec{bottom:726.013333pt;}
.y1d7{bottom:731.453333pt;}
.yb1{bottom:731.773333pt;}
.y112{bottom:735.453333pt;}
.y194{bottom:735.773333pt;}
.y1b3{bottom:737.053333pt;}
.y136{bottom:737.853333pt;}
.y7b{bottom:738.813333pt;}
.y34{bottom:742.973333pt;}
.yd4{bottom:745.053333pt;}
.y88{bottom:751.453333pt;}
.yb0{bottom:752.893333pt;}
.ya{bottom:753.413333pt;}
.y160{bottom:754.693333pt;}
.y111{bottom:756.453333pt;}
.y193{bottom:756.933333pt;}
.y70{bottom:757.573333pt;}
.yeb{bottom:757.893333pt;}
.y1d6{bottom:758.053333pt;}
.y1b2{bottom:758.213333pt;}
.y135{bottom:759.013333pt;}
.y7a{bottom:759.973333pt;}
.y146{bottom:760.773333pt;}
.yd3{bottom:766.053333pt;}
.yaf{bottom:773.893333pt;}
.y15f{bottom:775.813333pt;}
.y110{bottom:777.573333pt;}
.y87{bottom:779.173333pt;}
.y134{bottom:779.973333pt;}
.y79{bottom:781.093333pt;}
.ya8{bottom:783.013333pt;}
.y1d5{bottom:784.453333pt;}
.y180{bottom:786.373333pt;}
.y192{bottom:787.653333pt;}
.y1b1{bottom:789.893333pt;}
.y145{bottom:792.453333pt;}
.yae{bottom:795.013333pt;}
.yea{bottom:795.813333pt;}
.y2d{bottom:795.973333pt;}
.yd2{bottom:797.893333pt;}
.y10f{bottom:798.693333pt;}
.y9{bottom:798.853333pt;}
.y133{bottom:801.093333pt;}
.y78{bottom:802.213333pt;}
.y86{bottom:806.853333pt;}
.y15e{bottom:807.493333pt;}
.y6f{bottom:810.533333pt;}
.y1d4{bottom:810.853333pt;}
.y191{bottom:811.653333pt;}
.y144{bottom:813.573333pt;}
.yad{bottom:816.133333pt;}
.y17f{bottom:818.213333pt;}
.y19b{bottom:818.533333pt;}
.yd1{bottom:818.853333pt;}
.ya7{bottom:819.013333pt;}
.y10e{bottom:819.813333pt;}
.y132{bottom:822.213333pt;}
.y1b0{bottom:822.533333pt;}
.y77{bottom:823.173333pt;}
.y8{bottom:834.533333pt;}
.y85{bottom:834.693333pt;}
.yac{bottom:837.253333pt;}
.y1d2{bottom:837.413333pt;}
.ye9{bottom:839.013333pt;}
.ya6{bottom:839.333333pt;}
.y10d{bottom:840.773333pt;}
.y6e{bottom:842.213333pt;}
.y131{bottom:843.173333pt;}
.y76{bottom:844.293333pt;}
.y17e{bottom:849.893333pt;}
.yd0{bottom:850.693333pt;}
.y1af{bottom:854.373333pt;}
.yab{bottom:858.213333pt;}
.ya5{bottom:859.493333pt;}
.y15d{bottom:860.293333pt;}
.y10c{bottom:861.893333pt;}
.y84{bottom:862.373333pt;}
.y1d0{bottom:863.813333pt;}
.y130{bottom:864.293333pt;}
.y2c{bottom:865.413333pt;}
.y143{bottom:866.373333pt;}
.y17d{bottom:871.013333pt;}
.ycf{bottom:871.813333pt;}
.y6c{bottom:873.893333pt;}
.y1ae{bottom:875.333333pt;}
.yaa{bottom:879.333333pt;}
.ya2{bottom:879.653333pt;}
.ye8{bottom:881.413333pt;}
.y10b{bottom:883.013333pt;}
.y2b{bottom:886.533333pt;}
.y83{bottom:890.213333pt;}
.y17c{bottom:892.133333pt;}
.y142{bottom:893.893333pt;}
.y12f{bottom:896.133333pt;}
.y1ad{bottom:896.453333pt;}
.ye7{bottom:902.533333pt;}
.yce{bottom:903.493333pt;}
.y10a{bottom:904.133333pt;}
.y1cf{bottom:906.853333pt;}
.y2a{bottom:907.493333pt;}
.y17b{bottom:913.093333pt;}
.ya9{bottom:917.253333pt;}
.y1ac{bottom:917.573333pt;}
.y82{bottom:917.893333pt;}
.ya1{bottom:923.653333pt;}
.y6b{bottom:927.493333pt;}
.y29{bottom:928.613333pt;}
.y141{bottom:929.093333pt;}
.ycd{bottom:931.013333pt;}
.y12e{bottom:933.893333pt;}
.y15c{bottom:934.213333pt;}
.y109{bottom:935.813333pt;}
.y1ab{bottom:938.533333pt;}
.y81{bottom:945.573333pt;}
.ye6{bottom:955.333333pt;}
.y28{bottom:966.213333pt;}
.y80{bottom:971.333333pt;}
.y108{bottom:973.733333pt;}
.y6a{bottom:976.453333pt;}
.y25{bottom:995.973333pt;}
.y24{bottom:1015.520000pt;}
.y21{bottom:1030.720000pt;}
.h1b{height:19.520000pt;}
.h1d{height:19.680000pt;}
.h29{height:25.760000pt;}
.h2a{height:25.792000pt;}
.h27{height:25.920000pt;}
.ha{height:31.680000pt;}
.he{height:31.712000pt;}
.hd{height:31.840000pt;}
.hc{height:31.872000pt;}
.hb{height:33.120000pt;}
.h9{height:33.280000pt;}
.h21{height:38.625000pt;}
.h23{height:42.656250pt;}
.h1c{height:43.360000pt;}
.hf{height:44.640000pt;}
.h7{height:47.380000pt;}
.h28{height:48.343750pt;}
.h5{height:50.578125pt;}
.h11{height:52.160000pt;}
.h15{height:52.192000pt;}
.h16{height:52.320000pt;}
.h17{height:52.352000pt;}
.h14{height:52.834688pt;}
.h18{height:52.960000pt;}
.h13{height:58.563750pt;}
.h12{height:60.288750pt;}
.h3{height:60.480000pt;}
.h6{height:60.937500pt;}
.h2{height:63.656250pt;}
.h4{height:65.531250pt;}
.h20{height:65.781915pt;}
.h22{height:66.625000pt;}
.h2b{height:71.296875pt;}
.h19{height:73.792000pt;}
.h1f{height:77.951250pt;}
.h1a{height:81.046875pt;}
.h10{height:101.765625pt;}
.h1e{height:111.263750pt;}
.h8{height:141.984375pt;}
.h24{height:167.840000pt;}
.h26{height:173.306667pt;}
.h25{height:245.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:36.832000pt;}
.w3{width:90.272000pt;}
.wd{width:127.712000pt;}
.we{width:127.840000pt;}
.wf{width:128.352000pt;}
.w11{width:128.480000pt;}
.w10{width:128.512000pt;}
.w12{width:150.426667pt;}
.w8{width:188.506667pt;}
.wa{width:204.506667pt;}
.wc{width:204.666667pt;}
.w15{width:212.866667pt;}
.w16{width:214.906667pt;}
.wb{width:232.666667pt;}
.w18{width:320.226667pt;}
.w17{width:320.386667pt;}
.w6{width:326.946667pt;}
.w5{width:327.106667pt;}
.w14{width:445.213333pt;}
.w7{width:453.533333pt;}
.w13{width:490.013333pt;}
.w4{width:612.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x2b{left:9.632000pt;}
.xc{left:66.720000pt;}
.x2{left:75.520000pt;}
.x3{left:80.186667pt;}
.x1e{left:90.271988pt;}
.x21{left:99.551988pt;}
.xd{left:104.192000pt;}
.x1f{left:107.551988pt;}
.x22{left:123.551988pt;}
.x17{left:126.234667pt;}
.x29{left:128.351988pt;}
.x26{left:147.546655pt;}
.x13{left:151.514667pt;}
.x12{left:153.274667pt;}
.x28{left:157.146655pt;}
.xe{left:162.594667pt;}
.x4{left:165.786667pt;}
.x19{left:166.754667pt;}
.x7{left:169.946655pt;}
.x14{left:171.554667pt;}
.xa{left:181.320000pt;}
.x15{left:183.874667pt;}
.x11{left:193.314667pt;}
.x16{left:197.154667pt;}
.x18{left:198.434667pt;}
.x24{left:199.546655pt;}
.x1a{left:204.026667pt;}
.x2c{left:211.586667pt;}
.x2e{left:213.786667pt;}
.x20{left:227.546667pt;}
.x2d{left:288.386667pt;}
.xf{left:309.346667pt;}
.x23{left:313.346655pt;}
.x1b{left:332.386667pt;}
.x6{left:386.466655pt;}
.x25{left:396.866655pt;}
.x8{left:402.626667pt;}
.x1c{left:460.733333pt;}
.x2f{left:503.293333pt;}
.x2a{left:523.613322pt;}
.x9{left:529.053333pt;}
.x10{left:542.653333pt;}
.x1d{left:589.213333pt;}
.x27{left:700.293322pt;}
.xb{left:707.813322pt;}
.x1{left:718.213322pt;}
}




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