
    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_968dcf581421b30bb7c9ed4b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_9901c29c114fa4fbfb57e154.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942383;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_ab2ae66e481f2d2a0b545581.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.738281;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_4f4ce81a21fe7e2079fa7a60.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.944824;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_9aef50e3278454f768fcec50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959473;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_297b8ff4546ff382634f8980.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_f61cd004b98df0eb9816c752.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.951000;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_6330d2346701849f4bbb55a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958496;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_8ffe810bd63d7f62eebc0824.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700195;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_6d5e924487c22de08f591b99.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_c5c3b7672384f1dba79c9453.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_f336a2da3dc77440037495fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958008;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_c2bcb4c7ba02d9987f4f27b9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.699707;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_e1318ac13a93d8fb56651fd1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.700195;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_5a66a4d36f8f8fc02e5f599e.woff2')format("woff");}.fff{font-family:fff;line-height:0.958496;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_b4fbe60a679e5766440694d9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.839844;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_ff066d3eaa026705c8bb03a5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.756348;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_c718ed89285edef8f4d51107.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.721000;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_22171bb36f3fd7832d3f53ed.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.943848;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_ab00f3a70b094c15bb32c40b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.941895;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_0f9e0bcdfba0c09f8df10a9d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.839844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_fab0776f852edfc7a791e202.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.719727;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:ff17;src:url('chunks/assets/font_c089d6cde67d2c92999286a3.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.948730;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_33d7f6d0d974f5c84f811ee8.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.839844;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_9f7d178645e7d1092893906d.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.722656;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_1b5eb0924074982d93ab36e1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.743164;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_cd5a10bf1ff43acd72d9d56e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.913086;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_b803b45abbc9dd5d2635e179.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.759277;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_90af8db88f560309fcb419b9.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.719727;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_b9499175a83512754ec7d71b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.738281;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_8c7eaf2bdb4ba9b4c406b64a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.957520;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;}
.m7{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.232950,0.090744,-0.090744,0.232950,0,0);-ms-transform:matrix(0.232950,0.090744,-0.090744,0.232950,0,0);-webkit-transform:matrix(0.232950,0.090744,-0.090744,0.232950,0,0);}
.m2{transform:matrix(0.238248,-0.075748,0.075748,0.238248,0,0);-ms-transform:matrix(0.238248,-0.075748,0.075748,0.238248,0,0);-webkit-transform:matrix(0.238248,-0.075748,0.075748,0.238248,0,0);}
.m3{transform:matrix(0.240190,0.069345,-0.069345,0.240190,0,0);-ms-transform:matrix(0.240190,0.069345,-0.069345,0.240190,0,0);-webkit-transform:matrix(0.240190,0.069345,-0.069345,0.240190,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);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-42.000000px;}
.v1{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:42.000000px;}
.ls38{letter-spacing:-24.174006px;}
.ls6{letter-spacing:-10.857600px;}
.ls25{letter-spacing:-9.322802px;}
.ls9{letter-spacing:-9.282002px;}
.ls22{letter-spacing:-9.139202px;}
.ls28{letter-spacing:-8.976000px;}
.ls26{letter-spacing:-7.938000px;}
.ls15{letter-spacing:-3.379200px;}
.ls3d{letter-spacing:-2.707200px;}
.ls33{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.345600px;}
.ls34{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.316800px;}
.ls7{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.278400px;}
.ls5{letter-spacing:-0.249600px;}
.lsa{letter-spacing:-0.230400px;}
.ls2a{letter-spacing:-0.204000px;}
.ls21{letter-spacing:-0.202800px;}
.ls30{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.153600px;}
.ls39{letter-spacing:-0.142800px;}
.ls37{letter-spacing:-0.129600px;}
.ls12{letter-spacing:-0.124800px;}
.ls23{letter-spacing:-0.115200px;}
.ls27{letter-spacing:-0.100800px;}
.ls4{letter-spacing:-0.063600px;}
.ls20{letter-spacing:-0.062400px;}
.ls2f{letter-spacing:-0.043200px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.024060px;}
.ls2{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.043200px;}
.lsb{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.062288px;}
.ls1f{letter-spacing:0.062400px;}
.ls1b{letter-spacing:0.124800px;}
.ls1c{letter-spacing:0.132013px;}
.ls24{letter-spacing:0.144000px;}
.ls35{letter-spacing:0.153600px;}
.ls0{letter-spacing:0.159000px;}
.ls32{letter-spacing:0.180000px;}
.ls3a{letter-spacing:0.186000px;}
.lsc{letter-spacing:0.187200px;}
.ls36{letter-spacing:0.201600px;}
.ls1d{letter-spacing:0.202800px;}
.lsd{letter-spacing:0.230400px;}
.ls1e{letter-spacing:0.265200px;}
.ls17{letter-spacing:0.278400px;}
.ls3{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.316800px;}
.ls2c{letter-spacing:0.348600px;}
.ls29{letter-spacing:0.360000px;}
.ls1a{letter-spacing:1.440004px;}
.ls3c{letter-spacing:2.267940px;}
.ls2b{letter-spacing:2.268000px;}
.ls3b{letter-spacing:12.095940px;}
.lse{letter-spacing:12.096000px;}
.ls31{letter-spacing:39.552003px;}
.lsf{letter-spacing:391.967880px;}
.ls2e{letter-spacing:391.968000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(106,54,230),0 0.015em rgb(106,54,230),0.015em 0 rgb(106,54,230),0 -0.015em  rgb(106,54,230);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(106,54,230);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11{word-spacing:-43.633187px;}
.wse{word-spacing:-43.492787px;}
.wsf{word-spacing:-43.430387px;}
.ws10{word-spacing:-43.367987px;}
.ws12{word-spacing:-43.165187px;}
.ws2{word-spacing:-40.320000px;}
.ws5{word-spacing:-40.262400px;}
.ws6{word-spacing:-40.219200px;}
.ws7{word-spacing:-40.075200px;}
.ws15{word-spacing:-40.032000px;}
.ws24{word-spacing:-39.988800px;}
.wsb{word-spacing:-39.801602px;}
.ws1a{word-spacing:-39.801600px;}
.ws3{word-spacing:-39.744000px;}
.ws0{word-spacing:-33.395999px;}
.ws18{word-spacing:-33.359999px;}
.ws1b{word-spacing:-33.179999px;}
.ws1c{word-spacing:-33.155999px;}
.ws20{word-spacing:-32.538008px;}
.ws1{word-spacing:-29.174400px;}
.wsc{word-spacing:-26.966397px;}
.ws1e{word-spacing:-26.841597px;}
.ws9{word-spacing:-26.687997px;}
.ws1d{word-spacing:-26.563197px;}
.wsa{word-spacing:-23.308798px;}
.ws17{word-spacing:-22.086000px;}
.ws14{word-spacing:-0.331200px;}
.wsd{word-spacing:-0.144000px;}
.ws1f{word-spacing:-0.120000px;}
.ws22{word-spacing:-0.108000px;}
.ws13{word-spacing:-0.096000px;}
.ws23{word-spacing:-0.064800px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:0.019200px;}
.ws8{word-spacing:0.028800px;}
.ws21{word-spacing:0.040800px;}
.ws19{word-spacing:0.237600px;}
._c{margin-left:-15.840000px;}
._b{margin-left:-11.351999px;}
._3{margin-left:-10.224000px;}
._4{margin-left:-7.420800px;}
._8{margin-left:-5.107199px;}
._10{margin-left:-2.649600px;}
._0{margin-left:-1.272000px;}
._1{width:1.272000px;}
._7{width:3.264000px;}
._a{width:7.884000px;}
._11{width:9.648000px;}
._2{width:11.088000px;}
._12{width:15.096004px;}
._e{width:67.967940px;}
._d{width:187.991940px;}
._9{width:283.968000px;}
._f{width:391.968000px;}
._5{width:1491.108000px;}
._6{width:1566.276000px;}
.fc11{color:rgb(255,216,0);}
.fcf{color:rgb(255,147,0);}
.fcd{color:rgb(214,95,6);}
.fc0{color:rgb(247,247,255);}
.fce{color:transparent;}
.fc1{color:rgb(252,221,222);}
.fc2{color:rgb(33,116,98);}
.fc3{color:rgb(181,214,202);}
.fcb{color:rgb(58,86,254);}
.fc4{color:rgb(12,116,99);}
.fc8{color:rgb(127,127,127);}
.fcc{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fc9{color:rgb(58,58,58);}
.fc7{color:rgb(106,54,230);}
.fc10{color:rgb(215,108,19);}
.fc6{color:rgb(255,221,222);}
.fca{color:rgb(205,166,37);}
.fsb{font-size:64.705882px;}
.fsc{font-size:65.999995px;}
.fsd{font-size:76.470581px;}
.fs5{font-size:95.999990px;}
.fsf{font-size:101.999995px;}
.fs7{font-size:108.000000px;}
.fs3{font-size:119.999995px;}
.fs8{font-size:143.999986px;}
.fs4{font-size:144.000000px;}
.fs9{font-size:144.000008px;}
.fsa{font-size:155.999952px;}
.fs2{font-size:191.999952px;}
.fs6{font-size:204.000048px;}
.fs1{font-size:216.000000px;}
.fs0{font-size:317.999952px;}
.fse{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:14.760000px;}
.y33{bottom:17.640000px;}
.yb{bottom:26.280000px;}
.yc{bottom:35.640000px;}
.y7f{bottom:37.080000px;}
.y39{bottom:43.200000px;}
.y2e{bottom:51.120000px;}
.y8f{bottom:52.560000px;}
.y59{bottom:57.240000px;}
.y23{bottom:61.920000px;}
.y29{bottom:65.520000px;}
.y19{bottom:67.320000px;}
.y3c{bottom:69.120000px;}
.y7d{bottom:74.520000px;}
.y77{bottom:84.240000px;}
.y58{bottom:85.680000px;}
.y4e{bottom:88.560000px;}
.y63{bottom:91.440000px;}
.y22{bottom:91.800000px;}
.y2d{bottom:92.880000px;}
.y28{bottom:93.960000px;}
.y1c{bottom:95.400000px;}
.y18{bottom:95.760000px;}
.y8e{bottom:97.560000px;}
.y3b{bottom:106.560000px;}
.y57{bottom:114.120000px;}
.y70{bottom:117.720000px;}
.y21{bottom:120.240000px;}
.y7c{bottom:121.320000px;}
.y27{bottom:122.400000px;}
.y1b{bottom:123.840000px;}
.y17{bottom:124.200000px;}
.y88{bottom:124.560000px;}
.y2c{bottom:135.000000px;}
.y62{bottom:137.880000px;}
.y8d{bottom:144.000000px;}
.y69{bottom:145.440000px;}
.y20{bottom:148.680000px;}
.y26{bottom:151.200000px;}
.y16{bottom:152.640000px;}
.y6f{bottom:156.600000px;}
.y3e{bottom:158.760000px;}
.y48{bottom:159.120000px;}
.y7b{bottom:160.200000px;}
.y65{bottom:163.080000px;}
.y87{bottom:171.000000px;}
.y61{bottom:176.760000px;}
.y1f{bottom:177.120000px;}
.y11{bottom:188.280000px;}
.y38{bottom:190.080000px;}
.y8c{bottom:190.440000px;}
.y7e{bottom:209.520000px;}
.y37{bottom:214.560000px;}
.y2b{bottom:218.880000px;}
.y10{bottom:231.840000px;}
.y8b{bottom:237.240000px;}
.ya{bottom:239.760000px;}
.y64{bottom:250.920000px;}
.y1e{bottom:251.280038px;}
.y68{bottom:253.440000px;}
.y47{bottom:253.800000px;}
.y7a{bottom:260.640000px;}
.y2a{bottom:261.000000px;}
.y86{bottom:264.240000px;}
.y6e{bottom:264.600000px;}
.yf{bottom:275.400000px;}
.y5f{bottom:277.560000px;}
.y72{bottom:279.000000px;}
.y1d{bottom:285.480038px;}
.y46{bottom:292.680000px;}
.y79{bottom:299.520000px;}
.y6d{bottom:303.840000px;}
.y85{bottom:310.680000px;}
.y5e{bottom:316.440000px;}
.y36{bottom:322.560000px;}
.y4{bottom:328.680000px;}
.y78{bottom:338.760000px;}
.y71{bottom:342.000000px;}
.y5d{bottom:355.320000px;}
.y84{bottom:357.120000px;}
.y67{bottom:361.440000px;}
.y35{bottom:361.800000px;}
.y25{bottom:364.320000px;}
.y83{bottom:396.000000px;}
.y34{bottom:400.680000px;}
.y5c{bottom:401.760000px;}
.y24{bottom:411.120000px;}
.y6c{bottom:411.840000px;}
.y53{bottom:418.320000px;}
.y3f{bottom:439.560000px;}
.y5b{bottom:441.000000px;}
.y6b{bottom:450.720000px;}
.y52{bottom:454.320000px;}
.y60{bottom:466.920000px;}
.y15{bottom:467.279963px;}
.y3{bottom:473.400000px;}
.y4d{bottom:474.039360px;}
.y4b{bottom:475.119360px;}
.y75{bottom:478.080000px;}
.y4c{bottom:479.520000px;}
.y14{bottom:480.599963px;}
.y4a{bottom:480.960000px;}
.y82{bottom:489.240000px;}
.y51{bottom:490.320000px;}
.y5a{bottom:502.920000px;}
.y32{bottom:508.680000px;}
.y13{bottom:519.120000px;}
.ye{bottom:521.640000px;}
.y9{bottom:523.440000px;}
.y8a{bottom:528.120000px;}
.y81{bottom:535.680000px;}
.y2{bottom:539.280000px;}
.y31{bottom:547.560000px;}
.y45{bottom:548.640000px;}
.y44{bottom:548.889840px;}
.y55{bottom:549.000000px;}
.y43{bottom:553.320000px;}
.y6a{bottom:558.720000px;}
.y8{bottom:567.000000px;}
.y74{bottom:571.320000px;}
.y1a{bottom:571.680000px;}
.y12{bottom:573.120000px;}
.y89{bottom:574.560000px;}
.y66{bottom:581.400000px;}
.y80{bottom:582.120000px;}
.y30{bottom:586.800000px;}
.y54{bottom:595.440000px;}
.y50{bottom:597.960000px;}
.y42{bottom:603.720000px;}
.y41{bottom:603.969840px;}
.y40{bottom:608.040000px;}
.y73{bottom:610.200000px;}
.y56{bottom:610.560000px;}
.y3d{bottom:621.000000px;}
.y1{bottom:624.960000px;}
.y2f{bottom:625.680000px;}
.y76{bottom:634.320000px;}
.y4f{bottom:642.240000px;}
.y7{bottom:646.560000px;}
.y49{bottom:648.360000px;}
.y6{bottom:690.120015px;}
.yd{bottom:739.440015px;}
.y5{bottom:758.160015px;}
.h12{height:45.654296px;}
.h13{height:47.501950px;}
.h15{height:53.955073px;}
.hf{height:67.103993px;}
.h11{height:69.515618px;}
.hb{height:70.734368px;}
.h7{height:70.943993px;}
.h1a{height:73.412106px;}
.h16{height:79.048828px;}
.h10{height:79.417969px;}
.h1b{height:80.208984px;}
.h4{height:87.246090px;}
.h14{height:87.304684px;}
.he{height:105.890625px;}
.h6{height:106.101563px;}
.h9{height:106.804677px;}
.h5{height:106.804688px;}
.hc{height:106.804694px;}
.ha{height:107.244150px;}
.h17{height:112.734368px;}
.h18{height:112.734488px;}
.hd{height:115.552699px;}
.h3{height:138.187465px;}
.h8{height:151.107457px;}
.h2{height:157.042969px;}
.h1{height:235.549769px;}
.h19{height:319.992188px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x4e{left:16.314570px;}
.x5{left:18.471135px;}
.x28{left:25.457835px;}
.x8{left:31.639845px;}
.x51{left:35.345670px;}
.x4d{left:38.717070px;}
.x9{left:47.799915px;}
.x11{left:49.717680px;}
.x52{left:62.345670px;}
.x43{left:74.799915px;}
.x27{left:76.717680px;}
.x34{left:79.037955px;}
.x53{left:89.345670px;}
.x46{left:93.685650px;}
.x4c{left:97.544580px;}
.x3d{left:101.799915px;}
.x22{left:103.717665px;}
.x54{left:116.345535px;}
.x35{left:122.162940px;}
.x44{left:128.799915px;}
.x45{left:155.799900px;}
.x38{left:211.230900px;}
.x31{left:230.363100px;}
.x1{left:238.218750px;}
.x6{left:251.445000px;}
.xc{left:271.347900px;}
.x3{left:279.003750px;}
.xa{left:293.191650px;}
.x36{left:294.625200px;}
.x2{left:300.191250px;}
.x32{left:303.863100px;}
.x33{left:320.175600px;}
.xd{left:326.097900px;}
.x37{left:337.750200px;}
.x2f{left:508.929900px;}
.x3b{left:520.758450px;}
.x50{left:525.375000px;}
.x3a{left:535.008450px;}
.x30{left:559.312200px;}
.x3c{left:566.598450px;}
.x4{left:570.937350px;}
.x2d{left:664.492200px;}
.x2e{left:707.429700px;}
.x1c{left:753.065231px;}
.x4b{left:758.799900px;}
.x18{left:785.675269px;}
.x1b{left:791.972531px;}
.x42{left:813.051750px;}
.x4f{left:839.799900px;}
.x7{left:876.523950px;}
.x47{left:891.888600px;}
.xb{left:896.777250px;}
.x29{left:901.586400px;}
.x10{left:903.808500px;}
.x48{left:918.888600px;}
.x2a{left:928.586400px;}
.x4a{left:943.507350px;}
.xe{left:964.933500px;}
.xf{left:972.336000px;}
.x49{left:976.319850px;}
.x41{left:1115.712900px;}
.x19{left:1129.416000px;}
.x23{left:1145.672400px;}
.x20{left:1148.109900px;}
.x3f{left:1153.062900px;}
.x13{left:1161.620989px;}
.x15{left:1166.849550px;}
.x39{left:1181.829900px;}
.x1d{left:1197.609900px;}
.x14{left:1213.162050px;}
.x26{left:1234.922250px;}
.x16{left:1236.224550px;}
.x40{left:1238.667900px;}
.x12{left:1247.295289px;}
.x2c{left:1255.591800px;}
.x25{left:1260.047400px;}
.x21{left:1270.734900px;}
.x1e{left:1277.297250px;}
.x1f{left:1278.609900px;}
.x1a{left:1282.356000px;}
.x24{left:1288.172400px;}
.x17{left:1301.474550px;}
.x2b{left:1350.058500px;}
.x3e{left:1358.188500px;}
@media print{
.v3{vertical-align:-37.333333pt;}
.v1{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:37.333333pt;}
.ls38{letter-spacing:-21.488005pt;}
.ls6{letter-spacing:-9.651200pt;}
.ls25{letter-spacing:-8.286935pt;}
.ls9{letter-spacing:-8.250669pt;}
.ls22{letter-spacing:-8.123735pt;}
.ls28{letter-spacing:-7.978666pt;}
.ls26{letter-spacing:-7.056000pt;}
.ls15{letter-spacing:-3.003733pt;}
.ls3d{letter-spacing:-2.406400pt;}
.ls33{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.307200pt;}
.ls34{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.281600pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.247467pt;}
.ls5{letter-spacing:-0.221867pt;}
.lsa{letter-spacing:-0.204800pt;}
.ls2a{letter-spacing:-0.181333pt;}
.ls21{letter-spacing:-0.180267pt;}
.ls30{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.136533pt;}
.ls39{letter-spacing:-0.126933pt;}
.ls37{letter-spacing:-0.115200pt;}
.ls12{letter-spacing:-0.110933pt;}
.ls23{letter-spacing:-0.102400pt;}
.ls27{letter-spacing:-0.089600pt;}
.ls4{letter-spacing:-0.056533pt;}
.ls20{letter-spacing:-0.055467pt;}
.ls2f{letter-spacing:-0.038400pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.021387pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.038400pt;}
.lsb{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.055367pt;}
.ls1f{letter-spacing:0.055467pt;}
.ls1b{letter-spacing:0.110933pt;}
.ls1c{letter-spacing:0.117345pt;}
.ls24{letter-spacing:0.128000pt;}
.ls35{letter-spacing:0.136533pt;}
.ls0{letter-spacing:0.141333pt;}
.ls32{letter-spacing:0.160000pt;}
.ls3a{letter-spacing:0.165333pt;}
.lsc{letter-spacing:0.166400pt;}
.ls36{letter-spacing:0.179200pt;}
.ls1d{letter-spacing:0.180267pt;}
.lsd{letter-spacing:0.204800pt;}
.ls1e{letter-spacing:0.235733pt;}
.ls17{letter-spacing:0.247467pt;}
.ls3{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.281600pt;}
.ls2c{letter-spacing:0.309867pt;}
.ls29{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:1.280004pt;}
.ls3c{letter-spacing:2.015947pt;}
.ls2b{letter-spacing:2.016000pt;}
.ls3b{letter-spacing:10.751947pt;}
.lse{letter-spacing:10.752000pt;}
.ls31{letter-spacing:35.157336pt;}
.lsf{letter-spacing:348.415893pt;}
.ls2e{letter-spacing:348.416000pt;}
.ws11{word-spacing:-38.785055pt;}
.wse{word-spacing:-38.660255pt;}
.wsf{word-spacing:-38.604788pt;}
.ws10{word-spacing:-38.549321pt;}
.ws12{word-spacing:-38.369055pt;}
.ws2{word-spacing:-35.840000pt;}
.ws5{word-spacing:-35.788800pt;}
.ws6{word-spacing:-35.750400pt;}
.ws7{word-spacing:-35.622400pt;}
.ws15{word-spacing:-35.584000pt;}
.ws24{word-spacing:-35.545600pt;}
.wsb{word-spacing:-35.379202pt;}
.ws1a{word-spacing:-35.379200pt;}
.ws3{word-spacing:-35.328000pt;}
.ws0{word-spacing:-29.685332pt;}
.ws18{word-spacing:-29.653332pt;}
.ws1b{word-spacing:-29.493332pt;}
.ws1c{word-spacing:-29.471999pt;}
.ws20{word-spacing:-28.922673pt;}
.ws1{word-spacing:-25.932800pt;}
.wsc{word-spacing:-23.970131pt;}
.ws1e{word-spacing:-23.859198pt;}
.ws9{word-spacing:-23.722664pt;}
.ws1d{word-spacing:-23.611731pt;}
.wsa{word-spacing:-20.718931pt;}
.ws17{word-spacing:-19.632000pt;}
.ws14{word-spacing:-0.294400pt;}
.wsd{word-spacing:-0.128000pt;}
.ws1f{word-spacing:-0.106667pt;}
.ws22{word-spacing:-0.096000pt;}
.ws13{word-spacing:-0.085333pt;}
.ws23{word-spacing:-0.057600pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:0.017067pt;}
.ws8{word-spacing:0.025600pt;}
.ws21{word-spacing:0.036267pt;}
.ws19{word-spacing:0.211200pt;}
._c{margin-left:-14.080000pt;}
._b{margin-left:-10.090666pt;}
._3{margin-left:-9.088000pt;}
._4{margin-left:-6.596266pt;}
._8{margin-left:-4.539733pt;}
._10{margin-left:-2.355200pt;}
._0{margin-left:-1.130666pt;}
._1{width:1.130666pt;}
._7{width:2.901333pt;}
._a{width:7.008000pt;}
._11{width:8.576000pt;}
._2{width:9.856000pt;}
._12{width:13.418670pt;}
._e{width:60.415947pt;}
._d{width:167.103947pt;}
._9{width:252.416000pt;}
._f{width:348.416000pt;}
._5{width:1325.429334pt;}
._6{width:1392.245333pt;}
.fsb{font-size:57.516339pt;}
.fsc{font-size:58.666662pt;}
.fsd{font-size:67.973850pt;}
.fs5{font-size:85.333325pt;}
.fsf{font-size:90.666662pt;}
.fs7{font-size:96.000000pt;}
.fs3{font-size:106.666662pt;}
.fs8{font-size:127.999988pt;}
.fs4{font-size:128.000000pt;}
.fs9{font-size:128.000008pt;}
.fsa{font-size:138.666624pt;}
.fs2{font-size:170.666624pt;}
.fs6{font-size:181.333376pt;}
.fs1{font-size:192.000000pt;}
.fs0{font-size:282.666624pt;}
.fse{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:13.120000pt;}
.y33{bottom:15.680000pt;}
.yb{bottom:23.360000pt;}
.yc{bottom:31.680000pt;}
.y7f{bottom:32.960000pt;}
.y39{bottom:38.400000pt;}
.y2e{bottom:45.440000pt;}
.y8f{bottom:46.720000pt;}
.y59{bottom:50.880000pt;}
.y23{bottom:55.040000pt;}
.y29{bottom:58.240000pt;}
.y19{bottom:59.840000pt;}
.y3c{bottom:61.440000pt;}
.y7d{bottom:66.240000pt;}
.y77{bottom:74.880000pt;}
.y58{bottom:76.160000pt;}
.y4e{bottom:78.720000pt;}
.y63{bottom:81.280000pt;}
.y22{bottom:81.600000pt;}
.y2d{bottom:82.560000pt;}
.y28{bottom:83.520000pt;}
.y1c{bottom:84.800000pt;}
.y18{bottom:85.120000pt;}
.y8e{bottom:86.720000pt;}
.y3b{bottom:94.720000pt;}
.y57{bottom:101.440000pt;}
.y70{bottom:104.640000pt;}
.y21{bottom:106.880000pt;}
.y7c{bottom:107.840000pt;}
.y27{bottom:108.800000pt;}
.y1b{bottom:110.080000pt;}
.y17{bottom:110.400000pt;}
.y88{bottom:110.720000pt;}
.y2c{bottom:120.000000pt;}
.y62{bottom:122.560000pt;}
.y8d{bottom:128.000000pt;}
.y69{bottom:129.280000pt;}
.y20{bottom:132.160000pt;}
.y26{bottom:134.400000pt;}
.y16{bottom:135.680000pt;}
.y6f{bottom:139.200000pt;}
.y3e{bottom:141.120000pt;}
.y48{bottom:141.440000pt;}
.y7b{bottom:142.400000pt;}
.y65{bottom:144.960000pt;}
.y87{bottom:152.000000pt;}
.y61{bottom:157.120000pt;}
.y1f{bottom:157.440000pt;}
.y11{bottom:167.360000pt;}
.y38{bottom:168.960000pt;}
.y8c{bottom:169.280000pt;}
.y7e{bottom:186.240000pt;}
.y37{bottom:190.720000pt;}
.y2b{bottom:194.560000pt;}
.y10{bottom:206.080000pt;}
.y8b{bottom:210.880000pt;}
.ya{bottom:213.120000pt;}
.y64{bottom:223.040000pt;}
.y1e{bottom:223.360033pt;}
.y68{bottom:225.280000pt;}
.y47{bottom:225.600000pt;}
.y7a{bottom:231.680000pt;}
.y2a{bottom:232.000000pt;}
.y86{bottom:234.880000pt;}
.y6e{bottom:235.200000pt;}
.yf{bottom:244.800000pt;}
.y5f{bottom:246.720000pt;}
.y72{bottom:248.000000pt;}
.y1d{bottom:253.760033pt;}
.y46{bottom:260.160000pt;}
.y79{bottom:266.240000pt;}
.y6d{bottom:270.080000pt;}
.y85{bottom:276.160000pt;}
.y5e{bottom:281.280000pt;}
.y36{bottom:286.720000pt;}
.y4{bottom:292.160000pt;}
.y78{bottom:301.120000pt;}
.y71{bottom:304.000000pt;}
.y5d{bottom:315.840000pt;}
.y84{bottom:317.440000pt;}
.y67{bottom:321.280000pt;}
.y35{bottom:321.600000pt;}
.y25{bottom:323.840000pt;}
.y83{bottom:352.000000pt;}
.y34{bottom:356.160000pt;}
.y5c{bottom:357.120000pt;}
.y24{bottom:365.440000pt;}
.y6c{bottom:366.080000pt;}
.y53{bottom:371.840000pt;}
.y3f{bottom:390.720000pt;}
.y5b{bottom:392.000000pt;}
.y6b{bottom:400.640000pt;}
.y52{bottom:403.840000pt;}
.y60{bottom:415.040000pt;}
.y15{bottom:415.359967pt;}
.y3{bottom:420.800000pt;}
.y4d{bottom:421.368320pt;}
.y4b{bottom:422.328320pt;}
.y75{bottom:424.960000pt;}
.y4c{bottom:426.240000pt;}
.y14{bottom:427.199967pt;}
.y4a{bottom:427.520000pt;}
.y82{bottom:434.880000pt;}
.y51{bottom:435.840000pt;}
.y5a{bottom:447.040000pt;}
.y32{bottom:452.160000pt;}
.y13{bottom:461.440000pt;}
.ye{bottom:463.680000pt;}
.y9{bottom:465.280000pt;}
.y8a{bottom:469.440000pt;}
.y81{bottom:476.160000pt;}
.y2{bottom:479.360000pt;}
.y31{bottom:486.720000pt;}
.y45{bottom:487.680000pt;}
.y44{bottom:487.902080pt;}
.y55{bottom:488.000000pt;}
.y43{bottom:491.840000pt;}
.y6a{bottom:496.640000pt;}
.y8{bottom:504.000000pt;}
.y74{bottom:507.840000pt;}
.y1a{bottom:508.160000pt;}
.y12{bottom:509.440000pt;}
.y89{bottom:510.720000pt;}
.y66{bottom:516.800000pt;}
.y80{bottom:517.440000pt;}
.y30{bottom:521.600000pt;}
.y54{bottom:529.280000pt;}
.y50{bottom:531.520000pt;}
.y42{bottom:536.640000pt;}
.y41{bottom:536.862080pt;}
.y40{bottom:540.480000pt;}
.y73{bottom:542.400000pt;}
.y56{bottom:542.720000pt;}
.y3d{bottom:552.000000pt;}
.y1{bottom:555.520000pt;}
.y2f{bottom:556.160000pt;}
.y76{bottom:563.840000pt;}
.y4f{bottom:570.880000pt;}
.y7{bottom:574.720000pt;}
.y49{bottom:576.320000pt;}
.y6{bottom:613.440013pt;}
.yd{bottom:657.280013pt;}
.y5{bottom:673.920013pt;}
.h12{height:40.581597pt;}
.h13{height:42.223955pt;}
.h15{height:47.960065pt;}
.hf{height:59.647994pt;}
.h11{height:61.791660pt;}
.hb{height:62.874994pt;}
.h7{height:63.061327pt;}
.h1a{height:65.255205pt;}
.h16{height:70.265625pt;}
.h10{height:70.593750pt;}
.h1b{height:71.296875pt;}
.h4{height:77.552080pt;}
.h14{height:77.604164pt;}
.he{height:94.125000pt;}
.h6{height:94.312500pt;}
.h9{height:94.937491pt;}
.h5{height:94.937500pt;}
.hc{height:94.937506pt;}
.ha{height:95.328133pt;}
.h17{height:100.208327pt;}
.h18{height:100.208434pt;}
.hd{height:102.713510pt;}
.h3{height:122.833303pt;}
.h8{height:134.317740pt;}
.h2{height:139.593750pt;}
.h1{height:209.377573pt;}
.h19{height:284.437500pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:14.501840pt;}
.x5{left:16.418787pt;}
.x28{left:22.629187pt;}
.x8{left:28.124307pt;}
.x51{left:31.418373pt;}
.x4d{left:34.415173pt;}
.x9{left:42.488813pt;}
.x11{left:44.193493pt;}
.x52{left:55.418373pt;}
.x43{left:66.488813pt;}
.x27{left:68.193493pt;}
.x34{left:70.255960pt;}
.x53{left:79.418373pt;}
.x46{left:83.276133pt;}
.x4c{left:86.706293pt;}
.x3d{left:90.488813pt;}
.x22{left:92.193480pt;}
.x54{left:103.418253pt;}
.x35{left:108.589280pt;}
.x44{left:114.488813pt;}
.x45{left:138.488800pt;}
.x38{left:187.760800pt;}
.x31{left:204.767200pt;}
.x1{left:211.750000pt;}
.x6{left:223.506667pt;}
.xc{left:241.198133pt;}
.x3{left:248.003333pt;}
.xa{left:260.614800pt;}
.x36{left:261.889067pt;}
.x2{left:266.836667pt;}
.x32{left:270.100533pt;}
.x33{left:284.600533pt;}
.xd{left:289.864800pt;}
.x37{left:300.222400pt;}
.x2f{left:452.382133pt;}
.x3b{left:462.896400pt;}
.x50{left:467.000000pt;}
.x3a{left:475.563067pt;}
.x30{left:497.166400pt;}
.x3c{left:503.643067pt;}
.x4{left:507.499867pt;}
.x2d{left:590.659733pt;}
.x2e{left:628.826400pt;}
.x1c{left:669.391317pt;}
.x4b{left:674.488800pt;}
.x18{left:698.378017pt;}
.x1b{left:703.975583pt;}
.x42{left:722.712667pt;}
.x4f{left:746.488800pt;}
.x7{left:779.132400pt;}
.x47{left:792.789867pt;}
.xb{left:797.135333pt;}
.x29{left:801.410133pt;}
.x10{left:803.385333pt;}
.x48{left:816.789867pt;}
.x2a{left:825.410133pt;}
.x4a{left:838.673200pt;}
.xe{left:857.718667pt;}
.xf{left:864.298667pt;}
.x49{left:867.839867pt;}
.x41{left:991.744800pt;}
.x19{left:1003.925333pt;}
.x23{left:1018.375467pt;}
.x20{left:1020.542133pt;}
.x3f{left:1024.944800pt;}
.x13{left:1032.551990pt;}
.x15{left:1037.199600pt;}
.x39{left:1050.515467pt;}
.x1d{left:1064.542133pt;}
.x14{left:1078.366267pt;}
.x26{left:1097.708667pt;}
.x16{left:1098.866267pt;}
.x40{left:1101.038133pt;}
.x12{left:1108.706923pt;}
.x2c{left:1116.081600pt;}
.x25{left:1120.042133pt;}
.x21{left:1129.542133pt;}
.x1e{left:1135.375333pt;}
.x1f{left:1136.542133pt;}
.x1a{left:1139.872000pt;}
.x24{left:1145.042133pt;}
.x17{left:1156.866267pt;}
.x2b{left:1200.052000pt;}
.x3e{left:1207.278667pt;}
}




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