
    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_b9b9c7a2d2eb8dd10d973514.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_849fd739ecb16fb424d03832.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_16dd75e6d095c9744e115408.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_488b604054851a69ef111926.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a0c3ba5fc4cf490dc24f701e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fa95757e1fdbd6b8b033b10a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7f7d2f3136898cfcb526c7d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d3654e2522a570c8d04ccbd6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.946777;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_0a6bdb1449681b6b4e355846.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2ed24e918ec4cb9cbdfd85dc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4b61c615fbd626b6934714a8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708008;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(0.266591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266591,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.267263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267263,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.286963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286963,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:39.203099px;}
.v1{vertical-align:46.569575px;}
.lsb{letter-spacing:-3.000000px;}
.lsd{letter-spacing:-2.994000px;}
.lsa{letter-spacing:-2.988000px;}
.lsc{letter-spacing:-2.700000px;}
.lsf{letter-spacing:-0.653133px;}
.ls29{letter-spacing:-0.633783px;}
.ls2d{letter-spacing:-0.614182px;}
.ls2e{letter-spacing:-0.529242px;}
.ls34{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.192000px;}
.ls9{letter-spacing:-0.012000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls38{letter-spacing:0.030000px;}
.ls15{letter-spacing:0.060000px;}
.ls20{letter-spacing:0.084000px;}
.ls0{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.168000px;}
.ls24{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.212105px;}
.ls32{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.228440px;}
.ls19{letter-spacing:0.244774px;}
.ls1e{letter-spacing:0.271971px;}
.ls2{letter-spacing:0.300000px;}
.ls1d{letter-spacing:0.304641px;}
.ls1c{letter-spacing:0.310113px;}
.ls18{letter-spacing:0.337310px;}
.ls35{letter-spacing:0.384000px;}
.ls10{letter-spacing:0.395116px;}
.ls4{letter-spacing:0.600000px;}
.ls28{letter-spacing:0.924540px;}
.ls2c{letter-spacing:0.947408px;}
.ls2a{letter-spacing:1.025814px;}
.ls2f{letter-spacing:1.185894px;}
.ls31{letter-spacing:1.225097px;}
.ls30{letter-spacing:1.267567px;}
.ls16{letter-spacing:1.282021px;}
.ls2b{letter-spacing:1.306770px;}
.ls27{letter-spacing:4.200000px;}
.ls1f{letter-spacing:5.400000px;}
.ls22{letter-spacing:7.980000px;}
.ls25{letter-spacing:8.400000px;}
.ls6{letter-spacing:9.540000px;}
.ls23{letter-spacing:12.000000px;}
.ls36{letter-spacing:13.200000px;}
.ls11{letter-spacing:14.400000px;}
.ls26{letter-spacing:18.660000px;}
.ls21{letter-spacing:19.200000px;}
.ls13{letter-spacing:19.800000px;}
.ls14{letter-spacing:19.860000px;}
.ls37{letter-spacing:33.984000px;}
.ls5{letter-spacing:54.984000px;}
.ls12{letter-spacing:66.660000px;}
.lse{letter-spacing:81.120000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws1e{word-spacing:-18.384000px;}
.ws1b{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.024000px;}
.ws9{word-spacing:-18.000000px;}
.ws1c{word-spacing:-17.808000px;}
.ws1d{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.ws10{word-spacing:-10.171877px;}
.wsd{word-spacing:-9.444348px;}
.ws1a{word-spacing:-9.269899px;}
.ws18{word-spacing:-9.188226px;}
.ws15{word-spacing:-9.169441px;}
.ws12{word-spacing:-7.983548px;}
.ws14{word-spacing:-7.963129px;}
.ws11{word-spacing:-0.059522px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:179.468996px;}
.ws17{word-spacing:282.094063px;}
.ws19{word-spacing:282.273744px;}
.ws16{word-spacing:282.326505px;}
.wse{word-spacing:285.012463px;}
.ws13{word-spacing:399.114414px;}
._2a{margin-left:-4.392000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._7{width:2.904000px;}
._e{width:4.128000px;}
._c{width:5.400000px;}
._d{width:6.480000px;}
._a{width:7.992000px;}
._8{width:9.720000px;}
._9{width:10.728000px;}
._b{width:11.916000px;}
._25{width:13.356000px;}
._1c{width:14.400000px;}
._18{width:16.200000px;}
._6{width:19.386000px;}
._24{width:20.718000px;}
._1a{width:22.104000px;}
._28{width:23.556000px;}
._5{width:25.392000px;}
._4{width:26.406000px;}
._20{width:28.242000px;}
._27{width:29.340000px;}
._17{width:30.672000px;}
._21{width:32.400000px;}
._26{width:34.200000px;}
._2c{width:35.346000px;}
._1b{width:36.720000px;}
._45{width:38.160000px;}
._10{width:39.624000px;}
._2b{width:40.824000px;}
._4d{width:42.624000px;}
._16{width:44.568000px;}
._43{width:45.576000px;}
._f{width:46.872000px;}
._22{width:48.528000px;}
._19{width:50.328000px;}
._1d{width:51.552000px;}
._1e{width:52.560000px;}
._29{width:53.712000px;}
._2f{width:54.720000px;}
._3d{width:56.304000px;}
._11{width:57.888000px;}
._31{width:62.928000px;}
._32{width:63.936000px;}
._39{width:65.808000px;}
._4c{width:66.888000px;}
._4e{width:68.316000px;}
._4a{width:71.496000px;}
._4b{width:72.660000px;}
._33{width:74.880000px;}
._34{width:76.032000px;}
._38{width:81.348000px;}
._1f{width:83.088000px;}
._30{width:85.092000px;}
._14{width:88.416000px;}
._15{width:90.288000px;}
._23{width:92.952000px;}
._40{width:95.328000px;}
._12{width:102.024000px;}
._13{width:103.176000px;}
._2d{width:108.072000px;}
._2e{width:109.512000px;}
._3e{width:110.592000px;}
._35{width:112.032000px;}
._36{width:113.256000px;}
._52{width:121.896000px;}
._53{width:122.976000px;}
._3f{width:127.656000px;}
._3b{width:132.552000px;}
._3c{width:133.920000px;}
._41{width:139.608000px;}
._3a{width:149.112000px;}
._42{width:158.040000px;}
._44{width:175.356749px;}
._50{width:178.992000px;}
._51{width:180.012000px;}
._4f{width:195.984000px;}
._37{width:200.808000px;}
._46{width:207.979694px;}
._48{width:237.516580px;}
._47{width:473.630568px;}
._49{width:504.548011px;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.852518px;}
.fsb{font-size:31.934191px;}
.fs6{font-size:37.777394px;}
.fs7{font-size:37.874011px;}
.fs8{font-size:40.687510px;}
.fs9{font-size:40.791570px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fsa{font-size:59.522393px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y1d{bottom:3.900000px;}
.y1f{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y80{bottom:11.545782px;}
.ycc{bottom:11.720118px;}
.y8d{bottom:12.822341px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y7f{bottom:23.164021px;}
.y1c{bottom:24.600000px;}
.y8c{bottom:25.361591px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.ycb{bottom:44.818168px;}
.y1b{bottom:45.300000px;}
.y7e{bottom:52.753093px;}
.yca{bottom:54.639362px;}
.y3{bottom:57.637500px;}
.y8b{bottom:61.262327px;}
.y7d{bottom:64.371332px;}
.yc9{bottom:64.440134px;}
.y1a{bottom:66.000000px;}
.y8a{bottom:73.801580px;}
.yc8{bottom:74.261325px;}
.y2{bottom:81.637500px;}
.yc7{bottom:84.059654px;}
.y19{bottom:86.700000px;}
.y7c{bottom:93.936247px;}
.y7b{bottom:105.573810px;}
.y18{bottom:107.400000px;}
.y3b{bottom:115.087500px;}
.ye8{bottom:117.337500px;}
.yc6{bottom:118.280689px;}
.yac{bottom:118.537500px;}
.y70{bottom:126.637500px;}
.yc5{bottom:128.081463px;}
.y17{bottom:128.100000px;}
.y82{bottom:129.515596px;}
.y110{bottom:132.487500px;}
.y86{bottom:136.837500px;}
.yc4{bottom:137.906741px;}
.y3a{bottom:138.787500px;}
.y8f{bottom:139.357353px;}
.ye7{bottom:141.037500px;}
.y88{bottom:141.542662px;}
.yab{bottom:142.387500px;}
.y45{bottom:142.687500px;}
.yc3{bottom:147.707517px;}
.y16{bottom:148.800000px;}
.y6f{bottom:150.495000px;}
.y7a{bottom:153.447719px;}
.y79{bottom:153.447726px;}
.y10f{bottom:156.195000px;}
.y85{bottom:160.680000px;}
.y39{bottom:162.645000px;}
.ye6{bottom:164.880000px;}
.y78{bottom:165.090119px;}
.yaa{bottom:166.245000px;}
.y44{bottom:166.545000px;}
.y90{bottom:169.118587px;}
.y6e{bottom:174.345000px;}
.y10e{bottom:180.045000px;}
.yc2{bottom:181.291501px;}
.y84{bottom:184.395000px;}
.y38{bottom:186.495000px;}
.ye5{bottom:188.745000px;}
.ya9{bottom:189.945000px;}
.y43{bottom:190.395000px;}
.yc1{bottom:191.116780px;}
.y81{bottom:194.751652px;}
.y6d{bottom:198.195000px;}
.y8e{bottom:200.440648px;}
.y89{bottom:200.752874px;}
.yc0{bottom:200.917557px;}
.y10d{bottom:203.895000px;}
.y83{bottom:204.345000px;}
.y71{bottom:204.374980px;}
.yd1{bottom:209.672899px;}
.y37{bottom:210.195000px;}
.ybf{bottom:210.734666px;}
.y77{bottom:212.142777px;}
.y74{bottom:212.142783px;}
.ye4{bottom:212.445000px;}
.ya8{bottom:213.795000px;}
.y42{bottom:214.095000px;}
.y6c{bottom:221.895000px;}
.y76{bottom:223.765848px;}
.y73{bottom:223.765853px;}
.y72{bottom:223.765859px;}
.y10c{bottom:227.595000px;}
.y36{bottom:234.045000px;}
.y75{bottom:235.408242px;}
.ye3{bottom:236.295000px;}
.ya7{bottom:237.645000px;}
.y41{bottom:237.945000px;}
.ybe{bottom:242.873035px;}
.y6b{bottom:245.745000px;}
.y10b{bottom:251.445000px;}
.ybd{bottom:252.673811px;}
.yd2{bottom:253.719212px;}
.y35{bottom:257.895000px;}
.ye2{bottom:260.130000px;}
.ya6{bottom:261.345000px;}
.y40{bottom:261.795000px;}
.y6a{bottom:269.595000px;}
.y10a{bottom:275.295000px;}
.ybc{bottom:281.692265px;}
.y34{bottom:281.745000px;}
.ye1{bottom:283.830000px;}
.ya5{bottom:285.195000px;}
.y3f{bottom:285.495000px;}
.ycd{bottom:291.329695px;}
.y69{bottom:293.295000px;}
.yd0{bottom:297.291819px;}
.y109{bottom:298.995000px;}
.y33{bottom:305.445000px;}
.ye0{bottom:307.695000px;}
.ya4{bottom:309.045000px;}
.y3e{bottom:309.345000px;}
.y68{bottom:317.130000px;}
.y108{bottom:322.845000px;}
.ybb{bottom:324.815672px;}
.y32{bottom:330.495000px;}
.ydf{bottom:331.545000px;}
.ya3{bottom:332.895000px;}
.y3d{bottom:333.195000px;}
.yba{bottom:334.616448px;}
.yd3{bottom:334.836952px;}
.y67{bottom:340.995000px;}
.y107{bottom:346.695000px;}
.yb9{bottom:353.932136px;}
.yde{bottom:355.245000px;}
.y31{bottom:355.545000px;}
.ya2{bottom:356.595000px;}
.y3c{bottom:356.895000px;}
.yb8{bottom:363.732910px;}
.y66{bottom:364.695000px;}
.yce{bottom:366.060597px;}
.y106{bottom:370.395000px;}
.ydd{bottom:379.095000px;}
.ya1{bottom:380.475000px;}
.y30{bottom:380.775000px;}
.y65{bottom:388.575000px;}
.yb7{bottom:392.400174px;}
.y105{bottom:394.275000px;}
.yb6{bottom:402.200952px;}
.ydc{bottom:402.975000px;}
.ya0{bottom:404.325000px;}
.y2f{bottom:404.625000px;}
.y64{bottom:412.425000px;}
.y104{bottom:417.975000px;}
.yb5{bottom:423.697298px;}
.yb4{bottom:423.697315px;}
.ydb{bottom:426.675000px;}
.y9f{bottom:428.025000px;}
.y2e{bottom:428.325000px;}
.y113{bottom:431.625000px;}
.yb3{bottom:433.498092px;}
.y63{bottom:436.125000px;}
.y103{bottom:443.175000px;}
.yda{bottom:450.525000px;}
.y9e{bottom:451.875000px;}
.y2d{bottom:452.175000px;}
.y112{bottom:455.475000px;}
.yb2{bottom:456.611576px;}
.y62{bottom:459.975000px;}
.ycf{bottom:464.313354px;}
.y102{bottom:466.875000px;}
.yd9{bottom:474.375000px;}
.y9d{bottom:475.725000px;}
.y2c{bottom:476.025000px;}
.y111{bottom:479.325000px;}
.y61{bottom:483.825000px;}
.y101{bottom:492.075000px;}
.yb1{bottom:492.531418px;}
.yd8{bottom:498.225000px;}
.y9c{bottom:499.425000px;}
.y2b{bottom:499.875000px;}
.yb0{bottom:502.348527px;}
.y60{bottom:507.525000px;}
.y100{bottom:515.925000px;}
.yd7{bottom:521.925000px;}
.y9b{bottom:523.275000px;}
.y2a{bottom:523.575000px;}
.yaf{bottom:530.264397px;}
.y5f{bottom:531.375000px;}
.yff{bottom:539.625000px;}
.yd6{bottom:545.775000px;}
.y9a{bottom:547.125000px;}
.y29{bottom:547.425000px;}
.y5e{bottom:555.225000px;}
.yae{bottom:563.113325px;}
.yfe{bottom:564.825000px;}
.yd5{bottom:569.625000px;}
.y99{bottom:570.825000px;}
.y28{bottom:571.275000px;}
.y5d{bottom:579.075000px;}
.yfd{bottom:588.525000px;}
.yd4{bottom:589.425000px;}
.yad{bottom:589.431490px;}
.y98{bottom:594.675000px;}
.y27{bottom:594.975000px;}
.y5c{bottom:602.775000px;}
.yfc{bottom:613.725000px;}
.y97{bottom:618.525000px;}
.y26{bottom:618.825000px;}
.y5b{bottom:626.625000px;}
.yfb{bottom:637.425000px;}
.y96{bottom:642.225000px;}
.y25{bottom:642.675000px;}
.y5a{bottom:650.475000px;}
.yfa{bottom:661.275000px;}
.y95{bottom:666.075000px;}
.y24{bottom:666.375000px;}
.y59{bottom:674.175000px;}
.yf9{bottom:685.125000px;}
.y94{bottom:689.925000px;}
.y23{bottom:690.225000px;}
.y58{bottom:698.025000px;}
.yf8{bottom:708.825000px;}
.y93{bottom:713.775000px;}
.y22{bottom:714.075000px;}
.y57{bottom:721.875000px;}
.yf7{bottom:734.025000px;}
.y92{bottom:737.520000px;}
.y56{bottom:745.620000px;}
.y21{bottom:746.820000px;}
.y87{bottom:757.424919px;}
.y91{bottom:757.470000px;}
.yf6{bottom:757.770000px;}
.y20{bottom:763.620000px;}
.y55{bottom:769.470000px;}
.yf5{bottom:782.970000px;}
.y54{bottom:793.320000px;}
.yf4{bottom:806.670000px;}
.y53{bottom:817.020000px;}
.y1e{bottom:825.705000px;}
.yf3{bottom:831.870000px;}
.y52{bottom:840.870000px;}
.y15{bottom:846.420000px;}
.yf2{bottom:855.570000px;}
.y51{bottom:864.720000px;}
.yf1{bottom:880.770000px;}
.y50{bottom:888.420000px;}
.yf0{bottom:904.470000px;}
.y4f{bottom:912.270000px;}
.yef{bottom:929.670000px;}
.y4e{bottom:936.120000px;}
.yee{bottom:953.370000px;}
.y4d{bottom:959.970000px;}
.yed{bottom:978.570000px;}
.y4c{bottom:983.670000px;}
.yec{bottom:1002.270000px;}
.y4b{bottom:1007.520000px;}
.y14{bottom:1015.620000px;}
.yeb{bottom:1026.120000px;}
.y4a{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yea{bottom:1051.170000px;}
.y49{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.y11{bottom:1076.220000px;}
.y48{bottom:1078.920000px;}
.y10{bottom:1096.950000px;}
.ye9{bottom:1101.450000px;}
.y47{bottom:1102.800000px;}
.y46{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.h10{height:20.700000px;}
.h1e{height:31.261504px;}
.h1d{height:31.341662px;}
.h16{height:37.076446px;}
.h17{height:37.171270px;}
.h19{height:39.932566px;}
.h1a{height:40.034695px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.hf{height:50.484375px;}
.ha{height:50.800781px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h1b{height:61.963741px;}
.h11{height:62.085000px;}
.hd{height:64.775391px;}
.h9{height:65.645508px;}
.h1f{height:70.464603px;}
.h13{height:70.628906px;}
.hc{height:70.664062px;}
.hb{height:72.562500px;}
.h12{height:74.004654px;}
.h2{height:82.441406px;}
.h15{height:83.646020px;}
.he{height:165.600000px;}
.h18{height:219.303990px;}
.h14{height:248.548187px;}
.h1c{height:577.633196px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w6{width:178.350000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.wa{width:391.482836px;}
.w9{width:393.313836px;}
.wb{width:399.456289px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x48{left:9.975492px;}
.x46{left:11.066902px;}
.x9{left:12.435000px;}
.x42{left:15.192434px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x19{left:20.887500px;}
.x5{left:22.200000px;}
.x49{left:24.534910px;}
.x2d{left:26.278018px;}
.x41{left:28.551299px;}
.x43{left:30.253901px;}
.xb{left:32.100000px;}
.x47{left:35.361703px;}
.x45{left:37.784634px;}
.x3{left:42.599987px;}
.x44{left:45.664619px;}
.x40{left:50.903389px;}
.x31{left:64.560322px;}
.x1b{left:69.599987px;}
.x10{left:75.149987px;}
.x4b{left:83.165486px;}
.x1a{left:95.699987px;}
.x18{left:100.200000px;}
.x3d{left:103.570499px;}
.x17{left:104.700000px;}
.xd{left:106.980000px;}
.x3f{left:108.067111px;}
.x3e{left:117.304811px;}
.x2f{left:118.460135px;}
.x6{left:121.687500px;}
.xa{left:128.130000px;}
.x1f{left:130.537940px;}
.x4c{left:136.452518px;}
.x1e{left:141.129335px;}
.x3b{left:144.878208px;}
.x38{left:151.557641px;}
.x2e{left:159.376212px;}
.x23{left:166.629063px;}
.x39{left:175.350392px;}
.x3c{left:176.572773px;}
.x22{left:180.383453px;}
.x4f{left:185.173090px;}
.x4a{left:192.612147px;}
.x2b{left:206.934062px;}
.x36{left:216.754145px;}
.x11{left:220.094987px;}
.x4d{left:221.320608px;}
.x35{left:222.446943px;}
.x4e{left:226.140279px;}
.x20{left:235.215558px;}
.x37{left:240.066677px;}
.x30{left:244.720063px;}
.x34{left:246.440514px;}
.x21{left:251.442654px;}
.x33{left:266.260531px;}
.x28{left:277.663600px;}
.x29{left:279.518130px;}
.x27{left:285.133212px;}
.x2a{left:286.266542px;}
.x2c{left:287.708931px;}
.x25{left:300.309400px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x26{left:313.363196px;}
.x24{left:315.372255px;}
.x3a{left:337.141104px;}
.x32{left:434.174987px;}
.x50{left:442.124987px;}
.x1c{left:457.274987px;}
.x51{left:484.274987px;}
.x1d{left:510.374987px;}
.x13{left:540.224987px;}
.x52{left:544.424987px;}
.x15{left:587.024987px;}
.x12{left:600.074987px;}
.xc{left:625.425000px;}
.x14{left:705.719987px;}
.xf{left:713.655000px;}
.x2{left:819.119987px;}
.x16{left:850.619987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:34.847199pt;}
.v1{vertical-align:41.395177pt;}
.lsb{letter-spacing:-2.666667pt;}
.lsd{letter-spacing:-2.661333pt;}
.lsa{letter-spacing:-2.656000pt;}
.lsc{letter-spacing:-2.400000pt;}
.lsf{letter-spacing:-0.580563pt;}
.ls29{letter-spacing:-0.563363pt;}
.ls2d{letter-spacing:-0.545939pt;}
.ls2e{letter-spacing:-0.470437pt;}
.ls34{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.170667pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls38{letter-spacing:0.026667pt;}
.ls15{letter-spacing:0.053333pt;}
.ls20{letter-spacing:0.074667pt;}
.ls0{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.149333pt;}
.ls24{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.188538pt;}
.ls32{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.203058pt;}
.ls19{letter-spacing:0.217577pt;}
.ls1e{letter-spacing:0.241752pt;}
.ls2{letter-spacing:0.266667pt;}
.ls1d{letter-spacing:0.270792pt;}
.ls1c{letter-spacing:0.275656pt;}
.ls18{letter-spacing:0.299831pt;}
.ls35{letter-spacing:0.341333pt;}
.ls10{letter-spacing:0.351214pt;}
.ls4{letter-spacing:0.533333pt;}
.ls28{letter-spacing:0.821813pt;}
.ls2c{letter-spacing:0.842141pt;}
.ls2a{letter-spacing:0.911835pt;}
.ls2f{letter-spacing:1.054128pt;}
.ls31{letter-spacing:1.088975pt;}
.ls30{letter-spacing:1.126726pt;}
.ls16{letter-spacing:1.139574pt;}
.ls2b{letter-spacing:1.161573pt;}
.ls27{letter-spacing:3.733333pt;}
.ls1f{letter-spacing:4.800000pt;}
.ls22{letter-spacing:7.093333pt;}
.ls25{letter-spacing:7.466667pt;}
.ls6{letter-spacing:8.480000pt;}
.ls23{letter-spacing:10.666667pt;}
.ls36{letter-spacing:11.733333pt;}
.ls11{letter-spacing:12.800000pt;}
.ls26{letter-spacing:16.586667pt;}
.ls21{letter-spacing:17.066667pt;}
.ls13{letter-spacing:17.600000pt;}
.ls14{letter-spacing:17.653333pt;}
.ls37{letter-spacing:30.208000pt;}
.ls5{letter-spacing:48.874667pt;}
.ls12{letter-spacing:59.253333pt;}
.lse{letter-spacing:72.106667pt;}
.wsa{word-spacing:-64.000000pt;}
.ws1e{word-spacing:-16.341333pt;}
.ws1b{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.021333pt;}
.ws9{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-15.829333pt;}
.ws1d{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws10{word-spacing:-9.041669pt;}
.wsd{word-spacing:-8.394976pt;}
.ws1a{word-spacing:-8.239911pt;}
.ws18{word-spacing:-8.167312pt;}
.ws15{word-spacing:-8.150615pt;}
.ws12{word-spacing:-7.096487pt;}
.ws14{word-spacing:-7.078337pt;}
.ws11{word-spacing:-0.052909pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:159.527996pt;}
.ws17{word-spacing:250.750278pt;}
.ws19{word-spacing:250.909995pt;}
.ws16{word-spacing:250.956893pt;}
.wse{word-spacing:253.344412pt;}
.ws13{word-spacing:354.768368pt;}
._2a{margin-left:-3.904000pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._7{width:2.581333pt;}
._e{width:3.669333pt;}
._c{width:4.800000pt;}
._d{width:5.760000pt;}
._a{width:7.104000pt;}
._8{width:8.640000pt;}
._9{width:9.536000pt;}
._b{width:10.592000pt;}
._25{width:11.872000pt;}
._1c{width:12.800000pt;}
._18{width:14.400000pt;}
._6{width:17.232000pt;}
._24{width:18.416000pt;}
._1a{width:19.648000pt;}
._28{width:20.938667pt;}
._5{width:22.570667pt;}
._4{width:23.472000pt;}
._20{width:25.104000pt;}
._27{width:26.080000pt;}
._17{width:27.264000pt;}
._21{width:28.800000pt;}
._26{width:30.400000pt;}
._2c{width:31.418667pt;}
._1b{width:32.640000pt;}
._45{width:33.920000pt;}
._10{width:35.221333pt;}
._2b{width:36.288000pt;}
._4d{width:37.888000pt;}
._16{width:39.616000pt;}
._43{width:40.512000pt;}
._f{width:41.664000pt;}
._22{width:43.136000pt;}
._19{width:44.736000pt;}
._1d{width:45.824000pt;}
._1e{width:46.720000pt;}
._29{width:47.744000pt;}
._2f{width:48.640000pt;}
._3d{width:50.048000pt;}
._11{width:51.456000pt;}
._31{width:55.936000pt;}
._32{width:56.832000pt;}
._39{width:58.496000pt;}
._4c{width:59.456000pt;}
._4e{width:60.725333pt;}
._4a{width:63.552000pt;}
._4b{width:64.586667pt;}
._33{width:66.560000pt;}
._34{width:67.584000pt;}
._38{width:72.309333pt;}
._1f{width:73.856000pt;}
._30{width:75.637333pt;}
._14{width:78.592000pt;}
._15{width:80.256000pt;}
._23{width:82.624000pt;}
._40{width:84.736000pt;}
._12{width:90.688000pt;}
._13{width:91.712000pt;}
._2d{width:96.064000pt;}
._2e{width:97.344000pt;}
._3e{width:98.304000pt;}
._35{width:99.584000pt;}
._36{width:100.672000pt;}
._52{width:108.352000pt;}
._53{width:109.312000pt;}
._3f{width:113.472000pt;}
._3b{width:117.824000pt;}
._3c{width:119.040000pt;}
._41{width:124.096000pt;}
._3a{width:132.544000pt;}
._42{width:140.480000pt;}
._44{width:155.872666pt;}
._50{width:159.104000pt;}
._51{width:160.010667pt;}
._4f{width:174.208000pt;}
._37{width:178.496000pt;}
._46{width:184.870839pt;}
._48{width:211.125849pt;}
._47{width:421.004949pt;}
._49{width:448.487121pt;}
.fsc{font-size:28.313349pt;}
.fsb{font-size:28.385947pt;}
.fs6{font-size:33.579905pt;}
.fs7{font-size:33.665787pt;}
.fs8{font-size:36.166675pt;}
.fs9{font-size:36.259173pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fsa{font-size:52.908794pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y1d{bottom:3.466667pt;}
.y1f{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y80{bottom:10.262917pt;}
.ycc{bottom:10.417882pt;}
.y8d{bottom:11.397636pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y7f{bottom:20.590241pt;}
.y1c{bottom:21.866667pt;}
.y8c{bottom:22.543637pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.ycb{bottom:39.838371pt;}
.y1b{bottom:40.266667pt;}
.y7e{bottom:46.891638pt;}
.yca{bottom:48.568322pt;}
.y3{bottom:51.233333pt;}
.y8b{bottom:54.455401pt;}
.y7d{bottom:57.218961pt;}
.yc9{bottom:57.280119pt;}
.y1a{bottom:58.666667pt;}
.y8a{bottom:65.601404pt;}
.yc8{bottom:66.010067pt;}
.y2{bottom:72.566667pt;}
.yc7{bottom:74.719692pt;}
.y19{bottom:77.066667pt;}
.y7c{bottom:83.498886pt;}
.y7b{bottom:93.843387pt;}
.y18{bottom:95.466667pt;}
.y3b{bottom:102.300000pt;}
.ye8{bottom:104.300000pt;}
.yc6{bottom:105.138390pt;}
.yac{bottom:105.366667pt;}
.y70{bottom:112.566667pt;}
.yc5{bottom:113.850189pt;}
.y17{bottom:113.866667pt;}
.y82{bottom:115.124975pt;}
.y110{bottom:117.766667pt;}
.y86{bottom:121.633333pt;}
.yc4{bottom:122.583770pt;}
.y3a{bottom:123.366667pt;}
.y8f{bottom:123.873203pt;}
.ye7{bottom:125.366667pt;}
.y88{bottom:125.815700pt;}
.yab{bottom:126.566667pt;}
.y45{bottom:126.833333pt;}
.yc3{bottom:131.295571pt;}
.y16{bottom:132.266667pt;}
.y6f{bottom:133.773333pt;}
.y7a{bottom:136.397972pt;}
.y79{bottom:136.397979pt;}
.y10f{bottom:138.840000pt;}
.y85{bottom:142.826667pt;}
.y39{bottom:144.573333pt;}
.ye6{bottom:146.560000pt;}
.y78{bottom:146.746773pt;}
.yaa{bottom:147.773333pt;}
.y44{bottom:148.040000pt;}
.y90{bottom:150.327633pt;}
.y6e{bottom:154.973333pt;}
.y10e{bottom:160.040000pt;}
.yc2{bottom:161.148001pt;}
.y84{bottom:163.906667pt;}
.y38{bottom:165.773333pt;}
.ye5{bottom:167.773333pt;}
.ya9{bottom:168.840000pt;}
.y43{bottom:169.240000pt;}
.yc1{bottom:169.881583pt;}
.y81{bottom:173.112580pt;}
.y6d{bottom:176.173333pt;}
.y8e{bottom:178.169465pt;}
.y89{bottom:178.446999pt;}
.yc0{bottom:178.593384pt;}
.y10d{bottom:181.240000pt;}
.y83{bottom:181.640000pt;}
.y71{bottom:181.666649pt;}
.yd1{bottom:186.375910pt;}
.y37{bottom:186.840000pt;}
.ybf{bottom:187.319703pt;}
.y77{bottom:188.571357pt;}
.y74{bottom:188.571363pt;}
.ye4{bottom:188.840000pt;}
.ya8{bottom:190.040000pt;}
.y42{bottom:190.306667pt;}
.y6c{bottom:197.240000pt;}
.y76{bottom:198.902976pt;}
.y73{bottom:198.902980pt;}
.y72{bottom:198.902986pt;}
.y10c{bottom:202.306667pt;}
.y36{bottom:208.040000pt;}
.y75{bottom:209.251771pt;}
.ye3{bottom:210.040000pt;}
.ya7{bottom:211.240000pt;}
.y41{bottom:211.506667pt;}
.ybe{bottom:215.887143pt;}
.y6b{bottom:218.440000pt;}
.y10b{bottom:223.506667pt;}
.ybd{bottom:224.598943pt;}
.yd2{bottom:225.528189pt;}
.y35{bottom:229.240000pt;}
.ye2{bottom:231.226667pt;}
.ya6{bottom:232.306667pt;}
.y40{bottom:232.706667pt;}
.y6a{bottom:239.640000pt;}
.y10a{bottom:244.706667pt;}
.ybc{bottom:250.393124pt;}
.y34{bottom:250.440000pt;}
.ye1{bottom:252.293333pt;}
.ya5{bottom:253.506667pt;}
.y3f{bottom:253.773333pt;}
.ycd{bottom:258.959729pt;}
.y69{bottom:260.706667pt;}
.yd0{bottom:264.259394pt;}
.y109{bottom:265.773333pt;}
.y33{bottom:271.506667pt;}
.ye0{bottom:273.506667pt;}
.ya4{bottom:274.706667pt;}
.y3e{bottom:274.973333pt;}
.y68{bottom:281.893333pt;}
.y108{bottom:286.973333pt;}
.ybb{bottom:288.725042pt;}
.y32{bottom:293.773333pt;}
.ydf{bottom:294.706667pt;}
.ya3{bottom:295.906667pt;}
.y3d{bottom:296.173333pt;}
.yba{bottom:297.436843pt;}
.yd3{bottom:297.632846pt;}
.y67{bottom:303.106667pt;}
.y107{bottom:308.173333pt;}
.yb9{bottom:314.606343pt;}
.yde{bottom:315.773333pt;}
.y31{bottom:316.040000pt;}
.ya2{bottom:316.973333pt;}
.y3c{bottom:317.240000pt;}
.yb8{bottom:323.318142pt;}
.y66{bottom:324.173333pt;}
.yce{bottom:325.387197pt;}
.y106{bottom:329.240000pt;}
.ydd{bottom:336.973333pt;}
.ya1{bottom:338.200000pt;}
.y30{bottom:338.466667pt;}
.y65{bottom:345.400000pt;}
.yb7{bottom:348.800155pt;}
.y105{bottom:350.466667pt;}
.yb6{bottom:357.511958pt;}
.ydc{bottom:358.200000pt;}
.ya0{bottom:359.400000pt;}
.y2f{bottom:359.666667pt;}
.y64{bottom:366.600000pt;}
.y104{bottom:371.533333pt;}
.yb5{bottom:376.619821pt;}
.yb4{bottom:376.619835pt;}
.ydb{bottom:379.266667pt;}
.y9f{bottom:380.466667pt;}
.y2e{bottom:380.733333pt;}
.y113{bottom:383.666667pt;}
.yb3{bottom:385.331637pt;}
.y63{bottom:387.666667pt;}
.y103{bottom:393.933333pt;}
.yda{bottom:400.466667pt;}
.y9e{bottom:401.666667pt;}
.y2d{bottom:401.933333pt;}
.y112{bottom:404.866667pt;}
.yb2{bottom:405.876957pt;}
.y62{bottom:408.866667pt;}
.ycf{bottom:412.722981pt;}
.y102{bottom:415.000000pt;}
.yd9{bottom:421.666667pt;}
.y9d{bottom:422.866667pt;}
.y2c{bottom:423.133333pt;}
.y111{bottom:426.066667pt;}
.y61{bottom:430.066667pt;}
.y101{bottom:437.400000pt;}
.yb1{bottom:437.805705pt;}
.yd8{bottom:442.866667pt;}
.y9c{bottom:443.933333pt;}
.y2b{bottom:444.333333pt;}
.yb0{bottom:446.532024pt;}
.y60{bottom:451.133333pt;}
.y100{bottom:458.600000pt;}
.yd7{bottom:463.933333pt;}
.y9b{bottom:465.133333pt;}
.y2a{bottom:465.400000pt;}
.yaf{bottom:471.346131pt;}
.y5f{bottom:472.333333pt;}
.yff{bottom:479.666667pt;}
.yd6{bottom:485.133333pt;}
.y9a{bottom:486.333333pt;}
.y29{bottom:486.600000pt;}
.y5e{bottom:493.533333pt;}
.yae{bottom:500.545178pt;}
.yfe{bottom:502.066667pt;}
.yd5{bottom:506.333333pt;}
.y99{bottom:507.400000pt;}
.y28{bottom:507.800000pt;}
.y5d{bottom:514.733333pt;}
.yfd{bottom:523.133333pt;}
.yd4{bottom:523.933333pt;}
.yad{bottom:523.939102pt;}
.y98{bottom:528.600000pt;}
.y27{bottom:528.866667pt;}
.y5c{bottom:535.800000pt;}
.yfc{bottom:545.533333pt;}
.y97{bottom:549.800000pt;}
.y26{bottom:550.066667pt;}
.y5b{bottom:557.000000pt;}
.yfb{bottom:566.600000pt;}
.y96{bottom:570.866667pt;}
.y25{bottom:571.266667pt;}
.y5a{bottom:578.200000pt;}
.yfa{bottom:587.800000pt;}
.y95{bottom:592.066667pt;}
.y24{bottom:592.333333pt;}
.y59{bottom:599.266667pt;}
.yf9{bottom:609.000000pt;}
.y94{bottom:613.266667pt;}
.y23{bottom:613.533333pt;}
.y58{bottom:620.466667pt;}
.yf8{bottom:630.066667pt;}
.y93{bottom:634.466667pt;}
.y22{bottom:634.733333pt;}
.y57{bottom:641.666667pt;}
.yf7{bottom:652.466667pt;}
.y92{bottom:655.573333pt;}
.y56{bottom:662.773333pt;}
.y21{bottom:663.840000pt;}
.y87{bottom:673.266594pt;}
.y91{bottom:673.306667pt;}
.yf6{bottom:673.573333pt;}
.y20{bottom:678.773333pt;}
.y55{bottom:683.973333pt;}
.yf5{bottom:695.973333pt;}
.y54{bottom:705.173333pt;}
.yf4{bottom:717.040000pt;}
.y53{bottom:726.240000pt;}
.y1e{bottom:733.960000pt;}
.yf3{bottom:739.440000pt;}
.y52{bottom:747.440000pt;}
.y15{bottom:752.373333pt;}
.yf2{bottom:760.506667pt;}
.y51{bottom:768.640000pt;}
.yf1{bottom:782.906667pt;}
.y50{bottom:789.706667pt;}
.yf0{bottom:803.973333pt;}
.y4f{bottom:810.906667pt;}
.yef{bottom:826.373333pt;}
.y4e{bottom:832.106667pt;}
.yee{bottom:847.440000pt;}
.y4d{bottom:853.306667pt;}
.yed{bottom:869.840000pt;}
.y4c{bottom:874.373333pt;}
.yec{bottom:890.906667pt;}
.y4b{bottom:895.573333pt;}
.y14{bottom:902.773333pt;}
.yeb{bottom:912.106667pt;}
.y4a{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yea{bottom:934.373333pt;}
.y49{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.y11{bottom:956.640000pt;}
.y48{bottom:959.040000pt;}
.y10{bottom:975.066667pt;}
.ye9{bottom:979.066667pt;}
.y47{bottom:980.266667pt;}
.y46{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.h10{height:18.400000pt;}
.h1e{height:27.788004pt;}
.h1d{height:27.859255pt;}
.h16{height:32.956841pt;}
.h17{height:33.041129pt;}
.h19{height:35.495614pt;}
.h1a{height:35.586396pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.hf{height:44.875000pt;}
.ha{height:45.156250pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h1b{height:55.078881pt;}
.h11{height:55.186667pt;}
.hd{height:57.578125pt;}
.h9{height:58.351562pt;}
.h1f{height:62.635202pt;}
.h13{height:62.781250pt;}
.hc{height:62.812500pt;}
.hb{height:64.500000pt;}
.h12{height:65.781915pt;}
.h2{height:73.281250pt;}
.h15{height:74.352018pt;}
.he{height:147.200000pt;}
.h18{height:194.936880pt;}
.h14{height:220.931722pt;}
.h1c{height:513.451730pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w6{width:158.533333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.wa{width:347.984743pt;}
.w9{width:349.612299pt;}
.wb{width:355.072257pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x48{left:8.867104pt;}
.x46{left:9.837246pt;}
.x9{left:11.053333pt;}
.x42{left:13.504386pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x19{left:18.566667pt;}
.x5{left:19.733333pt;}
.x49{left:21.808809pt;}
.x2d{left:23.358239pt;}
.x41{left:25.378933pt;}
.x43{left:26.892356pt;}
.xb{left:28.533333pt;}
.x47{left:31.432625pt;}
.x45{left:33.586341pt;}
.x3{left:37.866655pt;}
.x44{left:40.590772pt;}
.x40{left:45.247457pt;}
.x31{left:57.386953pt;}
.x1b{left:61.866655pt;}
.x10{left:66.799988pt;}
.x4b{left:73.924877pt;}
.x1a{left:85.066655pt;}
.x18{left:89.066667pt;}
.x3d{left:92.062666pt;}
.x17{left:93.066667pt;}
.xd{left:95.093333pt;}
.x3f{left:96.059655pt;}
.x3e{left:104.270943pt;}
.x2f{left:105.297898pt;}
.x6{left:108.166667pt;}
.xa{left:113.893333pt;}
.x1f{left:116.033725pt;}
.x4c{left:121.291127pt;}
.x1e{left:125.448298pt;}
.x3b{left:128.780629pt;}
.x38{left:134.717903pt;}
.x2e{left:141.667744pt;}
.x23{left:148.114723pt;}
.x39{left:155.867016pt;}
.x3c{left:156.953576pt;}
.x22{left:160.340847pt;}
.x4f{left:164.598302pt;}
.x4a{left:171.210797pt;}
.x2b{left:183.941388pt;}
.x36{left:192.670351pt;}
.x11{left:195.639988pt;}
.x4d{left:196.729429pt;}
.x35{left:197.730616pt;}
.x4e{left:201.013581pt;}
.x20{left:209.080496pt;}
.x37{left:213.392602pt;}
.x30{left:217.528945pt;}
.x34{left:219.058235pt;}
.x21{left:223.504582pt;}
.x33{left:236.676027pt;}
.x28{left:246.812089pt;}
.x29{left:248.460560pt;}
.x27{left:253.451744pt;}
.x2a{left:254.459148pt;}
.x2c{left:255.741272pt;}
.x25{left:266.941689pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x26{left:278.545063pt;}
.x24{left:280.330893pt;}
.x3a{left:299.680981pt;}
.x32{left:385.933322pt;}
.x50{left:392.999988pt;}
.x1c{left:406.466655pt;}
.x51{left:430.466655pt;}
.x1d{left:453.666655pt;}
.x13{left:480.199988pt;}
.x52{left:483.933322pt;}
.x15{left:521.799988pt;}
.x12{left:533.399988pt;}
.xc{left:555.933333pt;}
.x14{left:627.306655pt;}
.xf{left:634.360000pt;}
.x2{left:728.106655pt;}
.x16{left:756.106655pt;}
}




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