
    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_00718f0b43dede21d7a053de.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_f578c5287993be06c8c49bab.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_99ce95bba09fc3e64cd57f4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049000;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_6d7fb972b3384806a68f3c24.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_80dbfb0b801b939ac2f5ce4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_260b26bbac2fbd310c2dcb11.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2a56b81918b70dc69b805ce2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.049000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ef30ddf4630bf9fb3eac2761.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_6543cca5e92bac49da7bdac5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0deb6d72b24dc521a52a10d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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:fff;src:url('chunks/assets/font_06fd7db6fddfd023b5c301ca.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;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:ff10;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.035156;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v3{vertical-align:-72.858149px;}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.400000px;}
.v4{vertical-align:27.360000px;}
.ls12{letter-spacing:-0.853806px;}
.lsd{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.630000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls15{letter-spacing:-0.524933px;}
.ls1d{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.089400px;}
.ls14{letter-spacing:-0.082218px;}
.ls10{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.118080px;}
.ls1b{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.388800px;}
.ls0{letter-spacing:0.466560px;}
.ls9{letter-spacing:0.466800px;}
.ls2{letter-spacing:0.558579px;}
.ls16{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.661795px;}
.ls13{letter-spacing:0.664072px;}
.ls1{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.738000px;}
.lsf{letter-spacing:0.792000px;}
.ls4{letter-spacing:0.864000px;}
.ls17{letter-spacing:0.900000px;}
.ls18{letter-spacing:3.888000px;}
.ls7{letter-spacing:8.251185px;}
.ls6{letter-spacing:9.769063px;}
.ls1f{letter-spacing:16.306560px;}
.ls1e{letter-spacing:46.546560px;}
.ls1a{letter-spacing:54.864000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-72.000000px;}
.wse{word-spacing:-27.288000px;}
.wsc{word-spacing:-26.712000px;}
.ws3{word-spacing:-19.293120px;}
.ws9{word-spacing:-18.399718px;}
.ws2{word-spacing:-17.280240px;}
.wsf{word-spacing:-15.768000px;}
.ws0{word-spacing:-15.120000px;}
.wsa{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.050000px;}
.ws4{word-spacing:-11.160000px;}
.ws1{word-spacing:-10.808640px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._5{margin-left:-9.256800px;}
._13{margin-left:-7.939226px;}
._3{margin-left:-2.638560px;}
._2{margin-left:-1.391040px;}
._0{width:1.428960px;}
._1{width:2.509920px;}
._4{width:3.978240px;}
._8{width:5.092764px;}
._d{width:6.372514px;}
._9{width:7.398424px;}
._6{width:8.588160px;}
._c{width:9.679851px;}
._a{width:10.682826px;}
._b{width:11.762064px;}
._e{width:12.994080px;}
._f{width:14.149920px;}
._14{width:16.651680px;}
._11{width:17.856000px;}
._12{width:19.296000px;}
._15{width:21.317280px;}
._10{width:29.099040px;}
._17{width:30.680160px;}
._16{width:31.697280px;}
._7{width:87.393957px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsb{font-size:54.720000px;}
.fsc{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fs9{font-size:72.000000px;}
.fsd{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y74{bottom:4.305000px;}
.y9f{bottom:4.320000px;}
.y76{bottom:4.665000px;}
.y40{bottom:4.680000px;}
.y56{bottom:5.370000px;}
.ya9{bottom:5.745000px;}
.y80{bottom:5.760000px;}
.y78{bottom:6.105000px;}
.y7e{bottom:6.120000px;}
.y2{bottom:7.920000px;}
.y53{bottom:9.751500px;}
.y4{bottom:21.240000px;}
.y73{bottom:23.385000px;}
.y3f{bottom:23.400000px;}
.y48{bottom:30.634500px;}
.y52{bottom:33.514500px;}
.y3e{bottom:42.480000px;}
.y47{bottom:42.514500px;}
.y3{bottom:44.280000px;}
.y46{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y3d{bottom:61.200000px;}
.y45{bottom:68.434500px;}
.y51{bottom:74.554500px;}
.y3c{bottom:80.280000px;}
.y44{bottom:90.034500px;}
.y9c{bottom:90.396000px;}
.y50{bottom:92.194500px;}
.y4f{bottom:98.314500px;}
.y3b{bottom:99.045000px;}
.y9b{bottom:109.476000px;}
.ycc{bottom:111.996000px;}
.y4e{bottom:114.514500px;}
.y6a{bottom:117.036000px;}
.y54{bottom:117.756000px;}
.y3a{bottom:118.125000px;}
.y9a{bottom:128.196000px;}
.ycb{bottom:129.276000px;}
.y4d{bottom:129.994500px;}
.y41{bottom:131.800500px;}
.y39{bottom:136.845000px;}
.y69{bottom:139.356000px;}
.y4c{bottom:145.504500px;}
.yca{bottom:146.592000px;}
.y99{bottom:147.312000px;}
.y43{bottom:152.344500px;}
.y38{bottom:155.565000px;}
.y68{bottom:158.475000px;}
.y4b{bottom:160.984500px;}
.y42{bottom:163.144500px;}
.yc9{bottom:163.875000px;}
.y98{bottom:166.035000px;}
.y37{bottom:174.645000px;}
.y4a{bottom:176.104500px;}
.y67{bottom:180.795000px;}
.yc8{bottom:181.155000px;}
.y97{bottom:185.115000px;}
.y36{bottom:193.365000px;}
.yc7{bottom:198.435000px;}
.y66{bottom:199.875000px;}
.y96{bottom:203.835000px;}
.y35{bottom:212.445000px;}
.yc6{bottom:215.715000px;}
.y65{bottom:222.195000px;}
.y95{bottom:222.915000px;}
.y34{bottom:231.195000px;}
.yc5{bottom:232.635000px;}
.y94{bottom:241.635000px;}
.yc4{bottom:249.915000px;}
.y33{bottom:250.275000px;}
.y93{bottom:260.355000px;}
.yc3{bottom:267.195000px;}
.y32{bottom:268.995000px;}
.y64{bottom:272.595000px;}
.y92{bottom:279.465000px;}
.y1e{bottom:282.315000px;}
.yc2{bottom:284.505000px;}
.y31{bottom:288.075000px;}
.y63{bottom:291.705000px;}
.y91{bottom:298.185000px;}
.yc1{bottom:301.785000px;}
.y1d{bottom:306.435000px;}
.y30{bottom:306.795000px;}
.y62{bottom:314.025000px;}
.y90{bottom:317.265000px;}
.yc0{bottom:319.065000px;}
.ye{bottom:324.465000px;}
.y2f{bottom:325.515000px;}
.y1c{bottom:330.555000px;}
.y61{bottom:333.105000px;}
.y8f{bottom:335.985000px;}
.ybf{bottom:336.345000px;}
.y2e{bottom:344.625000px;}
.ybe{bottom:353.625000px;}
.y1b{bottom:354.705000px;}
.y8e{bottom:355.065000px;}
.y60{bottom:355.785000px;}
.ybd{bottom:370.905000px;}
.y2d{bottom:371.985000px;}
.y8d{bottom:373.785000px;}
.y5f{bottom:378.105000px;}
.y1a{bottom:378.825000px;}
.ybc{bottom:388.185000px;}
.y2c{bottom:389.265000px;}
.y8c{bottom:392.865000px;}
.y5e{bottom:401.865000px;}
.y19{bottom:402.945000px;}
.ybb{bottom:405.510000px;}
.y2b{bottom:406.545000px;}
.y8b{bottom:411.630000px;}
.yba{bottom:422.790000px;}
.y2a{bottom:423.825000px;}
.y18{bottom:427.425000px;}
.y8a{bottom:430.710000px;}
.yb9{bottom:440.430000px;}
.y29{bottom:441.105000px;}
.y89{bottom:449.430000px;}
.y17{bottom:451.545000px;}
.y28{bottom:458.385000px;}
.y88{bottom:468.150000px;}
.y16{bottom:475.665000px;}
.y27{bottom:476.025000px;}
.y87{bottom:487.230000px;}
.y26{bottom:493.350000px;}
.y15{bottom:499.830000px;}
.y86{bottom:505.950000px;}
.y25{bottom:510.630000px;}
.y14{bottom:523.950000px;}
.y85{bottom:525.030000px;}
.y24{bottom:527.910000px;}
.y84{bottom:543.780000px;}
.y23{bottom:545.190000px;}
.y13{bottom:548.070000px;}
.y22{bottom:562.470000px;}
.yb8{bottom:562.860000px;}
.y83{bottom:567.900000px;}
.y12{bottom:572.190000px;}
.y21{bottom:579.750000px;}
.yb7{bottom:581.580000px;}
.y82{bottom:590.580000px;}
.y11{bottom:596.310000px;}
.y20{bottom:597.030000px;}
.yb6{bottom:600.660000px;}
.y81{bottom:613.620000px;}
.yb5{bottom:619.380000px;}
.y10{bottom:620.460000px;}
.y1f{bottom:631.620000px;}
.y7f{bottom:636.300000px;}
.yb4{bottom:638.100000px;}
.yf{bottom:644.580000px;}
.yb3{bottom:657.180000px;}
.y7d{bottom:658.980000px;}
.yb2{bottom:675.930000px;}
.y7c{bottom:681.705000px;}
.yb1{bottom:695.010000px;}
.y7b{bottom:704.385000px;}
.yb0{bottom:713.730000px;}
.y7a{bottom:727.065000px;}
.yaf{bottom:732.810000px;}
.y79{bottom:749.745000px;}
.yae{bottom:751.530000px;}
.yad{bottom:770.610000px;}
.y77{bottom:772.425000px;}
.yde{bottom:788.250000px;}
.yac{bottom:789.330000px;}
.y75{bottom:795.105000px;}
.yab{bottom:808.455000px;}
.ydd{bottom:810.975000px;}
.y72{bottom:814.950000px;}
.ydc{bottom:828.615000px;}
.yaa{bottom:832.590000px;}
.ydb{bottom:845.895000px;}
.ya8{bottom:855.270000px;}
.y71{bottom:857.775000px;}
.yda{bottom:863.175000px;}
.y70{bottom:876.855000px;}
.ya7{bottom:877.950000px;}
.yd9{bottom:880.095000px;}
.y6f{bottom:895.575000px;}
.yd8{bottom:897.375000px;}
.ya6{bottom:900.630000px;}
.y6e{bottom:914.655000px;}
.ya5{bottom:923.310000px;}
.yd7{bottom:931.935000px;}
.y6d{bottom:933.405000px;}
.ya4{bottom:946.005000px;}
.yd6{bottom:949.245000px;}
.y6c{bottom:952.485000px;}
.yd5{bottom:966.525000px;}
.ya3{bottom:968.685000px;}
.y6b{bottom:971.205000px;}
.yd{bottom:981.285000px;}
.yd4{bottom:983.805000px;}
.y5d{bottom:990.285000px;}
.ya2{bottom:991.365000px;}
.yc{bottom:993.525000px;}
.yd3{bottom:1001.085000px;}
.y5c{bottom:1009.005000px;}
.ya1{bottom:1014.405000px;}
.yd2{bottom:1018.365000px;}
.yb{bottom:1019.445000px;}
.y5b{bottom:1027.725000px;}
.yd1{bottom:1035.645000px;}
.ya0{bottom:1037.085000px;}
.ya{bottom:1042.125000px;}
.y5a{bottom:1046.805000px;}
.yd0{bottom:1052.925000px;}
.y9e{bottom:1059.765000px;}
.y59{bottom:1065.570000px;}
.y9{bottom:1067.730000px;}
.ycf{bottom:1069.890000px;}
.y9d{bottom:1079.250000px;}
.y58{bottom:1084.650000px;}
.y8{bottom:1086.450000px;}
.yce{bottom:1087.170000px;}
.y55{bottom:1089.720000px;}
.y57{bottom:1103.370000px;}
.ycd{bottom:1104.450000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.ha{height:4.165313px;}
.h16{height:5.650313px;}
.h23{height:18.750000px;}
.h1f{height:19.101000px;}
.h20{height:21.945000px;}
.h22{height:21.960000px;}
.h21{height:21.996000px;}
.h19{height:27.720000px;}
.h13{height:29.678906px;}
.h6{height:30.077578px;}
.h12{height:35.332031px;}
.h1e{height:37.785000px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h9{height:49.712344px;}
.h14{height:53.677969px;}
.h18{height:54.426094px;}
.h15{height:55.147500px;}
.he{height:55.927736px;}
.hf{height:57.672000px;}
.h5{height:59.357813px;}
.h10{height:60.155156px;}
.h25{height:60.952500px;}
.h17{height:61.143509px;}
.h24{height:62.163910px;}
.h1a{height:63.455625px;}
.h8{height:64.112344px;}
.h3{height:65.884219px;}
.h1b{height:71.613281px;}
.h1d{height:73.722656px;}
.h1c{height:74.004654px;}
.h7{height:77.280480px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h11{height:191.925000px;}
.hb{height:653.925000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w8{width:166.755000px;}
.wb{width:178.605000px;}
.w9{width:258.555000px;}
.wc{width:277.320000px;}
.w7{width:425.670000px;}
.wa{width:456.300000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:6.876000px;}
.x17{left:8.266500px;}
.x21{left:12.255000px;}
.x4{left:13.305000px;}
.x15{left:14.746500px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x33{left:21.630000px;}
.x16{left:26.626500px;}
.x1d{left:29.146500px;}
.x36{left:35.295000px;}
.x6{left:38.145000px;}
.xf{left:43.906500px;}
.x1c{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x1f{left:57.262500px;}
.x24{left:58.695000px;}
.x2e{left:60.840000px;}
.x19{left:62.295000px;}
.x2c{left:63.720000px;}
.x1e{left:66.265500px;}
.x34{left:69.495000px;}
.x2b{left:70.560000px;}
.x35{left:72.015000px;}
.x13{left:73.105500px;}
.x12{left:75.265500px;}
.x30{left:76.695000px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x31{left:87.495000px;}
.x2{left:95.425500px;}
.x20{left:102.985500px;}
.x1a{left:106.945500px;}
.x2d{left:109.110000px;}
.x28{left:113.436000px;}
.x2f{left:115.950000px;}
.x11{left:124.585500px;}
.x26{left:140.472000px;}
.x22{left:146.580000px;}
.x3{left:182.250000px;}
.x23{left:190.890000px;}
.x18{left:218.970000px;}
.x29{left:233.745000px;}
.xc{left:328.470000px;}
.xb{left:387.150000px;}
.x32{left:397.590000px;}
.x2a{left:400.860000px;}
.xa{left:611.535000px;}
.x27{left:713.445000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v3{vertical-align:-64.762799pt;}
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.v4{vertical-align:24.320000pt;}
.ls12{letter-spacing:-0.758939pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls15{letter-spacing:-0.466607pt;}
.ls1d{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.079467pt;}
.ls14{letter-spacing:-0.073083pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.104960pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.345600pt;}
.ls0{letter-spacing:0.414720pt;}
.ls9{letter-spacing:0.414933pt;}
.ls2{letter-spacing:0.496515pt;}
.ls16{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.588262pt;}
.ls13{letter-spacing:0.590286pt;}
.ls1{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.656000pt;}
.lsf{letter-spacing:0.704000pt;}
.ls4{letter-spacing:0.768000pt;}
.ls17{letter-spacing:0.800000pt;}
.ls18{letter-spacing:3.456000pt;}
.ls7{letter-spacing:7.334387pt;}
.ls6{letter-spacing:8.683612pt;}
.ls1f{letter-spacing:14.494720pt;}
.ls1e{letter-spacing:41.374720pt;}
.ls1a{letter-spacing:48.768000pt;}
.wsd{word-spacing:-64.000000pt;}
.wse{word-spacing:-24.256000pt;}
.wsc{word-spacing:-23.744000pt;}
.ws3{word-spacing:-17.149440pt;}
.ws9{word-spacing:-16.355305pt;}
.ws2{word-spacing:-15.360213pt;}
.wsf{word-spacing:-14.016000pt;}
.ws0{word-spacing:-13.440000pt;}
.wsa{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.600000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws1{word-spacing:-9.607680pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._5{margin-left:-8.228267pt;}
._13{margin-left:-7.057090pt;}
._3{margin-left:-2.345387pt;}
._2{margin-left:-1.236480pt;}
._0{width:1.270187pt;}
._1{width:2.231040pt;}
._4{width:3.536213pt;}
._8{width:4.526902pt;}
._d{width:5.664457pt;}
._9{width:6.576377pt;}
._6{width:7.633920pt;}
._c{width:8.604312pt;}
._a{width:9.495845pt;}
._b{width:10.455168pt;}
._e{width:11.550293pt;}
._f{width:12.577707pt;}
._14{width:14.801493pt;}
._11{width:15.872000pt;}
._12{width:17.152000pt;}
._15{width:18.948693pt;}
._10{width:25.865813pt;}
._17{width:27.271253pt;}
._16{width:28.175360pt;}
._7{width:77.683517pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsb{font-size:48.640000pt;}
.fsc{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fs9{font-size:64.000000pt;}
.fsd{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y74{bottom:3.826667pt;}
.y9f{bottom:3.840000pt;}
.y76{bottom:4.146667pt;}
.y40{bottom:4.160000pt;}
.y56{bottom:4.773333pt;}
.ya9{bottom:5.106667pt;}
.y80{bottom:5.120000pt;}
.y78{bottom:5.426667pt;}
.y7e{bottom:5.440000pt;}
.y2{bottom:7.040000pt;}
.y53{bottom:8.668000pt;}
.y4{bottom:18.880000pt;}
.y73{bottom:20.786667pt;}
.y3f{bottom:20.800000pt;}
.y48{bottom:27.230667pt;}
.y52{bottom:29.790667pt;}
.y3e{bottom:37.760000pt;}
.y47{bottom:37.790667pt;}
.y3{bottom:39.360000pt;}
.y46{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y3d{bottom:54.400000pt;}
.y45{bottom:60.830667pt;}
.y51{bottom:66.270667pt;}
.y3c{bottom:71.360000pt;}
.y44{bottom:80.030667pt;}
.y9c{bottom:80.352000pt;}
.y50{bottom:81.950667pt;}
.y4f{bottom:87.390667pt;}
.y3b{bottom:88.040000pt;}
.y9b{bottom:97.312000pt;}
.ycc{bottom:99.552000pt;}
.y4e{bottom:101.790667pt;}
.y6a{bottom:104.032000pt;}
.y54{bottom:104.672000pt;}
.y3a{bottom:105.000000pt;}
.y9a{bottom:113.952000pt;}
.ycb{bottom:114.912000pt;}
.y4d{bottom:115.550667pt;}
.y41{bottom:117.156000pt;}
.y39{bottom:121.640000pt;}
.y69{bottom:123.872000pt;}
.y4c{bottom:129.337333pt;}
.yca{bottom:130.304000pt;}
.y99{bottom:130.944000pt;}
.y43{bottom:135.417333pt;}
.y38{bottom:138.280000pt;}
.y68{bottom:140.866667pt;}
.y4b{bottom:143.097333pt;}
.y42{bottom:145.017333pt;}
.yc9{bottom:145.666667pt;}
.y98{bottom:147.586667pt;}
.y37{bottom:155.240000pt;}
.y4a{bottom:156.537333pt;}
.y67{bottom:160.706667pt;}
.yc8{bottom:161.026667pt;}
.y97{bottom:164.546667pt;}
.y36{bottom:171.880000pt;}
.yc7{bottom:176.386667pt;}
.y66{bottom:177.666667pt;}
.y96{bottom:181.186667pt;}
.y35{bottom:188.840000pt;}
.yc6{bottom:191.746667pt;}
.y65{bottom:197.506667pt;}
.y95{bottom:198.146667pt;}
.y34{bottom:205.506667pt;}
.yc5{bottom:206.786667pt;}
.y94{bottom:214.786667pt;}
.yc4{bottom:222.146667pt;}
.y33{bottom:222.466667pt;}
.y93{bottom:231.426667pt;}
.yc3{bottom:237.506667pt;}
.y32{bottom:239.106667pt;}
.y64{bottom:242.306667pt;}
.y92{bottom:248.413333pt;}
.y1e{bottom:250.946667pt;}
.yc2{bottom:252.893333pt;}
.y31{bottom:256.066667pt;}
.y63{bottom:259.293333pt;}
.y91{bottom:265.053333pt;}
.yc1{bottom:268.253333pt;}
.y1d{bottom:272.386667pt;}
.y30{bottom:272.706667pt;}
.y62{bottom:279.133333pt;}
.y90{bottom:282.013333pt;}
.yc0{bottom:283.613333pt;}
.ye{bottom:288.413333pt;}
.y2f{bottom:289.346667pt;}
.y1c{bottom:293.826667pt;}
.y61{bottom:296.093333pt;}
.y8f{bottom:298.653333pt;}
.ybf{bottom:298.973333pt;}
.y2e{bottom:306.333333pt;}
.ybe{bottom:314.333333pt;}
.y1b{bottom:315.293333pt;}
.y8e{bottom:315.613333pt;}
.y60{bottom:316.253333pt;}
.ybd{bottom:329.693333pt;}
.y2d{bottom:330.653333pt;}
.y8d{bottom:332.253333pt;}
.y5f{bottom:336.093333pt;}
.y1a{bottom:336.733333pt;}
.ybc{bottom:345.053333pt;}
.y2c{bottom:346.013333pt;}
.y8c{bottom:349.213333pt;}
.y5e{bottom:357.213333pt;}
.y19{bottom:358.173333pt;}
.ybb{bottom:360.453333pt;}
.y2b{bottom:361.373333pt;}
.y8b{bottom:365.893333pt;}
.yba{bottom:375.813333pt;}
.y2a{bottom:376.733333pt;}
.y18{bottom:379.933333pt;}
.y8a{bottom:382.853333pt;}
.yb9{bottom:391.493333pt;}
.y29{bottom:392.093333pt;}
.y89{bottom:399.493333pt;}
.y17{bottom:401.373333pt;}
.y28{bottom:407.453333pt;}
.y88{bottom:416.133333pt;}
.y16{bottom:422.813333pt;}
.y27{bottom:423.133333pt;}
.y87{bottom:433.093333pt;}
.y26{bottom:438.533333pt;}
.y15{bottom:444.293333pt;}
.y86{bottom:449.733333pt;}
.y25{bottom:453.893333pt;}
.y14{bottom:465.733333pt;}
.y85{bottom:466.693333pt;}
.y24{bottom:469.253333pt;}
.y84{bottom:483.360000pt;}
.y23{bottom:484.613333pt;}
.y13{bottom:487.173333pt;}
.y22{bottom:499.973333pt;}
.yb8{bottom:500.320000pt;}
.y83{bottom:504.800000pt;}
.y12{bottom:508.613333pt;}
.y21{bottom:515.333333pt;}
.yb7{bottom:516.960000pt;}
.y82{bottom:524.960000pt;}
.y11{bottom:530.053333pt;}
.y20{bottom:530.693333pt;}
.yb6{bottom:533.920000pt;}
.y81{bottom:545.440000pt;}
.yb5{bottom:550.560000pt;}
.y10{bottom:551.520000pt;}
.y1f{bottom:561.440000pt;}
.y7f{bottom:565.600000pt;}
.yb4{bottom:567.200000pt;}
.yf{bottom:572.960000pt;}
.yb3{bottom:584.160000pt;}
.y7d{bottom:585.760000pt;}
.yb2{bottom:600.826667pt;}
.y7c{bottom:605.960000pt;}
.yb1{bottom:617.786667pt;}
.y7b{bottom:626.120000pt;}
.yb0{bottom:634.426667pt;}
.y7a{bottom:646.280000pt;}
.yaf{bottom:651.386667pt;}
.y79{bottom:666.440000pt;}
.yae{bottom:668.026667pt;}
.yad{bottom:684.986667pt;}
.y77{bottom:686.600000pt;}
.yde{bottom:700.666667pt;}
.yac{bottom:701.626667pt;}
.y75{bottom:706.760000pt;}
.yab{bottom:718.626667pt;}
.ydd{bottom:720.866667pt;}
.y72{bottom:724.400000pt;}
.ydc{bottom:736.546667pt;}
.yaa{bottom:740.080000pt;}
.ydb{bottom:751.906667pt;}
.ya8{bottom:760.240000pt;}
.y71{bottom:762.466667pt;}
.yda{bottom:767.266667pt;}
.y70{bottom:779.426667pt;}
.ya7{bottom:780.400000pt;}
.yd9{bottom:782.306667pt;}
.y6f{bottom:796.066667pt;}
.yd8{bottom:797.666667pt;}
.ya6{bottom:800.560000pt;}
.y6e{bottom:813.026667pt;}
.ya5{bottom:820.720000pt;}
.yd7{bottom:828.386667pt;}
.y6d{bottom:829.693333pt;}
.ya4{bottom:840.893333pt;}
.yd6{bottom:843.773333pt;}
.y6c{bottom:846.653333pt;}
.yd5{bottom:859.133333pt;}
.ya3{bottom:861.053333pt;}
.y6b{bottom:863.293333pt;}
.yd{bottom:872.253333pt;}
.yd4{bottom:874.493333pt;}
.y5d{bottom:880.253333pt;}
.ya2{bottom:881.213333pt;}
.yc{bottom:883.133333pt;}
.yd3{bottom:889.853333pt;}
.y5c{bottom:896.893333pt;}
.ya1{bottom:901.693333pt;}
.yd2{bottom:905.213333pt;}
.yb{bottom:906.173333pt;}
.y5b{bottom:913.533333pt;}
.yd1{bottom:920.573333pt;}
.ya0{bottom:921.853333pt;}
.ya{bottom:926.333333pt;}
.y5a{bottom:930.493333pt;}
.yd0{bottom:935.933333pt;}
.y9e{bottom:942.013333pt;}
.y59{bottom:947.173333pt;}
.y9{bottom:949.093333pt;}
.ycf{bottom:951.013333pt;}
.y9d{bottom:959.333333pt;}
.y58{bottom:964.133333pt;}
.y8{bottom:965.733333pt;}
.yce{bottom:966.373333pt;}
.y55{bottom:968.640000pt;}
.y57{bottom:980.773333pt;}
.ycd{bottom:981.733333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.ha{height:3.702500pt;}
.h16{height:5.022500pt;}
.h23{height:16.666667pt;}
.h1f{height:16.978667pt;}
.h20{height:19.506667pt;}
.h22{height:19.520000pt;}
.h21{height:19.552000pt;}
.h19{height:24.640000pt;}
.h13{height:26.381250pt;}
.h6{height:26.735625pt;}
.h12{height:31.406250pt;}
.h1e{height:33.586667pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h9{height:44.188750pt;}
.h14{height:47.713750pt;}
.h18{height:48.378750pt;}
.h15{height:49.020000pt;}
.he{height:49.713543pt;}
.hf{height:51.264000pt;}
.h5{height:52.762500pt;}
.h10{height:53.471250pt;}
.h25{height:54.180000pt;}
.h17{height:54.349786pt;}
.h24{height:55.256809pt;}
.h1a{height:56.405000pt;}
.h8{height:56.988750pt;}
.h3{height:58.563750pt;}
.h1b{height:63.656250pt;}
.h1d{height:65.531250pt;}
.h1c{height:65.781915pt;}
.h7{height:68.693760pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h11{height:170.600000pt;}
.hb{height:581.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w8{width:148.226667pt;}
.wb{width:158.760000pt;}
.w9{width:229.826667pt;}
.wc{width:246.506667pt;}
.w7{width:378.373333pt;}
.wa{width:405.600000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.112000pt;}
.x17{left:7.348000pt;}
.x21{left:10.893333pt;}
.x4{left:11.826667pt;}
.x15{left:13.108000pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x33{left:19.226667pt;}
.x16{left:23.668000pt;}
.x1d{left:25.908000pt;}
.x36{left:31.373333pt;}
.x6{left:33.906667pt;}
.xf{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x1f{left:50.900000pt;}
.x24{left:52.173333pt;}
.x2e{left:54.080000pt;}
.x19{left:55.373333pt;}
.x2c{left:56.640000pt;}
.x1e{left:58.902667pt;}
.x34{left:61.773333pt;}
.x2b{left:62.720000pt;}
.x35{left:64.013333pt;}
.x13{left:64.982667pt;}
.x12{left:66.902667pt;}
.x30{left:68.173333pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x31{left:77.773333pt;}
.x2{left:84.822667pt;}
.x20{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x2d{left:96.986667pt;}
.x28{left:100.832000pt;}
.x2f{left:103.066667pt;}
.x11{left:110.742667pt;}
.x26{left:124.864000pt;}
.x22{left:130.293333pt;}
.x3{left:162.000000pt;}
.x23{left:169.680000pt;}
.x18{left:194.640000pt;}
.x29{left:207.773333pt;}
.xc{left:291.973333pt;}
.xb{left:344.133333pt;}
.x32{left:353.413333pt;}
.x2a{left:356.320000pt;}
.xa{left:543.586667pt;}
.x27{left:634.173333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




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