
    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_d43d687ce9db20cbe17b391f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179000;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_0304d59db435337adc71f5f6.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_9aaf1615a99201a02a6432c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_18b1102d6abfa87f6573f98d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ad1a3d298ca490b6603f0443.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.231000;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_c2635d437abf47e02606e3c7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.233000;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_3ab7078cd646cc2d80e9675e.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b81f59637c6628ef0e19b770.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985000;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_969c6f3c540f7ca6c015126a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_599f5ff036d2efbd097f19ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985000;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_dc19ed6bfadce468019b9478.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;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_d12054617349f6b5ce036677.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.735000;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_ed305f4aa04611791b0781eb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.712000;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_83593237f5fa142565fe5597.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.866000;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_a788345b5565df2f1e8173ea.woff2')format("woff");}.fff{font-family:fff;line-height:0.967000;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_10a4e3b35e6403aee6addba7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.985000;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_73386d035bea012ca8c65a97.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.859000;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_eae84c2353598ab4f520b2ee.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.985000;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_82bd2c4c1c850857fe3ff0d0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.985000;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_574ae01bc9ddd3821c457069.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.096000;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_b94b9228d22a0a2dd566e051.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.985000;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_9c14f95c443bc92121c683f7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.985000;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_338bd24570b9b01bd99d4717.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.766000;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_49c4eed4dc8c6812f21b47ec.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.985000;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_9f75c79dff8378ed2d3e1564.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.985000;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_e4debb250843e1da8794b864.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.985000;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_1c634ccf1d035dc1d6e47348.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.179000;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_9ff67f360ccd72be6cd21ece.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.575000;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_45b556fcbe85104fb569a598.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_2c13b0d9a4553a2036d9164c.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_5bdffd92a4d517d5d3ad1cf4.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_356cf6af9b73a33da6bb6f3a.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_624563cb91b2c1a5041a9948.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.985000;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_591d3f6ef2bbf2eab589e362.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.096000;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_38dbe9c5d293693905cde661.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.985000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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.249999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,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;}
}
.ws11{word-spacing:-112.270641px;}
.ws9{word-spacing:-72.000000px;}
.ws2{word-spacing:-35.606026px;}
.wsa{word-spacing:-25.797071px;}
.ws1{word-spacing:-25.774588px;}
.wse{word-spacing:-24.302077px;}
.ws10{word-spacing:-18.148997px;}
.wsf{word-spacing:-16.804627px;}
.ws0{word-spacing:0.000000px;}
.ws6{word-spacing:3.324307px;}
.ws4{word-spacing:3.324316px;}
.ws5{word-spacing:3.325858px;}
.ws7{word-spacing:3.328900px;}
.ws8{word-spacing:3.330975px;}
.ws3{word-spacing:3.336743px;}
.wsd{word-spacing:3.933347px;}
.wsb{word-spacing:3.940813px;}
.wsc{word-spacing:3.942858px;}
._1{margin-left:-1.008000px;}
._d{width:6.934668px;}
._e{width:8.525310px;}
._7{width:11.317894px;}
._0{width:12.350355px;}
._2{width:20.141519px;}
._f{width:21.457159px;}
._9{width:22.828419px;}
._8{width:23.861421px;}
._b{width:25.138061px;}
._10{width:27.413932px;}
._c{width:36.404614px;}
._11{width:38.402935px;}
._a{width:41.405276px;}
._3{width:756.664872px;}
._6{width:1146.847622px;}
._4{width:1251.601921px;}
._5{width:1377.470304px;}
.fc4{color:rgb(170,215,213);}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(73,64,60);}
.fs2{font-size:54.000000px;}
.fs7{font-size:67.218507px;}
.fs11{font-size:67.331481px;}
.fs8{font-size:71.999722px;}
.fs15{font-size:71.999970px;}
.fs14{font-size:71.999990px;}
.fs3{font-size:72.000000px;}
.fsc{font-size:72.000286px;}
.fsb{font-size:79.223423px;}
.fse{font-size:79.356574px;}
.fsa{font-size:79.583121px;}
.fs10{font-size:87.192000px;}
.fs13{font-size:89.924425px;}
.fsf{font-size:97.208308px;}
.fs5{font-size:103.098353px;}
.fs9{font-size:103.188282px;}
.fsd{font-size:103.361712px;}
.fs4{font-size:108.000000px;}
.fs6{font-size:131.874169px;}
.fs1{font-size:191.808799px;}
.fs0{font-size:220.233949px;}
.fs12{font-size:449.082565px;}
.y6d{bottom:-225.432000px;}
.y6c{bottom:-203.274000px;}
.y6b{bottom:-181.116000px;}
.y6a{bottom:-158.958000px;}
.y69{bottom:-136.800000px;}
.y68{bottom:-114.642000px;}
.y67{bottom:-92.484000px;}
.y66{bottom:-70.326000px;}
.y65{bottom:-48.168000px;}
.y64{bottom:-26.010000px;}
.y63{bottom:-3.852000px;}
.y0{bottom:0.000000px;}
.yf{bottom:1.060835px;}
.y1{bottom:1.060856px;}
.y46{bottom:1.061027px;}
.y18{bottom:1.061031px;}
.y25{bottom:1.061387px;}
.yad{bottom:4.621500px;}
.ya{bottom:7.725000px;}
.ye{bottom:10.665000px;}
.yc{bottom:13.200000px;}
.y41{bottom:13.542000px;}
.y74{bottom:13.731054px;}
.y3f{bottom:14.949000px;}
.y9f{bottom:17.984870px;}
.ya5{bottom:17.984873px;}
.y97{bottom:17.984877px;}
.y94{bottom:17.984895px;}
.y8f{bottom:17.984899px;}
.yf1{bottom:17.984909px;}
.y62{bottom:18.306000px;}
.y33{bottom:19.152000px;}
.y35{bottom:19.873500px;}
.y87{bottom:20.232999px;}
.y31{bottom:20.577000px;}
.y37{bottom:21.280500px;}
.y3b{bottom:21.984000px;}
.y39{bottom:22.687500px;}
.y88{bottom:23.605165px;}
.y105{bottom:25.853262px;}
.y1a{bottom:26.159955px;}
.ya8{bottom:26.977314px;}
.yee{bottom:26.977317px;}
.y8a{bottom:26.977328px;}
.ye9{bottom:26.977339px;}
.yd2{bottom:27.022578px;}
.ycd{bottom:27.022686px;}
.ya1{bottom:28.101369px;}
.y9a{bottom:28.101373px;}
.ye4{bottom:28.101383px;}
.y8c{bottom:28.101394px;}
.ybf{bottom:28.148605px;}
.ybb{bottom:28.148608px;}
.ybd{bottom:28.148616px;}
.yc2{bottom:28.148627px;}
.yc8{bottom:28.148630px;}
.yca{bottom:28.148673px;}
.ya6{bottom:29.225427px;}
.y98{bottom:29.225430px;}
.y90{bottom:29.225452px;}
.yf2{bottom:29.225463px;}
.y114{bottom:31.295825px;}
.y12b{bottom:31.296088px;}
.y156{bottom:31.296441px;}
.y42{bottom:33.200049px;}
.y12c{bottom:34.606904px;}
.y113{bottom:34.845712px;}
.y7f{bottom:35.889000px;}
.y73{bottom:35.889142px;}
.y116{bottom:38.827605px;}
.y157{bottom:40.234605px;}
.y61{bottom:40.464000px;}
.y9e{bottom:40.465976px;}
.ya4{bottom:40.465980px;}
.y96{bottom:40.465983px;}
.y93{bottom:40.466001px;}
.y8e{bottom:40.466005px;}
.yf0{bottom:40.466016px;}
.yf9{bottom:45.801038px;}
.y111{bottom:47.030399px;}
.y8{bottom:49.463955px;}
.yd1{bottom:54.977638px;}
.y85{bottom:55.527000px;}
.y7d{bottom:58.047000px;}
.y72{bottom:58.047230px;}
.yab{bottom:62.127973px;}
.y60{bottom:62.622000px;}
.y9d{bottom:62.947082px;}
.y92{bottom:62.947108px;}
.y7{bottom:65.663955px;}
.ydc{bottom:74.088028px;}
.y84{bottom:77.685000px;}
.y7c{bottom:80.205000px;}
.y71{bottom:80.205318px;}
.y6{bottom:81.863955px;}
.y45{bottom:84.425674px;}
.y5f{bottom:84.780000px;}
.yb9{bottom:87.034455px;}
.y6e{bottom:89.475861px;}
.y9{bottom:97.829955px;}
.y83{bottom:99.843000px;}
.y7b{bottom:102.363000px;}
.y70{bottom:102.363406px;}
.y44{bottom:106.583588px;}
.y5e{bottom:106.938000px;}
.yf8{bottom:115.492604px;}
.y56{bottom:118.197000px;}
.y82{bottom:122.001000px;}
.y7a{bottom:124.521000px;}
.y6f{bottom:124.521494px;}
.yd0{bottom:125.260075px;}
.y43{bottom:128.741503px;}
.y5d{bottom:129.096000px;}
.yaa{bottom:131.502851px;}
.y55{bottom:140.355000px;}
.y81{bottom:144.159000px;}
.ye2{bottom:144.778528px;}
.y5c{bottom:151.254000px;}
.yb8{bottom:151.751955px;}
.y54{bottom:162.513000px;}
.y5b{bottom:173.412000px;}
.y154{bottom:173.434127px;}
.y53{bottom:184.671000px;}
.yf7{bottom:190.153292px;}
.ycf{bottom:195.542404px;}
.y5a{bottom:195.570000px;}
.y153{bottom:195.592117px;}
.ya9{bottom:200.877908px;}
.y52{bottom:206.829000px;}
.ye1{bottom:211.543528px;}
.y2f{bottom:214.762008px;}
.y59{bottom:217.728000px;}
.y152{bottom:217.750108px;}
.y51{bottom:228.987000px;}
.yb7{bottom:229.130955px;}
.y58{bottom:239.886000px;}
.y151{bottom:239.908099px;}
.y50{bottom:251.145000px;}
.y4a{bottom:258.430905px;}
.yf6{bottom:260.317433px;}
.y150{bottom:262.066089px;}
.y80{bottom:262.444528px;}
.y40{bottom:265.337955px;}
.yce{bottom:265.824841px;}
.ya7{bottom:270.252965px;}
.y4f{bottom:273.303000px;}
.y2d{bottom:276.532930px;}
.ye0{bottom:283.543528px;}
.y14f{bottom:284.224080px;}
.y4e{bottom:295.461000px;}
.y57{bottom:304.730955px;}
.y14e{bottom:306.382070px;}
.y4d{bottom:317.619000px;}
.y3e{bottom:324.427455px;}
.y14d{bottom:328.540061px;}
.yf5{bottom:330.481934px;}
.ycc{bottom:336.107206px;}
.y4{bottom:337.749226px;}
.y2e{bottom:338.304211px;}
.y4c{bottom:339.777000px;}
.ya3{bottom:339.944314px;}
.ydb{bottom:350.307028px;}
.y14c{bottom:350.698052px;}
.yb6{bottom:365.599455px;}
.y14b{bottom:372.856042px;}
.y3d{bottom:382.109955px;}
.y3c{bottom:383.516955px;}
.y16{bottom:389.366480px;}
.y14a{bottom:395.014033px;}
.yf4{bottom:400.646435px;}
.ycb{bottom:405.598795px;}
.ya2{bottom:413.815595px;}
.y149{bottom:417.172024px;}
.ydf{bottom:420.999028px;}
.yb5{bottom:434.537955px;}
.y148{bottom:439.330014px;}
.y2c{bottom:458.676038px;}
.y147{bottom:461.488005px;}
.y108{bottom:464.419857px;}
.yf3{bottom:470.811260px;}
.yc9{bottom:475.090413px;}
.y10b{bottom:482.371455px;}
.ya0{bottom:483.190652px;}
.y78{bottom:483.515783px;}
.y146{bottom:483.645995px;}
.y15{bottom:489.710320px;}
.yde{bottom:492.999028px;}
.y145{bottom:505.803986px;}
.y3a{bottom:505.916955px;}
.yb4{bottom:509.102955px;}
.y115{bottom:527.181935px;}
.y144{bottom:527.961977px;}
.y107{bottom:534.584682px;}
.yef{bottom:540.502790px;}
.yc7{bottom:544.582082px;}
.y10e{bottom:549.902955px;}
.y143{bottom:550.119967px;}
.y9c{bottom:552.882106px;}
.ydd{bottom:562.381528px;}
.y7e{bottom:564.628528px;}
.y142{bottom:572.277958px;}
.y2b{bottom:578.196393px;}
.y49{bottom:584.451680px;}
.y14{bottom:589.889639px;}
.y141{bottom:594.435949px;}
.yb3{bottom:596.330955px;}
.y106{bottom:604.749183px;}
.y5{bottom:605.151447px;}
.yc6{bottom:614.073685px;}
.yed{bottom:615.163518px;}
.y140{bottom:616.593939px;}
.y10d{bottom:618.841455px;}
.yd{bottom:623.699955px;}
.y36{bottom:624.095955px;}
.y38{bottom:625.502955px;}
.y129{bottom:631.716960px;}
.y110{bottom:637.277995px;}
.y13f{bottom:638.751930px;}
.y48{bottom:648.844704px;}
.y9b{bottom:649.550810px;}
.y128{bottom:653.874957px;}
.y13e{bottom:660.909921px;}
.yb2{bottom:670.895955px;}
.y104{bottom:674.913673px;}
.y127{bottom:676.032954px;}
.y13d{bottom:683.067911px;}
.yc5{bottom:683.565238px;}
.yec{bottom:684.538399px;}
.y13{bottom:689.512763px;}
.y2a{bottom:696.939433px;}
.y126{bottom:698.190951px;}
.yda{bottom:703.764028px;}
.y13c{bottom:705.225902px;}
.yb{bottom:710.759955px;}
.y125{bottom:720.348948px;}
.y99{bottom:723.422087px;}
.y4b{bottom:723.985455px;}
.y13b{bottom:727.383892px;}
.y34{bottom:738.053955px;}
.y124{bottom:742.506945px;}
.y165{bottom:743.914095px;}
.yb1{bottom:744.055455px;}
.y103{bottom:744.604868px;}
.y13a{bottom:749.541883px;}
.yc4{bottom:753.056881px;}
.yeb{bottom:753.913629px;}
.y123{bottom:764.664942px;}
.y10a{bottom:765.157455px;}
.y164{bottom:766.072091px;}
.y77{bottom:766.744162px;}
.y10f{bottom:767.668411px;}
.y139{bottom:771.699724px;}
.yd9{bottom:773.145028px;}
.y12{bottom:783.265863px;}
.y122{bottom:786.822938px;}
.y163{bottom:788.229938px;}
.y95{bottom:793.113458px;}
.y138{bottom:793.857864px;}
.y121{bottom:808.980935px;}
.y162{bottom:810.387935px;}
.y29{bottom:811.344195px;}
.y137{bottom:816.015855px;}
.y102{bottom:818.792639px;}
.yb0{bottom:821.434455px;}
.yc3{bottom:822.548481px;}
.yea{bottom:823.288509px;}
.y120{bottom:831.139082px;}
.y161{bottom:832.546082px;}
.y136{bottom:838.173846px;}
.y24{bottom:839.579700px;}
.yd8{bottom:841.218028px;}
.y79{bottom:841.284028px;}
.y109{bottom:842.537955px;}
.y11f{bottom:853.297079px;}
.y160{bottom:854.704079px;}
.y135{bottom:860.331836px;}
.y23{bottom:861.737700px;}
.y91{bottom:867.301143px;}
.y11e{bottom:875.455076px;}
.y15f{bottom:876.862076px;}
.y134{bottom:882.489977px;}
.y22{bottom:883.895700px;}
.yc1{bottom:892.040081px;}
.ye8{bottom:892.663390px;}
.y101{bottom:892.663743px;}
.y11{bottom:895.913163px;}
.y11d{bottom:897.613073px;}
.y15e{bottom:899.020073px;}
.y133{bottom:904.647967px;}
.y21{bottom:906.053850px;}
.yd7{bottom:910.600528px;}
.yaf{bottom:912.881955px;}
.y11c{bottom:919.771220px;}
.y15d{bottom:921.178219px;}
.y27{bottom:921.599112px;}
.y132{bottom:926.805958px;}
.y20{bottom:928.211850px;}
.y11b{bottom:941.929216px;}
.y15c{bottom:943.336216px;}
.y131{bottom:948.963949px;}
.y1f{bottom:950.369850px;}
.yc0{bottom:961.531721px;}
.ye7{bottom:962.038620px;}
.y100{bottom:962.038973px;}
.y8d{bottom:963.969840px;}
.y11a{bottom:964.087213px;}
.y15b{bottom:965.494213px;}
.y30{bottom:967.378455px;}
.y32{bottom:970.192455px;}
.y130{bottom:971.121939px;}
.y1e{bottom:972.527850px;}
.y10c{bottom:977.599455px;}
.yd6{bottom:981.292528px;}
.yfd{bottom:981.820455px;}
.yae{bottom:984.634455px;}
.y119{bottom:986.245210px;}
.y15a{bottom:987.652210px;}
.y12f{bottom:993.280080px;}
.y1d{bottom:994.686000px;}
.y17{bottom:1003.038647px;}
.y118{bottom:1008.403207px;}
.y159{bottom:1009.810357px;}
.y12e{bottom:1015.438071px;}
.y1c{bottom:1016.844000px;}
.y3{bottom:1023.229679px;}
.y117{bottom:1030.561354px;}
.ybe{bottom:1031.023342px;}
.ye6{bottom:1031.413501px;}
.yff{bottom:1031.413853px;}
.y158{bottom:1031.968354px;}
.y28{bottom:1037.422076px;}
.y12d{bottom:1037.596061px;}
.y8b{bottom:1037.841117px;}
.y1b{bottom:1039.002000px;}
.y76{bottom:1045.519766px;}
.yfc{bottom:1049.350455px;}
.yd5{bottom:1049.365528px;}
.yac{bottom:1063.420455px;}
.y2{bottom:1099.783741px;}
.ybc{bottom:1100.514942px;}
.ye5{bottom:1100.788392px;}
.yfe{bottom:1100.789094px;}
.y89{bottom:1107.216098px;}
.y112{bottom:1110.700167px;}
.y12a{bottom:1110.700257px;}
.y155{bottom:1110.700610px;}
.yd4{bottom:1117.438528px;}
.yfb{bottom:1119.695955px;}
.y26{bottom:1122.899022px;}
.y19{bottom:1122.899025px;}
.y10{bottom:1122.899221px;}
.y47{bottom:1129.055503px;}
.y75{bottom:1129.892047px;}
.yba{bottom:1170.006565px;}
.ye3{bottom:1170.163624px;}
.y86{bottom:1176.907602px;}
.yd3{bottom:1189.438528px;}
.yfa{bottom:1192.853955px;}
.h35{height:24.000000px;}
.h1d{height:38.440500px;}
.h6{height:39.313477px;}
.h1c{height:41.254500px;}
.h16{height:49.696500px;}
.h18{height:50.400000px;}
.h32{height:50.413880px;}
.h38{height:50.498611px;}
.h17{height:51.103500px;}
.h1f{height:52.055799px;}
.h41{height:52.055993px;}
.h12{height:52.056000px;}
.h28{height:52.056207px;}
.h15{height:52.510500px;}
.h19{height:53.917500px;}
.h1b{height:55.324500px;}
.h1a{height:56.731500px;}
.h2b{height:59.517431px;}
.h2e{height:59.574933px;}
.h43{height:60.047975px;}
.h25{height:60.048000px;}
.h14{height:62.445993px;}
.h30{height:66.319262px;}
.h31{height:66.319273px;}
.h37{height:66.430722px;}
.h39{height:66.430732px;}
.h3a{height:66.430743px;}
.h3b{height:66.430765px;}
.h8{height:67.032000px;}
.h3d{height:67.443319px;}
.h33{height:70.815496px;}
.h23{height:73.598560px;}
.hb{height:73.665000px;}
.h22{height:73.932719px;}
.h2a{height:77.521284px;}
.h3e{height:88.800365px;}
.h2f{height:90.306518px;}
.h36{height:93.033864px;}
.h34{height:93.296599px;}
.h9{height:93.300000px;}
.he{height:95.778370px;}
.h21{height:95.861914px;}
.hf{height:98.905627px;}
.h7{height:99.120000px;}
.hc{height:100.548000px;}
.ha{height:100.764000px;}
.h5{height:127.841314px;}
.h4{height:146.947268px;}
.h2c{height:148.179000px;}
.h27{height:148.180188px;}
.h1e{height:152.398812px;}
.h2d{height:167.817000px;}
.h3{height:204.597339px;}
.h26{height:263.544000px;}
.h24{height:363.435000px;}
.h3c{height:417.197703px;}
.h40{height:1054.219200px;}
.h44{height:1055.626200px;}
.h42{height:1061.253601px;}
.h11{height:1062.660000px;}
.h3f{height:1066.728484px;}
.h13{height:1262.313568px;}
.h10{height:1262.313924px;}
.h20{height:1262.313928px;}
.h2{height:1262.314099px;}
.hd{height:1262.314120px;}
.h1{height:1263.000000px;}
.h0{height:1263.374955px;}
.h29{height:1263.374968px;}
.w1b{width:24.000000px;}
.w16{width:40.465985px;}
.w1e{width:40.534012px;}
.w15{width:41.590062px;}
.w1d{width:41.659935px;}
.w17{width:43.838128px;}
.w18{width:43.838172px;}
.w1f{width:43.911824px;}
.w19{width:46.086238px;}
.w20{width:46.163758px;}
.w22{width:47.210360px;}
.wb{width:85.531500px;}
.w5{width:254.358298px;}
.wc{width:334.552500px;}
.w8{width:335.958903px;}
.wa{width:337.364701px;}
.w9{width:338.771403px;}
.w7{width:338.772000px;}
.w2{width:375.525000px;}
.w6{width:426.000000px;}
.w3{width:440.805000px;}
.w14{width:577.764426px;}
.w1c{width:578.735483px;}
.we{width:722.854500px;}
.wf{width:727.074901px;}
.w12{width:728.481599px;}
.w10{width:728.481602px;}
.w13{width:728.482799px;}
.w4{width:732.705000px;}
.wd{width:735.516602px;}
.w25{width:811.489201px;}
.w26{width:815.709901px;}
.w27{width:817.116901px;}
.w24{width:825.056606px;}
.w1a{width:861.026364px;}
.w23{width:862.150392px;}
.w21{width:862.473492px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w11{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.500000px;}
.x7{left:2.999880px;}
.x24{left:12.364608px;}
.x6{left:16.890000px;}
.x26{left:18.511773px;}
.x2c{left:21.023334px;}
.x23{left:22.685241px;}
.x5{left:28.804500px;}
.x42{left:36.086752px;}
.x46{left:38.079299px;}
.x44{left:39.486150px;}
.x3f{left:63.371125px;}
.x14{left:74.087295px;}
.x11{left:76.065000px;}
.x19{left:77.472299px;}
.x9{left:79.732854px;}
.x21{left:81.273003px;}
.x20{left:83.100000px;}
.x16{left:84.506851px;}
.x22{left:86.087850px;}
.x1e{left:87.435518px;}
.x1f{left:89.216359px;}
.x40{left:92.333113px;}
.xd{left:180.798807px;}
.xf{left:191.520359px;}
.xc{left:214.106846px;}
.x8{left:250.215000px;}
.x47{left:265.803953px;}
.xa{left:268.605965px;}
.x1{left:276.326738px;}
.x10{left:278.765478px;}
.x45{left:282.155450px;}
.xe{left:294.915885px;}
.xb{left:314.569289px;}
.x41{left:328.987228px;}
.x2{left:367.754071px;}
.x15{left:377.015917px;}
.x17{left:384.175500px;}
.x43{left:412.458044px;}
.x13{left:468.253060px;}
.x1a{left:471.403500px;}
.x1b{left:472.810500px;}
.x18{left:474.217500px;}
.x1d{left:481.251000px;}
.x1c{left:568.479000px;}
.x25{left:604.260695px;}
.x31{left:605.276255px;}
.x27{left:649.687437px;}
.x32{left:650.779389px;}
.x28{left:693.913903px;}
.x33{left:695.080159px;}
.x3d{left:702.133500px;}
.x3e{left:703.540500px;}
.x29{left:740.799005px;}
.x34{left:742.044065px;}
.x38{left:750.303000px;}
.x37{left:752.922000px;}
.x3b{left:754.230000px;}
.x2a{left:788.191671px;}
.x35{left:789.516435px;}
.x3{left:792.159734px;}
.x2e{left:794.989500px;}
.x2d{left:796.396500px;}
.x2f{left:797.803500px;}
.x30{left:799.209000px;}
.x3a{left:801.358500px;}
.x39{left:802.666500px;}
.x3c{left:803.976000px;}
.x2b{left:837.339589px;}
.x36{left:838.746865px;}
.x4{left:858.478997px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws11{word-spacing:-99.796126pt;}
.ws9{word-spacing:-64.000000pt;}
.ws2{word-spacing:-31.649801pt;}
.wsa{word-spacing:-22.930729pt;}
.ws1{word-spacing:-22.910745pt;}
.wse{word-spacing:-21.601846pt;}
.ws10{word-spacing:-16.132442pt;}
.wsf{word-spacing:-14.937446pt;}
.ws0{word-spacing:0.000000pt;}
.ws6{word-spacing:2.954940pt;}
.ws4{word-spacing:2.954947pt;}
.ws5{word-spacing:2.956319pt;}
.ws7{word-spacing:2.959022pt;}
.ws8{word-spacing:2.960866pt;}
.ws3{word-spacing:2.965994pt;}
.wsd{word-spacing:3.496309pt;}
.wsb{word-spacing:3.502945pt;}
.wsc{word-spacing:3.504763pt;}
._1{margin-left:-0.896000pt;}
._d{width:6.164149pt;}
._e{width:7.578053pt;}
._7{width:10.060350pt;}
._0{width:10.978094pt;}
._2{width:17.903572pt;}
._f{width:19.073030pt;}
._9{width:20.291928pt;}
._8{width:21.210152pt;}
._b{width:22.344943pt;}
._10{width:24.367939pt;}
._c{width:32.359657pt;}
._11{width:34.135943pt;}
._a{width:36.804690pt;}
._3{width:672.590997pt;}
._6{width:1019.420109pt;}
._4{width:1112.535041pt;}
._5{width:1224.418048pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:59.749784pt;}
.fs11{font-size:59.850206pt;}
.fs8{font-size:63.999753pt;}
.fs15{font-size:63.999973pt;}
.fs14{font-size:63.999991pt;}
.fs3{font-size:64.000000pt;}
.fsc{font-size:64.000254pt;}
.fsb{font-size:70.420820pt;}
.fse{font-size:70.539177pt;}
.fsa{font-size:70.740552pt;}
.fs10{font-size:77.504000pt;}
.fs13{font-size:79.932822pt;}
.fsf{font-size:86.407385pt;}
.fs5{font-size:91.642981pt;}
.fs9{font-size:91.722918pt;}
.fsd{font-size:91.877077pt;}
.fs4{font-size:96.000000pt;}
.fs6{font-size:117.221484pt;}
.fs1{font-size:170.496710pt;}
.fs0{font-size:195.763510pt;}
.fs12{font-size:399.184502pt;}
.y6d{bottom:-200.384000pt;}
.y6c{bottom:-180.688000pt;}
.y6b{bottom:-160.992000pt;}
.y6a{bottom:-141.296000pt;}
.y69{bottom:-121.600000pt;}
.y68{bottom:-101.904000pt;}
.y67{bottom:-82.208000pt;}
.y66{bottom:-62.512000pt;}
.y65{bottom:-42.816000pt;}
.y64{bottom:-23.120000pt;}
.y63{bottom:-3.424000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:0.942965pt;}
.y1{bottom:0.942983pt;}
.y46{bottom:0.943135pt;}
.y18{bottom:0.943139pt;}
.y25{bottom:0.943455pt;}
.yad{bottom:4.108000pt;}
.ya{bottom:6.866667pt;}
.ye{bottom:9.480000pt;}
.yc{bottom:11.733333pt;}
.y41{bottom:12.037333pt;}
.y74{bottom:12.205382pt;}
.y3f{bottom:13.288000pt;}
.y9f{bottom:15.986551pt;}
.ya5{bottom:15.986554pt;}
.y97{bottom:15.986557pt;}
.y94{bottom:15.986573pt;}
.y8f{bottom:15.986577pt;}
.yf1{bottom:15.986586pt;}
.y62{bottom:16.272000pt;}
.y33{bottom:17.024000pt;}
.y35{bottom:17.665333pt;}
.y87{bottom:17.984888pt;}
.y31{bottom:18.290667pt;}
.y37{bottom:18.916000pt;}
.y3b{bottom:19.541333pt;}
.y39{bottom:20.166667pt;}
.y88{bottom:20.982369pt;}
.y105{bottom:22.980677pt;}
.y1a{bottom:23.253293pt;}
.ya8{bottom:23.979835pt;}
.yee{bottom:23.979838pt;}
.y8a{bottom:23.979847pt;}
.ye9{bottom:23.979857pt;}
.yd2{bottom:24.020069pt;}
.ycd{bottom:24.020165pt;}
.ya1{bottom:24.978995pt;}
.y9a{bottom:24.978998pt;}
.ye4{bottom:24.979007pt;}
.y8c{bottom:24.979017pt;}
.ybf{bottom:25.020982pt;}
.ybb{bottom:25.020985pt;}
.ybd{bottom:25.020992pt;}
.yc2{bottom:25.021001pt;}
.yc8{bottom:25.021005pt;}
.yca{bottom:25.021043pt;}
.ya6{bottom:25.978157pt;}
.y98{bottom:25.978160pt;}
.y90{bottom:25.978179pt;}
.yf2{bottom:25.978189pt;}
.y114{bottom:27.818511pt;}
.y12b{bottom:27.818745pt;}
.y156{bottom:27.819058pt;}
.y42{bottom:29.511155pt;}
.y12c{bottom:30.761693pt;}
.y113{bottom:30.973966pt;}
.y7f{bottom:31.901333pt;}
.y73{bottom:31.901460pt;}
.y116{bottom:34.513426pt;}
.y157{bottom:35.764093pt;}
.y61{bottom:35.968000pt;}
.y9e{bottom:35.969757pt;}
.ya4{bottom:35.969760pt;}
.y96{bottom:35.969763pt;}
.y93{bottom:35.969779pt;}
.y8e{bottom:35.969782pt;}
.yf0{bottom:35.969792pt;}
.yf9{bottom:40.712034pt;}
.y111{bottom:41.804800pt;}
.y8{bottom:43.967960pt;}
.yd1{bottom:48.869012pt;}
.y85{bottom:49.357333pt;}
.y7d{bottom:51.597333pt;}
.y72{bottom:51.597538pt;}
.yab{bottom:55.224865pt;}
.y60{bottom:55.664000pt;}
.y9d{bottom:55.952962pt;}
.y92{bottom:55.952985pt;}
.y7{bottom:58.367960pt;}
.ydc{bottom:65.856025pt;}
.y84{bottom:69.053333pt;}
.y7c{bottom:71.293333pt;}
.y71{bottom:71.293616pt;}
.y6{bottom:72.767960pt;}
.y45{bottom:75.045044pt;}
.y5f{bottom:75.360000pt;}
.yb9{bottom:77.363960pt;}
.y6e{bottom:79.534099pt;}
.y9{bottom:86.959960pt;}
.y83{bottom:88.749333pt;}
.y7b{bottom:90.989333pt;}
.y70{bottom:90.989694pt;}
.y44{bottom:94.740968pt;}
.y5e{bottom:95.056000pt;}
.yf8{bottom:102.660092pt;}
.y56{bottom:105.064000pt;}
.y82{bottom:108.445333pt;}
.y7a{bottom:110.685333pt;}
.y6f{bottom:110.685773pt;}
.yd0{bottom:111.342289pt;}
.y43{bottom:114.436891pt;}
.y5d{bottom:114.752000pt;}
.yaa{bottom:116.891423pt;}
.y55{bottom:124.760000pt;}
.y81{bottom:128.141333pt;}
.ye2{bottom:128.692025pt;}
.y5c{bottom:134.448000pt;}
.yb8{bottom:134.890627pt;}
.y54{bottom:144.456000pt;}
.y5b{bottom:154.144000pt;}
.y154{bottom:154.163668pt;}
.y53{bottom:164.152000pt;}
.yf7{bottom:169.025149pt;}
.ycf{bottom:173.815470pt;}
.y5a{bottom:173.840000pt;}
.y153{bottom:173.859660pt;}
.ya9{bottom:178.558140pt;}
.y52{bottom:183.848000pt;}
.ye1{bottom:188.038692pt;}
.y2f{bottom:190.899563pt;}
.y59{bottom:193.536000pt;}
.y152{bottom:193.555651pt;}
.y51{bottom:203.544000pt;}
.yb7{bottom:203.671960pt;}
.y58{bottom:213.232000pt;}
.y151{bottom:213.251643pt;}
.y50{bottom:223.240000pt;}
.y4a{bottom:229.716360pt;}
.yf6{bottom:231.393274pt;}
.y150{bottom:232.947635pt;}
.y80{bottom:233.284025pt;}
.y40{bottom:235.855960pt;}
.yce{bottom:236.288748pt;}
.ya7{bottom:240.224858pt;}
.y4f{bottom:242.936000pt;}
.y2d{bottom:245.807049pt;}
.ye0{bottom:252.038692pt;}
.y14f{bottom:252.643627pt;}
.y4e{bottom:262.632000pt;}
.y57{bottom:270.871960pt;}
.y14e{bottom:272.339618pt;}
.y4d{bottom:282.328000pt;}
.y3e{bottom:288.379960pt;}
.y14d{bottom:292.035610pt;}
.yf5{bottom:293.761719pt;}
.ycc{bottom:298.761961pt;}
.y4{bottom:300.221534pt;}
.y2e{bottom:300.714854pt;}
.y4c{bottom:302.024000pt;}
.ya3{bottom:302.172724pt;}
.ydb{bottom:311.384025pt;}
.y14c{bottom:311.731602pt;}
.yb6{bottom:324.977293pt;}
.y14b{bottom:331.427593pt;}
.y3d{bottom:339.653293pt;}
.y3c{bottom:340.903960pt;}
.y16{bottom:346.103538pt;}
.y14a{bottom:351.123585pt;}
.yf4{bottom:356.130165pt;}
.ycb{bottom:360.532263pt;}
.ya2{bottom:367.836084pt;}
.y149{bottom:370.819577pt;}
.ydf{bottom:374.221358pt;}
.yb5{bottom:386.255960pt;}
.y148{bottom:390.515568pt;}
.y2c{bottom:407.712034pt;}
.y147{bottom:410.211560pt;}
.y108{bottom:412.817650pt;}
.yf3{bottom:418.498898pt;}
.yc9{bottom:422.302590pt;}
.y10b{bottom:428.774627pt;}
.ya0{bottom:429.502802pt;}
.y78{bottom:429.791807pt;}
.y146{bottom:429.907552pt;}
.y15{bottom:435.298062pt;}
.yde{bottom:438.221358pt;}
.y145{bottom:449.603543pt;}
.y3a{bottom:449.703960pt;}
.yb4{bottom:452.535960pt;}
.y115{bottom:468.606165pt;}
.y144{bottom:469.299535pt;}
.y107{bottom:475.186384pt;}
.yef{bottom:480.446924pt;}
.yc7{bottom:484.072961pt;}
.y10e{bottom:488.802627pt;}
.y143{bottom:488.995527pt;}
.y9c{bottom:491.450761pt;}
.ydd{bottom:499.894692pt;}
.y7e{bottom:501.892025pt;}
.y142{bottom:508.691518pt;}
.y2b{bottom:513.952350pt;}
.y49{bottom:519.512604pt;}
.y14{bottom:524.346346pt;}
.y141{bottom:528.387510pt;}
.yb3{bottom:530.071960pt;}
.y106{bottom:537.554829pt;}
.y5{bottom:537.912397pt;}
.yc6{bottom:545.843276pt;}
.yed{bottom:546.812016pt;}
.y140{bottom:548.083502pt;}
.y10d{bottom:550.081293pt;}
.yd{bottom:554.399960pt;}
.y36{bottom:554.751960pt;}
.y38{bottom:556.002627pt;}
.y129{bottom:561.526187pt;}
.y110{bottom:566.469329pt;}
.y13f{bottom:567.779493pt;}
.y48{bottom:576.750848pt;}
.y9b{bottom:577.378498pt;}
.y128{bottom:581.222184pt;}
.y13e{bottom:587.475485pt;}
.yb2{bottom:596.351960pt;}
.y104{bottom:599.923265pt;}
.y127{bottom:600.918181pt;}
.y13d{bottom:607.171477pt;}
.yc5{bottom:607.613545pt;}
.yec{bottom:608.478577pt;}
.y13{bottom:612.900234pt;}
.y2a{bottom:619.501718pt;}
.y126{bottom:620.614179pt;}
.yda{bottom:625.568025pt;}
.y13c{bottom:626.867468pt;}
.yb{bottom:631.786627pt;}
.y125{bottom:640.310176pt;}
.y99{bottom:643.041855pt;}
.y4b{bottom:643.542627pt;}
.y13b{bottom:646.563460pt;}
.y34{bottom:656.047960pt;}
.y124{bottom:660.006173pt;}
.y165{bottom:661.256973pt;}
.yb1{bottom:661.382627pt;}
.y103{bottom:661.870994pt;}
.y13a{bottom:666.259452pt;}
.yc4{bottom:669.383895pt;}
.yeb{bottom:670.145448pt;}
.y123{bottom:679.702170pt;}
.y10a{bottom:680.139960pt;}
.y164{bottom:680.952970pt;}
.y77{bottom:681.550366pt;}
.y10f{bottom:682.371921pt;}
.y139{bottom:685.955310pt;}
.yd9{bottom:687.240025pt;}
.y12{bottom:696.236323pt;}
.y122{bottom:699.398167pt;}
.y163{bottom:700.648834pt;}
.y95{bottom:704.989741pt;}
.y138{bottom:705.651435pt;}
.y121{bottom:719.094165pt;}
.y162{bottom:720.344831pt;}
.y29{bottom:721.194840pt;}
.y137{bottom:725.347427pt;}
.y102{bottom:727.815679pt;}
.yb0{bottom:730.163960pt;}
.yc3{bottom:731.154206pt;}
.yea{bottom:731.812008pt;}
.y120{bottom:738.790295pt;}
.y161{bottom:740.040962pt;}
.y136{bottom:745.043418pt;}
.y24{bottom:746.293067pt;}
.yd8{bottom:747.749358pt;}
.y79{bottom:747.808025pt;}
.y109{bottom:748.922627pt;}
.y11f{bottom:758.486292pt;}
.y160{bottom:759.736959pt;}
.y135{bottom:764.739410pt;}
.y23{bottom:765.989067pt;}
.y91{bottom:770.934349pt;}
.y11e{bottom:778.182290pt;}
.y15f{bottom:779.432956pt;}
.y134{bottom:784.435535pt;}
.y22{bottom:785.685067pt;}
.yc1{bottom:792.924517pt;}
.ye8{bottom:793.478569pt;}
.y101{bottom:793.478883pt;}
.y11{bottom:796.367256pt;}
.y11d{bottom:797.878287pt;}
.y15e{bottom:799.128953pt;}
.y133{bottom:804.131527pt;}
.y21{bottom:805.381200pt;}
.yd7{bottom:809.422692pt;}
.yaf{bottom:811.450627pt;}
.y11c{bottom:817.574417pt;}
.y15d{bottom:818.825084pt;}
.y27{bottom:819.199210pt;}
.y132{bottom:823.827518pt;}
.y20{bottom:825.077200pt;}
.y11b{bottom:837.270415pt;}
.y15c{bottom:838.521081pt;}
.y131{bottom:843.523510pt;}
.y1f{bottom:844.773200pt;}
.yc0{bottom:854.694863pt;}
.ye7{bottom:855.145440pt;}
.y100{bottom:855.145754pt;}
.y8d{bottom:856.862080pt;}
.y11a{bottom:856.966412pt;}
.y15b{bottom:858.217078pt;}
.y30{bottom:859.891960pt;}
.y32{bottom:862.393293pt;}
.y130{bottom:863.219502pt;}
.y1e{bottom:864.469200pt;}
.y10c{bottom:868.977293pt;}
.yd6{bottom:872.260025pt;}
.yfd{bottom:872.729293pt;}
.yae{bottom:875.230627pt;}
.y119{bottom:876.662409pt;}
.y15a{bottom:877.913076pt;}
.y12f{bottom:882.915627pt;}
.y1d{bottom:884.165333pt;}
.y17{bottom:891.589908pt;}
.y118{bottom:896.358406pt;}
.y159{bottom:897.609206pt;}
.y12e{bottom:902.611618pt;}
.y1c{bottom:903.861333pt;}
.y3{bottom:909.537493pt;}
.y117{bottom:916.054537pt;}
.ybe{bottom:916.465193pt;}
.ye6{bottom:916.812001pt;}
.yff{bottom:916.812314pt;}
.y158{bottom:917.305203pt;}
.y28{bottom:922.152957pt;}
.y12d{bottom:922.307610pt;}
.y8b{bottom:922.525437pt;}
.y1b{bottom:923.557333pt;}
.y76{bottom:929.350903pt;}
.yfc{bottom:932.755960pt;}
.yd5{bottom:932.769358pt;}
.yac{bottom:945.262627pt;}
.y2{bottom:977.585548pt;}
.ybc{bottom:978.235504pt;}
.ye5{bottom:978.478571pt;}
.yfe{bottom:978.479195pt;}
.y89{bottom:984.192087pt;}
.y112{bottom:987.289038pt;}
.y12a{bottom:987.289118pt;}
.y155{bottom:987.289431pt;}
.yd4{bottom:993.278692pt;}
.yfb{bottom:995.285293pt;}
.y26{bottom:998.132464pt;}
.y19{bottom:998.132466pt;}
.y10{bottom:998.132641pt;}
.y47{bottom:1003.604891pt;}
.y75{bottom:1004.348486pt;}
.yba{bottom:1040.005835pt;}
.ye3{bottom:1040.145443pt;}
.y86{bottom:1046.140090pt;}
.yd3{bottom:1057.278692pt;}
.yfa{bottom:1060.314627pt;}
.h35{height:21.333333pt;}
.h1d{height:34.169333pt;}
.h6{height:34.945312pt;}
.h1c{height:36.670667pt;}
.h16{height:44.174667pt;}
.h18{height:44.800000pt;}
.h32{height:44.812338pt;}
.h38{height:44.887654pt;}
.h17{height:45.425333pt;}
.h1f{height:46.271821pt;}
.h41{height:46.271993pt;}
.h12{height:46.272000pt;}
.h28{height:46.272184pt;}
.h15{height:46.676000pt;}
.h19{height:47.926667pt;}
.h1b{height:49.177333pt;}
.h1a{height:50.428000pt;}
.h2b{height:52.904383pt;}
.h2e{height:52.955496pt;}
.h43{height:53.375977pt;}
.h25{height:53.376000pt;}
.h14{height:55.507549pt;}
.h30{height:58.950455pt;}
.h31{height:58.950465pt;}
.h37{height:59.049530pt;}
.h39{height:59.049540pt;}
.h3a{height:59.049550pt;}
.h3b{height:59.049569pt;}
.h8{height:59.584000pt;}
.h3d{height:59.949617pt;}
.h33{height:62.947108pt;}
.h23{height:65.420942pt;}
.hb{height:65.480000pt;}
.h22{height:65.717973pt;}
.h2a{height:68.907808pt;}
.h3e{height:78.933658pt;}
.h2f{height:80.272461pt;}
.h36{height:82.696768pt;}
.h34{height:82.930310pt;}
.h9{height:82.933333pt;}
.he{height:85.136329pt;}
.h21{height:85.210590pt;}
.hf{height:87.916113pt;}
.h7{height:88.106667pt;}
.hc{height:89.376000pt;}
.ha{height:89.568000pt;}
.h5{height:113.636723pt;}
.h4{height:130.619794pt;}
.h2c{height:131.714667pt;}
.h27{height:131.715723pt;}
.h1e{height:135.465610pt;}
.h2d{height:149.170667pt;}
.h3{height:181.864301pt;}
.h26{height:234.261333pt;}
.h24{height:323.053333pt;}
.h3c{height:370.842403pt;}
.h40{height:937.083734pt;}
.h44{height:938.334400pt;}
.h42{height:943.336534pt;}
.h11{height:944.586667pt;}
.h3f{height:948.203096pt;}
.h13{height:1122.056505pt;}
.h10{height:1122.056821pt;}
.h20{height:1122.056825pt;}
.h2{height:1122.056977pt;}
.hd{height:1122.056995pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.999960pt;}
.h29{height:1122.999972pt;}
.w1b{width:21.333333pt;}
.w16{width:35.969764pt;}
.w1e{width:36.030233pt;}
.w15{width:36.968944pt;}
.w1d{width:37.031053pt;}
.w17{width:38.967225pt;}
.w18{width:38.967264pt;}
.w1f{width:39.032733pt;}
.w19{width:40.965545pt;}
.w20{width:41.034451pt;}
.w22{width:41.964764pt;}
.wb{width:76.028000pt;}
.w5{width:226.096265pt;}
.wc{width:297.380000pt;}
.w8{width:298.630136pt;}
.wa{width:299.879735pt;}
.w9{width:301.130136pt;}
.w7{width:301.130667pt;}
.w2{width:333.800000pt;}
.w6{width:378.666667pt;}
.w3{width:391.826667pt;}
.w14{width:513.568379pt;}
.w1c{width:514.431540pt;}
.we{width:642.537333pt;}
.wf{width:646.288801pt;}
.w12{width:647.539199pt;}
.w10{width:647.539202pt;}
.w13{width:647.540266pt;}
.w4{width:651.293333pt;}
.wd{width:653.792535pt;}
.w25{width:721.323734pt;}
.w26{width:725.075468pt;}
.w27{width:726.326134pt;}
.w24{width:733.383649pt;}
.w1a{width:765.356768pt;}
.w23{width:766.355904pt;}
.w21{width:766.643104pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w11{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.333333pt;}
.x7{left:2.666560pt;}
.x24{left:10.990762pt;}
.x6{left:15.013333pt;}
.x26{left:16.454909pt;}
.x2c{left:18.687408pt;}
.x23{left:20.164659pt;}
.x5{left:25.604000pt;}
.x42{left:32.077113pt;}
.x46{left:33.848266pt;}
.x44{left:35.098800pt;}
.x3f{left:56.329889pt;}
.x14{left:65.855373pt;}
.x11{left:67.613333pt;}
.x19{left:68.864265pt;}
.x9{left:70.873648pt;}
.x21{left:72.242669pt;}
.x20{left:73.866667pt;}
.x16{left:75.117201pt;}
.x22{left:76.522534pt;}
.x1e{left:77.720461pt;}
.x1f{left:79.303430pt;}
.x40{left:82.073878pt;}
.xd{left:160.710051pt;}
.xf{left:170.240319pt;}
.xc{left:190.317196pt;}
.x8{left:222.413333pt;}
.x47{left:236.270180pt;}
.xa{left:238.760858pt;}
.x1{left:245.623767pt;}
.x10{left:247.791536pt;}
.x45{left:250.804845pt;}
.xe{left:262.147453pt;}
.xb{left:279.617146pt;}
.x41{left:292.433092pt;}
.x2{left:326.892507pt;}
.x15{left:335.125260pt;}
.x17{left:341.489333pt;}
.x43{left:366.629373pt;}
.x13{left:416.224943pt;}
.x1a{left:419.025333pt;}
.x1b{left:420.276000pt;}
.x18{left:421.526667pt;}
.x1d{left:427.778667pt;}
.x1c{left:505.314667pt;}
.x25{left:537.120618pt;}
.x31{left:538.023338pt;}
.x27{left:577.499944pt;}
.x32{left:578.470568pt;}
.x28{left:616.812358pt;}
.x33{left:617.849030pt;}
.x3d{left:624.118667pt;}
.x3e{left:625.369333pt;}
.x29{left:658.488005pt;}
.x34{left:659.594725pt;}
.x38{left:666.936000pt;}
.x37{left:669.264000pt;}
.x3b{left:670.426667pt;}
.x2a{left:700.614819pt;}
.x35{left:701.792387pt;}
.x3{left:704.141985pt;}
.x2e{left:706.657333pt;}
.x2d{left:707.908000pt;}
.x2f{left:709.158667pt;}
.x30{left:710.408000pt;}
.x3a{left:712.318667pt;}
.x39{left:713.481333pt;}
.x3c{left:714.645333pt;}
.x2b{left:744.301857pt;}
.x36{left:745.552769pt;}
.x4{left:763.092442pt;}
}




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