
    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_ffd142b0c580129a21a3f6d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_4712c1de9e200b8b8c06973e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_5ee8c55c5b7f27896ce0667c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.729492;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_1b6dd9389be1e35b4af4fc87.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_56faf16d494560c08d35b62c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_8418b2b475a1d28d4de97b41.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5ebe673e266e9871d8354f07.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937012;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_0e46dcdd0d1f4a366d101b0c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9f79026847ebc8313bf8e87d.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e1ddf90107cacaeed59f3405.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_c40a7773bc3104ff8854b1d2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_645abf81229fd5af693ca8a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.091309;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_5ecbc01c91cd2b030a141a8d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_bb1078a7276c572fd749e7de.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5930b17a5d3e2048f0d5cc4e.woff2')format("woff");}.fff{font-family:fff;line-height:0.977539;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_ac9619cc356b1b81640f63d5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.800293;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:ff11;src:url('chunks/assets/font_8b7025dd430484eb4a1c123d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688477;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:ff12;src:url('chunks/assets/font_c4cd7a3d2cdadc9e3cc8c13e.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.088379;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:ff13;src:url('chunks/assets/font_84a6fc9cf9f8ea08d9e4c3e8.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.064941;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:ff14;src:url('chunks/assets/font_664bde34a81cab1cc4c1bb64.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_8b24373679fd1d572d3bac6d.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.091309;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:ff16;src:url('chunks/assets/font_4eed23f1923efea64f726953.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.957031;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:ff17;src:url('chunks/assets/font_47407beb188a42602acc7f7f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.935059;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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-2.160000px;}
.ls10{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-1.068000px;}
.lsf{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.349200px;}
.ls7{letter-spacing:-0.288000px;}
.ls1{letter-spacing:-0.034560px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.129600px;}
.ls6{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.418800px;}
.ls8{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.lsa{letter-spacing:3.600000px;}
.lsc{letter-spacing:7.200000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws8{word-spacing:-18.504000px;}
.ws9{word-spacing:-18.144000px;}
.ws7{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.064000px;}
.ws1{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.935680px;}
.ws4{word-spacing:-10.356240px;}
.ws3{word-spacing:-10.067040px;}
.ws2{word-spacing:-9.937440px;}
.ws6{word-spacing:-9.588240px;}
.wsa{word-spacing:-8.869440px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-6.333120px;}
._d{margin-left:-4.796160px;}
._7{margin-left:-3.348000px;}
._10{margin-left:-2.234640px;}
._0{margin-left:-1.134000px;}
._4{width:1.397040px;}
._5{width:2.952000px;}
._c{width:4.032000px;}
._a{width:5.976000px;}
._9{width:7.542000px;}
._12{width:8.634000px;}
._f{width:10.437120px;}
._b{width:12.060000px;}
._17{width:13.693920px;}
._11{width:14.808000px;}
._6{width:15.840000px;}
._8{width:16.980960px;}
._18{width:19.848000px;}
._15{width:21.844080px;}
._16{width:23.545440px;}
._19{width:24.966000px;}
._13{width:26.496000px;}
._14{width:27.775200px;}
._1a{width:28.782000px;}
._1d{width:29.854560px;}
._2{width:30.870000px;}
._26{width:33.048000px;}
._25{width:34.542000px;}
._1f{width:35.856000px;}
._1e{width:37.053600px;}
._1b{width:38.160000px;}
._1c{width:39.810000px;}
._20{width:41.544000px;}
._23{width:43.200000px;}
._24{width:44.568000px;}
._21{width:48.816000px;}
._22{width:49.896000px;}
._3{width:1091.557200px;}
._1{width:2098.266000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(238,78,60);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(166,166,166);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(38,38,38);}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:1.080000px;}
.y30{bottom:1.410000px;}
.y2f{bottom:2.670000px;}
.y36{bottom:3.240000px;}
.y3{bottom:4.500000px;}
.yb6{bottom:5.940000px;}
.y69{bottom:6.120000px;}
.y32{bottom:9.330000px;}
.yd9{bottom:13.860000px;}
.y68{bottom:15.480000px;}
.ydc{bottom:15.660000px;}
.yad{bottom:15.840000px;}
.y3e{bottom:22.680000px;}
.y2{bottom:24.660000px;}
.y39{bottom:28.440000px;}
.y35{bottom:37.620000px;}
.y38{bottom:41.940000px;}
.y1{bottom:42.660000px;}
.y33{bottom:62.100000px;}
.y92{bottom:123.660000px;}
.y2d{bottom:127.800000px;}
.yd8{bottom:131.400000px;}
.y67{bottom:132.480000px;}
.yb5{bottom:138.600000px;}
.y91{bottom:147.420000px;}
.y2c{bottom:149.580000px;}
.yd7{bottom:155.160000px;}
.y66{bottom:156.240000px;}
.yb4{bottom:162.360000px;}
.y90{bottom:171.180000px;}
.y2b{bottom:173.340000px;}
.yd6{bottom:178.920000px;}
.y65{bottom:180.000000px;}
.yb3{bottom:186.120000px;}
.y8f{bottom:194.940000px;}
.yd5{bottom:202.680000px;}
.y64{bottom:203.760000px;}
.y2a{bottom:204.480000px;}
.yb2{bottom:210.090000px;}
.y8e{bottom:218.910000px;}
.yd4{bottom:226.650000px;}
.y87{bottom:227.550000px;}
.y63{bottom:227.730000px;}
.y29{bottom:228.810000px;}
.yba{bottom:233.490000px;}
.yb1{bottom:233.850000px;}
.y8d{bottom:242.670000px;}
.yd3{bottom:250.410000px;}
.y62{bottom:251.490000px;}
.y28{bottom:252.570000px;}
.yb0{bottom:257.610000px;}
.yac{bottom:266.070000px;}
.y8c{bottom:266.430000px;}
.yd2{bottom:274.170000px;}
.y61{bottom:275.250000px;}
.y27{bottom:276.330000px;}
.yaf{bottom:281.370000px;}
.yab{bottom:289.830000px;}
.y8b{bottom:290.190000px;}
.yd1{bottom:297.930000px;}
.y60{bottom:299.010000px;}
.y26{bottom:300.270000px;}
.yae{bottom:305.310000px;}
.y8a{bottom:314.130000px;}
.yd0{bottom:321.870000px;}
.y86{bottom:322.410000px;}
.y5f{bottom:322.950000px;}
.y25{bottom:324.030000px;}
.yaa{bottom:329.070000px;}
.y89{bottom:337.890000px;}
.ycf{bottom:345.630000px;}
.y85{bottom:346.350000px;}
.y5e{bottom:346.710000px;}
.y24{bottom:347.790000px;}
.ya9{bottom:352.830000px;}
.y88{bottom:361.650000px;}
.yce{bottom:369.030000px;}
.y5d{bottom:370.470000px;}
.y23{bottom:371.550000px;}
.ya8{bottom:376.590000px;}
.y84{bottom:385.410000px;}
.ycd{bottom:393.150000px;}
.y5c{bottom:394.230000px;}
.y22{bottom:395.490000px;}
.ya7{bottom:400.530000px;}
.y83{bottom:409.350000px;}
.ycc{bottom:417.090000px;}
.y5b{bottom:418.170000px;}
.y21{bottom:419.250000px;}
.ya6{bottom:424.290000px;}
.y82{bottom:433.110000px;}
.ycb{bottom:440.895000px;}
.y5a{bottom:441.975000px;}
.ya5{bottom:448.095000px;}
.y20{bottom:450.435000px;}
.y81{bottom:456.915000px;}
.yca{bottom:464.655000px;}
.y59{bottom:465.735000px;}
.y1f{bottom:470.415000px;}
.ya4{bottom:471.855000px;}
.y80{bottom:480.675000px;}
.yc9{bottom:488.415000px;}
.y58{bottom:489.495000px;}
.ya3{bottom:495.795000px;}
.y1e{bottom:498.315000px;}
.y7f{bottom:504.435000px;}
.yc8{bottom:512.355000px;}
.y57{bottom:513.435000px;}
.ya2{bottom:519.555000px;}
.y1d{bottom:521.355000px;}
.y7e{bottom:528.375000px;}
.yc7{bottom:536.115000px;}
.y56{bottom:537.195000px;}
.ya1{bottom:543.315000px;}
.y1c{bottom:544.575000px;}
.y7d{bottom:552.135000px;}
.yc6{bottom:559.875000px;}
.y55{bottom:560.955000px;}
.ya0{bottom:567.075000px;}
.y1b{bottom:567.795000px;}
.y7c{bottom:575.895000px;}
.yc5{bottom:583.275000px;}
.y54{bottom:584.715000px;}
.y1a{bottom:588.315000px;}
.y9f{bottom:591.015000px;}
.y7b{bottom:599.655000px;}
.y19{bottom:601.095000px;}
.yc4{bottom:607.575000px;}
.y53{bottom:608.655000px;}
.y9e{bottom:614.775000px;}
.y7a{bottom:623.595000px;}
.y18{bottom:628.815000px;}
.yc3{bottom:631.335000px;}
.y9d{bottom:638.535000px;}
.y52{bottom:646.995000px;}
.y79{bottom:647.355000px;}
.y17{bottom:652.035000px;}
.yc2{bottom:655.095000px;}
.y9c{bottom:662.295000px;}
.y78{bottom:671.115000px;}
.y16{bottom:675.075000px;}
.yc1{bottom:678.885000px;}
.y51{bottom:685.365000px;}
.y9b{bottom:686.085000px;}
.y77{bottom:694.905000px;}
.y15{bottom:698.325000px;}
.yc0{bottom:702.645000px;}
.y50{bottom:707.685000px;}
.y9a{bottom:710.025000px;}
.y14{bottom:718.845000px;}
.ybf{bottom:726.585000px;}
.y4f{bottom:729.825000px;}
.y13{bottom:731.805000px;}
.y99{bottom:733.785000px;}
.y76{bottom:742.605000px;}
.ybe{bottom:750.345000px;}
.y4e{bottom:752.145000px;}
.y98{bottom:757.545000px;}
.y12{bottom:759.345000px;}
.y75{bottom:766.365000px;}
.ybd{bottom:774.105000px;}
.y97{bottom:781.305000px;}
.y11{bottom:782.565000px;}
.y4d{bottom:790.125000px;}
.ybc{bottom:797.865000px;}
.y96{bottom:805.245000px;}
.y10{bottom:805.785000px;}
.yb9{bottom:813.705000px;}
.y4c{bottom:814.065000px;}
.ybb{bottom:828.645000px;}
.yf{bottom:828.825000px;}
.y95{bottom:829.005000px;}
.yb8{bottom:837.465000px;}
.y4b{bottom:837.825000px;}
.ye{bottom:852.045000px;}
.y94{bottom:852.765000px;}
.yb7{bottom:861.225000px;}
.y4a{bottom:861.585000px;}
.yd{bottom:872.745000px;}
.y93{bottom:876.525000px;}
.y49{bottom:885.345000px;}
.yc{bottom:893.805000px;}
.y74{bottom:900.465000px;}
.y48{bottom:909.285000px;}
.yb{bottom:922.290000px;}
.y73{bottom:924.270000px;}
.y47{bottom:933.090000px;}
.y72{bottom:948.030000px;}
.ya{bottom:950.550000px;}
.y46{bottom:956.850000px;}
.ydb{bottom:963.510000px;}
.y71{bottom:971.790000px;}
.y9{bottom:973.590000px;}
.y45{bottom:980.610000px;}
.y31{bottom:983.880000px;}
.y2e{bottom:991.260000px;}
.y8{bottom:993.390000px;}
.y70{bottom:995.730000px;}
.y44{bottom:1004.370000px;}
.yda{bottom:1018.770000px;}
.y6f{bottom:1019.490000px;}
.y7{bottom:1027.590000px;}
.y43{bottom:1028.310000px;}
.y6e{bottom:1043.250000px;}
.y42{bottom:1052.070000px;}
.y6{bottom:1062.870000px;}
.y6d{bottom:1067.010000px;}
.y41{bottom:1075.830000px;}
.y6c{bottom:1090.950000px;}
.y40{bottom:1099.590000px;}
.y5{bottom:1101.030000px;}
.y6b{bottom:1114.710000px;}
.y3f{bottom:1138.110000px;}
.y6a{bottom:1138.470000px;}
.y4{bottom:1139.190000px;}
.y3d{bottom:1169.460000px;}
.y3c{bottom:1183.500000px;}
.y3b{bottom:1197.540000px;}
.y37{bottom:1207.800000px;}
.y3a{bottom:1220.400000px;}
.h14{height:13.320000px;}
.h12{height:14.580000px;}
.h23{height:18.000000px;}
.h21{height:18.180000px;}
.h16{height:21.240000px;}
.h1a{height:24.380859px;}
.h17{height:24.660000px;}
.h1b{height:36.168398px;}
.h13{height:38.464805px;}
.h5{height:38.469727px;}
.h2{height:39.468516px;}
.h1c{height:41.974453px;}
.h22{height:42.351328px;}
.h6{height:42.573164px;}
.hc{height:42.759141px;}
.h19{height:47.650430px;}
.h18{height:49.680000px;}
.ha{height:50.294531px;}
.h11{height:51.998203px;}
.h15{height:52.817344px;}
.h4{height:53.709961px;}
.h8{height:54.421875px;}
.h1f{height:57.636562px;}
.h1e{height:58.154062px;}
.hf{height:59.343750px;}
.he{height:63.175781px;}
.hd{height:63.210938px;}
.h3{height:65.884219px;}
.hb{height:67.824844px;}
.h10{height:70.628906px;}
.h9{height:70.664062px;}
.h24{height:71.613281px;}
.h1d{height:72.562500px;}
.h7{height:73.956797px;}
.h20{height:82.635820px;}
.h25{height:93.983203px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:77.400000px;}
.w6{width:79.020000px;}
.w7{width:96.300000px;}
.w2{width:104.940000px;}
.w3{width:132.480000px;}
.w4{width:189.540000px;}
.w5{width:626.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:10.836000px;}
.x1b{left:14.010000px;}
.x14{left:23.190000px;}
.x1c{left:41.220000px;}
.x18{left:94.140000px;}
.x27{left:97.416000px;}
.x1{left:108.036000px;}
.x15{left:117.540000px;}
.x3{left:130.176000px;}
.x26{left:150.510000px;}
.x1d{left:152.850000px;}
.x2{left:155.190000px;}
.x1f{left:162.030000px;}
.x8{left:178.950000px;}
.x1e{left:183.630000px;}
.x4{left:250.230000px;}
.x21{left:252.030000px;}
.xe{left:273.450000px;}
.xc{left:287.895000px;}
.x11{left:295.995000px;}
.x9{left:325.155000px;}
.x17{left:366.300000px;}
.xd{left:384.915000px;}
.x7{left:391.395000px;}
.x10{left:418.215000px;}
.xb{left:426.495000px;}
.x6{left:434.595000px;}
.x19{left:454.965000px;}
.x5{left:473.505000px;}
.x12{left:573.585000px;}
.xa{left:575.925000px;}
.xf{left:577.545000px;}
.x28{left:638.820000px;}
.x24{left:641.160000px;}
.x22{left:643.680000px;}
.x13{left:694.260000px;}
.x25{left:709.200000px;}
.x20{left:711.540000px;}
.x23{left:713.160000px;}
.x1a{left:813.960000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.920000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.949333pt;}
.lsf{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.310400pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls1{letter-spacing:-0.030720pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.115200pt;}
.ls6{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.372267pt;}
.ls8{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.lsa{letter-spacing:3.200000pt;}
.lsc{letter-spacing:6.400000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws8{word-spacing:-16.448000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws7{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.276160pt;}
.ws4{word-spacing:-9.205547pt;}
.ws3{word-spacing:-8.948480pt;}
.ws2{word-spacing:-8.833280pt;}
.ws6{word-spacing:-8.522880pt;}
.wsa{word-spacing:-7.883947pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-5.629440pt;}
._d{margin-left:-4.263253pt;}
._7{margin-left:-2.976000pt;}
._10{margin-left:-1.986347pt;}
._0{margin-left:-1.008000pt;}
._4{width:1.241813pt;}
._5{width:2.624000pt;}
._c{width:3.584000pt;}
._a{width:5.312000pt;}
._9{width:6.704000pt;}
._12{width:7.674667pt;}
._f{width:9.277440pt;}
._b{width:10.720000pt;}
._17{width:12.172373pt;}
._11{width:13.162667pt;}
._6{width:14.080000pt;}
._8{width:15.094187pt;}
._18{width:17.642667pt;}
._15{width:19.416960pt;}
._16{width:20.929280pt;}
._19{width:22.192000pt;}
._13{width:23.552000pt;}
._14{width:24.689067pt;}
._1a{width:25.584000pt;}
._1d{width:26.537387pt;}
._2{width:27.440000pt;}
._26{width:29.376000pt;}
._25{width:30.704000pt;}
._1f{width:31.872000pt;}
._1e{width:32.936533pt;}
._1b{width:33.920000pt;}
._1c{width:35.386667pt;}
._20{width:36.928000pt;}
._23{width:38.400000pt;}
._24{width:39.616000pt;}
._21{width:43.392000pt;}
._22{width:44.352000pt;}
._3{width:970.273067pt;}
._1{width:1865.125333pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:0.960000pt;}
.y30{bottom:1.253333pt;}
.y2f{bottom:2.373333pt;}
.y36{bottom:2.880000pt;}
.y3{bottom:4.000000pt;}
.yb6{bottom:5.280000pt;}
.y69{bottom:5.440000pt;}
.y32{bottom:8.293333pt;}
.yd9{bottom:12.320000pt;}
.y68{bottom:13.760000pt;}
.ydc{bottom:13.920000pt;}
.yad{bottom:14.080000pt;}
.y3e{bottom:20.160000pt;}
.y2{bottom:21.920000pt;}
.y39{bottom:25.280000pt;}
.y35{bottom:33.440000pt;}
.y38{bottom:37.280000pt;}
.y1{bottom:37.920000pt;}
.y33{bottom:55.200000pt;}
.y92{bottom:109.920000pt;}
.y2d{bottom:113.600000pt;}
.yd8{bottom:116.800000pt;}
.y67{bottom:117.760000pt;}
.yb5{bottom:123.200000pt;}
.y91{bottom:131.040000pt;}
.y2c{bottom:132.960000pt;}
.yd7{bottom:137.920000pt;}
.y66{bottom:138.880000pt;}
.yb4{bottom:144.320000pt;}
.y90{bottom:152.160000pt;}
.y2b{bottom:154.080000pt;}
.yd6{bottom:159.040000pt;}
.y65{bottom:160.000000pt;}
.yb3{bottom:165.440000pt;}
.y8f{bottom:173.280000pt;}
.yd5{bottom:180.160000pt;}
.y64{bottom:181.120000pt;}
.y2a{bottom:181.760000pt;}
.yb2{bottom:186.746667pt;}
.y8e{bottom:194.586667pt;}
.yd4{bottom:201.466667pt;}
.y87{bottom:202.266667pt;}
.y63{bottom:202.426667pt;}
.y29{bottom:203.386667pt;}
.yba{bottom:207.546667pt;}
.yb1{bottom:207.866667pt;}
.y8d{bottom:215.706667pt;}
.yd3{bottom:222.586667pt;}
.y62{bottom:223.546667pt;}
.y28{bottom:224.506667pt;}
.yb0{bottom:228.986667pt;}
.yac{bottom:236.506667pt;}
.y8c{bottom:236.826667pt;}
.yd2{bottom:243.706667pt;}
.y61{bottom:244.666667pt;}
.y27{bottom:245.626667pt;}
.yaf{bottom:250.106667pt;}
.yab{bottom:257.626667pt;}
.y8b{bottom:257.946667pt;}
.yd1{bottom:264.826667pt;}
.y60{bottom:265.786667pt;}
.y26{bottom:266.906667pt;}
.yae{bottom:271.386667pt;}
.y8a{bottom:279.226667pt;}
.yd0{bottom:286.106667pt;}
.y86{bottom:286.586667pt;}
.y5f{bottom:287.066667pt;}
.y25{bottom:288.026667pt;}
.yaa{bottom:292.506667pt;}
.y89{bottom:300.346667pt;}
.ycf{bottom:307.226667pt;}
.y85{bottom:307.866667pt;}
.y5e{bottom:308.186667pt;}
.y24{bottom:309.146667pt;}
.ya9{bottom:313.626667pt;}
.y88{bottom:321.466667pt;}
.yce{bottom:328.026667pt;}
.y5d{bottom:329.306667pt;}
.y23{bottom:330.266667pt;}
.ya8{bottom:334.746667pt;}
.y84{bottom:342.586667pt;}
.ycd{bottom:349.466667pt;}
.y5c{bottom:350.426667pt;}
.y22{bottom:351.546667pt;}
.ya7{bottom:356.026667pt;}
.y83{bottom:363.866667pt;}
.ycc{bottom:370.746667pt;}
.y5b{bottom:371.706667pt;}
.y21{bottom:372.666667pt;}
.ya6{bottom:377.146667pt;}
.y82{bottom:384.986667pt;}
.ycb{bottom:391.906667pt;}
.y5a{bottom:392.866667pt;}
.ya5{bottom:398.306667pt;}
.y20{bottom:400.386667pt;}
.y81{bottom:406.146667pt;}
.yca{bottom:413.026667pt;}
.y59{bottom:413.986667pt;}
.y1f{bottom:418.146667pt;}
.ya4{bottom:419.426667pt;}
.y80{bottom:427.266667pt;}
.yc9{bottom:434.146667pt;}
.y58{bottom:435.106667pt;}
.ya3{bottom:440.706667pt;}
.y1e{bottom:442.946667pt;}
.y7f{bottom:448.386667pt;}
.yc8{bottom:455.426667pt;}
.y57{bottom:456.386667pt;}
.ya2{bottom:461.826667pt;}
.y1d{bottom:463.426667pt;}
.y7e{bottom:469.666667pt;}
.yc7{bottom:476.546667pt;}
.y56{bottom:477.506667pt;}
.ya1{bottom:482.946667pt;}
.y1c{bottom:484.066667pt;}
.y7d{bottom:490.786667pt;}
.yc6{bottom:497.666667pt;}
.y55{bottom:498.626667pt;}
.ya0{bottom:504.066667pt;}
.y1b{bottom:504.706667pt;}
.y7c{bottom:511.906667pt;}
.yc5{bottom:518.466667pt;}
.y54{bottom:519.746667pt;}
.y1a{bottom:522.946667pt;}
.y9f{bottom:525.346667pt;}
.y7b{bottom:533.026667pt;}
.y19{bottom:534.306667pt;}
.yc4{bottom:540.066667pt;}
.y53{bottom:541.026667pt;}
.y9e{bottom:546.466667pt;}
.y7a{bottom:554.306667pt;}
.y18{bottom:558.946667pt;}
.yc3{bottom:561.186667pt;}
.y9d{bottom:567.586667pt;}
.y52{bottom:575.106667pt;}
.y79{bottom:575.426667pt;}
.y17{bottom:579.586667pt;}
.yc2{bottom:582.306667pt;}
.y9c{bottom:588.706667pt;}
.y78{bottom:596.546667pt;}
.y16{bottom:600.066667pt;}
.yc1{bottom:603.453333pt;}
.y51{bottom:609.213333pt;}
.y9b{bottom:609.853333pt;}
.y77{bottom:617.693333pt;}
.y15{bottom:620.733333pt;}
.yc0{bottom:624.573333pt;}
.y50{bottom:629.053333pt;}
.y9a{bottom:631.133333pt;}
.y14{bottom:638.973333pt;}
.ybf{bottom:645.853333pt;}
.y4f{bottom:648.733333pt;}
.y13{bottom:650.493333pt;}
.y99{bottom:652.253333pt;}
.y76{bottom:660.093333pt;}
.ybe{bottom:666.973333pt;}
.y4e{bottom:668.573333pt;}
.y98{bottom:673.373333pt;}
.y12{bottom:674.973333pt;}
.y75{bottom:681.213333pt;}
.ybd{bottom:688.093333pt;}
.y97{bottom:694.493333pt;}
.y11{bottom:695.613333pt;}
.y4d{bottom:702.333333pt;}
.ybc{bottom:709.213333pt;}
.y96{bottom:715.773333pt;}
.y10{bottom:716.253333pt;}
.yb9{bottom:723.293333pt;}
.y4c{bottom:723.613333pt;}
.ybb{bottom:736.573333pt;}
.yf{bottom:736.733333pt;}
.y95{bottom:736.893333pt;}
.yb8{bottom:744.413333pt;}
.y4b{bottom:744.733333pt;}
.ye{bottom:757.373333pt;}
.y94{bottom:758.013333pt;}
.yb7{bottom:765.533333pt;}
.y4a{bottom:765.853333pt;}
.yd{bottom:775.773333pt;}
.y93{bottom:779.133333pt;}
.y49{bottom:786.973333pt;}
.yc{bottom:794.493333pt;}
.y74{bottom:800.413333pt;}
.y48{bottom:808.253333pt;}
.yb{bottom:819.813333pt;}
.y73{bottom:821.573333pt;}
.y47{bottom:829.413333pt;}
.y72{bottom:842.693333pt;}
.ya{bottom:844.933333pt;}
.y46{bottom:850.533333pt;}
.ydb{bottom:856.453333pt;}
.y71{bottom:863.813333pt;}
.y9{bottom:865.413333pt;}
.y45{bottom:871.653333pt;}
.y31{bottom:874.560000pt;}
.y2e{bottom:881.120000pt;}
.y8{bottom:883.013333pt;}
.y70{bottom:885.093333pt;}
.y44{bottom:892.773333pt;}
.yda{bottom:905.573333pt;}
.y6f{bottom:906.213333pt;}
.y7{bottom:913.413333pt;}
.y43{bottom:914.053333pt;}
.y6e{bottom:927.333333pt;}
.y42{bottom:935.173333pt;}
.y6{bottom:944.773333pt;}
.y6d{bottom:948.453333pt;}
.y41{bottom:956.293333pt;}
.y6c{bottom:969.733333pt;}
.y40{bottom:977.413333pt;}
.y5{bottom:978.693333pt;}
.y6b{bottom:990.853333pt;}
.y3f{bottom:1011.653333pt;}
.y6a{bottom:1011.973333pt;}
.y4{bottom:1012.613333pt;}
.y3d{bottom:1039.520000pt;}
.y3c{bottom:1052.000000pt;}
.y3b{bottom:1064.480000pt;}
.y37{bottom:1073.600000pt;}
.y3a{bottom:1084.800000pt;}
.h14{height:11.840000pt;}
.h12{height:12.960000pt;}
.h23{height:16.000000pt;}
.h21{height:16.160000pt;}
.h16{height:18.880000pt;}
.h1a{height:21.671875pt;}
.h17{height:21.920000pt;}
.h1b{height:32.149687pt;}
.h13{height:34.190937pt;}
.h5{height:34.195312pt;}
.h2{height:35.083125pt;}
.h1c{height:37.310625pt;}
.h22{height:37.645625pt;}
.h6{height:37.842813pt;}
.hc{height:38.008125pt;}
.h19{height:42.355937pt;}
.h18{height:44.160000pt;}
.ha{height:44.706250pt;}
.h11{height:46.220625pt;}
.h15{height:46.948750pt;}
.h4{height:47.742188pt;}
.h8{height:48.375000pt;}
.h1f{height:51.232500pt;}
.h1e{height:51.692500pt;}
.hf{height:52.750000pt;}
.he{height:56.156250pt;}
.hd{height:56.187500pt;}
.h3{height:58.563750pt;}
.hb{height:60.288750pt;}
.h10{height:62.781250pt;}
.h9{height:62.812500pt;}
.h24{height:63.656250pt;}
.h1d{height:64.500000pt;}
.h7{height:65.739375pt;}
.h20{height:73.454062pt;}
.h25{height:83.540625pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:68.800000pt;}
.w6{width:70.240000pt;}
.w7{width:85.600000pt;}
.w2{width:93.280000pt;}
.w3{width:117.760000pt;}
.w4{width:168.480000pt;}
.w5{width:556.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:9.632000pt;}
.x1b{left:12.453333pt;}
.x14{left:20.613333pt;}
.x1c{left:36.640000pt;}
.x18{left:83.680000pt;}
.x27{left:86.592000pt;}
.x1{left:96.032000pt;}
.x15{left:104.480000pt;}
.x3{left:115.712000pt;}
.x26{left:133.786667pt;}
.x1d{left:135.866667pt;}
.x2{left:137.946667pt;}
.x1f{left:144.026667pt;}
.x8{left:159.066667pt;}
.x1e{left:163.226667pt;}
.x4{left:222.426667pt;}
.x21{left:224.026667pt;}
.xe{left:243.066667pt;}
.xc{left:255.906667pt;}
.x11{left:263.106667pt;}
.x9{left:289.026667pt;}
.x17{left:325.600000pt;}
.xd{left:342.146667pt;}
.x7{left:347.906667pt;}
.x10{left:371.746667pt;}
.xb{left:379.106667pt;}
.x6{left:386.306667pt;}
.x19{left:404.413333pt;}
.x5{left:420.893333pt;}
.x12{left:509.853333pt;}
.xa{left:511.933333pt;}
.xf{left:513.373333pt;}
.x28{left:567.840000pt;}
.x24{left:569.920000pt;}
.x22{left:572.160000pt;}
.x13{left:617.120000pt;}
.x25{left:630.400000pt;}
.x20{left:632.480000pt;}
.x23{left:633.920000pt;}
.x1a{left:723.520000pt;}
}




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