
    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_424732f5744e62ce434f0d4c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7e7549802db3f6893cfc1d04.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.891113;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_b21a97f7c93eccff242e578b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_6a635a2a8ba108087fbef72a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_1b5f7bd8a15597b6d5010df5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_2cd07db77702e865f1068c87.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_651239a2af500d90c62d154a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747559;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_5b45cd62e217e4f315125ea1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.912109;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_cc31c76ee28719f79f1bdad6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_1f08a9a1f465b59e8f5c6daa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929199;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_edcc649a523345882724b3f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_cc75cd8665a0dd85a9540ef3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740723;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_ed0056306be9372edb3278f4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929199;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_cee0290ae3ae279477bea8a7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.941406;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;}
.m4{transform:matrix(0.000000,-0.250667,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250667,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250667,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249435,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249435,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249435,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.250553,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250553,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250553,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250638,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250638,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250638,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249364,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,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);}
.m8{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250049,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250102,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-21.187903px;}
.v6{vertical-align:-19.566937px;}
.v5{vertical-align:-5.760000px;}
.v3{vertical-align:-1.434684px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.112994px;}
.v7{vertical-align:17.573234px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.271429px;}
.lse{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.156207px;}
.ls7{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.129767px;}
.ls11{letter-spacing:-0.117155px;}
.lsa{letter-spacing:-0.025593px;}
.lsf{letter-spacing:-0.021448px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.022493px;}
.ls3{letter-spacing:0.032244px;}
.lsc{letter-spacing:0.156207px;}
.ls2{letter-spacing:0.182549px;}
.ls6{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.lsb{letter-spacing:7.920000px;}
.ls4{letter-spacing:24.492495px;}
.ls5{letter-spacing:37.891904px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws4{word-spacing:-18.288000px;}
.ws13{word-spacing:-18.037573px;}
.ws2{word-spacing:-18.000000px;}
.ws14{word-spacing:-17.907807px;}
.ws5{word-spacing:-17.856000px;}
.ws19{word-spacing:-16.300864px;}
.ws1b{word-spacing:-16.252574px;}
.ws1f{word-spacing:-14.438950px;}
.ws18{word-spacing:-12.835384px;}
.ws15{word-spacing:-12.060000px;}
.ws21{word-spacing:-10.613861px;}
.ws1e{word-spacing:-10.302462px;}
.wsa{word-spacing:-8.467184px;}
.wsb{word-spacing:-8.444665px;}
.ws10{word-spacing:-8.426815px;}
.wsf{word-spacing:-8.407786px;}
.ws0{word-spacing:-0.072000px;}
.ws7{word-spacing:-0.038006px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:32.891077px;}
.ws11{word-spacing:56.065281px;}
.wsc{word-spacing:58.550598px;}
.wsd{word-spacing:150.525310px;}
.ws8{word-spacing:151.190343px;}
.ws12{word-spacing:162.597408px;}
.ws1d{word-spacing:167.862598px;}
.ws20{word-spacing:172.857773px;}
.ws1a{word-spacing:216.851650px;}
.ws16{word-spacing:241.193255px;}
.ws17{word-spacing:579.659456px;}
.ws9{word-spacing:754.060917px;}
.ws6{word-spacing:1213.367978px;}
.ws1c{word-spacing:1366.425488px;}
.ws22{word-spacing:1420.594209px;}
._b{margin-left:-276.784584px;}
._8{margin-left:-129.479100px;}
._d{margin-left:-4.045168px;}
._9{margin-left:-2.782433px;}
._0{margin-left:-1.008000px;}
._2{width:1.020000px;}
._5{width:2.448000px;}
._6{width:3.516000px;}
._3{width:4.680000px;}
._4{width:5.736000px;}
._f{width:8.280000px;}
._10{width:9.300000px;}
._e{width:19.296000px;}
._7{width:158.335044px;}
._11{width:179.561664px;}
._12{width:184.757503px;}
._c{width:232.382289px;}
._a{width:766.296602px;}
._1{width:846.156000px;}
.fc4{color:rgb(0,0,204);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(36,32,33);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:25.573898px;}
.fsa{font-size:30.243835px;}
.fsb{font-size:30.312282px;}
.fs8{font-size:30.376493px;}
.fs6{font-size:30.457496px;}
.fs5{font-size:32.483415px;}
.fs17{font-size:37.059216px;}
.fs4{font-size:38.005596px;}
.fs9{font-size:38.070563px;}
.fs1b{font-size:38.179358px;}
.fs1a{font-size:39.051631px;}
.fs14{font-size:46.170446px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:51.590031px;}
.fs18{font-size:51.938670px;}
.fs11{font-size:54.448765px;}
.fsc{font-size:56.937265px;}
.fsd{font-size:57.529910px;}
.fsf{font-size:57.616422px;}
.fs10{font-size:58.462496px;}
.fs12{font-size:58.564002px;}
.fs19{font-size:58.577447px;}
.fs15{font-size:58.583658px;}
.fs13{font-size:58.713354px;}
.fse{font-size:64.883358px;}
.fs0{font-size:72.000000px;}
.fs16{font-size:79.808104px;}
.fs3{font-size:82.469641px;}
.y0{bottom:0.000000px;}
.y44{bottom:1.853039px;}
.y30{bottom:1.957271px;}
.y8c{bottom:2.331023px;}
.y85{bottom:2.551438px;}
.y50{bottom:3.985656px;}
.y43{bottom:10.632828px;}
.y2f{bottom:10.769777px;}
.y84{bottom:13.255076px;}
.y8b{bottom:13.355911px;}
.y20{bottom:14.868252px;}
.y75{bottom:15.926390px;}
.y7f{bottom:16.490822px;}
.y4f{bottom:22.151622px;}
.y56{bottom:26.419555px;}
.y31{bottom:30.525000px;}
.y45{bottom:32.128772px;}
.y77{bottom:32.486171px;}
.y6e{bottom:32.613690px;}
.y5a{bottom:43.137834px;}
.y58{bottom:45.452007px;}
.y6f{bottom:46.978458px;}
.y53{bottom:52.091737px;}
.y38{bottom:53.004665px;}
.y36{bottom:56.505210px;}
.y88{bottom:58.763905px;}
.y78{bottom:59.899745px;}
.y3d{bottom:62.100677px;}
.y4d{bottom:63.143981px;}
.y4b{bottom:64.047838px;}
.y59{bottom:66.582354px;}
.y4c{bottom:66.615022px;}
.y35{bottom:66.685703px;}
.y4a{bottom:67.387064px;}
.y57{bottom:68.918154px;}
.y39{bottom:73.388645px;}
.y3b{bottom:75.290281px;}
.y49{bottom:76.921455px;}
.y3e{bottom:78.714590px;}
.y34{bottom:79.746488px;}
.y37{bottom:81.115638px;}
.y3f{bottom:84.608982px;}
.y55{bottom:84.792949px;}
.y3c{bottom:87.031698px;}
.y52{bottom:87.366656px;}
.y47{bottom:92.650964px;}
.y5c{bottom:92.945723px;}
.y3a{bottom:100.607041px;}
.y33{bottom:103.445186px;}
.y41{bottom:104.166697px;}
.y48{bottom:105.210715px;}
.y60{bottom:109.644176px;}
.y5e{bottom:111.978175px;}
.y79{bottom:112.025982px;}
.y80{bottom:115.098995px;}
.y70{bottom:115.161708px;}
.y74{bottom:117.168575px;}
.y40{bottom:125.294461px;}
.y5f{bottom:133.083289px;}
.y5d{bottom:135.426300px;}
.y32{bottom:142.040724px;}
.y46{bottom:143.034309px;}
.y5b{bottom:151.295687px;}
.y89{bottom:152.679010px;}
.y7a{bottom:164.214933px;}
.y1e{bottom:166.170000px;}
.y71{bottom:183.348094px;}
.y1d{bottom:197.130000px;}
.y54{bottom:197.777404px;}
.y7b{bottom:216.341170px;}
.y25{bottom:217.615009px;}
.y23{bottom:217.628540px;}
.y26{bottom:218.230842px;}
.y27{bottom:218.866977px;}
.y1c{bottom:228.270000px;}
.y73{bottom:229.955432px;}
.y2a{bottom:230.087305px;}
.y7e{bottom:236.164169px;}
.y2c{bottom:236.279454px;}
.y28{bottom:241.442971px;}
.y2b{bottom:243.973963px;}
.y24{bottom:250.017215px;}
.y7d{bottom:250.340792px;}
.y72{bottom:251.532389px;}
.y82{bottom:255.730986px;}
.y29{bottom:258.801298px;}
.y1b{bottom:259.230000px;}
.y2d{bottom:259.972044px;}
.y21{bottom:260.763168px;}
.y7c{bottom:268.533257px;}
.y6c{bottom:270.390000px;}
.y1a{bottom:290.415000px;}
.y6b{bottom:301.575000px;}
.y8e{bottom:306.314636px;}
.y19{bottom:307.155000px;}
.y51{bottom:307.289744px;}
.y4e{bottom:307.289854px;}
.y8d{bottom:313.977655px;}
.y86{bottom:314.229198px;}
.y6a{bottom:332.535000px;}
.y69{bottom:349.275000px;}
.y87{bottom:350.565411px;}
.y83{bottom:351.151261px;}
.y8a{bottom:351.151286px;}
.y12{bottom:654.585000px;}
.y11{bottom:685.545000px;}
.y68{bottom:689.865000px;}
.y10{bottom:716.685000px;}
.y67{bottom:721.005000px;}
.y18{bottom:729.285000px;}
.yf{bottom:747.645000px;}
.y66{bottom:751.965000px;}
.y17{bottom:760.425000px;}
.ye{bottom:778.785000px;}
.y65{bottom:783.105000px;}
.y16{bottom:791.385000px;}
.yd{bottom:809.745000px;}
.y64{bottom:814.065000px;}
.y15{bottom:822.525000px;}
.yc{bottom:840.705000px;}
.y63{bottom:845.205000px;}
.y14{bottom:853.530000px;}
.yb{bottom:871.890000px;}
.y62{bottom:876.210000px;}
.y13{bottom:880.530000px;}
.y1f{bottom:880.721904px;}
.y22{bottom:880.752652px;}
.y2e{bottom:880.752734px;}
.y61{bottom:892.950000px;}
.y81{bottom:893.025485px;}
.y76{bottom:893.999924px;}
.y6d{bottom:893.999965px;}
.ya{bottom:902.850000px;}
.y9{bottom:933.990000px;}
.y8{bottom:964.950000px;}
.y7{bottom:996.090000px;}
.y42{bottom:1016.049265px;}
.y6{bottom:1027.050000px;}
.y5{bottom:1058.190000px;}
.y4{bottom:1089.150000px;}
.y3{bottom:1120.290000px;}
.y2{bottom:1151.280000px;}
.y1{bottom:1182.420000px;}
.hf{height:18.693421px;}
.h13{height:22.106944px;}
.h14{height:22.156976px;}
.h10{height:22.203911px;}
.he{height:22.263121px;}
.hb{height:23.648814px;}
.hc{height:26.761808px;}
.h26{height:27.088695px;}
.ha{height:27.669113px;}
.h11{height:27.716411px;}
.h2b{height:27.907470px;}
.h21{height:33.748612px;}
.h7{height:36.022336px;}
.h28{height:37.964936px;}
.h1d{height:39.799708px;}
.h16{height:41.618695px;}
.h1a{height:41.883348px;}
.h19{height:41.946330px;}
.h17{height:42.051893px;}
.h1c{height:42.733572px;}
.h1e{height:42.807769px;}
.h2c{height:42.817597px;}
.h22{height:42.822137px;}
.h1f{height:42.916939px;}
.h29{height:46.118299px;}
.h18{height:47.426946px;}
.h2{height:50.800781px;}
.h4{height:54.878906px;}
.h24{height:58.336295px;}
.h8{height:60.281764px;}
.h3{height:64.546875px;}
.h5{height:70.606406px;}
.hd{height:149.176866px;}
.h12{height:150.154626px;}
.h1b{height:284.430035px;}
.h20{height:284.430076px;}
.h23{height:285.404515px;}
.h9{height:285.448051px;}
.h6{height:287.248663px;}
.h2a{height:322.855621px;}
.h25{height:322.859362px;}
.h27{height:325.007201px;}
.h15{height:418.065101px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:330.015111px;}
.w4{width:331.720846px;}
.w6{width:347.462997px;}
.wb{width:349.685821px;}
.w9{width:353.191554px;}
.wd{width:358.957939px;}
.w8{width:402.416403px;}
.w7{width:532.387270px;}
.w3{width:673.678357px;}
.wc{width:722.801167px;}
.wa{width:725.670000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:3.878407px;}
.x28{left:9.785995px;}
.x6{left:12.505161px;}
.x29{left:21.292387px;}
.x5{left:31.381181px;}
.x34{left:35.223692px;}
.x38{left:36.236756px;}
.x13{left:41.912366px;}
.x32{left:44.233701px;}
.x15{left:52.200424px;}
.xe{left:54.265371px;}
.x22{left:55.386728px;}
.x17{left:60.813966px;}
.x37{left:61.898138px;}
.x23{left:63.859369px;}
.x18{left:65.363018px;}
.x20{left:68.807289px;}
.xd{left:70.736345px;}
.x19{left:73.826805px;}
.x1{left:106.235987px;}
.x31{left:108.711657px;}
.x3a{left:110.652150px;}
.xf{left:111.775019px;}
.x1f{left:113.006950px;}
.x1e{left:114.435143px;}
.x35{left:116.058324px;}
.x14{left:129.650040px;}
.x4{left:130.909833px;}
.x10{left:134.138825px;}
.x3f{left:135.148941px;}
.x11{left:137.875149px;}
.x21{left:139.208609px;}
.x26{left:201.556630px;}
.x33{left:213.096779px;}
.x39{left:233.757899px;}
.xc{left:238.661205px;}
.x1d{left:245.369017px;}
.xb{left:251.494674px;}
.x1c{left:257.782822px;}
.x1a{left:261.125017px;}
.xa{left:262.866102px;}
.x3c{left:266.528977px;}
.x16{left:269.601378px;}
.x9{left:271.949702px;}
.x1b{left:273.219739px;}
.x40{left:274.417139px;}
.x8{left:293.196679px;}
.x24{left:298.744336px;}
.x25{left:305.053794px;}
.x27{left:350.540508px;}
.x3e{left:429.041115px;}
.x2e{left:457.520820px;}
.x2c{left:459.854907px;}
.x7{left:472.836718px;}
.x12{left:474.542485px;}
.x2d{left:476.076333px;}
.x36{left:478.753446px;}
.x3d{left:490.291455px;}
.x2a{left:494.199272px;}
.x2b{left:512.394308px;}
.x3{left:734.009987px;}
.x2{left:804.569987px;}
.x30{left:829.229987px;}
.x2f{left:833.009987px;}
@media print{
.v4{vertical-align:-18.833692pt;}
.v6{vertical-align:-17.392833pt;}
.v5{vertical-align:-5.120000pt;}
.v3{vertical-align:-1.275275pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.767106pt;}
.v7{vertical-align:15.620653pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.241270pt;}
.lse{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.138850pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.115348pt;}
.ls11{letter-spacing:-0.104138pt;}
.lsa{letter-spacing:-0.022749pt;}
.lsf{letter-spacing:-0.019065pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.019994pt;}
.ls3{letter-spacing:0.028661pt;}
.lsc{letter-spacing:0.138850pt;}
.ls2{letter-spacing:0.162266pt;}
.ls6{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsb{letter-spacing:7.040000pt;}
.ls4{letter-spacing:21.771107pt;}
.ls5{letter-spacing:33.681692pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-16.256000pt;}
.ws13{word-spacing:-16.033399pt;}
.ws2{word-spacing:-16.000000pt;}
.ws14{word-spacing:-15.918050pt;}
.ws5{word-spacing:-15.872000pt;}
.ws19{word-spacing:-14.489657pt;}
.ws1b{word-spacing:-14.446732pt;}
.ws1f{word-spacing:-12.834622pt;}
.ws18{word-spacing:-11.409230pt;}
.ws15{word-spacing:-10.720000pt;}
.ws21{word-spacing:-9.434543pt;}
.ws1e{word-spacing:-9.157744pt;}
.wsa{word-spacing:-7.526386pt;}
.wsb{word-spacing:-7.506369pt;}
.ws10{word-spacing:-7.490502pt;}
.wsf{word-spacing:-7.473588pt;}
.ws0{word-spacing:-0.064000pt;}
.ws7{word-spacing:-0.033783pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:29.236513pt;}
.ws11{word-spacing:49.835805pt;}
.wsc{word-spacing:52.044976pt;}
.wsd{word-spacing:133.800275pt;}
.ws8{word-spacing:134.391416pt;}
.ws12{word-spacing:144.531029pt;}
.ws1d{word-spacing:149.211198pt;}
.ws20{word-spacing:153.651354pt;}
.ws1a{word-spacing:192.757023pt;}
.ws16{word-spacing:214.394004pt;}
.ws17{word-spacing:515.252850pt;}
.ws9{word-spacing:670.276371pt;}
.ws6{word-spacing:1078.549314pt;}
.ws1c{word-spacing:1214.600433pt;}
.ws22{word-spacing:1262.750408pt;}
._b{margin-left:-246.030742pt;}
._8{margin-left:-115.092534pt;}
._d{margin-left:-3.595705pt;}
._9{margin-left:-2.473274pt;}
._0{margin-left:-0.896000pt;}
._2{width:0.906667pt;}
._5{width:2.176000pt;}
._6{width:3.125333pt;}
._3{width:4.160000pt;}
._4{width:5.098667pt;}
._f{width:7.360000pt;}
._10{width:8.266667pt;}
._e{width:17.152000pt;}
._7{width:140.742261pt;}
._11{width:159.610368pt;}
._12{width:164.228892pt;}
._c{width:206.562035pt;}
._a{width:681.152535pt;}
._1{width:752.138667pt;}
.fs7{font-size:22.732354pt;}
.fsa{font-size:26.883409pt;}
.fsb{font-size:26.944251pt;}
.fs8{font-size:27.001327pt;}
.fs6{font-size:27.073330pt;}
.fs5{font-size:28.874147pt;}
.fs17{font-size:32.941526pt;}
.fs4{font-size:33.782752pt;}
.fs9{font-size:33.840500pt;}
.fs1b{font-size:33.937207pt;}
.fs1a{font-size:34.712561pt;}
.fs14{font-size:41.040396pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:45.857806pt;}
.fs18{font-size:46.167706pt;}
.fs11{font-size:48.398902pt;}
.fsc{font-size:50.610903pt;}
.fsd{font-size:51.137698pt;}
.fsf{font-size:51.214597pt;}
.fs10{font-size:51.966663pt;}
.fs12{font-size:52.056891pt;}
.fs19{font-size:52.068842pt;}
.fs15{font-size:52.074363pt;}
.fs13{font-size:52.189648pt;}
.fse{font-size:57.674096pt;}
.fs0{font-size:64.000000pt;}
.fs16{font-size:70.940537pt;}
.fs3{font-size:73.306348pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:1.647146pt;}
.y30{bottom:1.739796pt;}
.y8c{bottom:2.072020pt;}
.y85{bottom:2.267945pt;}
.y50{bottom:3.542805pt;}
.y43{bottom:9.451403pt;}
.y2f{bottom:9.573135pt;}
.y84{bottom:11.782290pt;}
.y8b{bottom:11.871921pt;}
.y20{bottom:13.216224pt;}
.y75{bottom:14.156791pt;}
.y7f{bottom:14.658508pt;}
.y4f{bottom:19.690330pt;}
.y56{bottom:23.484049pt;}
.y31{bottom:27.133334pt;}
.y45{bottom:28.558908pt;}
.y77{bottom:28.876596pt;}
.y6e{bottom:28.989947pt;}
.y5a{bottom:38.344741pt;}
.y58{bottom:40.401784pt;}
.y6f{bottom:41.758630pt;}
.y53{bottom:46.303766pt;}
.y38{bottom:47.115258pt;}
.y36{bottom:50.226854pt;}
.y88{bottom:52.234582pt;}
.y78{bottom:53.244218pt;}
.y3d{bottom:55.200602pt;}
.y4d{bottom:56.127983pt;}
.y4b{bottom:56.931411pt;}
.y59{bottom:59.184314pt;}
.y4c{bottom:59.213352pt;}
.y35{bottom:59.276180pt;}
.y4a{bottom:59.899613pt;}
.y57{bottom:61.260582pt;}
.y39{bottom:65.234351pt;}
.y3b{bottom:66.924694pt;}
.y49{bottom:68.374627pt;}
.y3e{bottom:69.968525pt;}
.y34{bottom:70.885767pt;}
.y37{bottom:72.102789pt;}
.y3f{bottom:75.207984pt;}
.y55{bottom:75.371510pt;}
.y3c{bottom:77.361509pt;}
.y52{bottom:77.659250pt;}
.y47{bottom:82.356412pt;}
.y5c{bottom:82.618421pt;}
.y3a{bottom:89.428481pt;}
.y33{bottom:91.951276pt;}
.y41{bottom:92.592619pt;}
.y48{bottom:93.520636pt;}
.y60{bottom:97.461490pt;}
.y5e{bottom:99.536156pt;}
.y79{bottom:99.578651pt;}
.y80{bottom:102.310218pt;}
.y70{bottom:102.365963pt;}
.y74{bottom:104.149844pt;}
.y40{bottom:111.372855pt;}
.y5f{bottom:118.296257pt;}
.y5d{bottom:120.378933pt;}
.y32{bottom:126.258421pt;}
.y46{bottom:127.141608pt;}
.y5b{bottom:134.485055pt;}
.y89{bottom:135.714676pt;}
.y7a{bottom:145.968830pt;}
.y1e{bottom:147.706667pt;}
.y71{bottom:162.976083pt;}
.y1d{bottom:175.226667pt;}
.y54{bottom:175.802137pt;}
.y7b{bottom:192.303262pt;}
.y25{bottom:193.435564pt;}
.y23{bottom:193.447591pt;}
.y26{bottom:193.982971pt;}
.y27{bottom:194.548424pt;}
.y1c{bottom:202.906667pt;}
.y73{bottom:204.404828pt;}
.y2a{bottom:204.522049pt;}
.y7e{bottom:209.923706pt;}
.y2c{bottom:210.026181pt;}
.y28{bottom:214.615974pt;}
.y2b{bottom:216.865744pt;}
.y24{bottom:222.237524pt;}
.y7d{bottom:222.525148pt;}
.y72{bottom:223.584346pt;}
.y82{bottom:227.316432pt;}
.y29{bottom:230.045598pt;}
.y1b{bottom:230.426667pt;}
.y2d{bottom:231.086261pt;}
.y21{bottom:231.789483pt;}
.y7c{bottom:238.696228pt;}
.y6c{bottom:240.346667pt;}
.y1a{bottom:258.146667pt;}
.y6b{bottom:268.066667pt;}
.y8e{bottom:272.279677pt;}
.y19{bottom:273.026667pt;}
.y51{bottom:273.146439pt;}
.y4e{bottom:273.146537pt;}
.y8d{bottom:279.091249pt;}
.y86{bottom:279.314842pt;}
.y6a{bottom:295.586667pt;}
.y69{bottom:310.466667pt;}
.y87{bottom:311.613699pt;}
.y83{bottom:312.134455pt;}
.y8a{bottom:312.134476pt;}
.y12{bottom:581.853333pt;}
.y11{bottom:609.373333pt;}
.y68{bottom:613.213333pt;}
.y10{bottom:637.053333pt;}
.y67{bottom:640.893333pt;}
.y18{bottom:648.253333pt;}
.yf{bottom:664.573333pt;}
.y66{bottom:668.413333pt;}
.y17{bottom:675.933333pt;}
.ye{bottom:692.253333pt;}
.y65{bottom:696.093333pt;}
.y16{bottom:703.453333pt;}
.yd{bottom:719.773333pt;}
.y64{bottom:723.613333pt;}
.y15{bottom:731.133333pt;}
.yc{bottom:747.293333pt;}
.y63{bottom:751.293333pt;}
.y14{bottom:758.693333pt;}
.yb{bottom:775.013333pt;}
.y62{bottom:778.853333pt;}
.y13{bottom:782.693333pt;}
.y1f{bottom:782.863915pt;}
.y22{bottom:782.891246pt;}
.y2e{bottom:782.891319pt;}
.y61{bottom:793.733333pt;}
.y81{bottom:793.800431pt;}
.y76{bottom:794.666599pt;}
.y6d{bottom:794.666636pt;}
.ya{bottom:802.533333pt;}
.y9{bottom:830.213333pt;}
.y8{bottom:857.733333pt;}
.y7{bottom:885.413333pt;}
.y42{bottom:903.154902pt;}
.y6{bottom:912.933333pt;}
.y5{bottom:940.613333pt;}
.y4{bottom:968.133333pt;}
.y3{bottom:995.813333pt;}
.y2{bottom:1023.360000pt;}
.y1{bottom:1051.040000pt;}
.hf{height:16.616374pt;}
.h13{height:19.650617pt;}
.h14{height:19.695090pt;}
.h10{height:19.736810pt;}
.he{height:19.789441pt;}
.hb{height:21.021168pt;}
.hc{height:23.788274pt;}
.h26{height:24.078840pt;}
.ha{height:24.594767pt;}
.h11{height:24.636809pt;}
.h2b{height:24.806640pt;}
.h21{height:29.998766pt;}
.h7{height:32.019854pt;}
.h28{height:33.746610pt;}
.h1d{height:35.377518pt;}
.h16{height:36.994395pt;}
.h1a{height:37.229643pt;}
.h19{height:37.285627pt;}
.h17{height:37.379460pt;}
.h1c{height:37.985398pt;}
.h1e{height:38.051350pt;}
.h2c{height:38.060086pt;}
.h22{height:38.064122pt;}
.h1f{height:38.148390pt;}
.h29{height:40.994043pt;}
.h18{height:42.157286pt;}
.h2{height:45.156250pt;}
.h4{height:48.781250pt;}
.h24{height:51.854484pt;}
.h8{height:53.583790pt;}
.h3{height:57.375000pt;}
.h5{height:62.761250pt;}
.hd{height:132.601659pt;}
.h12{height:133.470779pt;}
.h1b{height:252.826698pt;}
.h20{height:252.826734pt;}
.h23{height:253.692903pt;}
.h9{height:253.731601pt;}
.h6{height:255.332145pt;}
.h2a{height:286.982775pt;}
.h25{height:286.986099pt;}
.h27{height:288.895290pt;}
.h15{height:371.613423pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:293.346765pt;}
.w4{width:294.862974pt;}
.w6{width:308.855997pt;}
.wb{width:310.831841pt;}
.w9{width:313.948048pt;}
.wd{width:319.073724pt;}
.w8{width:357.703470pt;}
.w7{width:473.233129pt;}
.w3{width:598.825206pt;}
.wc{width:642.489926pt;}
.wa{width:645.040000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:3.447473pt;}
.x28{left:8.698662pt;}
.x6{left:11.115699pt;}
.x29{left:18.926566pt;}
.x5{left:27.894383pt;}
.x34{left:31.309948pt;}
.x38{left:32.210450pt;}
.x13{left:37.255436pt;}
.x32{left:39.318845pt;}
.x15{left:46.400377pt;}
.xe{left:48.235885pt;}
.x22{left:49.232647pt;}
.x17{left:54.056858pt;}
.x37{left:55.020567pt;}
.x23{left:56.763884pt;}
.x18{left:58.100460pt;}
.x20{left:61.162034pt;}
.xd{left:62.876751pt;}
.x19{left:65.623827pt;}
.x1{left:94.431988pt;}
.x31{left:96.632584pt;}
.x3a{left:98.357467pt;}
.xf{left:99.355572pt;}
.x1f{left:100.450622pt;}
.x1e{left:101.720127pt;}
.x35{left:103.162955pt;}
.x14{left:115.244480pt;}
.x4{left:116.364296pt;}
.x10{left:119.234511pt;}
.x3f{left:120.132392pt;}
.x11{left:122.555688pt;}
.x21{left:123.740986pt;}
.x26{left:179.161449pt;}
.x33{left:189.419359pt;}
.x39{left:207.784799pt;}
.xc{left:212.143294pt;}
.x1d{left:218.105793pt;}
.xb{left:223.550821pt;}
.x1c{left:229.140286pt;}
.x1a{left:232.111126pt;}
.xa{left:233.658758pt;}
.x3c{left:236.914646pt;}
.x16{left:239.645669pt;}
.x9{left:241.733069pt;}
.x1b{left:242.861990pt;}
.x40{left:243.926346pt;}
.x8{left:260.619270pt;}
.x24{left:265.550520pt;}
.x25{left:271.158928pt;}
.x27{left:311.591563pt;}
.x3e{left:381.369880pt;}
.x2e{left:406.685173pt;}
.x2c{left:408.759917pt;}
.x7{left:420.299305pt;}
.x12{left:421.815542pt;}
.x2d{left:423.178962pt;}
.x36{left:425.558618pt;}
.x3d{left:435.814627pt;}
.x2a{left:439.288242pt;}
.x2b{left:455.461607pt;}
.x3{left:652.453322pt;}
.x2{left:715.173322pt;}
.x30{left:737.093322pt;}
.x2f{left:740.453322pt;}
}




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