
    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_f01bae8b6788fa759057a31c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;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_8e49f446e8c6347f5edfa5a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_292f8bc2a44a9ab67eccf44a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_4eaace7a6e90c0948a5e7542.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_9f4a03ed3ffcae66a5ed51a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921000;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_9d7d196f753f89e278efb160.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_998546a9328453531a711c60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_329a38e18066d270f0921cca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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_48be6658f9ab20d85117d65c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.300000;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_39e23602385fa9e1aaf19fa5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.294000;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_227cd6e0973f3824e8e932a0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.922000;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_b44b0958dd189d5f657fd701.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.518000;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_15ef87d34a00e208e2f5b01e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.520000;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);}
.v3{vertical-align:-10.992000px;}
.v1{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.622000px;}
.v2{vertical-align:23.754000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000493px;}
.ls5{letter-spacing:0.001608px;}
.ls1b{letter-spacing:0.002154px;}
.ls15{letter-spacing:0.002682px;}
.ls12{letter-spacing:0.002706px;}
.ls13{letter-spacing:0.005429px;}
.ls0{letter-spacing:0.006493px;}
.ls9{letter-spacing:2.483976px;}
.lsb{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.988103px;}
.lsc{letter-spacing:2.990915px;}
.ls7{letter-spacing:3.694472px;}
.ls19{letter-spacing:8.876154px;}
.ls16{letter-spacing:9.088332px;}
.ls6{letter-spacing:10.910712px;}
.ls3{letter-spacing:14.543412px;}
.ls14{letter-spacing:14.548344px;}
.ls1{letter-spacing:14.602472px;}
.lsf{letter-spacing:15.755412px;}
.ls1d{letter-spacing:20.576712px;}
.lse{letter-spacing:21.209412px;}
.ls17{letter-spacing:21.812712px;}
.ls18{letter-spacing:21.818712px;}
.lsa{letter-spacing:21.824154px;}
.ls20{letter-spacing:21.874472px;}
.ls1a{letter-spacing:22.778712px;}
.ls1f{letter-spacing:24.014712px;}
.ls1c{letter-spacing:24.962712px;}
.ls8{letter-spacing:25.040154px;}
.ls1e{letter-spacing:27.638712px;}
.ls10{letter-spacing:29.615950px;}
.lsd{letter-spacing:30.298332px;}
.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;}
}
.ws2d{word-spacing:-42.637126px;}
.ws58{word-spacing:-26.899125px;}
.ws8{word-spacing:-22.416000px;}
.ws48{word-spacing:-21.944281px;}
.ws41{word-spacing:-18.344836px;}
.ws1b{word-spacing:-18.183288px;}
.ws29{word-spacing:-16.752639px;}
.ws2b{word-spacing:-3.652367px;}
.ws5e{word-spacing:-2.736002px;}
.ws31{word-spacing:-2.474184px;}
.ws55{word-spacing:-1.950547px;}
.ws30{word-spacing:-1.885092px;}
.ws26{word-spacing:-1.754183px;}
.wsc{word-spacing:-0.641455px;}
.wsa{word-spacing:-0.510546px;}
.ws24{word-spacing:-0.314182px;}
.ws2c{word-spacing:-0.065455px;}
.ws28{word-spacing:-0.059776px;}
.ws4c{word-spacing:-0.047821px;}
.ws20{word-spacing:0.000000px;}
.ws47{word-spacing:0.013091px;}
.ws57{word-spacing:0.536728px;}
.ws7c{word-spacing:0.667637px;}
.ws34{word-spacing:0.864001px;}
.ws7b{word-spacing:1.256728px;}
.ws54{word-spacing:1.518547px;}
.ws81{word-spacing:1.780365px;}
.ws65{word-spacing:2.042184px;}
.ws6e{word-spacing:2.107638px;}
.ws1f{word-spacing:2.304002px;}
.wsf{word-spacing:2.369457px;}
.ws1a{word-spacing:2.434911px;}
.ws3f{word-spacing:2.500366px;}
.ws3b{word-spacing:2.537828px;}
.ws39{word-spacing:2.565820px;}
.ws13{word-spacing:2.631275px;}
.ws45{word-spacing:2.827639px;}
.ws44{word-spacing:3.220366px;}
.ws50{word-spacing:3.416730px;}
.ws4{word-spacing:3.613094px;}
.ws17{word-spacing:3.627636px;}
.ws1e{word-spacing:3.628261px;}
.ws64{word-spacing:3.629631px;}
.ws15{word-spacing:3.633636px;}
.ws6d{word-spacing:3.659812px;}
.ws70{word-spacing:3.678549px;}
.ws52{word-spacing:3.809458px;}
.ws3d{word-spacing:4.005822px;}
.ws40{word-spacing:4.136731px;}
.ws73{word-spacing:4.202185px;}
.ws80{word-spacing:4.267640px;}
.ws5f{word-spacing:4.398549px;}
.ws10{word-spacing:4.483200px;}
.ws61{word-spacing:4.594913px;}
.ws7f{word-spacing:4.791277px;}
.ws51{word-spacing:4.856731px;}
.ws66{word-spacing:4.922186px;}
.ws19{word-spacing:4.987641px;}
.ws2e{word-spacing:5.006450px;}
.ws2f{word-spacing:5.053095px;}
.ws4f{word-spacing:5.118550px;}
.ws56{word-spacing:5.314914px;}
.ws74{word-spacing:5.380368px;}
.ws4a{word-spacing:5.445823px;}
.ws77{word-spacing:5.511277px;}
.ws76{word-spacing:5.838550px;}
.ws32{word-spacing:5.904005px;}
.ws6{word-spacing:6.100369px;}
.ws23{word-spacing:6.427642px;}
.ws43{word-spacing:6.558551px;}
.ws69{word-spacing:6.754915px;}
.ws5c{word-spacing:6.820369px;}
.ws1c{word-spacing:6.885824px;}
.ws7a{word-spacing:7.213097px;}
.ws53{word-spacing:7.671279px;}
.ws42{word-spacing:7.998552px;}
.ws71{word-spacing:8.260371px;}
.ws78{word-spacing:8.718553px;}
.ws6c{word-spacing:8.849462px;}
.ws7d{word-spacing:8.914917px;}
.ws25{word-spacing:9.438553px;}
.ws21{word-spacing:9.504008px;}
.ws7e{word-spacing:10.354918px;}
.ws37{word-spacing:10.551282px;}
.ws59{word-spacing:10.616736px;}
.ws9{word-spacing:10.682191px;}
.ws63{word-spacing:11.009464px;}
.ws62{word-spacing:11.074918px;}
.ws4e{word-spacing:11.467646px;}
.ws4d{word-spacing:11.472839px;}
.ws5a{word-spacing:11.794919px;}
.ws22{word-spacing:12.187647px;}
.ws49{word-spacing:12.449465px;}
.ws6a{word-spacing:13.889466px;}
.ws11{word-spacing:14.546124px;}
.ws4b{word-spacing:18.692981px;}
.wse{word-spacing:19.374562px;}
.wsd{word-spacing:19.440016px;}
.wsb{word-spacing:19.505471px;}
.ws35{word-spacing:20.814563px;}
.ws1d{word-spacing:21.740930px;}
.ws12{word-spacing:21.743915px;}
.ws6f{word-spacing:21.927291px;}
.ws38{word-spacing:22.058200px;}
.ws3a{word-spacing:22.320019px;}
.ws46{word-spacing:22.647292px;}
.ws16{word-spacing:23.301838px;}
.ws18{word-spacing:23.367292px;}
.ws3c{word-spacing:23.694565px;}
.ws60{word-spacing:24.021838px;}
.ws67{word-spacing:24.545475px;}
.ws75{word-spacing:24.938203px;}
.ws3{word-spacing:25.003657px;}
.ws79{word-spacing:25.396385px;}
.ws33{word-spacing:25.461839px;}
.ws7{word-spacing:25.592749px;}
.ws68{word-spacing:25.658203px;}
.ws5d{word-spacing:26.247295px;}
.ws72{word-spacing:27.621841px;}
.ws1{word-spacing:28.080023px;}
.ws2{word-spacing:28.145478px;}
.ws3e{word-spacing:28.190362px;}
.ws14{word-spacing:28.418487px;}
.ws5b{word-spacing:28.734569px;}
.ws36{word-spacing:29.716388px;}
.ws27{word-spacing:31.322414px;}
.ws6b{word-spacing:32.792755px;}
.ws5{word-spacing:33.991849px;}
.ws2a{word-spacing:34.298210px;}
.ws0{word-spacing:36.392758px;}
._22{margin-left:-32.007299px;}
._25{margin-left:-25.048556px;}
._1d{margin-left:-7.171432px;}
._7{margin-left:-5.432732px;}
._2{margin-left:-4.189094px;}
._21{margin-left:-3.179697px;}
._0{margin-left:-2.094547px;}
._c{margin-left:-1.047274px;}
._1e{width:1.065154px;}
._1{width:2.160002px;}
._6{width:4.160521px;}
._18{width:5.250598px;}
._1f{width:8.872308px;}
._e{width:14.392089px;}
._14{width:16.036377px;}
._1c{width:17.672742px;}
._5{width:18.681415px;}
._12{width:19.918590px;}
._b{width:21.796382px;}
._13{width:23.252708px;}
._1b{width:24.807293px;}
._8{width:26.042936px;}
._9{width:27.125104px;}
._4{width:28.472751px;}
._10{width:29.978207px;}
._23{width:31.090935px;}
._1a{width:32.182829px;}
._a{width:33.643664px;}
._20{width:35.410939px;}
._17{width:36.858934px;}
._d{width:38.037117px;}
._3{width:39.595686px;}
._16{width:41.956399px;}
._24{width:44.363503px;}
._f{width:46.014584px;}
._15{width:49.972998px;}
._19{width:52.761358px;}
._11{width:53.803681px;}
._27{width:1020.175396px;}
._29{width:1105.200921px;}
._26{width:1153.702780px;}
._28{width:1238.728305px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs1{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs0{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y20{bottom:48.867000px;}
.y87{bottom:70.776000px;}
.y46{bottom:93.699000px;}
.y86{bottom:102.922500px;}
.y45{bottom:118.087500px;}
.y85{bottom:123.246000px;}
.y44{bottom:142.476000px;}
.y84{bottom:143.569500px;}
.y90{bottom:159.999000px;}
.y96{bottom:165.283500px;}
.y43{bottom:166.864500px;}
.y83{bottom:177.343500px;}
.y8f{bottom:180.322500px;}
.y95{bottom:185.607000px;}
.y82{bottom:197.667000px;}
.y8e{bottom:200.646000px;}
.y42{bottom:203.668500px;}
.y94{bottom:205.930500px;}
.y81{bottom:217.990500px;}
.y8d{bottom:220.971000px;}
.y1f{bottom:223.192500px;}
.y93{bottom:226.254000px;}
.y41{bottom:228.057000px;}
.y8c{bottom:241.294500px;}
.y1e{bottom:247.581000px;}
.y80{bottom:251.764500px;}
.y40{bottom:252.445500px;}
.y8b{bottom:261.618000px;}
.y7f{bottom:272.088000px;}
.y3f{bottom:276.834000px;}
.y60{bottom:280.666500px;}
.y8a{bottom:281.941500px;}
.y1d{bottom:285.418500px;}
.y7e{bottom:292.411500px;}
.y5f{bottom:305.055000px;}
.y1c{bottom:309.807000px;}
.y3e{bottom:313.639500px;}
.y7d{bottom:326.185500px;}
.y5e{bottom:329.443500px;}
.y1b{bottom:334.195500px;}
.y9d{bottom:337.524000px;}
.y3d{bottom:338.028000px;}
.y7c{bottom:346.509000px;}
.y5d{bottom:353.832000px;}
.y9c{bottom:357.847500px;}
.y3c{bottom:362.416500px;}
.y1a{bottom:372.033000px;}
.y9b{bottom:378.172500px;}
.y5c{bottom:378.220500px;}
.y7b{bottom:380.281500px;}
.y3b{bottom:393.013500px;}
.y19{bottom:396.421500px;}
.y9a{bottom:398.496000px;}
.y7a{bottom:400.606500px;}
.y5b{bottom:402.609000px;}
.y3a{bottom:417.402000px;}
.y99{bottom:418.819500px;}
.y18{bottom:420.810000px;}
.y5a{bottom:426.997500px;}
.y79{bottom:434.379000px;}
.y98{bottom:439.143000px;}
.y39{bottom:441.790500px;}
.y59{bottom:451.386000px;}
.y78{bottom:454.702500px;}
.y17{bottom:458.649000px;}
.y38{bottom:466.179000px;}
.y16{bottom:483.037500px;}
.y58{bottom:486.342000px;}
.y77{bottom:488.476500px;}
.y37{bottom:490.567500px;}
.y15{bottom:507.426000px;}
.y76{bottom:508.800000px;}
.y36{bottom:514.956000px;}
.y75{bottom:529.123500px;}
.y14{bottom:531.814500px;}
.y57{bottom:534.346500px;}
.y35{bottom:539.344500px;}
.y56{bottom:558.735000px;}
.y74{bottom:562.897500px;}
.y34{bottom:563.733000px;}
.y13{bottom:569.652000px;}
.y73{bottom:583.221000px;}
.y33{bottom:588.121500px;}
.y55{bottom:593.691000px;}
.y12{bottom:594.040500px;}
.y72{bottom:603.544500px;}
.y11{bottom:618.429000px;}
.y32{bottom:624.925500px;}
.y92{bottom:632.997000px;}
.y71{bottom:637.318500px;}
.y54{bottom:641.694000px;}
.y31{bottom:649.314000px;}
.y10{bottom:656.266500px;}
.y70{bottom:657.642000px;}
.y89{bottom:663.481500px;}
.y30{bottom:673.702500px;}
.y6f{bottom:677.965500px;}
.y53{bottom:679.533000px;}
.yf{bottom:691.224000px;}
.y2f{bottom:698.091000px;}
.y6e{bottom:711.739500px;}
.y52{bottom:717.370500px;}
.y6d{bottom:732.063000px;}
.y2e{bottom:733.347000px;}
.ye{bottom:739.227000px;}
.y51{bottom:741.759000px;}
.y6c{bottom:752.386500px;}
.yd{bottom:763.615500px;}
.y50{bottom:766.147500px;}
.y2d{bottom:779.254500px;}
.y6b{bottom:786.160500px;}
.yc{bottom:788.004000px;}
.y4f{bottom:797.260500px;}
.y2c{bottom:800.773500px;}
.y6a{bottom:806.484000px;}
.yb{bottom:812.392500px;}
.y4e{bottom:821.649000px;}
.y2b{bottom:822.292500px;}
.y69{bottom:826.807500px;}
.ya{bottom:836.781000px;}
.y2a{bottom:843.813000px;}
.y4d{bottom:846.037500px;}
.y68{bottom:860.581500px;}
.y9{bottom:861.169500px;}
.y4c{bottom:870.426000px;}
.y97{bottom:872.877000px;}
.y29{bottom:881.199000px;}
.y67{bottom:894.354000px;}
.y8{bottom:896.127000px;}
.y28{bottom:902.718000px;}
.y4b{bottom:908.265000px;}
.y66{bottom:914.677500px;}
.y27{bottom:927.106500px;}
.y65{bottom:935.002500px;}
.y7{bottom:944.130000px;}
.y4a{bottom:946.102500px;}
.y26{bottom:951.495000px;}
.y64{bottom:955.326000px;}
.y6{bottom:968.518500px;}
.y25{bottom:975.883500px;}
.y49{bottom:983.940000px;}
.y63{bottom:991.854000px;}
.y24{bottom:1000.272000px;}
.y5{bottom:1010.839500px;}
.y48{bottom:1021.779000px;}
.y23{bottom:1024.660500px;}
.y4{bottom:1035.228000px;}
.y62{bottom:1043.412000px;}
.y91{bottom:1045.117500px;}
.y47{bottom:1046.167500px;}
.y22{bottom:1049.049000px;}
.y88{bottom:1050.402000px;}
.y3{bottom:1059.616500px;}
.y61{bottom:1067.800500px;}
.y21{bottom:1073.437500px;}
.y2{bottom:1084.005000px;}
.y1{bottom:1108.393500px;}
.h3{height:41.484266px;}
.h4{height:42.500452px;}
.h1{height:49.090950px;}
.h2{height:50.211840px;}
.h6{height:50.479715px;}
.h5{height:50.485715px;}
.h7{height:60.254040px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:56.823000px;}
.x6{left:65.481000px;}
.xa{left:67.453500px;}
.x9{left:78.082500px;}
.x1{left:108.000000px;}
.x7{left:124.363500px;}
.x3{left:127.999500px;}
.x2{left:133.404000px;}
.x4{left:148.909500px;}
.x8{left:305.938500px;}
.x5{left:447.619500px;}
@media print{
.v3{vertical-align:-9.770667pt;}
.v1{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.330667pt;}
.v2{vertical-align:21.114667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000438pt;}
.ls5{letter-spacing:0.001429pt;}
.ls1b{letter-spacing:0.001915pt;}
.ls15{letter-spacing:0.002384pt;}
.ls12{letter-spacing:0.002405pt;}
.ls13{letter-spacing:0.004826pt;}
.ls0{letter-spacing:0.005771pt;}
.ls9{letter-spacing:2.207978pt;}
.lsb{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.656092pt;}
.lsc{letter-spacing:2.658591pt;}
.ls7{letter-spacing:3.283975pt;}
.ls19{letter-spacing:7.889915pt;}
.ls16{letter-spacing:8.078517pt;}
.ls6{letter-spacing:9.698411pt;}
.ls3{letter-spacing:12.927477pt;}
.ls14{letter-spacing:12.931861pt;}
.ls1{letter-spacing:12.979975pt;}
.lsf{letter-spacing:14.004811pt;}
.ls1d{letter-spacing:18.290411pt;}
.lse{letter-spacing:18.852811pt;}
.ls17{letter-spacing:19.389077pt;}
.ls18{letter-spacing:19.394411pt;}
.lsa{letter-spacing:19.399248pt;}
.ls20{letter-spacing:19.443975pt;}
.ls1a{letter-spacing:20.247744pt;}
.ls1f{letter-spacing:21.346411pt;}
.ls1c{letter-spacing:22.189077pt;}
.ls8{letter-spacing:22.257914pt;}
.ls1e{letter-spacing:24.567744pt;}
.ls10{letter-spacing:26.325289pt;}
.lsd{letter-spacing:26.931850pt;}
.ws2d{word-spacing:-37.899668pt;}
.ws58{word-spacing:-23.910333pt;}
.ws8{word-spacing:-19.925333pt;}
.ws48{word-spacing:-19.506028pt;}
.ws41{word-spacing:-16.306521pt;}
.ws1b{word-spacing:-16.162923pt;}
.ws29{word-spacing:-14.891235pt;}
.ws2b{word-spacing:-3.246548pt;}
.ws5e{word-spacing:-2.432002pt;}
.ws31{word-spacing:-2.199275pt;}
.ws55{word-spacing:-1.733820pt;}
.ws30{word-spacing:-1.675638pt;}
.ws26{word-spacing:-1.559274pt;}
.wsc{word-spacing:-0.570182pt;}
.wsa{word-spacing:-0.453819pt;}
.ws24{word-spacing:-0.279273pt;}
.ws2c{word-spacing:-0.058182pt;}
.ws28{word-spacing:-0.053134pt;}
.ws4c{word-spacing:-0.042507pt;}
.ws20{word-spacing:0.000000pt;}
.ws47{word-spacing:0.011636pt;}
.ws57{word-spacing:0.477091pt;}
.ws7c{word-spacing:0.593455pt;}
.ws34{word-spacing:0.768001pt;}
.ws7b{word-spacing:1.117092pt;}
.ws54{word-spacing:1.349819pt;}
.ws81{word-spacing:1.582547pt;}
.ws65{word-spacing:1.815274pt;}
.ws6e{word-spacing:1.873456pt;}
.ws1f{word-spacing:2.048002pt;}
.wsf{word-spacing:2.106184pt;}
.ws1a{word-spacing:2.164365pt;}
.ws3f{word-spacing:2.222547pt;}
.ws3b{word-spacing:2.255847pt;}
.ws39{word-spacing:2.280729pt;}
.ws13{word-spacing:2.338911pt;}
.ws45{word-spacing:2.513457pt;}
.ws44{word-spacing:2.862548pt;}
.ws50{word-spacing:3.037093pt;}
.ws4{word-spacing:3.211639pt;}
.ws17{word-spacing:3.224566pt;}
.ws1e{word-spacing:3.225121pt;}
.ws64{word-spacing:3.226339pt;}
.ws15{word-spacing:3.229899pt;}
.ws6d{word-spacing:3.253166pt;}
.ws70{word-spacing:3.269821pt;}
.ws52{word-spacing:3.386185pt;}
.ws3d{word-spacing:3.560730pt;}
.ws40{word-spacing:3.677094pt;}
.ws73{word-spacing:3.735276pt;}
.ws80{word-spacing:3.793458pt;}
.ws5f{word-spacing:3.909821pt;}
.ws10{word-spacing:3.985067pt;}
.ws61{word-spacing:4.084367pt;}
.ws7f{word-spacing:4.258913pt;}
.ws51{word-spacing:4.317095pt;}
.ws66{word-spacing:4.375276pt;}
.ws19{word-spacing:4.433458pt;}
.ws2e{word-spacing:4.450177pt;}
.ws2f{word-spacing:4.491640pt;}
.ws4f{word-spacing:4.549822pt;}
.ws56{word-spacing:4.724368pt;}
.ws74{word-spacing:4.782549pt;}
.ws4a{word-spacing:4.840731pt;}
.ws77{word-spacing:4.898913pt;}
.ws76{word-spacing:5.189823pt;}
.ws32{word-spacing:5.248004pt;}
.ws6{word-spacing:5.422550pt;}
.ws23{word-spacing:5.713459pt;}
.ws43{word-spacing:5.829823pt;}
.ws69{word-spacing:6.004369pt;}
.ws5c{word-spacing:6.062551pt;}
.ws1c{word-spacing:6.120732pt;}
.ws7a{word-spacing:6.411642pt;}
.ws53{word-spacing:6.818915pt;}
.ws42{word-spacing:7.109824pt;}
.ws71{word-spacing:7.342552pt;}
.ws78{word-spacing:7.749825pt;}
.ws6c{word-spacing:7.866188pt;}
.ws7d{word-spacing:7.924370pt;}
.ws25{word-spacing:8.389825pt;}
.ws21{word-spacing:8.448007pt;}
.ws7e{word-spacing:9.204371pt;}
.ws37{word-spacing:9.378917pt;}
.ws59{word-spacing:9.437099pt;}
.ws9{word-spacing:9.495281pt;}
.ws63{word-spacing:9.786190pt;}
.ws62{word-spacing:9.844372pt;}
.ws4e{word-spacing:10.193463pt;}
.ws4d{word-spacing:10.198079pt;}
.ws5a{word-spacing:10.484372pt;}
.ws22{word-spacing:10.833464pt;}
.ws49{word-spacing:11.066191pt;}
.ws6a{word-spacing:12.346192pt;}
.ws11{word-spacing:12.929888pt;}
.ws4b{word-spacing:16.615983pt;}
.wse{word-spacing:17.221833pt;}
.wsd{word-spacing:17.280014pt;}
.wsb{word-spacing:17.338196pt;}
.ws35{word-spacing:18.501834pt;}
.ws1d{word-spacing:19.325271pt;}
.ws12{word-spacing:19.327925pt;}
.ws6f{word-spacing:19.490925pt;}
.ws38{word-spacing:19.607289pt;}
.ws3a{word-spacing:19.840017pt;}
.ws46{word-spacing:20.130926pt;}
.ws16{word-spacing:20.712745pt;}
.ws18{word-spacing:20.770926pt;}
.ws3c{word-spacing:21.061836pt;}
.ws60{word-spacing:21.352745pt;}
.ws67{word-spacing:21.818200pt;}
.ws75{word-spacing:22.167291pt;}
.ws3{word-spacing:22.225473pt;}
.ws79{word-spacing:22.574564pt;}
.ws33{word-spacing:22.632746pt;}
.ws7{word-spacing:22.749110pt;}
.ws68{word-spacing:22.807292pt;}
.ws5d{word-spacing:23.330929pt;}
.ws72{word-spacing:24.552748pt;}
.ws1{word-spacing:24.960021pt;}
.ws2{word-spacing:25.018203pt;}
.ws3e{word-spacing:25.058099pt;}
.ws14{word-spacing:25.260877pt;}
.ws5b{word-spacing:25.541839pt;}
.ws36{word-spacing:26.414567pt;}
.ws27{word-spacing:27.842146pt;}
.ws6b{word-spacing:29.149115pt;}
.ws5{word-spacing:30.214977pt;}
.ws2a{word-spacing:30.487298pt;}
.ws0{word-spacing:32.349118pt;}
._22{margin-left:-28.450933pt;}
._25{margin-left:-22.265384pt;}
._1d{margin-left:-6.374606pt;}
._7{margin-left:-4.829095pt;}
._2{margin-left:-3.723639pt;}
._21{margin-left:-2.826398pt;}
._0{margin-left:-1.861820pt;}
._c{margin-left:-0.930910pt;}
._1e{width:0.946804pt;}
._1{width:1.920002pt;}
._6{width:3.698240pt;}
._18{width:4.667198pt;}
._1f{width:7.886496pt;}
._e{width:12.792968pt;}
._14{width:14.254557pt;}
._1c{width:15.709104pt;}
._5{width:16.605702pt;}
._12{width:17.705413pt;}
._b{width:19.374562pt;}
._13{width:20.669074pt;}
._1b{width:22.050927pt;}
._8{width:23.149277pt;}
._9{width:24.111203pt;}
._4{width:25.309112pt;}
._10{width:26.647295pt;}
._23{width:27.636387pt;}
._1a{width:28.606959pt;}
._a{width:29.905479pt;}
._20{width:31.476390pt;}
._17{width:32.763497pt;}
._d{width:33.810771pt;}
._3{width:35.196166pt;}
._16{width:37.294577pt;}
._24{width:39.434225pt;}
._f{width:40.901852pt;}
._15{width:44.420443pt;}
._19{width:46.898985pt;}
._11{width:47.825494pt;}
._27{width:906.822574pt;}
._29{width:982.400819pt;}
._26{width:1025.513582pt;}
._28{width:1101.091827pt;}
.fs5{font-size:31.880533pt;}
.fs1{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs0{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:43.437333pt;}
.y87{bottom:62.912000pt;}
.y46{bottom:83.288000pt;}
.y86{bottom:91.486667pt;}
.y45{bottom:104.966667pt;}
.y85{bottom:109.552000pt;}
.y44{bottom:126.645333pt;}
.y84{bottom:127.617333pt;}
.y90{bottom:142.221333pt;}
.y96{bottom:146.918667pt;}
.y43{bottom:148.324000pt;}
.y83{bottom:157.638667pt;}
.y8f{bottom:160.286667pt;}
.y95{bottom:164.984000pt;}
.y82{bottom:175.704000pt;}
.y8e{bottom:178.352000pt;}
.y42{bottom:181.038667pt;}
.y94{bottom:183.049333pt;}
.y81{bottom:193.769333pt;}
.y8d{bottom:196.418667pt;}
.y1f{bottom:198.393333pt;}
.y93{bottom:201.114667pt;}
.y41{bottom:202.717333pt;}
.y8c{bottom:214.484000pt;}
.y1e{bottom:220.072000pt;}
.y80{bottom:223.790667pt;}
.y40{bottom:224.396000pt;}
.y8b{bottom:232.549333pt;}
.y7f{bottom:241.856000pt;}
.y3f{bottom:246.074667pt;}
.y60{bottom:249.481333pt;}
.y8a{bottom:250.614667pt;}
.y1d{bottom:253.705333pt;}
.y7e{bottom:259.921333pt;}
.y5f{bottom:271.160000pt;}
.y1c{bottom:275.384000pt;}
.y3e{bottom:278.790667pt;}
.y7d{bottom:289.942667pt;}
.y5e{bottom:292.838667pt;}
.y1b{bottom:297.062667pt;}
.y9d{bottom:300.021333pt;}
.y3d{bottom:300.469333pt;}
.y7c{bottom:308.008000pt;}
.y5d{bottom:314.517333pt;}
.y9c{bottom:318.086667pt;}
.y3c{bottom:322.148000pt;}
.y1a{bottom:330.696000pt;}
.y9b{bottom:336.153333pt;}
.y5c{bottom:336.196000pt;}
.y7b{bottom:338.028000pt;}
.y3b{bottom:349.345333pt;}
.y19{bottom:352.374667pt;}
.y9a{bottom:354.218667pt;}
.y7a{bottom:356.094667pt;}
.y5b{bottom:357.874667pt;}
.y3a{bottom:371.024000pt;}
.y99{bottom:372.284000pt;}
.y18{bottom:374.053333pt;}
.y5a{bottom:379.553333pt;}
.y79{bottom:386.114667pt;}
.y98{bottom:390.349333pt;}
.y39{bottom:392.702667pt;}
.y59{bottom:401.232000pt;}
.y78{bottom:404.180000pt;}
.y17{bottom:407.688000pt;}
.y38{bottom:414.381333pt;}
.y16{bottom:429.366667pt;}
.y58{bottom:432.304000pt;}
.y77{bottom:434.201333pt;}
.y37{bottom:436.060000pt;}
.y15{bottom:451.045333pt;}
.y76{bottom:452.266667pt;}
.y36{bottom:457.738667pt;}
.y75{bottom:470.332000pt;}
.y14{bottom:472.724000pt;}
.y57{bottom:474.974667pt;}
.y35{bottom:479.417333pt;}
.y56{bottom:496.653333pt;}
.y74{bottom:500.353333pt;}
.y34{bottom:501.096000pt;}
.y13{bottom:506.357333pt;}
.y73{bottom:518.418667pt;}
.y33{bottom:522.774667pt;}
.y55{bottom:527.725333pt;}
.y12{bottom:528.036000pt;}
.y72{bottom:536.484000pt;}
.y11{bottom:549.714667pt;}
.y32{bottom:555.489333pt;}
.y92{bottom:562.664000pt;}
.y71{bottom:566.505333pt;}
.y54{bottom:570.394667pt;}
.y31{bottom:577.168000pt;}
.y10{bottom:583.348000pt;}
.y70{bottom:584.570667pt;}
.y89{bottom:589.761333pt;}
.y30{bottom:598.846667pt;}
.y6f{bottom:602.636000pt;}
.y53{bottom:604.029333pt;}
.yf{bottom:614.421333pt;}
.y2f{bottom:620.525333pt;}
.y6e{bottom:632.657333pt;}
.y52{bottom:637.662667pt;}
.y6d{bottom:650.722667pt;}
.y2e{bottom:651.864000pt;}
.ye{bottom:657.090667pt;}
.y51{bottom:659.341333pt;}
.y6c{bottom:668.788000pt;}
.yd{bottom:678.769333pt;}
.y50{bottom:681.020000pt;}
.y2d{bottom:692.670667pt;}
.y6b{bottom:698.809333pt;}
.yc{bottom:700.448000pt;}
.y4f{bottom:708.676000pt;}
.y2c{bottom:711.798667pt;}
.y6a{bottom:716.874667pt;}
.yb{bottom:722.126667pt;}
.y4e{bottom:730.354667pt;}
.y2b{bottom:730.926667pt;}
.y69{bottom:734.940000pt;}
.ya{bottom:743.805333pt;}
.y2a{bottom:750.056000pt;}
.y4d{bottom:752.033333pt;}
.y68{bottom:764.961333pt;}
.y9{bottom:765.484000pt;}
.y4c{bottom:773.712000pt;}
.y97{bottom:775.890667pt;}
.y29{bottom:783.288000pt;}
.y67{bottom:794.981333pt;}
.y8{bottom:796.557333pt;}
.y28{bottom:802.416000pt;}
.y4b{bottom:807.346667pt;}
.y66{bottom:813.046667pt;}
.y27{bottom:824.094667pt;}
.y65{bottom:831.113333pt;}
.y7{bottom:839.226667pt;}
.y4a{bottom:840.980000pt;}
.y26{bottom:845.773333pt;}
.y64{bottom:849.178667pt;}
.y6{bottom:860.905333pt;}
.y25{bottom:867.452000pt;}
.y49{bottom:874.613333pt;}
.y63{bottom:881.648000pt;}
.y24{bottom:889.130667pt;}
.y5{bottom:898.524000pt;}
.y48{bottom:908.248000pt;}
.y23{bottom:910.809333pt;}
.y4{bottom:920.202667pt;}
.y62{bottom:927.477333pt;}
.y91{bottom:928.993333pt;}
.y47{bottom:929.926667pt;}
.y22{bottom:932.488000pt;}
.y88{bottom:933.690667pt;}
.y3{bottom:941.881333pt;}
.y61{bottom:949.156000pt;}
.y21{bottom:954.166667pt;}
.y2{bottom:963.560000pt;}
.y1{bottom:985.238667pt;}
.h3{height:36.874903pt;}
.h4{height:37.778179pt;}
.h1{height:43.636400pt;}
.h2{height:44.632747pt;}
.h6{height:44.870858pt;}
.h5{height:44.876191pt;}
.h7{height:53.559147pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:50.509333pt;}
.x6{left:58.205333pt;}
.xa{left:59.958667pt;}
.x9{left:69.406667pt;}
.x1{left:96.000000pt;}
.x7{left:110.545333pt;}
.x3{left:113.777333pt;}
.x2{left:118.581333pt;}
.x4{left:132.364000pt;}
.x8{left:271.945333pt;}
.x5{left:397.884000pt;}
}




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