
    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_eb5fcedad92a069a06f1c778.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.739746;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_0eafd1b6b5eb04bd16a5eef9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.775879;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_925af34408a3b84d24ba3294.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.963379;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_3deedaa54bcb84c235da0ddf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.953125;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_7cb5f95a678342d3d39d6ba3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961914;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_c1e6ee5d6235372e9531f816.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_509d5064a131945161d6967d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963379;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_1e07112cfe9d3603258f8b69.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953125;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_3eae73da47b83b7d630da9ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.963379;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_af9f3b42b6a64fcda151a7dd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_3818f18796c5db0abfe759b5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969238;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_8ffeac29a2b56c22afa2852c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_9b2393c174cc01c7d6627c94.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740234;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_2741273b16718533f0d071fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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_07d37bcd02cc54669b7a2077.woff2')format("woff");}.fff{font-family:fff;line-height:0.979980;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_630b51eddf454b14cd581fb4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.811035;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_bfc6a5856aa13fcaf30ae708.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.666504;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_ef026a6f7ddba59034abd3b5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.868652;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_244abdbc00462362f5efd521.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.868652;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_5c3fb2ef77887f9c04a75667.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.957031;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_80aa1d0f914c1eb07ba312d1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.810059;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_bbc5f73dcb056e90583513b6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910156;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_c4c895cacb59e1c6509f6785.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.202148;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_095018ec73315b2b7d95aaae.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.983398;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_73d89ab95e00616847b6de7b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.983398;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_36760dc54e033830af7372e6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.172852;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_1a6aedfaf9a271377617c569.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.172852;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;}
.m0{transform:matrix(0.242573,0.000000,-0.060483,0.242573,0,0);-ms-transform:matrix(0.242573,0.000000,-0.060483,0.242573,0,0);-webkit-transform:matrix(0.242573,0.000000,-0.060483,0.242573,0,0);}
.m8{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249985,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249988,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249989,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249990,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249992,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-72.000000px;}
.v4{vertical-align:-32.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.192144px;}
.v5{vertical-align:32.400000px;}
.v2{vertical-align:72.000000px;}
.ls2c{letter-spacing:-1.758000px;}
.ls1f{letter-spacing:-1.482000px;}
.ls19{letter-spacing:-1.440000px;}
.ls2e{letter-spacing:-1.122000px;}
.lsf{letter-spacing:-0.606000px;}
.ls22{letter-spacing:-0.424800px;}
.ls26{letter-spacing:-0.414000px;}
.ls15{letter-spacing:-0.396000px;}
.ls31{letter-spacing:-0.371400px;}
.ls14{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.216000px;}
.ls2f{letter-spacing:-0.215400px;}
.ls11{letter-spacing:-0.180000px;}
.ls2b{letter-spacing:-0.165600px;}
.ls30{letter-spacing:-0.165000px;}
.ls24{letter-spacing:-0.114600px;}
.ls1c{letter-spacing:-0.094200px;}
.ls13{letter-spacing:-0.036000px;}
.ls1b{letter-spacing:-0.000006px;}
.ls1{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.100800px;}
.ls1a{letter-spacing:0.144000px;}
.ls29{letter-spacing:0.147000px;}
.lsd{letter-spacing:0.147600px;}
.ls25{letter-spacing:0.150600px;}
.ls16{letter-spacing:0.180000px;}
.ls32{letter-spacing:0.205200px;}
.ls0{letter-spacing:0.207315px;}
.ls7{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.230400px;}
.ls9{letter-spacing:0.246240px;}
.ls3{letter-spacing:0.248112px;}
.ls23{letter-spacing:0.283200px;}
.ls1d{letter-spacing:0.295200px;}
.ls2a{letter-spacing:0.299400px;}
.ls28{letter-spacing:0.306000px;}
.ls12{letter-spacing:0.321000px;}
.ls4{letter-spacing:0.321120px;}
.ls27{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.396000px;}
.ls5{letter-spacing:0.441120px;}
.lse{letter-spacing:0.459600px;}
.ls6{letter-spacing:0.501120px;}
.lsb{letter-spacing:0.624000px;}
.lsc{letter-spacing:0.695520px;}
.ls1e{letter-spacing:0.822000px;}
.ls20{letter-spacing:0.870000px;}
.ls8{letter-spacing:0.936000px;}
.lsa{letter-spacing:7.446240px;}
.ls2{letter-spacing:27.240480px;}
.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;}
}
.ws3f{word-spacing:-95.760000px;}
.ws1b{word-spacing:-54.185760px;}
.ws2c{word-spacing:-38.783760px;}
.ws2a{word-spacing:-38.735760px;}
.ws30{word-spacing:-38.537760px;}
.ws29{word-spacing:-38.208960px;}
.ws2f{word-spacing:-38.196960px;}
.ws32{word-spacing:-38.064360px;}
.ws2d{word-spacing:-38.014560px;}
.ws33{word-spacing:-37.913760px;}
.ws28{word-spacing:-37.819560px;}
.ws31{word-spacing:-37.799160px;}
.ws2e{word-spacing:-37.488960px;}
.ws35{word-spacing:-36.972000px;}
.ws3a{word-spacing:-36.943944px;}
.ws38{word-spacing:-36.918000px;}
.ws3d{word-spacing:-36.874944px;}
.ws36{word-spacing:-36.792000px;}
.ws39{word-spacing:-36.791544px;}
.ws37{word-spacing:-36.756000px;}
.ws3b{word-spacing:-36.478944px;}
.ws2b{word-spacing:-36.431760px;}
.ws34{word-spacing:-36.198000px;}
.ws19{word-spacing:-36.156384px;}
.ws1a{word-spacing:-36.123840px;}
.ws3c{word-spacing:-34.886544px;}
.ws25{word-spacing:-32.688000px;}
.ws27{word-spacing:-32.544000px;}
.ws26{word-spacing:-32.543994px;}
.ws23{word-spacing:-32.256000px;}
.ws24{word-spacing:-31.104000px;}
.ws2{word-spacing:-28.678717px;}
.ws0{word-spacing:-27.585694px;}
.ws18{word-spacing:-27.174240px;}
.ws22{word-spacing:-24.804000px;}
.ws21{word-spacing:-24.624000px;}
.ws20{word-spacing:-24.588000px;}
.ws1e{word-spacing:-24.408000px;}
.wsd{word-spacing:-24.377425px;}
.ws1c{word-spacing:-24.372000px;}
.ws1d{word-spacing:-24.048000px;}
.ws1f{word-spacing:-24.012000px;}
.ws43{word-spacing:-22.101360px;}
.ws47{word-spacing:-21.936960px;}
.ws46{word-spacing:-21.846960px;}
.ws41{word-spacing:-21.789360px;}
.ws3e{word-spacing:-21.641760px;}
.ws12{word-spacing:-21.509406px;}
.ws44{word-spacing:-21.476760px;}
.ws42{word-spacing:-21.426360px;}
.ws45{word-spacing:-21.270360px;}
.ws40{word-spacing:-20.519760px;}
.ws4{word-spacing:-16.630688px;}
.ws6{word-spacing:-16.484550px;}
.ws7{word-spacing:-15.773916px;}
.ws3{word-spacing:-15.190189px;}
.ws8{word-spacing:-15.056145px;}
.ws9{word-spacing:-14.329828px;}
.wsc{word-spacing:-11.655255px;}
.ws1{word-spacing:-9.712525px;}
.ws13{word-spacing:-8.225126px;}
.wsb{word-spacing:-8.190567px;}
.ws5{word-spacing:-7.284394px;}
.wsa{word-spacing:-5.834214px;}
.ws16{word-spacing:-2.296080px;}
.ws15{word-spacing:0.000000px;}
.ws17{word-spacing:0.933120px;}
.ws14{word-spacing:41.540806px;}
.wse{word-spacing:166.497815px;}
.ws10{word-spacing:175.273689px;}
.wsf{word-spacing:210.425936px;}
.ws11{word-spacing:1164.863405px;}
._1c{margin-left:-18.683201px;}
._2b{margin-left:-15.587224px;}
._1d{margin-left:-13.646610px;}
._24{margin-left:-11.520000px;}
._1a{margin-left:-8.661465px;}
._18{margin-left:-7.119130px;}
._19{margin-left:-5.843832px;}
._2{margin-left:-4.015020px;}
._3{margin-left:-2.748925px;}
._0{margin-left:-1.268942px;}
._4{width:1.008924px;}
._1e{width:2.130096px;}
._23{width:3.854845px;}
._1f{width:5.316000px;}
._21{width:6.474244px;}
._20{width:7.488000px;}
._22{width:9.233033px;}
._25{width:10.394099px;}
._5{width:11.440792px;}
._8{width:12.449716px;}
._7{width:13.455932px;}
._26{width:14.511187px;}
._2a{width:15.584659px;}
._b{width:18.190093px;}
._29{width:23.900942px;}
._a{width:26.069513px;}
._1b{width:27.202868px;}
._2d{width:28.309012px;}
._28{width:29.666923px;}
._27{width:30.708925px;}
._9{width:32.634968px;}
._6{width:33.706188px;}
._2f{width:40.737600px;}
._2e{width:42.608942px;}
._2c{width:44.677751px;}
._30{width:51.856320px;}
._31{width:61.202499px;}
._1{width:78.836356px;}
._17{width:116.387813px;}
._11{width:223.224084px;}
._c{width:225.491185px;}
._13{width:257.913161px;}
._15{width:265.884579px;}
._f{width:270.833196px;}
._12{width:274.684829px;}
._16{width:294.893715px;}
._14{width:298.867235px;}
._d{width:300.622410px;}
._e{width:402.471293px;}
._10{width:414.172458px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(46,39,154);}
.fc4{color:rgb(34,25,112);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:21.509406px;}
.fsa{font-size:24.377425px;}
.fs1{font-size:24.855183px;}
.fs0{font-size:27.585694px;}
.fs6{font-size:28.678717px;}
.fs7{font-size:30.591221px;}
.fs3{font-size:32.502251px;}
.fsc{font-size:34.414755px;}
.fs2{font-size:38.238289px;}
.fs9{font-size:42.061823px;}
.fs4{font-size:45.886832px;}
.fs8{font-size:53.533900px;}
.fsd{font-size:59.644476px;}
.fs5{font-size:65.005976px;}
.fs15{font-size:72.000000px;}
.fs1b{font-size:95.760000px;}
.fs1c{font-size:95.904000px;}
.fs16{font-size:108.000000px;}
.fsf{font-size:120.240000px;}
.fs10{font-size:120.384000px;}
.fs17{font-size:144.000000px;}
.fs14{font-size:159.840000px;}
.fs12{font-size:159.984000px;}
.fs19{font-size:162.000000px;}
.fs1a{font-size:162.144000px;}
.fs18{font-size:167.760000px;}
.fs13{font-size:239.760000px;}
.fs11{font-size:239.904000px;}
.fse{font-size:378.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:1.256996px;}
.y44{bottom:1.439531px;}
.y2e{bottom:1.797801px;}
.y3c{bottom:1.802888px;}
.y56{bottom:1.978677px;}
.y2{bottom:2.159725px;}
.y5d{bottom:3.057998px;}
.y40{bottom:3.058328px;}
.yb{bottom:3.602609px;}
.y5c{bottom:3.762323px;}
.y5b{bottom:4.499547px;}
.y7c{bottom:24.084000px;}
.y61{bottom:81.396000px;}
.y60{bottom:117.396000px;}
.y54{bottom:141.317787px;}
.y53{bottom:160.006007px;}
.y37{bottom:230.057265px;}
.y7b{bottom:231.510000px;}
.y36{bottom:249.855350px;}
.y35{bottom:269.653533px;}
.y7a{bottom:280.110000px;}
.y34{bottom:281.893397px;}
.y33{bottom:294.133359px;}
.y32{bottom:306.194702px;}
.y31{bottom:318.434664px;}
.y79{bottom:328.710000px;}
.y30{bottom:330.674528px;}
.y2f{bottom:342.914490px;}
.y2d{bottom:360.914775px;}
.y2c{bottom:374.774016px;}
.y78{bottom:377.850000px;}
.y2b{bottom:387.013880px;}
.y2a{bottom:399.253842px;}
.y29{bottom:411.493803px;}
.y28{bottom:423.550207px;}
.y27{bottom:443.531850px;}
.y26{bottom:455.593194px;}
.y25{bottom:467.833107px;}
.y24{bottom:480.073019px;}
.y23{bottom:492.129471px;}
.y77{bottom:496.650000px;}
.y22{bottom:512.111066px;}
.y21{bottom:524.172459px;}
.y20{bottom:536.412371px;}
.y76{bottom:547.050000px;}
.y1f{bottom:548.652333px;}
.y1e{bottom:560.708736px;}
.y1d{bottom:572.948649px;}
.y1c{bottom:594.184045px;}
.y75{bottom:597.450000px;}
.y1b{bottom:604.984109px;}
.y1a{bottom:615.784130px;}
.y52{bottom:618.472525px;}
.y19{bottom:626.402529px;}
.y51{bottom:629.093306px;}
.y18{bottom:637.202593px;}
.y50{bottom:639.893000px;}
.y17{bottom:648.002614px;}
.y4f{bottom:650.691027px;}
.y74{bottom:656.850000px;}
.y16{bottom:658.802635px;}
.y4e{bottom:661.493989px;}
.y3e{bottom:664.750539px;}
.y15{bottom:669.425436px;}
.y4d{bottom:672.114771px;}
.y14{bottom:680.225457px;}
.y3d{bottom:683.103420px;}
.y13{bottom:691.025478px;}
.y4c{bottom:693.712491px;}
.y3b{bottom:695.522613px;}
.y12{bottom:701.825542px;}
.y49{bottom:703.255124px;}
.y4b{bottom:704.512121px;}
.y3a{bottom:711.725529px;}
.y11{bottom:712.988649px;}
.y48{bottom:716.030223px;}
.y10{bottom:725.228562px;}
.y47{bottom:728.273630px;}
.yf{bottom:737.468474px;}
.y46{bottom:740.511443px;}
.ye{bottom:749.529867px;}
.y45{bottom:752.572570px;}
.yd{bottom:761.769779px;}
.y43{bottom:763.372705px;}
.yc{bottom:782.278602px;}
.ya{bottom:801.355094px;}
.y9{bottom:827.636804px;}
.y39{bottom:850.863829px;}
.y8{bottom:853.556299px;}
.y38{bottom:868.494593px;}
.y7{bottom:876.424853px;}
.y89{bottom:881.070000px;}
.y88{bottom:909.870000px;}
.y42{bottom:914.221850px;}
.y41{bottom:928.619931px;}
.y87{bottom:938.670000px;}
.y3f{bottom:943.022856px;}
.y86{bottom:967.470000px;}
.y85{bottom:996.270000px;}
.y84{bottom:1025.070000px;}
.y83{bottom:1053.870000px;}
.y82{bottom:1082.670000px;}
.y4{bottom:1097.459313px;}
.y81{bottom:1111.470000px;}
.y6{bottom:1129.139412px;}
.y80{bottom:1140.270000px;}
.y5{bottom:1142.638566px;}
.y3{bottom:1159.020474px;}
.y7f{bottom:1169.070000px;}
.y58{bottom:1169.638428px;}
.y55{bottom:1178.099282px;}
.y57{bottom:1178.279923px;}
.y1{bottom:1178.640988px;}
.y59{bottom:1180.077959px;}
.y7e{bottom:1197.870000px;}
.y7d{bottom:1226.700000px;}
.y5a{bottom:1241.277873px;}
.y73{bottom:1671.765000px;}
.y6e{bottom:1671.945000px;}
.y72{bottom:1714.965000px;}
.y6d{bottom:1715.145000px;}
.y71{bottom:1758.165000px;}
.y6c{bottom:1758.390000px;}
.y70{bottom:1801.365000px;}
.y6b{bottom:1801.590000px;}
.y6f{bottom:1844.565000px;}
.y6a{bottom:1844.790000px;}
.y69{bottom:1970.385000px;}
.y68{bottom:2004.945000px;}
.y67{bottom:2039.685000px;}
.y66{bottom:2082.345000px;}
.y65{bottom:2151.285000px;}
.y64{bottom:2223.285000px;}
.y63{bottom:2295.285000px;}
.y62{bottom:2367.330000px;}
.y5f{bottom:2499.510000px;}
.y5e{bottom:2612.910000px;}
.h14{height:5.938889px;}
.h12{height:6.840543px;}
.hd{height:8.277341px;}
.h2{height:8.821872px;}
.h16{height:9.721160px;}
.he{height:10.619154px;}
.hf{height:15.115227px;}
.h15{height:15.375865px;}
.h13{height:17.426050px;}
.h19{height:18.005468px;}
.h9{height:18.179751px;}
.h4{height:18.362252px;}
.h1b{height:18.538806px;}
.h3{height:20.137018px;}
.hb{height:21.228972px;}
.ha{height:23.726008px;}
.h6{height:24.011673px;}
.hc{height:24.186245px;}
.h17{height:26.046323px;}
.h5{height:28.305296px;}
.h11{height:30.704309px;}
.h18{height:33.238468px;}
.h7{height:33.496491px;}
.h10{height:40.516379px;}
.h1a{height:41.413303px;}
.h8{height:48.119658px;}
.h24{height:75.019922px;}
.h2e{height:77.056875px;}
.h2c{height:95.245664px;}
.h20{height:96.755625px;}
.h21{height:96.871500px;}
.h2d{height:98.198578px;}
.h25{height:107.419922px;}
.h27{height:143.226562px;}
.h26{height:147.445312px;}
.h2a{height:161.129883px;}
.h2b{height:161.273109px;}
.h29{height:166.858945px;}
.h28{height:171.773789px;}
.h23{height:238.472227px;}
.h22{height:238.615453px;}
.h1f{height:387.043945px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.h1d{height:2976.000000px;}
.h1e{height:2976.299817px;}
.h1c{height:2976.300000px;}
.wc{width:1.979614px;}
.wb{width:2.698508px;}
.w7{width:2.698853px;}
.wa{width:2.700361px;}
.w8{width:2.702195px;}
.w9{width:8.099157px;}
.w2{width:23.041301px;}
.w4{width:27.720082px;}
.wd{width:29.523503px;}
.w14{width:34.196320px;}
.w12{width:39.600763px;}
.w5{width:46.261575px;}
.w11{width:57.598737px;}
.wf{width:75.061119px;}
.w10{width:84.594416px;}
.we{width:87.839580px;}
.w15{width:112.141835px;}
.w3{width:370.982249px;}
.w6{width:405.362564px;}
.w13{width:886.681799px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.w17{width:3826.500000px;}
.w18{width:3826.619943px;}
.w16{width:3826.620000px;}
.x0{left:0.000000px;}
.x28{left:2.162297px;}
.x6{left:116.815538px;}
.x7{left:119.158290px;}
.xa{left:123.480073px;}
.x1b{left:126.722457px;}
.x32{left:130.607943px;}
.x34{left:139.067943px;}
.x3{left:144.358914px;}
.x12{left:146.877600px;}
.x35{left:151.409943px;}
.x10{left:161.817994px;}
.xb{left:165.418438px;}
.x1d{left:170.457480px;}
.x1c{left:174.960781px;}
.x13{left:183.599243px;}
.x30{left:186.764943px;}
.x11{left:188.636898px;}
.x2e{left:199.544943px;}
.x16{left:205.194386px;}
.x2a{left:206.924943px;}
.xc{left:211.316397px;}
.x1e{left:224.459286px;}
.x2f{left:285.224943px;}
.xd{left:290.336643px;}
.x1a{left:291.411871px;}
.x1f{left:301.137205px;}
.x20{left:323.459424px;}
.x2{left:368.634034px;}
.x18{left:369.890743px;}
.xe{left:387.535805px;}
.x1{left:403.381073px;}
.x21{left:408.418798px;}
.x17{left:417.052562px;}
.x15{left:430.549171px;}
.x19{left:435.768979px;}
.xf{left:443.876553px;}
.x4{left:462.236282px;}
.x14{left:473.570955px;}
.x23{left:498.960002px;}
.x22{left:502.740758px;}
.x5{left:503.996537px;}
.x8{left:511.932345px;}
.x9{left:514.965924px;}
.x37{left:559.769943px;}
.x25{left:597.057513px;}
.x24{left:606.596065px;}
.x27{left:673.557414px;}
.x26{left:683.274523px;}
.x2b{left:690.629943px;}
.x29{left:778.499623px;}
.x2d{left:1134.074943px;}
.x31{left:1222.349943px;}
.x2c{left:1267.814943px;}
.x36{left:1728.719943px;}
.x33{left:2037.524943px;}
@media print{
.v3{vertical-align:-64.000000pt;}
.v4{vertical-align:-28.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.393017pt;}
.v5{vertical-align:28.800000pt;}
.v2{vertical-align:64.000000pt;}
.ls2c{letter-spacing:-1.562667pt;}
.ls1f{letter-spacing:-1.317333pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls2e{letter-spacing:-0.997333pt;}
.lsf{letter-spacing:-0.538667pt;}
.ls22{letter-spacing:-0.377600pt;}
.ls26{letter-spacing:-0.368000pt;}
.ls15{letter-spacing:-0.352000pt;}
.ls31{letter-spacing:-0.330133pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls2f{letter-spacing:-0.191467pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls2b{letter-spacing:-0.147200pt;}
.ls30{letter-spacing:-0.146667pt;}
.ls24{letter-spacing:-0.101867pt;}
.ls1c{letter-spacing:-0.083733pt;}
.ls13{letter-spacing:-0.032000pt;}
.ls1b{letter-spacing:-0.000005pt;}
.ls1{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.089600pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls29{letter-spacing:0.130667pt;}
.lsd{letter-spacing:0.131200pt;}
.ls25{letter-spacing:0.133867pt;}
.ls16{letter-spacing:0.160000pt;}
.ls32{letter-spacing:0.182400pt;}
.ls0{letter-spacing:0.184280pt;}
.ls7{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.204800pt;}
.ls9{letter-spacing:0.218880pt;}
.ls3{letter-spacing:0.220544pt;}
.ls23{letter-spacing:0.251733pt;}
.ls1d{letter-spacing:0.262400pt;}
.ls2a{letter-spacing:0.266133pt;}
.ls28{letter-spacing:0.272000pt;}
.ls12{letter-spacing:0.285333pt;}
.ls4{letter-spacing:0.285440pt;}
.ls27{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.352000pt;}
.ls5{letter-spacing:0.392107pt;}
.lse{letter-spacing:0.408533pt;}
.ls6{letter-spacing:0.445440pt;}
.lsb{letter-spacing:0.554667pt;}
.lsc{letter-spacing:0.618240pt;}
.ls1e{letter-spacing:0.730667pt;}
.ls20{letter-spacing:0.773333pt;}
.ls8{letter-spacing:0.832000pt;}
.lsa{letter-spacing:6.618880pt;}
.ls2{letter-spacing:24.213760pt;}
.ws3f{word-spacing:-85.120000pt;}
.ws1b{word-spacing:-48.165120pt;}
.ws2c{word-spacing:-34.474453pt;}
.ws2a{word-spacing:-34.431787pt;}
.ws30{word-spacing:-34.255787pt;}
.ws29{word-spacing:-33.963520pt;}
.ws2f{word-spacing:-33.952853pt;}
.ws32{word-spacing:-33.834987pt;}
.ws2d{word-spacing:-33.790720pt;}
.ws33{word-spacing:-33.701120pt;}
.ws28{word-spacing:-33.617387pt;}
.ws31{word-spacing:-33.599253pt;}
.ws2e{word-spacing:-33.323520pt;}
.ws35{word-spacing:-32.864000pt;}
.ws3a{word-spacing:-32.839061pt;}
.ws38{word-spacing:-32.816000pt;}
.ws3d{word-spacing:-32.777728pt;}
.ws36{word-spacing:-32.704000pt;}
.ws39{word-spacing:-32.703595pt;}
.ws37{word-spacing:-32.672000pt;}
.ws3b{word-spacing:-32.425728pt;}
.ws2b{word-spacing:-32.383787pt;}
.ws34{word-spacing:-32.176000pt;}
.ws19{word-spacing:-32.139008pt;}
.ws1a{word-spacing:-32.110080pt;}
.ws3c{word-spacing:-31.010261pt;}
.ws25{word-spacing:-29.056000pt;}
.ws27{word-spacing:-28.928000pt;}
.ws26{word-spacing:-28.927995pt;}
.ws23{word-spacing:-28.672000pt;}
.ws24{word-spacing:-27.648000pt;}
.ws2{word-spacing:-25.492193pt;}
.ws0{word-spacing:-24.520617pt;}
.ws18{word-spacing:-24.154880pt;}
.ws22{word-spacing:-22.048000pt;}
.ws21{word-spacing:-21.888000pt;}
.ws20{word-spacing:-21.856000pt;}
.ws1e{word-spacing:-21.696000pt;}
.wsd{word-spacing:-21.668823pt;}
.ws1c{word-spacing:-21.664000pt;}
.ws1d{word-spacing:-21.376000pt;}
.ws1f{word-spacing:-21.344000pt;}
.ws43{word-spacing:-19.645653pt;}
.ws47{word-spacing:-19.499520pt;}
.ws46{word-spacing:-19.419520pt;}
.ws41{word-spacing:-19.368320pt;}
.ws3e{word-spacing:-19.237120pt;}
.ws12{word-spacing:-19.119472pt;}
.ws44{word-spacing:-19.090453pt;}
.ws42{word-spacing:-19.045653pt;}
.ws45{word-spacing:-18.906987pt;}
.ws40{word-spacing:-18.239787pt;}
.ws4{word-spacing:-14.782834pt;}
.ws6{word-spacing:-14.652933pt;}
.ws7{word-spacing:-14.021259pt;}
.ws3{word-spacing:-13.502390pt;}
.ws8{word-spacing:-13.383240pt;}
.ws9{word-spacing:-12.737625pt;}
.wsc{word-spacing:-10.360227pt;}
.ws1{word-spacing:-8.633356pt;}
.ws13{word-spacing:-7.311224pt;}
.wsb{word-spacing:-7.280504pt;}
.ws5{word-spacing:-6.475017pt;}
.wsa{word-spacing:-5.185968pt;}
.ws16{word-spacing:-2.040960pt;}
.ws15{word-spacing:0.000000pt;}
.ws17{word-spacing:0.829440pt;}
.ws14{word-spacing:36.925161pt;}
.wse{word-spacing:147.998058pt;}
.ws10{word-spacing:155.798834pt;}
.wsf{word-spacing:187.045276pt;}
.ws11{word-spacing:1035.434138pt;}
._1c{margin-left:-16.607289pt;}
._2b{margin-left:-13.855310pt;}
._1d{margin-left:-12.130320pt;}
._24{margin-left:-10.240000pt;}
._1a{margin-left:-7.699080pt;}
._18{margin-left:-6.328116pt;}
._19{margin-left:-5.194518pt;}
._2{margin-left:-3.568907pt;}
._3{margin-left:-2.443489pt;}
._0{margin-left:-1.127948pt;}
._4{width:0.896821pt;}
._1e{width:1.893419pt;}
._23{width:3.426529pt;}
._1f{width:4.725333pt;}
._21{width:5.754883pt;}
._20{width:6.656000pt;}
._22{width:8.207140pt;}
._25{width:9.239199pt;}
._5{width:10.169593pt;}
._8{width:11.066414pt;}
._7{width:11.960828pt;}
._26{width:12.898833pt;}
._2a{width:13.853030pt;}
._b{width:16.168972pt;}
._29{width:21.245282pt;}
._a{width:23.172901pt;}
._1b{width:24.180328pt;}
._2d{width:25.163566pt;}
._28{width:26.370598pt;}
._27{width:27.296822pt;}
._9{width:29.008861pt;}
._6{width:29.961056pt;}
._2f{width:36.211200pt;}
._2e{width:37.874615pt;}
._2c{width:39.713556pt;}
._30{width:46.094507pt;}
._31{width:54.402221pt;}
._1{width:70.076761pt;}
._17{width:103.455834pt;}
._11{width:198.421408pt;}
._c{width:200.436609pt;}
._13{width:229.256143pt;}
._15{width:236.341848pt;}
._f{width:240.740619pt;}
._12{width:244.164293pt;}
._16{width:262.127747pt;}
._14{width:265.659765pt;}
._d{width:267.219920pt;}
._e{width:357.752261pt;}
._10{width:368.153296pt;}
.fsb{font-size:19.119472pt;}
.fsa{font-size:21.668823pt;}
.fs1{font-size:22.093496pt;}
.fs0{font-size:24.520617pt;}
.fs6{font-size:25.492193pt;}
.fs7{font-size:27.192197pt;}
.fs3{font-size:28.890890pt;}
.fsc{font-size:30.590893pt;}
.fs2{font-size:33.989590pt;}
.fs9{font-size:37.388287pt;}
.fs4{font-size:40.788295pt;}
.fs8{font-size:47.585689pt;}
.fsd{font-size:53.017312pt;}
.fs5{font-size:57.783090pt;}
.fs15{font-size:64.000000pt;}
.fs1b{font-size:85.120000pt;}
.fs1c{font-size:85.248000pt;}
.fs16{font-size:96.000000pt;}
.fsf{font-size:106.880000pt;}
.fs10{font-size:107.008000pt;}
.fs17{font-size:128.000000pt;}
.fs14{font-size:142.080000pt;}
.fs12{font-size:142.208000pt;}
.fs19{font-size:144.000000pt;}
.fs1a{font-size:144.128000pt;}
.fs18{font-size:149.120000pt;}
.fs13{font-size:213.120000pt;}
.fs11{font-size:213.248000pt;}
.fse{font-size:336.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:1.117330pt;}
.y44{bottom:1.279583pt;}
.y2e{bottom:1.598045pt;}
.y3c{bottom:1.602567pt;}
.y56{bottom:1.758824pt;}
.y2{bottom:1.919756pt;}
.y5d{bottom:2.718220pt;}
.y40{bottom:2.718514pt;}
.yb{bottom:3.202319pt;}
.y5c{bottom:3.344287pt;}
.y5b{bottom:3.999597pt;}
.y7c{bottom:21.408000pt;}
.y61{bottom:72.352000pt;}
.y60{bottom:104.352000pt;}
.y54{bottom:125.615811pt;}
.y53{bottom:142.227562pt;}
.y37{bottom:204.495346pt;}
.y7b{bottom:205.786667pt;}
.y36{bottom:222.093645pt;}
.y35{bottom:239.692029pt;}
.y7a{bottom:248.986667pt;}
.y34{bottom:250.571909pt;}
.y33{bottom:261.451874pt;}
.y32{bottom:272.173069pt;}
.y31{bottom:283.053034pt;}
.y79{bottom:292.186667pt;}
.y30{bottom:293.932914pt;}
.y2f{bottom:304.812880pt;}
.y2d{bottom:320.813133pt;}
.y2c{bottom:333.132458pt;}
.y78{bottom:335.866667pt;}
.y2b{bottom:344.012338pt;}
.y2a{bottom:354.892304pt;}
.y29{bottom:365.772269pt;}
.y28{bottom:376.489072pt;}
.y27{bottom:394.250533pt;}
.y26{bottom:404.971728pt;}
.y25{bottom:415.851650pt;}
.y24{bottom:426.731573pt;}
.y23{bottom:437.448419pt;}
.y77{bottom:441.466667pt;}
.y22{bottom:455.209837pt;}
.y21{bottom:465.931074pt;}
.y20{bottom:476.810997pt;}
.y76{bottom:486.266667pt;}
.y1f{bottom:487.690962pt;}
.y1e{bottom:498.407766pt;}
.y1d{bottom:509.287688pt;}
.y1c{bottom:528.163595pt;}
.y75{bottom:531.066667pt;}
.y1b{bottom:537.763652pt;}
.y1a{bottom:547.363671pt;}
.y52{bottom:549.753355pt;}
.y19{bottom:556.802248pt;}
.y51{bottom:559.194050pt;}
.y18{bottom:566.402305pt;}
.y50{bottom:568.793778pt;}
.y17{bottom:576.002323pt;}
.y4f{bottom:578.392024pt;}
.y74{bottom:583.866667pt;}
.y16{bottom:585.602342pt;}
.y4e{bottom:587.994657pt;}
.y3e{bottom:590.889368pt;}
.y15{bottom:595.044832pt;}
.y4d{bottom:597.435352pt;}
.y14{bottom:604.644850pt;}
.y3d{bottom:607.203040pt;}
.y13{bottom:614.244869pt;}
.y4c{bottom:616.633326pt;}
.y3b{bottom:618.242323pt;}
.y12{bottom:623.844926pt;}
.y49{bottom:625.115666pt;}
.y4b{bottom:626.232996pt;}
.y3a{bottom:632.644915pt;}
.y11{bottom:633.767688pt;}
.y48{bottom:636.471309pt;}
.y10{bottom:644.647610pt;}
.y47{bottom:647.354338pt;}
.yf{bottom:655.527533pt;}
.y46{bottom:658.232394pt;}
.ye{bottom:666.248770pt;}
.y45{bottom:668.953396pt;}
.yd{bottom:677.128693pt;}
.y43{bottom:678.553515pt;}
.yc{bottom:695.358757pt;}
.ya{bottom:712.315639pt;}
.y9{bottom:735.677159pt;}
.y39{bottom:756.323403pt;}
.y8{bottom:758.716711pt;}
.y38{bottom:771.995194pt;}
.y7{bottom:779.044314pt;}
.y89{bottom:783.173333pt;}
.y88{bottom:808.773333pt;}
.y42{bottom:812.641644pt;}
.y41{bottom:825.439939pt;}
.y87{bottom:834.373333pt;}
.y3f{bottom:838.242539pt;}
.y86{bottom:859.973333pt;}
.y85{bottom:885.573333pt;}
.y84{bottom:911.173333pt;}
.y83{bottom:936.773333pt;}
.y82{bottom:962.373333pt;}
.y4{bottom:975.519389pt;}
.y81{bottom:987.973333pt;}
.y6{bottom:1003.679477pt;}
.y80{bottom:1013.573333pt;}
.y5{bottom:1015.678725pt;}
.y3{bottom:1030.240422pt;}
.y7f{bottom:1039.173333pt;}
.y58{bottom:1039.678603pt;}
.y55{bottom:1047.199362pt;}
.y57{bottom:1047.359932pt;}
.y1{bottom:1047.680878pt;}
.y59{bottom:1048.958186pt;}
.y7e{bottom:1064.773333pt;}
.y7d{bottom:1090.400000pt;}
.y5a{bottom:1103.358109pt;}
.y73{bottom:1486.013333pt;}
.y6e{bottom:1486.173333pt;}
.y72{bottom:1524.413333pt;}
.y6d{bottom:1524.573333pt;}
.y71{bottom:1562.813333pt;}
.y6c{bottom:1563.013333pt;}
.y70{bottom:1601.213333pt;}
.y6b{bottom:1601.413333pt;}
.y6f{bottom:1639.613333pt;}
.y6a{bottom:1639.813333pt;}
.y69{bottom:1751.453333pt;}
.y68{bottom:1782.173333pt;}
.y67{bottom:1813.053333pt;}
.y66{bottom:1850.973333pt;}
.y65{bottom:1912.253333pt;}
.y64{bottom:1976.253333pt;}
.y63{bottom:2040.253333pt;}
.y62{bottom:2104.293333pt;}
.y5f{bottom:2221.786667pt;}
.y5e{bottom:2322.586667pt;}
.h14{height:5.279013pt;}
.h12{height:6.080483pt;}
.hd{height:7.357637pt;}
.h2{height:7.841664pt;}
.h16{height:8.641031pt;}
.he{height:9.439248pt;}
.hf{height:13.435757pt;}
.h15{height:13.667435pt;}
.h13{height:15.489822pt;}
.h19{height:16.004860pt;}
.h9{height:16.159779pt;}
.h4{height:16.322002pt;}
.h1b{height:16.478938pt;}
.h3{height:17.899571pt;}
.hb{height:18.870197pt;}
.ha{height:21.089785pt;}
.h6{height:21.343709pt;}
.hc{height:21.498885pt;}
.h17{height:23.152288pt;}
.h5{height:25.160263pt;}
.h11{height:27.292719pt;}
.h18{height:29.545305pt;}
.h7{height:29.774659pt;}
.h10{height:36.014559pt;}
.h1a{height:36.811825pt;}
.h8{height:42.773029pt;}
.h24{height:66.684375pt;}
.h2e{height:68.495000pt;}
.h2c{height:84.662813pt;}
.h20{height:86.005000pt;}
.h21{height:86.108000pt;}
.h2d{height:87.287625pt;}
.h25{height:95.484375pt;}
.h27{height:127.312500pt;}
.h26{height:131.062500pt;}
.h2a{height:143.226562pt;}
.h2b{height:143.353875pt;}
.h29{height:148.319063pt;}
.h28{height:152.687812pt;}
.h23{height:211.975312pt;}
.h22{height:212.102625pt;}
.h1f{height:344.039062pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.h1d{height:2645.333333pt;}
.h1e{height:2645.599837pt;}
.h1c{height:2645.600000pt;}
.wc{width:1.759657pt;}
.wb{width:2.398674pt;}
.w7{width:2.398981pt;}
.wa{width:2.400321pt;}
.w8{width:2.401951pt;}
.w9{width:7.199250pt;}
.w2{width:20.481156pt;}
.w4{width:24.640073pt;}
.wd{width:26.243114pt;}
.w14{width:30.396729pt;}
.w12{width:35.200678pt;}
.w5{width:41.121400pt;}
.w11{width:51.198877pt;}
.wf{width:66.720995pt;}
.w10{width:75.195036pt;}
.we{width:78.079626pt;}
.w15{width:99.681632pt;}
.w3{width:329.761999pt;}
.w6{width:360.322279pt;}
.w13{width:788.161599pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.w17{width:3401.333333pt;}
.w18{width:3401.439949pt;}
.w16{width:3401.440000pt;}
.x0{left:0.000000pt;}
.x28{left:1.922041pt;}
.x6{left:103.836033pt;}
.x7{left:105.918480pt;}
.xa{left:109.760065pt;}
.x1b{left:112.642184pt;}
.x32{left:116.095949pt;}
.x34{left:123.615949pt;}
.x3{left:128.319034pt;}
.x12{left:130.557867pt;}
.x35{left:134.586616pt;}
.x10{left:143.838217pt;}
.xb{left:147.038612pt;}
.x1d{left:151.517760pt;}
.x1c{left:155.520694pt;}
.x13{left:163.199327pt;}
.x30{left:166.013283pt;}
.x11{left:167.677242pt;}
.x2e{left:177.373283pt;}
.x16{left:182.395010pt;}
.x2a{left:183.933283pt;}
.xc{left:187.836797pt;}
.x1e{left:199.519365pt;}
.x2f{left:253.533283pt;}
.xd{left:258.077016pt;}
.x1a{left:259.032774pt;}
.x1f{left:267.677516pt;}
.x20{left:287.519488pt;}
.x2{left:327.674697pt;}
.x18{left:328.791772pt;}
.xe{left:344.476271pt;}
.x1{left:358.560954pt;}
.x21{left:363.038931pt;}
.x17{left:370.713389pt;}
.x15{left:382.710374pt;}
.x19{left:387.350203pt;}
.xf{left:394.556936pt;}
.x4{left:410.876695pt;}
.x14{left:420.951960pt;}
.x23{left:443.520001pt;}
.x22{left:446.880673pt;}
.x5{left:447.996922pt;}
.x8{left:455.050973pt;}
.x9{left:457.747488pt;}
.x37{left:497.573283pt;}
.x25{left:530.717789pt;}
.x24{left:539.196503pt;}
.x27{left:598.717701pt;}
.x26{left:607.355132pt;}
.x2b{left:613.893283pt;}
.x29{left:691.999665pt;}
.x2d{left:1008.066616pt;}
.x31{left:1086.533283pt;}
.x2c{left:1126.946616pt;}
.x36{left:1536.639949pt;}
.x33{left:1811.133283pt;}
}




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