
    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_af2780a67fded7a987b8f3c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.000000;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_490834f17fa1b08a7ce3d1cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_1ab6dc4a6fdd94e5fe678160.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.019531;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_ad30edac561d253c2f3514d2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970703;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_52d1d4ace67638e128257b94.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_cd5a93789b21bb11aa4fbeaf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989746;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_1c2a498c9b058b4600f74386.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.012207;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_b8a1815710cf7f722ac4f52a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985352;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_23aab735a8afea64b70c056f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_33ad1004dc27dac43d81d82d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.019043;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_fa84cea2d3fe48b897aabcb0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_6e5a2efe21e3624dd2886c69.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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:ffd;src:url('chunks/assets/font_360134c75825eb190199531f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.000000;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:ffe;src:url('chunks/assets/font_3d8ea555dde166727f4f818e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.000000;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;}
.m8{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.235380px;}
.ls1{letter-spacing:0.248100px;}
.ls1b{letter-spacing:0.249060px;}
.ls30{letter-spacing:0.252360px;}
.ls32{letter-spacing:0.322140px;}
.ls1a{letter-spacing:0.378514px;}
.ls3{letter-spacing:0.547860px;}
.ls24{letter-spacing:0.790200px;}
.ls4{letter-spacing:1.450919px;}
.ls2f{letter-spacing:1.925639px;}
.ls33{letter-spacing:2.410379px;}
.ls34{letter-spacing:8.655297px;}
.ls2e{letter-spacing:9.130076px;}
.ls35{letter-spacing:18.021053px;}
.ls31{letter-spacing:36.032146px;}
.lsd{letter-spacing:37.419885px;}
.ls1c{letter-spacing:49.899580px;}
.ls25{letter-spacing:50.620180px;}
.lsa{letter-spacing:64.796494px;}
.lsc{letter-spacing:65.517094px;}
.ls8{letter-spacing:66.237694px;}
.ls6{letter-spacing:66.958293px;}
.ls7{letter-spacing:68.398893px;}
.ls9{letter-spacing:70.560092px;}
.lsb{letter-spacing:71.280691px;}
.ls5{letter-spacing:73.441891px;}
.ls23{letter-spacing:196.869973px;}
.ls27{letter-spacing:219.922823px;}
.ls20{letter-spacing:219.923654px;}
.ls1d{letter-spacing:219.923697px;}
.ls28{letter-spacing:219.924045px;}
.ls1f{letter-spacing:219.924231px;}
.ls26{letter-spacing:219.924307px;}
.ls1e{letter-spacing:219.924512px;}
.ls2b{letter-spacing:235.053162px;}
.ls22{letter-spacing:235.053197px;}
.ls2a{letter-spacing:235.053303px;}
.ls2c{letter-spacing:235.053371px;}
.ls21{letter-spacing:235.053376px;}
.ls2d{letter-spacing:235.053449px;}
.ls29{letter-spacing:235.053491px;}
.ls17{letter-spacing:235.053506px;}
.ls18{letter-spacing:263.150340px;}
.ls16{letter-spacing:284.763461px;}
.ls12{letter-spacing:334.474298px;}
.ls14{letter-spacing:363.291813px;}
.lsf{letter-spacing:374.819250px;}
.ls13{letter-spacing:418.045633px;}
.ls10{letter-spacing:444.702016px;}
.ls11{letter-spacing:452.627219px;}
.ls15{letter-spacing:476.401609px;}
.ls19{letter-spacing:521.789343px;}
.lse{letter-spacing:851.386459px;}
.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;}
}
.ws6{word-spacing:-16.493753px;}
.ws7{word-spacing:-15.119274px;}
.ws9{word-spacing:-14.939994px;}
.ws8{word-spacing:-14.880234px;}
.ws2{word-spacing:-13.445995px;}
.ws4{word-spacing:-12.011755px;}
.ws3{word-spacing:-11.432875px;}
.ws0{word-spacing:-10.147676px;}
.wsa{word-spacing:-9.107996px;}
.ws1{word-spacing:-8.963996px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-3.902992px;}
._2{margin-left:-2.281786px;}
._1{margin-left:-1.250980px;}
._0{width:1.040186px;}
._8{width:2.239552px;}
._3{width:3.408689px;}
._4{width:4.737620px;}
._10{width:5.760044px;}
._5{width:7.462622px;}
._6{width:8.808092px;}
._b{width:10.027100px;}
._c{width:11.231087px;}
._e{width:12.661904px;}
._d{width:13.824593px;}
._3a{width:15.883125px;}
._a{width:16.956192px;}
._9{width:18.129241px;}
._11{width:19.359021px;}
._f{width:20.510978px;}
._36{width:21.566364px;}
._39{width:22.699624px;}
._18{width:23.726166px;}
._19{width:24.846489px;}
._13{width:26.151319px;}
._12{width:27.256305px;}
._17{width:28.908692px;}
._16{width:30.233312px;}
._14{width:31.652267px;}
._15{width:32.890884px;}
._3e{width:36.555749px;}
._3b{width:38.012682px;}
._3c{width:43.866048px;}
._43{width:47.519447px;}
._1f{width:50.107794px;}
._42{width:61.825390px;}
._29{width:85.390499px;}
._40{width:88.117865px;}
._3d{width:91.133491px;}
._41{width:124.417488px;}
._1e{width:134.991272px;}
._1d{width:136.401379px;}
._45{width:138.863905px;}
._3f{width:169.525607px;}
._44{width:179.588645px;}
._24{width:192.241463px;}
._2a{width:203.894659px;}
._37{width:235.628666px;}
._1c{width:254.511231px;}
._35{width:268.346700px;}
._23{width:284.510739px;}
._34{width:299.587882px;}
._26{width:305.127928px;}
._38{width:307.243355px;}
._22{width:311.128676px;}
._30{width:313.926307px;}
._32{width:314.936530px;}
._31{width:336.887757px;}
._1b{width:374.234581px;}
._21{width:391.744779px;}
._28{width:399.154897px;}
._1a{width:454.851122px;}
._33{width:456.802377px;}
._25{width:475.791568px;}
._2b{width:495.751627px;}
._27{width:502.324626px;}
._20{width:513.978001px;}
._2c{width:534.655371px;}
._2d{width:655.071125px;}
._2e{width:693.974996px;}
._2f{width:848.409692px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.239995px;}
.fs9{font-size:30.239988px;}
.fs5{font-size:35.999986px;}
.fs1{font-size:41.759983px;}
.fs7{font-size:48.239981px;}
.fs6{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs2{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.yba{bottom:2.880035px;}
.y30{bottom:3.598956px;}
.y2{bottom:33.960286px;}
.yb9{bottom:58.800240px;}
.y3{bottom:61.500275px;}
.y58{bottom:61.680275px;}
.y13e{bottom:120.179952px;}
.y9d{bottom:121.439951px;}
.y124{bottom:122.699951px;}
.yb8{bottom:125.759950px;}
.y138{bottom:130.619948px;}
.y15a{bottom:135.299946px;}
.y13d{bottom:136.199946px;}
.y9c{bottom:141.419943px;}
.y123{bottom:142.679943px;}
.y10b{bottom:143.760242px;}
.yb7{bottom:145.919942px;}
.yd3{bottom:149.159940px;}
.y8c{bottom:150.599940px;}
.y87{bottom:151.139940px;}
.y13c{bottom:152.039939px;}
.y2e{bottom:154.919938px;}
.y159{bottom:155.279938px;}
.y13b{bottom:156.539937px;}
.y9b{bottom:161.399935px;}
.y122{bottom:162.659935px;}
.yb6{bottom:165.899934px;}
.y10a{bottom:166.979933px;}
.y13a{bottom:168.779932px;}
.y86{bottom:169.139932px;}
.y8b{bottom:170.579932px;}
.y2d{bottom:174.899930px;}
.y158{bottom:175.259930px;}
.y9a{bottom:181.379927px;}
.y121{bottom:182.639927px;}
.yb5{bottom:185.879926px;}
.y85{bottom:187.139925px;}
.y109{bottom:188.219925px;}
.yd2{bottom:189.119924px;}
.y8a{bottom:190.559924px;}
.y2c{bottom:194.879922px;}
.y157{bottom:195.239922px;}
.y99{bottom:201.539919px;}
.y120{bottom:202.619919px;}
.y84{bottom:205.139918px;}
.yb4{bottom:205.859918px;}
.yd1{bottom:209.099916px;}
.y108{bottom:209.459916px;}
.yf2{bottom:209.639916px;}
.y89{bottom:210.539916px;}
.y2b{bottom:214.859914px;}
.y156{bottom:215.219914px;}
.y98{bottom:221.519911px;}
.y83{bottom:223.139911px;}
.yb3{bottom:225.839910px;}
.yd0{bottom:229.079908px;}
.y88{bottom:230.519908px;}
.yf1{bottom:230.699908px;}
.y11f{bottom:232.319907px;}
.y2a{bottom:234.839906px;}
.y155{bottom:235.199906px;}
.yfe{bottom:237.719905px;}
.y97{bottom:241.499903px;}
.yb2{bottom:245.819902px;}
.ycf{bottom:249.059900px;}
.y82{bottom:250.499900px;}
.yf0{bottom:250.859900px;}
.y107{bottom:251.939899px;}
.y29{bottom:254.819898px;}
.y154{bottom:255.359898px;}
.y11e{bottom:255.539898px;}
.yfd{bottom:258.779896px;}
.y96{bottom:261.479895px;}
.yb1{bottom:265.799894px;}
.yce{bottom:269.039892px;}
.y81{bottom:270.479892px;}
.yef{bottom:270.839892px;}
.y106{bottom:272.999891px;}
.y28{bottom:274.799890px;}
.y153{bottom:275.339890px;}
.y11d{bottom:276.779889px;}
.yfc{bottom:280.019888px;}
.y95{bottom:281.459887px;}
.yb0{bottom:285.779886px;}
.ycd{bottom:289.019884px;}
.y80{bottom:290.459884px;}
.yee{bottom:290.819884px;}
.y105{bottom:294.239882px;}
.y26{bottom:294.779882px;}
.y152{bottom:295.319882px;}
.y11c{bottom:298.019881px;}
.y27{bottom:299.999880px;}
.yfb{bottom:301.259879px;}
.y94{bottom:301.439879px;}
.yaf{bottom:305.759878px;}
.ycc{bottom:309.179876px;}
.y7f{bottom:310.439876px;}
.yed{bottom:310.799876px;}
.y151{bottom:315.299874px;}
.y104{bottom:315.479874px;}
.y11b{bottom:319.259872px;}
.y25{bottom:319.979872px;}
.y93{bottom:321.419871px;}
.yfa{bottom:322.499871px;}
.yae{bottom:325.739870px;}
.ycb{bottom:329.159868px;}
.y7e{bottom:330.599868px;}
.yec{bottom:330.779868px;}
.y150{bottom:335.279866px;}
.y103{bottom:336.719865px;}
.y11a{bottom:340.499864px;}
.y92{bottom:341.399863px;}
.yf9{bottom:343.739863px;}
.yad{bottom:345.719862px;}
.yca{bottom:349.139860px;}
.y7d{bottom:350.579860px;}
.y24{bottom:350.759860px;}
.y14f{bottom:355.259858px;}
.y102{bottom:357.959857px;}
.y91{bottom:361.379855px;}
.y119{bottom:361.739855px;}
.yf8{bottom:364.979854px;}
.yac{bottom:365.699854px;}
.yc9{bottom:369.119852px;}
.y7c{bottom:370.559852px;}
.yeb{bottom:370.739852px;}
.y14e{bottom:375.239850px;}
.y101{bottom:379.199848px;}
.y23{bottom:380.639848px;}
.y118{bottom:382.979847px;}
.yab{bottom:385.859846px;}
.yf7{bottom:386.219846px;}
.y90{bottom:386.579845px;}
.yc8{bottom:389.099844px;}
.y7b{bottom:390.539844px;}
.yea{bottom:390.719844px;}
.y15b{bottom:391.079844px;}
.y14d{bottom:395.219842px;}
.y22{bottom:400.619840px;}
.y100{bottom:403.319839px;}
.y117{bottom:404.219838px;}
.yaa{bottom:405.839838px;}
.yf6{bottom:407.459837px;}
.yc7{bottom:409.079836px;}
.y7a{bottom:410.519836px;}
.ye9{bottom:410.699836px;}
.y14c{bottom:415.199834px;}
.y8f{bottom:417.359833px;}
.y21{bottom:422.219831px;}
.y116{bottom:425.279830px;}
.ya9{bottom:425.819830px;}
.yf5{bottom:428.699829px;}
.yc6{bottom:429.059828px;}
.y79{bottom:430.499828px;}
.ye8{bottom:430.679828px;}
.y8e{bottom:434.639826px;}
.y14b{bottom:435.179826px;}
.yff{bottom:435.719826px;}
.y20{bottom:443.819822px;}
.ya8{bottom:445.799822px;}
.y115{bottom:446.519821px;}
.yc5{bottom:449.039820px;}
.yf4{bottom:449.939820px;}
.y78{bottom:450.479820px;}
.ye7{bottom:450.659820px;}
.y14a{bottom:455.159818px;}
.y1f{bottom:465.779814px;}
.y114{bottom:467.759813px;}
.yc4{bottom:469.019812px;}
.y77{bottom:470.459812px;}
.ye6{bottom:470.639812px;}
.yf3{bottom:471.899811px;}
.y149{bottom:475.139810px;}
.ya7{bottom:485.759806px;}
.y1e{bottom:487.739805px;}
.yc3{bottom:488.999804px;}
.y76{bottom:490.439804px;}
.y55{bottom:491.519803px;}
.y148{bottom:495.299802px;}
.ye5{bottom:500.339800px;}
.ya6{bottom:505.739798px;}
.y54{bottom:508.619797px;}
.yc2{bottom:508.979796px;}
.y1d{bottom:509.699796px;}
.y113{bottom:510.239796px;}
.y75{bottom:510.419796px;}
.y147{bottom:515.279794px;}
.y53{bottom:525.539790px;}
.ya5{bottom:525.719790px;}
.yc1{bottom:528.959788px;}
.y74{bottom:530.399788px;}
.y112{bottom:531.479787px;}
.y1c{bottom:531.659787px;}
.y146{bottom:535.259786px;}
.y52{bottom:542.639783px;}
.ya4{bottom:545.699782px;}
.yc0{bottom:549.119780px;}
.y73{bottom:550.559780px;}
.y111{bottom:552.719779px;}
.y1b{bottom:553.799778px;}
.y145{bottom:555.239778px;}
.y51{bottom:559.739776px;}
.ya3{bottom:565.679774px;}
.ybf{bottom:569.099772px;}
.y72{bottom:570.539772px;}
.y110{bottom:573.959770px;}
.y144{bottom:575.219770px;}
.y1a{bottom:575.759770px;}
.y50{bottom:576.839769px;}
.ya2{bottom:585.659766px;}
.ybe{bottom:589.079764px;}
.y71{bottom:590.519764px;}
.y4f{bottom:593.939762px;}
.y10f{bottom:595.199762px;}
.y19{bottom:597.719761px;}
.ya1{bottom:605.639758px;}
.ybd{bottom:609.059756px;}
.y4e{bottom:609.779756px;}
.y70{bottom:610.499756px;}
.y143{bottom:615.179754px;}
.ye4{bottom:615.719754px;}
.y18{bottom:619.679752px;}
.y10e{bottom:623.459751px;}
.ya0{bottom:625.799750px;}
.y4d{bottom:625.979750px;}
.y6f{bottom:630.479748px;}
.y142{bottom:635.159746px;}
.ybc{bottom:638.759744px;}
.y17{bottom:641.639743px;}
.y4c{bottom:643.799742px;}
.y9f{bottom:645.779742px;}
.y6e{bottom:650.459740px;}
.y10d{bottom:651.719739px;}
.y141{bottom:655.139738px;}
.y4b{bottom:661.259735px;}
.ye3{bottom:661.979735px;}
.y16{bottom:663.779734px;}
.y9e{bottom:665.759734px;}
.y137{bottom:670.439732px;}
.y140{bottom:675.119730px;}
.y6d{bottom:675.659730px;}
.y4a{bottom:677.099729px;}
.y10c{bottom:678.719729px;}
.ye2{bottom:683.219727px;}
.y15{bottom:685.739726px;}
.y136{bottom:690.419724px;}
.y49{bottom:693.299723px;}
.y8d{bottom:695.639722px;}
.y13f{bottom:700.319720px;}
.ye1{bottom:704.459718px;}
.y6c{bottom:705.719718px;}
.y14{bottom:707.699717px;}
.y135{bottom:710.399716px;}
.y48{bottom:711.119716px;}
.y6b{bottom:725.699710px;}
.y47{bottom:728.399709px;}
.y13{bottom:729.659708px;}
.y134{bottom:730.379708px;}
.y46{bottom:744.239702px;}
.y6a{bottom:745.679702px;}
.ye0{bottom:746.939701px;}
.y133{bottom:750.359700px;}
.y12{bottom:751.619699px;}
.y45{bottom:760.079696px;}
.y69{bottom:765.659694px;}
.ydf{bottom:767.999693px;}
.y132{bottom:770.339692px;}
.y11{bottom:773.579691px;}
.y44{bottom:775.919690px;}
.y68{bottom:785.639686px;}
.yde{bottom:789.239684px;}
.y131{bottom:790.499684px;}
.y43{bottom:791.759683px;}
.y10{bottom:795.719682px;}
.y67{bottom:805.619678px;}
.y42{bottom:807.599677px;}
.ydd{bottom:810.479676px;}
.yf{bottom:817.679673px;}
.y41{bottom:823.799670px;}
.y66{bottom:825.599670px;}
.y130{bottom:830.459668px;}
.ydc{bottom:831.719667px;}
.ye{bottom:839.639664px;}
.y40{bottom:841.619663px;}
.y65{bottom:845.579662px;}
.y12f{bottom:850.439660px;}
.ydb{bottom:852.959659px;}
.y3f{bottom:859.079656px;}
.yd{bottom:861.599655px;}
.y64{bottom:865.739654px;}
.y12e{bottom:870.419652px;}
.y139{bottom:870.959652px;}
.yda{bottom:874.199650px;}
.y3e{bottom:874.919650px;}
.yc{bottom:883.559647px;}
.y63{bottom:885.719646px;}
.y12d{bottom:890.399644px;}
.y3d{bottom:890.759644px;}
.yd9{bottom:895.439642px;}
.yb{bottom:905.699638px;}
.y3c{bottom:906.599637px;}
.y12c{bottom:910.379636px;}
.yd8{bottom:916.679633px;}
.y3b{bottom:922.619631px;}
.y62{bottom:925.679630px;}
.ya{bottom:927.659629px;}
.y12b{bottom:930.359628px;}
.yd7{bottom:937.919625px;}
.y3a{bottom:940.439624px;}
.y61{bottom:945.659622px;}
.y9{bottom:949.439620px;}
.y12a{bottom:950.339620px;}
.y39{bottom:958.259617px;}
.yd6{bottom:959.159616px;}
.y60{bottom:965.639614px;}
.y8{bottom:968.699613px;}
.y129{bottom:970.319612px;}
.y38{bottom:976.079610px;}
.yd5{bottom:980.399608px;}
.y5f{bottom:985.619606px;}
.y128{bottom:990.299604px;}
.y37{bottom:993.179603px;}
.yd4{bottom:1004.519598px;}
.y7{bottom:1004.699598px;}
.y5e{bottom:1005.599598px;}
.y36{bottom:1007.759597px;}
.y127{bottom:1010.279596px;}
.y35{bottom:1025.579590px;}
.y126{bottom:1030.439588px;}
.ybb{bottom:1035.479586px;}
.y6{bottom:1040.699584px;}
.y34{bottom:1043.399583px;}
.y5d{bottom:1045.559582px;}
.y125{bottom:1055.459578px;}
.y33{bottom:1061.219576px;}
.y5c{bottom:1065.539574px;}
.y5{bottom:1076.699569px;}
.y32{bottom:1079.039568px;}
.y5b{bottom:1085.519566px;}
.y31{bottom:1096.139562px;}
.y5a{bottom:1105.679558px;}
.y2f{bottom:1107.120600px;}
.y4{bottom:1112.699555px;}
.y59{bottom:1125.659550px;}
.y1{bottom:1175.519530px;}
.y57{bottom:1191.539523px;}
.y56{bottom:1207.559517px;}
.h1{height:0.000000px;}
.h1a{height:10.088433px;}
.h18{height:13.860000px;}
.hc{height:17.640000px;}
.h1c{height:24.924365px;}
.hb{height:29.671863px;}
.h3{height:33.134752px;}
.h2{height:33.359049px;}
.h10{height:37.451938px;}
.h13{height:37.758149px;}
.h11{height:38.535453px;}
.h12{height:39.760297px;}
.h17{height:41.114864px;}
.hd{height:41.923811px;}
.h19{height:42.608863px;}
.hf{height:42.846663px;}
.he{height:43.136701px;}
.h15{height:44.507795px;}
.h1b{height:45.573102px;}
.h5{height:47.737950px;}
.h8{height:49.083820px;}
.ha{height:49.255293px;}
.h14{height:49.535980px;}
.h9{height:51.426542px;}
.h7{height:51.847011px;}
.h16{height:52.558573px;}
.h6{height:52.914354px;}
.h4{height:94.113595px;}
.h0{height:1263.000000px;}
.w8{width:0.180000px;}
.w2{width:3.420000px;}
.w5{width:6.120000px;}
.w7{width:7.380000px;}
.w1{width:23.400000px;}
.w3{width:34.920000px;}
.w4{width:56.880000px;}
.w6{width:63.180000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:56.340000px;}
.x9{left:79.740000px;}
.xa{left:83.160000px;}
.xb{left:118.080000px;}
.xc{left:121.500000px;}
.x5{left:134.819732px;}
.x3b{left:137.699945px;}
.x12{left:166.679933px;}
.x14{left:177.299929px;}
.xd{left:178.380000px;}
.xe{left:184.500000px;}
.x19{left:187.739925px;}
.x3c{left:196.739921px;}
.x17{left:198.719812px;}
.x3d{left:204.299918px;}
.x2f{left:237.599905px;}
.xf{left:247.680000px;}
.x2a{left:253.979429px;}
.x39{left:256.139898px;}
.x20{left:259.379628px;}
.x21{left:266.219894px;}
.x4{left:272.339891px;}
.x24{left:274.859890px;}
.x6{left:276.659889px;}
.x7{left:285.119886px;}
.x2{left:288.719885px;}
.x1e{left:291.239884px;}
.x28{left:293.579084px;}
.x23{left:298.259881px;}
.x11{left:303.479886px;}
.x1d{left:304.919419px;}
.x1b{left:315.359874px;}
.x1c{left:317.519873px;}
.x1f{left:319.499206px;}
.x2b{left:324.539870px;}
.x10{left:326.159870px;}
.x27{left:329.039868px;}
.x1a{left:340.379864px;}
.x25{left:346.139862px;}
.x3a{left:350.819860px;}
.x16{left:356.039858px;}
.x13{left:358.559857px;}
.x29{left:378.179849px;}
.x32{left:379.619848px;}
.x26{left:380.700312px;}
.x31{left:382.859847px;}
.x2c{left:384.120421px;}
.x38{left:387.899272px;}
.x34{left:389.519844px;}
.x37{left:396.180181px;}
.x36{left:397.979841px;}
.x2e{left:399.599840px;}
.x30{left:407.880488px;}
.x35{left:409.499493px;}
.x33{left:414.539933px;}
.x22{left:428.219829px;}
.x2d{left:444.599822px;}
.x3{left:445.679822px;}
.x18{left:457.380000px;}
.x15{left:732.239707px;}
.x1{left:758.699697px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.209227pt;}
.ls1{letter-spacing:0.220533pt;}
.ls1b{letter-spacing:0.221387pt;}
.ls30{letter-spacing:0.224320pt;}
.ls32{letter-spacing:0.286347pt;}
.ls1a{letter-spacing:0.336457pt;}
.ls3{letter-spacing:0.486986pt;}
.ls24{letter-spacing:0.702400pt;}
.ls4{letter-spacing:1.289706pt;}
.ls2f{letter-spacing:1.711679pt;}
.ls33{letter-spacing:2.142559pt;}
.ls34{letter-spacing:7.693597pt;}
.ls2e{letter-spacing:8.115623pt;}
.ls35{letter-spacing:16.018714pt;}
.ls31{letter-spacing:32.028574pt;}
.lsd{letter-spacing:33.262120pt;}
.ls1c{letter-spacing:44.355182pt;}
.ls25{letter-spacing:44.995715pt;}
.lsa{letter-spacing:57.596884pt;}
.lsc{letter-spacing:58.237417pt;}
.ls8{letter-spacing:58.877950pt;}
.ls6{letter-spacing:59.518483pt;}
.ls7{letter-spacing:60.799016pt;}
.ls9{letter-spacing:62.720082pt;}
.lsb{letter-spacing:63.360615pt;}
.ls5{letter-spacing:65.281681pt;}
.ls23{letter-spacing:174.995531pt;}
.ls27{letter-spacing:195.486954pt;}
.ls20{letter-spacing:195.487693pt;}
.ls1d{letter-spacing:195.487730pt;}
.ls28{letter-spacing:195.488040pt;}
.ls1f{letter-spacing:195.488205pt;}
.ls26{letter-spacing:195.488272pt;}
.ls1e{letter-spacing:195.488455pt;}
.ls2b{letter-spacing:208.936144pt;}
.ls22{letter-spacing:208.936175pt;}
.ls2a{letter-spacing:208.936269pt;}
.ls2c{letter-spacing:208.936330pt;}
.ls21{letter-spacing:208.936334pt;}
.ls2d{letter-spacing:208.936399pt;}
.ls29{letter-spacing:208.936436pt;}
.ls17{letter-spacing:208.936450pt;}
.ls18{letter-spacing:233.911413pt;}
.ls16{letter-spacing:253.123076pt;}
.ls12{letter-spacing:297.310487pt;}
.ls14{letter-spacing:322.926056pt;}
.lsf{letter-spacing:333.172667pt;}
.ls13{letter-spacing:371.596118pt;}
.ls10{letter-spacing:395.290681pt;}
.ls11{letter-spacing:402.335306pt;}
.ls15{letter-spacing:423.468097pt;}
.ls19{letter-spacing:463.812750pt;}
.lse{letter-spacing:756.787964pt;}
.ws6{word-spacing:-14.661114pt;}
.ws7{word-spacing:-13.439355pt;}
.ws9{word-spacing:-13.279995pt;}
.ws8{word-spacing:-13.226875pt;}
.ws2{word-spacing:-11.951995pt;}
.ws4{word-spacing:-10.677116pt;}
.ws3{word-spacing:-10.162556pt;}
.ws0{word-spacing:-9.020156pt;}
.wsa{word-spacing:-8.095997pt;}
.ws1{word-spacing:-7.967997pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-3.469326pt;}
._2{margin-left:-2.028254pt;}
._1{margin-left:-1.111983pt;}
._0{width:0.924610pt;}
._8{width:1.990713pt;}
._3{width:3.029946pt;}
._4{width:4.211218pt;}
._10{width:5.120039pt;}
._5{width:6.633442pt;}
._6{width:7.829415pt;}
._b{width:8.912978pt;}
._c{width:9.983189pt;}
._e{width:11.255026pt;}
._d{width:12.288527pt;}
._3a{width:14.118333pt;}
._a{width:15.072171pt;}
._9{width:16.114881pt;}
._11{width:17.208018pt;}
._f{width:18.231981pt;}
._36{width:19.170102pt;}
._39{width:20.177444pt;}
._18{width:21.089925pt;}
._19{width:22.085768pt;}
._13{width:23.245617pt;}
._12{width:24.227827pt;}
._17{width:25.696615pt;}
._16{width:26.874055pt;}
._14{width:28.135348pt;}
._15{width:29.236342pt;}
._3e{width:32.493999pt;}
._3b{width:33.789051pt;}
._3c{width:38.992042pt;}
._43{width:42.239509pt;}
._1f{width:44.540261pt;}
._42{width:54.955902pt;}
._29{width:75.902666pt;}
._40{width:78.326991pt;}
._3d{width:81.007547pt;}
._41{width:110.593323pt;}
._1e{width:119.992242pt;}
._1d{width:121.245670pt;}
._45{width:123.434582pt;}
._3f{width:150.689429pt;}
._44{width:159.634351pt;}
._24{width:170.881301pt;}
._2a{width:181.239697pt;}
._37{width:209.447703pt;}
._1c{width:226.232206pt;}
._35{width:238.530400pt;}
._23{width:252.898435pt;}
._34{width:266.300339pt;}
._26{width:271.224825pt;}
._38{width:273.105205pt;}
._22{width:276.558823pt;}
._30{width:279.045607pt;}
._32{width:279.943582pt;}
._31{width:299.455784pt;}
._1b{width:332.652961pt;}
._21{width:348.217581pt;}
._28{width:354.804353pt;}
._1a{width:404.312108pt;}
._33{width:406.046558pt;}
._25{width:422.925838pt;}
._2b{width:440.668113pt;}
._27{width:446.510779pt;}
._20{width:456.869334pt;}
._2c{width:475.249219pt;}
._2d{width:582.285444pt;}
._2e{width:616.866663pt;}
._2f{width:754.141948pt;}
.fs8{font-size:10.879996pt;}
.fs9{font-size:26.879989pt;}
.fs5{font-size:31.999987pt;}
.fs1{font-size:37.119985pt;}
.fs7{font-size:42.879983pt;}
.fs6{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs2{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:2.560031pt;}
.y30{bottom:3.199072pt;}
.y2{bottom:30.186921pt;}
.yb9{bottom:52.266880pt;}
.y3{bottom:54.666911pt;}
.y58{bottom:54.826911pt;}
.y13e{bottom:106.826624pt;}
.y9d{bottom:107.946623pt;}
.y124{bottom:109.066623pt;}
.yb8{bottom:111.786622pt;}
.y138{bottom:116.106620pt;}
.y15a{bottom:120.266619pt;}
.y13d{bottom:121.066618pt;}
.y9c{bottom:125.706616pt;}
.y123{bottom:126.826616pt;}
.y10b{bottom:127.786882pt;}
.yb7{bottom:129.706615pt;}
.yd3{bottom:132.586614pt;}
.y8c{bottom:133.866613pt;}
.y87{bottom:134.346613pt;}
.y13c{bottom:135.146613pt;}
.y2e{bottom:137.706612pt;}
.y159{bottom:138.026611pt;}
.y13b{bottom:139.146611pt;}
.y9b{bottom:143.466609pt;}
.y122{bottom:144.586609pt;}
.yb6{bottom:147.466608pt;}
.y10a{bottom:148.426607pt;}
.y13a{bottom:150.026607pt;}
.y86{bottom:150.346607pt;}
.y8b{bottom:151.626606pt;}
.y2d{bottom:155.466604pt;}
.y158{bottom:155.786604pt;}
.y9a{bottom:161.226602pt;}
.y121{bottom:162.346602pt;}
.yb5{bottom:165.226601pt;}
.y85{bottom:166.346600pt;}
.y109{bottom:167.306600pt;}
.yd2{bottom:168.106599pt;}
.y8a{bottom:169.386599pt;}
.y2c{bottom:173.226597pt;}
.y157{bottom:173.546597pt;}
.y99{bottom:179.146595pt;}
.y120{bottom:180.106595pt;}
.y84{bottom:182.346594pt;}
.yb4{bottom:182.986593pt;}
.yd1{bottom:185.866592pt;}
.y108{bottom:186.186592pt;}
.yf2{bottom:186.346592pt;}
.y89{bottom:187.146592pt;}
.y2b{bottom:190.986590pt;}
.y156{bottom:191.306590pt;}
.y98{bottom:196.906588pt;}
.y83{bottom:198.346587pt;}
.yb3{bottom:200.746586pt;}
.yd0{bottom:203.626585pt;}
.y88{bottom:204.906585pt;}
.yf1{bottom:205.066585pt;}
.y11f{bottom:206.506584pt;}
.y2a{bottom:208.746583pt;}
.y155{bottom:209.066583pt;}
.yfe{bottom:211.306582pt;}
.y97{bottom:214.666581pt;}
.yb2{bottom:218.506579pt;}
.ycf{bottom:221.386578pt;}
.y82{bottom:222.666578pt;}
.yf0{bottom:222.986577pt;}
.y107{bottom:223.946577pt;}
.y29{bottom:226.506576pt;}
.y154{bottom:226.986576pt;}
.y11e{bottom:227.146576pt;}
.yfd{bottom:230.026575pt;}
.y96{bottom:232.426574pt;}
.yb1{bottom:236.266572pt;}
.yce{bottom:239.146571pt;}
.y81{bottom:240.426570pt;}
.yef{bottom:240.746570pt;}
.y106{bottom:242.666570pt;}
.y28{bottom:244.266569pt;}
.y153{bottom:244.746569pt;}
.y11d{bottom:246.026568pt;}
.yfc{bottom:248.906567pt;}
.y95{bottom:250.186567pt;}
.yb0{bottom:254.026565pt;}
.ycd{bottom:256.906564pt;}
.y80{bottom:258.186563pt;}
.yee{bottom:258.506563pt;}
.y105{bottom:261.546562pt;}
.y26{bottom:262.026562pt;}
.y152{bottom:262.506562pt;}
.y11c{bottom:264.906561pt;}
.y27{bottom:266.666560pt;}
.yfb{bottom:267.786560pt;}
.y94{bottom:267.946559pt;}
.yaf{bottom:271.786558pt;}
.ycc{bottom:274.826557pt;}
.y7f{bottom:275.946556pt;}
.yed{bottom:276.266556pt;}
.y151{bottom:280.266555pt;}
.y104{bottom:280.426554pt;}
.y11b{bottom:283.786553pt;}
.y25{bottom:284.426553pt;}
.y93{bottom:285.706552pt;}
.yfa{bottom:286.666552pt;}
.yae{bottom:289.546551pt;}
.ycb{bottom:292.586550pt;}
.y7e{bottom:293.866549pt;}
.yec{bottom:294.026549pt;}
.y150{bottom:298.026547pt;}
.y103{bottom:299.306547pt;}
.y11a{bottom:302.666546pt;}
.y92{bottom:303.466545pt;}
.yf9{bottom:305.546544pt;}
.yad{bottom:307.306544pt;}
.yca{bottom:310.346543pt;}
.y7d{bottom:311.626542pt;}
.y24{bottom:311.786542pt;}
.y14f{bottom:315.786540pt;}
.y102{bottom:318.186539pt;}
.y91{bottom:321.226538pt;}
.y119{bottom:321.546538pt;}
.yf8{bottom:324.426537pt;}
.yac{bottom:325.066537pt;}
.yc9{bottom:328.106535pt;}
.y7c{bottom:329.386535pt;}
.yeb{bottom:329.546535pt;}
.y14e{bottom:333.546533pt;}
.y101{bottom:337.066532pt;}
.y23{bottom:338.346531pt;}
.y118{bottom:340.426530pt;}
.yab{bottom:342.986529pt;}
.yf7{bottom:343.306529pt;}
.y90{bottom:343.626529pt;}
.yc8{bottom:345.866528pt;}
.y7b{bottom:347.146528pt;}
.yea{bottom:347.306528pt;}
.y15b{bottom:347.626528pt;}
.y14d{bottom:351.306526pt;}
.y22{bottom:356.106524pt;}
.y100{bottom:358.506523pt;}
.y117{bottom:359.306523pt;}
.yaa{bottom:360.746522pt;}
.yf6{bottom:362.186522pt;}
.yc7{bottom:363.626521pt;}
.y7a{bottom:364.906521pt;}
.ye9{bottom:365.066521pt;}
.y14c{bottom:369.066519pt;}
.y8f{bottom:370.986518pt;}
.y21{bottom:375.306517pt;}
.y116{bottom:378.026515pt;}
.ya9{bottom:378.506515pt;}
.yf5{bottom:381.066514pt;}
.yc6{bottom:381.386514pt;}
.y79{bottom:382.666514pt;}
.ye8{bottom:382.826514pt;}
.y8e{bottom:386.346512pt;}
.y14b{bottom:386.826512pt;}
.yff{bottom:387.306512pt;}
.y20{bottom:394.506509pt;}
.ya8{bottom:396.266508pt;}
.y115{bottom:396.906508pt;}
.yc5{bottom:399.146507pt;}
.yf4{bottom:399.946507pt;}
.y78{bottom:400.426506pt;}
.ye7{bottom:400.586506pt;}
.y14a{bottom:404.586505pt;}
.y1f{bottom:414.026501pt;}
.y114{bottom:415.786500pt;}
.yc4{bottom:416.906500pt;}
.y77{bottom:418.186499pt;}
.ye6{bottom:418.346499pt;}
.yf3{bottom:419.466499pt;}
.y149{bottom:422.346498pt;}
.ya7{bottom:431.786494pt;}
.y1e{bottom:433.546493pt;}
.yc3{bottom:434.666493pt;}
.y76{bottom:435.946492pt;}
.y55{bottom:436.906492pt;}
.y148{bottom:440.266491pt;}
.ye5{bottom:444.746489pt;}
.ya6{bottom:449.546487pt;}
.y54{bottom:452.106486pt;}
.yc2{bottom:452.426486pt;}
.y1d{bottom:453.066485pt;}
.y113{bottom:453.546485pt;}
.y75{bottom:453.706485pt;}
.y147{bottom:458.026483pt;}
.y53{bottom:467.146480pt;}
.ya5{bottom:467.306480pt;}
.yc1{bottom:470.186479pt;}
.y74{bottom:471.466478pt;}
.y112{bottom:472.426478pt;}
.y1c{bottom:472.586478pt;}
.y146{bottom:475.786476pt;}
.y52{bottom:482.346474pt;}
.ya4{bottom:485.066473pt;}
.yc0{bottom:488.106471pt;}
.y73{bottom:489.386471pt;}
.y111{bottom:491.306470pt;}
.y1b{bottom:492.266470pt;}
.y145{bottom:493.546469pt;}
.y51{bottom:497.546468pt;}
.ya3{bottom:502.826466pt;}
.ybf{bottom:505.866464pt;}
.y72{bottom:507.146464pt;}
.y110{bottom:510.186463pt;}
.y144{bottom:511.306462pt;}
.y1a{bottom:511.786462pt;}
.y50{bottom:512.746462pt;}
.ya2{bottom:520.586458pt;}
.ybe{bottom:523.626457pt;}
.y71{bottom:524.906457pt;}
.y4f{bottom:527.946455pt;}
.y10f{bottom:529.066455pt;}
.y19{bottom:531.306454pt;}
.ya1{bottom:538.346451pt;}
.ybd{bottom:541.386450pt;}
.y4e{bottom:542.026450pt;}
.y70{bottom:542.666450pt;}
.y143{bottom:546.826448pt;}
.ye4{bottom:547.306448pt;}
.y18{bottom:550.826446pt;}
.y10e{bottom:554.186445pt;}
.ya0{bottom:556.266444pt;}
.y4d{bottom:556.426444pt;}
.y6f{bottom:560.426442pt;}
.y142{bottom:564.586441pt;}
.ybc{bottom:567.786440pt;}
.y17{bottom:570.346439pt;}
.y4c{bottom:572.266438pt;}
.y9f{bottom:574.026437pt;}
.y6e{bottom:578.186435pt;}
.y10d{bottom:579.306435pt;}
.y141{bottom:582.346434pt;}
.y4b{bottom:587.786432pt;}
.ye3{bottom:588.426431pt;}
.y16{bottom:590.026431pt;}
.y9e{bottom:591.786430pt;}
.y137{bottom:595.946428pt;}
.y140{bottom:600.106427pt;}
.y6d{bottom:600.586426pt;}
.y4a{bottom:601.866426pt;}
.y10c{bottom:603.306425pt;}
.ye2{bottom:607.306424pt;}
.y15{bottom:609.546423pt;}
.y136{bottom:613.706421pt;}
.y49{bottom:616.266420pt;}
.y8d{bottom:618.346419pt;}
.y13f{bottom:622.506418pt;}
.ye1{bottom:626.186416pt;}
.y6c{bottom:627.306416pt;}
.y14{bottom:629.066415pt;}
.y135{bottom:631.466414pt;}
.y48{bottom:632.106414pt;}
.y6b{bottom:645.066409pt;}
.y47{bottom:647.466408pt;}
.y13{bottom:648.586407pt;}
.y134{bottom:649.226407pt;}
.y46{bottom:661.546402pt;}
.y6a{bottom:662.826402pt;}
.ye0{bottom:663.946401pt;}
.y133{bottom:666.986400pt;}
.y12{bottom:668.106399pt;}
.y45{bottom:675.626396pt;}
.y69{bottom:680.586394pt;}
.ydf{bottom:682.666394pt;}
.y132{bottom:684.746393pt;}
.y11{bottom:687.626392pt;}
.y44{bottom:689.706391pt;}
.y68{bottom:698.346387pt;}
.yde{bottom:701.546386pt;}
.y131{bottom:702.666386pt;}
.y43{bottom:703.786385pt;}
.y10{bottom:707.306384pt;}
.y67{bottom:716.106380pt;}
.y42{bottom:717.866380pt;}
.ydd{bottom:720.426378pt;}
.yf{bottom:726.826376pt;}
.y41{bottom:732.266374pt;}
.y66{bottom:733.866373pt;}
.y130{bottom:738.186371pt;}
.ydc{bottom:739.306371pt;}
.ye{bottom:746.346368pt;}
.y40{bottom:748.106367pt;}
.y65{bottom:751.626366pt;}
.y12f{bottom:755.946364pt;}
.ydb{bottom:758.186363pt;}
.y3f{bottom:763.626361pt;}
.yd{bottom:765.866360pt;}
.y64{bottom:769.546359pt;}
.y12e{bottom:773.706357pt;}
.y139{bottom:774.186357pt;}
.yda{bottom:777.066356pt;}
.y3e{bottom:777.706356pt;}
.yc{bottom:785.386353pt;}
.y63{bottom:787.306352pt;}
.y12d{bottom:791.466350pt;}
.y3d{bottom:791.786350pt;}
.yd9{bottom:795.946348pt;}
.yb{bottom:805.066345pt;}
.y3c{bottom:805.866344pt;}
.y12c{bottom:809.226343pt;}
.yd8{bottom:814.826341pt;}
.y3b{bottom:820.106339pt;}
.y62{bottom:822.826338pt;}
.ya{bottom:824.586337pt;}
.y12b{bottom:826.986336pt;}
.yd7{bottom:833.706333pt;}
.y3a{bottom:835.946332pt;}
.y61{bottom:840.586330pt;}
.y9{bottom:843.946329pt;}
.y12a{bottom:844.746329pt;}
.y39{bottom:851.786326pt;}
.yd6{bottom:852.586326pt;}
.y60{bottom:858.346323pt;}
.y8{bottom:861.066322pt;}
.y129{bottom:862.506322pt;}
.y38{bottom:867.626320pt;}
.yd5{bottom:871.466318pt;}
.y5f{bottom:876.106316pt;}
.y128{bottom:880.266315pt;}
.y37{bottom:882.826314pt;}
.yd4{bottom:892.906310pt;}
.y7{bottom:893.066309pt;}
.y5e{bottom:893.866309pt;}
.y36{bottom:895.786308pt;}
.y127{bottom:898.026307pt;}
.y35{bottom:911.626302pt;}
.y126{bottom:915.946300pt;}
.ybb{bottom:920.426298pt;}
.y6{bottom:925.066297pt;}
.y34{bottom:927.466296pt;}
.y5d{bottom:929.386295pt;}
.y125{bottom:938.186291pt;}
.y33{bottom:943.306289pt;}
.y5c{bottom:947.146288pt;}
.y5{bottom:957.066284pt;}
.y32{bottom:959.146283pt;}
.y5b{bottom:964.906281pt;}
.y31{bottom:974.346277pt;}
.y5a{bottom:982.826274pt;}
.y2f{bottom:984.107200pt;}
.y4{bottom:989.066271pt;}
.y59{bottom:1000.586266pt;}
.y1{bottom:1044.906249pt;}
.y57{bottom:1059.146243pt;}
.y56{bottom:1073.386237pt;}
.h1{height:0.000000pt;}
.h1a{height:8.967496pt;}
.h18{height:12.320000pt;}
.hc{height:15.680000pt;}
.h1c{height:22.154991pt;}
.hb{height:26.374989pt;}
.h3{height:29.453113pt;}
.h2{height:29.652488pt;}
.h10{height:33.290612pt;}
.h13{height:33.562799pt;}
.h11{height:34.253736pt;}
.h12{height:35.342486pt;}
.h17{height:36.546545pt;}
.hd{height:37.265610pt;}
.h19{height:37.874545pt;}
.hf{height:38.085922pt;}
.he{height:38.343735pt;}
.h15{height:39.562484pt;}
.h1b{height:40.509424pt;}
.h5{height:42.433733pt;}
.h8{height:43.630063pt;}
.ha{height:43.782482pt;}
.h14{height:44.031982pt;}
.h9{height:45.712482pt;}
.h7{height:46.086232pt;}
.h16{height:46.718731pt;}
.h6{height:47.034981pt;}
.h4{height:83.656529pt;}
.h0{height:1122.666667pt;}
.w8{width:0.160000pt;}
.w2{width:3.040000pt;}
.w5{width:5.440000pt;}
.w7{width:6.560000pt;}
.w1{width:20.800000pt;}
.w3{width:31.040000pt;}
.w4{width:50.560000pt;}
.w6{width:56.160000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:50.080000pt;}
.x9{left:70.880000pt;}
.xa{left:73.920000pt;}
.xb{left:104.960000pt;}
.xc{left:108.000000pt;}
.x5{left:119.839762pt;}
.x3b{left:122.399951pt;}
.x12{left:148.159941pt;}
.x14{left:157.599937pt;}
.xd{left:158.560000pt;}
.xe{left:164.000000pt;}
.x19{left:166.879933pt;}
.x3c{left:174.879930pt;}
.x17{left:176.639833pt;}
.x3d{left:181.599927pt;}
.x2f{left:211.199916pt;}
.xf{left:220.160000pt;}
.x2a{left:225.759492pt;}
.x39{left:227.679909pt;}
.x20{left:230.559669pt;}
.x21{left:236.639905pt;}
.x4{left:242.079903pt;}
.x24{left:244.319902pt;}
.x6{left:245.919902pt;}
.x7{left:253.439899pt;}
.x2{left:256.639897pt;}
.x1e{left:258.879896pt;}
.x28{left:260.959186pt;}
.x23{left:265.119894pt;}
.x11{left:269.759899pt;}
.x1d{left:271.039484pt;}
.x1b{left:280.319888pt;}
.x1c{left:282.239887pt;}
.x1f{left:283.999294pt;}
.x2b{left:288.479885pt;}
.x10{left:289.919884pt;}
.x27{left:292.479883pt;}
.x1a{left:302.559879pt;}
.x25{left:307.679877pt;}
.x3a{left:311.839875pt;}
.x16{left:316.479873pt;}
.x13{left:318.719873pt;}
.x29{left:336.159866pt;}
.x32{left:337.439865pt;}
.x26{left:338.400277pt;}
.x31{left:340.319864pt;}
.x2c{left:341.440374pt;}
.x38{left:344.799353pt;}
.x34{left:346.239862pt;}
.x37{left:352.160161pt;}
.x36{left:353.759858pt;}
.x2e{left:355.199858pt;}
.x30{left:362.560434pt;}
.x35{left:363.999549pt;}
.x33{left:368.479940pt;}
.x22{left:380.639848pt;}
.x2d{left:395.199842pt;}
.x3{left:396.159842pt;}
.x18{left:406.560000pt;}
.x15{left:650.879740pt;}
.x1{left:674.399730pt;}
}




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