
    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_9342049c686e92966cc4fe10.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6c64ae6fbb1022822503a8d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_5b4c691a8cf0a8a06e7623b7.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7bcee11ad2407e85e1f75819.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7bb62ef086ccd535b060c7c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1aaf3a6619c4f68f412e0e05.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_a1a6c358d87af7a666b75f94.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e45ed85115ce111209b26c7d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_56a83bc5cdc54d5bc3a71c01.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0d6e7717a7cd7e7923a5bc9d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4c801c99996941bc8b634287.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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_d64b81adb562c4f17bf929b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.664000;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_1a1387b9a963c86110d2c11a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_9b23425650f84d0abceae2ff.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d64b81adb562c4f17bf929b7.woff2')format("woff");}.fff{font-family:fff;line-height:0.664000;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_1929d1665221ffbf0e2f7af5.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_90fdb3dfe8404cfa13cf5578.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_93d0e58cccfc5b6169049455.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.431000;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_451f8ee2c05ebed038eccb1b.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_0d6e7717a7cd7e7923a5bc9d.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_e24368fdac402f3a7eff1504.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.693000;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_3f60fb5d4ed538e5193f4885.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.932000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.ma{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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:-22.854000px;}
.v2{vertical-align:-8.970000px;}
.v1{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:19.698000px;}
.v4{vertical-align:23.754000px;}
.v5{vertical-align:34.500000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.001494px;}
.ls11{letter-spacing:0.001597px;}
.ls18{letter-spacing:0.002423px;}
.ls15{letter-spacing:0.016967px;}
.ls1a{letter-spacing:0.022687px;}
.ls19{letter-spacing:0.024187px;}
.ls12{letter-spacing:0.327273px;}
.ls9{letter-spacing:2.984915px;}
.ls10{letter-spacing:5.301823px;}
.lsb{letter-spacing:5.367277px;}
.ls2{letter-spacing:17.054093px;}
.ls13{letter-spacing:17.345469px;}
.lse{letter-spacing:18.196379px;}
.lsd{letter-spacing:21.169739px;}
.ls5{letter-spacing:21.419468px;}
.lsa{letter-spacing:21.796382px;}
.ls16{letter-spacing:24.806915px;}
.lsc{letter-spacing:26.967295px;}
.ls4{letter-spacing:27.974981px;}
.ls14{letter-spacing:31.090935px;}
.lsf{letter-spacing:31.547578px;}
.ls17{letter-spacing:32.989118px;}
.ls8{letter-spacing:33.447301px;}
.ls7{letter-spacing:33.512755px;}
.ls6{letter-spacing:35.869121px;}
.ls0{letter-spacing:35.883533px;}
.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;}
}
.ws37{word-spacing:-32.727300px;}
.ws18{word-spacing:-29.887800px;}
.ws1e{word-spacing:-28.034756px;}
.ws26{word-spacing:-27.646998px;}
.ws36{word-spacing:-17.214560px;}
.ws38{word-spacing:-15.447286px;}
.ws5{word-spacing:-13.325864px;}
.ws3b{word-spacing:-12.567283px;}
.wsb{word-spacing:-12.196097px;}
.ws16{word-spacing:-11.716018px;}
.ws4{word-spacing:-11.615075px;}
.ws6{word-spacing:-11.561276px;}
.ws28{word-spacing:-11.476915px;}
.ws22{word-spacing:-11.323646px;}
.ws2b{word-spacing:-11.258191px;}
.ws32{word-spacing:-11.192737px;}
.ws23{word-spacing:-10.930918px;}
.ws24{word-spacing:-10.865464px;}
.ws2c{word-spacing:-10.800009px;}
.wsa{word-spacing:-10.592905px;}
.ws8{word-spacing:-10.582145px;}
.ws14{word-spacing:-10.341179px;}
.ws17{word-spacing:-10.281403px;}
.ws33{word-spacing:-10.145463px;}
.ws3{word-spacing:-9.982525px;}
.ws3e{word-spacing:-9.922750px;}
.ws15{word-spacing:-9.743423px;}
.ws20{word-spacing:-9.564096px;}
.ws9{word-spacing:-9.247945px;}
.ws39{word-spacing:-9.229099px;}
.ws7{word-spacing:-9.194147px;}
.ws3d{word-spacing:-9.151644px;}
.ws21{word-spacing:-9.098189px;}
.ws2a{word-spacing:-8.901826px;}
.wse{word-spacing:-8.053620px;}
.ws3a{word-spacing:-8.050916px;}
.wsd{word-spacing:-6.988412px;}
.ws25{word-spacing:-5.825459px;}
.ws13{word-spacing:-5.027128px;}
.ws1b{word-spacing:-3.347434px;}
.ws3c{word-spacing:-2.552729px;}
.ws29{word-spacing:-2.487275px;}
.ws1a{word-spacing:-2.092146px;}
.ws19{word-spacing:-0.956410px;}
.ws2e{word-spacing:-0.065455px;}
.ws1c{word-spacing:-0.059776px;}
.wsf{word-spacing:0.000000px;}
.ws11{word-spacing:2.683639px;}
.ws30{word-spacing:6.670552px;}
.ws31{word-spacing:6.673496px;}
.wsc{word-spacing:9.199526px;}
.ws1d{word-spacing:9.862974px;}
.ws2f{word-spacing:10.800009px;}
.ws35{word-spacing:10.865464px;}
.ws12{word-spacing:11.429123px;}
.ws34{word-spacing:18.065470px;}
.ws2{word-spacing:23.384371px;}
.ws1f{word-spacing:26.480591px;}
.ws10{word-spacing:26.827469px;}
.ws1{word-spacing:32.192873px;}
.ws0{word-spacing:32.278950px;}
.ws2d{word-spacing:34.370970px;}
.ws27{word-spacing:2287.308812px;}
._f{margin-left:-27.974981px;}
._1{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._a{margin-left:-3.890165px;}
._2{margin-left:-2.668393px;}
._6{margin-left:-1.560154px;}
._4{width:1.205092px;}
._0{width:2.668393px;}
._21{width:5.085117px;}
._7{width:16.763574px;}
._8{width:18.969308px;}
._5{width:20.959727px;}
._9{width:22.197212px;}
._b{width:26.659918px;}
._e{width:28.273859px;}
._c{width:29.828024px;}
._23{width:33.512755px;}
._22{width:35.869121px;}
._20{width:46.997283px;}
._d{width:50.790194px;}
._24{width:55.666000px;}
._1f{width:68.741940px;}
._18{width:1418.501439px;}
._17{width:1602.085440px;}
._16{width:1678.601867px;}
._14{width:1735.679185px;}
._11{width:1820.426740px;}
._1a{width:1944.086632px;}
._1d{width:2009.278507px;}
._1b{width:2032.345435px;}
._12{width:2038.929440px;}
._1e{width:2056.452623px;}
._19{width:2073.163103px;}
._10{width:2074.682897px;}
._13{width:2079.838565px;}
._15{width:2216.231662px;}
._1c{width:2309.020893px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y44{bottom:160.314000px;}
.y2d{bottom:173.425500px;}
.y43{bottom:190.800000px;}
.y2c{bottom:207.081000px;}
.y7b{bottom:209.376000px;}
.y42{bottom:234.022500px;}
.y57{bottom:241.143000px;}
.y69{bottom:241.851000px;}
.y2b{bottom:253.930500px;}
.y7a{bottom:258.436500px;}
.y41{bottom:285.768000px;}
.y56{bottom:286.881000px;}
.y68{bottom:288.094500px;}
.y2a{bottom:300.780000px;}
.y79{bottom:307.498500px;}
.y55{bottom:327.694500px;}
.y29{bottom:331.266000px;}
.y54{bottom:332.619000px;}
.y67{bottom:334.338000px;}
.y40{bottom:345.642000px;}
.ye{bottom:346.756500px;}
.y78{bottom:356.560500px;}
.y28{bottom:361.750500px;}
.yd{bottom:371.413500px;}
.y53{bottom:378.355500px;}
.y66{bottom:386.245500px;}
.y27{bottom:392.236500px;}
.y3f{bottom:397.387500px;}
.yc{bottom:400.554000px;}
.y77{bottom:409.032000px;}
.y26{bottom:422.722500px;}
.y52{bottom:424.093500px;}
.yb{bottom:429.696000px;}
.y65{bottom:448.090500px;}
.y3e{bottom:457.261500px;}
.ya{bottom:458.836500px;}
.y25{bottom:469.572000px;}
.y76{bottom:474.097500px;}
.y51{bottom:474.436500px;}
.y3d{bottom:487.747500px;}
.y9{bottom:487.977000px;}
.y64{bottom:494.334000px;}
.y75{bottom:504.583500px;}
.y24{bottom:521.317500px;}
.y50{bottom:526.243500px;}
.y3c{bottom:533.313000px;}
.y63{bottom:540.577500px;}
.y74{bottom:559.581000px;}
.y3b{bottom:576.535500px;}
.y23{bottom:581.584500px;}
.y4f{bottom:587.511000px;}
.y62{bottom:592.485000px;}
.y73{bottom:608.643000px;}
.y22{bottom:612.070500px;}
.y3a{bottom:619.756500px;}
.y4e{bottom:633.249000px;}
.y61{bottom:654.330000px;}
.y72{bottom:657.703500px;}
.y39{bottom:658.564500px;}
.y21{bottom:665.719500px;}
.y4d{bottom:678.985500px;}
.y38{bottom:689.049000px;}
.y20{bottom:692.617500px;}
.y8{bottom:696.460500px;}
.y60{bottom:706.237500px;}
.y71{bottom:712.701000px;}
.y1f{bottom:719.517000px;}
.y37{bottom:719.535000px;}
.y4c{bottom:730.792500px;}
.y1e{bottom:746.416500px;}
.y7{bottom:748.872000px;}
.y70{bottom:765.174000px;}
.y5f{bottom:768.082500px;}
.y36{bottom:771.280500px;}
.y1d{bottom:773.316000px;}
.y6{bottom:775.771500px;}
.y4b{bottom:792.060000px;}
.y5e{bottom:798.568500px;}
.y1c{bottom:800.214000px;}
.y5{bottom:802.671000px;}
.y1b{bottom:827.113500px;}
.y6f{bottom:830.239500px;}
.y4a{bottom:837.798000px;}
.y35{bottom:844.672500px;}
.y5d{bottom:849.619500px;}
.y1a{bottom:854.013000px;}
.y19{bottom:880.912500px;}
.y49{bottom:883.534500px;}
.y6e{bottom:885.237000px;}
.y34{bottom:891.522000px;}
.y5c{bottom:895.863000px;}
.y4{bottom:902.547000px;}
.y18{bottom:907.810500px;}
.y80{bottom:909.714000px;}
.y3{bottom:933.928500px;}
.y6d{bottom:934.299000px;}
.y17{bottom:934.710000px;}
.y48{bottom:935.341500px;}
.y7f{bottom:936.613500px;}
.y33{bottom:938.371500px;}
.y5b{bottom:942.106500px;}
.y16{bottom:961.609500px;}
.y7e{bottom:963.513000px;}
.y6c{bottom:983.359500px;}
.y32{bottom:985.221000px;}
.y5a{bottom:993.157500px;}
.y47{bottom:996.609000px;}
.y2{bottom:999.789000px;}
.y15{bottom:1000.314000px;}
.y14{bottom:1027.213500px;}
.y31{bottom:1032.070500px;}
.y6b{bottom:1032.421500px;}
.y13{bottom:1032.636000px;}
.y1{bottom:1040.139000px;}
.y59{bottom:1040.571000px;}
.y46{bottom:1042.345500px;}
.y7d{bottom:1057.659000px;}
.y11{bottom:1059.342000px;}
.y12{bottom:1065.280500px;}
.y30{bottom:1078.920000px;}
.y6a{bottom:1087.419000px;}
.y58{bottom:1087.983000px;}
.y45{bottom:1088.083500px;}
.y7c{bottom:1088.145000px;}
.y10{bottom:1108.509000px;}
.y2f{bottom:1109.404500px;}
.yf{bottom:1139.890500px;}
.y2e{bottom:1192.194000px;}
.hd{height:17.494800px;}
.ha{height:27.783619px;}
.h9{height:35.865450px;}
.h6{height:37.927872px;}
.h5{height:40.348800px;}
.hc{height:42.141798px;}
.hb{height:42.799330px;}
.h4{height:44.831700px;}
.h11{height:46.145493px;}
.h8{height:49.090950px;}
.h7{height:50.211840px;}
.h3{height:53.798400px;}
.he{height:56.415470px;}
.h2{height:60.254040px;}
.h10{height:68.788950px;}
.hf{height:70.365450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:106.215000px;}
.x1{left:108.000000px;}
.x24{left:110.739000px;}
.xf{left:112.849500px;}
.x23{left:113.910000px;}
.x21{left:120.273000px;}
.xa{left:125.932500px;}
.x27{left:130.416000px;}
.x3a{left:132.741000px;}
.x2{left:135.559500px;}
.x10{left:138.882000px;}
.x22{left:144.042000px;}
.x2a{left:152.226000px;}
.x17{left:158.809500px;}
.x16{left:173.754000px;}
.x13{left:214.422000px;}
.x14{left:221.125500px;}
.x2f{left:250.537500px;}
.x2d{left:266.334000px;}
.x3{left:274.819500px;}
.x31{left:285.838500px;}
.x28{left:297.238500px;}
.x32{left:304.632000px;}
.x33{left:310.869000px;}
.x38{left:325.719000px;}
.x6{left:329.793000px;}
.x36{left:332.419500px;}
.x2b{left:336.204000px;}
.x4{left:343.095000px;}
.x26{left:347.280000px;}
.x39{left:353.122500px;}
.x35{left:363.339000px;}
.x15{left:364.890000px;}
.x5{left:366.123000px;}
.x30{left:372.835500px;}
.x37{left:374.874000px;}
.x29{left:376.365000px;}
.x34{left:380.182500px;}
.x11{left:382.602000px;}
.x7{left:392.640000px;}
.x2c{left:399.070500px;}
.x8{left:405.966000px;}
.xb{left:407.065500px;}
.x20{left:409.203000px;}
.xc{left:423.159000px;}
.xd{left:428.427000px;}
.xe{left:458.776500px;}
.x18{left:465.228000px;}
.x19{left:482.613000px;}
.x1a{left:488.541000px;}
.x12{left:511.759500px;}
.x1b{left:521.541000px;}
.x1c{left:557.895000px;}
.x1d{left:577.260000px;}
.x1e{left:581.568000px;}
.x1f{left:614.569500px;}
.x2e{left:637.239000px;}
.x25{left:799.195500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v2{vertical-align:-7.973333pt;}
.v1{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:17.509333pt;}
.v4{vertical-align:21.114667pt;}
.v5{vertical-align:30.666667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.001328pt;}
.ls11{letter-spacing:0.001420pt;}
.ls18{letter-spacing:0.002154pt;}
.ls15{letter-spacing:0.015082pt;}
.ls1a{letter-spacing:0.020166pt;}
.ls19{letter-spacing:0.021500pt;}
.ls12{letter-spacing:0.290909pt;}
.ls9{letter-spacing:2.653258pt;}
.ls10{letter-spacing:4.712731pt;}
.lsb{letter-spacing:4.770913pt;}
.ls2{letter-spacing:15.159194pt;}
.ls13{letter-spacing:15.418195pt;}
.lse{letter-spacing:16.174559pt;}
.lsd{letter-spacing:18.817546pt;}
.ls5{letter-spacing:19.039527pt;}
.lsa{letter-spacing:19.374562pt;}
.ls16{letter-spacing:22.050591pt;}
.lsc{letter-spacing:23.970929pt;}
.ls4{letter-spacing:24.866650pt;}
.ls14{letter-spacing:27.636387pt;}
.lsf{letter-spacing:28.042291pt;}
.ls17{letter-spacing:29.323661pt;}
.ls8{letter-spacing:29.730934pt;}
.ls7{letter-spacing:29.789116pt;}
.ls6{letter-spacing:31.883663pt;}
.ls0{letter-spacing:31.896474pt;}
.ws37{word-spacing:-29.090933pt;}
.ws18{word-spacing:-26.566933pt;}
.ws1e{word-spacing:-24.919783pt;}
.ws26{word-spacing:-24.575109pt;}
.ws36{word-spacing:-15.301831pt;}
.ws38{word-spacing:-13.730921pt;}
.ws5{word-spacing:-11.845212pt;}
.ws3b{word-spacing:-11.170918pt;}
.wsb{word-spacing:-10.840975pt;}
.ws16{word-spacing:-10.414238pt;}
.ws4{word-spacing:-10.324511pt;}
.ws6{word-spacing:-10.276690pt;}
.ws28{word-spacing:-10.201702pt;}
.ws22{word-spacing:-10.065463pt;}
.ws2b{word-spacing:-10.007281pt;}
.ws32{word-spacing:-9.949099pt;}
.ws23{word-spacing:-9.716372pt;}
.ws24{word-spacing:-9.658190pt;}
.ws2c{word-spacing:-9.600008pt;}
.wsa{word-spacing:-9.415916pt;}
.ws8{word-spacing:-9.406351pt;}
.ws14{word-spacing:-9.192159pt;}
.ws17{word-spacing:-9.139025pt;}
.ws33{word-spacing:-9.018189pt;}
.ws3{word-spacing:-8.873356pt;}
.ws3e{word-spacing:-8.820222pt;}
.ws15{word-spacing:-8.660820pt;}
.ws20{word-spacing:-8.501419pt;}
.ws9{word-spacing:-8.220396pt;}
.ws39{word-spacing:-8.203643pt;}
.ws7{word-spacing:-8.172575pt;}
.ws3d{word-spacing:-8.134795pt;}
.ws21{word-spacing:-8.087279pt;}
.ws2a{word-spacing:-7.912734pt;}
.wse{word-spacing:-7.158774pt;}
.ws3a{word-spacing:-7.156370pt;}
.wsd{word-spacing:-6.211922pt;}
.ws25{word-spacing:-5.178186pt;}
.ws13{word-spacing:-4.468558pt;}
.ws1b{word-spacing:-2.975497pt;}
.ws3c{word-spacing:-2.269093pt;}
.ws29{word-spacing:-2.210911pt;}
.ws1a{word-spacing:-1.859685pt;}
.ws19{word-spacing:-0.850142pt;}
.ws2e{word-spacing:-0.058182pt;}
.ws1c{word-spacing:-0.053134pt;}
.wsf{word-spacing:0.000000pt;}
.ws11{word-spacing:2.385457pt;}
.ws30{word-spacing:5.929380pt;}
.ws31{word-spacing:5.931997pt;}
.wsc{word-spacing:8.177357pt;}
.ws1d{word-spacing:8.767088pt;}
.ws2f{word-spacing:9.600008pt;}
.ws35{word-spacing:9.658190pt;}
.ws12{word-spacing:10.159221pt;}
.ws34{word-spacing:16.058195pt;}
.ws2{word-spacing:20.786108pt;}
.ws1f{word-spacing:23.538303pt;}
.ws10{word-spacing:23.846639pt;}
.ws1{word-spacing:28.615887pt;}
.ws0{word-spacing:28.692400pt;}
.ws2d{word-spacing:30.551973pt;}
.ws27{word-spacing:2033.163389pt;}
._f{margin-left:-24.866650pt;}
._1{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._a{margin-left:-3.457924pt;}
._2{margin-left:-2.371905pt;}
._6{margin-left:-1.386803pt;}
._4{width:1.071193pt;}
._0{width:2.371905pt;}
._21{width:4.520104pt;}
._7{width:14.900955pt;}
._8{width:16.861607pt;}
._5{width:18.630868pt;}
._9{width:19.730855pt;}
._b{width:23.697705pt;}
._e{width:25.132319pt;}
._c{width:26.513799pt;}
._23{width:29.789116pt;}
._22{width:31.883663pt;}
._20{width:41.775363pt;}
._d{width:45.146839pt;}
._24{width:49.480889pt;}
._1f{width:61.103947pt;}
._18{width:1260.890168pt;}
._17{width:1424.075947pt;}
._16{width:1492.090549pt;}
._14{width:1542.825942pt;}
._11{width:1618.157102pt;}
._1a{width:1728.077006pt;}
._1d{width:1786.025339pt;}
._1b{width:1806.529275pt;}
._12{width:1812.381725pt;}
._1e{width:1827.957887pt;}
._19{width:1842.811647pt;}
._10{width:1844.162575pt;}
._13{width:1848.745391pt;}
._15{width:1969.983700pt;}
._1c{width:2052.463016pt;}
.fs4{font-size:31.880533pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:142.501333pt;}
.y2d{bottom:154.156000pt;}
.y43{bottom:169.600000pt;}
.y2c{bottom:184.072000pt;}
.y7b{bottom:186.112000pt;}
.y42{bottom:208.020000pt;}
.y57{bottom:214.349333pt;}
.y69{bottom:214.978667pt;}
.y2b{bottom:225.716000pt;}
.y7a{bottom:229.721333pt;}
.y41{bottom:254.016000pt;}
.y56{bottom:255.005333pt;}
.y68{bottom:256.084000pt;}
.y2a{bottom:267.360000pt;}
.y79{bottom:273.332000pt;}
.y55{bottom:291.284000pt;}
.y29{bottom:294.458667pt;}
.y54{bottom:295.661333pt;}
.y67{bottom:297.189333pt;}
.y40{bottom:307.237333pt;}
.ye{bottom:308.228000pt;}
.y78{bottom:316.942667pt;}
.y28{bottom:321.556000pt;}
.yd{bottom:330.145333pt;}
.y53{bottom:336.316000pt;}
.y66{bottom:343.329333pt;}
.y27{bottom:348.654667pt;}
.y3f{bottom:353.233333pt;}
.yc{bottom:356.048000pt;}
.y77{bottom:363.584000pt;}
.y26{bottom:375.753333pt;}
.y52{bottom:376.972000pt;}
.yb{bottom:381.952000pt;}
.y65{bottom:398.302667pt;}
.y3e{bottom:406.454667pt;}
.ya{bottom:407.854667pt;}
.y25{bottom:417.397333pt;}
.y76{bottom:421.420000pt;}
.y51{bottom:421.721333pt;}
.y3d{bottom:433.553333pt;}
.y9{bottom:433.757333pt;}
.y64{bottom:439.408000pt;}
.y75{bottom:448.518667pt;}
.y24{bottom:463.393333pt;}
.y50{bottom:467.772000pt;}
.y3c{bottom:474.056000pt;}
.y63{bottom:480.513333pt;}
.y74{bottom:497.405333pt;}
.y3b{bottom:512.476000pt;}
.y23{bottom:516.964000pt;}
.y4f{bottom:522.232000pt;}
.y62{bottom:526.653333pt;}
.y73{bottom:541.016000pt;}
.y22{bottom:544.062667pt;}
.y3a{bottom:550.894667pt;}
.y4e{bottom:562.888000pt;}
.y61{bottom:581.626667pt;}
.y72{bottom:584.625333pt;}
.y39{bottom:585.390667pt;}
.y21{bottom:591.750667pt;}
.y4d{bottom:603.542667pt;}
.y38{bottom:612.488000pt;}
.y20{bottom:615.660000pt;}
.y8{bottom:619.076000pt;}
.y60{bottom:627.766667pt;}
.y71{bottom:633.512000pt;}
.y1f{bottom:639.570667pt;}
.y37{bottom:639.586667pt;}
.y4c{bottom:649.593333pt;}
.y1e{bottom:663.481333pt;}
.y7{bottom:665.664000pt;}
.y70{bottom:680.154667pt;}
.y5f{bottom:682.740000pt;}
.y36{bottom:685.582667pt;}
.y1d{bottom:687.392000pt;}
.y6{bottom:689.574667pt;}
.y4b{bottom:704.053333pt;}
.y5e{bottom:709.838667pt;}
.y1c{bottom:711.301333pt;}
.y5{bottom:713.485333pt;}
.y1b{bottom:735.212000pt;}
.y6f{bottom:737.990667pt;}
.y4a{bottom:744.709333pt;}
.y35{bottom:750.820000pt;}
.y5d{bottom:755.217333pt;}
.y1a{bottom:759.122667pt;}
.y19{bottom:783.033333pt;}
.y49{bottom:785.364000pt;}
.y6e{bottom:786.877333pt;}
.y34{bottom:792.464000pt;}
.y5c{bottom:796.322667pt;}
.y4{bottom:802.264000pt;}
.y18{bottom:806.942667pt;}
.y80{bottom:808.634667pt;}
.y3{bottom:830.158667pt;}
.y6d{bottom:830.488000pt;}
.y17{bottom:830.853333pt;}
.y48{bottom:831.414667pt;}
.y7f{bottom:832.545333pt;}
.y33{bottom:834.108000pt;}
.y5b{bottom:837.428000pt;}
.y16{bottom:854.764000pt;}
.y7e{bottom:856.456000pt;}
.y6c{bottom:874.097333pt;}
.y32{bottom:875.752000pt;}
.y5a{bottom:882.806667pt;}
.y47{bottom:885.874667pt;}
.y2{bottom:888.701333pt;}
.y15{bottom:889.168000pt;}
.y14{bottom:913.078667pt;}
.y31{bottom:917.396000pt;}
.y6b{bottom:917.708000pt;}
.y13{bottom:917.898667pt;}
.y1{bottom:924.568000pt;}
.y59{bottom:924.952000pt;}
.y46{bottom:926.529333pt;}
.y7d{bottom:940.141333pt;}
.y11{bottom:941.637333pt;}
.y12{bottom:946.916000pt;}
.y30{bottom:959.040000pt;}
.y6a{bottom:966.594667pt;}
.y58{bottom:967.096000pt;}
.y45{bottom:967.185333pt;}
.y7c{bottom:967.240000pt;}
.y10{bottom:985.341333pt;}
.y2f{bottom:986.137333pt;}
.yf{bottom:1013.236000pt;}
.y2e{bottom:1059.728000pt;}
.hd{height:15.550933pt;}
.ha{height:24.696550pt;}
.h9{height:31.880400pt;}
.h6{height:33.713664pt;}
.h5{height:35.865600pt;}
.hc{height:37.459376pt;}
.hb{height:38.043849pt;}
.h4{height:39.850400pt;}
.h11{height:41.018216pt;}
.h8{height:43.636400pt;}
.h7{height:44.632747pt;}
.h3{height:47.820800pt;}
.he{height:50.147084pt;}
.h2{height:53.559147pt;}
.h10{height:61.145733pt;}
.hf{height:62.547067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:94.413333pt;}
.x1{left:96.000000pt;}
.x24{left:98.434667pt;}
.xf{left:100.310667pt;}
.x23{left:101.253333pt;}
.x21{left:106.909333pt;}
.xa{left:111.940000pt;}
.x27{left:115.925333pt;}
.x3a{left:117.992000pt;}
.x2{left:120.497333pt;}
.x10{left:123.450667pt;}
.x22{left:128.037333pt;}
.x2a{left:135.312000pt;}
.x17{left:141.164000pt;}
.x16{left:154.448000pt;}
.x13{left:190.597333pt;}
.x14{left:196.556000pt;}
.x2f{left:222.700000pt;}
.x2d{left:236.741333pt;}
.x3{left:244.284000pt;}
.x31{left:254.078667pt;}
.x28{left:264.212000pt;}
.x32{left:270.784000pt;}
.x33{left:276.328000pt;}
.x38{left:289.528000pt;}
.x6{left:293.149333pt;}
.x36{left:295.484000pt;}
.x2b{left:298.848000pt;}
.x4{left:304.973333pt;}
.x26{left:308.693333pt;}
.x39{left:313.886667pt;}
.x35{left:322.968000pt;}
.x15{left:324.346667pt;}
.x5{left:325.442667pt;}
.x30{left:331.409333pt;}
.x37{left:333.221333pt;}
.x29{left:334.546667pt;}
.x34{left:337.940000pt;}
.x11{left:340.090667pt;}
.x7{left:349.013333pt;}
.x2c{left:354.729333pt;}
.x8{left:360.858667pt;}
.xb{left:361.836000pt;}
.x20{left:363.736000pt;}
.xc{left:376.141333pt;}
.xd{left:380.824000pt;}
.xe{left:407.801333pt;}
.x18{left:413.536000pt;}
.x19{left:428.989333pt;}
.x1a{left:434.258667pt;}
.x12{left:454.897333pt;}
.x1b{left:463.592000pt;}
.x1c{left:495.906667pt;}
.x1d{left:513.120000pt;}
.x1e{left:516.949333pt;}
.x1f{left:546.284000pt;}
.x2e{left:566.434667pt;}
.x25{left:710.396000pt;}
}




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