
    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_056b7d68a45dc682f156e69b.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_11e0f2f37ffe06783d8ec014.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_b17ff71d90952d6a9eaff652.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_96d1da55c59e0a2f101bc89b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d06ecc830a1f9b3289c263f9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2ae34bb050e1b43e7f9d7bdd.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_f5c02e35222f5cbdf70e312e.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_602a7d9026c557d887829256.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a081852ccc9ad2437223fa2c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1ce3efe8952c8a0436f1773f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_344bb8e2640507a1d0f1fed5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899000;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_78274485eac56d75c2d2b210.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_68ec43e43b95e94c60e288e5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a1cf60c1247d741f5ad36aa7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_570a04c1f7bf3f658173400f.woff2')format("woff");}.fff{font-family:fff;line-height:0.841000;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_0ec93cef292fcbea87b962ef.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d0eb804de369f18cab5a5cbe.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f81b1ed07135936e0b4a809d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_0a59292524ac32d40593b164.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.704000;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_cb4d4c67ae6119c159f9c98e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.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);}
.mc{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);}
.md{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m2{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);}
.m3{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);}
.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);}
.m9{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mf{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);}
.m11{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);}
.mb{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);}
.m5{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);}
.m8{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);}
.m10{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);}
.m12{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);}
.m6{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);}
.m1{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);}
.m7{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);}
.v1{vertical-align:-22.854000px;}
.v3{vertical-align:-10.398000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.748000px;}
.v4{vertical-align:27.024000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.002698px;}
.ls10{letter-spacing:0.004326px;}
.ls15{letter-spacing:0.065455px;}
.ls5{letter-spacing:0.589091px;}
.lsa{letter-spacing:1.802541px;}
.ls17{letter-spacing:1.816322px;}
.ls13{letter-spacing:1.819028px;}
.ls6{letter-spacing:1.832729px;}
.ls14{letter-spacing:2.984915px;}
.ls12{letter-spacing:2.986059px;}
.lsb{letter-spacing:2.990915px;}
.ls7{letter-spacing:10.865464px;}
.ls4{letter-spacing:10.930918px;}
.lsf{letter-spacing:13.895593px;}
.ls1{letter-spacing:21.419468px;}
.ls1b{letter-spacing:21.796382px;}
.lse{letter-spacing:23.629111px;}
.ls1a{letter-spacing:29.716388px;}
.lsd{letter-spacing:29.847298px;}
.ls19{letter-spacing:30.370934px;}
.ls18{letter-spacing:30.632753px;}
.ls8{letter-spacing:30.829117px;}
.ls16{letter-spacing:31.483663px;}
.ls3{letter-spacing:32.138209px;}
.lsc{letter-spacing:32.334572px;}
.ls9{letter-spacing:32.530936px;}
.ls2{letter-spacing:35.869121px;}
.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;}
}
.ws29{word-spacing:-42.637126px;}
.ws32{word-spacing:-33.453846px;}
.ws36{word-spacing:-32.727300px;}
.wsf{word-spacing:-27.646998px;}
.ws2c{word-spacing:-24.506202px;}
.ws43{word-spacing:-16.494559px;}
.ws0{word-spacing:-16.139475px;}
.ws1f{word-spacing:-14.334557px;}
.ws35{word-spacing:-14.072739px;}
.ws2{word-spacing:-13.449600px;}
.ws16{word-spacing:-12.612652px;}
.ws39{word-spacing:-12.240010px;}
.ws5{word-spacing:-11.389121px;}
.ws1a{word-spacing:-11.323646px;}
.ws23{word-spacing:-11.258191px;}
.ws22{word-spacing:-10.996373px;}
.ws1b{word-spacing:-10.930918px;}
.wse{word-spacing:-10.915695px;}
.ws1c{word-spacing:-10.865464px;}
.ws44{word-spacing:-10.734554px;}
.ws33{word-spacing:-10.538191px;}
.ws8{word-spacing:-10.474548px;}
.ws15{word-spacing:-10.161852px;}
.ws30{word-spacing:-10.152008px;}
.wsb{word-spacing:-10.097960px;}
.ws27{word-spacing:-10.021099px;}
.ws3{word-spacing:-9.982525px;}
.ws47{word-spacing:-9.922750px;}
.ws3c{word-spacing:-9.824735px;}
.ws45{word-spacing:-9.683647px;}
.ws3e{word-spacing:-9.425462px;}
.ws9{word-spacing:-9.247945px;}
.ws6{word-spacing:-9.194147px;}
.ws46{word-spacing:-9.151644px;}
.wsd{word-spacing:-9.140348px;}
.ws7{word-spacing:-9.086550px;}
.ws38{word-spacing:-8.901826px;}
.ws17{word-spacing:-8.846789px;}
.wsa{word-spacing:-8.817558px;}
.wsc{word-spacing:-8.602364px;}
.ws14{word-spacing:-8.249033px;}
.ws18{word-spacing:-7.890379px;}
.ws2a{word-spacing:-7.627954px;}
.ws2e{word-spacing:-7.396370px;}
.ws4{word-spacing:-7.203606px;}
.ws25{word-spacing:-6.218187px;}
.ws42{word-spacing:-5.570186px;}
.ws28{word-spacing:-5.439277px;}
.ws13{word-spacing:-5.027128px;}
.ws3a{word-spacing:-4.981095px;}
.ws3d{word-spacing:-4.261094px;}
.ws37{word-spacing:-3.737458px;}
.ws2d{word-spacing:-2.362911px;}
.ws20{word-spacing:-2.225456px;}
.ws24{word-spacing:-1.315637px;}
.ws31{word-spacing:-0.065455px;}
.ws10{word-spacing:0.000000px;}
.ws2b{word-spacing:0.013091px;}
.ws34{word-spacing:0.340364px;}
.ws11{word-spacing:2.683639px;}
.ws12{word-spacing:11.429123px;}
.ws1e{word-spacing:22.834279px;}
.ws3f{word-spacing:22.894055px;}
.ws1{word-spacing:23.384371px;}
.ws41{word-spacing:24.676384px;}
.ws40{word-spacing:25.003657px;}
.ws2f{word-spacing:25.134566px;}
.ws26{word-spacing:25.265476px;}
.ws3b{word-spacing:25.527294px;}
.ws19{word-spacing:28.472751px;}
.ws21{word-spacing:28.996388px;}
.ws1d{word-spacing:2287.308812px;}
._0{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._8{margin-left:-3.890165px;}
._1{margin-left:-2.668393px;}
._5{margin-left:-1.506355px;}
._7{width:1.560154px;}
._2{width:2.668393px;}
._a{width:18.676278px;}
._4{width:20.959727px;}
._b{width:22.380024px;}
._6{width:24.295350px;}
._9{width:26.659918px;}
._19{width:29.127297px;}
._c{width:30.366005px;}
._16{width:33.759328px;}
._1a{width:35.865360px;}
._18{width:41.210943px;}
._17{width:43.854582px;}
._15{width:68.741940px;}
._e{width:1365.386373px;}
._13{width:1444.504922px;}
._12{width:1507.530452px;}
._d{width:1553.294873px;}
._f{width:1686.243923px;}
._10{width:1899.668960px;}
._11{width:1924.018072px;}
._14{width:2056.694546px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y44{bottom:160.314000px;}
.y2e{bottom:173.425500px;}
.y43{bottom:190.800000px;}
.y6f{bottom:221.286000px;}
.y2d{bottom:237.855000px;}
.y5d{bottom:242.596500px;}
.y42{bottom:244.120500px;}
.y14{bottom:264.564000px;}
.y6e{bottom:279.565500px;}
.y2c{bottom:285.853500px;}
.y13{bottom:289.222500px;}
.y41{bottom:297.441000px;}
.y5c{bottom:303.804000px;}
.y12{bottom:316.869000px;}
.y2b{bottom:333.850500px;}
.y6d{bottom:337.843500px;}
.y11{bottom:341.526000px;}
.y5b{bottom:349.488000px;}
.y40{bottom:350.761500px;}
.y10{bottom:369.172500px;}
.y2a{bottom:381.849000px;}
.yf{bottom:393.829500px;}
.y5a{bottom:395.173500px;}
.y6c{bottom:396.123000px;}
.y3f{bottom:404.080500px;}
.ye{bottom:421.476000px;}
.y29{bottom:429.846000px;}
.y59{bottom:440.859000px;}
.yd{bottom:446.133000px;}
.y6b{bottom:454.402500px;}
.y3e{bottom:457.401000px;}
.yc{bottom:473.779500px;}
.y28{bottom:477.843000px;}
.y58{bottom:486.543000px;}
.y3d{bottom:487.887000px;}
.yb{bottom:498.438000px;}
.y6a{bottom:508.719000px;}
.y57{bottom:524.655000px;}
.y27{bottom:525.841500px;}
.y3c{bottom:530.578500px;}
.y56{bottom:555.139500px;}
.y3b{bottom:561.064500px;}
.y26{bottom:573.838500px;}
.y69{bottom:584.319000px;}
.y55{bottom:593.251500px;}
.y3a{bottom:614.388000px;}
.y68{bottom:614.805000px;}
.y25{bottom:621.835500px;}
.y54{bottom:623.737500px;}
.ya{bottom:624.730500px;}
.y24{bottom:674.155500px;}
.y53{bottom:675.534000px;}
.y9{bottom:677.142000px;}
.y67{bottom:682.707000px;}
.y39{bottom:684.322500px;}
.y8{bottom:704.040000px;}
.y66{bottom:713.193000px;}
.y38{bottom:714.807000px;}
.y7{bottom:730.939500px;}
.y52{bottom:736.740000px;}
.y23{bottom:738.351000px;}
.y51{bottom:763.180500px;}
.y50{bottom:767.226000px;}
.y22{bottom:768.837000px;}
.y65{bottom:771.472500px;}
.y37{bottom:780.250500px;}
.y64{bottom:801.958500px;}
.y4f{bottom:812.911500px;}
.y6{bottom:821.850000px;}
.y21{bottom:825.966000px;}
.y36{bottom:833.571000px;}
.y4e{bottom:843.396000px;}
.y20{bottom:852.864000px;}
.y5{bottom:853.231500px;}
.y63{bottom:856.273500px;}
.y1f{bottom:879.763500px;}
.y35{bottom:886.891500px;}
.y4d{bottom:889.081500px;}
.y1e{bottom:906.663000px;}
.y4{bottom:919.092000px;}
.y4c{bottom:919.567500px;}
.y62{bottom:931.875000px;}
.y1d{bottom:933.562500px;}
.y73{bottom:936.613500px;}
.y34{bottom:940.212000px;}
.y4b{bottom:957.678000px;}
.y3{bottom:959.440500px;}
.y1c{bottom:960.460500px;}
.y61{bottom:962.361000px;}
.y72{bottom:963.513000px;}
.y4a{bottom:988.164000px;}
.y33{bottom:993.532500px;}
.y1b{bottom:999.166500px;}
.y2{bottom:999.790500px;}
.y49{bottom:1020.067500px;}
.y60{bottom:1020.640500px;}
.y32{bottom:1025.595000px;}
.y1a{bottom:1026.639000px;}
.y19{bottom:1032.061500px;}
.y46{bottom:1038.127500px;}
.y1{bottom:1040.139000px;}
.y5f{bottom:1051.125000px;}
.y48{bottom:1052.679000px;}
.y31{bottom:1056.081000px;}
.y47{bottom:1057.162500px;}
.y71{bottom:1057.659000px;}
.y17{bottom:1059.342000px;}
.y18{bottom:1065.280500px;}
.y30{bottom:1086.567000px;}
.y45{bottom:1088.094000px;}
.y70{bottom:1088.145000px;}
.y16{bottom:1108.509000px;}
.y5e{bottom:1109.404500px;}
.y15{bottom:1139.890500px;}
.y2f{bottom:1192.194000px;}
.h11{height:0.000000px;}
.hc{height:16.677504px;}
.h9{height:27.783619px;}
.h10{height:33.187496px;}
.h8{height:33.665702px;}
.h6{height:38.519654px;}
.hb{height:41.723369px;}
.ha{height:42.799330px;}
.h5{height:44.831700px;}
.h13{height:46.145493px;}
.he{height:46.865494px;}
.hd{height:47.258221px;}
.h7{height:49.090950px;}
.h4{height:50.211840px;}
.h3{height:53.798400px;}
.hf{height:57.413702px;}
.h14{height:57.419702px;}
.h2{height:60.254040px;}
.h12{height:60.689702px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x1a{left:110.739000px;}
.x18{left:113.910000px;}
.x17{left:120.273000px;}
.xb{left:125.421000px;}
.x16{left:126.636000px;}
.x1d{left:130.416000px;}
.x39{left:132.741000px;}
.x19{left:143.815500px;}
.x37{left:152.832000px;}
.xc{left:155.574000px;}
.x13{left:158.809500px;}
.x29{left:160.057500px;}
.x12{left:173.754000px;}
.x1e{left:208.764000px;}
.xf{left:214.422000px;}
.x2{left:219.360000px;}
.x10{left:221.125500px;}
.x1{left:226.270500px;}
.x36{left:239.808000px;}
.x1c{left:259.879500px;}
.x3{left:263.485500px;}
.x21{left:268.056000px;}
.x4{left:274.819500px;}
.x33{left:308.893500px;}
.x32{left:313.924500px;}
.x7{left:329.793000px;}
.x38{left:331.722000px;}
.x22{left:343.230000px;}
.x5{left:349.918500px;}
.x11{left:364.890000px;}
.x6{left:381.384000px;}
.xd{left:382.602000px;}
.x8{left:392.640000px;}
.x9{left:405.966000px;}
.x15{left:409.203000px;}
.x25{left:413.848500px;}
.x24{left:415.024500px;}
.x23{left:420.139500px;}
.x34{left:424.929000px;}
.x35{left:434.866500px;}
.x26{left:440.514000px;}
.x2a{left:461.851500px;}
.x2b{left:478.956000px;}
.x2c{left:485.199000px;}
.x2d{left:497.821500px;}
.x2e{left:505.374000px;}
.xe{left:511.759500px;}
.x2f{left:533.193000px;}
.x30{left:550.297500px;}
.x31{left:556.540500px;}
.x1f{left:576.958500px;}
.x20{left:653.011500px;}
.x27{left:728.628000px;}
.x28{left:753.724500px;}
.x1b{left:799.195500px;}
@media print{
.v1{vertical-align:-20.314667pt;}
.v3{vertical-align:-9.242667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.109333pt;}
.v4{vertical-align:24.021333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.002399pt;}
.ls10{letter-spacing:0.003845pt;}
.ls15{letter-spacing:0.058182pt;}
.ls5{letter-spacing:0.523637pt;}
.lsa{letter-spacing:1.602259pt;}
.ls17{letter-spacing:1.614508pt;}
.ls13{letter-spacing:1.616913pt;}
.ls6{letter-spacing:1.629092pt;}
.ls14{letter-spacing:2.653258pt;}
.ls12{letter-spacing:2.654275pt;}
.lsb{letter-spacing:2.658591pt;}
.ls7{letter-spacing:9.658190pt;}
.ls4{letter-spacing:9.716372pt;}
.lsf{letter-spacing:12.351639pt;}
.ls1{letter-spacing:19.039527pt;}
.ls1b{letter-spacing:19.374562pt;}
.lse{letter-spacing:21.003654pt;}
.ls1a{letter-spacing:26.414567pt;}
.lsd{letter-spacing:26.530931pt;}
.ls19{letter-spacing:26.996386pt;}
.ls18{letter-spacing:27.229114pt;}
.ls8{letter-spacing:27.403659pt;}
.ls16{letter-spacing:27.985478pt;}
.ls3{letter-spacing:28.567297pt;}
.lsc{letter-spacing:28.741842pt;}
.ls9{letter-spacing:28.916388pt;}
.ls2{letter-spacing:31.883663pt;}
.ws29{word-spacing:-37.899668pt;}
.ws32{word-spacing:-29.736752pt;}
.ws36{word-spacing:-29.090933pt;}
.wsf{word-spacing:-24.575109pt;}
.ws2c{word-spacing:-21.783291pt;}
.ws43{word-spacing:-14.661830pt;}
.ws0{word-spacing:-14.346200pt;}
.ws1f{word-spacing:-12.741829pt;}
.ws35{word-spacing:-12.509101pt;}
.ws2{word-spacing:-11.955200pt;}
.ws16{word-spacing:-11.211246pt;}
.ws39{word-spacing:-10.880009pt;}
.ws5{word-spacing:-10.123663pt;}
.ws1a{word-spacing:-10.065463pt;}
.ws23{word-spacing:-10.007281pt;}
.ws22{word-spacing:-9.774554pt;}
.ws1b{word-spacing:-9.716372pt;}
.wse{word-spacing:-9.702840pt;}
.ws1c{word-spacing:-9.658190pt;}
.ws44{word-spacing:-9.541826pt;}
.ws33{word-spacing:-9.367281pt;}
.ws8{word-spacing:-9.310710pt;}
.ws15{word-spacing:-9.032757pt;}
.ws30{word-spacing:-9.024008pt;}
.wsb{word-spacing:-8.975964pt;}
.ws27{word-spacing:-8.907644pt;}
.ws3{word-spacing:-8.873356pt;}
.ws47{word-spacing:-8.820222pt;}
.ws3c{word-spacing:-8.733098pt;}
.ws45{word-spacing:-8.607686pt;}
.ws3e{word-spacing:-8.378189pt;}
.ws9{word-spacing:-8.220396pt;}
.ws6{word-spacing:-8.172575pt;}
.ws46{word-spacing:-8.134795pt;}
.wsd{word-spacing:-8.124754pt;}
.ws7{word-spacing:-8.076933pt;}
.ws38{word-spacing:-7.912734pt;}
.ws17{word-spacing:-7.863812pt;}
.wsa{word-spacing:-7.837829pt;}
.wsc{word-spacing:-7.646546pt;}
.ws14{word-spacing:-7.332474pt;}
.ws18{word-spacing:-7.013670pt;}
.ws2a{word-spacing:-6.780404pt;}
.ws2e{word-spacing:-6.574551pt;}
.ws4{word-spacing:-6.403205pt;}
.ws25{word-spacing:-5.527277pt;}
.ws42{word-spacing:-4.951277pt;}
.ws28{word-spacing:-4.834913pt;}
.ws13{word-spacing:-4.468558pt;}
.ws3a{word-spacing:-4.427640pt;}
.ws3d{word-spacing:-3.787640pt;}
.ws37{word-spacing:-3.322185pt;}
.ws2d{word-spacing:-2.100365pt;}
.ws20{word-spacing:-1.978183pt;}
.ws24{word-spacing:-1.169456pt;}
.ws31{word-spacing:-0.058182pt;}
.ws10{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.011636pt;}
.ws34{word-spacing:0.302546pt;}
.ws11{word-spacing:2.385457pt;}
.ws12{word-spacing:10.159221pt;}
.ws1e{word-spacing:20.297137pt;}
.ws3f{word-spacing:20.350271pt;}
.ws1{word-spacing:20.786108pt;}
.ws41{word-spacing:21.934564pt;}
.ws40{word-spacing:22.225473pt;}
.ws2f{word-spacing:22.341837pt;}
.ws26{word-spacing:22.458201pt;}
.ws3b{word-spacing:22.690928pt;}
.ws19{word-spacing:25.309112pt;}
.ws21{word-spacing:25.774567pt;}
.ws1d{word-spacing:2033.163389pt;}
._0{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._8{margin-left:-3.457924pt;}
._1{margin-left:-2.371905pt;}
._5{margin-left:-1.338982pt;}
._7{width:1.386803pt;}
._2{width:2.371905pt;}
._a{width:16.601136pt;}
._4{width:18.630868pt;}
._b{width:19.893355pt;}
._6{width:21.595867pt;}
._9{width:23.697705pt;}
._19{width:25.890931pt;}
._c{width:26.992004pt;}
._16{width:30.008292pt;}
._1a{width:31.880320pt;}
._18{width:36.631949pt;}
._17{width:38.981851pt;}
._15{width:61.103947pt;}
._e{width:1213.676776pt;}
._13{width:1284.004375pt;}
._12{width:1340.027068pt;}
._d{width:1380.706554pt;}
._f{width:1498.883487pt;}
._10{width:1688.594631pt;}
._11{width:1710.238286pt;}
._14{width:1828.172930pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:142.501333pt;}
.y2e{bottom:154.156000pt;}
.y43{bottom:169.600000pt;}
.y6f{bottom:196.698667pt;}
.y2d{bottom:211.426667pt;}
.y5d{bottom:215.641333pt;}
.y42{bottom:216.996000pt;}
.y14{bottom:235.168000pt;}
.y6e{bottom:248.502667pt;}
.y2c{bottom:254.092000pt;}
.y13{bottom:257.086667pt;}
.y41{bottom:264.392000pt;}
.y5c{bottom:270.048000pt;}
.y12{bottom:281.661333pt;}
.y2b{bottom:296.756000pt;}
.y6d{bottom:300.305333pt;}
.y11{bottom:303.578667pt;}
.y5b{bottom:310.656000pt;}
.y40{bottom:311.788000pt;}
.y10{bottom:328.153333pt;}
.y2a{bottom:339.421333pt;}
.yf{bottom:350.070667pt;}
.y5a{bottom:351.265333pt;}
.y6c{bottom:352.109333pt;}
.y3f{bottom:359.182667pt;}
.ye{bottom:374.645333pt;}
.y29{bottom:382.085333pt;}
.y59{bottom:391.874667pt;}
.yd{bottom:396.562667pt;}
.y6b{bottom:403.913333pt;}
.y3e{bottom:406.578667pt;}
.yc{bottom:421.137333pt;}
.y28{bottom:424.749333pt;}
.y58{bottom:432.482667pt;}
.y3d{bottom:433.677333pt;}
.yb{bottom:443.056000pt;}
.y6a{bottom:452.194667pt;}
.y57{bottom:466.360000pt;}
.y27{bottom:467.414667pt;}
.y3c{bottom:471.625333pt;}
.y56{bottom:493.457333pt;}
.y3b{bottom:498.724000pt;}
.y26{bottom:510.078667pt;}
.y69{bottom:519.394667pt;}
.y55{bottom:527.334667pt;}
.y3a{bottom:546.122667pt;}
.y68{bottom:546.493333pt;}
.y25{bottom:552.742667pt;}
.y54{bottom:554.433333pt;}
.ya{bottom:555.316000pt;}
.y24{bottom:599.249333pt;}
.y53{bottom:600.474667pt;}
.y9{bottom:601.904000pt;}
.y67{bottom:606.850667pt;}
.y39{bottom:608.286667pt;}
.y8{bottom:625.813333pt;}
.y66{bottom:633.949333pt;}
.y38{bottom:635.384000pt;}
.y7{bottom:649.724000pt;}
.y52{bottom:654.880000pt;}
.y23{bottom:656.312000pt;}
.y51{bottom:678.382667pt;}
.y50{bottom:681.978667pt;}
.y22{bottom:683.410667pt;}
.y65{bottom:685.753333pt;}
.y37{bottom:693.556000pt;}
.y64{bottom:712.852000pt;}
.y4f{bottom:722.588000pt;}
.y6{bottom:730.533333pt;}
.y21{bottom:734.192000pt;}
.y36{bottom:740.952000pt;}
.y4e{bottom:749.685333pt;}
.y20{bottom:758.101333pt;}
.y5{bottom:758.428000pt;}
.y63{bottom:761.132000pt;}
.y1f{bottom:782.012000pt;}
.y35{bottom:788.348000pt;}
.y4d{bottom:790.294667pt;}
.y1e{bottom:805.922667pt;}
.y4{bottom:816.970667pt;}
.y4c{bottom:817.393333pt;}
.y62{bottom:828.333333pt;}
.y1d{bottom:829.833333pt;}
.y73{bottom:832.545333pt;}
.y34{bottom:835.744000pt;}
.y4b{bottom:851.269333pt;}
.y3{bottom:852.836000pt;}
.y1c{bottom:853.742667pt;}
.y61{bottom:855.432000pt;}
.y72{bottom:856.456000pt;}
.y4a{bottom:878.368000pt;}
.y33{bottom:883.140000pt;}
.y1b{bottom:888.148000pt;}
.y2{bottom:888.702667pt;}
.y49{bottom:906.726667pt;}
.y60{bottom:907.236000pt;}
.y32{bottom:911.640000pt;}
.y1a{bottom:912.568000pt;}
.y19{bottom:917.388000pt;}
.y46{bottom:922.780000pt;}
.y1{bottom:924.568000pt;}
.y5f{bottom:934.333333pt;}
.y48{bottom:935.714667pt;}
.y31{bottom:938.738667pt;}
.y47{bottom:939.700000pt;}
.y71{bottom:940.141333pt;}
.y17{bottom:941.637333pt;}
.y18{bottom:946.916000pt;}
.y30{bottom:965.837333pt;}
.y45{bottom:967.194667pt;}
.y70{bottom:967.240000pt;}
.y16{bottom:985.341333pt;}
.y5e{bottom:986.137333pt;}
.y15{bottom:1013.236000pt;}
.y2f{bottom:1059.728000pt;}
.h11{height:0.000000pt;}
.hc{height:14.824448pt;}
.h9{height:24.696550pt;}
.h10{height:29.499997pt;}
.h8{height:29.925069pt;}
.h6{height:34.239693pt;}
.hb{height:37.087439pt;}
.ha{height:38.043849pt;}
.h5{height:39.850400pt;}
.h13{height:41.018216pt;}
.he{height:41.658217pt;}
.hd{height:42.007308pt;}
.h7{height:43.636400pt;}
.h4{height:44.632747pt;}
.h3{height:47.820800pt;}
.hf{height:51.034402pt;}
.h14{height:51.039735pt;}
.h2{height:53.559147pt;}
.h12{height:53.946402pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x1a{left:98.434667pt;}
.x18{left:101.253333pt;}
.x17{left:106.909333pt;}
.xb{left:111.485333pt;}
.x16{left:112.565333pt;}
.x1d{left:115.925333pt;}
.x39{left:117.992000pt;}
.x19{left:127.836000pt;}
.x37{left:135.850667pt;}
.xc{left:138.288000pt;}
.x13{left:141.164000pt;}
.x29{left:142.273333pt;}
.x12{left:154.448000pt;}
.x1e{left:185.568000pt;}
.xf{left:190.597333pt;}
.x2{left:194.986667pt;}
.x10{left:196.556000pt;}
.x1{left:201.129333pt;}
.x36{left:213.162667pt;}
.x1c{left:231.004000pt;}
.x3{left:234.209333pt;}
.x21{left:238.272000pt;}
.x4{left:244.284000pt;}
.x33{left:274.572000pt;}
.x32{left:279.044000pt;}
.x7{left:293.149333pt;}
.x38{left:294.864000pt;}
.x22{left:305.093333pt;}
.x5{left:311.038667pt;}
.x11{left:324.346667pt;}
.x6{left:339.008000pt;}
.xd{left:340.090667pt;}
.x8{left:349.013333pt;}
.x9{left:360.858667pt;}
.x15{left:363.736000pt;}
.x25{left:367.865333pt;}
.x24{left:368.910667pt;}
.x23{left:373.457333pt;}
.x34{left:377.714667pt;}
.x35{left:386.548000pt;}
.x26{left:391.568000pt;}
.x2a{left:410.534667pt;}
.x2b{left:425.738667pt;}
.x2c{left:431.288000pt;}
.x2d{left:442.508000pt;}
.x2e{left:449.221333pt;}
.xe{left:454.897333pt;}
.x2f{left:473.949333pt;}
.x30{left:489.153333pt;}
.x31{left:494.702667pt;}
.x1f{left:512.852000pt;}
.x20{left:580.454667pt;}
.x27{left:647.669333pt;}
.x28{left:669.977333pt;}
.x1b{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; }
  