
    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_505a52a1fea29c7016823092.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_7cf2ae3e6fd14425008d1a64.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.726000;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_fca53970702b6e20e4959002.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_2d997f1ed2c1ff115af10985.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_26c504f8fe863530aac48bf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9bc74d7103f85dedc3e7c88d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fd7e87ca091f2557646811fb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.043000;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_084d4d332c5627a1473d2208.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_031b2c4c12897fe5785e61cf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.052000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.063000px;}
.ls10{letter-spacing:0.096000px;}
.ls9{letter-spacing:0.126000px;}
.lsd{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.189000px;}
.lsa{letter-spacing:0.252000px;}
.ls1{letter-spacing:0.315000px;}
.lsf{letter-spacing:0.336000px;}
.lsc{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.441000px;}
.lsb{letter-spacing:0.480000px;}
.ls3{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.630000px;}
.ls2{letter-spacing:0.720000px;}
.lse{letter-spacing:0.960000px;}
.ls0{letter-spacing:7.152000px;}
.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;}
}
.ws1{word-spacing:-36.696000px;}
.wsd{word-spacing:-18.348000px;}
.ws0{word-spacing:-16.680000px;}
.ws9{word-spacing:-13.344000px;}
.wsa{word-spacing:-12.000000px;}
.wsb{word-spacing:-2.064000px;}
.ws2{word-spacing:0.000000px;}
.ws8{word-spacing:0.378000px;}
.wsc{word-spacing:2.880000px;}
.ws3{word-spacing:54.658800px;}
.ws7{word-spacing:59.917800px;}
.ws6{word-spacing:84.417000px;}
.ws4{word-spacing:140.431800px;}
.ws5{word-spacing:187.465800px;}
._44{margin-left:-16.443000px;}
._15{margin-left:-7.668000px;}
._1a{margin-left:-6.564000px;}
._8{margin-left:-5.064000px;}
._c{margin-left:-3.816000px;}
._0{margin-left:-2.496000px;}
._7{margin-left:-1.260000px;}
._d{width:1.236000px;}
._9{width:2.772000px;}
._12{width:4.536000px;}
._4{width:5.607000px;}
._10{width:7.555800px;}
._3{width:8.790600px;}
._f{width:9.833400px;}
._2{width:10.848000px;}
._b{width:11.946000px;}
._17{width:13.041000px;}
._6{width:14.175000px;}
._1c{width:15.183000px;}
._13{width:17.319000px;}
._a{width:18.837000px;}
._11{width:20.160000px;}
._5{width:21.294000px;}
._19{width:23.154600px;}
._41{width:24.255000px;}
._14{width:25.317600px;}
._1d{width:26.847600px;}
._42{width:28.015800px;}
._18{width:29.673000px;}
._1b{width:31.311000px;}
._e{width:36.918000px;}
._43{width:45.054600px;}
._2a{width:72.139800px;}
._3b{width:74.656200px;}
._2d{width:79.251000px;}
._28{width:81.964800px;}
._35{width:85.368600px;}
._38{width:87.195600px;}
._29{width:88.959600px;}
._36{width:100.167000px;}
._22{width:102.945600px;}
._3a{width:104.589600px;}
._2b{width:106.156200px;}
._33{width:114.216000px;}
._1f{width:126.985800px;}
._21{width:129.088800px;}
._40{width:137.538000px;}
._39{width:154.100400px;}
._2e{width:156.181800px;}
._24{width:158.698200px;}
._27{width:159.702000px;}
._31{width:161.305800px;}
._20{width:166.695000px;}
._30{width:170.160000px;}
._1e{width:184.153800px;}
._25{width:187.618200px;}
._3d{width:195.679800px;}
._3e{width:197.382600px;}
._34{width:223.651800px;}
._23{width:226.111800px;}
._37{width:251.221800px;}
._2f{width:308.992800px;}
._2c{width:337.659000px;}
._26{width:362.166000px;}
._3f{width:370.228800px;}
._3c{width:382.450800px;}
._32{width:1025.275800px;}
._16{width:1508.885400px;}
._1{width:1510.752000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.ye3{bottom:96.171450px;}
.y50{bottom:96.234450px;}
.y21{bottom:96.241200px;}
.y101{bottom:96.247950px;}
.y11{bottom:96.272700px;}
.ycc{bottom:97.759350px;}
.ycb{bottom:112.759350px;}
.ye2{bottom:114.173700px;}
.y4f{bottom:114.236700px;}
.y20{bottom:114.243450px;}
.y100{bottom:114.250200px;}
.y10{bottom:114.274950px;}
.yca{bottom:127.759350px;}
.ye1{bottom:132.175950px;}
.y4e{bottom:132.238950px;}
.y1f{bottom:132.245700px;}
.yff{bottom:132.252450px;}
.yf{bottom:132.277200px;}
.yc9{bottom:142.759350px;}
.ye0{bottom:150.178200px;}
.y4d{bottom:150.241200px;}
.y1e{bottom:150.247950px;}
.yfe{bottom:150.254700px;}
.ye{bottom:150.279450px;}
.yc8{bottom:157.759350px;}
.ydf{bottom:168.180450px;}
.y4c{bottom:168.243450px;}
.y1d{bottom:168.250200px;}
.yfd{bottom:168.256950px;}
.yd{bottom:168.281700px;}
.yde{bottom:186.182700px;}
.y4b{bottom:186.245700px;}
.y1c{bottom:186.252450px;}
.yfc{bottom:186.259200px;}
.yc{bottom:186.283950px;}
.ydd{bottom:204.184950px;}
.y4a{bottom:204.247950px;}
.y1b{bottom:204.254700px;}
.yfb{bottom:204.261450px;}
.yb{bottom:204.286200px;}
.ydc{bottom:222.187200px;}
.y49{bottom:222.250200px;}
.y1a{bottom:222.256950px;}
.yfa{bottom:222.263700px;}
.y150{bottom:222.268200px;}
.ya{bottom:222.288450px;}
.y12d{bottom:222.306450px;}
.ydb{bottom:240.189450px;}
.y48{bottom:240.252450px;}
.y19{bottom:240.259200px;}
.yf9{bottom:240.265950px;}
.y14f{bottom:240.270450px;}
.y9{bottom:240.290700px;}
.y12c{bottom:240.306450px;}
.yda{bottom:258.191700px;}
.y47{bottom:258.254700px;}
.y18{bottom:258.261450px;}
.yf8{bottom:258.268200px;}
.y14e{bottom:258.272700px;}
.y8{bottom:258.292950px;}
.y12b{bottom:258.306450px;}
.yd9{bottom:276.193950px;}
.y46{bottom:276.256950px;}
.y17{bottom:276.263700px;}
.yf7{bottom:276.270450px;}
.y7{bottom:276.295200px;}
.y12a{bottom:276.306450px;}
.yd8{bottom:294.196200px;}
.y45{bottom:294.259200px;}
.y16{bottom:294.265950px;}
.yf6{bottom:294.272700px;}
.y14d{bottom:294.277200px;}
.y6{bottom:294.297450px;}
.y129{bottom:294.306450px;}
.yd7{bottom:312.198450px;}
.y44{bottom:312.261450px;}
.y15{bottom:312.268200px;}
.yf5{bottom:312.274950px;}
.y14c{bottom:312.279450px;}
.y5{bottom:312.299700px;}
.y128{bottom:312.306450px;}
.yd6{bottom:330.200700px;}
.y43{bottom:330.263700px;}
.y14{bottom:330.270450px;}
.yf4{bottom:330.277200px;}
.y4{bottom:330.301950px;}
.y127{bottom:330.306450px;}
.yd5{bottom:348.202950px;}
.y42{bottom:348.265950px;}
.y13{bottom:348.272700px;}
.yf3{bottom:348.279450px;}
.y14b{bottom:348.283950px;}
.y3{bottom:348.304200px;}
.y126{bottom:348.306450px;}
.yd4{bottom:366.205200px;}
.y41{bottom:366.268200px;}
.y12{bottom:366.274950px;}
.yf2{bottom:366.281700px;}
.y14a{bottom:366.286200px;}
.y2{bottom:366.306450px;}
.yd3{bottom:384.207450px;}
.y40{bottom:384.270450px;}
.yf1{bottom:384.283950px;}
.y149{bottom:384.288450px;}
.y61{bottom:384.295200px;}
.y125{bottom:384.306450px;}
.yd2{bottom:402.209700px;}
.y3f{bottom:402.272700px;}
.yf0{bottom:402.286200px;}
.y148{bottom:402.290700px;}
.y60{bottom:402.297450px;}
.y124{bottom:402.306450px;}
.y2d{bottom:409.285500px;}
.yd1{bottom:420.211950px;}
.y3e{bottom:420.274950px;}
.yef{bottom:420.288450px;}
.y147{bottom:420.292950px;}
.y5f{bottom:420.299700px;}
.y123{bottom:420.306450px;}
.y2c{bottom:431.785500px;}
.yd0{bottom:438.214200px;}
.y3d{bottom:438.277200px;}
.yee{bottom:438.290700px;}
.y146{bottom:438.295200px;}
.y5e{bottom:438.301950px;}
.y122{bottom:438.306450px;}
.y2b{bottom:454.285500px;}
.ycf{bottom:456.216450px;}
.y3c{bottom:456.279450px;}
.yed{bottom:456.292950px;}
.y145{bottom:456.297450px;}
.y5d{bottom:456.304200px;}
.y121{bottom:456.306450px;}
.yce{bottom:474.218700px;}
.y3b{bottom:474.281700px;}
.yec{bottom:474.295200px;}
.y144{bottom:474.299700px;}
.y5c{bottom:474.306450px;}
.y2a{bottom:476.785500px;}
.y5b{bottom:492.205200px;}
.ycd{bottom:492.220950px;}
.y3a{bottom:492.283950px;}
.yeb{bottom:492.297450px;}
.y143{bottom:492.301950px;}
.y120{bottom:492.306450px;}
.y29{bottom:499.285500px;}
.yc7{bottom:510.144450px;}
.y5a{bottom:510.207450px;}
.ya1{bottom:510.223200px;}
.y39{bottom:510.286200px;}
.yea{bottom:510.299700px;}
.y142{bottom:510.304200px;}
.y11f{bottom:510.306450px;}
.y28{bottom:521.785500px;}
.yc6{bottom:528.146700px;}
.y59{bottom:528.209700px;}
.ya0{bottom:528.225450px;}
.y38{bottom:528.288450px;}
.ye9{bottom:528.301950px;}
.y11e{bottom:528.306450px;}
.y27{bottom:544.285500px;}
.yc5{bottom:546.148950px;}
.y58{bottom:546.211950px;}
.y9f{bottom:546.227700px;}
.y37{bottom:546.290700px;}
.ye8{bottom:546.304200px;}
.y11d{bottom:546.306450px;}
.y141{bottom:554.885550px;}
.yc4{bottom:564.151200px;}
.y57{bottom:564.214200px;}
.y9e{bottom:564.229950px;}
.y36{bottom:564.292950px;}
.ye7{bottom:564.306450px;}
.y26{bottom:566.785500px;}
.yc3{bottom:582.153450px;}
.y56{bottom:582.216450px;}
.y9d{bottom:582.232200px;}
.y35{bottom:582.295200px;}
.y11c{bottom:582.306450px;}
.y25{bottom:589.285500px;}
.yc2{bottom:600.155700px;}
.y55{bottom:600.218700px;}
.y9c{bottom:600.234450px;}
.y34{bottom:600.297450px;}
.y11b{bottom:600.306450px;}
.ye6{bottom:614.314350px;}
.yc1{bottom:618.157950px;}
.y54{bottom:618.220950px;}
.y9b{bottom:618.236700px;}
.y33{bottom:618.299700px;}
.y11a{bottom:618.306450px;}
.ye5{bottom:629.314350px;}
.y24{bottom:629.785500px;}
.yc0{bottom:636.160200px;}
.y53{bottom:636.223200px;}
.y9a{bottom:636.238950px;}
.y32{bottom:636.301950px;}
.y119{bottom:636.306450px;}
.ye4{bottom:644.314350px;}
.ybf{bottom:654.162450px;}
.y52{bottom:654.225450px;}
.y99{bottom:654.241200px;}
.y31{bottom:654.304200px;}
.y118{bottom:654.306450px;}
.y23{bottom:670.279500px;}
.ybe{bottom:672.164700px;}
.y51{bottom:672.227700px;}
.y98{bottom:672.243450px;}
.y30{bottom:672.306450px;}
.ybd{bottom:690.166950px;}
.y97{bottom:690.245700px;}
.y117{bottom:690.306450px;}
.ybc{bottom:708.169200px;}
.y96{bottom:708.247950px;}
.y116{bottom:708.306450px;}
.y22{bottom:709.285500px;}
.ybb{bottom:726.171450px;}
.y95{bottom:726.250200px;}
.y115{bottom:726.306450px;}
.y62{bottom:729.353700px;}
.yba{bottom:744.173700px;}
.y94{bottom:744.252450px;}
.y114{bottom:744.306450px;}
.y7b{bottom:760.671900px;}
.yb9{bottom:762.175950px;}
.y93{bottom:762.254700px;}
.y113{bottom:762.306450px;}
.yb8{bottom:780.178200px;}
.y92{bottom:780.256950px;}
.y112{bottom:780.306450px;}
.y7a{bottom:784.874100px;}
.y2e{bottom:788.881050px;}
.yb7{bottom:798.180450px;}
.y91{bottom:798.259200px;}
.y111{bottom:798.306450px;}
.y79{bottom:802.876350px;}
.y77{bottom:802.878600px;}
.yb6{bottom:816.182700px;}
.y90{bottom:816.261450px;}
.y140{bottom:816.306450px;}
.y110{bottom:817.806450px;}
.y78{bottom:820.878600px;}
.yb5{bottom:834.184950px;}
.y8f{bottom:834.263700px;}
.y13f{bottom:834.306450px;}
.y76{bottom:845.085150px;}
.yb4{bottom:852.187200px;}
.y8e{bottom:852.265950px;}
.y13e{bottom:852.306450px;}
.y75{bottom:869.221050px;}
.yb3{bottom:870.189450px;}
.y8d{bottom:870.268200px;}
.y10f{bottom:870.277200px;}
.y13d{bottom:870.306450px;}
.yb2{bottom:888.191700px;}
.y8c{bottom:888.270450px;}
.y10e{bottom:888.279450px;}
.y13c{bottom:888.306450px;}
.y74{bottom:893.921550px;}
.y73{bottom:902.923800px;}
.yb1{bottom:906.193950px;}
.y8b{bottom:906.272700px;}
.y10d{bottom:906.281700px;}
.y13b{bottom:906.306450px;}
.yb0{bottom:924.196200px;}
.y8a{bottom:924.274950px;}
.y10c{bottom:924.283950px;}
.y13a{bottom:924.306450px;}
.y72{bottom:936.626700px;}
.yaf{bottom:942.198450px;}
.y89{bottom:942.277200px;}
.y10b{bottom:942.286200px;}
.y139{bottom:942.306450px;}
.yae{bottom:960.200700px;}
.y88{bottom:960.279450px;}
.y10a{bottom:960.288450px;}
.y138{bottom:960.306450px;}
.y71{bottom:960.762450px;}
.yad{bottom:978.202950px;}
.y87{bottom:978.281700px;}
.y109{bottom:978.290700px;}
.y137{bottom:978.306450px;}
.y70{bottom:985.462950px;}
.y6f{bottom:994.465200px;}
.yac{bottom:996.205200px;}
.y86{bottom:996.283950px;}
.y108{bottom:996.292950px;}
.y136{bottom:996.306450px;}
.yab{bottom:1014.207450px;}
.y85{bottom:1014.286200px;}
.y107{bottom:1014.295200px;}
.y135{bottom:1014.306450px;}
.y6e{bottom:1027.735800px;}
.yaa{bottom:1032.209700px;}
.y84{bottom:1032.288450px;}
.y106{bottom:1032.297450px;}
.y134{bottom:1032.306450px;}
.y6a{bottom:1036.738050px;}
.y6d{bottom:1045.738050px;}
.ya9{bottom:1050.211950px;}
.y83{bottom:1050.290700px;}
.y105{bottom:1050.299700px;}
.y133{bottom:1050.306450px;}
.y69{bottom:1054.740300px;}
.y67{bottom:1054.742550px;}
.y6c{bottom:1063.740300px;}
.ya8{bottom:1068.214200px;}
.y82{bottom:1068.292950px;}
.y104{bottom:1068.301950px;}
.y132{bottom:1068.306450px;}
.y68{bottom:1072.742550px;}
.y6b{bottom:1081.742550px;}
.ya7{bottom:1086.216450px;}
.y81{bottom:1086.295200px;}
.y103{bottom:1086.304200px;}
.y131{bottom:1086.306450px;}
.ya6{bottom:1104.218700px;}
.y80{bottom:1104.297450px;}
.y102{bottom:1104.306450px;}
.y66{bottom:1105.453350px;}
.ya5{bottom:1122.220950px;}
.y7f{bottom:1122.299700px;}
.y130{bottom:1122.306450px;}
.y65{bottom:1130.153850px;}
.y64{bottom:1139.156100px;}
.ya4{bottom:1140.223200px;}
.y7e{bottom:1140.301950px;}
.y12f{bottom:1140.306450px;}
.ya3{bottom:1158.225450px;}
.y7d{bottom:1158.304200px;}
.y12e{bottom:1158.306450px;}
.y63{bottom:1172.985750px;}
.ya2{bottom:1176.227700px;}
.y7c{bottom:1176.306450px;}
.y1{bottom:1216.042950px;}
.y2f{bottom:1307.372700px;}
.h8{height:40.560000px;}
.hd{height:42.117188px;}
.he{height:42.234375px;}
.h2{height:45.300000px;}
.hf{height:49.830000px;}
.h9{height:50.062500px;}
.h3{height:55.278809px;}
.h4{height:55.432617px;}
.ha{height:63.492188px;}
.h6{height:68.630859px;}
.h7{height:72.562500px;}
.hb{height:91.278809px;}
.hc{height:91.287809px;}
.h5{height:99.660000px;}
.h1{height:1293.750000px;}
.h0{height:1293.873000px;}
.w0{width:923.952000px;}
.w1{width:924.000000px;}
.x0{left:0.000000px;}
.x7{left:20.019000px;}
.x8{left:87.802500px;}
.x1{left:92.053650px;}
.xc{left:97.056450px;}
.x9{left:102.259200px;}
.x14{left:104.821650px;}
.x12{left:106.512150px;}
.x10{left:165.837900px;}
.x4{left:204.717600px;}
.x5{left:350.049600px;}
.x6{left:402.097050px;}
.xe{left:448.717800px;}
.xa{left:470.399700px;}
.x2{left:474.652650px;}
.xb{left:484.858200px;}
.x15{left:487.501650px;}
.x3{left:489.111150px;}
.x11{left:531.311700px;}
.xf{left:600.093150px;}
.x13{left:670.321500px;}
.xd{left:746.160000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.056000pt;}
.ls10{letter-spacing:0.085333pt;}
.ls9{letter-spacing:0.112000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.168000pt;}
.lsa{letter-spacing:0.224000pt;}
.ls1{letter-spacing:0.280000pt;}
.lsf{letter-spacing:0.298667pt;}
.lsc{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.392000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls3{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.560000pt;}
.ls2{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.853333pt;}
.ls0{letter-spacing:6.357333pt;}
.ws1{word-spacing:-32.618667pt;}
.wsd{word-spacing:-16.309333pt;}
.ws0{word-spacing:-14.826667pt;}
.ws9{word-spacing:-11.861333pt;}
.wsa{word-spacing:-10.666667pt;}
.wsb{word-spacing:-1.834667pt;}
.ws2{word-spacing:0.000000pt;}
.ws8{word-spacing:0.336000pt;}
.wsc{word-spacing:2.560000pt;}
.ws3{word-spacing:48.585600pt;}
.ws7{word-spacing:53.260267pt;}
.ws6{word-spacing:75.037333pt;}
.ws4{word-spacing:124.828267pt;}
.ws5{word-spacing:166.636267pt;}
._44{margin-left:-14.616000pt;}
._15{margin-left:-6.816000pt;}
._1a{margin-left:-5.834667pt;}
._8{margin-left:-4.501333pt;}
._c{margin-left:-3.392000pt;}
._0{margin-left:-2.218667pt;}
._7{margin-left:-1.120000pt;}
._d{width:1.098667pt;}
._9{width:2.464000pt;}
._12{width:4.032000pt;}
._4{width:4.984000pt;}
._10{width:6.716267pt;}
._3{width:7.813867pt;}
._f{width:8.740800pt;}
._2{width:9.642667pt;}
._b{width:10.618667pt;}
._17{width:11.592000pt;}
._6{width:12.600000pt;}
._1c{width:13.496000pt;}
._13{width:15.394667pt;}
._a{width:16.744000pt;}
._11{width:17.920000pt;}
._5{width:18.928000pt;}
._19{width:20.581867pt;}
._41{width:21.560000pt;}
._14{width:22.504533pt;}
._1d{width:23.864533pt;}
._42{width:24.902933pt;}
._18{width:26.376000pt;}
._1b{width:27.832000pt;}
._e{width:32.816000pt;}
._43{width:40.048533pt;}
._2a{width:64.124267pt;}
._3b{width:66.361067pt;}
._2d{width:70.445333pt;}
._28{width:72.857600pt;}
._35{width:75.883200pt;}
._38{width:77.507200pt;}
._29{width:79.075200pt;}
._36{width:89.037333pt;}
._22{width:91.507200pt;}
._3a{width:92.968533pt;}
._2b{width:94.361067pt;}
._33{width:101.525333pt;}
._1f{width:112.876267pt;}
._21{width:114.745600pt;}
._40{width:122.256000pt;}
._39{width:136.978133pt;}
._2e{width:138.828267pt;}
._24{width:141.065067pt;}
._27{width:141.957333pt;}
._31{width:143.382933pt;}
._20{width:148.173333pt;}
._30{width:151.253333pt;}
._1e{width:163.692267pt;}
._25{width:166.771733pt;}
._3d{width:173.937600pt;}
._3e{width:175.451200pt;}
._34{width:198.801600pt;}
._23{width:200.988267pt;}
._37{width:223.308267pt;}
._2f{width:274.660267pt;}
._2c{width:300.141333pt;}
._26{width:321.925333pt;}
._3f{width:329.092267pt;}
._3c{width:339.956267pt;}
._32{width:911.356267pt;}
._16{width:1341.231467pt;}
._1{width:1342.890667pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:85.485733pt;}
.y50{bottom:85.541733pt;}
.y21{bottom:85.547733pt;}
.y101{bottom:85.553733pt;}
.y11{bottom:85.575733pt;}
.ycc{bottom:86.897200pt;}
.ycb{bottom:100.230533pt;}
.ye2{bottom:101.487733pt;}
.y4f{bottom:101.543733pt;}
.y20{bottom:101.549733pt;}
.y100{bottom:101.555733pt;}
.y10{bottom:101.577733pt;}
.yca{bottom:113.563867pt;}
.ye1{bottom:117.489733pt;}
.y4e{bottom:117.545733pt;}
.y1f{bottom:117.551733pt;}
.yff{bottom:117.557733pt;}
.yf{bottom:117.579733pt;}
.yc9{bottom:126.897200pt;}
.ye0{bottom:133.491733pt;}
.y4d{bottom:133.547733pt;}
.y1e{bottom:133.553733pt;}
.yfe{bottom:133.559733pt;}
.ye{bottom:133.581733pt;}
.yc8{bottom:140.230533pt;}
.ydf{bottom:149.493733pt;}
.y4c{bottom:149.549733pt;}
.y1d{bottom:149.555733pt;}
.yfd{bottom:149.561733pt;}
.yd{bottom:149.583733pt;}
.yde{bottom:165.495733pt;}
.y4b{bottom:165.551733pt;}
.y1c{bottom:165.557733pt;}
.yfc{bottom:165.563733pt;}
.yc{bottom:165.585733pt;}
.ydd{bottom:181.497733pt;}
.y4a{bottom:181.553733pt;}
.y1b{bottom:181.559733pt;}
.yfb{bottom:181.565733pt;}
.yb{bottom:181.587733pt;}
.ydc{bottom:197.499733pt;}
.y49{bottom:197.555733pt;}
.y1a{bottom:197.561733pt;}
.yfa{bottom:197.567733pt;}
.y150{bottom:197.571733pt;}
.ya{bottom:197.589733pt;}
.y12d{bottom:197.605733pt;}
.ydb{bottom:213.501733pt;}
.y48{bottom:213.557733pt;}
.y19{bottom:213.563733pt;}
.yf9{bottom:213.569733pt;}
.y14f{bottom:213.573733pt;}
.y9{bottom:213.591733pt;}
.y12c{bottom:213.605733pt;}
.yda{bottom:229.503733pt;}
.y47{bottom:229.559733pt;}
.y18{bottom:229.565733pt;}
.yf8{bottom:229.571733pt;}
.y14e{bottom:229.575733pt;}
.y8{bottom:229.593733pt;}
.y12b{bottom:229.605733pt;}
.yd9{bottom:245.505733pt;}
.y46{bottom:245.561733pt;}
.y17{bottom:245.567733pt;}
.yf7{bottom:245.573733pt;}
.y7{bottom:245.595733pt;}
.y12a{bottom:245.605733pt;}
.yd8{bottom:261.507733pt;}
.y45{bottom:261.563733pt;}
.y16{bottom:261.569733pt;}
.yf6{bottom:261.575733pt;}
.y14d{bottom:261.579733pt;}
.y6{bottom:261.597733pt;}
.y129{bottom:261.605733pt;}
.yd7{bottom:277.509733pt;}
.y44{bottom:277.565733pt;}
.y15{bottom:277.571733pt;}
.yf5{bottom:277.577733pt;}
.y14c{bottom:277.581733pt;}
.y5{bottom:277.599733pt;}
.y128{bottom:277.605733pt;}
.yd6{bottom:293.511733pt;}
.y43{bottom:293.567733pt;}
.y14{bottom:293.573733pt;}
.yf4{bottom:293.579733pt;}
.y4{bottom:293.601733pt;}
.y127{bottom:293.605733pt;}
.yd5{bottom:309.513733pt;}
.y42{bottom:309.569733pt;}
.y13{bottom:309.575733pt;}
.yf3{bottom:309.581733pt;}
.y14b{bottom:309.585733pt;}
.y3{bottom:309.603733pt;}
.y126{bottom:309.605733pt;}
.yd4{bottom:325.515733pt;}
.y41{bottom:325.571733pt;}
.y12{bottom:325.577733pt;}
.yf2{bottom:325.583733pt;}
.y14a{bottom:325.587733pt;}
.y2{bottom:325.605733pt;}
.yd3{bottom:341.517733pt;}
.y40{bottom:341.573733pt;}
.yf1{bottom:341.585733pt;}
.y149{bottom:341.589733pt;}
.y61{bottom:341.595733pt;}
.y125{bottom:341.605733pt;}
.yd2{bottom:357.519733pt;}
.y3f{bottom:357.575733pt;}
.yf0{bottom:357.587733pt;}
.y148{bottom:357.591733pt;}
.y60{bottom:357.597733pt;}
.y124{bottom:357.605733pt;}
.y2d{bottom:363.809333pt;}
.yd1{bottom:373.521733pt;}
.y3e{bottom:373.577733pt;}
.yef{bottom:373.589733pt;}
.y147{bottom:373.593733pt;}
.y5f{bottom:373.599733pt;}
.y123{bottom:373.605733pt;}
.y2c{bottom:383.809333pt;}
.yd0{bottom:389.523733pt;}
.y3d{bottom:389.579733pt;}
.yee{bottom:389.591733pt;}
.y146{bottom:389.595733pt;}
.y5e{bottom:389.601733pt;}
.y122{bottom:389.605733pt;}
.y2b{bottom:403.809333pt;}
.ycf{bottom:405.525733pt;}
.y3c{bottom:405.581733pt;}
.yed{bottom:405.593733pt;}
.y145{bottom:405.597733pt;}
.y5d{bottom:405.603733pt;}
.y121{bottom:405.605733pt;}
.yce{bottom:421.527733pt;}
.y3b{bottom:421.583733pt;}
.yec{bottom:421.595733pt;}
.y144{bottom:421.599733pt;}
.y5c{bottom:421.605733pt;}
.y2a{bottom:423.809333pt;}
.y5b{bottom:437.515733pt;}
.ycd{bottom:437.529733pt;}
.y3a{bottom:437.585733pt;}
.yeb{bottom:437.597733pt;}
.y143{bottom:437.601733pt;}
.y120{bottom:437.605733pt;}
.y29{bottom:443.809333pt;}
.yc7{bottom:453.461733pt;}
.y5a{bottom:453.517733pt;}
.ya1{bottom:453.531733pt;}
.y39{bottom:453.587733pt;}
.yea{bottom:453.599733pt;}
.y142{bottom:453.603733pt;}
.y11f{bottom:453.605733pt;}
.y28{bottom:463.809333pt;}
.yc6{bottom:469.463733pt;}
.y59{bottom:469.519733pt;}
.ya0{bottom:469.533733pt;}
.y38{bottom:469.589733pt;}
.ye9{bottom:469.601733pt;}
.y11e{bottom:469.605733pt;}
.y27{bottom:483.809333pt;}
.yc5{bottom:485.465733pt;}
.y58{bottom:485.521733pt;}
.y9f{bottom:485.535733pt;}
.y37{bottom:485.591733pt;}
.ye8{bottom:485.603733pt;}
.y11d{bottom:485.605733pt;}
.y141{bottom:493.231600pt;}
.yc4{bottom:501.467733pt;}
.y57{bottom:501.523733pt;}
.y9e{bottom:501.537733pt;}
.y36{bottom:501.593733pt;}
.ye7{bottom:501.605733pt;}
.y26{bottom:503.809333pt;}
.yc3{bottom:517.469733pt;}
.y56{bottom:517.525733pt;}
.y9d{bottom:517.539733pt;}
.y35{bottom:517.595733pt;}
.y11c{bottom:517.605733pt;}
.y25{bottom:523.809333pt;}
.yc2{bottom:533.471733pt;}
.y55{bottom:533.527733pt;}
.y9c{bottom:533.541733pt;}
.y34{bottom:533.597733pt;}
.y11b{bottom:533.605733pt;}
.ye6{bottom:546.057200pt;}
.yc1{bottom:549.473733pt;}
.y54{bottom:549.529733pt;}
.y9b{bottom:549.543733pt;}
.y33{bottom:549.599733pt;}
.y11a{bottom:549.605733pt;}
.ye5{bottom:559.390533pt;}
.y24{bottom:559.809333pt;}
.yc0{bottom:565.475733pt;}
.y53{bottom:565.531733pt;}
.y9a{bottom:565.545733pt;}
.y32{bottom:565.601733pt;}
.y119{bottom:565.605733pt;}
.ye4{bottom:572.723867pt;}
.ybf{bottom:581.477733pt;}
.y52{bottom:581.533733pt;}
.y99{bottom:581.547733pt;}
.y31{bottom:581.603733pt;}
.y118{bottom:581.605733pt;}
.y23{bottom:595.804000pt;}
.ybe{bottom:597.479733pt;}
.y51{bottom:597.535733pt;}
.y98{bottom:597.549733pt;}
.y30{bottom:597.605733pt;}
.ybd{bottom:613.481733pt;}
.y97{bottom:613.551733pt;}
.y117{bottom:613.605733pt;}
.ybc{bottom:629.483733pt;}
.y96{bottom:629.553733pt;}
.y116{bottom:629.605733pt;}
.y22{bottom:630.476000pt;}
.ybb{bottom:645.485733pt;}
.y95{bottom:645.555733pt;}
.y115{bottom:645.605733pt;}
.y62{bottom:648.314400pt;}
.yba{bottom:661.487733pt;}
.y94{bottom:661.557733pt;}
.y114{bottom:661.605733pt;}
.y7b{bottom:676.152800pt;}
.yb9{bottom:677.489733pt;}
.y93{bottom:677.559733pt;}
.y113{bottom:677.605733pt;}
.yb8{bottom:693.491733pt;}
.y92{bottom:693.561733pt;}
.y112{bottom:693.605733pt;}
.y7a{bottom:697.665867pt;}
.y2e{bottom:701.227600pt;}
.yb7{bottom:709.493733pt;}
.y91{bottom:709.563733pt;}
.y111{bottom:709.605733pt;}
.y79{bottom:713.667867pt;}
.y77{bottom:713.669867pt;}
.yb6{bottom:725.495733pt;}
.y90{bottom:725.565733pt;}
.y140{bottom:725.605733pt;}
.y110{bottom:726.939067pt;}
.y78{bottom:729.669867pt;}
.yb5{bottom:741.497733pt;}
.y8f{bottom:741.567733pt;}
.y13f{bottom:741.605733pt;}
.y76{bottom:751.186800pt;}
.yb4{bottom:757.499733pt;}
.y8e{bottom:757.569733pt;}
.y13e{bottom:757.605733pt;}
.y75{bottom:772.640933pt;}
.yb3{bottom:773.501733pt;}
.y8d{bottom:773.571733pt;}
.y10f{bottom:773.579733pt;}
.y13d{bottom:773.605733pt;}
.yb2{bottom:789.503733pt;}
.y8c{bottom:789.573733pt;}
.y10e{bottom:789.581733pt;}
.y13c{bottom:789.605733pt;}
.y74{bottom:794.596933pt;}
.y73{bottom:802.598933pt;}
.yb1{bottom:805.505733pt;}
.y8b{bottom:805.575733pt;}
.y10d{bottom:805.583733pt;}
.y13b{bottom:805.605733pt;}
.yb0{bottom:821.507733pt;}
.y8a{bottom:821.577733pt;}
.y10c{bottom:821.585733pt;}
.y13a{bottom:821.605733pt;}
.y72{bottom:832.557067pt;}
.yaf{bottom:837.509733pt;}
.y89{bottom:837.579733pt;}
.y10b{bottom:837.587733pt;}
.y139{bottom:837.605733pt;}
.yae{bottom:853.511733pt;}
.y88{bottom:853.581733pt;}
.y10a{bottom:853.589733pt;}
.y138{bottom:853.605733pt;}
.y71{bottom:854.011067pt;}
.yad{bottom:869.513733pt;}
.y87{bottom:869.583733pt;}
.y109{bottom:869.591733pt;}
.y137{bottom:869.605733pt;}
.y70{bottom:875.967067pt;}
.y6f{bottom:883.969067pt;}
.yac{bottom:885.515733pt;}
.y86{bottom:885.585733pt;}
.y108{bottom:885.593733pt;}
.y136{bottom:885.605733pt;}
.yab{bottom:901.517733pt;}
.y85{bottom:901.587733pt;}
.y107{bottom:901.595733pt;}
.y135{bottom:901.605733pt;}
.y6e{bottom:913.542933pt;}
.yaa{bottom:917.519733pt;}
.y84{bottom:917.589733pt;}
.y106{bottom:917.597733pt;}
.y134{bottom:917.605733pt;}
.y6a{bottom:921.544933pt;}
.y6d{bottom:929.544933pt;}
.ya9{bottom:933.521733pt;}
.y83{bottom:933.591733pt;}
.y105{bottom:933.599733pt;}
.y133{bottom:933.605733pt;}
.y69{bottom:937.546933pt;}
.y67{bottom:937.548933pt;}
.y6c{bottom:945.546933pt;}
.ya8{bottom:949.523733pt;}
.y82{bottom:949.593733pt;}
.y104{bottom:949.601733pt;}
.y132{bottom:949.605733pt;}
.y68{bottom:953.548933pt;}
.y6b{bottom:961.548933pt;}
.ya7{bottom:965.525733pt;}
.y81{bottom:965.595733pt;}
.y103{bottom:965.603733pt;}
.y131{bottom:965.605733pt;}
.ya6{bottom:981.527733pt;}
.y80{bottom:981.597733pt;}
.y102{bottom:981.605733pt;}
.y66{bottom:982.625200pt;}
.ya5{bottom:997.529733pt;}
.y7f{bottom:997.599733pt;}
.y130{bottom:997.605733pt;}
.y65{bottom:1004.581200pt;}
.y64{bottom:1012.583200pt;}
.ya4{bottom:1013.531733pt;}
.y7e{bottom:1013.601733pt;}
.y12f{bottom:1013.605733pt;}
.ya3{bottom:1029.533733pt;}
.y7d{bottom:1029.603733pt;}
.y12e{bottom:1029.605733pt;}
.y63{bottom:1042.654000pt;}
.ya2{bottom:1045.535733pt;}
.y7c{bottom:1045.605733pt;}
.y1{bottom:1080.927067pt;}
.y2f{bottom:1162.109067pt;}
.h8{height:36.053333pt;}
.hd{height:37.437500pt;}
.he{height:37.541667pt;}
.h2{height:40.266667pt;}
.hf{height:44.293333pt;}
.h9{height:44.500000pt;}
.h3{height:49.136719pt;}
.h4{height:49.273438pt;}
.ha{height:56.437500pt;}
.h6{height:61.005208pt;}
.h7{height:64.500000pt;}
.hb{height:81.136719pt;}
.hc{height:81.144719pt;}
.h5{height:88.586667pt;}
.h1{height:1150.000000pt;}
.h0{height:1150.109333pt;}
.w0{width:821.290667pt;}
.w1{width:821.333333pt;}
.x0{left:0.000000pt;}
.x7{left:17.794667pt;}
.x8{left:78.046667pt;}
.x1{left:81.825467pt;}
.xc{left:86.272400pt;}
.x9{left:90.897067pt;}
.x14{left:93.174800pt;}
.x12{left:94.677467pt;}
.x10{left:147.411467pt;}
.x4{left:181.971200pt;}
.x5{left:311.155200pt;}
.x6{left:357.419600pt;}
.xe{left:398.860267pt;}
.xa{left:418.133067pt;}
.x2{left:421.913467pt;}
.xb{left:430.985067pt;}
.x15{left:433.334800pt;}
.x3{left:434.765467pt;}
.x11{left:472.277067pt;}
.xf{left:533.416133pt;}
.x13{left:595.841333pt;}
.xd{left:663.253333pt;}
}




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