
    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_efe44562f0104aa3008e7c36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_aead079f0446e8a9ef074816.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_67ae7f16e67bd3040ecdbc3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab8125e7ca98d03b3155fc54.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898926;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_5ea8ec29fcf93101ddea1593.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.715820;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_9a6ea1e72b0bc71f431f8c75.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.677246;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_dc6d96f33374b9d2524ab807.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_14c912937e5207c3f0d1f6b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_831274d2a584c6cc83bae67f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fddc37557b5166d573ae7f95.woff2')format("woff");}.ffa{font-family:ffa;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;}
.mb{transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249965,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.000000,-0.275700,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.275700,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.275700,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.276068,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.276068,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.276068,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186715,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m1{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);}
.m0{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);}
.m4{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);}
.m5{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);}
.m3{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m2{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.263815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263815,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.275528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275528,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276068,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.276133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276133,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.279153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279153,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-25.199990px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:29.519988px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010641px;}
.ls3{letter-spacing:0.033680px;}
.ls4{letter-spacing:0.233784px;}
.ls2{letter-spacing:0.602353px;}
.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;}
}
.wsc{word-spacing:-107.999957px;}
.ws4{word-spacing:-55.943978px;}
.ws3{word-spacing:-17.999993px;}
.ws7{word-spacing:-17.975993px;}
.ws1{word-spacing:-14.939994px;}
.ws5{word-spacing:-12.059995px;}
.wsa{word-spacing:-11.485777px;}
.ws12{word-spacing:-10.686738px;}
.ws8{word-spacing:-10.486436px;}
.ws0{word-spacing:-9.719996px;}
.ws14{word-spacing:-8.892305px;}
.wsf{word-spacing:-6.225974px;}
.wse{word-spacing:-4.445752px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:22.523491px;}
.ws11{word-spacing:30.972486px;}
.ws10{word-spacing:31.625781px;}
.wsb{word-spacing:82.198911px;}
.ws13{word-spacing:95.872478px;}
.ws6{word-spacing:293.632681px;}
.ws9{word-spacing:587.296469px;}
._18{margin-left:-346.911173px;}
._19{margin-left:-274.618611px;}
._1b{margin-left:-223.174807px;}
._25{margin-left:-214.559086px;}
._1a{margin-left:-200.414241px;}
._3{margin-left:-2.427508px;}
._0{margin-left:-1.168251px;}
._4{width:1.011422px;}
._2{width:2.023383px;}
._12{width:3.038452px;}
._5{width:4.901210px;}
._6{width:6.032371px;}
._7{width:7.257377px;}
._9{width:9.213150px;}
._13{width:10.923282px;}
._11{width:12.291972px;}
._8{width:13.794395px;}
._17{width:14.963198px;}
._e{width:16.021786px;}
._24{width:17.599221px;}
._10{width:19.406445px;}
._16{width:20.406858px;}
._26{width:21.836357px;}
._27{width:23.176388px;}
._14{width:24.544119px;}
._a{width:25.988386px;}
._b{width:27.220519px;}
._c{width:29.477186px;}
._d{width:30.677360px;}
._1e{width:32.365920px;}
._1c{width:37.310887px;}
._1d{width:38.567579px;}
._15{width:39.832367px;}
._28{width:44.573461px;}
._f{width:56.090351px;}
._22{width:70.065015px;}
._21{width:81.386101px;}
._20{width:90.957952px;}
._1f{width:104.486276px;}
._1{width:200.776147px;}
._23{width:202.199666px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fsf{font-size:15.991914px;}
.fs10{font-size:22.395591px;}
.fs13{font-size:31.986707px;}
.fs14{font-size:32.037107px;}
.fsd{font-size:33.803266px;}
.fs6{font-size:35.999986px;}
.fs11{font-size:38.441505px;}
.fs3{font-size:38.879984px;}
.fs12{font-size:40.452464px;}
.fsc{font-size:41.315743px;}
.fsb{font-size:41.945743px;}
.fs5{font-size:48.239981px;}
.fs7{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fsa{font-size:71.903971px;}
.fs4{font-size:71.999971px;}
.fs2{font-size:84.239966px;}
.fs9{font-size:94.938562px;}
.fs8{font-size:131.759947px;}
.fse{font-size:215.999914px;}
.yb2{bottom:-3.420805px;}
.yb1{bottom:-3.060806px;}
.y0{bottom:0.000000px;}
.y100{bottom:2.338958px;}
.y97{bottom:2.339153px;}
.y76{bottom:3.959287px;}
.y72{bottom:3.959297px;}
.y54{bottom:10.259056px;}
.y36{bottom:57.900277px;}
.y51{bottom:109.740256px;}
.ycf{bottom:113.519955px;}
.y7b{bottom:115.680254px;}
.y35{bottom:124.139950px;}
.y50{bottom:125.220250px;}
.y4f{bottom:131.160248px;}
.yce{bottom:134.219946px;}
.yaf{bottom:140.879944px;}
.y4e{bottom:141.959943px;}
.y34{bottom:144.839942px;}
.ycd{bottom:154.919938px;}
.yae{bottom:156.359937px;}
.y33{bottom:165.539934px;}
.y7a{bottom:169.139932px;}
.yad{bottom:171.839931px;}
.ycc{bottom:175.619930px;}
.yac{bottom:177.779929px;}
.y32{bottom:186.239926px;}
.yab{bottom:187.319925px;}
.ycb{bottom:196.319921px;}
.y79{bottom:196.499921px;}
.y78{bottom:198.839920px;}
.yaa{bottom:202.979919px;}
.y4d{bottom:203.519919px;}
.y31{bottom:206.759917px;}
.ya9{bottom:218.459913px;}
.y4c{bottom:224.219910px;}
.ya8{bottom:224.399910px;}
.yca{bottom:226.019910px;}
.y30{bottom:227.459909px;}
.y77{bottom:228.539909px;}
.ya7{bottom:233.939906px;}
.y4b{bottom:244.919902px;}
.yc9{bottom:246.719901px;}
.ya6{bottom:249.419900px;}
.y71{bottom:253.740600px;}
.ya5{bottom:255.359898px;}
.y2f{bottom:257.159897px;}
.y4a{bottom:265.619894px;}
.ya4{bottom:266.159894px;}
.y74{bottom:267.239893px;}
.yc8{bottom:267.419893px;}
.y70{bottom:271.739891px;}
.y2e{bottom:277.859889px;}
.y75{bottom:279.120600px;}
.y73{bottom:283.079887px;}
.y48{bottom:286.319885px;}
.yc7{bottom:288.119885px;}
.y49{bottom:294.599882px;}
.y2d{bottom:298.559881px;}
.ya3{bottom:304.679878px;}
.y47{bottom:307.019877px;}
.yc6{bottom:308.819876px;}
.y6f{bottom:311.339875px;}
.y6e{bottom:313.679875px;}
.ya2{bottom:318.179873px;}
.y2c{bottom:319.259872px;}
.yc5{bottom:329.519868px;}
.y6d{bottom:334.379866px;}
.y46{bottom:336.359865px;}
.y2b{bottom:339.959864px;}
.ya1{bottom:342.479863px;}
.y9f{bottom:347.339861px;}
.yc4{bottom:350.219860px;}
.y6c{bottom:352.739859px;}
.y6b{bottom:355.079858px;}
.y2a{bottom:360.659856px;}
.y45{bottom:366.059854px;}
.y9e{bottom:367.139853px;}
.yc3{bottom:370.739852px;}
.y29{bottom:381.359847px;}
.y98{bottom:382.259847px;}
.y6a{bottom:382.439847px;}
.y69{bottom:384.779846px;}
.y12a{bottom:386.399845px;}
.y44{bottom:387.119845px;}
.yc2{bottom:391.439843px;}
.y28{bottom:402.059839px;}
.y129{bottom:407.099837px;}
.y68{bottom:414.479834px;}
.y43{bottom:416.819833px;}
.y99{bottom:419.879832px;}
.yc1{bottom:421.139832px;}
.y128{bottom:427.619829px;}
.y27{bottom:431.759827px;}
.y67{bottom:435.179826px;}
.y42{bottom:437.519825px;}
.yc0{bottom:441.839823px;}
.y127{bottom:448.319821px;}
.ya0{bottom:449.759820px;}
.y26{bottom:452.459819px;}
.y66{bottom:455.879818px;}
.y9a{bottom:457.319817px;}
.y41{bottom:458.219817px;}
.ybf{bottom:462.539815px;}
.y126{bottom:469.019812px;}
.y25{bottom:473.159811px;}
.y40{bottom:478.919808px;}
.ybe{bottom:483.239807px;}
.y65{bottom:485.579806px;}
.y125{bottom:489.719804px;}
.y9b{bottom:494.939802px;}
.y3f{bottom:499.619800px;}
.y24{bottom:502.499799px;}
.ybd{bottom:503.939798px;}
.y64{bottom:506.279797px;}
.y124{bottom:510.419796px;}
.yb0{bottom:516.900600px;}
.y3e{bottom:520.319792px;}
.ybc{bottom:524.639790px;}
.y123{bottom:531.119788px;}
.y23{bottom:532.559787px;}
.y63{bottom:535.979786px;}
.y3d{bottom:541.019784px;}
.y122{bottom:551.819779px;}
.ybb{bottom:553.979778px;}
.y62{bottom:556.679777px;}
.y3c{bottom:561.719775px;}
.y22{bottom:562.259775px;}
.y9c{bottom:569.999772px;}
.y121{bottom:572.519771px;}
.y3b{bottom:582.419767px;}
.y21{bottom:582.959767px;}
.yba{bottom:584.039766px;}
.y61{bottom:586.019766px;}
.y120{bottom:593.219763px;}
.y20{bottom:603.659759px;}
.y9d{bottom:607.619757px;}
.y3a{bottom:612.119755px;}
.yb9{bottom:613.739755px;}
.y11f{bottom:613.919754px;}
.y60{bottom:616.079754px;}
.y96{bottom:616.260600px;}
.y1f{bottom:624.359750px;}
.y95{bottom:632.819747px;}
.yb8{bottom:634.439746px;}
.y11e{bottom:634.619746px;}
.y39{bottom:641.099744px;}
.y1e{bottom:645.059742px;}
.y5f{bottom:645.779742px;}
.yb7{bottom:655.139738px;}
.y11d{bottom:655.319738px;}
.y38{bottom:663.599735px;}
.y1d{bottom:665.759734px;}
.y5d{bottom:666.479733px;}
.y94{bottom:669.719732px;}
.y5e{bottom:674.759730px;}
.yb6{bottom:675.839730px;}
.y11c{bottom:676.019730px;}
.y1c{bottom:686.459725px;}
.y5b{bottom:687.179725px;}
.y93{bottom:690.419724px;}
.y5c{bottom:695.459722px;}
.yb5{bottom:696.539721px;}
.y11b{bottom:696.719721px;}
.y1b{bottom:707.159717px;}
.y5a{bottom:707.879717px;}
.y92{bottom:711.119716px;}
.yb4{bottom:717.239713px;}
.y11a{bottom:717.419713px;}
.y1a{bottom:727.859709px;}
.y59{bottom:728.579709px;}
.y91{bottom:731.819707px;}
.yb3{bottom:737.939705px;}
.y119{bottom:738.119705px;}
.y19{bottom:748.559701px;}
.y90{bottom:752.519699px;}
.y58{bottom:757.919697px;}
.y118{bottom:758.819696px;}
.y18{bottom:769.259692px;}
.y102{bottom:773.219691px;}
.y57{bottom:778.979688px;}
.y117{bottom:779.519688px;}
.y8e{bottom:782.219687px;}
.y101{bottom:786.179686px;}
.y17{bottom:789.959684px;}
.y8f{bottom:790.499684px;}
.y116{bottom:800.219680px;}
.y8d{bottom:802.919679px;}
.y56{bottom:807.959677px;}
.y16{bottom:819.299672px;}
.y115{bottom:820.919672px;}
.y8c{bottom:823.619671px;}
.y55{bottom:830.459668px;}
.y103{bottom:832.979667px;}
.y15{bottom:839.639664px;}
.y114{bottom:841.619663px;}
.y8b{bottom:844.319662px;}
.y53{bottom:850.260600px;}
.y14{bottom:856.919657px;}
.y52{bottom:860.519656px;}
.y113{bottom:862.319655px;}
.yf2{bottom:864.479654px;}
.y8a{bottom:865.019654px;}
.y13{bottom:874.199650px;}
.yd1{bottom:880.679648px;}
.y12{bottom:881.039648px;}
.y112{bottom:883.019647px;}
.y104{bottom:884.099646px;}
.y89{bottom:885.719646px;}
.yd0{bottom:887.159645px;}
.y11{bottom:891.479643px;}
.yd2{bottom:891.839643px;}
.yf3{bottom:897.419641px;}
.y10{bottom:898.319641px;}
.ydd{bottom:902.819639px;}
.y111{bottom:903.719639px;}
.y88{bottom:906.419637px;}
.yf{bottom:908.579637px;}
.y37{bottom:913.619635px;}
.yf4{bottom:913.979634px;}
.ye{bottom:915.419634px;}
.yd3{bottom:919.559632px;}
.y110{bottom:924.419630px;}
.yd{bottom:925.859630px;}
.y87{bottom:927.119629px;}
.ye0{bottom:928.739629px;}
.yf5{bottom:930.359628px;}
.yde{bottom:932.159627px;}
.yc{bottom:932.699627px;}
.y105{bottom:935.219626px;}
.ya{bottom:942.779623px;}
.y10f{bottom:945.119622px;}
.ye3{bottom:945.839622px;}
.ydf{bottom:946.379621px;}
.yf6{bottom:946.919621px;}
.yd4{bottom:947.099621px;}
.y86{bottom:947.819621px;}
.yb{bottom:949.619620px;}
.ye1{bottom:950.879620px;}
.y10a{bottom:952.499619px;}
.yed{bottom:958.799616px;}
.y9{bottom:961.319615px;}
.yf7{bottom:963.479615px;}
.ye2{bottom:964.379614px;}
.y10e{bottom:965.819614px;}
.yec{bottom:968.879612px;}
.yea{bottom:969.599612px;}
.ye7{bottom:969.959612px;}
.yd8{bottom:970.319612px;}
.yee{bottom:971.579611px;}
.ye5{bottom:973.379611px;}
.yd5{bottom:974.819610px;}
.y85{bottom:977.159609px;}
.ye8{bottom:978.239609px;}
.yf8{bottom:979.859608px;}
.ye4{bottom:982.739607px;}
.y8{bottom:985.439606px;}
.y106{bottom:986.159606px;}
.y10d{bottom:986.519605px;}
.ye6{bottom:986.699605px;}
.yeb{bottom:988.139605px;}
.yf9{bottom:996.419601px;}
.ye9{bottom:998.399601px;}
.yd6{bottom:1002.359599px;}
.y10c{bottom:1006.859597px;}
.y84{bottom:1007.219597px;}
.y7{bottom:1009.559596px;}
.yfa{bottom:1012.799595px;}
.yef{bottom:1025.759590px;}
.y10b{bottom:1027.919589px;}
.yfb{bottom:1029.359588px;}
.yd7{bottom:1030.079588px;}
.y6{bottom:1033.859586px;}
.yf1{bottom:1034.219586px;}
.y83{bottom:1036.919585px;}
.y107{bottom:1037.279585px;}
.yf0{bottom:1037.999585px;}
.yfc{bottom:1045.739582px;}
.y5{bottom:1056.899577px;}
.y81{bottom:1057.619577px;}
.yfd{bottom:1062.299575px;}
.y82{bottom:1065.899574px;}
.ydc{bottom:1073.999570px;}
.y4{bottom:1074.179570px;}
.y80{bottom:1078.319569px;}
.yfe{bottom:1078.679569px;}
.ydb{bottom:1080.119568px;}
.yda{bottom:1086.419565px;}
.y108{bottom:1088.399565px;}
.y3{bottom:1091.459563px;}
.yd9{bottom:1092.719563px;}
.y7e{bottom:1099.019560px;}
.yff{bottom:1102.440600px;}
.y7f{bottom:1107.299557px;}
.y7d{bottom:1119.719552px;}
.y109{bottom:1139.519544px;}
.y7c{bottom:1140.419544px;}
.y2{bottom:1163.099535px;}
.y1{bottom:1184.159526px;}
.h24{height:11.520000px;}
.h1c{height:11.880000px;}
.h20{height:16.679066px;}
.h14{height:20.160000px;}
.h19{height:21.060000px;}
.h21{height:23.357902px;}
.h26{height:33.361136px;}
.h27{height:33.413702px;}
.h1d{height:35.255751px;}
.hd{height:35.332017px;}
.h6{height:38.158578px;}
.h5{height:39.183734px;}
.h23{height:40.093288px;}
.h1e{height:40.140000px;}
.h17{height:41.146972px;}
.h25{height:42.190656px;}
.h1b{height:43.091029px;}
.h10{height:46.260000px;}
.hb{height:47.344903px;}
.h22{height:52.877890px;}
.he{height:52.998026px;}
.h2{height:58.651148px;}
.h4{height:60.226851px;}
.h1{height:64.978568px;}
.ha{height:65.010911px;}
.h18{height:66.602458px;}
.h16{height:70.534706px;}
.h15{height:70.569816px;}
.h1a{height:70.571016px;}
.h8{height:70.628878px;}
.h9{height:70.664034px;}
.hc{height:70.665234px;}
.h7{height:72.562471px;}
.h3{height:84.898091px;}
.h13{height:87.938697px;}
.h11{height:94.316447px;}
.hf{height:95.217149px;}
.h12{height:129.315183px;}
.h1f{height:143.964786px;}
.h0{height:1263.000000px;}
.w2{width:9.000000px;}
.w4{width:10.980000px;}
.w3{width:14.040000px;}
.w1{width:27.360000px;}
.w6{width:51.840000px;}
.w7{width:123.840000px;}
.w5{width:125.820000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:106.379957px;}
.xa{left:111.239956px;}
.xb{left:117.719953px;}
.x48{left:121.139952px;}
.x47{left:136.079946px;}
.x4c{left:147.779941px;}
.x4b{left:151.019942px;}
.x4a{left:154.619938px;}
.x13{left:159.479719px;}
.x1c{left:161.459935px;}
.x4e{left:163.619922px;}
.x4d{left:165.779934px;}
.x1d{left:167.579933px;}
.x1a{left:171.179932px;}
.x4f{left:178.379985px;}
.x1e{left:181.079928px;}
.x50{left:182.700001px;}
.x11{left:184.859926px;}
.x1f{left:187.199925px;}
.x51{left:198.000087px;}
.x29{left:200.699920px;}
.x52{left:205.560106px;}
.x16{left:207.179917px;}
.x2a{left:220.139912px;}
.x2{left:222.479911px;}
.x44{left:224.459910px;}
.x53{left:228.600225px;}
.x41{left:230.759898px;}
.x17{left:236.520000px;}
.x3{left:238.679905px;}
.x49{left:242.459704px;}
.x38{left:244.259902px;}
.x42{left:248.759939px;}
.x45{left:251.459899px;}
.x54{left:259.380409px;}
.x18{left:263.879894px;}
.x55{left:266.580436px;}
.x56{left:274.140455px;}
.x57{left:281.880488px;}
.x58{left:289.440508px;}
.x59{left:309.960575px;}
.x5b{left:315.900593px;}
.x5a{left:318.060601px;}
.x39{left:323.999870px;}
.x3a{left:330.119868px;}
.x5c{left:333.360654px;}
.x4{left:336.959865px;}
.x5d{left:338.400672px;}
.x5{left:341.819863px;}
.x61{left:360.899990px;}
.x33{left:372.779239px;}
.x40{left:383.940000px;}
.x3f{left:385.739846px;}
.x60{left:387.719845px;}
.x20{left:395.279846px;}
.x43{left:411.119803px;}
.x34{left:425.699830px;}
.x35{left:429.119828px;}
.x2f{left:432.359895px;}
.xc{left:436.499825px;}
.x6{left:437.759825px;}
.xd{left:441.899823px;}
.x1b{left:446.399821px;}
.x7{left:449.999820px;}
.xe{left:451.079820px;}
.x32{left:464.759814px;}
.x31{left:479.700000px;}
.x21{left:482.039807px;}
.x2d{left:484.560000px;}
.x22{left:488.159805px;}
.x2e{left:490.679804px;}
.x36{left:496.979801px;}
.x37{left:500.399800px;}
.x27{left:507.059797px;}
.x2c{left:512.099873px;}
.x23{left:515.159794px;}
.x28{left:516.419793px;}
.x24{left:521.279791px;}
.x30{left:530.639788px;}
.x2b{left:545.219782px;}
.x25{left:548.279781px;}
.x26{left:551.699779px;}
.x8{left:554.759778px;}
.x9{left:559.619776px;}
.x62{left:626.039750px;}
.x3b{left:646.019742px;}
.x5f{left:649.260000px;}
.x3c{left:652.139739px;}
.x19{left:661.679735px;}
.x63{left:667.979733px;}
.x46{left:685.439726px;}
.x10{left:694.079722px;}
.xf{left:695.159722px;}
.x12{left:707.939717px;}
.x5e{left:720.359712px;}
.x14{left:749.159700px;}
.x3d{left:754.199698px;}
.x15{left:755.279698px;}
.x3e{left:760.319696px;}
@media print{
.v1{vertical-align:-22.399991pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.239990pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009459pt;}
.ls3{letter-spacing:0.029938pt;}
.ls4{letter-spacing:0.207808pt;}
.ls2{letter-spacing:0.535425pt;}
.wsc{word-spacing:-95.999962pt;}
.ws4{word-spacing:-49.727980pt;}
.ws3{word-spacing:-15.999994pt;}
.ws7{word-spacing:-15.978660pt;}
.ws1{word-spacing:-13.279995pt;}
.ws5{word-spacing:-10.719996pt;}
.wsa{word-spacing:-10.209579pt;}
.ws12{word-spacing:-9.499323pt;}
.ws8{word-spacing:-9.321276pt;}
.ws0{word-spacing:-8.639997pt;}
.ws14{word-spacing:-7.904271pt;}
.wsf{word-spacing:-5.534199pt;}
.wse{word-spacing:-3.951780pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:20.020881pt;}
.ws11{word-spacing:27.531099pt;}
.ws10{word-spacing:28.111805pt;}
.wsb{word-spacing:73.065699pt;}
.ws13{word-spacing:85.219980pt;}
.ws6{word-spacing:261.006827pt;}
.ws9{word-spacing:522.041306pt;}
._18{margin-left:-308.365487pt;}
._19{margin-left:-244.105432pt;}
._1b{margin-left:-198.377606pt;}
._25{margin-left:-190.719188pt;}
._1a{margin-left:-178.145992pt;}
._3{margin-left:-2.157785pt;}
._0{margin-left:-1.038446pt;}
._4{width:0.899042pt;}
._2{width:1.798563pt;}
._12{width:2.700846pt;}
._5{width:4.356631pt;}
._6{width:5.362108pt;}
._7{width:6.451002pt;}
._9{width:8.189467pt;}
._13{width:9.709584pt;}
._11{width:10.926198pt;}
._8{width:12.261685pt;}
._17{width:13.300620pt;}
._e{width:14.241588pt;}
._24{width:15.643752pt;}
._10{width:17.250173pt;}
._16{width:18.139429pt;}
._26{width:19.410095pt;}
._27{width:20.601233pt;}
._14{width:21.816995pt;}
._a{width:23.100787pt;}
._b{width:24.196017pt;}
._c{width:26.201943pt;}
._d{width:27.268764pt;}
._1e{width:28.769707pt;}
._1c{width:33.165233pt;}
._1d{width:34.282292pt;}
._15{width:35.406548pt;}
._28{width:39.620854pt;}
._f{width:49.858090pt;}
._22{width:62.280013pt;}
._21{width:72.343201pt;}
._20{width:80.851512pt;}
._1f{width:92.876690pt;}
._1{width:178.467686pt;}
._23{width:179.733036pt;}
.fsf{font-size:14.215034pt;}
.fs10{font-size:19.907192pt;}
.fs13{font-size:28.432629pt;}
.fs14{font-size:28.477429pt;}
.fsd{font-size:30.047348pt;}
.fs6{font-size:31.999987pt;}
.fs11{font-size:34.170226pt;}
.fs3{font-size:34.559986pt;}
.fs12{font-size:35.957746pt;}
.fsc{font-size:36.725105pt;}
.fsb{font-size:37.285105pt;}
.fs5{font-size:42.879983pt;}
.fs7{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fsa{font-size:63.914641pt;}
.fs4{font-size:63.999974pt;}
.fs2{font-size:74.879970pt;}
.fs9{font-size:84.389833pt;}
.fs8{font-size:117.119953pt;}
.fse{font-size:191.999923pt;}
.yb2{bottom:-3.040716pt;}
.yb1{bottom:-2.720716pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:2.079074pt;}
.y97{bottom:2.079247pt;}
.y76{bottom:3.519366pt;}
.y72{bottom:3.519375pt;}
.y54{bottom:9.119161pt;}
.y36{bottom:51.466913pt;}
.y51{bottom:97.546894pt;}
.ycf{bottom:100.906626pt;}
.y7b{bottom:102.826892pt;}
.y35{bottom:110.346623pt;}
.y50{bottom:111.306889pt;}
.y4f{bottom:116.586887pt;}
.yce{bottom:119.306619pt;}
.yaf{bottom:125.226617pt;}
.y4e{bottom:126.186616pt;}
.y34{bottom:128.746615pt;}
.ycd{bottom:137.706612pt;}
.yae{bottom:138.986611pt;}
.y33{bottom:147.146608pt;}
.y7a{bottom:150.346607pt;}
.yad{bottom:152.746606pt;}
.ycc{bottom:156.106604pt;}
.yac{bottom:158.026603pt;}
.y32{bottom:165.546600pt;}
.yab{bottom:166.506600pt;}
.ycb{bottom:174.506597pt;}
.y79{bottom:174.666597pt;}
.y78{bottom:176.746596pt;}
.yaa{bottom:180.426594pt;}
.y4d{bottom:180.906594pt;}
.y31{bottom:183.786593pt;}
.ya9{bottom:194.186589pt;}
.y4c{bottom:199.306587pt;}
.ya8{bottom:199.466587pt;}
.yca{bottom:200.906586pt;}
.y30{bottom:202.186586pt;}
.y77{bottom:203.146585pt;}
.ya7{bottom:207.946583pt;}
.y4b{bottom:217.706580pt;}
.yc9{bottom:219.306579pt;}
.ya6{bottom:221.706578pt;}
.y71{bottom:225.547200pt;}
.ya5{bottom:226.986576pt;}
.y2f{bottom:228.586575pt;}
.y4a{bottom:236.106572pt;}
.ya4{bottom:236.586572pt;}
.y74{bottom:237.546572pt;}
.yc8{bottom:237.706572pt;}
.y70{bottom:241.546570pt;}
.y2e{bottom:246.986568pt;}
.y75{bottom:248.107200pt;}
.y73{bottom:251.626566pt;}
.y48{bottom:254.506565pt;}
.yc7{bottom:256.106564pt;}
.y49{bottom:261.866562pt;}
.y2d{bottom:265.386561pt;}
.ya3{bottom:270.826558pt;}
.y47{bottom:272.906558pt;}
.yc6{bottom:274.506557pt;}
.y6f{bottom:276.746556pt;}
.y6e{bottom:278.826555pt;}
.ya2{bottom:282.826554pt;}
.y2c{bottom:283.786553pt;}
.yc5{bottom:292.906550pt;}
.y6d{bottom:297.226548pt;}
.y46{bottom:298.986547pt;}
.y2b{bottom:302.186546pt;}
.ya1{bottom:304.426545pt;}
.y9f{bottom:308.746543pt;}
.yc4{bottom:311.306542pt;}
.y6c{bottom:313.546541pt;}
.y6b{bottom:315.626540pt;}
.y2a{bottom:320.586538pt;}
.y45{bottom:325.386537pt;}
.y9e{bottom:326.346536pt;}
.yc3{bottom:329.546535pt;}
.y29{bottom:338.986531pt;}
.y98{bottom:339.786531pt;}
.y6a{bottom:339.946531pt;}
.y69{bottom:342.026530pt;}
.y12a{bottom:343.466529pt;}
.y44{bottom:344.106529pt;}
.yc2{bottom:347.946527pt;}
.y28{bottom:357.386524pt;}
.y129{bottom:361.866522pt;}
.y68{bottom:368.426519pt;}
.y43{bottom:370.506518pt;}
.y99{bottom:373.226517pt;}
.yc1{bottom:374.346517pt;}
.y128{bottom:380.106515pt;}
.y27{bottom:383.786513pt;}
.y67{bottom:386.826512pt;}
.y42{bottom:388.906511pt;}
.yc0{bottom:392.746510pt;}
.y127{bottom:398.506507pt;}
.ya0{bottom:399.786507pt;}
.y26{bottom:402.186506pt;}
.y66{bottom:405.226505pt;}
.y9a{bottom:406.506504pt;}
.y41{bottom:407.306504pt;}
.ybf{bottom:411.146502pt;}
.y126{bottom:416.906500pt;}
.y25{bottom:420.586498pt;}
.y40{bottom:425.706496pt;}
.ybe{bottom:429.546495pt;}
.y65{bottom:431.626494pt;}
.y125{bottom:435.306493pt;}
.y9b{bottom:439.946491pt;}
.y3f{bottom:444.106489pt;}
.y24{bottom:446.666488pt;}
.ybd{bottom:447.946487pt;}
.y64{bottom:450.026487pt;}
.y124{bottom:453.706485pt;}
.yb0{bottom:459.467200pt;}
.y3e{bottom:462.506482pt;}
.ybc{bottom:466.346480pt;}
.y123{bottom:472.106478pt;}
.y23{bottom:473.386477pt;}
.y63{bottom:476.426476pt;}
.y3d{bottom:480.906474pt;}
.y122{bottom:490.506470pt;}
.ybb{bottom:492.426470pt;}
.y62{bottom:494.826469pt;}
.y3c{bottom:499.306467pt;}
.y22{bottom:499.786467pt;}
.y9c{bottom:506.666464pt;}
.y121{bottom:508.906463pt;}
.y3b{bottom:517.706460pt;}
.y21{bottom:518.186459pt;}
.yba{bottom:519.146459pt;}
.y61{bottom:520.906458pt;}
.y120{bottom:527.306456pt;}
.y20{bottom:536.586452pt;}
.y9d{bottom:540.106451pt;}
.y3a{bottom:544.106449pt;}
.yb9{bottom:545.546448pt;}
.y11f{bottom:545.706448pt;}
.y60{bottom:547.626448pt;}
.y96{bottom:547.787200pt;}
.y1f{bottom:554.986445pt;}
.y95{bottom:562.506442pt;}
.yb8{bottom:563.946441pt;}
.y11e{bottom:564.106441pt;}
.y39{bottom:569.866439pt;}
.y1e{bottom:573.386437pt;}
.y5f{bottom:574.026437pt;}
.yb7{bottom:582.346434pt;}
.y11d{bottom:582.506434pt;}
.y38{bottom:589.866431pt;}
.y1d{bottom:591.786430pt;}
.y5d{bottom:592.426430pt;}
.y94{bottom:595.306429pt;}
.y5e{bottom:599.786427pt;}
.yb6{bottom:600.746426pt;}
.y11c{bottom:600.906426pt;}
.y1c{bottom:610.186423pt;}
.y5b{bottom:610.826422pt;}
.y93{bottom:613.706421pt;}
.y5c{bottom:618.186419pt;}
.yb5{bottom:619.146419pt;}
.y11b{bottom:619.306419pt;}
.y1b{bottom:628.586415pt;}
.y5a{bottom:629.226415pt;}
.y92{bottom:632.106414pt;}
.yb4{bottom:637.546412pt;}
.y11a{bottom:637.706412pt;}
.y1a{bottom:646.986408pt;}
.y59{bottom:647.626408pt;}
.y91{bottom:650.506406pt;}
.yb3{bottom:655.946404pt;}
.y119{bottom:656.106404pt;}
.y19{bottom:665.386401pt;}
.y90{bottom:668.906399pt;}
.y58{bottom:673.706397pt;}
.y118{bottom:674.506397pt;}
.y18{bottom:683.786393pt;}
.y102{bottom:687.306392pt;}
.y57{bottom:692.426390pt;}
.y117{bottom:692.906390pt;}
.y8e{bottom:695.306389pt;}
.y101{bottom:698.826387pt;}
.y17{bottom:702.186386pt;}
.y8f{bottom:702.666386pt;}
.y116{bottom:711.306382pt;}
.y8d{bottom:713.706381pt;}
.y56{bottom:718.186379pt;}
.y16{bottom:728.266375pt;}
.y115{bottom:729.706375pt;}
.y8c{bottom:732.106374pt;}
.y55{bottom:738.186371pt;}
.y103{bottom:740.426370pt;}
.y15{bottom:746.346368pt;}
.y114{bottom:748.106367pt;}
.y8b{bottom:750.506366pt;}
.y53{bottom:755.787200pt;}
.y14{bottom:761.706362pt;}
.y52{bottom:764.906361pt;}
.y113{bottom:766.506360pt;}
.yf2{bottom:768.426359pt;}
.y8a{bottom:768.906359pt;}
.y13{bottom:777.066356pt;}
.yd1{bottom:782.826354pt;}
.y12{bottom:783.146353pt;}
.y112{bottom:784.906353pt;}
.y104{bottom:785.866352pt;}
.y89{bottom:787.306352pt;}
.yd0{bottom:788.586351pt;}
.y11{bottom:792.426350pt;}
.yd2{bottom:792.746350pt;}
.yf3{bottom:797.706348pt;}
.y10{bottom:798.506347pt;}
.ydd{bottom:802.506346pt;}
.y111{bottom:803.306345pt;}
.y88{bottom:805.706344pt;}
.yf{bottom:807.626344pt;}
.y37{bottom:812.106342pt;}
.yf4{bottom:812.426342pt;}
.ye{bottom:813.706341pt;}
.yd3{bottom:817.386340pt;}
.y110{bottom:821.706338pt;}
.yd{bottom:822.986337pt;}
.y87{bottom:824.106337pt;}
.ye0{bottom:825.546336pt;}
.yf5{bottom:826.986336pt;}
.yde{bottom:828.586335pt;}
.yc{bottom:829.066335pt;}
.y105{bottom:831.306334pt;}
.ya{bottom:838.026331pt;}
.y10f{bottom:840.106331pt;}
.ye3{bottom:840.746330pt;}
.ydf{bottom:841.226330pt;}
.yf6{bottom:841.706330pt;}
.yd4{bottom:841.866330pt;}
.y86{bottom:842.506330pt;}
.yb{bottom:844.106329pt;}
.ye1{bottom:845.226329pt;}
.y10a{bottom:846.666328pt;}
.yed{bottom:852.266326pt;}
.y9{bottom:854.506325pt;}
.yf7{bottom:856.426324pt;}
.ye2{bottom:857.226324pt;}
.y10e{bottom:858.506323pt;}
.yec{bottom:861.226322pt;}
.yea{bottom:861.866322pt;}
.ye7{bottom:862.186322pt;}
.yd8{bottom:862.506322pt;}
.yee{bottom:863.626321pt;}
.ye5{bottom:865.226321pt;}
.yd5{bottom:866.506320pt;}
.y85{bottom:868.586319pt;}
.ye8{bottom:869.546319pt;}
.yf8{bottom:870.986318pt;}
.ye4{bottom:873.546317pt;}
.y8{bottom:875.946316pt;}
.y106{bottom:876.586316pt;}
.y10d{bottom:876.906316pt;}
.ye6{bottom:877.066316pt;}
.yeb{bottom:878.346315pt;}
.yf9{bottom:885.706312pt;}
.ye9{bottom:887.466312pt;}
.yd6{bottom:890.986310pt;}
.y10c{bottom:894.986309pt;}
.y84{bottom:895.306309pt;}
.y7{bottom:897.386308pt;}
.yfa{bottom:900.266307pt;}
.yef{bottom:911.786302pt;}
.y10b{bottom:913.706301pt;}
.yfb{bottom:914.986301pt;}
.yd7{bottom:915.626300pt;}
.y6{bottom:918.986299pt;}
.yf1{bottom:919.306299pt;}
.y83{bottom:921.706298pt;}
.y107{bottom:922.026298pt;}
.yf0{bottom:922.666298pt;}
.yfc{bottom:929.546295pt;}
.y5{bottom:939.466291pt;}
.y81{bottom:940.106291pt;}
.yfd{bottom:944.266289pt;}
.y82{bottom:947.466288pt;}
.ydc{bottom:954.666285pt;}
.y4{bottom:954.826285pt;}
.y80{bottom:958.506283pt;}
.yfe{bottom:958.826283pt;}
.ydb{bottom:960.106283pt;}
.yda{bottom:965.706280pt;}
.y108{bottom:967.466280pt;}
.y3{bottom:970.186279pt;}
.yd9{bottom:971.306278pt;}
.y7e{bottom:976.906276pt;}
.yff{bottom:979.947200pt;}
.y7f{bottom:984.266273pt;}
.y7d{bottom:995.306269pt;}
.y109{bottom:1012.906262pt;}
.y7c{bottom:1013.706261pt;}
.y2{bottom:1033.866253pt;}
.y1{bottom:1052.586246pt;}
.h24{height:10.240000pt;}
.h1c{height:10.560000pt;}
.h20{height:14.825837pt;}
.h14{height:17.920000pt;}
.h19{height:18.720000pt;}
.h21{height:20.762579pt;}
.h26{height:29.654343pt;}
.h27{height:29.701068pt;}
.h1d{height:31.338445pt;}
.hd{height:31.406237pt;}
.h6{height:33.918736pt;}
.h5{height:34.829986pt;}
.h23{height:35.638478pt;}
.h1e{height:35.680000pt;}
.h17{height:36.575086pt;}
.h25{height:37.502805pt;}
.h1b{height:38.303137pt;}
.h10{height:41.120000pt;}
.hb{height:42.084358pt;}
.h22{height:47.002569pt;}
.he{height:47.109356pt;}
.h2{height:52.134354pt;}
.h4{height:53.534979pt;}
.h1{height:57.758727pt;}
.ha{height:57.787477pt;}
.h18{height:59.202185pt;}
.h16{height:62.697517pt;}
.h15{height:62.728725pt;}
.h1a{height:62.729792pt;}
.h8{height:62.781225pt;}
.h9{height:62.812475pt;}
.hc{height:62.813542pt;}
.h7{height:64.499974pt;}
.h3{height:75.464970pt;}
.h13{height:78.167731pt;}
.h11{height:83.836841pt;}
.hf{height:84.637466pt;}
.h12{height:114.946829pt;}
.h1f{height:127.968699pt;}
.h0{height:1122.666667pt;}
.w2{width:8.000000pt;}
.w4{width:9.760000pt;}
.w3{width:12.480000pt;}
.w1{width:24.320000pt;}
.w6{width:46.080000pt;}
.w7{width:110.080000pt;}
.w5{width:111.840000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:94.559962pt;}
.xa{left:98.879960pt;}
.xb{left:104.639958pt;}
.x48{left:107.679957pt;}
.x47{left:120.959952pt;}
.x4c{left:131.359947pt;}
.x4b{left:134.239949pt;}
.x4a{left:137.439945pt;}
.x13{left:141.759750pt;}
.x1c{left:143.519943pt;}
.x4e{left:145.439931pt;}
.x4d{left:147.359941pt;}
.x1d{left:148.959940pt;}
.x1a{left:152.159939pt;}
.x4f{left:158.559987pt;}
.x1e{left:160.959936pt;}
.x50{left:162.400001pt;}
.x11{left:164.319934pt;}
.x1f{left:166.399933pt;}
.x51{left:176.000077pt;}
.x29{left:178.399929pt;}
.x52{left:182.720095pt;}
.x16{left:184.159926pt;}
.x2a{left:195.679922pt;}
.x2{left:197.759921pt;}
.x44{left:199.519920pt;}
.x53{left:203.200200pt;}
.x41{left:205.119910pt;}
.x17{left:210.240000pt;}
.x3{left:212.159915pt;}
.x49{left:215.519737pt;}
.x38{left:217.119913pt;}
.x42{left:221.119946pt;}
.x45{left:223.519911pt;}
.x54{left:230.560363pt;}
.x18{left:234.559906pt;}
.x55{left:236.960387pt;}
.x56{left:243.680405pt;}
.x57{left:250.560434pt;}
.x58{left:257.280451pt;}
.x59{left:275.520512pt;}
.x5b{left:280.800527pt;}
.x5a{left:282.720534pt;}
.x39{left:287.999885pt;}
.x3a{left:293.439883pt;}
.x5c{left:296.320581pt;}
.x4{left:299.519880pt;}
.x5d{left:300.800598pt;}
.x5{left:303.839878pt;}
.x61{left:320.799991pt;}
.x33{left:331.359324pt;}
.x40{left:341.280000pt;}
.x3f{left:342.879863pt;}
.x60{left:344.639862pt;}
.x20{left:351.359863pt;}
.x43{left:365.439825pt;}
.x34{left:378.399849pt;}
.x35{left:381.439847pt;}
.x2f{left:384.319907pt;}
.xc{left:387.999845pt;}
.x6{left:389.119844pt;}
.xd{left:392.799843pt;}
.x1b{left:396.799841pt;}
.x7{left:399.999840pt;}
.xe{left:400.959840pt;}
.x32{left:413.119835pt;}
.x31{left:426.400000pt;}
.x21{left:428.479829pt;}
.x2d{left:430.720000pt;}
.x22{left:433.919826pt;}
.x2e{left:436.159826pt;}
.x36{left:441.759823pt;}
.x37{left:444.799822pt;}
.x27{left:450.719820pt;}
.x2c{left:455.199887pt;}
.x23{left:457.919817pt;}
.x28{left:459.039816pt;}
.x24{left:463.359815pt;}
.x30{left:471.679811pt;}
.x2b{left:484.639806pt;}
.x25{left:487.359805pt;}
.x26{left:490.399804pt;}
.x8{left:493.119803pt;}
.x9{left:497.439801pt;}
.x62{left:556.479777pt;}
.x3b{left:574.239770pt;}
.x5f{left:577.120000pt;}
.x3c{left:579.679768pt;}
.x19{left:588.159765pt;}
.x63{left:593.759762pt;}
.x46{left:609.279756pt;}
.x10{left:616.959753pt;}
.xf{left:617.919753pt;}
.x12{left:629.279748pt;}
.x5e{left:640.319744pt;}
.x14{left:665.919734pt;}
.x3d{left:670.399732pt;}
.x15{left:671.359731pt;}
.x3e{left:675.839730pt;}
}




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