
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
.ff4{font-family:sans-serif;visibility:hidden;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff21;src:url('chunks/assets/font_faaf6bcaacfb4cb1a04b0258.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.687988;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;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.ff2c{font-family:sans-serif;visibility:hidden;}
.ff2d{font-family:sans-serif;visibility:hidden;}
.ff2e{font-family:sans-serif;visibility:hidden;}
.ff2f{font-family:sans-serif;visibility:hidden;}
.ff30{font-family:sans-serif;visibility:hidden;}
.ff31{font-family:sans-serif;visibility:hidden;}
.ff32{font-family:sans-serif;visibility:hidden;}
.ff33{font-family:sans-serif;visibility:hidden;}
.ff34{font-family:sans-serif;visibility:hidden;}
.ff35{font-family:sans-serif;visibility:hidden;}
.ff36{font-family:sans-serif;visibility:hidden;}
.ff37{font-family:sans-serif;visibility:hidden;}
.ff38{font-family:sans-serif;visibility:hidden;}
.ff39{font-family:sans-serif;visibility:hidden;}
.ff3a{font-family:sans-serif;visibility:hidden;}
.ff3b{font-family:sans-serif;visibility:hidden;}
.ff3c{font-family:sans-serif;visibility:hidden;}
.ff3d{font-family:sans-serif;visibility:hidden;}
.ff3e{font-family:sans-serif;visibility:hidden;}
.ff3f{font-family:sans-serif;visibility:hidden;}
.ff40{font-family:sans-serif;visibility:hidden;}
.ff41{font-family:sans-serif;visibility:hidden;}
.ff42{font-family:sans-serif;visibility:hidden;}
.ff43{font-family:sans-serif;visibility:hidden;}
.ff44{font-family:sans-serif;visibility:hidden;}
.ff45{font-family:sans-serif;visibility:hidden;}
.ff46{font-family:sans-serif;visibility:hidden;}
.ff47{font-family:sans-serif;visibility:hidden;}
.ff48{font-family:sans-serif;visibility:hidden;}
.ff49{font-family:sans-serif;visibility:hidden;}
.ff4a{font-family:sans-serif;visibility:hidden;}
.ff4b{font-family:sans-serif;visibility:hidden;}
.ff4c{font-family:sans-serif;visibility:hidden;}
.ff4d{font-family:sans-serif;visibility:hidden;}
.ff4e{font-family:sans-serif;visibility:hidden;}
.ff4f{font-family:sans-serif;visibility:hidden;}
.ff50{font-family:sans-serif;visibility:hidden;}
.ff51{font-family:sans-serif;visibility:hidden;}
.ff52{font-family:sans-serif;visibility:hidden;}
.ff53{font-family:sans-serif;visibility:hidden;}
.ff54{font-family:sans-serif;visibility:hidden;}
.ff55{font-family:sans-serif;visibility:hidden;}
.ff56{font-family:sans-serif;visibility:hidden;}
.ff57{font-family:sans-serif;visibility:hidden;}
.ff58{font-family:sans-serif;visibility:hidden;}
.ff59{font-family:sans-serif;visibility:hidden;}
.ff5a{font-family:sans-serif;visibility:hidden;}
.ff5b{font-family:sans-serif;visibility:hidden;}
.ff5c{font-family:sans-serif;visibility:hidden;}
.ff5d{font-family:sans-serif;visibility:hidden;}
.ff5e{font-family:sans-serif;visibility:hidden;}
.ff5f{font-family:sans-serif;visibility:hidden;}
.ff60{font-family:sans-serif;visibility:hidden;}
.ff61{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-12.708012px;}
._0{margin-left:-9.288012px;}
._1{margin-left:-7.740014px;}
._8{margin-left:-6.515936px;}
._2{margin-left:-5.508010px;}
._3{margin-left:-4.032007px;}
._4{margin-left:-2.736027px;}
._5{margin-left:-1.206005px;}
._6{width:1.619994px;}
._7{width:2.753966px;}
._9{width:4.283995px;}
._b{width:6.876025px;}
.fc4{color:rgb(245,166,35);}
.fc3{color:transparent;}
.fc2{color:rgb(74,144,226);}
.fc1{color:rgb(232,238,245);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:71.999997px;}
.fs6{font-size:80.999997px;}
.fs9{font-size:83.492885px;}
.fsd{font-size:85.499996px;}
.fs4{font-size:89.999996px;}
.fsc{font-size:98.999996px;}
.fs5{font-size:102.046860px;}
.fs2{font-size:107.999996px;}
.fsa{font-size:116.999995px;}
.fsb{font-size:125.999995px;}
.fs8{font-size:143.999994px;}
.fs1{font-size:161.999993px;}
.fs3{font-size:215.999991px;}
.fs0{font-size:323.999987px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000034px;}
.y66{bottom:0.000037px;}
.y57{bottom:0.000040px;}
.yb2{bottom:0.000042px;}
.y4a{bottom:0.054152px;}
.y7e{bottom:0.054154px;}
.y28{bottom:0.125837px;}
.y7{bottom:0.180036px;}
.yc2{bottom:0.180039px;}
.y49{bottom:42.255010px;}
.y8f{bottom:48.005854px;}
.y7d{bottom:48.374998px;}
.yf0{bottom:49.005006px;}
.y16{bottom:53.999998px;}
.ye1{bottom:63.314975px;}
.y65{bottom:64.124997px;}
.yb1{bottom:64.494141px;}
.y56{bottom:64.880853px;}
.y27{bottom:75.374997px;}
.y36{bottom:75.744141px;}
.y8e{bottom:85.130852px;}
.y7c{bottom:87.749996px;}
.y55{bottom:93.005852px;}
.ye0{bottom:93.689973px;}
.y48{bottom:96.255007px;}
.y15{bottom:101.249996px;}
.yd1{bottom:105.749996px;}
.y9d{bottom:107.999995px;}
.yc1{bottom:113.624995px;}
.yb0{bottom:113.994139px;}
.y8d{bottom:115.505851px;}
.yef{bottom:118.755003px;}
.y64{bottom:121.499995px;}
.y54{bottom:123.380851px;}
.ydf{bottom:124.064972px;}
.y47{bottom:130.005006px;}
.y74{bottom:134.999994px;}
.yd0{bottom:136.124994px;}
.y14{bottom:137.249994px;}
.y9c{bottom:143.999994px;}
.yc0{bottom:145.124994px;}
.yaf{bottom:145.494138px;}
.y8c{bottom:145.880850px;}
.y53{bottom:153.755850px;}
.y7b{bottom:155.249994px;}
.y63{bottom:157.499993px;}
.yee{bottom:158.130002px;}
.y46{bottom:163.755005px;}
.yde{bottom:164.564970px;}
.ycf{bottom:166.499993px;}
.y26{bottom:168.749993px;}
.y13{bottom:173.249993px;}
.y8b{bottom:176.255849px;}
.y35{bottom:176.994137px;}
.ybf{bottom:177.749993px;}
.yae{bottom:178.119137px;}
.y9b{bottom:179.999992px;}
.y52{bottom:184.130848px;}
.y62{bottom:193.499992px;}
.yed{bottom:197.505000px;}
.y6{bottom:199.124992px;}
.y7a{bottom:202.499992px;}
.y25{bottom:204.749991px;}
.yce{bottom:205.874991px;}
.y34{bottom:207.369135px;}
.y12{bottom:209.249991px;}
.yad{bottom:209.619135px;}
.y73{bottom:213.749991px;}
.y51{bottom:214.505847px;}
.y9a{bottom:215.999991px;}
.y8a{bottom:226.880847px;}
.y61{bottom:229.499990px;}
.y1f{bottom:235.124990px;}
.y79{bottom:236.249990px;}
.y24{bottom:240.749990px;}
.y50{bottom:244.880846px;}
.y45{bottom:247.005001px;}
.y72{bottom:247.499990px;}
.y33{bottom:248.994134px;}
.ydd{bottom:256.814966px;}
.y89{bottom:257.255845px;}
.ycd{bottom:266.624989px;}
.y1e{bottom:271.124989px;}
.y44{bottom:275.130000px;}
.y4f{bottom:275.255845px;}
.y23{bottom:276.749988px;}
.y71{bottom:281.249988px;}
.y60{bottom:284.624988px;}
.y11{bottom:286.874988px;}
.ydc{bottom:287.189965px;}
.y88{bottom:287.630844px;}
.ybe{bottom:289.124988px;}
.yac{bottom:289.494132px;}
.y43{bottom:303.254999px;}
.y1d{bottom:307.124987px;}
.ycc{bottom:308.249987px;}
.yec{bottom:308.879995px;}
.y5{bottom:310.499987px;}
.y22{bottom:312.749987px;}
.y78{bottom:314.999987px;}
.y32{bottom:315.369131px;}
.ydb{bottom:317.564964px;}
.ybd{bottom:319.499987px;}
.yab{bottom:319.869131px;}
.y4e{bottom:321.380843px;}
.y10{bottom:327.374986px;}
.y70{bottom:328.499986px;}
.y87{bottom:330.380842px;}
.yeb{bottom:339.254994px;}
.y42{bottom:341.504997px;}
.y1c{bottom:343.124986px;}
.y31{bottom:345.744130px;}
.yda{bottom:347.939963px;}
.y21{bottom:348.749985px;}
.ybc{bottom:349.874985px;}
.y77{bottom:359.999985px;}
.yf{bottom:361.124985px;}
.yaa{bottom:361.494129px;}
.y4{bottom:366.749985px;}
.yea{bottom:369.629993px;}
.ycb{bottom:374.624984px;}
.y41{bottom:375.254996px;}
.y1b{bottom:379.124984px;}
.y99{bottom:383.624984px;}
.y30{bottom:387.369128px;}
.yd9{bottom:388.439961px;}
.y6f{bottom:389.249984px;}
.ybb{bottom:391.499984px;}
.ya9{bottom:391.869128px;}
.y76{bottom:393.749984px;}
.ye{bottom:395.999983px;}
.y20{bottom:400.499983px;}
.y40{bottom:409.004994px;}
.ye9{bottom:410.129991px;}
.y86{bottom:415.880839px;}
.y98{bottom:419.624983px;}
.yba{bottom:421.874982px;}
.ya8{bottom:422.244126px;}
.y6e{bottom:422.999982px;}
.y1a{bottom:430.874982px;}
.yca{bottom:434.249982px;}
.y75{bottom:440.999982px;}
.y5f{bottom:442.124982px;}
.yb9{bottom:452.249981px;}
.y2f{bottom:453.744125px;}
.y97{bottom:455.624981px;}
.y6d{bottom:456.749981px;}
.y3f{bottom:457.379992px;}
.y3{bottom:458.999981px;}
.ya7{bottom:463.869125px;}
.y5e{bottom:478.124980px;}
.yd8{bottom:480.689957px;}
.y19{bottom:483.749980px;}
.y2e{bottom:484.119124px;}
.y85{bottom:486.755836px;}
.yd{bottom:491.624980px;}
.yc9{bottom:492.749979px;}
.yb8{bottom:493.874979px;}
.ya6{bottom:494.244123px;}
.y6c{bottom:501.749979px;}
.ye8{bottom:506.879987px;}
.y96{bottom:510.749979px;}
.yd7{bottom:511.064956px;}
.y5d{bottom:514.124979px;}
.yb7{bottom:524.249978px;}
.ya5{bottom:524.619122px;}
.y2d{bottom:525.744122px;}
.yc{bottom:527.624978px;}
.y6b{bottom:535.499978px;}
.ye7{bottom:537.254986px;}
.yd6{bottom:541.439955px;}
.y2{bottom:548.999977px;}
.y5c{bottom:550.124977px;}
.yc8{bottom:552.374977px;}
.yb6{bottom:554.624977px;}
.y84{bottom:557.630833px;}
.y3e{bottom:559.754988px;}
.yb{bottom:563.624977px;}
.ya4{bottom:566.244120px;}
.ye6{bottom:567.629985px;}
.y6a{bottom:569.249976px;}
.yd5{bottom:581.939953px;}
.y95{bottom:586.124976px;}
.y3d{bottom:587.879987px;}
.yc7{bottom:588.374975px;}
.yb5{bottom:596.249975px;}
.ya3{bottom:596.619119px;}
.y5b{bottom:601.874975px;}
.y69{bottom:602.999975px;}
.ye5{bottom:608.129983px;}
.y83{bottom:611.630831px;}
.y94{bottom:622.124974px;}
.y3c{bottom:626.129985px;}
.y18{bottom:626.624974px;}
.ya2{bottom:626.994118px;}
.ya{bottom:643.499973px;}
.y68{bottom:650.249973px;}
.yc6{bottom:655.874973px;}
.yb4{bottom:656.999973px;}
.y93{bottom:658.124973px;}
.y3b{bottom:659.879984px;}
.y2c{bottom:665.244116px;}
.yd4{bottom:673.064949px;}
.y4d{bottom:680.255828px;}
.y82{bottom:685.880827px;}
.y17{bottom:691.874971px;}
.y3a{bottom:693.629982px;}
.ya1{bottom:696.744115px;}
.ye4{bottom:701.504979px;}
.y9{bottom:707.624971px;}
.y92{bottom:713.249970px;}
.yc5{bottom:721.124970px;}
.y5a{bottom:726.749970px;}
.y2b{bottom:730.494114px;}
.yd3{bottom:737.189946px;}
.y39{bottom:742.004980px;}
.y4c{bottom:744.380825px;}
.y81{bottom:751.130825px;}
.ya0{bottom:760.869112px;}
.ye3{bottom:765.629976px;}
.y8{bottom:772.874968px;}
.yc4{bottom:785.249967px;}
.y59{bottom:790.874967px;}
.y67{bottom:791.999967px;}
.y2a{bottom:794.619111px;}
.yd2{bottom:802.439944px;}
.y91{bottom:808.874966px;}
.y4b{bottom:809.630822px;}
.y80{bottom:815.255822px;}
.y9f{bottom:826.119110px;}
.ye2{bottom:830.879974px;}
.y38{bottom:843.254976px;}
.yc3{bottom:850.499965px;}
.y58{bottom:856.124964px;}
.y29{bottom:859.869108px;}
.y90{bottom:874.124964px;}
.y7f{bottom:880.505819px;}
.y9e{bottom:896.994107px;}
.y37{bottom:908.504974px;}
.yb3{bottom:926.999961px;}
.h17{height:55.727048px;}
.hc{height:68.399997px;}
.hb{height:76.949997px;}
.h13{height:79.318241px;}
.h24{height:81.224997px;}
.h9{height:85.499996px;}
.h21{height:94.049996px;}
.ha{height:96.944517px;}
.h4{height:102.599996px;}
.h1a{height:111.149995px;}
.h1b{height:119.699995px;}
.hd{height:136.799994px;}
.h3{height:153.899994px;}
.h8{height:205.199991px;}
.h2{height:307.799987px;}
.h1{height:809.999966px;}
.h0{height:810.000000px;}
.h7{height:868.499964px;}
.h6{height:868.500000px;}
.h5{height:868.680000px;}
.h1d{height:881.999963px;}
.h1c{height:882.000000px;}
.h2a{height:892.439940px;}
.h2b{height:892.500000px;}
.h15{height:916.500000px;}
.h16{height:916.505818px;}
.h14{height:916.559970px;}
.h2c{height:920.879970px;}
.h2d{height:921.000000px;}
.h29{height:940.499961px;}
.h28{height:940.500000px;}
.h27{height:940.680000px;}
.h19{height:962.999960px;}
.h18{height:963.000000px;}
.h1f{height:970.500000px;}
.h20{height:970.505816px;}
.h1e{height:970.559970px;}
.h10{height:977.994103px;}
.hf{height:978.000000px;}
.he{height:978.119940px;}
.h23{height:980.999959px;}
.h22{height:981.000000px;}
.h11{height:992.879970px;}
.h12{height:993.000000px;}
.h26{height:1007.999958px;}
.h25{height:1008.000000px;}
.w1{width:1439.999940px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x31{left:73.124997px;}
.x2{left:78.749997px;}
.x8{left:89.999996px;}
.x32{left:91.124996px;}
.x1{left:101.249996px;}
.x15{left:103.499996px;}
.x5{left:105.749996px;}
.x66{left:110.249995px;}
.x23{left:118.124995px;}
.x9{left:123.749995px;}
.x68{left:129.374995px;}
.x52{left:136.335932px;}
.x6a{left:149.624994px;}
.x4f{left:150.749994px;}
.x53{left:156.023431px;}
.xa{left:167.624993px;}
.x51{left:171.210930px;}
.x65{left:174.374993px;}
.x5f{left:178.874993px;}
.x4c{left:183.374992px;}
.x50{left:185.624992px;}
.x63{left:188.437492px;}
.x33{left:194.624992px;}
.xc{left:196.874992px;}
.x1c{left:201.374992px;}
.x1d{left:221.624991px;}
.xb{left:226.124991px;}
.x6c{left:233.437490px;}
.x17{left:250.874990px;}
.x38{left:251.999990px;}
.x4d{left:253.124989px;}
.x60{left:259.874989px;}
.x2a{left:260.999989px;}
.x36{left:262.124989px;}
.x5d{left:266.624989px;}
.x3b{left:269.999989px;}
.x1e{left:318.374987px;}
.x3{left:319.499987px;}
.x39{left:321.749987px;}
.x43{left:336.374986px;}
.x1f{left:338.624986px;}
.x1b{left:344.249986px;}
.x35{left:348.749985px;}
.x55{left:364.042954px;}
.x4e{left:382.499984px;}
.x2b{left:385.874984px;}
.x1a{left:399.374983px;}
.x3c{left:412.874983px;}
.x54{left:414.105451px;}
.x20{left:437.624982px;}
.x34{left:445.499981px;}
.x6{left:447.749981px;}
.x40{left:505.124979px;}
.x21{left:519.363260px;}
.x3a{left:521.999978px;}
.x26{left:524.249978px;}
.x37{left:544.499977px;}
.x24{left:547.488258px;}
.xd{left:554.994123px;}
.x64{left:583.874976px;}
.x45{left:596.249975px;}
.x5e{left:617.624974px;}
.x4{left:618.749974px;}
.x4a{left:620.999974px;}
.x57{left:624.919901px;}
.x44{left:652.499973px;}
.x3e{left:653.624973px;}
.x56{left:665.419900px;}
.x49{left:668.249972px;}
.xe{left:678.744118px;}
.x46{left:700.874971px;}
.x4b{left:703.124971px;}
.x2c{left:739.687469px;}
.x14{left:742.499969px;}
.x67{left:750.374969px;}
.x61{left:752.624969px;}
.x27{left:767.812468px;}
.x47{left:770.624968px;}
.x18{left:777.374968px;}
.xf{left:803.619113px;}
.x41{left:817.874966px;}
.x29{left:871.312464px;}
.x3f{left:893.249963px;}
.x59{left:897.626921px;}
.x48{left:899.999963px;}
.x62{left:910.124962px;}
.x58{left:933.626920px;}
.x16{left:955.124960px;}
.x22{left:959.994106px;}
.x25{left:976.869106px;}
.x10{left:986.238240px;}
.x42{left:1014.749958px;}
.x30{left:1029.937457px;}
.x2e{left:1041.187457px;}
.x2f{left:1062.562456px;}
.x11{left:1075.113236px;}
.x2d{left:1089.562455px;}
.x13{left:1096.874954px;}
.x7{left:1108.124954px;}
.x3d{left:1113.749954px;}
.x28{left:1119.937453px;}
.x69{left:1123.874953px;}
.x5a{left:1146.691358px;}
.x5c{left:1170.316357px;}
.x5b{left:1184.378857px;}
.x6b{left:1209.374950px;}
.x12{left:1268.613228px;}
.x19{left:1322.999945px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-11.296011pt;}
._0{margin-left:-8.256010pt;}
._1{margin-left:-6.880012pt;}
._8{margin-left:-5.791943pt;}
._2{margin-left:-4.896009pt;}
._3{margin-left:-3.584006pt;}
._4{margin-left:-2.432024pt;}
._5{margin-left:-1.072004pt;}
._6{width:1.439995pt;}
._7{width:2.447970pt;}
._9{width:3.807995pt;}
._b{width:6.112022pt;}
.fs7{font-size:63.999997pt;}
.fs6{font-size:71.999997pt;}
.fs9{font-size:74.215898pt;}
.fsd{font-size:75.999997pt;}
.fs4{font-size:79.999997pt;}
.fsc{font-size:87.999996pt;}
.fs5{font-size:90.708320pt;}
.fs2{font-size:95.999996pt;}
.fsa{font-size:103.999996pt;}
.fsb{font-size:111.999995pt;}
.fs8{font-size:127.999995pt;}
.fs1{font-size:143.999994pt;}
.fs3{font-size:191.999992pt;}
.fs0{font-size:287.999988pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000030pt;}
.y66{bottom:0.000033pt;}
.y57{bottom:0.000036pt;}
.yb2{bottom:0.000037pt;}
.y4a{bottom:0.048135pt;}
.y7e{bottom:0.048137pt;}
.y28{bottom:0.111855pt;}
.y7{bottom:0.160032pt;}
.yc2{bottom:0.160035pt;}
.y49{bottom:37.560009pt;}
.y8f{bottom:42.671870pt;}
.y7d{bottom:42.999998pt;}
.yf0{bottom:43.560006pt;}
.y16{bottom:47.999998pt;}
.ye1{bottom:56.279977pt;}
.y65{bottom:56.999998pt;}
.yb1{bottom:57.328126pt;}
.y56{bottom:57.671870pt;}
.y27{bottom:66.999997pt;}
.y36{bottom:67.328125pt;}
.y8e{bottom:75.671869pt;}
.y7c{bottom:77.999997pt;}
.y55{bottom:82.671869pt;}
.ye0{bottom:83.279976pt;}
.y48{bottom:85.560007pt;}
.y15{bottom:89.999996pt;}
.yd1{bottom:93.999996pt;}
.y9d{bottom:95.999996pt;}
.yc1{bottom:100.999996pt;}
.yb0{bottom:101.328124pt;}
.y8d{bottom:102.671868pt;}
.yef{bottom:105.560003pt;}
.y64{bottom:107.999995pt;}
.y54{bottom:109.671867pt;}
.ydf{bottom:110.279975pt;}
.y47{bottom:115.560005pt;}
.y74{bottom:119.999995pt;}
.yd0{bottom:120.999995pt;}
.y14{bottom:121.999995pt;}
.y9c{bottom:127.999995pt;}
.yc0{bottom:128.999995pt;}
.yaf{bottom:129.328123pt;}
.y8c{bottom:129.671867pt;}
.y53{bottom:136.671866pt;}
.y7b{bottom:137.999994pt;}
.y63{bottom:139.999994pt;}
.yee{bottom:140.560002pt;}
.y46{bottom:145.560004pt;}
.yde{bottom:146.279974pt;}
.ycf{bottom:147.999994pt;}
.y26{bottom:149.999994pt;}
.y13{bottom:153.999994pt;}
.y8b{bottom:156.671865pt;}
.y35{bottom:157.328121pt;}
.ybf{bottom:157.999993pt;}
.yae{bottom:158.328121pt;}
.y9b{bottom:159.999993pt;}
.y52{bottom:163.671865pt;}
.y62{bottom:171.999993pt;}
.yed{bottom:175.560000pt;}
.y6{bottom:176.999993pt;}
.y7a{bottom:179.999992pt;}
.y25{bottom:181.999992pt;}
.yce{bottom:182.999992pt;}
.y34{bottom:184.328120pt;}
.y12{bottom:185.999992pt;}
.yad{bottom:186.328120pt;}
.y73{bottom:189.999992pt;}
.y51{bottom:190.671864pt;}
.y9a{bottom:191.999992pt;}
.y8a{bottom:201.671864pt;}
.y61{bottom:203.999991pt;}
.y1f{bottom:208.999991pt;}
.y79{bottom:209.999991pt;}
.y24{bottom:213.999991pt;}
.y50{bottom:217.671863pt;}
.y45{bottom:219.560001pt;}
.y72{bottom:219.999991pt;}
.y33{bottom:221.328119pt;}
.ydd{bottom:228.279970pt;}
.y89{bottom:228.671862pt;}
.ycd{bottom:236.999990pt;}
.y1e{bottom:240.999990pt;}
.y44{bottom:244.560000pt;}
.y4f{bottom:244.671862pt;}
.y23{bottom:245.999990pt;}
.y71{bottom:249.999990pt;}
.y60{bottom:252.999989pt;}
.y11{bottom:254.999989pt;}
.ydc{bottom:255.279969pt;}
.y88{bottom:255.671861pt;}
.ybe{bottom:256.999989pt;}
.yac{bottom:257.328117pt;}
.y43{bottom:269.559999pt;}
.y1d{bottom:272.999989pt;}
.ycc{bottom:273.999989pt;}
.yec{bottom:274.559996pt;}
.y5{bottom:275.999988pt;}
.y22{bottom:277.999988pt;}
.y78{bottom:279.999988pt;}
.y32{bottom:280.328116pt;}
.ydb{bottom:282.279968pt;}
.ybd{bottom:283.999988pt;}
.yab{bottom:284.328116pt;}
.y4e{bottom:285.671860pt;}
.y10{bottom:290.999988pt;}
.y70{bottom:291.999988pt;}
.y87{bottom:293.671860pt;}
.yeb{bottom:301.559995pt;}
.y42{bottom:303.559997pt;}
.y1c{bottom:304.999987pt;}
.y31{bottom:307.328115pt;}
.yda{bottom:309.279967pt;}
.y21{bottom:309.999987pt;}
.ybc{bottom:310.999987pt;}
.y77{bottom:319.999987pt;}
.yf{bottom:320.999987pt;}
.yaa{bottom:321.328115pt;}
.y4{bottom:325.999986pt;}
.yea{bottom:328.559994pt;}
.ycb{bottom:332.999986pt;}
.y41{bottom:333.559996pt;}
.y1b{bottom:336.999986pt;}
.y99{bottom:340.999986pt;}
.y30{bottom:344.328114pt;}
.yd9{bottom:345.279965pt;}
.y6f{bottom:345.999986pt;}
.ybb{bottom:347.999986pt;}
.ya9{bottom:348.328113pt;}
.y76{bottom:349.999985pt;}
.ye{bottom:351.999985pt;}
.y20{bottom:355.999985pt;}
.y40{bottom:363.559995pt;}
.ye9{bottom:364.559992pt;}
.y86{bottom:369.671857pt;}
.y98{bottom:372.999984pt;}
.yba{bottom:374.999984pt;}
.ya8{bottom:375.328112pt;}
.y6e{bottom:375.999984pt;}
.y1a{bottom:382.999984pt;}
.yca{bottom:385.999984pt;}
.y75{bottom:391.999984pt;}
.y5f{bottom:392.999984pt;}
.yb9{bottom:401.999983pt;}
.y2f{bottom:403.328111pt;}
.y97{bottom:404.999983pt;}
.y6d{bottom:405.999983pt;}
.y3f{bottom:406.559993pt;}
.y3{bottom:407.999983pt;}
.ya7{bottom:412.328111pt;}
.y5e{bottom:424.999982pt;}
.yd8{bottom:427.279962pt;}
.y19{bottom:429.999982pt;}
.y2e{bottom:430.328110pt;}
.y85{bottom:432.671854pt;}
.yd{bottom:436.999982pt;}
.yc9{bottom:437.999982pt;}
.yb8{bottom:438.999982pt;}
.ya6{bottom:439.328110pt;}
.y6c{bottom:445.999981pt;}
.ye8{bottom:450.559989pt;}
.y96{bottom:453.999981pt;}
.yd7{bottom:454.279961pt;}
.y5d{bottom:456.999981pt;}
.yb7{bottom:465.999981pt;}
.ya5{bottom:466.328109pt;}
.y2d{bottom:467.328109pt;}
.yc{bottom:468.999980pt;}
.y6b{bottom:475.999980pt;}
.ye7{bottom:477.559988pt;}
.yd6{bottom:481.279960pt;}
.y2{bottom:487.999980pt;}
.y5c{bottom:488.999980pt;}
.yc8{bottom:490.999980pt;}
.yb6{bottom:492.999979pt;}
.y84{bottom:495.671851pt;}
.y3e{bottom:497.559989pt;}
.yb{bottom:500.999979pt;}
.ya4{bottom:503.328107pt;}
.ye6{bottom:504.559986pt;}
.y6a{bottom:505.999979pt;}
.yd5{bottom:517.279958pt;}
.y95{bottom:520.999978pt;}
.y3d{bottom:522.559988pt;}
.yc7{bottom:522.999978pt;}
.yb5{bottom:529.999978pt;}
.ya3{bottom:530.328106pt;}
.y5b{bottom:534.999978pt;}
.y69{bottom:535.999978pt;}
.ye5{bottom:540.559985pt;}
.y83{bottom:543.671849pt;}
.y94{bottom:552.999977pt;}
.y3c{bottom:556.559987pt;}
.y18{bottom:556.999977pt;}
.ya2{bottom:557.328105pt;}
.ya{bottom:571.999976pt;}
.y68{bottom:577.999976pt;}
.yc6{bottom:582.999976pt;}
.yb4{bottom:583.999976pt;}
.y93{bottom:584.999976pt;}
.y3b{bottom:586.559986pt;}
.y2c{bottom:591.328103pt;}
.yd4{bottom:598.279955pt;}
.y4d{bottom:604.671847pt;}
.y82{bottom:609.671847pt;}
.y17{bottom:614.999974pt;}
.y3a{bottom:616.559984pt;}
.ya1{bottom:619.328102pt;}
.ye4{bottom:623.559981pt;}
.y9{bottom:628.999974pt;}
.y92{bottom:633.999974pt;}
.yc5{bottom:640.999973pt;}
.y5a{bottom:645.999973pt;}
.y2b{bottom:649.328101pt;}
.yd3{bottom:655.279952pt;}
.y39{bottom:659.559983pt;}
.y4c{bottom:661.671844pt;}
.y81{bottom:667.671844pt;}
.ya0{bottom:676.328100pt;}
.ye3{bottom:680.559979pt;}
.y8{bottom:686.999971pt;}
.yc4{bottom:697.999971pt;}
.y59{bottom:702.999971pt;}
.y67{bottom:703.999971pt;}
.y2a{bottom:706.328099pt;}
.yd2{bottom:713.279950pt;}
.y91{bottom:718.999970pt;}
.y4b{bottom:719.671842pt;}
.y80{bottom:724.671842pt;}
.y9f{bottom:734.328097pt;}
.ye2{bottom:738.559977pt;}
.y38{bottom:749.559979pt;}
.yc3{bottom:755.999969pt;}
.y58{bottom:760.999968pt;}
.y29{bottom:764.328096pt;}
.y90{bottom:776.999968pt;}
.y7f{bottom:782.671839pt;}
.y9e{bottom:797.328095pt;}
.y37{bottom:807.559976pt;}
.yb3{bottom:823.999966pt;}
.h17{height:49.535154pt;}
.hc{height:60.799997pt;}
.hb{height:68.399997pt;}
.h13{height:70.505103pt;}
.h24{height:72.199997pt;}
.h9{height:75.999997pt;}
.h21{height:83.599997pt;}
.ha{height:86.172904pt;}
.h4{height:91.199996pt;}
.h1a{height:98.799996pt;}
.h1b{height:106.399996pt;}
.hd{height:121.599995pt;}
.h3{height:136.799994pt;}
.h8{height:182.399992pt;}
.h2{height:273.599989pt;}
.h1{height:719.999970pt;}
.h0{height:720.000000pt;}
.h7{height:771.999968pt;}
.h6{height:772.000000pt;}
.h5{height:772.160000pt;}
.h1d{height:783.999967pt;}
.h1c{height:784.000000pt;}
.h2a{height:793.279947pt;}
.h2b{height:793.333333pt;}
.h15{height:814.666667pt;}
.h16{height:814.671838pt;}
.h14{height:814.719973pt;}
.h2c{height:818.559973pt;}
.h2d{height:818.666667pt;}
.h29{height:835.999965pt;}
.h28{height:836.000000pt;}
.h27{height:836.160000pt;}
.h19{height:855.999964pt;}
.h18{height:856.000000pt;}
.h1f{height:862.666667pt;}
.h20{height:862.671836pt;}
.h1e{height:862.719973pt;}
.h10{height:869.328092pt;}
.hf{height:869.333333pt;}
.he{height:869.439947pt;}
.h23{height:871.999964pt;}
.h22{height:872.000000pt;}
.h11{height:882.559973pt;}
.h12{height:882.666667pt;}
.h26{height:895.999963pt;}
.h25{height:896.000000pt;}
.w1{width:1279.999947pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x31{left:64.999997pt;}
.x2{left:69.999997pt;}
.x8{left:79.999997pt;}
.x32{left:80.999997pt;}
.x1{left:89.999996pt;}
.x15{left:91.999996pt;}
.x5{left:93.999996pt;}
.x66{left:97.999996pt;}
.x23{left:104.999996pt;}
.x9{left:109.999995pt;}
.x68{left:114.999995pt;}
.x52{left:121.187495pt;}
.x6a{left:132.999994pt;}
.x4f{left:133.999994pt;}
.x53{left:138.687494pt;}
.xa{left:148.999994pt;}
.x51{left:152.187494pt;}
.x65{left:154.999994pt;}
.x5f{left:158.999993pt;}
.x4c{left:162.999993pt;}
.x50{left:164.999993pt;}
.x63{left:167.499993pt;}
.x33{left:172.999993pt;}
.xc{left:174.999993pt;}
.x1c{left:178.999993pt;}
.x1d{left:196.999992pt;}
.xb{left:200.999992pt;}
.x6c{left:207.499991pt;}
.x17{left:222.999991pt;}
.x38{left:223.999991pt;}
.x4d{left:224.999991pt;}
.x60{left:230.999990pt;}
.x2a{left:231.999990pt;}
.x36{left:232.999990pt;}
.x5d{left:236.999990pt;}
.x3b{left:239.999990pt;}
.x1e{left:282.999988pt;}
.x3{left:283.999988pt;}
.x39{left:285.999988pt;}
.x43{left:298.999988pt;}
.x1f{left:300.999987pt;}
.x1b{left:305.999987pt;}
.x35{left:309.999987pt;}
.x55{left:323.593737pt;}
.x4e{left:339.999986pt;}
.x2b{left:342.999986pt;}
.x1a{left:354.999985pt;}
.x3c{left:366.999985pt;}
.x54{left:368.093735pt;}
.x20{left:388.999984pt;}
.x34{left:395.999984pt;}
.x6{left:397.999983pt;}
.x40{left:448.999981pt;}
.x21{left:461.656231pt;}
.x3a{left:463.999981pt;}
.x26{left:465.999981pt;}
.x37{left:483.999980pt;}
.x24{left:486.656230pt;}
.xd{left:493.328109pt;}
.x64{left:518.999978pt;}
.x45{left:529.999978pt;}
.x5e{left:548.999977pt;}
.x4{left:549.999977pt;}
.x4a{left:551.999977pt;}
.x57{left:555.484357pt;}
.x44{left:579.999976pt;}
.x3e{left:580.999976pt;}
.x56{left:591.484355pt;}
.x49{left:593.999975pt;}
.xe{left:603.328105pt;}
.x46{left:622.999974pt;}
.x4b{left:624.999974pt;}
.x2c{left:657.499973pt;}
.x14{left:659.999973pt;}
.x67{left:666.999972pt;}
.x61{left:668.999972pt;}
.x27{left:682.499972pt;}
.x47{left:684.999971pt;}
.x18{left:690.999971pt;}
.xf{left:714.328100pt;}
.x41{left:726.999970pt;}
.x29{left:774.499968pt;}
.x3f{left:793.999967pt;}
.x59{left:797.890597pt;}
.x48{left:799.999967pt;}
.x62{left:808.999966pt;}
.x58{left:829.890595pt;}
.x16{left:848.999965pt;}
.x22{left:853.328094pt;}
.x25{left:868.328094pt;}
.x10{left:876.656213pt;}
.x42{left:901.999962pt;}
.x30{left:915.499962pt;}
.x2e{left:925.499961pt;}
.x2f{left:944.499961pt;}
.x11{left:955.656210pt;}
.x2d{left:968.499960pt;}
.x13{left:974.999959pt;}
.x7{left:984.999959pt;}
.x3d{left:989.999959pt;}
.x28{left:995.499959pt;}
.x69{left:998.999958pt;}
.x5a{left:1019.281208pt;}
.x5c{left:1040.281207pt;}
.x5b{left:1052.781206pt;}
.x6b{left:1074.999955pt;}
.x12{left:1127.656203pt;}
.x19{left:1175.999951pt;}
}




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