
    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_54c7271d57335b69259b7adf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_738a0c33cb6747d28283667d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_a00e30717fc3465c06ee7ace.woff')format("woff");}.ff3{font-family:ff3;line-height:0.981000;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_af276a992c54f4d5b61413f8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.753000;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_95d3444acc1e55cdf97b83e6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.768000;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_439b6ebf01fb90b867f91e18.woff')format("woff");}.ff6{font-family:ff6;line-height:0.947000;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_0246874c77426bfe10dc6889.woff')format("woff");}.ff7{font-family:ff7;line-height:0.989000;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_00e4c56419d08c4eb2e95754.woff')format("woff");}.ff8{font-family:ff8;line-height:1.012000;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_f91cab27ee3180670957b129.woff')format("woff");}.ff9{font-family:ff9;line-height:1.041000;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_0cb5df612a2cb55cbabc1458.woff')format("woff");}.ffa{font-family:ffa;line-height:0.989000;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_6bc468ac2ccb88241adb3d2b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.989000;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_b324f6401c5c2f8eb597ad6c.woff')format("woff");}.ffc{font-family:ffc;line-height:1.041000;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_83ccefd224653864c1b22e95.woff')format("woff");}.ffd{font-family:ffd;line-height:1.041000;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_b13f6bea9965f3ca20a7d211.woff')format("woff");}.ffe{font-family:ffe;line-height:0.989000;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_e1ed2e93973391b5cdfdd507.woff')format("woff");}.fff{font-family:fff;line-height:1.041000;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_c825690550056d0616c46493.woff')format("woff");}.ff10{font-family:ff10;line-height:0.989000;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_6c190e8994856a2f1b83888b.woff')format("woff");}.ff11{font-family:ff11;line-height:0.989000;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_9757c1f2b049623742b9ac14.woff')format("woff");}.ff12{font-family:ff12;line-height:1.041000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_ca71b3d8e7759885426159cd.woff')format("woff");}.ff14{font-family:ff14;line-height:1.012000;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_9fe91a44d9226c7ef27169d9.woff')format("woff");}.ff15{font-family:ff15;line-height:1.012000;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_9432b9341c05f4c33084df58.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_cb421f5628fd21044a0aff45.woff')format("woff");}.ff17{font-family:ff17;line-height:0.946000;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_59682a80e0d93873d83de970.woff')format("woff");}.ff18{font-family:ff18;line-height:0.989000;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_1719d81a260ff3cd703d9396.woff')format("woff");}.ff19{font-family:ff19;line-height:1.012000;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;}
.ff1a{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_ca71b3d8e7759885426159cd.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.012000;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_dd044bcab894205bd0e3b736.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.946000;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_96528f59eff67377765e2e24.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.768000;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_96528f59eff67377765e2e24.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.768000;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_e02af8f5cd89903b5cf811a4.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.989000;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_981286adff85c64809afe801.woff')format("woff");}.ff20{font-family:ff20;line-height:0.946000;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_bacc49cfd6d759deb687be4f.woff')format("woff");}.ff21{font-family:ff21;line-height:0.989000;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_8fbe934b849a79422a07edb8.woff')format("woff");}.ff22{font-family:ff22;line-height:1.041000;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_89aae0d88893aa175655d124.woff')format("woff");}.ff23{font-family:ff23;line-height:0.929290;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_a90dee21fade49dca022a974.woff')format("woff");}.ff24{font-family:ff24;line-height:0.929290;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_01d10e3a27fc6ea481fe8fea.woff')format("woff");}.ff25{font-family:ff25;line-height:0.896519;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_5993062c5837ee2cc5bed971.woff')format("woff");}.ff26{font-family:ff26;line-height:0.799000;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_8f49d5f003cabc2bd822badf.woff')format("woff");}.ff27{font-family:ff27;line-height:1.041000;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;}
.ff28{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff29;src:url('chunks/assets/font_ca71b3d8e7759885426159cd.woff')format("woff");}.ff29{font-family:ff29;line-height:1.012000;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:ff2a;src:url('chunks/assets/font_9fe91a44d9226c7ef27169d9.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.012000;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:ff2b;src:url('chunks/assets/font_37b3773da7f2de48f692215b.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.989000;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:ff2c;src:url('chunks/assets/font_346d25c5d74ff27ea3d85935.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.946000;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;}
.ff2d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_ca71b3d8e7759885426159cd.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.012000;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:ff2f;src:url('chunks/assets/font_9fe91a44d9226c7ef27169d9.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.012000;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:ff30;src:url('chunks/assets/font_5746e948b622d03ed6b1b801.woff')format("woff");}.ff30{font-family:ff30;line-height:0.989000;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:ff31;src:url('chunks/assets/font_d6bb79823b88a7a70b69bb0a.woff')format("woff");}.ff31{font-family:ff31;line-height:0.706000;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:ff32;src:url('chunks/assets/font_844f31f8fd084c654d809ab8.woff')format("woff");}.ff32{font-family:ff32;line-height:0.989000;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:ff33;src:url('chunks/assets/font_7ae40152e0002747c386e313.woff')format("woff");}.ff33{font-family:ff33;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_11c51b9a80f66dd23c415996.woff')format("woff");}.ff34{font-family:ff34;line-height:1.041000;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:ff35;src:url('chunks/assets/font_3e48750b7c807a04851d060d.woff')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_5363463a8f76bb720aa0147c.woff')format("woff");}.ff36{font-family:ff36;line-height:0.981000;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:ff37;src:url('chunks/assets/font_3309d323e13867bc9e3efd34.woff')format("woff");}.ff37{font-family:ff37;line-height:0.981000;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:ff38;src:url('chunks/assets/font_86961217fe5740a41ea2cbbd.woff')format("woff");}.ff38{font-family:ff38;line-height:0.989000;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:ff39;src:url('chunks/assets/font_738a0c33cb6747d28283667d.woff')format("woff");}.ff39{font-family:ff39;line-height:0.941000;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:ff3a;src:url('chunks/assets/font_5895ccafa5d871df099a58b7.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.750000;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:ff3b;src:url('chunks/assets/font_1cf54ae470e7e3e4dd6b13dd.woff')format("woff");}.ff3b{font-family:ff3b;line-height:1.004000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.037851px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1381.929542px;}
.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;}
}
.ws4{word-spacing:-55.043555px;}
.wsd{word-spacing:-39.334376px;}
.wsf{word-spacing:-39.161555px;}
.wse{word-spacing:-39.160789px;}
.wsc{word-spacing:-25.974802px;}
.wsb{word-spacing:-21.657660px;}
.ws0{word-spacing:-20.439417px;}
.ws3{word-spacing:-20.362518px;}
.ws9{word-spacing:-19.270929px;}
.ws2{word-spacing:-18.851518px;}
.wsa{word-spacing:-17.840931px;}
.ws5{word-spacing:-12.217511px;}
.ws8{word-spacing:-11.299129px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:8.157571px;}
.ws6{word-spacing:8.204917px;}
._29{margin-left:-1477.975962px;}
._30{margin-left:-1287.619478px;}
._2f{margin-left:-38.562485px;}
._2c{margin-left:-30.005412px;}
._28{margin-left:-7.195391px;}
._1a{margin-left:-5.396659px;}
._5{margin-left:-4.339775px;}
._6{margin-left:-2.363843px;}
._1{margin-left:-1.208559px;}
._0{width:1.439127px;}
._7{width:3.225707px;}
._1d{width:4.893924px;}
._3{width:6.118010px;}
._2{width:7.307998px;}
._b{width:8.386851px;}
._26{width:9.945603px;}
._c{width:11.603036px;}
._1e{width:13.644214px;}
._22{width:15.558786px;}
._23{width:17.536492px;}
._32{width:18.612332px;}
._9{width:20.088891px;}
._a{width:21.112819px;}
._4{width:22.151435px;}
._e{width:23.420390px;}
._d{width:25.212521px;}
._13{width:26.851219px;}
._12{width:27.859419px;}
._20{width:29.106212px;}
._21{width:30.934746px;}
._8{width:32.512189px;}
._2d{width:33.676979px;}
._27{width:34.773337px;}
._1f{width:37.231195px;}
._11{width:39.631328px;}
._10{width:41.139170px;}
._1c{width:43.059501px;}
._1b{width:44.285163px;}
._15{width:45.424340px;}
._14{width:47.058833px;}
._16{width:49.679982px;}
._17{width:50.892710px;}
._33{width:54.488178px;}
._2a{width:55.889948px;}
._34{width:57.846774px;}
._2e{width:59.389299px;}
._2b{width:60.780360px;}
._31{width:63.122482px;}
._18{width:64.519620px;}
._19{width:65.955932px;}
._24{width:69.432243px;}
._f{width:115.036899px;}
._25{width:126.251851px;}
.fc5{color:rgb(153,181,101);}
.fc7{color:rgb(137,103,172);}
.fc2{color:transparent;}
.fc6{color:rgb(198,172,67);}
.fc1{color:rgb(152,103,137);}
.fc4{color:rgb(24,24,24);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:43.126446px;}
.fs8{font-size:43.171417px;}
.fsa{font-size:59.945309px;}
.fs12{font-size:63.857718px;}
.fs15{font-size:63.877905px;}
.fs6{font-size:65.926348px;}
.fs10{font-size:66.437482px;}
.fs2{font-size:67.905041px;}
.fsb{font-size:68.095155px;}
.fs3{font-size:71.952359px;}
.fs7{font-size:83.914439px;}
.fs5{font-size:89.940449px;}
.fs13{font-size:101.452822px;}
.fs14{font-size:101.454807px;}
.fs11{font-size:101.902529px;}
.fsf{font-size:125.871659px;}
.fse{font-size:137.878709px;}
.fsd{font-size:149.885768px;}
.fs1{font-size:156.181590px;}
.fs0{font-size:169.020634px;}
.fs4{font-size:177.452502px;}
.fsc{font-size:179.880899px;}
.y0{bottom:0.000000px;}
.y70{bottom:0.000005px;}
.y14b{bottom:0.000016px;}
.y14e{bottom:0.353729px;}
.y4{bottom:0.450016px;}
.y145{bottom:4.501959px;}
.y14a{bottom:4.511970px;}
.y13e{bottom:4.731186px;}
.y79{bottom:5.578400px;}
.y13a{bottom:6.796695px;}
.y140{bottom:7.059575px;}
.y3{bottom:11.062333px;}
.y151{bottom:11.298451px;}
.y4f{bottom:15.739576px;}
.y58{bottom:15.739582px;}
.y60{bottom:15.739583px;}
.y54{bottom:15.739593px;}
.y6{bottom:17.891777px;}
.y50{bottom:17.988088px;}
.y14d{bottom:18.341777px;}
.y6a{bottom:23.609329px;}
.y5a{bottom:23.609371px;}
.y63{bottom:23.609373px;}
.y144{bottom:25.862816px;}
.y13d{bottom:26.092042px;}
.y149{bottom:26.359003px;}
.y78{bottom:28.986109px;}
.y1a{bottom:30.386685px;}
.y71{bottom:30.565467px;}
.y14c{bottom:30.836685px;}
.y6f{bottom:32.603374px;}
.y56{bottom:32.603416px;}
.y5d{bottom:32.603418px;}
.y52{bottom:32.603427px;}
.y6c{bottom:40.473164px;}
.y59{bottom:40.473205px;}
.y62{bottom:40.473207px;}
.y69{bottom:41.597419px;}
.y66{bottom:41.597462px;}
.y8d{bottom:44.817784px;}
.y143{bottom:47.223672px;}
.y13c{bottom:47.452899px;}
.y148{bottom:48.206035px;}
.y6e{bottom:49.467209px;}
.y57{bottom:49.467250px;}
.y5f{bottom:49.467252px;}
.y53{bottom:49.467261px;}
.y5c{bottom:50.591507px;}
.y77{bottom:52.393819px;}
.y6b{bottom:57.336998px;}
.y61{bottom:57.337041px;}
.y68{bottom:59.585509px;}
.y65{bottom:59.585552px;}
.y67{bottom:65.638129px;}
.y6d{bottom:66.331043px;}
.y5e{bottom:66.331086px;}
.y129{bottom:68.490013px;}
.y142{bottom:68.584529px;}
.y8c{bottom:69.551408px;}
.y2{bottom:69.757333px;}
.y150{bottom:69.993452px;}
.y76{bottom:75.801528px;}
.y147{bottom:82.004573px;}
.y35{bottom:82.536175px;}
.yae{bottom:92.751549px;}
.y8b{bottom:94.285031px;}
.y75{bottom:99.209238px;}
.yfb{bottom:100.022342px;}
.y34{bottom:107.269799px;}
.y12a{bottom:111.862557px;}
.y96{bottom:113.396749px;}
.yc9{bottom:117.097335px;}
.yad{bottom:117.485172px;}
.y8a{bottom:119.018655px;}
.y74{bottom:122.616947px;}
.yfa{bottom:124.755965px;}
.y4c{bottom:130.978255px;}
.y33{bottom:132.003422px;}
.y95{bottom:138.130372px;}
.ybb{bottom:140.014940px;}
.yc8{bottom:141.830959px;}
.y89{bottom:143.752279px;}
.y128{bottom:144.316418px;}
.y73{bottom:146.024657px;}
.y160{bottom:149.124332px;}
.yf9{bottom:149.489589px;}
.ye5{bottom:149.844707px;}
.y4b{bottom:155.711879px;}
.y32{bottom:156.737046px;}
.y94{bottom:162.863996px;}
.y64{bottom:164.572602px;}
.yba{bottom:164.748563px;}
.yc7{bottom:166.564582px;}
.y88{bottom:168.485902px;}
.yac{bottom:169.993222px;}
.y127{bottom:171.298552px;}
.yf8{bottom:174.223213px;}
.ye4{bottom:177.732605px;}
.y31{bottom:181.470669px;}
.y4a{bottom:186.985375px;}
.y93{bottom:187.597619px;}
.y146{bottom:188.730008px;}
.yb9{bottom:189.482187px;}
.y87{bottom:193.219526px;}
.y126{bottom:198.280687px;}
.y15f{bottom:198.591579px;}
.yf7{bottom:198.956836px;}
.ye3{bottom:202.466229px;}
.y49{bottom:211.718998px;}
.y92{bottom:212.331243px;}
.yb8{bottom:214.215811px;}
.y86{bottom:217.953149px;}
.yab{bottom:222.501308px;}
.yf6{bottom:223.690460px;}
.y125{bottom:225.262822px;}
.ye2{bottom:230.354127px;}
.yc6{bottom:236.200785px;}
.y48{bottom:236.452622px;}
.y91{bottom:237.064867px;}
.yb7{bottom:238.949434px;}
.y85{bottom:242.686773px;}
.y15e{bottom:248.058826px;}
.y30{bottom:251.692745px;}
.y124{bottom:252.244957px;}
.yf5{bottom:253.833342px;}
.ye1{bottom:255.087750px;}
.yc5{bottom:260.934408px;}
.y47{bottom:261.186245px;}
.y90{bottom:261.798490px;}
.yaa{bottom:263.492130px;}
.y5b{bottom:263.507099px;}
.y84{bottom:267.420396px;}
.y15d{bottom:272.792449px;}
.y2f{bottom:276.426369px;}
.yf4{bottom:278.566965px;}
.y123{bottom:279.227092px;}
.ye0{bottom:282.777688px;}
.yc4{bottom:285.668032px;}
.y46{bottom:285.919869px;}
.y8f{bottom:286.532114px;}
.yb6{bottom:288.416681px;}
.y83{bottom:292.154020px;}
.y10e{bottom:294.936089px;}
.y110{bottom:296.327266px;}
.y15c{bottom:297.526073px;}
.y2e{bottom:301.159993px;}
.yf3{bottom:303.300589px;}
.y122{bottom:306.209226px;}
.ya8{bottom:306.334541px;}
.ydf{bottom:307.511312px;}
.y45{bottom:310.653492px;}
.y8e{bottom:311.265737px;}
.yb5{bottom:313.150305px;}
.y82{bottom:316.887644px;}
.y15b{bottom:322.259697px;}
.y2d{bottom:325.893616px;}
.yf2{bottom:328.034213px;}
.ya7{bottom:331.068164px;}
.y121{bottom:333.191361px;}
.yde{bottom:335.201239px;}
.yb4{bottom:337.883929px;}
.y10d{bottom:338.782058px;}
.y10f{bottom:340.173235px;}
.y81{bottom:341.621267px;}
.y4d{bottom:341.905934px;}
.y15a{bottom:346.993320px;}
.y2c{bottom:350.627240px;}
.ycc{bottom:352.977231px;}
.ya6{bottom:355.801788px;}
.yf1{bottom:358.167425px;}
.ydd{bottom:359.934862px;}
.y120{bottom:360.173496px;}
.y55{bottom:362.441593px;}
.yb3{bottom:362.617552px;}
.y10{bottom:362.785075px;}
.y19{bottom:369.909179px;}
.y97{bottom:371.919438px;}
.y2b{bottom:375.360863px;}
.ycb{bottom:377.710854px;}
.y141{bottom:380.610000px;}
.y11f{bottom:387.155631px;}
.ydc{bottom:387.624696px;}
.y10b{bottom:396.139735px;}
.y10c{bottom:397.663406px;}
.yf{bottom:400.019233px;}
.y2a{bottom:400.094487px;}
.yca{bottom:402.444478px;}
.y18{bottom:406.961713px;}
.y3a{bottom:411.181741px;}
.yb2{bottom:412.084799px;}
.ydb{bottom:412.358319px;}
.y159{bottom:413.014398px;}
.y11e{bottom:414.137766px;}
.ya9{bottom:414.856295px;}
.y80{bottom:422.046802px;}
.yf0{bottom:422.703466px;}
.y29{bottom:424.828111px;}
.y39{bottom:433.666853px;}
.yb1{bottom:436.818423px;}
.ye{bottom:437.253304px;}
.yda{bottom:440.048200px;}
.y11d{bottom:441.119901px;}
.y17{bottom:444.014291px;}
.y51{bottom:444.512229px;}
.yef{bottom:445.188578px;}
.y7f{bottom:446.780426px;}
.y28{bottom:452.784965px;}
.y38{bottom:456.151966px;}
.yb0{bottom:461.552046px;}
.y158{bottom:462.481645px;}
.y133{bottom:462.977023px;}
.yd9{bottom:464.781823px;}
.yee{bottom:467.673690px;}
.y11c{bottom:468.102035px;}
.y7e{bottom:471.514049px;}
.ya5{bottom:472.705191px;}
.yd{bottom:474.487461px;}
.y13f{bottom:475.289996px;}
.y10a{bottom:477.487989px;}
.y27{bottom:477.518589px;}
.y37{bottom:478.637078px;}
.y16{bottom:481.066821px;}
.yaf{bottom:486.285670px;}
.y157{bottom:487.215269px;}
.y132{bottom:487.710646px;}
.yed{bottom:490.158803px;}
.yd8{bottom:492.471704px;}
.y11b{bottom:495.084170px;}
.y7d{bottom:496.247673px;}
.ya4{bottom:497.438815px;}
.y109{bottom:502.221613px;}
.y26{bottom:502.252212px;}
.yc{bottom:511.721598px;}
.y156{bottom:511.948892px;}
.y131{bottom:512.444270px;}
.yec{bottom:512.643915px;}
.yd7{bottom:517.205327px;}
.y15{bottom:518.119398px;}
.y7c{bottom:520.981297px;}
.y11a{bottom:522.066305px;}
.ya3{bottom:522.172438px;}
.y4e{bottom:526.582908px;}
.y108{bottom:526.955236px;}
.y25{bottom:526.985836px;}
.yc3{bottom:529.660453px;}
.y44{bottom:536.253744px;}
.y155{bottom:536.682516px;}
.y130{bottom:544.740847px;}
.y7b{bottom:545.714920px;}
.ya2{bottom:546.906062px;}
.y7{bottom:548.955712px;}
.y119{bottom:549.048440px;}
.y107{bottom:551.688860px;}
.y24{bottom:551.719460px;}
.y14{bottom:555.171954px;}
.y5{bottom:556.391613px;}
.y152{bottom:556.841613px;}
.y43{bottom:560.987368px;}
.y154{bottom:561.416139px;}
.ye6{bottom:561.722630px;}
.y12f{bottom:569.474471px;}
.y7a{bottom:570.448544px;}
.ya1{bottom:571.639685px;}
.yeb{bottom:573.784476px;}
.y118{bottom:576.030575px;}
.y106{bottom:576.422483px;}
.y23{bottom:576.453083px;}
.y42{bottom:585.720991px;}
.y153{bottom:586.149763px;}
.yb{bottom:586.189852px;}
.y13{bottom:592.224506px;}
.y13b{bottom:593.009992px;}
.y12e{bottom:594.208094px;}
.yea{bottom:596.269588px;}
.ya0{bottom:596.373309px;}
.y22{bottom:601.186707px;}
.y117{bottom:603.012709px;}
.y1{bottom:607.049991px;}
.y41{bottom:610.454615px;}
.ye9{bottom:618.754700px;}
.y12d{bottom:618.941718px;}
.ya{bottom:623.423966px;}
.y105{bottom:625.889731px;}
.yc2{bottom:626.910047px;}
.y21{bottom:629.140337px;}
.y12{bottom:629.277040px;}
.y116{bottom:629.994844px;}
.y9f{bottom:631.406302px;}
.y14f{bottom:634.049990px;}
.y40{bottom:635.188239px;}
.yd3{bottom:638.862533px;}
.ye8{bottom:641.239813px;}
.y12c{bottom:643.675341px;}
.y72{bottom:644.849989px;}
.y104{bottom:650.623354px;}
.yc1{bottom:651.643671px;}
.y20{bottom:653.873961px;}
.y9e{bottom:656.139926px;}
.y115{bottom:656.976979px;}
.y9{bottom:660.294938px;}
.yd2{bottom:663.596156px;}
.ye7{bottom:663.724925px;}
.y11{bottom:666.329596px;}
.y139{bottom:666.809988px;}
.y103{bottom:675.356978px;}
.yc0{bottom:676.377294px;}
.y1f{bottom:678.607584px;}
.y9d{bottom:680.873549px;}
.y137{bottom:682.520608px;}
.y114{bottom:683.959114px;}
.y3f{bottom:684.655486px;}
.yd1{bottom:688.329780px;}
.y102{bottom:700.090601px;}
.ybf{bottom:701.110918px;}
.y1e{bottom:703.341208px;}
.y136{bottom:707.254231px;}
.y3e{bottom:709.389109px;}
.y113{bottom:710.941249px;}
.yd0{bottom:713.063403px;}
.y9c{bottom:715.912945px;}
.ybe{bottom:725.844541px;}
.y1d{bottom:728.074831px;}
.y8{bottom:729.984590px;}
.y135{bottom:731.987855px;}
.y3d{bottom:734.122733px;}
.ycf{bottom:737.797027px;}
.y112{bottom:737.923383px;}
.y9b{bottom:740.646569px;}
.yff{bottom:744.485515px;}
.y101{bottom:749.557848px;}
.ybd{bottom:750.578165px;}
.y1c{bottom:752.808455px;}
.y134{bottom:756.721478px;}
.y3c{bottom:758.856356px;}
.y9a{bottom:765.380192px;}
.yfe{bottom:769.219139px;}
.y138{bottom:770.499410px;}
.y100{bottom:774.291472px;}
.y3b{bottom:783.589980px;}
.y111{bottom:787.190752px;}
.y99{bottom:790.113816px;}
.yfd{bottom:793.952763px;}
.yd4{bottom:796.158163px;}
.yd5{bottom:797.483107px;}
.yd6{bottom:798.808055px;}
.y36{bottom:806.810164px;}
.y1b{bottom:810.184529px;}
.y12b{bottom:814.172887px;}
.y98{bottom:814.847439px;}
.ybc{bottom:814.847450px;}
.ycd{bottom:818.046532px;}
.yce{bottom:818.165843px;}
.yfc{bottom:818.686386px;}
.h2a{height:31.679999px;}
.h2e{height:32.039999px;}
.h11{height:33.975906px;}
.h13{height:36.312468px;}
.h10{height:46.094478px;}
.h22{height:49.246982px;}
.h28{height:50.366652px;}
.h18{height:50.473950px;}
.h1d{height:50.798366px;}
.h21{height:51.884036px;}
.h36{height:53.388651px;}
.h6{height:53.441267px;}
.h7{height:53.748413px;}
.h2d{height:53.768199px;}
.h33{height:53.785196px;}
.hb{height:55.509985px;}
.h9{height:56.626507px;}
.h1a{height:57.336120px;}
.hc{height:60.583887px;}
.h2c{height:63.359997px;}
.hd{height:66.040664px;}
.h29{height:70.783134px;}
.h2f{height:72.234410px;}
.h32{height:72.235822px;}
.h2b{height:72.554601px;}
.ha{height:76.179561px;}
.h14{height:79.822152px;}
.h12{height:79.822163px;}
.h30{height:84.599996px;}
.h27{height:88.666650px;}
.h16{height:96.685966px;}
.h15{height:96.685988px;}
.h25{height:100.571455px;}
.h24{height:104.696489px;}
.h31{height:106.199996px;}
.h2{height:110.159995px;}
.h35{height:110.519995px;}
.h20{height:113.013869px;}
.h23{height:114.683613px;}
.h5{height:115.886740px;}
.h1e{height:126.953245px;}
.h3{height:133.019239px;}
.h8{height:133.444282px;}
.h1f{height:142.391479px;}
.h1c{height:152.359121px;}
.h19{height:161.279993px;}
.h1b{height:170.886854px;}
.h26{height:371.159985px;}
.hf{height:628.500000px;}
.h17{height:628.874974px;}
.he{height:628.874994px;}
.h4{height:892.799963px;}
.h34{height:893.249963px;}
.h0{height:893.249979px;}
.h1{height:893.250000px;}
.w5{width:92.188955px;}
.we{width:114.119995px;}
.wc{width:129.959995px;}
.w8{width:214.732784px;}
.w6{width:222.602600px;}
.wd{width:226.439991px;}
.w7{width:230.472412px;}
.w10{width:249.839990px;}
.wf{width:259.199989px;}
.wa{width:351.359985px;}
.w2{width:431.999982px;}
.wb{width:565.919976px;}
.w3{width:628.874974px;}
.w0{width:628.875000px;}
.w1{width:629.250000px;}
.w9{width:892.799963px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:7.280918px;}
.x1c{left:8.994045px;}
.x1d{left:14.369385px;}
.x22{left:16.811128px;}
.x1b{left:18.269147px;}
.x1e{left:20.535225px;}
.x21{left:22.906701px;}
.x13{left:25.418710px;}
.x4c{left:27.508674px;}
.x20{left:31.075121px;}
.x1f{left:35.150548px;}
.x2{left:39.122452px;}
.x27{left:45.617693px;}
.x53{left:46.766287px;}
.x28{left:53.032351px;}
.xe{left:54.463566px;}
.x50{left:61.516209px;}
.x5{left:62.887497px;}
.x40{left:63.935770px;}
.x3e{left:65.750545px;}
.x26{left:68.510034px;}
.x1a{left:70.248388px;}
.xd{left:72.206687px;}
.x51{left:73.478991px;}
.x4e{left:74.849178px;}
.x46{left:75.939402px;}
.x45{left:77.608219px;}
.x42{left:79.542287px;}
.x41{left:80.933474px;}
.x17{left:85.847478px;}
.x4f{left:89.095605px;}
.x1{left:92.879996px;}
.x15{left:94.859068px;}
.x34{left:100.819058px;}
.x6{left:103.908249px;}
.x4a{left:108.359995px;}
.x19{left:110.299995px;}
.x47{left:111.521530px;}
.x29{left:113.845846px;}
.x4b{left:116.279995px;}
.x37{left:118.266945px;}
.x2a{left:124.036463px;}
.x39{left:130.238805px;}
.x3a{left:131.372816px;}
.x3b{left:143.669568px;}
.x24{left:151.199994px;}
.x14{left:158.296709px;}
.x3d{left:160.805042px;}
.x3c{left:166.881867px;}
.x3{left:172.946413px;}
.xc{left:179.084469px;}
.x3f{left:184.592080px;}
.x10{left:194.165410px;}
.xf{left:196.045025px;}
.x11{left:197.221980px;}
.x12{left:226.786389px;}
.x4{left:232.043209px;}
.x52{left:233.720550px;}
.x4d{left:245.024849px;}
.x35{left:336.399403px;}
.x38{left:343.084623px;}
.x43{left:349.749165px;}
.x48{left:358.947644px;}
.x16{left:382.889824px;}
.x30{left:390.267284px;}
.x2c{left:393.815716px;}
.x31{left:397.346581px;}
.x2e{left:400.438284px;}
.x2f{left:401.984136px;}
.x2d{left:418.461507px;}
.x32{left:423.011229px;}
.x33{left:425.857001px;}
.x2b{left:458.214483px;}
.x44{left:460.699142px;}
.x49{left:469.897620px;}
.x36{left:496.869326px;}
.x8{left:541.821390px;}
.x7{left:543.556266px;}
.x9{left:547.210097px;}
.xa{left:548.896481px;}
.xb{left:565.987476px;}
.x18{left:615.558502px;}
.x23{left:820.516070px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.700312pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1228.381815pt;}
.ws4{word-spacing:-48.927604pt;}
.wsd{word-spacing:-34.963890pt;}
.wsf{word-spacing:-34.810271pt;}
.wse{word-spacing:-34.809591pt;}
.wsc{word-spacing:-23.088713pt;}
.wsb{word-spacing:-19.251254pt;}
.ws0{word-spacing:-18.168371pt;}
.ws3{word-spacing:-18.100016pt;}
.ws9{word-spacing:-17.129715pt;}
.ws2{word-spacing:-16.756905pt;}
.wsa{word-spacing:-15.858605pt;}
.ws5{word-spacing:-10.860010pt;}
.ws8{word-spacing:-10.043670pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:7.251174pt;}
.ws6{word-spacing:7.293259pt;}
._29{margin-left:-1313.756411pt;}
._30{margin-left:-1144.550647pt;}
._2f{margin-left:-34.277764pt;}
._2c{margin-left:-26.671477pt;}
._28{margin-left:-6.395903pt;}
._1a{margin-left:-4.797031pt;}
._5{margin-left:-3.857577pt;}
._6{margin-left:-2.101194pt;}
._1{margin-left:-1.074275pt;}
._0{width:1.279224pt;}
._7{width:2.867296pt;}
._1d{width:4.350155pt;}
._3{width:5.438231pt;}
._2{width:6.495998pt;}
._b{width:7.454978pt;}
._26{width:8.840536pt;}
._c{width:10.313810pt;}
._1e{width:12.128191pt;}
._22{width:13.830032pt;}
._23{width:15.587993pt;}
._32{width:16.544295pt;}
._9{width:17.856792pt;}
._a{width:18.766950pt;}
._4{width:19.690164pt;}
._e{width:20.818124pt;}
._d{width:22.411130pt;}
._13{width:23.867750pt;}
._12{width:24.763928pt;}
._20{width:25.872189pt;}
._21{width:27.497552pt;}
._8{width:28.899724pt;}
._2d{width:29.935092pt;}
._27{width:30.909633pt;}
._1f{width:33.094396pt;}
._11{width:35.227847pt;}
._10{width:36.568151pt;}
._1c{width:38.275112pt;}
._1b{width:39.364589pt;}
._15{width:40.377191pt;}
._14{width:41.830074pt;}
._16{width:44.159984pt;}
._17{width:45.237964pt;}
._33{width:48.433936pt;}
._2a{width:49.679954pt;}
._34{width:51.419355pt;}
._2e{width:52.790488pt;}
._2b{width:54.026986pt;}
._31{width:56.108872pt;}
._18{width:57.350773pt;}
._19{width:58.627495pt;}
._24{width:61.717549pt;}
._f{width:102.255022pt;}
._25{width:112.223868pt;}
.fs9{font-size:38.334619pt;}
.fs8{font-size:38.374593pt;}
.fsa{font-size:53.284719pt;}
.fs12{font-size:56.762416pt;}
.fs15{font-size:56.780360pt;}
.fs6{font-size:58.601199pt;}
.fs10{font-size:59.055540pt;}
.fs2{font-size:60.360037pt;}
.fsb{font-size:60.529027pt;}
.fs3{font-size:63.957653pt;}
.fs7{font-size:74.590613pt;}
.fs5{font-size:79.947066pt;}
.fs13{font-size:90.180287pt;}
.fs14{font-size:90.182050pt;}
.fs11{font-size:90.580026pt;}
.fsf{font-size:111.885919pt;}
.fse{font-size:122.558852pt;}
.fsd{font-size:133.231794pt;}
.fs1{font-size:138.828080pt;}
.fs0{font-size:150.240563pt;}
.fs4{font-size:157.735557pt;}
.fsc{font-size:159.894132pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:0.000005pt;}
.y14b{bottom:0.000014pt;}
.y14e{bottom:0.314426pt;}
.y4{bottom:0.400014pt;}
.y145{bottom:4.001741pt;}
.y14a{bottom:4.010640pt;}
.y13e{bottom:4.205498pt;}
.y79{bottom:4.958577pt;}
.y13a{bottom:6.041506pt;}
.y140{bottom:6.275178pt;}
.y3{bottom:9.833184pt;}
.y151{bottom:10.043067pt;}
.y4f{bottom:13.990735pt;}
.y58{bottom:13.990739pt;}
.y60{bottom:13.990741pt;}
.y54{bottom:13.990749pt;}
.y6{bottom:15.903801pt;}
.y50{bottom:15.989411pt;}
.y14d{bottom:16.303801pt;}
.y6a{bottom:20.986071pt;}
.y5a{bottom:20.986108pt;}
.y63{bottom:20.986109pt;}
.y144{bottom:22.989170pt;}
.y13d{bottom:23.192927pt;}
.y149{bottom:23.430225pt;}
.y78{bottom:25.765430pt;}
.y1a{bottom:27.010387pt;}
.y71{bottom:27.169304pt;}
.y14c{bottom:27.410387pt;}
.y6f{bottom:28.980777pt;}
.y56{bottom:28.980814pt;}
.y5d{bottom:28.980816pt;}
.y52{bottom:28.980824pt;}
.y6c{bottom:35.976145pt;}
.y59{bottom:35.976183pt;}
.y62{bottom:35.976184pt;}
.y69{bottom:36.975484pt;}
.y66{bottom:36.975522pt;}
.y8d{bottom:39.838030pt;}
.y143{bottom:41.976598pt;}
.y13c{bottom:42.180355pt;}
.y148{bottom:42.849809pt;}
.y6e{bottom:43.970852pt;}
.y57{bottom:43.970889pt;}
.y5f{bottom:43.970890pt;}
.y53{bottom:43.970899pt;}
.y5c{bottom:44.970229pt;}
.y77{bottom:46.572283pt;}
.y6b{bottom:50.966220pt;}
.y61{bottom:50.966259pt;}
.y68{bottom:52.964897pt;}
.y65{bottom:52.964935pt;}
.y67{bottom:58.345004pt;}
.y6d{bottom:58.960927pt;}
.y5e{bottom:58.960965pt;}
.y129{bottom:60.880012pt;}
.y142{bottom:60.964026pt;}
.y8c{bottom:61.823474pt;}
.y2{bottom:62.006519pt;}
.y150{bottom:62.216401pt;}
.y76{bottom:67.379136pt;}
.y147{bottom:72.892954pt;}
.y35{bottom:73.365489pt;}
.yae{bottom:82.445821pt;}
.y8b{bottom:83.808917pt;}
.y75{bottom:88.185989pt;}
.yfb{bottom:88.908748pt;}
.y34{bottom:95.350932pt;}
.y12a{bottom:99.433384pt;}
.y96{bottom:100.797110pt;}
.yc9{bottom:104.086520pt;}
.yad{bottom:104.431264pt;}
.y8a{bottom:105.794360pt;}
.y74{bottom:108.992842pt;}
.yfa{bottom:110.894191pt;}
.y4c{bottom:116.425116pt;}
.y33{bottom:117.336375pt;}
.y95{bottom:122.782553pt;}
.ybb{bottom:124.457724pt;}
.yc8{bottom:126.071963pt;}
.y89{bottom:127.779803pt;}
.y128{bottom:128.281260pt;}
.y73{bottom:129.799695pt;}
.y160{bottom:132.554961pt;}
.yf9{bottom:132.879635pt;}
.ye5{bottom:133.195295pt;}
.y4b{bottom:138.410559pt;}
.y32{bottom:139.321819pt;}
.y94{bottom:144.767996pt;}
.y64{bottom:146.286757pt;}
.yba{bottom:146.443168pt;}
.yc7{bottom:148.057406pt;}
.y88{bottom:149.765246pt;}
.yac{bottom:151.105086pt;}
.y127{bottom:152.265380pt;}
.yf8{bottom:154.865078pt;}
.ye4{bottom:157.984538pt;}
.y31{bottom:161.307262pt;}
.y4a{bottom:166.209222pt;}
.y93{bottom:166.753439pt;}
.y146{bottom:167.760007pt;}
.yb9{bottom:168.428611pt;}
.y87{bottom:171.750690pt;}
.y126{bottom:176.249500pt;}
.y15f{bottom:176.525848pt;}
.yf7{bottom:176.850521pt;}
.ye3{bottom:179.969981pt;}
.y49{bottom:188.194665pt;}
.y92{bottom:188.738883pt;}
.yb8{bottom:190.414054pt;}
.y86{bottom:193.736133pt;}
.yab{bottom:197.778940pt;}
.yf6{bottom:198.835964pt;}
.y125{bottom:200.233620pt;}
.ye2{bottom:204.759224pt;}
.yc6{bottom:209.956253pt;}
.y48{bottom:210.180108pt;}
.y91{bottom:210.724326pt;}
.yb7{bottom:212.399497pt;}
.y85{bottom:215.721576pt;}
.y15e{bottom:220.496734pt;}
.y30{bottom:223.726885pt;}
.y124{bottom:224.217739pt;}
.yf5{bottom:225.629637pt;}
.ye1{bottom:226.744667pt;}
.yc5{bottom:231.941696pt;}
.y47{bottom:232.165551pt;}
.y90{bottom:232.709769pt;}
.yaa{bottom:234.215227pt;}
.y5b{bottom:234.228532pt;}
.y84{bottom:237.707019pt;}
.y15d{bottom:242.482177pt;}
.y2f{bottom:245.712328pt;}
.yf4{bottom:247.615080pt;}
.y123{bottom:248.201859pt;}
.ye0{bottom:251.357945pt;}
.yc4{bottom:253.927139pt;}
.y46{bottom:254.150995pt;}
.y8f{bottom:254.695212pt;}
.yb6{bottom:256.370383pt;}
.y83{bottom:259.692462pt;}
.y10e{bottom:262.165413pt;}
.y110{bottom:263.402014pt;}
.y15c{bottom:264.467620pt;}
.y2e{bottom:267.697771pt;}
.yf3{bottom:269.600524pt;}
.y122{bottom:272.185979pt;}
.ya8{bottom:272.297370pt;}
.ydf{bottom:273.343388pt;}
.y45{bottom:276.136438pt;}
.y8e{bottom:276.680655pt;}
.yb5{bottom:278.355827pt;}
.y82{bottom:281.677905pt;}
.y15b{bottom:286.453064pt;}
.y2d{bottom:289.683214pt;}
.yf2{bottom:291.585967pt;}
.ya7{bottom:294.282813pt;}
.y121{bottom:296.170099pt;}
.yde{bottom:297.956657pt;}
.yb4{bottom:300.341270pt;}
.y10d{bottom:301.139608pt;}
.y10f{bottom:302.376209pt;}
.y81{bottom:303.663349pt;}
.y4d{bottom:303.916386pt;}
.y15a{bottom:308.438507pt;}
.y2c{bottom:311.668658pt;}
.ycc{bottom:313.757538pt;}
.ya6{bottom:316.268256pt;}
.yf1{bottom:318.371044pt;}
.ydd{bottom:319.942100pt;}
.y120{bottom:320.154219pt;}
.y55{bottom:322.170305pt;}
.yb3{bottom:322.326713pt;}
.y10{bottom:322.475622pt;}
.y19{bottom:328.808159pt;}
.y97{bottom:330.595056pt;}
.y2b{bottom:333.654101pt;}
.ycb{bottom:335.742982pt;}
.y141{bottom:338.320000pt;}
.y11f{bottom:344.138339pt;}
.ydc{bottom:344.555285pt;}
.y10b{bottom:352.124209pt;}
.y10c{bottom:353.478583pt;}
.yf{bottom:355.572651pt;}
.y2a{bottom:355.639544pt;}
.yca{bottom:357.728425pt;}
.y18{bottom:361.743745pt;}
.y3a{bottom:365.494881pt;}
.yb2{bottom:366.297599pt;}
.ydb{bottom:366.540728pt;}
.y159{bottom:367.123909pt;}
.y11e{bottom:368.122458pt;}
.ya9{bottom:368.761151pt;}
.y80{bottom:375.152713pt;}
.yf0{bottom:375.736414pt;}
.y29{bottom:377.624987pt;}
.y39{bottom:385.481647pt;}
.yb1{bottom:388.283043pt;}
.ye{bottom:388.669603pt;}
.yda{bottom:391.153955pt;}
.y11d{bottom:392.106578pt;}
.y17{bottom:394.679370pt;}
.y51{bottom:395.121982pt;}
.yef{bottom:395.723180pt;}
.y7f{bottom:397.138156pt;}
.y28{bottom:402.475525pt;}
.y38{bottom:405.468414pt;}
.yb0{bottom:410.268486pt;}
.y158{bottom:411.094796pt;}
.y133{bottom:411.535131pt;}
.yd9{bottom:413.139398pt;}
.yee{bottom:415.709947pt;}
.y11c{bottom:416.090698pt;}
.y7e{bottom:419.123599pt;}
.ya5{bottom:420.182392pt;}
.yd{bottom:421.766632pt;}
.y13f{bottom:422.479997pt;}
.y10a{bottom:424.433768pt;}
.y27{bottom:424.460968pt;}
.y37{bottom:425.455180pt;}
.y16{bottom:427.614952pt;}
.yaf{bottom:432.253929pt;}
.y157{bottom:433.080239pt;}
.y132{bottom:433.520574pt;}
.yed{bottom:435.696713pt;}
.yd8{bottom:437.752625pt;}
.y11b{bottom:440.074818pt;}
.y7d{bottom:441.109043pt;}
.ya4{bottom:442.167835pt;}
.y109{bottom:446.419211pt;}
.y26{bottom:446.446411pt;}
.yc{bottom:454.863642pt;}
.y156{bottom:455.065682pt;}
.y131{bottom:455.506018pt;}
.yec{bottom:455.683480pt;}
.yd7{bottom:459.738069pt;}
.y15{bottom:460.550576pt;}
.y7c{bottom:463.094486pt;}
.y11a{bottom:464.058938pt;}
.ya3{bottom:464.153278pt;}
.y4e{bottom:468.073696pt;}
.y108{bottom:468.404654pt;}
.y25{bottom:468.431854pt;}
.yc3{bottom:470.809292pt;}
.y44{bottom:476.669995pt;}
.y155{bottom:477.051125pt;}
.y130{bottom:484.214086pt;}
.y7b{bottom:485.079929pt;}
.ya2{bottom:486.138722pt;}
.y7{bottom:487.960633pt;}
.y119{bottom:488.043058pt;}
.y107{bottom:490.390098pt;}
.y24{bottom:490.417297pt;}
.y14{bottom:493.486181pt;}
.y5{bottom:494.570323pt;}
.y152{bottom:494.970323pt;}
.y43{bottom:498.655438pt;}
.y154{bottom:499.036568pt;}
.ye6{bottom:499.309004pt;}
.y12f{bottom:506.199530pt;}
.y7a{bottom:507.065372pt;}
.ya1{bottom:508.124165pt;}
.yeb{bottom:510.030645pt;}
.y118{bottom:512.027177pt;}
.y106{bottom:512.375541pt;}
.y23{bottom:512.402741pt;}
.y42{bottom:520.640881pt;}
.y153{bottom:521.022012pt;}
.yb{bottom:521.057646pt;}
.y13{bottom:526.421783pt;}
.y13b{bottom:527.119992pt;}
.y12e{bottom:528.184973pt;}
.yea{bottom:530.017412pt;}
.ya0{bottom:530.109608pt;}
.y22{bottom:534.388184pt;}
.y117{bottom:536.011297pt;}
.y1{bottom:539.599992pt;}
.y41{bottom:542.626324pt;}
.ye9{bottom:550.004178pt;}
.y12d{bottom:550.170416pt;}
.ya{bottom:554.154636pt;}
.y105{bottom:556.346427pt;}
.yc2{bottom:557.253375pt;}
.y21{bottom:559.235855pt;}
.y12{bottom:559.357369pt;}
.y116{bottom:559.995417pt;}
.y9f{bottom:561.250047pt;}
.y14f{bottom:563.599991pt;}
.y40{bottom:564.611768pt;}
.yd3{bottom:567.877807pt;}
.ye8{bottom:569.990945pt;}
.y12c{bottom:572.155859pt;}
.y72{bottom:573.199991pt;}
.y104{bottom:578.331870pt;}
.yc1{bottom:579.238818pt;}
.y20{bottom:581.221298pt;}
.y9e{bottom:583.235490pt;}
.y115{bottom:583.979537pt;}
.y9{bottom:586.928834pt;}
.yd2{bottom:589.863250pt;}
.ye7{bottom:589.977711pt;}
.y11{bottom:592.292974pt;}
.y139{bottom:592.719990pt;}
.y103{bottom:600.317313pt;}
.yc0{bottom:601.224262pt;}
.y1f{bottom:603.206741pt;}
.y9d{bottom:605.220933pt;}
.y137{bottom:606.684985pt;}
.y114{bottom:607.963657pt;}
.y3f{bottom:608.582654pt;}
.yd1{bottom:611.848693pt;}
.y102{bottom:622.302757pt;}
.ybf{bottom:623.209705pt;}
.y1e{bottom:625.192185pt;}
.y136{bottom:628.670428pt;}
.y3e{bottom:630.568097pt;}
.y113{bottom:631.947777pt;}
.yd0{bottom:633.834136pt;}
.y9c{bottom:636.367062pt;}
.ybe{bottom:645.195148pt;}
.y1d{bottom:647.177628pt;}
.y8{bottom:648.875191pt;}
.y135{bottom:650.655871pt;}
.y3d{bottom:652.553540pt;}
.ycf{bottom:655.819579pt;}
.y112{bottom:655.931896pt;}
.y9b{bottom:658.352506pt;}
.yff{bottom:661.764903pt;}
.y101{bottom:666.273643pt;}
.ybd{bottom:667.180591pt;}
.y1c{bottom:669.163071pt;}
.y134{bottom:672.641314pt;}
.y3c{bottom:674.538983pt;}
.y9a{bottom:680.337949pt;}
.yfe{bottom:683.750346pt;}
.y138{bottom:684.888364pt;}
.y100{bottom:688.259086pt;}
.y3b{bottom:696.524427pt;}
.y111{bottom:699.725113pt;}
.y99{bottom:702.323392pt;}
.yfd{bottom:705.735789pt;}
.yd4{bottom:707.696145pt;}
.yd5{bottom:708.873873pt;}
.yd6{bottom:710.051604pt;}
.y36{bottom:717.164591pt;}
.y1b{bottom:720.164026pt;}
.y12b{bottom:723.709233pt;}
.y98{bottom:724.308835pt;}
.ybc{bottom:724.308845pt;}
.ycd{bottom:727.152472pt;}
.yce{bottom:727.258527pt;}
.yfc{bottom:727.721232pt;}
.h2a{height:28.159999pt;}
.h2e{height:28.479999pt;}
.h11{height:30.200805pt;}
.h13{height:32.277749pt;}
.h10{height:40.972869pt;}
.h22{height:43.775095pt;}
.h28{height:44.770357pt;}
.h18{height:44.865734pt;}
.h1d{height:45.154103pt;}
.h21{height:46.119143pt;}
.h36{height:47.456578pt;}
.h6{height:47.503349pt;}
.h7{height:47.776367pt;}
.h2d{height:47.793954pt;}
.h33{height:47.809063pt;}
.hb{height:49.342209pt;}
.h9{height:50.334673pt;}
.h1a{height:50.965440pt;}
.hc{height:53.852344pt;}
.h2c{height:56.319998pt;}
.hd{height:58.702812pt;}
.h29{height:62.918341pt;}
.h2f{height:64.208364pt;}
.h32{height:64.209620pt;}
.h2b{height:64.492978pt;}
.ha{height:67.715165pt;}
.h14{height:70.953024pt;}
.h12{height:70.953034pt;}
.h30{height:75.199997pt;}
.h27{height:78.814800pt;}
.h16{height:85.943081pt;}
.h15{height:85.943100pt;}
.h25{height:89.396849pt;}
.h24{height:93.063545pt;}
.h31{height:94.399996pt;}
.h2{height:97.919996pt;}
.h35{height:98.239996pt;}
.h20{height:100.456772pt;}
.h23{height:101.940990pt;}
.h5{height:103.010436pt;}
.h1e{height:112.847329pt;}
.h3{height:118.239323pt;}
.h8{height:118.617139pt;}
.h1f{height:126.570204pt;}
.h1c{height:135.430330pt;}
.h19{height:143.359994pt;}
.h1b{height:151.899426pt;}
.h26{height:329.919986pt;}
.hf{height:558.666667pt;}
.h17{height:558.999977pt;}
.he{height:558.999995pt;}
.h4{height:793.599967pt;}
.h34{height:793.999967pt;}
.h0{height:793.999981pt;}
.h1{height:794.000000pt;}
.w5{width:81.945737pt;}
.we{width:101.439996pt;}
.wc{width:115.519995pt;}
.w8{width:190.873586pt;}
.w6{width:197.868977pt;}
.wd{width:201.279992pt;}
.w7{width:204.864366pt;}
.w10{width:222.079991pt;}
.wf{width:230.399990pt;}
.wa{width:312.319987pt;}
.w2{width:383.999984pt;}
.wb{width:503.039979pt;}
.w3{width:558.999977pt;}
.w0{width:559.000000pt;}
.w1{width:559.333333pt;}
.w9{width:793.599967pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:6.471928pt;}
.x1c{left:7.994707pt;}
.x1d{left:12.772787pt;}
.x22{left:14.943225pt;}
.x1b{left:16.239242pt;}
.x1e{left:18.253533pt;}
.x21{left:20.361512pt;}
.x13{left:22.594409pt;}
.x4c{left:24.452154pt;}
.x20{left:27.622330pt;}
.x1f{left:31.244931pt;}
.x2{left:34.775513pt;}
.x27{left:40.549060pt;}
.x53{left:41.570033pt;}
.x28{left:47.139867pt;}
.xe{left:48.412058pt;}
.x50{left:54.681075pt;}
.x5{left:55.899998pt;}
.x40{left:56.831795pt;}
.x3e{left:58.444929pt;}
.x26{left:60.897808pt;}
.x1a{left:62.443012pt;}
.xd{left:64.183722pt;}
.x51{left:65.314659pt;}
.x4e{left:66.532603pt;}
.x46{left:67.501691pt;}
.x45{left:68.985084pt;}
.x42{left:70.704255pt;}
.x41{left:71.940866pt;}
.x17{left:76.308869pt;}
.x4f{left:79.196093pt;}
.x1{left:82.559997pt;}
.x15{left:84.319172pt;}
.x34{left:89.616940pt;}
.x6{left:92.362888pt;}
.x4a{left:96.319996pt;}
.x19{left:98.044440pt;}
.x47{left:99.130249pt;}
.x29{left:101.196308pt;}
.x4b{left:103.359996pt;}
.x37{left:105.126173pt;}
.x2a{left:110.254634pt;}
.x39{left:115.767827pt;}
.x3a{left:116.775837pt;}
.x3b{left:127.706283pt;}
.x24{left:134.399994pt;}
.x14{left:140.708186pt;}
.x3d{left:142.937815pt;}
.x3c{left:148.339437pt;}
.x3{left:153.730145pt;}
.xc{left:159.186195pt;}
.x3f{left:164.081849pt;}
.x10{left:172.591475pt;}
.xf{left:174.262244pt;}
.x11{left:175.308426pt;}
.x12{left:201.587901pt;}
.x4{left:206.260631pt;}
.x52{left:207.751600pt;}
.x4d{left:217.799866pt;}
.x35{left:299.021692pt;}
.x38{left:304.964109pt;}
.x43{left:310.888147pt;}
.x48{left:319.064572pt;}
.x16{left:340.346511pt;}
.x30{left:346.904252pt;}
.x2c{left:350.058414pt;}
.x31{left:353.196961pt;}
.x2e{left:355.945141pt;}
.x2f{left:357.319232pt;}
.x2d{left:371.965784pt;}
.x32{left:376.009981pt;}
.x33{left:378.539556pt;}
.x2b{left:407.301763pt;}
.x44{left:409.510348pt;}
.x49{left:417.686773pt;}
.x36{left:441.661623pt;}
.x8{left:481.619013pt;}
.x7{left:483.161126pt;}
.x9{left:486.408975pt;}
.xa{left:487.907983pt;}
.xb{left:503.099979pt;}
.x18{left:547.163113pt;}
.x23{left:729.347618pt;}
}




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