
    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_d4f3277b380dc3c336a1ccd8.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_33699804142771177803b9ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123047;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_dae34e0f17aa1094fe3864fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_fd75a07bbc96da214d25d7f1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_702a627fc093e87427f5f698.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_794cfc76364213b15750fb91.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_beb16bab7a4e0f663a751d30.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6078941a2c774c886d1e5daa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_ab5738f08496b04e0e1916c2.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;}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-6.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.ls10{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.270000px;}
.ls6{letter-spacing:-0.206400px;}
.lsd{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.153600px;}
.ls5{letter-spacing:-0.134400px;}
.lse{letter-spacing:-0.094800px;}
.lsb{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.009360px;}
.ls17{letter-spacing:-0.004320px;}
.ls2{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.018720px;}
.ls11{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.103800px;}
.ls7{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.120600px;}
.ls1{letter-spacing:0.126000px;}
.ls8{letter-spacing:0.140040px;}
.ls19{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.378600px;}
.ls1a{letter-spacing:0.540000px;}
.ls18{letter-spacing:24.228000px;}
.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;}
}
.ws17{word-spacing:-36.450000px;}
.ws3{word-spacing:-16.335600px;}
.wsb{word-spacing:-15.210000px;}
.wsa{word-spacing:-15.030000px;}
.wsc{word-spacing:-14.976720px;}
.wsd{word-spacing:-14.850000px;}
.ws6{word-spacing:-14.823600px;}
.ws8{word-spacing:-13.626000px;}
.ws7{word-spacing:-13.608000px;}
.ws0{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.348600px;}
.ws14{word-spacing:-12.073800px;}
.wse{word-spacing:-11.988720px;}
.ws11{word-spacing:-11.970000px;}
.ws16{word-spacing:-11.965680px;}
.ws10{word-spacing:-11.960640px;}
.wsf{word-spacing:-11.875200px;}
.ws4{word-spacing:-10.530000px;}
.ws5{word-spacing:-9.720000px;}
.ws12{word-spacing:-7.523280px;}
.ws13{word-spacing:-7.470000px;}
.ws9{word-spacing:0.000000px;}
._5{margin-left:-3.474000px;}
._4{margin-left:-2.472000px;}
._1{margin-left:-1.022040px;}
._0{width:1.107600px;}
._2{width:2.916000px;}
._3{width:4.320000px;}
._6{width:5.780160px;}
._7{width:7.253160px;}
._9{width:8.537040px;}
._a{width:9.599400px;}
._b{width:11.963880px;}
._c{width:13.286520px;}
._f{width:16.412760px;}
._11{width:17.469480px;}
._10{width:18.645960px;}
._13{width:32.670000px;}
._12{width:33.696000px;}
._14{width:420.780000px;}
._8{width:447.780000px;}
._e{width:590.226000px;}
._d{width:659.100000px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.880000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:42.120000px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs1{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y71{bottom:4.680000px;}
.y74{bottom:4.770000px;}
.yab{bottom:5.040000px;}
.y85{bottom:13.050000px;}
.yaa{bottom:20.910000px;}
.y3{bottom:73.349908px;}
.y2c{bottom:100.349908px;}
.y2b{bottom:120.239908px;}
.y57{bottom:125.369908px;}
.ya7{bottom:128.339908px;}
.yfc{bottom:131.579908px;}
.y82{bottom:131.669908px;}
.y2a{bottom:140.039908px;}
.y9a{bottom:144.809908px;}
.y56{bottom:145.169908px;}
.ya6{bottom:148.139908px;}
.yfb{bottom:149.489908px;}
.yd3{bottom:149.759908px;}
.y81{bottom:151.559908px;}
.y29{bottom:159.929908px;}
.y55{bottom:164.969908px;}
.yfa{bottom:167.309908px;}
.y99{bottom:167.579908px;}
.ya5{bottom:168.029908px;}
.yd2{bottom:169.559908px;}
.y80{bottom:171.359908px;}
.y28{bottom:179.729908px;}
.y98{bottom:181.349908px;}
.y54{bottom:184.859908px;}
.ya4{bottom:187.829908px;}
.yf9{bottom:189.629908px;}
.y7f{bottom:191.159908px;}
.yd1{bottom:198.359908px;}
.y27{bottom:199.529908px;}
.y53{bottom:204.659908px;}
.yf8{bottom:207.539908px;}
.ya3{bottom:207.719908px;}
.y7e{bottom:211.049908px;}
.y26{bottom:219.419908px;}
.y52{bottom:224.549908px;}
.ya2{bottom:227.519908px;}
.yf7{bottom:229.859908px;}
.y7d{bottom:230.849908px;}
.yd0{bottom:236.249908px;}
.y25{bottom:239.219908px;}
.y51{bottom:244.349908px;}
.ya1{bottom:247.319908px;}
.yf6{bottom:247.679908px;}
.y7c{bottom:250.739908px;}
.ycf{bottom:256.049908px;}
.y24{bottom:259.109908px;}
.y50{bottom:264.149908px;}
.ya0{bottom:267.209908px;}
.yf5{bottom:270.089908px;}
.y7b{bottom:270.539908px;}
.yce{bottom:275.939908px;}
.y23{bottom:278.909908px;}
.y4f{bottom:284.039908px;}
.y9f{bottom:287.009908px;}
.yf4{bottom:287.909908px;}
.y7a{bottom:290.339908px;}
.ycd{bottom:295.739908px;}
.y22{bottom:298.709908px;}
.y4e{bottom:303.839908px;}
.yf3{bottom:305.729908px;}
.y9e{bottom:306.899908px;}
.y79{bottom:310.229908px;}
.ycc{bottom:315.539908px;}
.y21{bottom:318.599908px;}
.y4d{bottom:323.729908px;}
.y9d{bottom:326.699908px;}
.yf2{bottom:328.139908px;}
.y78{bottom:330.029908px;}
.ycb{bottom:335.459908px;}
.y20{bottom:338.429908px;}
.y4c{bottom:343.559908px;}
.y77{bottom:344.910000px;}
.yf1{bottom:345.989908px;}
.yca{bottom:355.259908px;}
.y1f{bottom:358.319908px;}
.y76{bottom:361.470000px;}
.y4b{bottom:363.359908px;}
.y9c{bottom:363.449908px;}
.yf0{bottom:363.809908px;}
.yc9{bottom:375.149908px;}
.y1e{bottom:378.119908px;}
.y75{bottom:378.120000px;}
.y4a{bottom:383.249908px;}
.y9b{bottom:386.219908px;}
.y73{bottom:394.680000px;}
.y1d{bottom:397.919908px;}
.y49{bottom:403.049908px;}
.yc8{bottom:403.949908px;}
.yef{bottom:404.039908px;}
.y72{bottom:411.330000px;}
.y1c{bottom:417.809908px;}
.yee{bottom:421.949908px;}
.y48{bottom:422.939908px;}
.y70{bottom:427.980000px;}
.y1b{bottom:437.609908px;}
.yc7{bottom:441.749908px;}
.y47{bottom:442.739908px;}
.yed{bottom:444.269908px;}
.y97{bottom:450.479908px;}
.y6f{bottom:458.309908px;}
.yc6{bottom:461.639908px;}
.yec{bottom:462.089908px;}
.y46{bottom:462.539908px;}
.y1a{bottom:466.499908px;}
.y96{bottom:470.369908px;}
.yc5{bottom:481.439908px;}
.y45{bottom:482.429908px;}
.yeb{bottom:484.499908px;}
.y95{bottom:490.169908px;}
.y6e{bottom:493.229908px;}
.yc4{bottom:501.329908px;}
.y44{bottom:502.229908px;}
.yea{bottom:502.319908px;}
.y19{bottom:503.759908px;}
.y94{bottom:509.969908px;}
.y6d{bottom:513.119908px;}
.ye9{bottom:520.139908px;}
.yc3{bottom:521.129908px;}
.y43{bottom:522.119908px;}
.y93{bottom:529.859908px;}
.y18{bottom:530.579908px;}
.y6c{bottom:532.919908px;}
.yc2{bottom:540.929908px;}
.y42{bottom:541.919908px;}
.ye8{bottom:542.549908px;}
.y17{bottom:548.489908px;}
.y92{bottom:549.659908px;}
.y6b{bottom:552.719908px;}
.ye7{bottom:560.369908px;}
.yc1{bottom:560.819908px;}
.y41{bottom:561.719908px;}
.y16{bottom:566.309908px;}
.y91{bottom:569.549908px;}
.y6a{bottom:572.609908px;}
.ye6{bottom:578.189908px;}
.yc0{bottom:580.619908px;}
.y40{bottom:581.609908px;}
.y15{bottom:584.129908px;}
.y90{bottom:589.349908px;}
.y69{bottom:592.409908px;}
.ybf{bottom:600.509908px;}
.ye5{bottom:600.599908px;}
.y3f{bottom:601.409908px;}
.y14{bottom:602.039908px;}
.y8f{bottom:609.149908px;}
.y68{bottom:612.299908px;}
.ybe{bottom:615.270000px;}
.ye4{bottom:618.419908px;}
.y13{bottom:619.859908px;}
.y3e{bottom:621.299908px;}
.y8e{bottom:629.039908px;}
.y10d{bottom:629.429908px;}
.ybd{bottom:631.950000px;}
.y67{bottom:632.129908px;}
.ye3{bottom:636.359908px;}
.y12{bottom:637.709908px;}
.y3d{bottom:641.129908px;}
.y8d{bottom:647.789908px;}
.ybc{bottom:648.510000px;}
.y10c{bottom:651.839908px;}
.y66{bottom:651.929908px;}
.y11{bottom:655.619908px;}
.ye2{bottom:658.679908px;}
.y3c{bottom:660.929908px;}
.ybb{bottom:665.160000px;}
.y8c{bottom:668.670000px;}
.y10b{bottom:669.659908px;}
.y65{bottom:671.819908px;}
.y10{bottom:673.439908px;}
.ye1{bottom:676.499908px;}
.y3b{bottom:680.819908px;}
.yba{bottom:681.810000px;}
.y8b{bottom:685.320000px;}
.y10a{bottom:687.479908px;}
.yf{bottom:691.349908px;}
.y64{bottom:691.619908px;}
.ye0{bottom:694.409908px;}
.yb9{bottom:698.370000px;}
.y3a{bottom:700.619908px;}
.y8a{bottom:701.970000px;}
.ye{bottom:709.169908px;}
.y109{bottom:709.889908px;}
.y63{bottom:711.509908px;}
.yb8{bottom:715.020000px;}
.ydf{bottom:716.729908px;}
.y89{bottom:718.530000px;}
.y39{bottom:720.509908px;}
.yd{bottom:726.989908px;}
.y108{bottom:727.709908px;}
.y62{bottom:731.309908px;}
.yb7{bottom:731.670000px;}
.yde{bottom:734.549908px;}
.y88{bottom:735.180000px;}
.y38{bottom:740.309908px;}
.y107{bottom:745.529908px;}
.yb6{bottom:748.230000px;}
.y61{bottom:751.109908px;}
.y87{bottom:751.830000px;}
.ydd{bottom:756.959908px;}
.y37{bottom:760.109908px;}
.yc{bottom:763.439908px;}
.yb5{bottom:764.880000px;}
.y84{bottom:768.390000px;}
.y60{bottom:770.999908px;}
.ydc{bottom:774.779908px;}
.y36{bottom:779.999908px;}
.yb4{bottom:781.440000px;}
.yb{bottom:783.239908px;}
.y86{bottom:785.040000px;}
.y106{bottom:785.759908px;}
.y5f{bottom:790.799908px;}
.ydb{bottom:797.099908px;}
.yb3{bottom:798.090000px;}
.y35{bottom:799.799908px;}
.ya{bottom:803.039908px;}
.y105{bottom:803.579908px;}
.y5e{bottom:810.689908px;}
.yb2{bottom:814.740000px;}
.yda{bottom:815.009908px;}
.y83{bottom:815.369908px;}
.y34{bottom:819.689908px;}
.y9{bottom:822.929908px;}
.y104{bottom:825.989908px;}
.y5d{bottom:830.489908px;}
.yb1{bottom:831.300000px;}
.yd9{bottom:837.329908px;}
.y33{bottom:839.489908px;}
.y103{bottom:843.809908px;}
.y8{bottom:847.949908px;}
.yb0{bottom:847.950000px;}
.y5c{bottom:850.289908px;}
.yd8{bottom:855.149908px;}
.y32{bottom:859.289908px;}
.y102{bottom:861.719908px;}
.yaf{bottom:864.600000px;}
.y7{bottom:867.839908px;}
.y5b{bottom:870.179908px;}
.yd7{bottom:877.559908px;}
.y31{bottom:879.179908px;}
.yae{bottom:881.160000px;}
.y101{bottom:884.039908px;}
.y5a{bottom:889.979908px;}
.yd6{bottom:895.379908px;}
.yad{bottom:897.810000px;}
.y30{bottom:898.979908px;}
.y6{bottom:901.049908px;}
.y100{bottom:901.859908px;}
.y59{bottom:909.869908px;}
.yd5{bottom:913.289908px;}
.ya9{bottom:914.460000px;}
.y2f{bottom:918.869908px;}
.yff{bottom:919.769908px;}
.y58{bottom:929.699908px;}
.yac{bottom:931.050000px;}
.yd4{bottom:931.139908px;}
.y2e{bottom:938.699908px;}
.y5{bottom:940.949908px;}
.yfe{bottom:942.119908px;}
.y2d{bottom:958.499908px;}
.yfd{bottom:959.939908px;}
.ya8{bottom:961.379908px;}
.y4{bottom:962.729908px;}
.y2{bottom:999.539908px;}
.hf{height:15.840000px;}
.h17{height:15.870000px;}
.h11{height:15.930000px;}
.h12{height:32.490000px;}
.h16{height:32.520000px;}
.h7{height:38.139609px;}
.h10{height:46.991602px;}
.h14{height:47.310996px;}
.h13{height:47.325586px;}
.he{height:48.254063px;}
.h19{height:52.971680px;}
.h3{height:52.998047px;}
.hc{height:53.896641px;}
.ha{height:54.421875px;}
.h18{height:56.320312px;}
.h8{height:58.975137px;}
.h9{height:59.004492px;}
.hd{height:59.038594px;}
.hb{height:60.589687px;}
.h15{height:64.657617px;}
.h4{height:65.526152px;}
.h5{height:66.394687px;}
.h6{height:66.569062px;}
.h2{height:1063.169908px;}
.h0{height:1063.170000px;}
.h1{height:1063.500000px;}
.w6{width:72.030000px;}
.w3{width:82.530000px;}
.wa{width:82.620000px;}
.wc{width:95.670000px;}
.wd{width:95.700000px;}
.wb{width:108.480000px;}
.w7{width:166.770000px;}
.w8{width:166.980000px;}
.w9{width:185.340000px;}
.w4{width:191.370000px;}
.w5{width:191.460000px;}
.w1{width:744.000000px;}
.w2{width:744.209989px;}
.w0{width:744.210000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x16{left:16.920000px;}
.x23{left:20.970000px;}
.x21{left:22.230000px;}
.x22{left:25.590000px;}
.xf{left:26.910000px;}
.x1d{left:31.620000px;}
.x2e{left:32.940000px;}
.x2a{left:35.280000px;}
.x30{left:37.170000px;}
.x2c{left:39.330000px;}
.x32{left:41.400000px;}
.x31{left:47.790000px;}
.x1b{left:49.410000px;}
.x20{left:52.860000px;}
.x1e{left:54.540000px;}
.x1c{left:58.800000px;}
.x1f{left:63.750000px;}
.x18{left:66.600000px;}
.x11{left:68.130000px;}
.x2{left:76.589989px;}
.x9{left:79.739989px;}
.xc{left:82.889989px;}
.x13{left:87.660000px;}
.x1{left:104.609989px;}
.xa{left:107.399989px;}
.x6{left:110.729989px;}
.x15{left:130.259989px;}
.x5{left:135.749989px;}
.xe{left:139.530000px;}
.x3{left:144.839989px;}
.x17{left:148.620000px;}
.x29{left:180.930000px;}
.xd{left:202.709989px;}
.x27{left:208.469989px;}
.x10{left:222.060000px;}
.x4{left:249.059989px;}
.x25{left:252.839989px;}
.x28{left:254.189989px;}
.x2b{left:263.550000px;}
.x8{left:293.969989px;}
.x7{left:307.559989px;}
.x19{left:315.390000px;}
.xb{left:335.399989px;}
.x2d{left:372.030000px;}
.x12{left:413.430000px;}
.x2f{left:467.700000px;}
.x1a{left:482.370000px;}
.x26{left:627.569989px;}
.x24{left:648.989989px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.ls10{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls6{letter-spacing:-0.183467pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls5{letter-spacing:-0.119467pt;}
.lse{letter-spacing:-0.084267pt;}
.lsb{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.008320pt;}
.ls17{letter-spacing:-0.003840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.016640pt;}
.ls11{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.092267pt;}
.ls7{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.107200pt;}
.ls1{letter-spacing:0.112000pt;}
.ls8{letter-spacing:0.124480pt;}
.ls19{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.336533pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls18{letter-spacing:21.536000pt;}
.ws17{word-spacing:-32.400000pt;}
.ws3{word-spacing:-14.520533pt;}
.wsb{word-spacing:-13.520000pt;}
.wsa{word-spacing:-13.360000pt;}
.wsc{word-spacing:-13.312640pt;}
.wsd{word-spacing:-13.200000pt;}
.ws6{word-spacing:-13.176533pt;}
.ws8{word-spacing:-12.112000pt;}
.ws7{word-spacing:-12.096000pt;}
.ws0{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.680000pt;}
.ws15{word-spacing:-10.976533pt;}
.ws14{word-spacing:-10.732267pt;}
.wse{word-spacing:-10.656640pt;}
.ws11{word-spacing:-10.640000pt;}
.ws16{word-spacing:-10.636160pt;}
.ws10{word-spacing:-10.631680pt;}
.wsf{word-spacing:-10.555733pt;}
.ws4{word-spacing:-9.360000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws12{word-spacing:-6.687360pt;}
.ws13{word-spacing:-6.640000pt;}
.ws9{word-spacing:0.000000pt;}
._5{margin-left:-3.088000pt;}
._4{margin-left:-2.197333pt;}
._1{margin-left:-0.908480pt;}
._0{width:0.984533pt;}
._2{width:2.592000pt;}
._3{width:3.840000pt;}
._6{width:5.137920pt;}
._7{width:6.447253pt;}
._9{width:7.588480pt;}
._a{width:8.532800pt;}
._b{width:10.634560pt;}
._c{width:11.810240pt;}
._f{width:14.589120pt;}
._11{width:15.528427pt;}
._10{width:16.574187pt;}
._13{width:29.040000pt;}
._12{width:29.952000pt;}
._14{width:374.026667pt;}
._8{width:398.026667pt;}
._e{width:524.645333pt;}
._d{width:585.866667pt;}
.fs6{font-size:26.560000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.440000pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs1{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y71{bottom:4.160000pt;}
.y74{bottom:4.240000pt;}
.yab{bottom:4.480000pt;}
.y85{bottom:11.600000pt;}
.yaa{bottom:18.586667pt;}
.y3{bottom:65.199919pt;}
.y2c{bottom:89.199919pt;}
.y2b{bottom:106.879919pt;}
.y57{bottom:111.439919pt;}
.ya7{bottom:114.079919pt;}
.yfc{bottom:116.959919pt;}
.y82{bottom:117.039919pt;}
.y2a{bottom:124.479919pt;}
.y9a{bottom:128.719919pt;}
.y56{bottom:129.039919pt;}
.ya6{bottom:131.679919pt;}
.yfb{bottom:132.879919pt;}
.yd3{bottom:133.119919pt;}
.y81{bottom:134.719919pt;}
.y29{bottom:142.159919pt;}
.y55{bottom:146.639919pt;}
.yfa{bottom:148.719919pt;}
.y99{bottom:148.959919pt;}
.ya5{bottom:149.359919pt;}
.yd2{bottom:150.719919pt;}
.y80{bottom:152.319919pt;}
.y28{bottom:159.759919pt;}
.y98{bottom:161.199919pt;}
.y54{bottom:164.319919pt;}
.ya4{bottom:166.959919pt;}
.yf9{bottom:168.559919pt;}
.y7f{bottom:169.919919pt;}
.yd1{bottom:176.319919pt;}
.y27{bottom:177.359919pt;}
.y53{bottom:181.919919pt;}
.yf8{bottom:184.479919pt;}
.ya3{bottom:184.639919pt;}
.y7e{bottom:187.599919pt;}
.y26{bottom:195.039919pt;}
.y52{bottom:199.599919pt;}
.ya2{bottom:202.239919pt;}
.yf7{bottom:204.319919pt;}
.y7d{bottom:205.199919pt;}
.yd0{bottom:209.999919pt;}
.y25{bottom:212.639919pt;}
.y51{bottom:217.199919pt;}
.ya1{bottom:219.839919pt;}
.yf6{bottom:220.159919pt;}
.y7c{bottom:222.879919pt;}
.ycf{bottom:227.599919pt;}
.y24{bottom:230.319919pt;}
.y50{bottom:234.799919pt;}
.ya0{bottom:237.519919pt;}
.yf5{bottom:240.079919pt;}
.y7b{bottom:240.479919pt;}
.yce{bottom:245.279919pt;}
.y23{bottom:247.919919pt;}
.y4f{bottom:252.479919pt;}
.y9f{bottom:255.119919pt;}
.yf4{bottom:255.919919pt;}
.y7a{bottom:258.079919pt;}
.ycd{bottom:262.879919pt;}
.y22{bottom:265.519919pt;}
.y4e{bottom:270.079919pt;}
.yf3{bottom:271.759919pt;}
.y9e{bottom:272.799919pt;}
.y79{bottom:275.759919pt;}
.ycc{bottom:280.479919pt;}
.y21{bottom:283.199919pt;}
.y4d{bottom:287.759919pt;}
.y9d{bottom:290.399919pt;}
.yf2{bottom:291.679919pt;}
.y78{bottom:293.359919pt;}
.ycb{bottom:298.186585pt;}
.y20{bottom:300.826585pt;}
.y4c{bottom:305.386585pt;}
.y77{bottom:306.586667pt;}
.yf1{bottom:307.546585pt;}
.yca{bottom:315.786585pt;}
.y1f{bottom:318.506585pt;}
.y76{bottom:321.306667pt;}
.y4b{bottom:322.986585pt;}
.y9c{bottom:323.066585pt;}
.yf0{bottom:323.386585pt;}
.yc9{bottom:333.466585pt;}
.y1e{bottom:336.106585pt;}
.y75{bottom:336.106667pt;}
.y4a{bottom:340.666585pt;}
.y9b{bottom:343.306585pt;}
.y73{bottom:350.826667pt;}
.y1d{bottom:353.706585pt;}
.y49{bottom:358.266585pt;}
.yc8{bottom:359.066585pt;}
.yef{bottom:359.146585pt;}
.y72{bottom:365.626667pt;}
.y1c{bottom:371.386585pt;}
.yee{bottom:375.066585pt;}
.y48{bottom:375.946585pt;}
.y70{bottom:380.426667pt;}
.y1b{bottom:388.986585pt;}
.yc7{bottom:392.666585pt;}
.y47{bottom:393.546585pt;}
.yed{bottom:394.906585pt;}
.y97{bottom:400.426585pt;}
.y6f{bottom:407.386585pt;}
.yc6{bottom:410.346585pt;}
.yec{bottom:410.746585pt;}
.y46{bottom:411.146585pt;}
.y1a{bottom:414.666585pt;}
.y96{bottom:418.106585pt;}
.yc5{bottom:427.946585pt;}
.y45{bottom:428.826585pt;}
.yeb{bottom:430.666585pt;}
.y95{bottom:435.706585pt;}
.y6e{bottom:438.426585pt;}
.yc4{bottom:445.626585pt;}
.y44{bottom:446.426585pt;}
.yea{bottom:446.506585pt;}
.y19{bottom:447.786585pt;}
.y94{bottom:453.306585pt;}
.y6d{bottom:456.106585pt;}
.ye9{bottom:462.346585pt;}
.yc3{bottom:463.226585pt;}
.y43{bottom:464.106585pt;}
.y93{bottom:470.986585pt;}
.y18{bottom:471.626585pt;}
.y6c{bottom:473.706585pt;}
.yc2{bottom:480.826585pt;}
.y42{bottom:481.706585pt;}
.ye8{bottom:482.266585pt;}
.y17{bottom:487.546585pt;}
.y92{bottom:488.586585pt;}
.y6b{bottom:491.306585pt;}
.ye7{bottom:498.106585pt;}
.yc1{bottom:498.506585pt;}
.y41{bottom:499.306585pt;}
.y16{bottom:503.386585pt;}
.y91{bottom:506.266585pt;}
.y6a{bottom:508.986585pt;}
.ye6{bottom:513.946585pt;}
.yc0{bottom:516.106585pt;}
.y40{bottom:516.986585pt;}
.y15{bottom:519.226585pt;}
.y90{bottom:523.866585pt;}
.y69{bottom:526.586585pt;}
.ybf{bottom:533.786585pt;}
.ye5{bottom:533.866585pt;}
.y3f{bottom:534.586585pt;}
.y14{bottom:535.146585pt;}
.y8f{bottom:541.466585pt;}
.y68{bottom:544.266585pt;}
.ybe{bottom:546.906667pt;}
.ye4{bottom:549.706585pt;}
.y13{bottom:550.986585pt;}
.y3e{bottom:552.266585pt;}
.y8e{bottom:559.146585pt;}
.y10d{bottom:559.493252pt;}
.ybd{bottom:561.733333pt;}
.y67{bottom:561.893252pt;}
.ye3{bottom:565.653252pt;}
.y12{bottom:566.853252pt;}
.y3d{bottom:569.893252pt;}
.y8d{bottom:575.813252pt;}
.ybc{bottom:576.453333pt;}
.y10c{bottom:579.413252pt;}
.y66{bottom:579.493252pt;}
.y11{bottom:582.773252pt;}
.ye2{bottom:585.493252pt;}
.y3c{bottom:587.493252pt;}
.ybb{bottom:591.253333pt;}
.y8c{bottom:594.373333pt;}
.y10b{bottom:595.253252pt;}
.y65{bottom:597.173252pt;}
.y10{bottom:598.613252pt;}
.ye1{bottom:601.333252pt;}
.y3b{bottom:605.173252pt;}
.yba{bottom:606.053333pt;}
.y8b{bottom:609.173333pt;}
.y10a{bottom:611.093252pt;}
.yf{bottom:614.533252pt;}
.y64{bottom:614.773252pt;}
.ye0{bottom:617.253252pt;}
.yb9{bottom:620.773333pt;}
.y3a{bottom:622.773252pt;}
.y8a{bottom:623.973333pt;}
.ye{bottom:630.373252pt;}
.y109{bottom:631.013252pt;}
.y63{bottom:632.453252pt;}
.yb8{bottom:635.573333pt;}
.ydf{bottom:637.093252pt;}
.y89{bottom:638.693333pt;}
.y39{bottom:640.453252pt;}
.yd{bottom:646.213252pt;}
.y108{bottom:646.853252pt;}
.y62{bottom:650.053252pt;}
.yb7{bottom:650.373333pt;}
.yde{bottom:652.933252pt;}
.y88{bottom:653.493333pt;}
.y38{bottom:658.053252pt;}
.y107{bottom:662.693252pt;}
.yb6{bottom:665.093333pt;}
.y61{bottom:667.653252pt;}
.y87{bottom:668.293333pt;}
.ydd{bottom:672.853252pt;}
.y37{bottom:675.653252pt;}
.yc{bottom:678.613252pt;}
.yb5{bottom:679.893333pt;}
.y84{bottom:683.013333pt;}
.y60{bottom:685.333252pt;}
.ydc{bottom:688.693252pt;}
.y36{bottom:693.333252pt;}
.yb4{bottom:694.613333pt;}
.yb{bottom:696.213252pt;}
.y86{bottom:697.813333pt;}
.y106{bottom:698.453252pt;}
.y5f{bottom:702.933252pt;}
.ydb{bottom:708.533252pt;}
.yb3{bottom:709.413333pt;}
.y35{bottom:710.933252pt;}
.ya{bottom:713.813252pt;}
.y105{bottom:714.293252pt;}
.y5e{bottom:720.613252pt;}
.yb2{bottom:724.213333pt;}
.yda{bottom:724.453252pt;}
.y83{bottom:724.773252pt;}
.y34{bottom:728.613252pt;}
.y9{bottom:731.493252pt;}
.y104{bottom:734.213252pt;}
.y5d{bottom:738.213252pt;}
.yb1{bottom:738.933333pt;}
.yd9{bottom:744.293252pt;}
.y33{bottom:746.213252pt;}
.y103{bottom:750.053252pt;}
.y8{bottom:753.733252pt;}
.yb0{bottom:753.733333pt;}
.y5c{bottom:755.813252pt;}
.yd8{bottom:760.133252pt;}
.y32{bottom:763.813252pt;}
.y102{bottom:765.973252pt;}
.yaf{bottom:768.533333pt;}
.y7{bottom:771.413252pt;}
.y5b{bottom:773.493252pt;}
.yd7{bottom:780.053252pt;}
.y31{bottom:781.493252pt;}
.yae{bottom:783.253333pt;}
.y101{bottom:785.813252pt;}
.y5a{bottom:791.093252pt;}
.yd6{bottom:795.893252pt;}
.yad{bottom:798.053333pt;}
.y30{bottom:799.093252pt;}
.y6{bottom:800.933252pt;}
.y100{bottom:801.653252pt;}
.y59{bottom:808.773252pt;}
.yd5{bottom:811.813252pt;}
.ya9{bottom:812.853333pt;}
.y2f{bottom:816.773252pt;}
.yff{bottom:817.573252pt;}
.y58{bottom:826.399919pt;}
.yac{bottom:827.600000pt;}
.yd4{bottom:827.679919pt;}
.y2e{bottom:834.399919pt;}
.y5{bottom:836.399919pt;}
.yfe{bottom:837.439919pt;}
.y2d{bottom:851.999919pt;}
.yfd{bottom:853.279919pt;}
.ya8{bottom:854.559919pt;}
.y4{bottom:855.759919pt;}
.y2{bottom:888.479919pt;}
.hf{height:14.080000pt;}
.h17{height:14.106667pt;}
.h11{height:14.160000pt;}
.h12{height:28.880000pt;}
.h16{height:28.906667pt;}
.h7{height:33.901875pt;}
.h10{height:41.770312pt;}
.h14{height:42.054219pt;}
.h13{height:42.067187pt;}
.he{height:42.892500pt;}
.h19{height:47.085938pt;}
.h3{height:47.109375pt;}
.hc{height:47.908125pt;}
.ha{height:48.375000pt;}
.h18{height:50.062500pt;}
.h8{height:52.422344pt;}
.h9{height:52.448437pt;}
.hd{height:52.478750pt;}
.hb{height:53.857500pt;}
.h15{height:57.473437pt;}
.h4{height:58.245469pt;}
.h5{height:59.017500pt;}
.h6{height:59.172500pt;}
.h2{height:945.039919pt;}
.h0{height:945.040000pt;}
.h1{height:945.333333pt;}
.w6{width:64.026667pt;}
.w3{width:73.360000pt;}
.wa{width:73.440000pt;}
.wc{width:85.040000pt;}
.wd{width:85.066667pt;}
.wb{width:96.426667pt;}
.w7{width:148.240000pt;}
.w8{width:148.426667pt;}
.w9{width:164.746667pt;}
.w4{width:170.106667pt;}
.w5{width:170.186667pt;}
.w1{width:661.333333pt;}
.w2{width:661.519990pt;}
.w0{width:661.520000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x16{left:15.040000pt;}
.x23{left:18.640000pt;}
.x21{left:19.760000pt;}
.x22{left:22.746667pt;}
.xf{left:23.920000pt;}
.x1d{left:28.106667pt;}
.x2e{left:29.280000pt;}
.x2a{left:31.360000pt;}
.x30{left:33.040000pt;}
.x2c{left:34.960000pt;}
.x32{left:36.800000pt;}
.x31{left:42.480000pt;}
.x1b{left:43.920000pt;}
.x20{left:46.986667pt;}
.x1e{left:48.480000pt;}
.x1c{left:52.266667pt;}
.x1f{left:56.666667pt;}
.x18{left:59.200000pt;}
.x11{left:60.560000pt;}
.x2{left:68.079990pt;}
.x9{left:70.879990pt;}
.xc{left:73.679990pt;}
.x13{left:77.920000pt;}
.x1{left:92.986657pt;}
.xa{left:95.466657pt;}
.x6{left:98.426657pt;}
.x15{left:115.786657pt;}
.x5{left:120.666657pt;}
.xe{left:124.026667pt;}
.x3{left:128.746657pt;}
.x17{left:132.106667pt;}
.x29{left:160.826667pt;}
.xd{left:180.186657pt;}
.x27{left:185.306657pt;}
.x10{left:197.386667pt;}
.x4{left:221.386657pt;}
.x25{left:224.746657pt;}
.x28{left:225.946657pt;}
.x2b{left:234.266667pt;}
.x8{left:261.306657pt;}
.x7{left:273.386657pt;}
.x19{left:280.346667pt;}
.xb{left:298.133323pt;}
.x2d{left:330.693333pt;}
.x12{left:367.493333pt;}
.x2f{left:415.733333pt;}
.x1a{left:428.773333pt;}
.x26{left:557.839990pt;}
.x24{left:576.879990pt;}
}




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