
    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_284ebefce17783820b37c4e9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_03c8c89d0e7ca6aa86c3628c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.503000;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_a2aa0006f3a77aca86b3ace6.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_0df694ae47ff8c82f2cf3c7f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.696000;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_131a091f7e8ea632b6a73e19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.697000;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_e2e57b896b57ad907fbb9251.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6b6a4021d53a3541c4dcdc96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9ea522ff4937de78591dc250.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706000;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_3b95a4aed3f0c83f6adcc1da.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.482000;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_908db42887cf92ca0ebb0ef1.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6428149f1068b539fa83e144.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.m1d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m13{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);}
.mf{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);}
.m2{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m17{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);}
.m7{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);}
.m1{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);}
.m6{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);}
.m14{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);}
.m1c{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);}
.m19{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m4{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);}
.m8{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);}
.m1a{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);}
.m16{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);}
.md{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m10{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);}
.m9{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);}
.mb{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);}
.m12{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);}
.m5{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);}
.mc{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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.v1{vertical-align:31.236000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.984525px;}
.ls0{letter-spacing:2.990525px;}
.ls3{letter-spacing:21.414532px;}
.ls2{letter-spacing:30.636532px;}
.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:-2.976825px;}
.ws1f{word-spacing:-2.498620px;}
.ws1d{word-spacing:-1.781313px;}
.ws19{word-spacing:-1.243332px;}
.ws1e{word-spacing:-0.884679px;}
.ws13{word-spacing:-0.406474px;}
.ws4c{word-spacing:-0.107596px;}
.ws3a{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws1b{word-spacing:0.000000px;}
.ws15{word-spacing:0.430384px;}
.ws7{word-spacing:0.618682px;}
.ws2a{word-spacing:0.908589px;}
.ws1c{word-spacing:0.968365px;}
.ws28{word-spacing:1.446570px;}
.ws42{word-spacing:1.805223px;}
.ws43{word-spacing:1.864999px;}
.ws2f{word-spacing:2.104101px;}
.ws41{word-spacing:2.223652px;}
.ws49{word-spacing:2.343204px;}
.ws1a{word-spacing:2.609222px;}
.ws4b{word-spacing:2.642082px;}
.ws52{word-spacing:2.663021px;}
.ws16{word-spacing:2.761633px;}
.ws17{word-spacing:2.821408px;}
.ws4f{word-spacing:2.878214px;}
.ws25{word-spacing:2.881184px;}
.ws20{word-spacing:2.940960px;}
.ws12{word-spacing:3.000735px;}
.ws5{word-spacing:3.039610px;}
.ws4e{word-spacing:3.043549px;}
.ws44{word-spacing:3.043686px;}
.ws21{word-spacing:3.060511px;}
.ws3{word-spacing:3.093408px;}
.ws50{word-spacing:3.094566px;}
.ws11{word-spacing:3.120286px;}
.ws3d{word-spacing:3.180062px;}
.wse{word-spacing:3.239838px;}
.ws2{word-spacing:3.299613px;}
.ws6{word-spacing:3.308602px;}
.wsa{word-spacing:3.359389px;}
.ws51{word-spacing:3.416198px;}
.ws1{word-spacing:3.419164px;}
.wsb{word-spacing:3.478940px;}
.ws24{word-spacing:3.538716px;}
.ws39{word-spacing:3.598491px;}
.ws14{word-spacing:3.658267px;}
.ws27{word-spacing:3.718042px;}
.ws2b{word-spacing:3.777818px;}
.ws34{word-spacing:3.957145px;}
.wsf{word-spacing:4.315798px;}
.ws3f{word-spacing:4.614676px;}
.ws9{word-spacing:5.092881px;}
.ws23{word-spacing:5.690637px;}
.ws18{word-spacing:6.049291px;}
.ws26{word-spacing:6.407944px;}
.ws3e{word-spacing:6.467720px;}
.ws46{word-spacing:6.647047px;}
.ws2d{word-spacing:6.766598px;}
.ws40{word-spacing:6.826374px;}
.ws22{word-spacing:7.065476px;}
.wsc{word-spacing:7.244803px;}
.ws3b{word-spacing:7.304578px;}
.ws31{word-spacing:7.364354px;}
.ws10{word-spacing:8.559866px;}
.ws47{word-spacing:8.918520px;}
.wsd{word-spacing:9.038071px;}
.ws29{word-spacing:9.755378px;}
.ws3c{word-spacing:10.233583px;}
.ws48{word-spacing:11.070441px;}
.ws45{word-spacing:11.417140px;}
.ws4a{word-spacing:12.385504px;}
.ws36{word-spacing:15.302554px;}
.ws53{word-spacing:19.259827px;}
.ws4d{word-spacing:19.690214px;}
.ws2e{word-spacing:21.041011px;}
.ws54{word-spacing:21.379198px;}
.ws38{word-spacing:22.057196px;}
.ws2c{word-spacing:22.834279px;}
.ws33{word-spacing:22.894055px;}
.ws8{word-spacing:26.827469px;}
.ws30{word-spacing:28.034756px;}
.ws32{word-spacing:29.469371px;}
.ws35{word-spacing:29.828024px;}
.ws0{word-spacing:32.192873px;}
._4{margin-left:-28.119990px;}
._5{margin-left:-26.904140px;}
._11{margin-left:-6.742733px;}
._2{margin-left:-5.021150px;}
._6{margin-left:-3.973075px;}
._1{margin-left:-2.668393px;}
._3{margin-left:-1.657857px;}
._7{width:1.550261px;}
._0{width:2.668393px;}
._10{width:3.745859px;}
._9{width:5.021150px;}
._b{width:15.161494px;}
._f{width:19.914541px;}
._a{width:21.139054px;}
._13{width:23.647540px;}
._12{width:24.950669px;}
._d{width:29.887800px;}
._e{width:31.501741px;}
._c{width:68.741940px;}
._8{width:80.697600px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs4{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y2b{bottom:199.330500px;}
.y2a{bottom:215.769000px;}
.y54{bottom:225.846000px;}
.y29{bottom:226.494000px;}
.y9d{bottom:228.141000px;}
.y28{bottom:232.207500px;}
.y7c{bottom:237.589500px;}
.y53{bottom:243.780000px;}
.y9c{bottom:244.579500px;}
.y27{bottom:254.875500px;}
.y7a{bottom:255.522000px;}
.y9b{bottom:259.876500px;}
.y7b{bottom:260.946000px;}
.y52{bottom:261.712500px;}
.y26{bottom:272.808000px;}
.y79{bottom:273.454500px;}
.y9a{bottom:276.315000px;}
.y51{bottom:280.530000px;}
.y25{bottom:290.740500px;}
.y99{bottom:291.612000px;}
.y78{bottom:295.216500px;}
.y50{bottom:298.462500px;}
.y98{bottom:308.049000px;}
.y24{bottom:308.673000px;}
.y77{bottom:316.977000px;}
.y4f{bottom:317.278500px;}
.y97{bottom:323.346000px;}
.y23{bottom:326.607000px;}
.y76{bottom:334.909500px;}
.y4e{bottom:335.212500px;}
.y96{bottom:338.643000px;}
.y22{bottom:344.539500px;}
.y21{bottom:349.962000px;}
.y75{bottom:352.842000px;}
.y95{bottom:355.081500px;}
.y20{bottom:362.472000px;}
.y4d{bottom:365.038500px;}
.y94{bottom:370.378500px;}
.y74{bottom:370.776000px;}
.y1f{bottom:380.404500px;}
.y4c{bottom:382.971000px;}
.y93{bottom:386.817000px;}
.y73{bottom:388.708500px;}
.y1e{bottom:398.337000px;}
.y4b{bottom:400.903500px;}
.y92{bottom:402.114000px;}
.y72{bottom:406.641000px;}
.y1d{bottom:416.269500px;}
.y4a{bottom:420.270000px;}
.y71{bottom:424.573500px;}
.y91{bottom:430.777500px;}
.y1c{bottom:434.203500px;}
.y70{bottom:442.506000px;}
.y49{bottom:451.591500px;}
.y90{bottom:451.615500px;}
.y1b{bottom:452.136000px;}
.y6f{bottom:460.438500px;}
.y48{bottom:469.524000px;}
.y8f{bottom:469.548000px;}
.y1a{bottom:470.068500px;}
.y6e{bottom:478.372500px;}
.y47{bottom:487.456500px;}
.y8e{bottom:487.480500px;}
.y19{bottom:488.001000px;}
.y6d{bottom:502.957500px;}
.y46{bottom:505.389000px;}
.y8d{bottom:505.413000px;}
.y18{bottom:505.933500px;}
.y6c{bottom:520.890000px;}
.y8c{bottom:523.345500px;}
.y17{bottom:523.866000px;}
.y45{bottom:530.733000px;}
.y6b{bottom:538.824000px;}
.y8b{bottom:541.279500px;}
.y16{bottom:541.800000px;}
.y6a{bottom:556.593000px;}
.y8a{bottom:559.212000px;}
.y15{bottom:559.732500px;}
.y44{bottom:568.032000px;}
.y69{bottom:574.525500px;}
.y89{bottom:577.144500px;}
.y14{bottom:577.665000px;}
.y43{bottom:585.964500px;}
.y68{bottom:592.458000px;}
.y88{bottom:595.077000px;}
.y13{bottom:597.966000px;}
.y41{bottom:603.897000px;}
.y42{bottom:609.321000px;}
.y67{bottom:610.390500px;}
.y87{bottom:611.433000px;}
.y40{bottom:621.831000px;}
.y66{bottom:628.159500px;}
.y86{bottom:632.271000px;}
.y3f{bottom:639.763500px;}
.y12{bottom:644.328000px;}
.y65{bottom:646.092000px;}
.y84{bottom:650.203500px;}
.y85{bottom:655.626000px;}
.y3e{bottom:657.696000px;}
.y11{bottom:660.766500px;}
.y64{bottom:663.861000px;}
.y83{bottom:668.136000px;}
.y3d{bottom:675.628500px;}
.y10{bottom:677.205000px;}
.y63{bottom:681.793500px;}
.y82{bottom:686.068500px;}
.y3c{bottom:693.561000px;}
.yf{bottom:693.643500px;}
.y62{bottom:699.562500px;}
.y81{bottom:704.002500px;}
.y3b{bottom:711.493500px;}
.y61{bottom:717.496500px;}
.y80{bottom:721.935000px;}
.y3a{bottom:729.427500px;}
.ye{bottom:738.201000px;}
.y7f{bottom:739.867500px;}
.y60{bottom:741.918000px;}
.y39{bottom:747.360000px;}
.y7e{bottom:757.800000px;}
.y5f{bottom:759.850500px;}
.yd{bottom:760.351500px;}
.y38{bottom:765.292500px;}
.yc{bottom:771.076500px;}
.y5e{bottom:777.784500px;}
.y37{bottom:783.225000px;}
.y7d{bottom:790.155000px;}
.yb{bottom:793.228500px;}
.y5d{bottom:795.717000px;}
.y36{bottom:801.157500px;}
.ya{bottom:803.953500px;}
.y5c{bottom:813.649500px;}
.y35{bottom:819.090000px;}
.y9{bottom:826.105500px;}
.y5b{bottom:831.582000px;}
.y8{bottom:836.830500px;}
.y34{bottom:837.024000px;}
.y5a{bottom:849.514500px;}
.y33{bottom:854.956500px;}
.y7{bottom:858.982500px;}
.y59{bottom:867.447000px;}
.y32{bottom:872.889000px;}
.y6{bottom:884.589000px;}
.y31{bottom:890.821500px;}
.y58{bottom:892.033500px;}
.y5{bottom:902.521500px;}
.y30{bottom:908.754000px;}
.y57{bottom:909.966000px;}
.y3{bottom:920.455500px;}
.y4{bottom:925.878000px;}
.y2f{bottom:926.686500px;}
.y56{bottom:927.735000px;}
.y2e{bottom:944.620500px;}
.y55{bottom:945.667500px;}
.y2d{bottom:963.436500px;}
.y2{bottom:972.403500px;}
.y2c{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.hb{height:17.645875px;}
.h6{height:24.245146px;}
.h4{height:28.285733px;}
.h7{height:37.336090px;}
.h8{height:37.658880px;}
.h9{height:38.519654px;}
.hc{height:41.842920px;}
.h3{height:44.831700px;}
.hd{height:49.975733px;}
.h5{height:49.981733px;}
.ha{height:50.211840px;}
.h1{height:60.254040px;}
.h2{height:61.303127px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3c{left:183.960000px;}
.x3{left:185.245500px;}
.x1{left:189.718500px;}
.x18{left:192.412500px;}
.x29{left:195.048000px;}
.xe{left:201.177000px;}
.x14{left:202.756500px;}
.x40{left:203.932500px;}
.x1a{left:208.125000px;}
.x2b{left:209.365500px;}
.x2d{left:211.113000px;}
.xc{left:219.663000px;}
.x23{left:221.173500px;}
.x16{left:228.228000px;}
.x15{left:231.796500px;}
.x36{left:234.175500px;}
.x24{left:245.989500px;}
.x25{left:253.462500px;}
.x26{left:270.807000px;}
.x4{left:277.623000px;}
.x5{left:284.326500px;}
.x10{left:288.376500px;}
.x17{left:301.002000px;}
.x2{left:309.108000px;}
.x3e{left:313.132500px;}
.x12{left:321.492000px;}
.x3f{left:325.794000px;}
.x3d{left:327.315000px;}
.xf{left:334.180500px;}
.x11{left:348.676500px;}
.x13{left:353.286000px;}
.x38{left:354.484500px;}
.x19{left:355.798500px;}
.x3a{left:358.002000px;}
.x39{left:361.318500px;}
.x37{left:373.260000px;}
.x30{left:374.895000px;}
.x6{left:383.133000px;}
.x3b{left:386.734500px;}
.x7{left:389.836500px;}
.xd{left:392.386500px;}
.x2c{left:399.499500px;}
.x2e{left:402.709500px;}
.x31{left:407.089500px;}
.x34{left:414.894000px;}
.x2a{left:424.924500px;}
.x32{left:445.278000px;}
.x2f{left:464.964000px;}
.x8{left:478.111500px;}
.x9{left:484.815000px;}
.x35{left:529.531500px;}
.x1b{left:578.475000px;}
.x1c{left:585.946500px;}
.x1d{left:601.608000px;}
.x1e{left:609.081000px;}
.xa{left:622.564500px;}
.x1f{left:624.742500px;}
.xb{left:629.269500px;}
.x20{left:632.214000px;}
.x21{left:647.875500px;}
.x33{left:650.841000px;}
.x22{left:655.347000px;}
.x27{left:657.066000px;}
.x28{left:663.769500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.v1{vertical-align:27.765333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.652911pt;}
.ls0{letter-spacing:2.658245pt;}
.ls3{letter-spacing:19.035139pt;}
.ls2{letter-spacing:27.232473pt;}
.ws37{word-spacing:-2.646067pt;}
.ws1f{word-spacing:-2.220996pt;}
.ws1d{word-spacing:-1.583389pt;}
.ws19{word-spacing:-1.105184pt;}
.ws1e{word-spacing:-0.786381pt;}
.ws13{word-spacing:-0.361310pt;}
.ws4c{word-spacing:-0.095641pt;}
.ws3a{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws1b{word-spacing:0.000000pt;}
.ws15{word-spacing:0.382564pt;}
.ws7{word-spacing:0.549939pt;}
.ws2a{word-spacing:0.807635pt;}
.ws1c{word-spacing:0.860769pt;}
.ws28{word-spacing:1.285840pt;}
.ws42{word-spacing:1.604643pt;}
.ws43{word-spacing:1.657777pt;}
.ws2f{word-spacing:1.870312pt;}
.ws41{word-spacing:1.976580pt;}
.ws49{word-spacing:2.082848pt;}
.ws1a{word-spacing:2.319309pt;}
.ws4b{word-spacing:2.348517pt;}
.ws52{word-spacing:2.367130pt;}
.ws16{word-spacing:2.454785pt;}
.ws17{word-spacing:2.507919pt;}
.ws4f{word-spacing:2.558413pt;}
.ws25{word-spacing:2.561052pt;}
.ws20{word-spacing:2.614186pt;}
.ws12{word-spacing:2.667320pt;}
.ws5{word-spacing:2.701875pt;}
.ws4e{word-spacing:2.705377pt;}
.ws44{word-spacing:2.705498pt;}
.ws21{word-spacing:2.720454pt;}
.ws3{word-spacing:2.749696pt;}
.ws50{word-spacing:2.750725pt;}
.ws11{word-spacing:2.773588pt;}
.ws3d{word-spacing:2.826722pt;}
.wse{word-spacing:2.879856pt;}
.ws2{word-spacing:2.932989pt;}
.ws6{word-spacing:2.940979pt;}
.wsa{word-spacing:2.986123pt;}
.ws51{word-spacing:3.036621pt;}
.ws1{word-spacing:3.039257pt;}
.wsb{word-spacing:3.092391pt;}
.ws24{word-spacing:3.145525pt;}
.ws39{word-spacing:3.198659pt;}
.ws14{word-spacing:3.251793pt;}
.ws27{word-spacing:3.304927pt;}
.ws2b{word-spacing:3.358060pt;}
.ws34{word-spacing:3.517462pt;}
.wsf{word-spacing:3.836265pt;}
.ws3f{word-spacing:4.101935pt;}
.ws9{word-spacing:4.527005pt;}
.ws23{word-spacing:5.058344pt;}
.ws18{word-spacing:5.377147pt;}
.ws26{word-spacing:5.695951pt;}
.ws3e{word-spacing:5.749084pt;}
.ws46{word-spacing:5.908486pt;}
.ws2d{word-spacing:6.014754pt;}
.ws40{word-spacing:6.067888pt;}
.ws22{word-spacing:6.280423pt;}
.wsc{word-spacing:6.439825pt;}
.ws3b{word-spacing:6.492959pt;}
.ws31{word-spacing:6.546092pt;}
.ws10{word-spacing:7.608770pt;}
.ws47{word-spacing:7.927573pt;}
.wsd{word-spacing:8.033841pt;}
.ws29{word-spacing:8.671447pt;}
.ws3c{word-spacing:9.096518pt;}
.ws48{word-spacing:9.840392pt;}
.ws45{word-spacing:10.148569pt;}
.ws4a{word-spacing:11.009337pt;}
.ws36{word-spacing:13.602270pt;}
.ws53{word-spacing:17.119846pt;}
.ws4d{word-spacing:17.502413pt;}
.ws2e{word-spacing:18.703121pt;}
.ws54{word-spacing:19.003732pt;}
.ws38{word-spacing:19.606397pt;}
.ws2c{word-spacing:20.297137pt;}
.ws33{word-spacing:20.350271pt;}
.ws8{word-spacing:23.846639pt;}
.ws30{word-spacing:24.919783pt;}
.ws32{word-spacing:26.194996pt;}
.ws35{word-spacing:26.513799pt;}
.ws0{word-spacing:28.615887pt;}
._4{margin-left:-24.995546pt;}
._5{margin-left:-23.914791pt;}
._11{margin-left:-5.993540pt;}
._2{margin-left:-4.463245pt;}
._6{margin-left:-3.531623pt;}
._1{margin-left:-2.371905pt;}
._3{margin-left:-1.473651pt;}
._7{width:1.378009pt;}
._0{width:2.371905pt;}
._10{width:3.329652pt;}
._9{width:4.463245pt;}
._b{width:13.476883pt;}
._f{width:17.701814pt;}
._a{width:18.790270pt;}
._13{width:21.020036pt;}
._12{width:22.178372pt;}
._d{width:26.566933pt;}
._e{width:28.001548pt;}
._c{width:61.103947pt;}
._8{width:71.731200pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs4{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:177.182667pt;}
.y2a{bottom:191.794667pt;}
.y54{bottom:200.752000pt;}
.y29{bottom:201.328000pt;}
.y9d{bottom:202.792000pt;}
.y28{bottom:206.406667pt;}
.y7c{bottom:211.190667pt;}
.y53{bottom:216.693333pt;}
.y9c{bottom:217.404000pt;}
.y27{bottom:226.556000pt;}
.y7a{bottom:227.130667pt;}
.y9b{bottom:231.001333pt;}
.y7b{bottom:231.952000pt;}
.y52{bottom:232.633333pt;}
.y26{bottom:242.496000pt;}
.y79{bottom:243.070667pt;}
.y9a{bottom:245.613333pt;}
.y51{bottom:249.360000pt;}
.y25{bottom:258.436000pt;}
.y99{bottom:259.210667pt;}
.y78{bottom:262.414667pt;}
.y50{bottom:265.300000pt;}
.y98{bottom:273.821333pt;}
.y24{bottom:274.376000pt;}
.y77{bottom:281.757333pt;}
.y4f{bottom:282.025333pt;}
.y97{bottom:287.418667pt;}
.y23{bottom:290.317333pt;}
.y76{bottom:297.697333pt;}
.y4e{bottom:297.966667pt;}
.y96{bottom:301.016000pt;}
.y22{bottom:306.257333pt;}
.y21{bottom:311.077333pt;}
.y75{bottom:313.637333pt;}
.y95{bottom:315.628000pt;}
.y20{bottom:322.197333pt;}
.y4d{bottom:324.478667pt;}
.y94{bottom:329.225333pt;}
.y74{bottom:329.578667pt;}
.y1f{bottom:338.137333pt;}
.y4c{bottom:340.418667pt;}
.y93{bottom:343.837333pt;}
.y73{bottom:345.518667pt;}
.y1e{bottom:354.077333pt;}
.y4b{bottom:356.358667pt;}
.y92{bottom:357.434667pt;}
.y72{bottom:361.458667pt;}
.y1d{bottom:370.017333pt;}
.y4a{bottom:373.573333pt;}
.y71{bottom:377.398667pt;}
.y91{bottom:382.913333pt;}
.y1c{bottom:385.958667pt;}
.y70{bottom:393.338667pt;}
.y49{bottom:401.414667pt;}
.y90{bottom:401.436000pt;}
.y1b{bottom:401.898667pt;}
.y6f{bottom:409.278667pt;}
.y48{bottom:417.354667pt;}
.y8f{bottom:417.376000pt;}
.y1a{bottom:417.838667pt;}
.y6e{bottom:425.220000pt;}
.y47{bottom:433.294667pt;}
.y8e{bottom:433.316000pt;}
.y19{bottom:433.778667pt;}
.y6d{bottom:447.073333pt;}
.y46{bottom:449.234667pt;}
.y8d{bottom:449.256000pt;}
.y18{bottom:449.718667pt;}
.y6c{bottom:463.013333pt;}
.y8c{bottom:465.196000pt;}
.y17{bottom:465.658667pt;}
.y45{bottom:471.762667pt;}
.y6b{bottom:478.954667pt;}
.y8b{bottom:481.137333pt;}
.y16{bottom:481.600000pt;}
.y6a{bottom:494.749333pt;}
.y8a{bottom:497.077333pt;}
.y15{bottom:497.540000pt;}
.y44{bottom:504.917333pt;}
.y69{bottom:510.689333pt;}
.y89{bottom:513.017333pt;}
.y14{bottom:513.480000pt;}
.y43{bottom:520.857333pt;}
.y68{bottom:526.629333pt;}
.y88{bottom:528.957333pt;}
.y13{bottom:531.525333pt;}
.y41{bottom:536.797333pt;}
.y42{bottom:541.618667pt;}
.y67{bottom:542.569333pt;}
.y87{bottom:543.496000pt;}
.y40{bottom:552.738667pt;}
.y66{bottom:558.364000pt;}
.y86{bottom:562.018667pt;}
.y3f{bottom:568.678667pt;}
.y12{bottom:572.736000pt;}
.y65{bottom:574.304000pt;}
.y84{bottom:577.958667pt;}
.y85{bottom:582.778667pt;}
.y3e{bottom:584.618667pt;}
.y11{bottom:587.348000pt;}
.y64{bottom:590.098667pt;}
.y83{bottom:593.898667pt;}
.y3d{bottom:600.558667pt;}
.y10{bottom:601.960000pt;}
.y63{bottom:606.038667pt;}
.y82{bottom:609.838667pt;}
.y3c{bottom:616.498667pt;}
.yf{bottom:616.572000pt;}
.y62{bottom:621.833333pt;}
.y81{bottom:625.780000pt;}
.y3b{bottom:632.438667pt;}
.y61{bottom:637.774667pt;}
.y80{bottom:641.720000pt;}
.y3a{bottom:648.380000pt;}
.ye{bottom:656.178667pt;}
.y7f{bottom:657.660000pt;}
.y60{bottom:659.482667pt;}
.y39{bottom:664.320000pt;}
.y7e{bottom:673.600000pt;}
.y5f{bottom:675.422667pt;}
.yd{bottom:675.868000pt;}
.y38{bottom:680.260000pt;}
.yc{bottom:685.401333pt;}
.y5e{bottom:691.364000pt;}
.y37{bottom:696.200000pt;}
.y7d{bottom:702.360000pt;}
.yb{bottom:705.092000pt;}
.y5d{bottom:707.304000pt;}
.y36{bottom:712.140000pt;}
.ya{bottom:714.625333pt;}
.y5c{bottom:723.244000pt;}
.y35{bottom:728.080000pt;}
.y9{bottom:734.316000pt;}
.y5b{bottom:739.184000pt;}
.y8{bottom:743.849333pt;}
.y34{bottom:744.021333pt;}
.y5a{bottom:755.124000pt;}
.y33{bottom:759.961333pt;}
.y7{bottom:763.540000pt;}
.y59{bottom:771.064000pt;}
.y32{bottom:775.901333pt;}
.y6{bottom:786.301333pt;}
.y31{bottom:791.841333pt;}
.y58{bottom:792.918667pt;}
.y5{bottom:802.241333pt;}
.y30{bottom:807.781333pt;}
.y57{bottom:808.858667pt;}
.y3{bottom:818.182667pt;}
.y4{bottom:823.002667pt;}
.y2f{bottom:823.721333pt;}
.y56{bottom:824.653333pt;}
.y2e{bottom:839.662667pt;}
.y55{bottom:840.593333pt;}
.y2d{bottom:856.388000pt;}
.y2{bottom:864.358667pt;}
.y2c{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.hb{height:15.685222pt;}
.h6{height:21.551241pt;}
.h4{height:25.142874pt;}
.h7{height:33.187635pt;}
.h8{height:33.474560pt;}
.h9{height:34.239693pt;}
.hc{height:37.193707pt;}
.h3{height:39.850400pt;}
.hd{height:44.422874pt;}
.h5{height:44.428207pt;}
.ha{height:44.632747pt;}
.h1{height:53.559147pt;}
.h2{height:54.491668pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:163.520000pt;}
.x3{left:164.662667pt;}
.x1{left:168.638667pt;}
.x18{left:171.033333pt;}
.x29{left:173.376000pt;}
.xe{left:178.824000pt;}
.x14{left:180.228000pt;}
.x40{left:181.273333pt;}
.x1a{left:185.000000pt;}
.x2b{left:186.102667pt;}
.x2d{left:187.656000pt;}
.xc{left:195.256000pt;}
.x23{left:196.598667pt;}
.x16{left:202.869333pt;}
.x15{left:206.041333pt;}
.x36{left:208.156000pt;}
.x24{left:218.657333pt;}
.x25{left:225.300000pt;}
.x26{left:240.717333pt;}
.x4{left:246.776000pt;}
.x5{left:252.734667pt;}
.x10{left:256.334667pt;}
.x17{left:267.557333pt;}
.x2{left:274.762667pt;}
.x3e{left:278.340000pt;}
.x12{left:285.770667pt;}
.x3f{left:289.594667pt;}
.x3d{left:290.946667pt;}
.xf{left:297.049333pt;}
.x11{left:309.934667pt;}
.x13{left:314.032000pt;}
.x38{left:315.097333pt;}
.x19{left:316.265333pt;}
.x3a{left:318.224000pt;}
.x39{left:321.172000pt;}
.x37{left:331.786667pt;}
.x30{left:333.240000pt;}
.x6{left:340.562667pt;}
.x3b{left:343.764000pt;}
.x7{left:346.521333pt;}
.xd{left:348.788000pt;}
.x2c{left:355.110667pt;}
.x2e{left:357.964000pt;}
.x31{left:361.857333pt;}
.x34{left:368.794667pt;}
.x2a{left:377.710667pt;}
.x32{left:395.802667pt;}
.x2f{left:413.301333pt;}
.x8{left:424.988000pt;}
.x9{left:430.946667pt;}
.x35{left:470.694667pt;}
.x1b{left:514.200000pt;}
.x1c{left:520.841333pt;}
.x1d{left:534.762667pt;}
.x1e{left:541.405333pt;}
.xa{left:553.390667pt;}
.x1f{left:555.326667pt;}
.xb{left:559.350667pt;}
.x20{left:561.968000pt;}
.x21{left:575.889333pt;}
.x33{left:578.525333pt;}
.x22{left:582.530667pt;}
.x27{left:584.058667pt;}
.x28{left:590.017333pt;}
}




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