
    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_044b83d0d4b7713576b92800.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.929199;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_01ba2ea12ec97eef52b48ba6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.927246;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_69d7df9749dbd712891cd00a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_0bd2cd86721a2bd5252b403e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.917969;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_9e9dac3d197f1ec377dd2f0c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.680176;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_3ad1b488a40f983a2d96499e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.791992;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.976000px;}
.v4{vertical-align:21.978000px;}
.v2{vertical-align:25.974000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.009186px;}
.ls0{letter-spacing:0.016200px;}
.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;}
}
.ws7{word-spacing:-51.348000px;}
.ws2{word-spacing:-14.520000px;}
.ws0{word-spacing:-13.860000px;}
.ws6{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.004280px;}
.ws5{word-spacing:-8.465160px;}
.ws3{word-spacing:-6.926040px;}
.ws4{word-spacing:0.000000px;}
._1d{margin-left:-10.177200px;}
._1e{margin-left:-8.658900px;}
._21{margin-left:-7.471368px;}
._3{margin-left:-6.466200px;}
._15{margin-left:-5.220600px;}
._1{margin-left:-4.063500px;}
._2{margin-left:-2.457000px;}
._0{margin-left:-1.278900px;}
._7{width:1.041300px;}
._b{width:2.612400px;}
._4{width:3.618000px;}
._5{width:5.118300px;}
._9{width:6.628200px;}
._6{width:7.728600px;}
._8{width:8.962800px;}
._d{width:10.401600px;}
._12{width:11.805900px;}
._f{width:13.147200px;}
._e{width:15.554100px;}
._11{width:16.605600px;}
._17{width:18.006600px;}
._a{width:19.258800px;}
._16{width:20.275200px;}
._c{width:21.918600px;}
._10{width:23.772372px;}
._1c{width:24.852312px;}
._13{width:25.885200px;}
._14{width:27.172200px;}
._19{width:29.205000px;}
._23{width:30.332700px;}
._1a{width:31.673400px;}
._22{width:32.682000px;}
._1b{width:33.785400px;}
._18{width:36.696000px;}
._20{width:39.578100px;}
._1f{width:40.888800px;}
._24{width:42.177300px;}
._25{width:58.410000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:31.482000px;}
.fs2{font-size:36.729000px;}
.fs8{font-size:38.478000px;}
.fs4{font-size:45.474000px;}
.fs7{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:210.472500px;}
.y1a5{bottom:245.418000px;}
.y9a{bottom:247.818000px;}
.y26{bottom:248.019000px;}
.y1d5{bottom:250.818000px;}
.y11d{bottom:253.818000px;}
.yc3{bottom:254.835000px;}
.ya1{bottom:257.568000px;}
.ydc{bottom:258.168000px;}
.y4c{bottom:259.330500px;}
.y1cd{bottom:259.818000px;}
.y72{bottom:260.868000px;}
.y1a4{bottom:263.718000px;}
.y25{bottom:264.219000px;}
.y99{bottom:266.568000px;}
.y1b1{bottom:268.818000px;}
.y1d4{bottom:269.568000px;}
.y11c{bottom:272.568000px;}
.yc2{bottom:272.835000px;}
.ya0{bottom:276.318000px;}
.y154{bottom:277.330500px;}
.ydb{bottom:277.518000px;}
.y1cc{bottom:278.568000px;}
.y71{bottom:279.618000px;}
.y1a3{bottom:282.018000px;}
.y24{bottom:284.914500px;}
.y98{bottom:285.318000px;}
.y4b{bottom:286.659000px;}
.y1b0{bottom:287.568000px;}
.y163{bottom:290.835000px;}
.y11b{bottom:291.318000px;}
.yc1{bottom:295.330500px;}
.yda{bottom:296.868000px;}
.y1cb{bottom:297.318000px;}
.y70{bottom:298.368000px;}
.yfd{bottom:299.268000px;}
.y1a2{bottom:300.318000px;}
.y153{bottom:300.768000px;}
.y23{bottom:301.114500px;}
.y97{bottom:304.068000px;}
.y186{bottom:304.968000px;}
.y4a{bottom:305.709000px;}
.y11a{bottom:310.068000px;}
.y162{bottom:313.330500px;}
.y1af{bottom:315.318000px;}
.yd9{bottom:316.218000px;}
.y6f{bottom:317.118000px;}
.yfc{bottom:318.618000px;}
.y152{bottom:319.818000px;}
.yc0{bottom:320.568000px;}
.y96{bottom:322.818000px;}
.y185{bottom:323.718000px;}
.y49{bottom:324.759000px;}
.y1ca{bottom:325.068000px;}
.y119{bottom:328.818000px;}
.y135{bottom:332.568000px;}
.y1ae{bottom:334.068000px;}
.y161{bottom:334.218000px;}
.y6e{bottom:335.868000px;}
.y22{bottom:336.834000px;}
.y1a1{bottom:336.918000px;}
.yfb{bottom:337.968000px;}
.y151{bottom:338.868000px;}
.ybf{bottom:339.318000px;}
.y95{bottom:341.568000px;}
.y184{bottom:342.468000px;}
.y48{bottom:343.809000px;}
.y1c9{bottom:343.818000px;}
.yd8{bottom:344.568000px;}
.y118{bottom:347.568000px;}
.y134{bottom:351.318000px;}
.y160{bottom:352.818000px;}
.y6d{bottom:354.618000px;}
.y1a0{bottom:355.218000px;}
.y21{bottom:355.584000px;}
.yfa{bottom:357.318000px;}
.y150{bottom:357.918000px;}
.ybe{bottom:358.068000px;}
.y94{bottom:360.318000px;}
.y183{bottom:361.218000px;}
.y1c8{bottom:362.568000px;}
.y47{bottom:362.859000px;}
.yd7{bottom:363.918000px;}
.y117{bottom:366.318000px;}
.y133{bottom:370.068000px;}
.y15f{bottom:371.418000px;}
.y6c{bottom:373.368000px;}
.y19f{bottom:373.518000px;}
.y20{bottom:374.334000px;}
.yf9{bottom:376.668000px;}
.ybd{bottom:376.818000px;}
.y14f{bottom:376.968000px;}
.y93{bottom:379.068000px;}
.y182{bottom:379.968000px;}
.y1ad{bottom:380.568000px;}
.y1d3{bottom:381.318000px;}
.y46{bottom:381.909000px;}
.yd6{bottom:383.268000px;}
.y1fa{bottom:383.334000px;}
.y116{bottom:385.068000px;}
.y132{bottom:388.818000px;}
.y15e{bottom:390.018000px;}
.y1c7{bottom:390.318000px;}
.y19e{bottom:391.818000px;}
.y1f{bottom:393.084000px;}
.ybc{bottom:395.568000px;}
.yf8{bottom:396.018000px;}
.y92{bottom:397.818000px;}
.y181{bottom:398.718000px;}
.y1ac{bottom:399.318000px;}
.y45{bottom:400.959000px;}
.y6b{bottom:401.118000px;}
.y1f9{bottom:402.084000px;}
.yd5{bottom:402.618000px;}
.y115{bottom:403.818000px;}
.y131{bottom:407.568000px;}
.y15d{bottom:408.618000px;}
.y1c6{bottom:409.068000px;}
.y19d{bottom:410.118000px;}
.y1e{bottom:411.834000px;}
.ybb{bottom:414.318000px;}
.y14e{bottom:415.068000px;}
.yf7{bottom:415.368000px;}
.y91{bottom:416.568000px;}
.y1ab{bottom:418.068000px;}
.y6a{bottom:419.868000px;}
.y44{bottom:420.009000px;}
.yd4{bottom:421.968000px;}
.y114{bottom:422.568000px;}
.y130{bottom:426.318000px;}
.y180{bottom:426.468000px;}
.y15c{bottom:427.218000px;}
.y1c5{bottom:427.818000px;}
.y19c{bottom:428.418000px;}
.y1f8{bottom:429.834000px;}
.y1d{bottom:430.584000px;}
.yba{bottom:433.068000px;}
.y14d{bottom:434.118000px;}
.yf6{bottom:434.718000px;}
.y90{bottom:435.318000px;}
.y1aa{bottom:436.818000px;}
.y43{bottom:439.059000px;}
.yd3{bottom:441.318000px;}
.y12f{bottom:445.068000px;}
.y17f{bottom:445.218000px;}
.y15b{bottom:445.818000px;}
.y1d2{bottom:446.568000px;}
.y19b{bottom:446.718000px;}
.y1f7{bottom:448.584000px;}
.y1c{bottom:449.334000px;}
.yb9{bottom:451.818000px;}
.y14c{bottom:453.168000px;}
.y8f{bottom:454.068000px;}
.y1c4{bottom:455.568000px;}
.y113{bottom:460.068000px;}
.yd2{bottom:460.668000px;}
.y12e{bottom:463.818000px;}
.y17e{bottom:463.968000px;}
.y15a{bottom:464.418000px;}
.y1a9{bottom:464.568000px;}
.y19a{bottom:465.018000px;}
.y69{bottom:465.618000px;}
.y42{bottom:467.109000px;}
.y1f6{bottom:467.334000px;}
.y1b{bottom:468.084000px;}
.yb8{bottom:470.568000px;}
.y8e{bottom:472.818000px;}
.yf5{bottom:473.418000px;}
.y1c3{bottom:474.318000px;}
.y112{bottom:478.818000px;}
.yd1{bottom:480.018000px;}
.y14b{bottom:481.218000px;}
.y12d{bottom:482.568000px;}
.y17d{bottom:482.718000px;}
.y159{bottom:483.018000px;}
.y199{bottom:483.318000px;}
.y68{bottom:484.368000px;}
.y1f5{bottom:486.084000px;}
.y41{bottom:486.159000px;}
.y1a{bottom:486.834000px;}
.yb7{bottom:489.318000px;}
.y8d{bottom:491.568000px;}
.y1c2{bottom:493.068000px;}
.y111{bottom:497.568000px;}
.yd0{bottom:499.368000px;}
.y14a{bottom:500.268000px;}
.y12c{bottom:501.318000px;}
.y17c{bottom:501.468000px;}
.y158{bottom:501.618000px;}
.yf4{bottom:501.768000px;}
.y67{bottom:503.118000px;}
.y1f4{bottom:504.834000px;}
.y40{bottom:505.209000px;}
.y19{bottom:505.584000px;}
.yb6{bottom:508.068000px;}
.y8c{bottom:510.318000px;}
.y1c1{bottom:511.818000px;}
.y110{bottom:516.318000px;}
.ycf{bottom:518.718000px;}
.y149{bottom:519.318000px;}
.y198{bottom:519.918000px;}
.y12b{bottom:520.068000px;}
.y157{bottom:520.218000px;}
.yf3{bottom:520.518000px;}
.y66{bottom:521.868000px;}
.y1f3{bottom:523.584000px;}
.y3f{bottom:524.259000px;}
.y18{bottom:524.334000px;}
.yb5{bottom:526.818000px;}
.y8b{bottom:529.068000px;}
.y1c0{bottom:530.568000px;}
.y10f{bottom:535.068000px;}
.yce{bottom:538.068000px;}
.y197{bottom:538.218000px;}
.y148{bottom:538.368000px;}
.y12a{bottom:538.818000px;}
.y17b{bottom:538.968000px;}
.y1f2{bottom:542.334000px;}
.y17{bottom:543.084000px;}
.y3e{bottom:543.309000px;}
.yb4{bottom:545.568000px;}
.y8a{bottom:547.818000px;}
.y1bf{bottom:549.318000px;}
.y65{bottom:549.618000px;}
.y10e{bottom:553.818000px;}
.y196{bottom:556.518000px;}
.ycd{bottom:557.418000px;}
.y129{bottom:557.568000px;}
.y17a{bottom:557.718000px;}
.y1f1{bottom:561.084000px;}
.yf2{bottom:561.768000px;}
.y16{bottom:561.834000px;}
.y3d{bottom:562.359000px;}
.yb3{bottom:564.318000px;}
.y89{bottom:566.568000px;}
.y1be{bottom:568.068000px;}
.y64{bottom:568.668000px;}
.y10d{bottom:572.568000px;}
.y195{bottom:574.818000px;}
.y156{bottom:576.018000px;}
.y128{bottom:576.318000px;}
.y147{bottom:576.468000px;}
.ycc{bottom:576.768000px;}
.y1f0{bottom:579.834000px;}
.y15{bottom:580.584000px;}
.yf1{bottom:581.118000px;}
.y3c{bottom:581.409000px;}
.yb2{bottom:583.068000px;}
.y88{bottom:585.318000px;}
.y179{bottom:585.468000px;}
.y1bd{bottom:586.818000px;}
.y63{bottom:587.718000px;}
.y10c{bottom:591.318000px;}
.y194{bottom:593.118000px;}
.y127{bottom:595.068000px;}
.y146{bottom:595.518000px;}
.y1d1{bottom:595.818000px;}
.ycb{bottom:596.118000px;}
.y1ef{bottom:598.584000px;}
.y14{bottom:599.334000px;}
.y3b{bottom:600.459000px;}
.yf0{bottom:600.468000px;}
.yb1{bottom:601.818000px;}
.y155{bottom:603.618000px;}
.y87{bottom:604.068000px;}
.y178{bottom:604.218000px;}
.y62{bottom:606.768000px;}
.y10b{bottom:610.068000px;}
.y193{bottom:611.418000px;}
.y126{bottom:613.818000px;}
.y145{bottom:614.568000px;}
.yca{bottom:615.468000px;}
.y1ee{bottom:617.334000px;}
.y13{bottom:618.084000px;}
.y3a{bottom:619.509000px;}
.yef{bottom:619.818000px;}
.yb0{bottom:620.568000px;}
.y86{bottom:622.818000px;}
.y177{bottom:622.968000px;}
.y61{bottom:625.818000px;}
.y10a{bottom:628.818000px;}
.y192{bottom:629.718000px;}
.y125{bottom:632.568000px;}
.y1bc{bottom:633.318000px;}
.y144{bottom:633.618000px;}
.yc9{bottom:634.818000px;}
.y1ed{bottom:636.084000px;}
.y12{bottom:636.834000px;}
.y39{bottom:638.559000px;}
.yee{bottom:639.168000px;}
.yaf{bottom:639.318000px;}
.y85{bottom:641.568000px;}
.y176{bottom:641.718000px;}
.y60{bottom:644.868000px;}
.y109{bottom:647.568000px;}
.y191{bottom:648.018000px;}
.y124{bottom:651.318000px;}
.y1bb{bottom:652.068000px;}
.y143{bottom:652.668000px;}
.yc8{bottom:654.168000px;}
.y1ec{bottom:654.834000px;}
.y11{bottom:655.584000px;}
.y38{bottom:657.609000px;}
.yae{bottom:658.068000px;}
.yed{bottom:658.518000px;}
.y84{bottom:660.318000px;}
.y175{bottom:660.468000px;}
.y5f{bottom:663.918000px;}
.y108{bottom:666.318000px;}
.y123{bottom:670.068000px;}
.y1ba{bottom:670.818000px;}
.y1df{bottom:671.568000px;}
.y142{bottom:671.718000px;}
.yc7{bottom:673.518000px;}
.y1eb{bottom:673.584000px;}
.y10{bottom:674.334000px;}
.yad{bottom:676.818000px;}
.yec{bottom:677.868000px;}
.y83{bottom:679.068000px;}
.y174{bottom:679.218000px;}
.y1d0{bottom:679.818000px;}
.y5e{bottom:682.968000px;}
.y190{bottom:684.618000px;}
.y107{bottom:685.068000px;}
.y37{bottom:685.659000px;}
.y1a8{bottom:688.068000px;}
.y1de{bottom:690.318000px;}
.y141{bottom:690.768000px;}
.y1ea{bottom:692.334000px;}
.yc6{bottom:692.868000px;}
.yf{bottom:693.084000px;}
.yac{bottom:695.568000px;}
.yeb{bottom:697.218000px;}
.y82{bottom:697.818000px;}
.y173{bottom:697.968000px;}
.y1b9{bottom:698.568000px;}
.y5d{bottom:702.018000px;}
.y18f{bottom:702.918000px;}
.y36{bottom:704.709000px;}
.y1a7{bottom:706.818000px;}
.y1dd{bottom:709.068000px;}
.y140{bottom:709.818000px;}
.y1e9{bottom:711.084000px;}
.ye{bottom:711.834000px;}
.yc5{bottom:712.218000px;}
.y106{bottom:712.818000px;}
.yab{bottom:714.318000px;}
.y81{bottom:716.568000px;}
.y172{bottom:716.718000px;}
.y1b8{bottom:717.318000px;}
.y5c{bottom:721.068000px;}
.y18e{bottom:721.218000px;}
.y35{bottom:723.759000px;}
.y1a6{bottom:725.568000px;}
.y13f{bottom:728.868000px;}
.y1e8{bottom:729.834000px;}
.yd{bottom:730.584000px;}
.y105{bottom:731.568000px;}
.y80{bottom:735.318000px;}
.y171{bottom:735.468000px;}
.yea{bottom:735.918000px;}
.y1b7{bottom:736.068000px;}
.y1dc{bottom:736.818000px;}
.y18d{bottom:739.518000px;}
.y5b{bottom:740.118000px;}
.yc4{bottom:740.568000px;}
.yaa{bottom:742.068000px;}
.y34{bottom:742.809000px;}
.y9f{bottom:744.318000px;}
.y13e{bottom:747.918000px;}
.y1e7{bottom:748.584000px;}
.yc{bottom:749.334000px;}
.y104{bottom:750.318000px;}
.y7f{bottom:754.068000px;}
.y170{bottom:754.218000px;}
.ye9{bottom:755.268000px;}
.y5a{bottom:759.168000px;}
.y33{bottom:761.859000px;}
.y9e{bottom:763.068000px;}
.y1b6{bottom:763.818000px;}
.y1db{bottom:764.568000px;}
.y18c{bottom:766.818000px;}
.y13d{bottom:766.968000px;}
.y1e6{bottom:767.334000px;}
.y103{bottom:769.068000px;}
.y7e{bottom:772.818000px;}
.y16f{bottom:772.968000px;}
.ye8{bottom:774.618000px;}
.y59{bottom:778.218000px;}
.y32{bottom:780.909000px;}
.y9d{bottom:781.818000px;}
.y1b5{bottom:782.568000px;}
.ya9{bottom:783.318000px;}
.y18b{bottom:785.118000px;}
.y13c{bottom:786.018000px;}
.y1e5{bottom:786.084000px;}
.y102{bottom:787.818000px;}
.y7d{bottom:791.568000px;}
.y16e{bottom:791.718000px;}
.ye7{bottom:793.968000px;}
.y58{bottom:797.268000px;}
.y31{bottom:799.959000px;}
.y9c{bottom:800.568000px;}
.y1b4{bottom:801.318000px;}
.ya8{bottom:802.068000px;}
.y18a{bottom:803.418000px;}
.y1e4{bottom:804.834000px;}
.y13b{bottom:805.068000px;}
.y101{bottom:806.568000px;}
.y7c{bottom:810.318000px;}
.y16d{bottom:810.468000px;}
.y1da{bottom:811.068000px;}
.yb{bottom:813.084000px;}
.ye6{bottom:813.318000px;}
.y57{bottom:816.318000px;}
.y30{bottom:819.009000px;}
.y9b{bottom:819.318000px;}
.y1b3{bottom:820.068000px;}
.ya7{bottom:820.818000px;}
.y189{bottom:821.718000px;}
.y1e3{bottom:823.584000px;}
.y13a{bottom:824.118000px;}
.y100{bottom:825.318000px;}
.y122{bottom:829.068000px;}
.y16c{bottom:829.218000px;}
.y1d9{bottom:829.818000px;}
.ye5{bottom:832.668000px;}
.y56{bottom:835.368000px;}
.ya{bottom:835.584000px;}
.y2f{bottom:838.059000px;}
.y7b{bottom:838.068000px;}
.y1cf{bottom:838.818000px;}
.ya6{bottom:839.568000px;}
.y188{bottom:840.018000px;}
.y139{bottom:843.168000px;}
.yff{bottom:844.068000px;}
.y121{bottom:847.818000px;}
.y16b{bottom:847.968000px;}
.y1e2{bottom:851.334000px;}
.ye4{bottom:852.018000px;}
.y55{bottom:854.418000px;}
.y7a{bottom:856.818000px;}
.y2e{bottom:857.109000px;}
.y1d8{bottom:857.568000px;}
.y9{bottom:858.084000px;}
.ya5{bottom:858.318000px;}
.y138{bottom:862.218000px;}
.y120{bottom:866.568000px;}
.y16a{bottom:866.718000px;}
.y187{bottom:867.318000px;}
.ye3{bottom:871.368000px;}
.yfe{bottom:871.818000px;}
.y54{bottom:873.468000px;}
.y79{bottom:875.568000px;}
.y2d{bottom:876.159000px;}
.y1d7{bottom:876.318000px;}
.ya4{bottom:877.068000px;}
.y137{bottom:881.268000px;}
.y1e1{bottom:883.584000px;}
.y11f{bottom:885.318000px;}
.y169{bottom:885.468000px;}
.ye2{bottom:890.718000px;}
.y53{bottom:892.518000px;}
.y78{bottom:894.318000px;}
.y1d6{bottom:895.068000px;}
.y2c{bottom:895.209000px;}
.y1e0{bottom:902.334000px;}
.y11e{bottom:904.068000px;}
.y168{bottom:904.218000px;}
.ya3{bottom:904.818000px;}
.y136{bottom:909.318000px;}
.ye1{bottom:910.068000px;}
.y52{bottom:911.568000px;}
.y77{bottom:913.068000px;}
.y2b{bottom:914.259000px;}
.y1b2{bottom:922.818000px;}
.y167{bottom:922.968000px;}
.ya2{bottom:923.568000px;}
.ye0{bottom:929.418000px;}
.y51{bottom:930.618000px;}
.y76{bottom:931.818000px;}
.y1ce{bottom:941.568000px;}
.y166{bottom:941.718000px;}
.y2a{bottom:942.309000px;}
.ydf{bottom:948.768000px;}
.y50{bottom:949.668000px;}
.y75{bottom:950.568000px;}
.y8{bottom:951.084000px;}
.y165{bottom:960.468000px;}
.y4{bottom:961.995000px;}
.yde{bottom:968.118000px;}
.y4f{bottom:968.718000px;}
.y74{bottom:969.318000px;}
.y7{bottom:969.834000px;}
.ydd{bottom:987.468000px;}
.y4e{bottom:987.768000px;}
.y29{bottom:988.059000px;}
.y73{bottom:988.068000px;}
.y164{bottom:988.218000px;}
.y6{bottom:988.584000px;}
.y3{bottom:992.719500px;}
.y28{bottom:1006.809000px;}
.y4d{bottom:1006.818000px;}
.y5{bottom:1007.334000px;}
.y2{bottom:1008.919500px;}
.y27{bottom:1043.977500px;}
.ha{height:22.381734px;}
.hc{height:34.125000px;}
.h3{height:38.285156px;}
.hb{height:38.390625px;}
.h5{height:44.666016px;}
.h2{height:44.789062px;}
.h10{height:45.619629px;}
.hd{height:46.148438px;}
.h9{height:46.792969px;}
.he{height:46.921875px;}
.h4{height:47.572244px;}
.h8{height:47.791992px;}
.hf{height:49.333453px;}
.h6{height:56.481445px;}
.h7{height:58.902683px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:180.708000px;}
.x6{left:182.830500px;}
.xc{left:196.503000px;}
.xa{left:197.716500px;}
.x7{left:209.376000px;}
.xd{left:213.160500px;}
.x9{left:231.732000px;}
.x8{left:348.237000px;}
.xe{left:412.230000px;}
.x2{left:517.845000px;}
.x4{left:532.651500px;}
.x3{left:593.598000px;}
.xb{left:686.041500px;}
.x1{left:694.762500px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.645333pt;}
.v4{vertical-align:19.536000pt;}
.v2{vertical-align:23.088000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.008165pt;}
.ls0{letter-spacing:0.014400pt;}
.ws7{word-spacing:-45.642667pt;}
.ws2{word-spacing:-12.906667pt;}
.ws0{word-spacing:-12.320000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1{word-spacing:-8.892693pt;}
.ws5{word-spacing:-7.524587pt;}
.ws3{word-spacing:-6.156480pt;}
.ws4{word-spacing:0.000000pt;}
._1d{margin-left:-9.046400pt;}
._1e{margin-left:-7.696800pt;}
._21{margin-left:-6.641216pt;}
._3{margin-left:-5.747733pt;}
._15{margin-left:-4.640533pt;}
._1{margin-left:-3.612000pt;}
._2{margin-left:-2.184000pt;}
._0{margin-left:-1.136800pt;}
._7{width:0.925600pt;}
._b{width:2.322133pt;}
._4{width:3.216000pt;}
._5{width:4.549600pt;}
._9{width:5.891733pt;}
._6{width:6.869867pt;}
._8{width:7.966933pt;}
._d{width:9.245867pt;}
._12{width:10.494133pt;}
._f{width:11.686400pt;}
._e{width:13.825867pt;}
._11{width:14.760533pt;}
._17{width:16.005867pt;}
._a{width:17.118933pt;}
._16{width:18.022400pt;}
._c{width:19.483200pt;}
._10{width:21.130997pt;}
._1c{width:22.090944pt;}
._13{width:23.009067pt;}
._14{width:24.153067pt;}
._19{width:25.960000pt;}
._23{width:26.962400pt;}
._1a{width:28.154133pt;}
._22{width:29.050667pt;}
._1b{width:30.031467pt;}
._18{width:32.618667pt;}
._20{width:35.180533pt;}
._1f{width:36.345600pt;}
._24{width:37.490933pt;}
._25{width:51.920000pt;}
.fs6{font-size:27.984000pt;}
.fs2{font-size:32.648000pt;}
.fs8{font-size:34.202667pt;}
.fs4{font-size:40.421333pt;}
.fs7{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:187.086667pt;}
.y1a5{bottom:218.149333pt;}
.y9a{bottom:220.282667pt;}
.y26{bottom:220.461333pt;}
.y1d5{bottom:222.949333pt;}
.y11d{bottom:225.616000pt;}
.yc3{bottom:226.520000pt;}
.ya1{bottom:228.949333pt;}
.ydc{bottom:229.482667pt;}
.y4c{bottom:230.516000pt;}
.y1cd{bottom:230.949333pt;}
.y72{bottom:231.882667pt;}
.y1a4{bottom:234.416000pt;}
.y25{bottom:234.861333pt;}
.y99{bottom:236.949333pt;}
.y1b1{bottom:238.949333pt;}
.y1d4{bottom:239.616000pt;}
.y11c{bottom:242.282667pt;}
.yc2{bottom:242.520000pt;}
.ya0{bottom:245.616000pt;}
.y154{bottom:246.516000pt;}
.ydb{bottom:246.682667pt;}
.y1cc{bottom:247.616000pt;}
.y71{bottom:248.549333pt;}
.y1a3{bottom:250.682667pt;}
.y24{bottom:253.257333pt;}
.y98{bottom:253.616000pt;}
.y4b{bottom:254.808000pt;}
.y1b0{bottom:255.616000pt;}
.y163{bottom:258.520000pt;}
.y11b{bottom:258.949333pt;}
.yc1{bottom:262.516000pt;}
.yda{bottom:263.882667pt;}
.y1cb{bottom:264.282667pt;}
.y70{bottom:265.216000pt;}
.yfd{bottom:266.016000pt;}
.y1a2{bottom:266.949333pt;}
.y153{bottom:267.349333pt;}
.y23{bottom:267.657333pt;}
.y97{bottom:270.282667pt;}
.y186{bottom:271.082667pt;}
.y4a{bottom:271.741333pt;}
.y11a{bottom:275.616000pt;}
.y162{bottom:278.516000pt;}
.y1af{bottom:280.282667pt;}
.yd9{bottom:281.082667pt;}
.y6f{bottom:281.882667pt;}
.yfc{bottom:283.216000pt;}
.y152{bottom:284.282667pt;}
.yc0{bottom:284.949333pt;}
.y96{bottom:286.949333pt;}
.y185{bottom:287.749333pt;}
.y49{bottom:288.674667pt;}
.y1ca{bottom:288.949333pt;}
.y119{bottom:292.282667pt;}
.y135{bottom:295.616000pt;}
.y1ae{bottom:296.949333pt;}
.y161{bottom:297.082667pt;}
.y6e{bottom:298.549333pt;}
.y22{bottom:299.408000pt;}
.y1a1{bottom:299.482667pt;}
.yfb{bottom:300.416000pt;}
.y151{bottom:301.216000pt;}
.ybf{bottom:301.616000pt;}
.y95{bottom:303.616000pt;}
.y184{bottom:304.416000pt;}
.y48{bottom:305.608000pt;}
.y1c9{bottom:305.616000pt;}
.yd8{bottom:306.282667pt;}
.y118{bottom:308.949333pt;}
.y134{bottom:312.282667pt;}
.y160{bottom:313.616000pt;}
.y6d{bottom:315.216000pt;}
.y1a0{bottom:315.749333pt;}
.y21{bottom:316.074667pt;}
.yfa{bottom:317.616000pt;}
.y150{bottom:318.149333pt;}
.ybe{bottom:318.282667pt;}
.y94{bottom:320.282667pt;}
.y183{bottom:321.082667pt;}
.y1c8{bottom:322.282667pt;}
.y47{bottom:322.541333pt;}
.yd7{bottom:323.482667pt;}
.y117{bottom:325.616000pt;}
.y133{bottom:328.949333pt;}
.y15f{bottom:330.149333pt;}
.y6c{bottom:331.882667pt;}
.y19f{bottom:332.016000pt;}
.y20{bottom:332.741333pt;}
.yf9{bottom:334.816000pt;}
.ybd{bottom:334.949333pt;}
.y14f{bottom:335.082667pt;}
.y93{bottom:336.949333pt;}
.y182{bottom:337.749333pt;}
.y1ad{bottom:338.282667pt;}
.y1d3{bottom:338.949333pt;}
.y46{bottom:339.474667pt;}
.yd6{bottom:340.682667pt;}
.y1fa{bottom:340.741333pt;}
.y116{bottom:342.282667pt;}
.y132{bottom:345.616000pt;}
.y15e{bottom:346.682667pt;}
.y1c7{bottom:346.949333pt;}
.y19e{bottom:348.282667pt;}
.y1f{bottom:349.408000pt;}
.ybc{bottom:351.616000pt;}
.yf8{bottom:352.016000pt;}
.y92{bottom:353.616000pt;}
.y181{bottom:354.416000pt;}
.y1ac{bottom:354.949333pt;}
.y45{bottom:356.408000pt;}
.y6b{bottom:356.549333pt;}
.y1f9{bottom:357.408000pt;}
.yd5{bottom:357.882667pt;}
.y115{bottom:358.949333pt;}
.y131{bottom:362.282667pt;}
.y15d{bottom:363.216000pt;}
.y1c6{bottom:363.616000pt;}
.y19d{bottom:364.549333pt;}
.y1e{bottom:366.074667pt;}
.ybb{bottom:368.282667pt;}
.y14e{bottom:368.949333pt;}
.yf7{bottom:369.216000pt;}
.y91{bottom:370.282667pt;}
.y1ab{bottom:371.616000pt;}
.y6a{bottom:373.216000pt;}
.y44{bottom:373.341333pt;}
.yd4{bottom:375.082667pt;}
.y114{bottom:375.616000pt;}
.y130{bottom:378.949333pt;}
.y180{bottom:379.082667pt;}
.y15c{bottom:379.749333pt;}
.y1c5{bottom:380.282667pt;}
.y19c{bottom:380.816000pt;}
.y1f8{bottom:382.074667pt;}
.y1d{bottom:382.741333pt;}
.yba{bottom:384.949333pt;}
.y14d{bottom:385.882667pt;}
.yf6{bottom:386.416000pt;}
.y90{bottom:386.949333pt;}
.y1aa{bottom:388.282667pt;}
.y43{bottom:390.274667pt;}
.yd3{bottom:392.282667pt;}
.y12f{bottom:395.616000pt;}
.y17f{bottom:395.749333pt;}
.y15b{bottom:396.282667pt;}
.y1d2{bottom:396.949333pt;}
.y19b{bottom:397.082667pt;}
.y1f7{bottom:398.741333pt;}
.y1c{bottom:399.408000pt;}
.yb9{bottom:401.616000pt;}
.y14c{bottom:402.816000pt;}
.y8f{bottom:403.616000pt;}
.y1c4{bottom:404.949333pt;}
.y113{bottom:408.949333pt;}
.yd2{bottom:409.482667pt;}
.y12e{bottom:412.282667pt;}
.y17e{bottom:412.416000pt;}
.y15a{bottom:412.816000pt;}
.y1a9{bottom:412.949333pt;}
.y19a{bottom:413.349333pt;}
.y69{bottom:413.882667pt;}
.y42{bottom:415.208000pt;}
.y1f6{bottom:415.408000pt;}
.y1b{bottom:416.074667pt;}
.yb8{bottom:418.282667pt;}
.y8e{bottom:420.282667pt;}
.yf5{bottom:420.816000pt;}
.y1c3{bottom:421.616000pt;}
.y112{bottom:425.616000pt;}
.yd1{bottom:426.682667pt;}
.y14b{bottom:427.749333pt;}
.y12d{bottom:428.949333pt;}
.y17d{bottom:429.082667pt;}
.y159{bottom:429.349333pt;}
.y199{bottom:429.616000pt;}
.y68{bottom:430.549333pt;}
.y1f5{bottom:432.074667pt;}
.y41{bottom:432.141333pt;}
.y1a{bottom:432.741333pt;}
.yb7{bottom:434.949333pt;}
.y8d{bottom:436.949333pt;}
.y1c2{bottom:438.282667pt;}
.y111{bottom:442.282667pt;}
.yd0{bottom:443.882667pt;}
.y14a{bottom:444.682667pt;}
.y12c{bottom:445.616000pt;}
.y17c{bottom:445.749333pt;}
.y158{bottom:445.882667pt;}
.yf4{bottom:446.016000pt;}
.y67{bottom:447.216000pt;}
.y1f4{bottom:448.741333pt;}
.y40{bottom:449.074667pt;}
.y19{bottom:449.408000pt;}
.yb6{bottom:451.616000pt;}
.y8c{bottom:453.616000pt;}
.y1c1{bottom:454.949333pt;}
.y110{bottom:458.949333pt;}
.ycf{bottom:461.082667pt;}
.y149{bottom:461.616000pt;}
.y198{bottom:462.149333pt;}
.y12b{bottom:462.282667pt;}
.y157{bottom:462.416000pt;}
.yf3{bottom:462.682667pt;}
.y66{bottom:463.882667pt;}
.y1f3{bottom:465.408000pt;}
.y3f{bottom:466.008000pt;}
.y18{bottom:466.074667pt;}
.yb5{bottom:468.282667pt;}
.y8b{bottom:470.282667pt;}
.y1c0{bottom:471.616000pt;}
.y10f{bottom:475.616000pt;}
.yce{bottom:478.282667pt;}
.y197{bottom:478.416000pt;}
.y148{bottom:478.549333pt;}
.y12a{bottom:478.949333pt;}
.y17b{bottom:479.082667pt;}
.y1f2{bottom:482.074667pt;}
.y17{bottom:482.741333pt;}
.y3e{bottom:482.941333pt;}
.yb4{bottom:484.949333pt;}
.y8a{bottom:486.949333pt;}
.y1bf{bottom:488.282667pt;}
.y65{bottom:488.549333pt;}
.y10e{bottom:492.282667pt;}
.y196{bottom:494.682667pt;}
.ycd{bottom:495.482667pt;}
.y129{bottom:495.616000pt;}
.y17a{bottom:495.749333pt;}
.y1f1{bottom:498.741333pt;}
.yf2{bottom:499.349333pt;}
.y16{bottom:499.408000pt;}
.y3d{bottom:499.874667pt;}
.yb3{bottom:501.616000pt;}
.y89{bottom:503.616000pt;}
.y1be{bottom:504.949333pt;}
.y64{bottom:505.482667pt;}
.y10d{bottom:508.949333pt;}
.y195{bottom:510.949333pt;}
.y156{bottom:512.016000pt;}
.y128{bottom:512.282667pt;}
.y147{bottom:512.416000pt;}
.ycc{bottom:512.682667pt;}
.y1f0{bottom:515.408000pt;}
.y15{bottom:516.074667pt;}
.yf1{bottom:516.549333pt;}
.y3c{bottom:516.808000pt;}
.yb2{bottom:518.282667pt;}
.y88{bottom:520.282667pt;}
.y179{bottom:520.416000pt;}
.y1bd{bottom:521.616000pt;}
.y63{bottom:522.416000pt;}
.y10c{bottom:525.616000pt;}
.y194{bottom:527.216000pt;}
.y127{bottom:528.949333pt;}
.y146{bottom:529.349333pt;}
.y1d1{bottom:529.616000pt;}
.ycb{bottom:529.882667pt;}
.y1ef{bottom:532.074667pt;}
.y14{bottom:532.741333pt;}
.y3b{bottom:533.741333pt;}
.yf0{bottom:533.749333pt;}
.yb1{bottom:534.949333pt;}
.y155{bottom:536.549333pt;}
.y87{bottom:536.949333pt;}
.y178{bottom:537.082667pt;}
.y62{bottom:539.349333pt;}
.y10b{bottom:542.282667pt;}
.y193{bottom:543.482667pt;}
.y126{bottom:545.616000pt;}
.y145{bottom:546.282667pt;}
.yca{bottom:547.082667pt;}
.y1ee{bottom:548.741333pt;}
.y13{bottom:549.408000pt;}
.y3a{bottom:550.674667pt;}
.yef{bottom:550.949333pt;}
.yb0{bottom:551.616000pt;}
.y86{bottom:553.616000pt;}
.y177{bottom:553.749333pt;}
.y61{bottom:556.282667pt;}
.y10a{bottom:558.949333pt;}
.y192{bottom:559.749333pt;}
.y125{bottom:562.282667pt;}
.y1bc{bottom:562.949333pt;}
.y144{bottom:563.216000pt;}
.yc9{bottom:564.282667pt;}
.y1ed{bottom:565.408000pt;}
.y12{bottom:566.074667pt;}
.y39{bottom:567.608000pt;}
.yee{bottom:568.149333pt;}
.yaf{bottom:568.282667pt;}
.y85{bottom:570.282667pt;}
.y176{bottom:570.416000pt;}
.y60{bottom:573.216000pt;}
.y109{bottom:575.616000pt;}
.y191{bottom:576.016000pt;}
.y124{bottom:578.949333pt;}
.y1bb{bottom:579.616000pt;}
.y143{bottom:580.149333pt;}
.yc8{bottom:581.482667pt;}
.y1ec{bottom:582.074667pt;}
.y11{bottom:582.741333pt;}
.y38{bottom:584.541333pt;}
.yae{bottom:584.949333pt;}
.yed{bottom:585.349333pt;}
.y84{bottom:586.949333pt;}
.y175{bottom:587.082667pt;}
.y5f{bottom:590.149333pt;}
.y108{bottom:592.282667pt;}
.y123{bottom:595.616000pt;}
.y1ba{bottom:596.282667pt;}
.y1df{bottom:596.949333pt;}
.y142{bottom:597.082667pt;}
.yc7{bottom:598.682667pt;}
.y1eb{bottom:598.741333pt;}
.y10{bottom:599.408000pt;}
.yad{bottom:601.616000pt;}
.yec{bottom:602.549333pt;}
.y83{bottom:603.616000pt;}
.y174{bottom:603.749333pt;}
.y1d0{bottom:604.282667pt;}
.y5e{bottom:607.082667pt;}
.y190{bottom:608.549333pt;}
.y107{bottom:608.949333pt;}
.y37{bottom:609.474667pt;}
.y1a8{bottom:611.616000pt;}
.y1de{bottom:613.616000pt;}
.y141{bottom:614.016000pt;}
.y1ea{bottom:615.408000pt;}
.yc6{bottom:615.882667pt;}
.yf{bottom:616.074667pt;}
.yac{bottom:618.282667pt;}
.yeb{bottom:619.749333pt;}
.y82{bottom:620.282667pt;}
.y173{bottom:620.416000pt;}
.y1b9{bottom:620.949333pt;}
.y5d{bottom:624.016000pt;}
.y18f{bottom:624.816000pt;}
.y36{bottom:626.408000pt;}
.y1a7{bottom:628.282667pt;}
.y1dd{bottom:630.282667pt;}
.y140{bottom:630.949333pt;}
.y1e9{bottom:632.074667pt;}
.ye{bottom:632.741333pt;}
.yc5{bottom:633.082667pt;}
.y106{bottom:633.616000pt;}
.yab{bottom:634.949333pt;}
.y81{bottom:636.949333pt;}
.y172{bottom:637.082667pt;}
.y1b8{bottom:637.616000pt;}
.y5c{bottom:640.949333pt;}
.y18e{bottom:641.082667pt;}
.y35{bottom:643.341333pt;}
.y1a6{bottom:644.949333pt;}
.y13f{bottom:647.882667pt;}
.y1e8{bottom:648.741333pt;}
.yd{bottom:649.408000pt;}
.y105{bottom:650.282667pt;}
.y80{bottom:653.616000pt;}
.y171{bottom:653.749333pt;}
.yea{bottom:654.149333pt;}
.y1b7{bottom:654.282667pt;}
.y1dc{bottom:654.949333pt;}
.y18d{bottom:657.349333pt;}
.y5b{bottom:657.882667pt;}
.yc4{bottom:658.282667pt;}
.yaa{bottom:659.616000pt;}
.y34{bottom:660.274667pt;}
.y9f{bottom:661.616000pt;}
.y13e{bottom:664.816000pt;}
.y1e7{bottom:665.408000pt;}
.yc{bottom:666.074667pt;}
.y104{bottom:666.949333pt;}
.y7f{bottom:670.282667pt;}
.y170{bottom:670.416000pt;}
.ye9{bottom:671.349333pt;}
.y5a{bottom:674.816000pt;}
.y33{bottom:677.208000pt;}
.y9e{bottom:678.282667pt;}
.y1b6{bottom:678.949333pt;}
.y1db{bottom:679.616000pt;}
.y18c{bottom:681.616000pt;}
.y13d{bottom:681.749333pt;}
.y1e6{bottom:682.074667pt;}
.y103{bottom:683.616000pt;}
.y7e{bottom:686.949333pt;}
.y16f{bottom:687.082667pt;}
.ye8{bottom:688.549333pt;}
.y59{bottom:691.749333pt;}
.y32{bottom:694.141333pt;}
.y9d{bottom:694.949333pt;}
.y1b5{bottom:695.616000pt;}
.ya9{bottom:696.282667pt;}
.y18b{bottom:697.882667pt;}
.y13c{bottom:698.682667pt;}
.y1e5{bottom:698.741333pt;}
.y102{bottom:700.282667pt;}
.y7d{bottom:703.616000pt;}
.y16e{bottom:703.749333pt;}
.ye7{bottom:705.749333pt;}
.y58{bottom:708.682667pt;}
.y31{bottom:711.074667pt;}
.y9c{bottom:711.616000pt;}
.y1b4{bottom:712.282667pt;}
.ya8{bottom:712.949333pt;}
.y18a{bottom:714.149333pt;}
.y1e4{bottom:715.408000pt;}
.y13b{bottom:715.616000pt;}
.y101{bottom:716.949333pt;}
.y7c{bottom:720.282667pt;}
.y16d{bottom:720.416000pt;}
.y1da{bottom:720.949333pt;}
.yb{bottom:722.741333pt;}
.ye6{bottom:722.949333pt;}
.y57{bottom:725.616000pt;}
.y30{bottom:728.008000pt;}
.y9b{bottom:728.282667pt;}
.y1b3{bottom:728.949333pt;}
.ya7{bottom:729.616000pt;}
.y189{bottom:730.416000pt;}
.y1e3{bottom:732.074667pt;}
.y13a{bottom:732.549333pt;}
.y100{bottom:733.616000pt;}
.y122{bottom:736.949333pt;}
.y16c{bottom:737.082667pt;}
.y1d9{bottom:737.616000pt;}
.ye5{bottom:740.149333pt;}
.y56{bottom:742.549333pt;}
.ya{bottom:742.741333pt;}
.y2f{bottom:744.941333pt;}
.y7b{bottom:744.949333pt;}
.y1cf{bottom:745.616000pt;}
.ya6{bottom:746.282667pt;}
.y188{bottom:746.682667pt;}
.y139{bottom:749.482667pt;}
.yff{bottom:750.282667pt;}
.y121{bottom:753.616000pt;}
.y16b{bottom:753.749333pt;}
.y1e2{bottom:756.741333pt;}
.ye4{bottom:757.349333pt;}
.y55{bottom:759.482667pt;}
.y7a{bottom:761.616000pt;}
.y2e{bottom:761.874667pt;}
.y1d8{bottom:762.282667pt;}
.y9{bottom:762.741333pt;}
.ya5{bottom:762.949333pt;}
.y138{bottom:766.416000pt;}
.y120{bottom:770.282667pt;}
.y16a{bottom:770.416000pt;}
.y187{bottom:770.949333pt;}
.ye3{bottom:774.549333pt;}
.yfe{bottom:774.949333pt;}
.y54{bottom:776.416000pt;}
.y79{bottom:778.282667pt;}
.y2d{bottom:778.808000pt;}
.y1d7{bottom:778.949333pt;}
.ya4{bottom:779.616000pt;}
.y137{bottom:783.349333pt;}
.y1e1{bottom:785.408000pt;}
.y11f{bottom:786.949333pt;}
.y169{bottom:787.082667pt;}
.ye2{bottom:791.749333pt;}
.y53{bottom:793.349333pt;}
.y78{bottom:794.949333pt;}
.y1d6{bottom:795.616000pt;}
.y2c{bottom:795.741333pt;}
.y1e0{bottom:802.074667pt;}
.y11e{bottom:803.616000pt;}
.y168{bottom:803.749333pt;}
.ya3{bottom:804.282667pt;}
.y136{bottom:808.282667pt;}
.ye1{bottom:808.949333pt;}
.y52{bottom:810.282667pt;}
.y77{bottom:811.616000pt;}
.y2b{bottom:812.674667pt;}
.y1b2{bottom:820.282667pt;}
.y167{bottom:820.416000pt;}
.ya2{bottom:820.949333pt;}
.ye0{bottom:826.149333pt;}
.y51{bottom:827.216000pt;}
.y76{bottom:828.282667pt;}
.y1ce{bottom:836.949333pt;}
.y166{bottom:837.082667pt;}
.y2a{bottom:837.608000pt;}
.ydf{bottom:843.349333pt;}
.y50{bottom:844.149333pt;}
.y75{bottom:844.949333pt;}
.y8{bottom:845.408000pt;}
.y165{bottom:853.749333pt;}
.y4{bottom:855.106667pt;}
.yde{bottom:860.549333pt;}
.y4f{bottom:861.082667pt;}
.y74{bottom:861.616000pt;}
.y7{bottom:862.074667pt;}
.ydd{bottom:877.749333pt;}
.y4e{bottom:878.016000pt;}
.y29{bottom:878.274667pt;}
.y73{bottom:878.282667pt;}
.y164{bottom:878.416000pt;}
.y6{bottom:878.741333pt;}
.y3{bottom:882.417333pt;}
.y28{bottom:894.941333pt;}
.y4d{bottom:894.949333pt;}
.y5{bottom:895.408000pt;}
.y2{bottom:896.817333pt;}
.y27{bottom:927.980000pt;}
.ha{height:19.894875pt;}
.hc{height:30.333333pt;}
.h3{height:34.031250pt;}
.hb{height:34.125000pt;}
.h5{height:39.703125pt;}
.h2{height:39.812500pt;}
.h10{height:40.550781pt;}
.hd{height:41.020833pt;}
.h9{height:41.593750pt;}
.he{height:41.708333pt;}
.h4{height:42.286439pt;}
.h8{height:42.481771pt;}
.hf{height:43.851958pt;}
.h6{height:50.205729pt;}
.h7{height:52.357940pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:160.629333pt;}
.x6{left:162.516000pt;}
.xc{left:174.669333pt;}
.xa{left:175.748000pt;}
.x7{left:186.112000pt;}
.xd{left:189.476000pt;}
.x9{left:205.984000pt;}
.x8{left:309.544000pt;}
.xe{left:366.426667pt;}
.x2{left:460.306667pt;}
.x4{left:473.468000pt;}
.x3{left:527.642667pt;}
.xb{left:609.814667pt;}
.x1{left:617.566667pt;}
}




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