
    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_233ef5881a1bfc2948a5d281.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_14e282e69a9af1329a80f9ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.975000;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_569eb1fe4de3e2c1d997b6d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_f39bf3d5de71fe5fcd2d0d21.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_f71761c47cc0c9919b214c2a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.806000;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_bc95f8835ba45249bde3164a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.782000;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_1e66a30018f8f3294f87d4ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.427000;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_0d5b6cccc69332161a2af8ca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.453000;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_eab44a273ef55bbd29cb9d7a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_62868a70f183749971a62f9e.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m3{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);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m9{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m1a{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);}
.me{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m11{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);}
.m16{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);}
.m4{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m14{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m6{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m20{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,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);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1c{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.942000px;}
.v1{vertical-align:25.524000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000993px;}
.ls2{letter-spacing:0.004200px;}
.ls4{letter-spacing:1.655249px;}
.ls0{letter-spacing:12.066538px;}
.ls1{letter-spacing:16.602538px;}
.ls6{letter-spacing:16.638538px;}
.ls5{letter-spacing:34.158710px;}
.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;}
}
.ws46{word-spacing:-31.382190px;}
.ws8{word-spacing:-16.617617px;}
.ws3b{word-spacing:-16.605662px;}
.ws16{word-spacing:-4.537262px;}
.ws50{word-spacing:-3.586536px;}
.ws4{word-spacing:-3.227882px;}
.ws45{word-spacing:-3.048556px;}
.ws1e{word-spacing:-2.929004px;}
.ws1b{word-spacing:-2.271473px;}
.ws37{word-spacing:-1.673717px;}
.ws41{word-spacing:-1.434614px;}
.ws3c{word-spacing:-1.315063px;}
.ws20{word-spacing:-1.255288px;}
.ws32{word-spacing:-1.195512px;}
.wsf{word-spacing:-1.075961px;}
.ws33{word-spacing:-0.896634px;}
.ws34{word-spacing:-0.836858px;}
.wse{word-spacing:-0.418429px;}
.ws1{word-spacing:-0.358654px;}
.ws47{word-spacing:-0.313099px;}
.ws24{word-spacing:-0.298878px;}
.ws48{word-spacing:-0.288797px;}
.ws35{word-spacing:-0.239102px;}
.ws28{word-spacing:-0.179327px;}
.wsc{word-spacing:-0.119551px;}
.ws6{word-spacing:-0.059776px;}
.ws38{word-spacing:-0.008735px;}
.ws0{word-spacing:0.000000px;}
.ws2b{word-spacing:0.059776px;}
.ws5{word-spacing:0.119551px;}
.wsd{word-spacing:0.179327px;}
.ws18{word-spacing:0.239102px;}
.ws17{word-spacing:0.298878px;}
.ws19{word-spacing:0.358654px;}
.ws2f{word-spacing:0.418429px;}
.ws44{word-spacing:0.717307px;}
.ws3e{word-spacing:0.765130px;}
.ws39{word-spacing:1.135736px;}
.ws7{word-spacing:1.315063px;}
.ws3{word-spacing:1.374839px;}
.ws27{word-spacing:1.434614px;}
.ws29{word-spacing:1.853044px;}
.ws2e{word-spacing:1.912819px;}
.ws11{word-spacing:2.570351px;}
.ws2a{word-spacing:2.630126px;}
.ws1a{word-spacing:2.689902px;}
.ws1d{word-spacing:2.929004px;}
.ws4a{word-spacing:3.526760px;}
.ws21{word-spacing:3.586536px;}
.ws1c{word-spacing:4.244068px;}
.ws2c{word-spacing:4.363619px;}
.ws25{word-spacing:4.483170px;}
.ws13{word-spacing:4.542946px;}
.ws12{word-spacing:4.602721px;}
.ws49{word-spacing:4.683547px;}
.ws22{word-spacing:4.722272px;}
.ws3a{word-spacing:4.782048px;}
.ws42{word-spacing:4.901599px;}
.ws23{word-spacing:5.021150px;}
.ws30{word-spacing:5.320028px;}
.ws26{word-spacing:5.977560px;}
.ws36{word-spacing:6.754643px;}
.ws40{word-spacing:7.173072px;}
.ws10{word-spacing:7.292623px;}
.ws1f{word-spacing:7.352399px;}
.ws15{word-spacing:7.591501px;}
.ws2d{word-spacing:8.129482px;}
.ws3f{word-spacing:8.667462px;}
.ws43{word-spacing:8.846789px;}
.ws31{word-spacing:9.026116px;}
.ws3d{word-spacing:13.198486px;}
.ws14{word-spacing:13.389734px;}
.ws4d{word-spacing:15.183002px;}
.ws4f{word-spacing:17.872904px;}
.ws2{word-spacing:17.932680px;}
.ws4e{word-spacing:19.187968px;}
.ws4b{word-spacing:20.204153px;}
.ws4c{word-spacing:24.687323px;}
.wsb{word-spacing:31.501741px;}
.wsa{word-spacing:34.849175px;}
.ws9{word-spacing:51.526567px;}
._17{margin-left:-10.520506px;}
._16{margin-left:-8.021870px;}
._0{margin-left:-6.886176px;}
._2{margin-left:-5.320028px;}
._10{margin-left:-3.945190px;}
._6{margin-left:-2.594256px;}
._1{margin-left:-1.291158px;}
._5{width:1.195512px;}
._a{width:2.438834px;}
._15{width:3.849544px;}
._4{width:14.405920px;}
._11{width:15.531898px;}
._7{width:17.753353px;}
._3{width:19.857464px;}
._9{width:20.861684px;}
._8{width:22.475626px;}
._14{width:23.635267px;}
._d{width:24.950330px;}
._c{width:26.181713px;}
._e{width:27.927170px;}
._f{width:28.991166px;}
._b{width:34.610072px;}
._13{width:42.978656px;}
._12{width:46.385866px;}
._18{width:54.013237px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs3{font-size:47.820600px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y5d{bottom:68.721000px;}
.y31{bottom:129.580500px;}
.y5c{bottom:143.527500px;}
.y30{bottom:147.513000px;}
.y9a{bottom:153.912000px;}
.y2f{bottom:165.445500px;}
.y2e{bottom:183.378000px;}
.y2d{bottom:201.310500px;}
.y99{bottom:202.575000px;}
.y2c{bottom:219.243000px;}
.y98{bottom:220.509000px;}
.y7c{bottom:221.239500px;}
.y2b{bottom:237.177000px;}
.y97{bottom:238.441500px;}
.y2a{bottom:255.109500px;}
.y96{bottom:256.374000px;}
.y29{bottom:273.042000px;}
.y95{bottom:274.306500px;}
.y5b{bottom:285.933000px;}
.y28{bottom:290.974500px;}
.y94{bottom:292.239000px;}
.y5a{bottom:303.865500px;}
.y27{bottom:308.907000px;}
.y93{bottom:316.572000px;}
.y59{bottom:321.798000px;}
.y26{bottom:326.839500px;}
.y7b{bottom:329.980500px;}
.y58{bottom:339.732000px;}
.y25{bottom:344.773500px;}
.y7a{bottom:347.913000px;}
.y92{bottom:349.252500px;}
.y57{bottom:357.664500px;}
.y24{bottom:362.706000px;}
.y79{bottom:365.845500px;}
.y91{bottom:367.185000px;}
.y56{bottom:375.597000px;}
.y23{bottom:380.638500px;}
.y78{bottom:383.779500px;}
.y90{bottom:385.119000px;}
.y55{bottom:393.529500px;}
.y22{bottom:398.571000px;}
.y77{bottom:401.712000px;}
.y8f{bottom:407.896500px;}
.y54{bottom:411.462000px;}
.y21{bottom:416.503500px;}
.y76{bottom:419.644500px;}
.y53{bottom:427.153500px;}
.y52{bottom:429.394500px;}
.y20{bottom:434.436000px;}
.y75{bottom:437.577000px;}
.y8e{bottom:440.181000px;}
.y51{bottom:447.328500px;}
.y1f{bottom:452.370000px;}
.y74{bottom:455.509500px;}
.y8d{bottom:458.113500px;}
.y50{bottom:465.261000px;}
.y1e{bottom:470.302500px;}
.y73{bottom:473.442000px;}
.y8c{bottom:476.047500px;}
.y4f{bottom:483.193500px;}
.y1d{bottom:488.235000px;}
.y72{bottom:491.376000px;}
.y4e{bottom:498.885000px;}
.y8b{bottom:500.590500px;}
.y4d{bottom:501.126000px;}
.y1c{bottom:506.167500px;}
.y71{bottom:509.308500px;}
.y8a{bottom:518.523000px;}
.y4c{bottom:519.058500px;}
.y1b{bottom:524.100000px;}
.y70{bottom:527.241000px;}
.y89{bottom:536.455500px;}
.y4b{bottom:536.991000px;}
.y1a{bottom:539.791500px;}
.y19{bottom:542.032500px;}
.y6f{bottom:545.173500px;}
.y88{bottom:554.388000px;}
.y4a{bottom:554.925000px;}
.y18{bottom:559.966500px;}
.y6e{bottom:563.106000px;}
.y49{bottom:572.857500px;}
.y87{bottom:578.931000px;}
.y6d{bottom:581.038500px;}
.y48{bottom:590.790000px;}
.y86{bottom:596.863500px;}
.y6c{bottom:598.972500px;}
.y47{bottom:608.722500px;}
.y17{bottom:614.482500px;}
.y85{bottom:614.796000px;}
.y6b{bottom:616.905000px;}
.y46{bottom:626.655000px;}
.y16{bottom:632.415000px;}
.y6a{bottom:634.837500px;}
.y84{bottom:639.339000px;}
.y45{bottom:644.587500px;}
.y15{bottom:650.347500px;}
.y69{bottom:652.770000px;}
.y83{bottom:657.271500px;}
.y44{bottom:662.521500px;}
.y14{bottom:668.280000px;}
.y68{bottom:670.702500px;}
.y82{bottom:675.204000px;}
.y43{bottom:680.454000px;}
.y13{bottom:686.212500px;}
.y67{bottom:688.635000px;}
.y42{bottom:698.386500px;}
.y81{bottom:699.747000px;}
.y66{bottom:706.569000px;}
.y41{bottom:716.319000px;}
.y80{bottom:717.679500px;}
.y12{bottom:718.536000px;}
.y65{bottom:724.501500px;}
.y40{bottom:734.251500px;}
.y7f{bottom:735.613500px;}
.y11{bottom:736.468500px;}
.y64{bottom:742.434000px;}
.y3f{bottom:752.184000px;}
.y7e{bottom:753.546000px;}
.y10{bottom:754.401000px;}
.y63{bottom:760.366500px;}
.y3e{bottom:770.118000px;}
.yf{bottom:772.333500px;}
.y7d{bottom:776.745000px;}
.y62{bottom:778.299000px;}
.y3d{bottom:788.050500px;}
.ye{bottom:790.266000px;}
.y3c{bottom:805.983000px;}
.yd{bottom:808.200000px;}
.y3b{bottom:823.915500px;}
.yc{bottom:826.132500px;}
.y61{bottom:827.391000px;}
.y60{bottom:839.926500px;}
.y5f{bottom:841.587000px;}
.y3a{bottom:841.848000px;}
.yb{bottom:844.065000px;}
.y5e{bottom:855.784500px;}
.y39{bottom:859.780500px;}
.ya{bottom:876.387000px;}
.y38{bottom:877.714500px;}
.y9{bottom:894.319500px;}
.y37{bottom:895.647000px;}
.y8{bottom:912.253500px;}
.y36{bottom:913.579500px;}
.y35{bottom:931.512000px;}
.y7{bottom:943.630500px;}
.y34{bottom:949.444500px;}
.y33{bottom:967.377000px;}
.y32{bottom:985.311000px;}
.y6{bottom:1003.243500px;}
.y5{bottom:1021.176000px;}
.y4{bottom:1039.108500px;}
.y3{bottom:1075.311000px;}
.y2{bottom:1093.243500px;}
.y1{bottom:1129.152000px;}
.hb{height:23.850624px;}
.h6{height:27.783619px;}
.ha{height:35.435065px;}
.h9{height:36.200194px;}
.hc{height:41.484266px;}
.h3{height:44.293720px;}
.h5{height:44.831700px;}
.h4{height:45.250129px;}
.h7{height:53.307619px;}
.h8{height:60.773700px;}
.h2{height:63.783205px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:116.079000px;}
.x2{left:120.562500px;}
.x3{left:128.317500px;}
.x6{left:131.022000px;}
.xb{left:173.718000px;}
.x4{left:196.864500px;}
.x7{left:217.204500px;}
.xc{left:233.715000px;}
.x5{left:238.320000px;}
.x8{left:250.005000px;}
.x9{left:367.012500px;}
.xa{left:381.375000px;}
.x28{left:428.103000px;}
.x29{left:455.941500px;}
.x2a{left:465.756000px;}
.xd{left:468.810000px;}
.x2b{left:473.293500px;}
.x22{left:483.754500px;}
.x2c{left:492.900000px;}
.x1d{left:500.778000px;}
.x12{left:502.500000px;}
.xe{left:504.135000px;}
.x1e{left:518.982000px;}
.x1f{left:525.687000px;}
.x13{left:530.734500px;}
.xf{left:533.122500px;}
.x23{left:601.800000px;}
.x10{left:614.235000px;}
.x11{left:643.663500px;}
.x18{left:645.732000px;}
.x19{left:656.581500px;}
.x24{left:670.075500px;}
.x25{left:675.985500px;}
.x26{left:695.179500px;}
.x14{left:700.746000px;}
.x20{left:722.803500px;}
.x15{left:729.064500px;}
.x2d{left:741.040500px;}
.x21{left:750.654000px;}
.x27{left:752.025000px;}
.x16{left:758.734500px;}
.x1a{left:769.585500px;}
.x1b{left:776.289000px;}
.x1c{left:782.524500px;}
.x17{left:787.053000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.170667pt;}
.v1{vertical-align:22.688000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000882pt;}
.ls2{letter-spacing:0.003733pt;}
.ls4{letter-spacing:1.471333pt;}
.ls0{letter-spacing:10.725812pt;}
.ls1{letter-spacing:14.757812pt;}
.ls6{letter-spacing:14.789812pt;}
.ls5{letter-spacing:30.363297pt;}
.ws46{word-spacing:-27.895280pt;}
.ws8{word-spacing:-14.771215pt;}
.ws3b{word-spacing:-14.760588pt;}
.ws16{word-spacing:-4.033121pt;}
.ws50{word-spacing:-3.188032pt;}
.ws4{word-spacing:-2.869229pt;}
.ws45{word-spacing:-2.709827pt;}
.ws1e{word-spacing:-2.603559pt;}
.ws1b{word-spacing:-2.019087pt;}
.ws37{word-spacing:-1.487748pt;}
.ws41{word-spacing:-1.275213pt;}
.ws3c{word-spacing:-1.168945pt;}
.ws20{word-spacing:-1.115811pt;}
.ws32{word-spacing:-1.062677pt;}
.wsf{word-spacing:-0.956410pt;}
.ws33{word-spacing:-0.797008pt;}
.ws34{word-spacing:-0.743874pt;}
.wse{word-spacing:-0.371937pt;}
.ws1{word-spacing:-0.318803pt;}
.ws47{word-spacing:-0.278310pt;}
.ws24{word-spacing:-0.265669pt;}
.ws48{word-spacing:-0.256709pt;}
.ws35{word-spacing:-0.212535pt;}
.ws28{word-spacing:-0.159402pt;}
.wsc{word-spacing:-0.106268pt;}
.ws6{word-spacing:-0.053134pt;}
.ws38{word-spacing:-0.007764pt;}
.ws0{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.053134pt;}
.ws5{word-spacing:0.106268pt;}
.wsd{word-spacing:0.159402pt;}
.ws18{word-spacing:0.212535pt;}
.ws17{word-spacing:0.265669pt;}
.ws19{word-spacing:0.318803pt;}
.ws2f{word-spacing:0.371937pt;}
.ws44{word-spacing:0.637606pt;}
.ws3e{word-spacing:0.680115pt;}
.ws39{word-spacing:1.009543pt;}
.ws7{word-spacing:1.168945pt;}
.ws3{word-spacing:1.222079pt;}
.ws27{word-spacing:1.275213pt;}
.ws29{word-spacing:1.647150pt;}
.ws2e{word-spacing:1.700284pt;}
.ws11{word-spacing:2.284756pt;}
.ws2a{word-spacing:2.337890pt;}
.ws1a{word-spacing:2.391024pt;}
.ws1d{word-spacing:2.603559pt;}
.ws4a{word-spacing:3.134898pt;}
.ws21{word-spacing:3.188032pt;}
.ws1c{word-spacing:3.772505pt;}
.ws2c{word-spacing:3.878772pt;}
.ws25{word-spacing:3.985040pt;}
.ws13{word-spacing:4.038174pt;}
.ws12{word-spacing:4.091308pt;}
.ws49{word-spacing:4.163153pt;}
.ws22{word-spacing:4.197575pt;}
.ws3a{word-spacing:4.250709pt;}
.ws42{word-spacing:4.356977pt;}
.ws23{word-spacing:4.463245pt;}
.ws30{word-spacing:4.728914pt;}
.ws26{word-spacing:5.313387pt;}
.ws36{word-spacing:6.004127pt;}
.ws40{word-spacing:6.376064pt;}
.ws10{word-spacing:6.482332pt;}
.ws1f{word-spacing:6.535466pt;}
.ws15{word-spacing:6.748001pt;}
.ws2d{word-spacing:7.226206pt;}
.ws3f{word-spacing:7.704411pt;}
.ws43{word-spacing:7.863812pt;}
.ws31{word-spacing:8.023214pt;}
.ws3d{word-spacing:11.731987pt;}
.ws14{word-spacing:11.901986pt;}
.ws4d{word-spacing:13.496002pt;}
.ws4f{word-spacing:15.887026pt;}
.ws2{word-spacing:15.940160pt;}
.ws4e{word-spacing:17.055971pt;}
.ws4b{word-spacing:17.959247pt;}
.ws4c{word-spacing:21.944287pt;}
.wsb{word-spacing:28.001548pt;}
.wsa{word-spacing:30.977044pt;}
.ws9{word-spacing:45.801393pt;}
._17{margin-left:-9.351561pt;}
._16{margin-left:-7.130551pt;}
._0{margin-left:-6.121045pt;}
._2{margin-left:-4.728914pt;}
._10{margin-left:-3.506835pt;}
._6{margin-left:-2.306005pt;}
._1{margin-left:-1.147696pt;}
._5{width:1.062677pt;}
._a{width:2.167853pt;}
._15{width:3.421817pt;}
._4{width:12.805262pt;}
._11{width:13.806131pt;}
._7{width:15.780758pt;}
._3{width:17.651079pt;}
._9{width:18.543719pt;}
._8{width:19.978334pt;}
._14{width:21.009126pt;}
._d{width:22.178071pt;}
._c{width:23.272634pt;}
._e{width:24.824151pt;}
._f{width:25.769925pt;}
._b{width:30.764509pt;}
._13{width:38.203250pt;}
._12{width:41.231881pt;}
._18{width:48.011766pt;}
.fs4{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs3{font-size:42.507200pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:61.085333pt;}
.y31{bottom:115.182667pt;}
.y5c{bottom:127.580000pt;}
.y30{bottom:131.122667pt;}
.y9a{bottom:136.810667pt;}
.y2f{bottom:147.062667pt;}
.y2e{bottom:163.002667pt;}
.y2d{bottom:178.942667pt;}
.y99{bottom:180.066667pt;}
.y2c{bottom:194.882667pt;}
.y98{bottom:196.008000pt;}
.y7c{bottom:196.657333pt;}
.y2b{bottom:210.824000pt;}
.y97{bottom:211.948000pt;}
.y2a{bottom:226.764000pt;}
.y96{bottom:227.888000pt;}
.y29{bottom:242.704000pt;}
.y95{bottom:243.828000pt;}
.y5b{bottom:254.162667pt;}
.y28{bottom:258.644000pt;}
.y94{bottom:259.768000pt;}
.y5a{bottom:270.102667pt;}
.y27{bottom:274.584000pt;}
.y93{bottom:281.397333pt;}
.y59{bottom:286.042667pt;}
.y26{bottom:290.524000pt;}
.y7b{bottom:293.316000pt;}
.y58{bottom:301.984000pt;}
.y25{bottom:306.465333pt;}
.y7a{bottom:309.256000pt;}
.y92{bottom:310.446667pt;}
.y57{bottom:317.924000pt;}
.y24{bottom:322.405333pt;}
.y79{bottom:325.196000pt;}
.y91{bottom:326.386667pt;}
.y56{bottom:333.864000pt;}
.y23{bottom:338.345333pt;}
.y78{bottom:341.137333pt;}
.y90{bottom:342.328000pt;}
.y55{bottom:349.804000pt;}
.y22{bottom:354.285333pt;}
.y77{bottom:357.077333pt;}
.y8f{bottom:362.574667pt;}
.y54{bottom:365.744000pt;}
.y21{bottom:370.225333pt;}
.y76{bottom:373.017333pt;}
.y53{bottom:379.692000pt;}
.y52{bottom:381.684000pt;}
.y20{bottom:386.165333pt;}
.y75{bottom:388.957333pt;}
.y8e{bottom:391.272000pt;}
.y51{bottom:397.625333pt;}
.y1f{bottom:402.106667pt;}
.y74{bottom:404.897333pt;}
.y8d{bottom:407.212000pt;}
.y50{bottom:413.565333pt;}
.y1e{bottom:418.046667pt;}
.y73{bottom:420.837333pt;}
.y8c{bottom:423.153333pt;}
.y4f{bottom:429.505333pt;}
.y1d{bottom:433.986667pt;}
.y72{bottom:436.778667pt;}
.y4e{bottom:443.453333pt;}
.y8b{bottom:444.969333pt;}
.y4d{bottom:445.445333pt;}
.y1c{bottom:449.926667pt;}
.y71{bottom:452.718667pt;}
.y8a{bottom:460.909333pt;}
.y4c{bottom:461.385333pt;}
.y1b{bottom:465.866667pt;}
.y70{bottom:468.658667pt;}
.y89{bottom:476.849333pt;}
.y4b{bottom:477.325333pt;}
.y1a{bottom:479.814667pt;}
.y19{bottom:481.806667pt;}
.y6f{bottom:484.598667pt;}
.y88{bottom:492.789333pt;}
.y4a{bottom:493.266667pt;}
.y18{bottom:497.748000pt;}
.y6e{bottom:500.538667pt;}
.y49{bottom:509.206667pt;}
.y87{bottom:514.605333pt;}
.y6d{bottom:516.478667pt;}
.y48{bottom:525.146667pt;}
.y86{bottom:530.545333pt;}
.y6c{bottom:532.420000pt;}
.y47{bottom:541.086667pt;}
.y17{bottom:546.206667pt;}
.y85{bottom:546.485333pt;}
.y6b{bottom:548.360000pt;}
.y46{bottom:557.026667pt;}
.y16{bottom:562.146667pt;}
.y6a{bottom:564.300000pt;}
.y84{bottom:568.301333pt;}
.y45{bottom:572.966667pt;}
.y15{bottom:578.086667pt;}
.y69{bottom:580.240000pt;}
.y83{bottom:584.241333pt;}
.y44{bottom:588.908000pt;}
.y14{bottom:594.026667pt;}
.y68{bottom:596.180000pt;}
.y82{bottom:600.181333pt;}
.y43{bottom:604.848000pt;}
.y13{bottom:609.966667pt;}
.y67{bottom:612.120000pt;}
.y42{bottom:620.788000pt;}
.y81{bottom:621.997333pt;}
.y66{bottom:628.061333pt;}
.y41{bottom:636.728000pt;}
.y80{bottom:637.937333pt;}
.y12{bottom:638.698667pt;}
.y65{bottom:644.001333pt;}
.y40{bottom:652.668000pt;}
.y7f{bottom:653.878667pt;}
.y11{bottom:654.638667pt;}
.y64{bottom:659.941333pt;}
.y3f{bottom:668.608000pt;}
.y7e{bottom:669.818667pt;}
.y10{bottom:670.578667pt;}
.y63{bottom:675.881333pt;}
.y3e{bottom:684.549333pt;}
.yf{bottom:686.518667pt;}
.y7d{bottom:690.440000pt;}
.y62{bottom:691.821333pt;}
.y3d{bottom:700.489333pt;}
.ye{bottom:702.458667pt;}
.y3c{bottom:716.429333pt;}
.yd{bottom:718.400000pt;}
.y3b{bottom:732.369333pt;}
.yc{bottom:734.340000pt;}
.y61{bottom:735.458667pt;}
.y60{bottom:746.601333pt;}
.y5f{bottom:748.077333pt;}
.y3a{bottom:748.309333pt;}
.yb{bottom:750.280000pt;}
.y5e{bottom:760.697333pt;}
.y39{bottom:764.249333pt;}
.ya{bottom:779.010667pt;}
.y38{bottom:780.190667pt;}
.y9{bottom:794.950667pt;}
.y37{bottom:796.130667pt;}
.y8{bottom:810.892000pt;}
.y36{bottom:812.070667pt;}
.y35{bottom:828.010667pt;}
.y7{bottom:838.782667pt;}
.y34{bottom:843.950667pt;}
.y33{bottom:859.890667pt;}
.y32{bottom:875.832000pt;}
.y6{bottom:891.772000pt;}
.y5{bottom:907.712000pt;}
.y4{bottom:923.652000pt;}
.y3{bottom:955.832000pt;}
.y2{bottom:971.772000pt;}
.y1{bottom:1003.690667pt;}
.hb{height:21.200555pt;}
.h6{height:24.696550pt;}
.ha{height:31.497835pt;}
.h9{height:32.177950pt;}
.hc{height:36.874903pt;}
.h3{height:39.372195pt;}
.h5{height:39.850400pt;}
.h4{height:40.222337pt;}
.h7{height:47.384550pt;}
.h8{height:54.021067pt;}
.h2{height:56.696182pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:103.181333pt;}
.x2{left:107.166667pt;}
.x3{left:114.060000pt;}
.x6{left:116.464000pt;}
.xb{left:154.416000pt;}
.x4{left:174.990667pt;}
.x7{left:193.070667pt;}
.xc{left:207.746667pt;}
.x5{left:211.840000pt;}
.x8{left:222.226667pt;}
.x9{left:326.233333pt;}
.xa{left:339.000000pt;}
.x28{left:380.536000pt;}
.x29{left:405.281333pt;}
.x2a{left:414.005333pt;}
.xd{left:416.720000pt;}
.x2b{left:420.705333pt;}
.x22{left:430.004000pt;}
.x2c{left:438.133333pt;}
.x1d{left:445.136000pt;}
.x12{left:446.666667pt;}
.xe{left:448.120000pt;}
.x1e{left:461.317333pt;}
.x1f{left:467.277333pt;}
.x13{left:471.764000pt;}
.xf{left:473.886667pt;}
.x23{left:534.933333pt;}
.x10{left:545.986667pt;}
.x11{left:572.145333pt;}
.x18{left:573.984000pt;}
.x19{left:583.628000pt;}
.x24{left:595.622667pt;}
.x25{left:600.876000pt;}
.x26{left:617.937333pt;}
.x14{left:622.885333pt;}
.x20{left:642.492000pt;}
.x15{left:648.057333pt;}
.x2d{left:658.702667pt;}
.x21{left:667.248000pt;}
.x27{left:668.466667pt;}
.x16{left:674.430667pt;}
.x1a{left:684.076000pt;}
.x1b{left:690.034667pt;}
.x1c{left:695.577333pt;}
.x17{left:699.602667pt;}
}




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