
    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_8458618a8e82f7e4b53c8ea2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_28918def038c367a8eb4a449.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.110352;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_bdcec89e90aa0c37066cc73d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945000;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_c71db3ad3818c3b7a2b642a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.122070;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_62612e680a632b6b1e107666.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8d0419b963cdd34c868f48a3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.737000;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_a2daf5629783d9a9fc52d1dc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.724000;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_e2b975c57df92c02a53d210a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_c02a419bd5966771e08bc905.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.122070;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_ea89ee365450c7ac857d413c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.957000;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_8f6d9ffb1b34a9ae902b8498.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909000;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_567cdea8144311b9a5bf9c3c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_624537c81411f656959642d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.122070;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_0d71ec7a657812e6bfc92aa2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.957000;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_eaf3d100d7c1a6a647057e81.woff2')format("woff");}.fff{font-family:fff;line-height:1.122070;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_79701a3192f25e621eb88948.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.957000;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_8c990acd77ca58b0b7750514.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.957000;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_b0eea34b763ab8216da02f60.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.957000;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_21014e05000db70e0746607e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.109375;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_b821c295e4e344de94665db1.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.196289;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_467a8c52b7383ce34c01f4cb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.957000;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;}
.ff16{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6fd130f7ba1190bc02ac5016.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.122070;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:ff18;src:url('chunks/assets/font_f88787e2158734285e84a46e.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_5dfcd742a8c4d2d49d55808b.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_78e24bd82403b4db04fd1687.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.109375;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:ff1b;src:url('chunks/assets/font_9aff08b5fae982fb51eafbc9.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.737000;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:ff1c;src:url('chunks/assets/font_b86602680fd266971c240db5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.945000;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:ff1d;src:url('chunks/assets/font_e6cfd9d361aa60f9b378baab.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.724000;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:ff1e;src:url('chunks/assets/font_3b69a5bfd47929cb766d12f7.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_08dc8346aa5b3a8d8f6faf11.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.122070;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;}
.ff20{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff21;src:url('chunks/assets/font_0d2f5e9f6d7c41b88a530c63.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.957000;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:ff22;src:url('chunks/assets/font_834fd62e5a5157a956646083.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.122070;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:ff23;src:url('chunks/assets/font_5742ef05dfd07b269594bebe.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.737000;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:ff24;src:url('chunks/assets/font_e683753d2bea45d485c57173.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.945000;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:ff25;src:url('chunks/assets/font_7bec52a5542a11d9645f0ff1.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.122070;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:ff26;src:url('chunks/assets/font_ac976de184b382c634ca0ae8.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.122070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,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);}
.m1{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);}
.v7{vertical-align:-40.500000px;}
.v4{vertical-align:-27.000000px;}
.v5{vertical-align:-4.500000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.054686px;}
.v1{vertical-align:4.500000px;}
.v3{vertical-align:13.500000px;}
.v2{vertical-align:18.000000px;}
.v8{vertical-align:27.000000px;}
.v6{vertical-align:54.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.008460px;}
.ls17{letter-spacing:0.011280px;}
.lsd{letter-spacing:0.016860px;}
.ls2{letter-spacing:0.033645px;}
.ls3{letter-spacing:0.040380px;}
.ls1a{letter-spacing:3.430185px;}
.ls4{letter-spacing:5.906280px;}
.lse{letter-spacing:20.250000px;}
.ls10{letter-spacing:21.371970px;}
.ls9{letter-spacing:25.664040px;}
.ls12{letter-spacing:27.281280px;}
.ls19{letter-spacing:38.586705px;}
.lsb{letter-spacing:59.963070px;}
.ls6{letter-spacing:60.016740px;}
.ls7{letter-spacing:69.075195px;}
.ls8{letter-spacing:76.064670px;}
.ls1{letter-spacing:76.106595px;}
.ls16{letter-spacing:86.391705px;}
.ls11{letter-spacing:90.475530px;}
.ls5{letter-spacing:96.204300px;}
.lsf{letter-spacing:114.013245px;}
.ls15{letter-spacing:118.229130px;}
.lsc{letter-spacing:122.625000px;}
.ls18{letter-spacing:123.868305px;}
.lsa{letter-spacing:170.929800px;}
.ls13{letter-spacing:240.078330px;}
.ls1e{letter-spacing:321.415710px;}
.ls1d{letter-spacing:322.808940px;}
.ls1c{letter-spacing:323.702070px;}
.ls1b{letter-spacing:336.949680px;}
.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;}
}
.wse{word-spacing:-59.114655px;}
.wsa{word-spacing:-56.221605px;}
.ws0{word-spacing:-45.354240px;}
.ws10{word-spacing:-41.377500px;}
.ws11{word-spacing:-24.108750px;}
.wsc{word-spacing:-22.671360px;}
.ws2{word-spacing:-21.404250px;}
.wsd{word-spacing:-19.915875px;}
.ws5{word-spacing:-17.633815px;}
.ws12{word-spacing:-16.875000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:2.713970px;}
.ws7{word-spacing:31.143919px;}
.ws8{word-spacing:45.483600px;}
.ws6{word-spacing:45.492165px;}
.ws9{word-spacing:105.741600px;}
.ws4{word-spacing:313.399800px;}
.wsf{word-spacing:537.405187px;}
.wsb{word-spacing:611.065500px;}
._8{margin-left:-15.921026px;}
._9{margin-left:-10.601401px;}
._a{margin-left:-8.107320px;}
._7{margin-left:-6.845358px;}
._3{margin-left:-5.704934px;}
._1{margin-left:-3.982798px;}
._0{margin-left:-2.884749px;}
._2{margin-left:-1.261564px;}
._4{width:1.448986px;}
._6{width:4.449019px;}
._5{width:60.017020px;}
.fc4{color:rgb(172,158,245);}
.fc3{color:rgb(0,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(214,217,215);}
.fc0{color:rgb(247,247,248);}
.fs5{font-size:4.500000px;}
.fs6{font-size:67.500000px;}
.fs2{font-size:70.875000px;}
.fs8{font-size:73.055971px;}
.fs7{font-size:85.050000px;}
.fs1{font-size:88.560000px;}
.fs4{font-size:96.435000px;}
.fs3{font-size:106.290000px;}
.fs0{font-size:177.165000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.y97{bottom:0.315234px;}
.y16{bottom:0.600000px;}
.y96{bottom:57.374672px;}
.y27{bottom:69.779850px;}
.y56{bottom:75.375000px;}
.y66{bottom:77.655000px;}
.y95{bottom:85.499672px;}
.y26{bottom:97.904850px;}
.y55{bottom:103.500000px;}
.y65{bottom:105.780000px;}
.y53{bottom:106.875000px;}
.y84{bottom:111.405000px;}
.y94{bottom:114.749672px;}
.y64{bottom:133.905000px;}
.y25{bottom:135.029850px;}
.y83{bottom:139.530000px;}
.y54{bottom:140.625000px;}
.y93{bottom:142.874672px;}
.y36{bottom:154.155000px;}
.y82{bottom:168.780000px;}
.y92{bottom:170.999672px;}
.y63{bottom:173.280000px;}
.y24{bottom:181.155000px;}
.y35{bottom:182.280000px;}
.y15{bottom:183.405000px;}
.y77{bottom:185.655000px;}
.y52{bottom:205.875000px;}
.y81{bottom:205.905000px;}
.y62{bottom:210.405000px;}
.y34{bottom:211.530000px;}
.y71{bottom:216.030000px;}
.y40{bottom:217.155000px;}
.y91{bottom:219.374672px;}
.y14{bottom:228.405000px;}
.y76{bottom:229.530000px;}
.y51{bottom:234.000000px;}
.y10{bottom:234.030000px;}
.y4f{bottom:237.375000px;}
.y23{bottom:237.405000px;}
.y33{bottom:239.655000px;}
.y70{bottom:244.155000px;}
.y3f{bottom:245.280000px;}
.y90{bottom:256.236000px;}
.yf{bottom:262.155000px;}
.y80{bottom:264.405000px;}
.y22{bottom:265.530000px;}
.y32{bottom:267.780000px;}
.y50{bottom:271.125000px;}
.y6f{bottom:272.280000px;}
.y3e{bottom:273.405000px;}
.y5{bottom:288.030000px;}
.ye{bottom:290.280000px;}
.y31{bottom:295.905000px;}
.y61{bottom:297.030000px;}
.y21{bottom:302.655000px;}
.y75{bottom:304.905000px;}
.y13{bottom:310.530000px;}
.ya3{bottom:311.624766px;}
.y3d{bottom:316.155000px;}
.yd{bottom:318.405000px;}
.y6c{bottom:322.905000px;}
.y60{bottom:325.155000px;}
.y8f{bottom:327.374672px;}
.y3c{bottom:329.655000px;}
.y3b{bottom:333.030000px;}
.y6b{bottom:335.280000px;}
.y4e{bottom:336.375000px;}
.y6a{bottom:338.655000px;}
.ya2{bottom:339.749766px;}
.y4{bottom:340.905000px;}
.y7f{bottom:343.155000px;}
.y30{bottom:345.405000px;}
.yc{bottom:346.530000px;}
.y20{bottom:347.655000px;}
.y2f{bottom:348.780000px;}
.y74{bottom:349.905000px;}
.y6e{bottom:352.155000px;}
.y5f{bottom:353.280000px;}
.y12{bottom:354.405000px;}
.y6d{bottom:355.530000px;}
.y8e{bottom:364.236000px;}
.y4d{bottom:364.500000px;}
.y4b{bottom:367.875000px;}
.ya1{bottom:368.999766px;}
.y2c{bottom:370.155000px;}
.y7e{bottom:371.280000px;}
.y3{bottom:382.530000px;}
.y2b{bottom:385.905000px;}
.y2e{bottom:387.030000px;}
.yb{bottom:391.530000px;}
.y38{bottom:392.655000px;}
.y3a{bottom:394.905000px;}
.ya0{bottom:397.124766px;}
.y37{bottom:398.280000px;}
.y7d{bottom:400.530000px;}
.y4c{bottom:401.625000px;}
.y2d{bottom:402.780000px;}
.y1f{bottom:403.905000px;}
.y39{bottom:408.405000px;}
.ya{bottom:419.655000px;}
.y73{bottom:425.280000px;}
.y7c{bottom:428.655000px;}
.y5e{bottom:429.780000px;}
.y69{bottom:432.030000px;}
.y1e{bottom:433.155000px;}
.y8d{bottom:435.374672px;}
.y2{bottom:437.655000px;}
.y9f{bottom:440.999766px;}
.y9{bottom:447.780000px;}
.y2a{bottom:450.030000px;}
.y7b{bottom:456.780000px;}
.y4a{bottom:466.875000px;}
.y9e{bottom:469.124766px;}
.y72{bottom:469.155000px;}
.y1d{bottom:470.280000px;}
.y8c{bottom:472.236000px;}
.y8{bottom:475.905000px;}
.y68{bottom:478.155000px;}
.y11{bottom:481.530000px;}
.y7a{bottom:493.905000px;}
.y49{bottom:495.000000px;}
.y47{bottom:497.250000px;}
.y9d{bottom:498.374766px;}
.y7{bottom:504.030000px;}
.y1c{bottom:515.280000px;}
.y5d{bottom:517.530000px;}
.y48{bottom:532.125000px;}
.y29{bottom:532.155000px;}
.y8b{bottom:543.374672px;}
.y9c{bottom:545.624163px;}
.y5c{bottom:545.655000px;}
.y79{bottom:553.530000px;}
.y67{bottom:560.280000px;}
.y1b{bottom:571.530000px;}
.y5b{bottom:573.780000px;}
.y9b{bottom:574.874090px;}
.y6{bottom:579.405000px;}
.y8a{bottom:580.236000px;}
.y28{bottom:587.280000px;}
.y46{bottom:598.500000px;}
.y1a{bottom:599.655000px;}
.y9a{bottom:602.999137px;}
.y5a{bottom:613.155000px;}
.y45{bottom:627.750000px;}
.y99{bottom:631.124766px;}
.y78{bottom:634.530000px;}
.y89{bottom:636.750000px;}
.y19{bottom:636.780000px;}
.y59{bottom:650.280000px;}
.y44{bottom:655.875000px;}
.y88{bottom:664.875000px;}
.y18{bottom:682.905000px;}
.y43{bottom:684.000000px;}
.y87{bottom:693.000000px;}
.y98{bottom:710.999766px;}
.y86{bottom:721.125000px;}
.y58{bottom:730.155000px;}
.y17{bottom:739.155000px;}
.y42{bottom:743.625000px;}
.y85{bottom:780.750000px;}
.y57{bottom:785.280000px;}
.y41{bottom:798.750000px;}
.h1a{height:3.375000px;}
.h19{height:48.330000px;}
.h9{height:50.463000px;}
.h10{height:50.625000px;}
.h1b{height:60.555600px;}
.h3{height:64.206000px;}
.h4{height:64.230469px;}
.h22{height:66.206974px;}
.h5{height:66.862800px;}
.he{height:67.826250px;}
.hb{height:67.890240px;}
.h1c{height:68.102640px;}
.h16{height:68.175659px;}
.h18{height:69.047460px;}
.hc{height:72.326250px;}
.ha{height:77.060250px;}
.h12{height:77.625000px;}
.h11{height:81.390240px;}
.h1d{height:84.132000px;}
.hd{height:85.826250px;}
.hf{height:104.625000px;}
.h2{height:128.444625px;}
.h17{height:168.306750px;}
.h1{height:760.500000px;}
.h0{height:760.680000px;}
.h21{height:802.124766px;}
.h1f{height:802.440000px;}
.h20{height:802.500000px;}
.h8{height:830.250000px;}
.h6{height:830.880000px;}
.h7{height:831.000000px;}
.h1e{height:873.000000px;}
.h15{height:877.500000px;}
.h14{height:877.680000px;}
.h13{height:891.000000px;}
.w0{width:1350.000000px;}
.x0{left:0.000000px;}
.x3{left:68.712885px;}
.x1{left:70.875000px;}
.x2d{left:90.843750px;}
.x1d{left:143.226600px;}
.x1e{left:160.628985px;}
.x21{left:245.760000px;}
.x1f{left:247.271805px;}
.x20{left:262.758105px;}
.x22{left:288.035400px;}
.x26{left:359.508000px;}
.x32{left:361.899000px;}
.x24{left:380.935770px;}
.x25{left:391.483320px;}
.x27{left:396.844650px;}
.x23{left:435.638850px;}
.x2b{left:469.722000px;}
.x29{left:482.080995px;}
.x2a{left:493.577160px;}
.x2e{left:499.500000px;}
.x28{left:516.709845px;}
.x1b{left:543.334500px;}
.x4{left:577.125000px;}
.x1c{left:578.890350px;}
.x37{left:589.395000px;}
.x35{left:592.699500px;}
.x5{left:604.915500px;}
.x19{left:613.758000px;}
.x17{left:617.062500px;}
.x7{left:618.978075px;}
.x6{left:637.997550px;}
.x1a{left:667.969500px;}
.x18{left:683.437500px;}
.x36{left:685.652700px;}
.x39{left:697.728000px;}
.x2c{left:701.595000px;}
.x34{left:703.828500px;}
.x8{left:706.183245px;}
.x38{left:724.306500px;}
.xc{left:731.952750px;}
.xb{left:808.294500px;}
.xa{left:809.296770px;}
.x9{left:823.482300px;}
.x2{left:840.586500px;}
.x30{left:908.157000px;}
.x31{left:925.927950px;}
.xd{left:950.853000px;}
.x33{left:974.953500px;}
.xe{left:989.437500px;}
.xf{left:1010.601660px;}
.x12{left:1012.482165px;}
.x13{left:1032.573975px;}
.x2f{left:1077.328500px;}
.x10{left:1082.935725px;}
.x15{left:1096.101000px;}
.x16{left:1134.298290px;}
.x14{left:1140.504225px;}
.x11{left:1160.226765px;}
@media print{
.v7{vertical-align:-36.000000pt;}
.v4{vertical-align:-24.000000pt;}
.v5{vertical-align:-4.000000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:0.937499pt;}
.v1{vertical-align:4.000000pt;}
.v3{vertical-align:12.000000pt;}
.v2{vertical-align:16.000000pt;}
.v8{vertical-align:24.000000pt;}
.v6{vertical-align:48.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.007520pt;}
.ls17{letter-spacing:0.010027pt;}
.lsd{letter-spacing:0.014987pt;}
.ls2{letter-spacing:0.029907pt;}
.ls3{letter-spacing:0.035893pt;}
.ls1a{letter-spacing:3.049053pt;}
.ls4{letter-spacing:5.250027pt;}
.lse{letter-spacing:18.000000pt;}
.ls10{letter-spacing:18.997307pt;}
.ls9{letter-spacing:22.812480pt;}
.ls12{letter-spacing:24.250027pt;}
.ls19{letter-spacing:34.299293pt;}
.lsb{letter-spacing:53.300507pt;}
.ls6{letter-spacing:53.348213pt;}
.ls7{letter-spacing:61.400173pt;}
.ls8{letter-spacing:67.613040pt;}
.ls1{letter-spacing:67.650307pt;}
.ls16{letter-spacing:76.792627pt;}
.ls11{letter-spacing:80.422693pt;}
.ls5{letter-spacing:85.514933pt;}
.lsf{letter-spacing:101.345107pt;}
.ls15{letter-spacing:105.092560pt;}
.lsc{letter-spacing:109.000000pt;}
.ls18{letter-spacing:110.105160pt;}
.lsa{letter-spacing:151.937600pt;}
.ls13{letter-spacing:213.402960pt;}
.ls1e{letter-spacing:285.702853pt;}
.ls1d{letter-spacing:286.941280pt;}
.ls1c{letter-spacing:287.735173pt;}
.ls1b{letter-spacing:299.510827pt;}
.wse{word-spacing:-52.546360pt;}
.wsa{word-spacing:-49.974760pt;}
.ws0{word-spacing:-40.314880pt;}
.ws10{word-spacing:-36.780000pt;}
.ws11{word-spacing:-21.430000pt;}
.wsc{word-spacing:-20.152320pt;}
.ws2{word-spacing:-19.026000pt;}
.wsd{word-spacing:-17.703000pt;}
.ws5{word-spacing:-15.674502pt;}
.ws12{word-spacing:-15.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:2.412418pt;}
.ws7{word-spacing:27.683484pt;}
.ws8{word-spacing:40.429867pt;}
.ws6{word-spacing:40.437480pt;}
.ws9{word-spacing:93.992533pt;}
.ws4{word-spacing:278.577600pt;}
.wsf{word-spacing:477.693500pt;}
.wsb{word-spacing:543.169333pt;}
._8{margin-left:-14.152023pt;}
._9{margin-left:-9.423467pt;}
._a{margin-left:-7.206507pt;}
._7{margin-left:-6.084762pt;}
._3{margin-left:-5.071052pt;}
._1{margin-left:-3.540265pt;}
._0{margin-left:-2.564221pt;}
._2{margin-left:-1.121390pt;}
._4{width:1.287988pt;}
._6{width:3.954684pt;}
._5{width:53.348462pt;}
.fs5{font-size:4.000000pt;}
.fs6{font-size:60.000000pt;}
.fs2{font-size:63.000000pt;}
.fs8{font-size:64.938641pt;}
.fs7{font-size:75.600000pt;}
.fs1{font-size:78.720000pt;}
.fs4{font-size:85.720000pt;}
.fs3{font-size:94.480000pt;}
.fs0{font-size:157.480000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.y97{bottom:0.280208pt;}
.y16{bottom:0.533333pt;}
.y96{bottom:50.999708pt;}
.y27{bottom:62.026533pt;}
.y56{bottom:67.000000pt;}
.y66{bottom:69.026667pt;}
.y95{bottom:75.999708pt;}
.y26{bottom:87.026533pt;}
.y55{bottom:92.000000pt;}
.y65{bottom:94.026667pt;}
.y53{bottom:95.000000pt;}
.y84{bottom:99.026667pt;}
.y94{bottom:101.999708pt;}
.y64{bottom:119.026667pt;}
.y25{bottom:120.026533pt;}
.y83{bottom:124.026667pt;}
.y54{bottom:125.000000pt;}
.y93{bottom:126.999708pt;}
.y36{bottom:137.026667pt;}
.y82{bottom:150.026667pt;}
.y92{bottom:151.999708pt;}
.y63{bottom:154.026667pt;}
.y24{bottom:161.026667pt;}
.y35{bottom:162.026667pt;}
.y15{bottom:163.026667pt;}
.y77{bottom:165.026667pt;}
.y52{bottom:183.000000pt;}
.y81{bottom:183.026667pt;}
.y62{bottom:187.026667pt;}
.y34{bottom:188.026667pt;}
.y71{bottom:192.026667pt;}
.y40{bottom:193.026667pt;}
.y91{bottom:194.999708pt;}
.y14{bottom:203.026667pt;}
.y76{bottom:204.026667pt;}
.y51{bottom:208.000000pt;}
.y10{bottom:208.026667pt;}
.y4f{bottom:211.000000pt;}
.y23{bottom:211.026667pt;}
.y33{bottom:213.026667pt;}
.y70{bottom:217.026667pt;}
.y3f{bottom:218.026667pt;}
.y90{bottom:227.765333pt;}
.yf{bottom:233.026667pt;}
.y80{bottom:235.026667pt;}
.y22{bottom:236.026667pt;}
.y32{bottom:238.026667pt;}
.y50{bottom:241.000000pt;}
.y6f{bottom:242.026667pt;}
.y3e{bottom:243.026667pt;}
.y5{bottom:256.026667pt;}
.ye{bottom:258.026667pt;}
.y31{bottom:263.026667pt;}
.y61{bottom:264.026667pt;}
.y21{bottom:269.026667pt;}
.y75{bottom:271.026667pt;}
.y13{bottom:276.026667pt;}
.ya3{bottom:276.999792pt;}
.y3d{bottom:281.026667pt;}
.yd{bottom:283.026667pt;}
.y6c{bottom:287.026667pt;}
.y60{bottom:289.026667pt;}
.y8f{bottom:290.999708pt;}
.y3c{bottom:293.026667pt;}
.y3b{bottom:296.026667pt;}
.y6b{bottom:298.026667pt;}
.y4e{bottom:299.000000pt;}
.y6a{bottom:301.026667pt;}
.ya2{bottom:301.999792pt;}
.y4{bottom:303.026667pt;}
.y7f{bottom:305.026667pt;}
.y30{bottom:307.026667pt;}
.yc{bottom:308.026667pt;}
.y20{bottom:309.026667pt;}
.y2f{bottom:310.026667pt;}
.y74{bottom:311.026667pt;}
.y6e{bottom:313.026667pt;}
.y5f{bottom:314.026667pt;}
.y12{bottom:315.026667pt;}
.y6d{bottom:316.026667pt;}
.y8e{bottom:323.765333pt;}
.y4d{bottom:324.000000pt;}
.y4b{bottom:327.000000pt;}
.ya1{bottom:327.999792pt;}
.y2c{bottom:329.026667pt;}
.y7e{bottom:330.026667pt;}
.y3{bottom:340.026667pt;}
.y2b{bottom:343.026667pt;}
.y2e{bottom:344.026667pt;}
.yb{bottom:348.026667pt;}
.y38{bottom:349.026667pt;}
.y3a{bottom:351.026667pt;}
.ya0{bottom:352.999792pt;}
.y37{bottom:354.026667pt;}
.y7d{bottom:356.026667pt;}
.y4c{bottom:357.000000pt;}
.y2d{bottom:358.026667pt;}
.y1f{bottom:359.026667pt;}
.y39{bottom:363.026667pt;}
.ya{bottom:373.026667pt;}
.y73{bottom:378.026667pt;}
.y7c{bottom:381.026667pt;}
.y5e{bottom:382.026667pt;}
.y69{bottom:384.026667pt;}
.y1e{bottom:385.026667pt;}
.y8d{bottom:386.999708pt;}
.y2{bottom:389.026667pt;}
.y9f{bottom:391.999792pt;}
.y9{bottom:398.026667pt;}
.y2a{bottom:400.026667pt;}
.y7b{bottom:406.026667pt;}
.y4a{bottom:415.000000pt;}
.y9e{bottom:416.999792pt;}
.y72{bottom:417.026667pt;}
.y1d{bottom:418.026667pt;}
.y8c{bottom:419.765333pt;}
.y8{bottom:423.026667pt;}
.y68{bottom:425.026667pt;}
.y11{bottom:428.026667pt;}
.y7a{bottom:439.026667pt;}
.y49{bottom:440.000000pt;}
.y47{bottom:442.000000pt;}
.y9d{bottom:442.999792pt;}
.y7{bottom:448.026667pt;}
.y1c{bottom:458.026667pt;}
.y5d{bottom:460.026667pt;}
.y48{bottom:473.000000pt;}
.y29{bottom:473.026667pt;}
.y8b{bottom:482.999708pt;}
.y9c{bottom:484.999256pt;}
.y5c{bottom:485.026667pt;}
.y79{bottom:492.026667pt;}
.y67{bottom:498.026667pt;}
.y1b{bottom:508.026667pt;}
.y5b{bottom:510.026667pt;}
.y9b{bottom:510.999191pt;}
.y6{bottom:515.026667pt;}
.y8a{bottom:515.765333pt;}
.y28{bottom:522.026667pt;}
.y46{bottom:532.000000pt;}
.y1a{bottom:533.026667pt;}
.y9a{bottom:535.999233pt;}
.y5a{bottom:545.026667pt;}
.y45{bottom:558.000000pt;}
.y99{bottom:560.999792pt;}
.y78{bottom:564.026667pt;}
.y89{bottom:566.000000pt;}
.y19{bottom:566.026667pt;}
.y59{bottom:578.026667pt;}
.y44{bottom:583.000000pt;}
.y88{bottom:591.000000pt;}
.y18{bottom:607.026667pt;}
.y43{bottom:608.000000pt;}
.y87{bottom:616.000000pt;}
.y98{bottom:631.999792pt;}
.y86{bottom:641.000000pt;}
.y58{bottom:649.026667pt;}
.y17{bottom:657.026667pt;}
.y42{bottom:661.000000pt;}
.y85{bottom:694.000000pt;}
.y57{bottom:698.026667pt;}
.y41{bottom:710.000000pt;}
.h1a{height:3.000000pt;}
.h19{height:42.960000pt;}
.h9{height:44.856000pt;}
.h10{height:45.000000pt;}
.h1b{height:53.827200pt;}
.h3{height:57.072000pt;}
.h4{height:57.093750pt;}
.h22{height:58.850643pt;}
.h5{height:59.433600pt;}
.he{height:60.290000pt;}
.hb{height:60.346880pt;}
.h1c{height:60.535680pt;}
.h16{height:60.600586pt;}
.h18{height:61.375520pt;}
.hc{height:64.290000pt;}
.ha{height:68.498000pt;}
.h12{height:69.000000pt;}
.h11{height:72.346880pt;}
.h1d{height:74.784000pt;}
.hd{height:76.290000pt;}
.hf{height:93.000000pt;}
.h2{height:114.173000pt;}
.h17{height:149.606000pt;}
.h1{height:676.000000pt;}
.h0{height:676.160000pt;}
.h21{height:712.999792pt;}
.h1f{height:713.280000pt;}
.h20{height:713.333333pt;}
.h8{height:738.000000pt;}
.h6{height:738.560000pt;}
.h7{height:738.666667pt;}
.h1e{height:776.000000pt;}
.h15{height:780.000000pt;}
.h14{height:780.160000pt;}
.h13{height:792.000000pt;}
.w0{width:1200.000000pt;}
.x0{left:0.000000pt;}
.x3{left:61.078120pt;}
.x1{left:63.000000pt;}
.x2d{left:80.750000pt;}
.x1d{left:127.312533pt;}
.x1e{left:142.781320pt;}
.x21{left:218.453333pt;}
.x1f{left:219.797160pt;}
.x20{left:233.562760pt;}
.x22{left:256.031467pt;}
.x26{left:319.562667pt;}
.x32{left:321.688000pt;}
.x24{left:338.609573pt;}
.x25{left:347.985173pt;}
.x27{left:352.750800pt;}
.x23{left:387.234533pt;}
.x2b{left:417.530667pt;}
.x29{left:428.516440pt;}
.x2a{left:438.735253pt;}
.x2e{left:444.000000pt;}
.x28{left:459.297640pt;}
.x1b{left:482.964000pt;}
.x4{left:513.000000pt;}
.x1c{left:514.569200pt;}
.x37{left:523.906667pt;}
.x35{left:526.844000pt;}
.x5{left:537.702667pt;}
.x19{left:545.562667pt;}
.x17{left:548.500000pt;}
.x7{left:550.202733pt;}
.x6{left:567.108933pt;}
.x1a{left:593.750667pt;}
.x18{left:607.500000pt;}
.x36{left:609.469067pt;}
.x39{left:620.202667pt;}
.x2c{left:623.640000pt;}
.x34{left:625.625333pt;}
.x8{left:627.718440pt;}
.x38{left:643.828000pt;}
.xc{left:650.624667pt;}
.xb{left:718.484000pt;}
.xa{left:719.374907pt;}
.x9{left:731.984267pt;}
.x2{left:747.188000pt;}
.x30{left:807.250667pt;}
.x31{left:823.047067pt;}
.xd{left:845.202667pt;}
.x33{left:866.625333pt;}
.xe{left:879.500000pt;}
.xf{left:898.312587pt;}
.x12{left:899.984147pt;}
.x13{left:917.843533pt;}
.x2f{left:957.625333pt;}
.x10{left:962.609533pt;}
.x15{left:974.312000pt;}
.x16{left:1008.265147pt;}
.x14{left:1013.781533pt;}
.x11{left:1031.312680pt;}
}




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