
    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_6209ff0a8bffde5fb0707af0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e4567b4ed49a1f6a1198910a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079000;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_e2a3040ea2af4e3342320d02.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9617adc2513d677bca0156c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.134000;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_d4c9a2746373930e853775fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.205120;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_3355c3f972f10cf542b30623.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.141120;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_ab7d213f35ba25ae6d457da5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.132000;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_5b3653e3eb0d1fe8f32f9a83.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.086000;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_4836a987743875e9663fc177.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.223220;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_e09730afa203fa2c3a9e262d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.086000;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_7bd8634835224b090ee4bff6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.851000;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_7e491c5b72f76cb59410f54b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.085000;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_38208fd7ff7e7bff265d9b91.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.078000;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_09c68bc1d9d35156761ee816.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.212220;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_15a9426d245627a3d8d17d03.woff2')format("woff");}.fff{font-family:fff;line-height:1.065000;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_e514098875493d64a2c2d2a8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.066624;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_b288ebeb29c61901de62b5a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.141120;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_15ea831b720ea36686b4fea1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.148000;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_5ef6c2a0c5ca693a49cf296b.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.085000;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_9c611d435c0bdd7d1be82a3e.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.086000;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_25043cec4989f7071a5c6adc.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.159100;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_498bc4f8d000c194b4176df6.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.141120;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_ed96fefe52884b256f45ae1c.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.278000;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_74be64144836e05555fe86b0.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.141120;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_9f9c16b8d7be2051d5a63a33.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.098000;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_0e76d8b1d396960859aa25c8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.086000;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_8b2773e8e43953361f3d1319.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.098111;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_2171e7c7bf2cc049efbfc097.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.086000;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_43ea5c0e507e04f731d973bc.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.087000;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_68882934130c505c6bb67e46.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.098000;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_5365973b002f6796085cd5fd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.044000;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:ff20;src:url('chunks/assets/font_4c6eac426b2cc5b94543ef63.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.098667;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:ff21;src:url('chunks/assets/font_06e55109036a3b748271e2c8.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.087000;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_94ddfd87a0aa1a64b0a381c4.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.098000;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_a2b07a125a4b39fa3ae733d0.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.986000;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_2231fa3363971f1b908a56de.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.087000;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_566069aa7f1ca7a439de8af8.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.212220;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_20d1678748fb8184483f1e83.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.085000;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:ff27;src:url('chunks/assets/font_6312bde883d705742720ee39.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.140000;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.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.wsf{word-spacing:-103.085189px;}
.wsa{word-spacing:-82.100132px;}
.ws6{word-spacing:-75.488042px;}
.ws12{word-spacing:-71.114883px;}
.ws0{word-spacing:-48.764175px;}
.ws2{word-spacing:-41.910793px;}
.ws4{word-spacing:-31.201632px;}
.ws5{word-spacing:-28.507106px;}
.wsc{word-spacing:-20.264835px;}
.wsb{word-spacing:-18.672209px;}
.ws11{word-spacing:-16.245441px;}
.ws9{word-spacing:-15.437666px;}
.ws10{word-spacing:-13.586119px;}
.ws7{word-spacing:-12.601598px;}
.wse{word-spacing:-12.186235px;}
.wsd{word-spacing:-12.185642px;}
.ws8{word-spacing:-12.001522px;}
.ws3{word-spacing:-10.666758px;}
.ws1{word-spacing:0.000000px;}
._10{margin-left:-1.001210px;}
._7{width:1.101791px;}
._2{width:2.254431px;}
._1{width:3.555770px;}
._d{width:4.680112px;}
._0{width:5.837586px;}
._f{width:7.271809px;}
._19{width:8.903889px;}
._e{width:10.293165px;}
._4{width:12.087856px;}
._12{width:13.809598px;}
._6{width:15.522897px;}
._18{width:16.717419px;}
._16{width:18.085226px;}
._3{width:19.286586px;}
._23{width:21.120745px;}
._22{width:22.180126px;}
._13{width:23.230675px;}
._1a{width:24.469506px;}
._9{width:25.479420px;}
._14{width:26.733255px;}
._8{width:27.733380px;}
._11{width:28.759753px;}
._1b{width:30.493643px;}
._a{width:38.359881px;}
._24{width:41.879617px;}
._27{width:52.509395px;}
._21{width:53.883984px;}
._c{width:57.258466px;}
._1d{width:59.090582px;}
._15{width:61.957253px;}
._b{width:63.849254px;}
._2a{width:65.468455px;}
._1f{width:69.797392px;}
._28{width:72.641978px;}
._17{width:78.375190px;}
._29{width:81.249877px;}
._1c{width:86.520214px;}
._1e{width:102.387252px;}
._20{width:114.990622px;}
._25{width:122.038789px;}
._5{width:123.059227px;}
._26{width:427.298222px;}
.fc4{color:rgb(112,42,12);}
.fc2{color:rgb(254,255,243);}
.fc1{color:transparent;}
.fc5{color:rgb(170,64,19);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:50.794086px;}
.fs17{font-size:54.918263px;}
.fsa{font-size:55.505913px;}
.fs1f{font-size:55.550931px;}
.fs2{font-size:56.063642px;}
.fs19{font-size:58.026864px;}
.fs18{font-size:58.029691px;}
.fs16{font-size:59.602456px;}
.fs8{font-size:60.007609px;}
.fs14{font-size:61.493168px;}
.fs1d{font-size:61.763272px;}
.fsf{font-size:61.853304px;}
.fs27{font-size:62.489470px;}
.fs10{font-size:65.949847px;}
.fs20{font-size:67.930596px;}
.fs22{font-size:68.554745px;}
.fs24{font-size:69.610887px;}
.fs1c{font-size:72.027138px;}
.fs26{font-size:72.240987px;}
.fsc{font-size:73.512697px;}
.fs12{font-size:73.872833px;}
.fs1e{font-size:74.142932px;}
.fse{font-size:74.215946px;}
.fsb{font-size:75.164504px;}
.fs21{font-size:79.994818px;}
.fs23{font-size:81.227204px;}
.fs3{font-size:83.821586px;}
.fs6{font-size:83.844430px;}
.fs1b{font-size:84.046667px;}
.fs5{font-size:91.769505px;}
.fs28{font-size:93.757644px;}
.fsd{font-size:95.976162px;}
.fs1{font-size:108.040707px;}
.fs11{font-size:120.320838px;}
.fs15{font-size:122.491147px;}
.fs0{font-size:143.424043px;}
.fs1a{font-size:154.550508px;}
.fs9{font-size:180.337952px;}
.fs25{font-size:209.161420px;}
.fs7{font-size:222.023653px;}
.fs13{font-size:241.470976px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y96{bottom:3.328124px;}
.ya9{bottom:3.590897px;}
.yad{bottom:3.856288px;}
.y11{bottom:4.251982px;}
.y50{bottom:4.382685px;}
.y6{bottom:4.406806px;}
.y93{bottom:4.592219px;}
.ya2{bottom:4.618344px;}
.yb0{bottom:4.650506px;}
.y110{bottom:4.943796px;}
.y16{bottom:5.206892px;}
.yee{bottom:5.556602px;}
.y6a{bottom:5.621870px;}
.ydf{bottom:5.667479px;}
.y100{bottom:5.966928px;}
.y72{bottom:6.279457px;}
.y18{bottom:6.281861px;}
.y112{bottom:7.116591px;}
.ybd{bottom:7.942808px;}
.yfb{bottom:10.684962px;}
.y10{bottom:18.008714px;}
.y4f{bottom:23.786565px;}
.ya8{bottom:24.912278px;}
.yac{bottom:25.177669px;}
.ya1{bottom:25.939724px;}
.yaf{bottom:25.971887px;}
.y10f{bottom:26.039266px;}
.yde{bottom:30.304340px;}
.yed{bottom:30.573015px;}
.yff{bottom:31.117780px;}
.yf{bottom:31.765445px;}
.y15{bottom:37.156639px;}
.y71{bottom:39.564935px;}
.y4e{bottom:43.190445px;}
.y8e{bottom:43.695019px;}
.ye{bottom:45.522177px;}
.yab{bottom:46.499049px;}
.y10e{bottom:47.134736px;}
.ya0{bottom:47.261105px;}
.y6c{bottom:47.877969px;}
.ybc{bottom:51.813593px;}
.yfe{bottom:56.268633px;}
.yd{bottom:59.278909px;}
.y4d{bottom:62.594325px;}
.y42{bottom:63.718688px;}
.ye0{bottom:65.487764px;}
.y102{bottom:67.815018px;}
.y10d{bottom:68.230206px;}
.y14{bottom:69.106387px;}
.yfa{bottom:70.183290px;}
.yc{bottom:73.035640px;}
.y101{bottom:76.709360px;}
.y48{bottom:77.272112px;}
.yd2{bottom:77.384792px;}
.ydd{bottom:78.506896px;}
.yec{bottom:79.518170px;}
.yfd{bottom:81.419485px;}
.y4c{bottom:81.998206px;}
.yb{bottom:86.792372px;}
.y10c{bottom:89.325676px;}
.ya{bottom:100.549104px;}
.y13{bottom:101.056134px;}
.y4b{bottom:101.402086px;}
.ydc{bottom:103.143757px;}
.y10b{bottom:110.421146px;}
.y41{bottom:112.631896px;}
.y9{bottom:114.305835px;}
.y4a{bottom:120.805966px;}
.ydb{bottom:127.780619px;}
.yeb{bottom:128.463325px;}
.yf9{bottom:129.681618px;}
.y10a{bottom:131.516616px;}
.y40{bottom:132.889529px;}
.y12{bottom:134.055015px;}
.y109{bottom:152.612086px;}
.y3f{bottom:153.147162px;}
.yf0{bottom:160.354731px;}
.yd4{bottom:173.091314px;}
.y3e{bottom:173.404794px;}
.y108{bottom:173.707556px;}
.yda{bottom:175.983174px;}
.yea{bottom:177.408480px;}
.yef{bottom:182.863211px;}
.yf8{bottom:189.179945px;}
.y3d{bottom:193.662427px;}
.y107{bottom:194.803026px;}
.yd3{bottom:195.599795px;}
.yd9{bottom:200.620036px;}
.ye9{bottom:202.424893px;}
.y5d{bottom:209.127560px;}
.y3c{bottom:213.920059px;}
.ye2{bottom:215.775012px;}
.y106{bottom:215.898496px;}
.y5c{bottom:228.259768px;}
.y3b{bottom:234.177692px;}
.yc5{bottom:236.222683px;}
.y105{bottom:236.993966px;}
.y79{bottom:246.694917px;}
.y5b{bottom:247.391977px;}
.yf7{bottom:248.678273px;}
.ye8{bottom:251.370048px;}
.yd8{bottom:254.178430px;}
.y104{bottom:258.089436px;}
.y78{bottom:265.827125px;}
.y3a{bottom:275.818381px;}
.ye7{bottom:276.386460px;}
.y103{bottom:279.184906px;}
.yd7{bottom:283.099964px;}
.y77{bottom:284.959334px;}
.yc4{bottom:286.866765px;}
.y39{bottom:296.076014px;}
.y17{bottom:299.295008px;}
.y76{bottom:304.091542px;}
.y5f{bottom:306.216546px;}
.yf6{bottom:308.176601px;}
.y8d{bottom:310.364313px;}
.yc3{bottom:312.751518px;}
.y38{bottom:316.333646px;}
.ya6{bottom:322.528457px;}
.yfc{bottom:327.735007px;}
.ye6{bottom:330.769966px;}
.y8c{bottom:331.747370px;}
.y37{bottom:336.591279px;}
.yd6{bottom:339.871862px;}
.y5e{bottom:343.671116px;}
.ya5{bottom:343.911514px;}
.y9e{bottom:348.074374px;}
.y7a{bottom:348.184657px;}
.y36{bottom:356.848912px;}
.ye5{bottom:360.137059px;}
.yc2{bottom:363.395599px;}
.y9d{bottom:364.955735px;}
.ya4{bottom:365.294570px;}
.yf5{bottom:367.674928px;}
.y8b{bottom:374.513483px;}
.y35{bottom:378.231968px;}
.y9c{bottom:381.837095px;}
.ya3{bottom:386.677627px;}
.ya7{bottom:387.135005px;}
.yc1{bottom:389.280352px;}
.ye4{bottom:389.504152px;}
.y68{bottom:391.152380px;}
.y111{bottom:393.615004px;}
.y8a{bottom:395.896540px;}
.y58{bottom:401.652392px;}
.y67{bottom:411.410013px;}
.y34{bottom:419.872657px;}
.y57{bottom:420.784600px;}
.yf4{bottom:427.173256px;}
.y66{bottom:430.542221px;}
.y89{bottom:438.662653px;}
.y56{bottom:439.916809px;}
.y33{bottom:440.130290px;}
.yba{bottom:440.253795px;}
.yc0{bottom:445.551554px;}
.ye3{bottom:447.150668px;}
.y55{bottom:459.049017px;}
.y9b{bottom:459.693547px;}
.y88{bottom:460.045710px;}
.y32{bottom:460.387923px;}
.yb9{bottom:461.636851px;}
.y6b{bottom:474.635371px;}
.ybf{bottom:475.938002px;}
.y9a{bottom:476.574907px;}
.y54{bottom:478.181226px;}
.y31{bottom:480.645555px;}
.yb8{bottom:483.019908px;}
.yf3{bottom:486.671584px;}
.yaa{bottom:492.975000px;}
.y53{bottom:497.313434px;}
.y30{bottom:500.903188px;}
.y87{bottom:502.811823px;}
.yb7{bottom:504.402964px;}
.yf1{bottom:517.454999px;}
.y2f{bottom:521.160820px;}
.y86{bottom:525.320303px;}
.ybe{bottom:535.585476px;}
.yf2{bottom:546.169911px;}
.y85{bottom:547.828784px;}
.y6f{bottom:550.124353px;}
.y5a{bottom:552.761600px;}
.y2e{bottom:562.801510px;}
.yb6{bottom:567.680448px;}
.y6e{bottom:572.632834px;}
.y5{bottom:575.054997px;}
.y2d{bottom:583.059142px;}
.y99{bottom:588.650549px;}
.yb5{bottom:589.063505px;}
.y59{bottom:590.216206px;}
.y6d{bottom:595.141314px;}
.y4{bottom:600.045385px;}
.y2c{bottom:603.316775px;}
.yd1{bottom:610.208664px;}
.yb4{bottom:610.446562px;}
.yae{bottom:612.854995px;}
.y2b{bottom:623.574407px;}
.y81{bottom:624.101801px;}
.y70{bottom:636.614994px;}
.y2a{bottom:643.832040px;}
.y80{bottom:648.861130px;}
.yd0{bottom:652.974777px;}
.y3{bottom:660.649431px;}
.y29{bottom:664.089673px;}
.y47{bottom:669.580598px;}
.y7f{bottom:673.620458px;}
.yb3{bottom:673.724128px;}
.y98{bottom:677.642408px;}
.y28{bottom:684.347305px;}
.y46{bottom:688.712806px;}
.y97{bottom:694.523769px;}
.yb2{bottom:695.107185px;}
.ycf{bottom:697.991738px;}
.y7e{bottom:698.379787px;}
.y2{bottom:704.540968px;}
.y27{bottom:704.604938px;}
.y45{bottom:707.845015px;}
.y9f{bottom:712.214991px;}
.ye1{bottom:716.067019px;}
.yb1{bottom:716.490242px;}
.yce{bottom:719.374795px;}
.y7d{bottom:723.139116px;}
.y26{bottom:724.862570px;}
.ycd{bottom:740.757851px;}
.y25{bottom:745.120203px;}
.y7c{bottom:747.898445px;}
.yd5{bottom:750.014989px;}
.y52{bottom:761.529324px;}
.y24{bottom:765.377836px;}
.y7b{bottom:772.657773px;}
.ycc{bottom:783.523965px;}
.y23{bottom:785.635468px;}
.y75{bottom:795.229978px;}
.y51{bottom:798.983985px;}
.y94{bottom:800.397029px;}
.y22{bottom:805.893101px;}
.y74{bottom:812.111339px;}
.y21{bottom:826.150733px;}
.ycb{bottom:828.540926px;}
.y73{bottom:828.992699px;}
.y84{bottom:834.189349px;}
.y95{bottom:840.374986px;}
.y20{bottom:846.408366px;}
.y49{bottom:859.094985px;}
.y8{bottom:865.574985px;}
.y1f{bottom:866.665999px;}
.yca{bottom:867.930767px;}
.y1e{bottom:886.923631px;}
.yc9{bottom:888.188400px;}
.y65{bottom:897.345251px;}
.y83{bottom:903.965639px;}
.y1d{bottom:907.181264px;}
.y64{bottom:924.355428px;}
.y1c{bottom:927.438896px;}
.yc8{bottom:932.079937px;}
.y63{bottom:951.365605px;}
.y91{bottom:961.012331px;}
.y82{bottom:973.741929px;}
.yc7{bottom:978.222322px;}
.y62{bottom:978.375782px;}
.y90{bottom:988.022508px;}
.y1b{bottom:999.069286px;}
.yc6{bottom:999.605379px;}
.y61{bottom:1005.385959px;}
.y8f{bottom:1015.032684px;}
.y60{bottom:1032.396135px;}
.y44{bottom:1046.482730px;}
.ybb{bottom:1050.974977px;}
.y1a{bottom:1062.093032px;}
.y7{bottom:1066.220665px;}
.y92{bottom:1086.199652px;}
.y43{bottom:1092.625116px;}
.y69{bottom:1093.454975px;}
.y19{bottom:1125.116778px;}
.h26{height:14.759999px;}
.h5{height:16.199999px;}
.h18{height:20.159999px;}
.hc{height:25.199999px;}
.h4a{height:27.359999px;}
.h2c{height:37.439998px;}
.h2e{height:38.519998px;}
.h3e{height:42.545395px;}
.h9{height:43.835296px;}
.h12{height:44.848778px;}
.h36{height:44.885152px;}
.h6{height:45.299423px;}
.h2b{height:46.885707px;}
.h29{height:46.887990px;}
.h38{height:48.486148px;}
.h10{height:48.546156px;}
.h1e{height:48.864110px;}
.h22{height:49.686480px;}
.h34{height:49.904724px;}
.h39{height:49.966487px;}
.hf{height:51.246498px;}
.h27{height:51.684676px;}
.h15{height:51.973477px;}
.h1b{height:53.287476px;}
.h21{height:53.560550px;}
.h49{height:53.928412px;}
.h37{height:54.955852px;}
.h3d{height:55.392234px;}
.h25{height:56.093063px;}
.h42{height:56.245597px;}
.h43{height:56.292004px;}
.h1f{height:57.951064px;}
.h2a{height:58.026864px;}
.h33{height:58.205931px;}
.h1a{height:58.211381px;}
.h47{height:58.370718px;}
.h2d{height:59.039998px;}
.h17{height:59.398259px;}
.h28{height:59.759998px;}
.h35{height:59.981632px;}
.h1c{height:64.439997px;}
.h3b{height:64.689143px;}
.h3c{height:64.715808px;}
.h40{height:65.685732px;}
.h41{height:65.712808px;}
.h7{height:67.057269px;}
.h31{height:67.909707px;}
.h32{height:67.993753px;}
.h19{height:69.846111px;}
.h14{height:70.738818px;}
.hd{height:74.453854px;}
.h4b{height:80.912847px;}
.hb{height:81.491321px;}
.h2f{height:82.439997px;}
.h4{height:87.296891px;}
.h16{height:90.325085px;}
.h46{height:97.199996px;}
.h24{height:108.772139px;}
.h1d{height:113.236347px;}
.h3{height:114.739235px;}
.ha{height:119.519995px;}
.h8{height:125.999995px;}
.h13{height:139.319994px;}
.h30{height:145.450574px;}
.h11{height:169.719653px;}
.h45{height:196.845996px;}
.he{height:208.950901px;}
.h20{height:227.253165px;}
.h48{height:292.319988px;}
.h3a{height:357.119985px;}
.h3f{height:464.759981px;}
.h44{height:592.919975px;}
.h23{height:1114.559954px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:129.599995px;}
.wb{width:158.039993px;}
.w5{width:177.119993px;}
.wa{width:195.119992px;}
.wc{width:197.639992px;}
.wd{width:198.719992px;}
.we{width:217.439991px;}
.w14{width:274.679989px;}
.w7{width:367.919985px;}
.w8{width:498.239979px;}
.w12{width:567.359976px;}
.w11{width:579.239976px;}
.w4{width:657.719973px;}
.w3{width:663.839972px;}
.w6{width:707.399971px;}
.wf{width:718.199970px;}
.w10{width:719.279970px;}
.w9{width:767.519968px;}
.w13{width:822.959966px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:1.787870px;}
.x2f{left:3.284989px;}
.xe{left:17.247659px;}
.x8{left:19.082992px;}
.xc{left:25.829081px;}
.xa{left:27.052637px;}
.x27{left:29.440265px;}
.xf{left:33.253087px;}
.x33{left:34.919999px;}
.x25{left:52.622041px;}
.x24{left:54.134329px;}
.x1e{left:55.910987px;}
.x20{left:64.079997px;}
.x1d{left:80.386816px;}
.x2e{left:86.039996px;}
.x17{left:88.199996px;}
.x2b{left:89.324996px;}
.x14{left:91.269860px;}
.x26{left:93.607020px;}
.x18{left:95.399996px;}
.x15{left:97.199996px;}
.x13{left:98.562203px;}
.x30{left:99.719996px;}
.x28{left:100.746428px;}
.x16{left:104.095324px;}
.x10{left:115.559995px;}
.x6{left:116.999995px;}
.x1{left:128.471291px;}
.x1c{left:136.059978px;}
.x1b{left:155.628688px;}
.x2d{left:158.983729px;}
.x19{left:199.238869px;}
.x12{left:211.186920px;}
.x3{left:214.620241px;}
.x1f{left:224.164546px;}
.x9{left:225.301690px;}
.xb{left:237.404969px;}
.x1a{left:238.945236px;}
.x31{left:259.199989px;}
.x2{left:285.555867px;}
.xd{left:294.449108px;}
.x29{left:316.439987px;}
.x22{left:318.599987px;}
.x21{left:364.492338px;}
.x5{left:398.380019px;}
.x11{left:415.208697px;}
.x2a{left:487.291048px;}
.x4{left:520.199978px;}
.x23{left:607.319975px;}
.x32{left:764.346754px;}
.x2c{left:768.585742px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsf{word-spacing:-91.631279pt;}
.wsa{word-spacing:-72.977895pt;}
.ws6{word-spacing:-67.100482pt;}
.ws12{word-spacing:-63.213229pt;}
.ws0{word-spacing:-43.345933pt;}
.ws2{word-spacing:-37.254038pt;}
.ws4{word-spacing:-27.734784pt;}
.ws5{word-spacing:-25.339650pt;}
.wsc{word-spacing:-18.013187pt;}
.wsb{word-spacing:-16.597520pt;}
.ws11{word-spacing:-14.440392pt;}
.ws9{word-spacing:-13.722370pt;}
.ws10{word-spacing:-12.076550pt;}
.ws7{word-spacing:-11.201420pt;}
.wse{word-spacing:-10.832209pt;}
.wsd{word-spacing:-10.831681pt;}
.ws8{word-spacing:-10.668019pt;}
.ws3{word-spacing:-9.481563pt;}
.ws1{word-spacing:0.000000pt;}
._10{margin-left:-0.889964pt;}
._7{width:0.979370pt;}
._2{width:2.003939pt;}
._1{width:3.160685pt;}
._d{width:4.160099pt;}
._0{width:5.188966pt;}
._f{width:6.463830pt;}
._19{width:7.914568pt;}
._e{width:9.149480pt;}
._4{width:10.744761pt;}
._12{width:12.275198pt;}
._6{width:13.798131pt;}
._18{width:14.859928pt;}
._16{width:16.075757pt;}
._3{width:17.143632pt;}
._23{width:18.773996pt;}
._22{width:19.715668pt;}
._13{width:20.649489pt;}
._1a{width:21.750672pt;}
._9{width:22.648373pt;}
._14{width:23.762893pt;}
._8{width:24.651894pt;}
._11{width:25.564225pt;}
._1b{width:27.105460pt;}
._a{width:34.097672pt;}
._24{width:37.226327pt;}
._27{width:46.675018pt;}
._21{width:47.896875pt;}
._c{width:50.896414pt;}
._1d{width:52.524962pt;}
._15{width:55.073114pt;}
._b{width:56.754892pt;}
._2a{width:58.194182pt;}
._1f{width:62.042126pt;}
._28{width:64.570647pt;}
._17{width:69.666835pt;}
._29{width:72.222113pt;}
._1c{width:76.906857pt;}
._1e{width:91.010890pt;}
._20{width:102.213886pt;}
._25{width:108.478923pt;}
._5{width:109.385979pt;}
._26{width:379.820642pt;}
.fs4{font-size:45.150299pt;}
.fs17{font-size:48.816234pt;}
.fsa{font-size:49.338589pt;}
.fs1f{font-size:49.378605pt;}
.fs2{font-size:49.834348pt;}
.fs19{font-size:51.579435pt;}
.fs18{font-size:51.581947pt;}
.fs16{font-size:52.979961pt;}
.fs8{font-size:53.340097pt;}
.fs14{font-size:54.660594pt;}
.fs1d{font-size:54.900686pt;}
.fsf{font-size:54.980715pt;}
.fs27{font-size:55.546195pt;}
.fs10{font-size:58.622086pt;}
.fs20{font-size:60.382752pt;}
.fs22{font-size:60.937551pt;}
.fs24{font-size:61.876344pt;}
.fs1c{font-size:64.024123pt;}
.fs26{font-size:64.214211pt;}
.fsc{font-size:65.344620pt;}
.fs12{font-size:65.664740pt;}
.fs1e{font-size:65.904829pt;}
.fse{font-size:65.969730pt;}
.fsb{font-size:66.812893pt;}
.fs21{font-size:71.106505pt;}
.fs23{font-size:72.201959pt;}
.fs3{font-size:74.508077pt;}
.fs6{font-size:74.528382pt;}
.fs1b{font-size:74.708148pt;}
.fs5{font-size:81.572894pt;}
.fs28{font-size:83.340128pt;}
.fsd{font-size:85.312144pt;}
.fs1{font-size:96.036184pt;}
.fs11{font-size:106.951856pt;}
.fs15{font-size:108.881020pt;}
.fs0{font-size:127.488038pt;}
.fs1a{font-size:137.378230pt;}
.fs9{font-size:160.300401pt;}
.fs25{font-size:185.921262pt;}
.fs7{font-size:197.354358pt;}
.fs13{font-size:214.640868pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y96{bottom:2.958332pt;}
.ya9{bottom:3.191909pt;}
.yad{bottom:3.427811pt;}
.y11{bottom:3.779540pt;}
.y50{bottom:3.895720pt;}
.y6{bottom:3.917161pt;}
.y93{bottom:4.081972pt;}
.ya2{bottom:4.105194pt;}
.yb0{bottom:4.133783pt;}
.y110{bottom:4.394485pt;}
.y16{bottom:4.628348pt;}
.yee{bottom:4.939202pt;}
.y6a{bottom:4.997217pt;}
.ydf{bottom:5.037759pt;}
.y100{bottom:5.303936pt;}
.y72{bottom:5.581740pt;}
.y18{bottom:5.583876pt;}
.y112{bottom:6.325859pt;}
.ybd{bottom:7.060274pt;}
.yfb{bottom:9.497744pt;}
.y10{bottom:16.007746pt;}
.y4f{bottom:21.143613pt;}
.ya8{bottom:22.144247pt;}
.yac{bottom:22.380150pt;}
.ya1{bottom:23.057533pt;}
.yaf{bottom:23.086122pt;}
.y10f{bottom:23.146014pt;}
.yde{bottom:26.937191pt;}
.yed{bottom:27.176013pt;}
.yff{bottom:27.660249pt;}
.yf{bottom:28.235951pt;}
.y15{bottom:33.028124pt;}
.y71{bottom:35.168831pt;}
.y4e{bottom:38.391507pt;}
.y8e{bottom:38.840017pt;}
.ye{bottom:40.464157pt;}
.yab{bottom:41.332488pt;}
.y10e{bottom:41.897543pt;}
.ya0{bottom:42.009871pt;}
.y6c{bottom:42.558195pt;}
.ybc{bottom:46.056528pt;}
.yfe{bottom:50.016562pt;}
.yd{bottom:52.692363pt;}
.y4d{bottom:55.639400pt;}
.y42{bottom:56.638834pt;}
.ye0{bottom:58.211346pt;}
.y102{bottom:60.280016pt;}
.y10d{bottom:60.649072pt;}
.y14{bottom:61.427899pt;}
.yfa{bottom:62.385147pt;}
.yc{bottom:64.920569pt;}
.y101{bottom:68.186098pt;}
.y48{bottom:68.686322pt;}
.yd2{bottom:68.786482pt;}
.ydd{bottom:69.783907pt;}
.yec{bottom:70.682818pt;}
.yfd{bottom:72.372876pt;}
.y4c{bottom:72.887294pt;}
.yb{bottom:77.148775pt;}
.y10c{bottom:79.400601pt;}
.ya{bottom:89.376981pt;}
.y13{bottom:89.827675pt;}
.y4b{bottom:90.135187pt;}
.ydc{bottom:91.683340pt;}
.y10b{bottom:98.152129pt;}
.y41{bottom:100.117241pt;}
.y9{bottom:101.605187pt;}
.y4a{bottom:107.383081pt;}
.ydb{bottom:113.582772pt;}
.yeb{bottom:114.189622pt;}
.yf9{bottom:115.272549pt;}
.y10a{bottom:116.903658pt;}
.y40{bottom:118.124026pt;}
.y12{bottom:119.160013pt;}
.y109{bottom:135.655187pt;}
.y3f{bottom:136.130810pt;}
.yf0{bottom:142.537538pt;}
.yd4{bottom:153.858946pt;}
.y3e{bottom:154.137595pt;}
.y108{bottom:154.406716pt;}
.yda{bottom:156.429488pt;}
.yea{bottom:157.696427pt;}
.yef{bottom:162.545077pt;}
.yf8{bottom:168.159951pt;}
.y3d{bottom:172.144379pt;}
.y107{bottom:173.158245pt;}
.yd3{bottom:173.866484pt;}
.yd9{bottom:178.328921pt;}
.ye9{bottom:179.933238pt;}
.y5d{bottom:185.891164pt;}
.y3c{bottom:190.151164pt;}
.ye2{bottom:191.800010pt;}
.y106{bottom:191.909774pt;}
.y5c{bottom:202.897572pt;}
.y3b{bottom:208.157948pt;}
.yc5{bottom:209.975719pt;}
.y105{bottom:210.661303pt;}
.y79{bottom:219.284370pt;}
.y5b{bottom:219.903979pt;}
.yf7{bottom:221.047354pt;}
.ye8{bottom:223.440043pt;}
.yd8{bottom:225.936383pt;}
.y104{bottom:229.412832pt;}
.y78{bottom:236.290778pt;}
.y3a{bottom:245.171894pt;}
.ye7{bottom:245.676854pt;}
.y103{bottom:248.164361pt;}
.yd7{bottom:251.644412pt;}
.y77{bottom:253.297186pt;}
.yc4{bottom:254.992680pt;}
.y39{bottom:263.178679pt;}
.y17{bottom:266.040007pt;}
.y76{bottom:270.303593pt;}
.y5f{bottom:272.192485pt;}
.yf6{bottom:273.934756pt;}
.y8d{bottom:275.879389pt;}
.yc3{bottom:278.001349pt;}
.y38{bottom:281.185463pt;}
.ya6{bottom:286.691962pt;}
.yfc{bottom:291.320006pt;}
.ye6{bottom:294.017748pt;}
.y8c{bottom:294.886551pt;}
.y37{bottom:299.192248pt;}
.yd6{bottom:302.108322pt;}
.y5e{bottom:305.485437pt;}
.ya5{bottom:305.699123pt;}
.y9e{bottom:309.399444pt;}
.y7a{bottom:309.497473pt;}
.y36{bottom:317.199033pt;}
.ye5{bottom:320.121831pt;}
.yc2{bottom:323.018310pt;}
.y9d{bottom:324.405098pt;}
.ya4{bottom:324.706285pt;}
.yf5{bottom:326.822158pt;}
.y8b{bottom:332.900874pt;}
.y35{bottom:336.206194pt;}
.y9c{bottom:339.410751pt;}
.ya3{bottom:343.713446pt;}
.ya7{bottom:344.120004pt;}
.yc1{bottom:346.026980pt;}
.ye4{bottom:346.225913pt;}
.y68{bottom:347.691004pt;}
.y111{bottom:349.880004pt;}
.y8a{bottom:351.908035pt;}
.y58{bottom:357.024348pt;}
.y67{bottom:365.697789pt;}
.y34{bottom:373.220140pt;}
.y57{bottom:374.030756pt;}
.yf4{bottom:379.709561pt;}
.y66{bottom:382.704197pt;}
.y89{bottom:389.922358pt;}
.y56{bottom:391.037163pt;}
.y33{bottom:391.226924pt;}
.yba{bottom:391.336706pt;}
.yc0{bottom:396.045825pt;}
.ye3{bottom:397.467261pt;}
.y55{bottom:408.043571pt;}
.y9b{bottom:408.616486pt;}
.y88{bottom:408.929520pt;}
.y32{bottom:409.233709pt;}
.yb9{bottom:410.343868pt;}
.y6b{bottom:421.898108pt;}
.ybf{bottom:423.056002pt;}
.y9a{bottom:423.622140pt;}
.y54{bottom:425.049978pt;}
.y31{bottom:427.240494pt;}
.yb8{bottom:429.351029pt;}
.yf3{bottom:432.596963pt;}
.yaa{bottom:438.200000pt;}
.y53{bottom:442.056386pt;}
.y30{bottom:445.247278pt;}
.y87{bottom:446.943842pt;}
.yb7{bottom:448.358191pt;}
.yf1{bottom:459.959999pt;}
.y2f{bottom:463.254063pt;}
.y86{bottom:466.951381pt;}
.ybe{bottom:476.075979pt;}
.yf2{bottom:485.484365pt;}
.y85{bottom:486.958919pt;}
.y6f{bottom:488.999425pt;}
.y5a{bottom:491.343644pt;}
.y2e{bottom:500.268009pt;}
.yb6{bottom:504.604843pt;}
.y6e{bottom:509.006963pt;}
.y5{bottom:511.159997pt;}
.y2d{bottom:518.274793pt;}
.y99{bottom:523.244932pt;}
.yb5{bottom:523.612004pt;}
.y59{bottom:524.636628pt;}
.y6d{bottom:529.014501pt;}
.y4{bottom:533.373676pt;}
.y2c{bottom:536.281578pt;}
.yd1{bottom:542.407701pt;}
.yb4{bottom:542.619166pt;}
.yae{bottom:544.759996pt;}
.y2b{bottom:554.288362pt;}
.y81{bottom:554.757156pt;}
.y70{bottom:565.879995pt;}
.y2a{bottom:572.295147pt;}
.y80{bottom:576.765449pt;}
.yd0{bottom:580.422024pt;}
.y3{bottom:587.243938pt;}
.y29{bottom:590.301931pt;}
.y47{bottom:595.182753pt;}
.y7f{bottom:598.773741pt;}
.yb3{bottom:598.865892pt;}
.y98{bottom:602.348808pt;}
.y28{bottom:608.308716pt;}
.y46{bottom:612.189161pt;}
.y97{bottom:617.354461pt;}
.yb2{bottom:617.873053pt;}
.ycf{bottom:620.437101pt;}
.y7e{bottom:620.782033pt;}
.y2{bottom:626.258638pt;}
.y27{bottom:626.315500pt;}
.y45{bottom:629.195569pt;}
.y9f{bottom:633.079992pt;}
.ye1{bottom:636.504017pt;}
.yb1{bottom:636.880215pt;}
.yce{bottom:639.444262pt;}
.y7d{bottom:642.790325pt;}
.y26{bottom:644.322285pt;}
.ycd{bottom:658.451423pt;}
.y25{bottom:662.329069pt;}
.y7c{bottom:664.798617pt;}
.yd5{bottom:666.679991pt;}
.y52{bottom:676.914955pt;}
.y24{bottom:680.335854pt;}
.y7b{bottom:686.806910pt;}
.ycc{bottom:696.465746pt;}
.y23{bottom:698.342638pt;}
.y75{bottom:706.871092pt;}
.y51{bottom:710.207986pt;}
.y94{bottom:711.464025pt;}
.y22{bottom:716.349423pt;}
.y74{bottom:721.876746pt;}
.y21{bottom:734.356207pt;}
.ycb{bottom:736.480823pt;}
.y73{bottom:736.882399pt;}
.y84{bottom:741.501643pt;}
.y95{bottom:746.999987pt;}
.y20{bottom:752.362992pt;}
.y49{bottom:763.639987pt;}
.y8{bottom:769.399986pt;}
.y1f{bottom:770.369777pt;}
.yca{bottom:771.494015pt;}
.y1e{bottom:788.376561pt;}
.yc9{bottom:789.500800pt;}
.y65{bottom:797.640223pt;}
.y83{bottom:803.525012pt;}
.y1d{bottom:806.383346pt;}
.y64{bottom:821.649269pt;}
.y1c{bottom:824.390130pt;}
.yc8{bottom:828.515500pt;}
.y63{bottom:845.658315pt;}
.y91{bottom:854.233183pt;}
.y82{bottom:865.548381pt;}
.yc7{bottom:869.530953pt;}
.y62{bottom:869.667362pt;}
.y90{bottom:878.242229pt;}
.y1b{bottom:888.061588pt;}
.yc6{bottom:888.538115pt;}
.y61{bottom:893.676408pt;}
.y8f{bottom:902.251275pt;}
.y60{bottom:917.685454pt;}
.y44{bottom:930.206871pt;}
.ybb{bottom:934.199979pt;}
.y1a{bottom:944.082695pt;}
.y7{bottom:947.751702pt;}
.y92{bottom:965.510801pt;}
.y43{bottom:971.222325pt;}
.y69{bottom:971.959978pt;}
.y19{bottom:1000.103803pt;}
.h26{height:13.119999pt;}
.h5{height:14.399999pt;}
.h18{height:17.919999pt;}
.hc{height:22.399999pt;}
.h4a{height:24.319999pt;}
.h2c{height:33.279999pt;}
.h2e{height:34.239999pt;}
.h3e{height:37.818129pt;}
.h9{height:38.964708pt;}
.h12{height:39.865580pt;}
.h36{height:39.897913pt;}
.h6{height:40.266154pt;}
.h2b{height:41.676184pt;}
.h29{height:41.678213pt;}
.h38{height:43.098798pt;}
.h10{height:43.152138pt;}
.h1e{height:43.434765pt;}
.h22{height:44.165760pt;}
.h34{height:44.359755pt;}
.h39{height:44.414655pt;}
.hf{height:45.552443pt;}
.h27{height:45.941934pt;}
.h15{height:46.198646pt;}
.h1b{height:47.366645pt;}
.h21{height:47.609377pt;}
.h49{height:47.936366pt;}
.h37{height:48.849646pt;}
.h3d{height:49.237542pt;}
.h25{height:49.860501pt;}
.h42{height:49.996086pt;}
.h43{height:50.037337pt;}
.h1f{height:51.512057pt;}
.h2a{height:51.579435pt;}
.h33{height:51.738605pt;}
.h1a{height:51.743450pt;}
.h47{height:51.885082pt;}
.h2d{height:52.479998pt;}
.h17{height:52.798453pt;}
.h28{height:53.119998pt;}
.h35{height:53.317006pt;}
.h1c{height:57.279998pt;}
.h3b{height:57.501461pt;}
.h3c{height:57.525163pt;}
.h40{height:58.387318pt;}
.h41{height:58.411385pt;}
.h7{height:59.606462pt;}
.h31{height:60.364184pt;}
.h32{height:60.438892pt;}
.h19{height:62.085432pt;}
.h14{height:62.878949pt;}
.hd{height:66.181203pt;}
.h4b{height:71.922531pt;}
.hb{height:72.436730pt;}
.h2f{height:73.279997pt;}
.h4{height:77.597237pt;}
.h16{height:80.288965pt;}
.h46{height:86.399996pt;}
.h24{height:96.686346pt;}
.h1d{height:100.654531pt;}
.h3{height:101.990431pt;}
.ha{height:106.239996pt;}
.h8{height:111.999995pt;}
.h13{height:123.839995pt;}
.h30{height:129.289400pt;}
.h11{height:150.861914pt;}
.h45{height:174.974218pt;}
.he{height:185.734134pt;}
.h20{height:202.002813pt;}
.h48{height:259.839989pt;}
.h3a{height:317.439987pt;}
.h3f{height:413.119983pt;}
.h44{height:527.039978pt;}
.h23{height:990.719959pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:115.199995pt;}
.wb{width:140.479994pt;}
.w5{width:157.439993pt;}
.wa{width:173.439993pt;}
.wc{width:175.679993pt;}
.wd{width:176.639993pt;}
.we{width:193.279992pt;}
.w14{width:244.159990pt;}
.w7{width:327.039986pt;}
.w8{width:442.879982pt;}
.w12{width:504.319979pt;}
.w11{width:514.879979pt;}
.w4{width:584.639976pt;}
.w3{width:590.079975pt;}
.w6{width:628.799974pt;}
.wf{width:638.399973pt;}
.w10{width:639.359973pt;}
.w9{width:682.239972pt;}
.w13{width:731.519970pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:1.589218pt;}
.x2f{left:2.919990pt;}
.xe{left:15.331252pt;}
.x8{left:16.962659pt;}
.xc{left:22.959183pt;}
.xa{left:24.046788pt;}
.x27{left:26.169124pt;}
.xf{left:29.558299pt;}
.x33{left:31.039999pt;}
.x25{left:46.775147pt;}
.x24{left:48.119404pt;}
.x1e{left:49.698655pt;}
.x20{left:56.959998pt;}
.x1d{left:71.454947pt;}
.x2e{left:76.479997pt;}
.x17{left:78.399997pt;}
.x2b{left:79.399997pt;}
.x14{left:81.128765pt;}
.x26{left:83.206240pt;}
.x18{left:84.799996pt;}
.x15{left:86.399996pt;}
.x13{left:87.610848pt;}
.x30{left:88.639996pt;}
.x28{left:89.552381pt;}
.x16{left:92.529177pt;}
.x10{left:102.719996pt;}
.x6{left:103.999996pt;}
.x1{left:114.196703pt;}
.x1c{left:120.942203pt;}
.x1b{left:138.336612pt;}
.x2d{left:141.318871pt;}
.x19{left:177.101217pt;}
.x12{left:187.721707pt;}
.x3{left:190.773547pt;}
.x1f{left:199.257374pt;}
.x9{left:200.268169pt;}
.xb{left:211.026639pt;}
.x1a{left:212.395765pt;}
.x31{left:230.399990pt;}
.x2{left:253.827437pt;}
.xd{left:261.732541pt;}
.x29{left:281.279988pt;}
.x22{left:283.199988pt;}
.x21{left:323.993190pt;}
.x5{left:354.115572pt;}
.x11{left:369.074397pt;}
.x2a{left:433.147598pt;}
.x4{left:462.399981pt;}
.x23{left:539.839978pt;}
.x32{left:679.419337pt;}
.x2c{left:683.187326pt;}
}




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