
    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_1de73527cb1420c1a477412d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_87d7574483674504ec696945.woff')format("woff");}.ff2{font-family:ff2;line-height:0.913000;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_0c667b47969d909be1ec0621.woff')format("woff");}.ff3{font-family:ff3;line-height:0.987000;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_ef09c682c5a62442cfafd546.woff')format("woff");}.ff4{font-family:ff4;line-height:0.887000;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_c1750ce9a00a838f463fc474.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a6fd1066bf85bb2a3c06dc9c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_520c10536dc3183f9fc6555e.woff')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_52da9b98e7d9013b08f64288.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a79906b1b8648f35a2f078f8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_05c2d12c5fd06f0978942859.woff')format("woff");}.ffa{font-family:ffa;line-height:0.762000;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_05c2d12c5fd06f0978942859.woff')format("woff");}.ffb{font-family:ffb;line-height:0.762000;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_ef30ff965667d7956cbe4574.woff')format("woff");}.ffc{font-family:ffc;line-height:0.913000;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_c0cd7914d6214a8cd54003b6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.913000;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_2d9a53e14b6441c71ad13ccf.woff')format("woff");}.ffe{font-family:ffe;line-height:1.027000;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_95daea9490aae3755668d58d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cb7f20c9dab61c8d3a6a8a01.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_e30da0de8006e129c22ee406.woff')format("woff");}.ff11{font-family:ff11;line-height:0.913000;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_daff80443ccb9faf5173be5f.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_91ac76086c73f4c70bb54311.woff')format("woff");}.ff13{font-family:ff13;line-height:0.913000;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_91ac76086c73f4c70bb54311.woff')format("woff");}.ff14{font-family:ff14;line-height:0.913000;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_156532b4eb78c2d402a37743.woff')format("woff");}.ff15{font-family:ff15;line-height:1.005371;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_cb93e9f151f2657e8806e98b.woff')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_82984be1a355df27ae1876fd.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_44f2d2e031aa92a25299f1a9.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_51ad6fecfe7f0e152cccee01.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_f2556433201cafae9a51d00e.woff')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_0c667b47969d909be1ec0621.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.987000;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_dbd159bf759ff1f9e817983b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.066000;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_6395c4b5c78c77239ae19a95.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.103000;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_0c667b47969d909be1ec0621.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.987000;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_84c7b149a231f22dd1fa1b01.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.005371;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_0703bf862cdd2268d17d9f8e.woff')format("woff");}.ff20{font-family:ff20;line-height:1.001000;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_5b042bcaed33b57e6d219582.woff')format("woff");}.ff21{font-family:ff21;line-height:0.734863;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_0c667b47969d909be1ec0621.woff')format("woff");}.ff22{font-family:ff22;line-height:0.987000;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_935a813b201e8891143fa3f5.woff')format("woff");}.ff23{font-family:ff23;line-height:1.095000;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_706a322e9f97d4078ae48ec2.woff')format("woff");}.ff24{font-family:ff24;line-height:1.001000;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_5d709ed540727e2b2ac8a491.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_85577990a174f7701023083a.woff')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_5fc134d10e57665dfc6b8719.woff')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_9c17f7764ec44c6aab695b13.woff')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_75298f0bc20f49c6f0b805cc.woff')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_8ceb9b6baffb0cbef14b2332.woff')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_845373a4715712acfc47db07.woff')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_36fe1e943e644fa1a96038ef.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_0769b84dc51fa5ce50e3dbd5.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.734863;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:ff2e;src:url('chunks/assets/font_3fe24f1ac3721386c1fcf583.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.893000;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_d26f3773aceb367a68d3f234.woff')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_2cb6926744134a9d33e33ec9.woff')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_f87afa400ac08ffadb4029f9.woff')format("woff");}.ff31{font-family:ff31;line-height:1.005000;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_b0c19cc7375b2861d1daf876.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_191d00f71c9f859ee2059fce.woff')format("woff");}.ff33{font-family:ff33;line-height:0.905273;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_9991c1ba7d0fb9be1adac081.woff')format("woff");}.ff34{font-family:ff34;line-height:0.891138;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_afcc8a3c3b1af1009dc820a3.woff')format("woff");}.ff35{font-family:ff35;line-height:1.062000;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_87281fce7a566761a94b96f0.woff')format("woff");}.ff36{font-family:ff36;line-height:1.130000;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_b48b518d6996db8562e18392.woff')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_e1d33619198c4725a0711248.woff')format("woff");}.ff38{font-family:ff38;line-height:1.130000;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.249917,0.006428,-0.006428,0.249917,0,0);-ms-transform:matrix(0.249917,0.006428,-0.006428,0.249917,0,0);-webkit-transform:matrix(0.249917,0.006428,-0.006428,0.249917,0,0);}
.m3{transform:matrix(0.249939,0.005544,-0.005544,0.249939,0,0);-ms-transform:matrix(0.249939,0.005544,-0.005544,0.249939,0,0);-webkit-transform:matrix(0.249939,0.005544,-0.005544,0.249939,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(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;}
.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;}
}
.ws13{word-spacing:-411.545726px;}
.ws0{word-spacing:-368.678235px;}
.ws14{word-spacing:-173.378700px;}
.ws7{word-spacing:-160.410052px;}
.ws4{word-spacing:-160.137674px;}
.ws16{word-spacing:-159.937202px;}
.wsa{word-spacing:-100.131830px;}
.wsb{word-spacing:-81.042979px;}
.ws8{word-spacing:-77.021810px;}
.wsc{word-spacing:-75.695779px;}
.ws3{word-spacing:-70.471879px;}
.ws1b{word-spacing:-68.329476px;}
.ws17{word-spacing:-61.382699px;}
.ws1c{word-spacing:-60.635476px;}
.wsd{word-spacing:-59.421508px;}
.ws11{word-spacing:-59.390926px;}
.ws12{word-spacing:-54.636505px;}
.ws1f{word-spacing:-53.841716px;}
.ws2{word-spacing:-52.791655px;}
.ws10{word-spacing:-44.861037px;}
.wse{word-spacing:-43.343998px;}
.ws1e{word-spacing:-41.831459px;}
.ws19{word-spacing:-40.306273px;}
.ws1d{word-spacing:-39.189491px;}
.ws9{word-spacing:-37.793244px;}
.wsf{word-spacing:-37.351753px;}
.ws15{word-spacing:-35.657999px;}
.ws18{word-spacing:-27.962775px;}
.ws1a{word-spacing:-16.458443px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:2028.617132px;}
.ws5{word-spacing:2044.766173px;}
._4{margin-left:-18.971143px;}
._c{margin-left:-14.991150px;}
._1{margin-left:-12.715532px;}
._e{margin-left:-8.210988px;}
._6{margin-left:-6.672506px;}
._a{margin-left:-5.492242px;}
._8{margin-left:-3.764337px;}
._b{margin-left:-2.455348px;}
._3{margin-left:-1.023864px;}
._9{width:1.504185px;}
._7{width:2.652283px;}
._10{width:6.224421px;}
._d{width:10.505205px;}
._0{width:17.472704px;}
._5{width:18.682373px;}
._f{width:20.668179px;}
._2{width:24.931123px;}
.fca{color:rgb(207,57,57);}
.fc9{color:rgb(31,58,73);}
.fc6{color:rgb(0,78,146);}
.fc5{color:rgb(0,70,109);}
.fc4{color:rgb(245,248,246);}
.fc2{color:transparent;}
.fc8{color:rgb(1,1,1);}
.fc7{color:rgb(46,46,46);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(253,253,253);}
.fs2e{font-size:68.576846px;}
.fs2b{font-size:70.765028px;}
.fs2f{font-size:74.632537px;}
.fs26{font-size:77.984997px;}
.fs30{font-size:93.685619px;}
.fs10{font-size:96.411337px;}
.fs16{font-size:98.531995px;}
.fs2d{font-size:104.063142px;}
.fs33{font-size:113.956650px;}
.fsd{font-size:114.885000px;}
.fs2a{font-size:116.511561px;}
.fsf{font-size:119.474991px;}
.fs11{font-size:123.355386px;}
.fs35{font-size:123.705002px;}
.fs25{font-size:125.999995px;}
.fs20{font-size:131.077778px;}
.fs1c{font-size:131.984995px;}
.fs32{font-size:140.354993px;}
.fs2c{font-size:142.424994px;}
.fs1b{font-size:143.999994px;}
.fs1d{font-size:149.039989px;}
.fs37{font-size:152.235003px;}
.fs14{font-size:158.102476px;}
.fs34{font-size:166.355231px;}
.fs0{font-size:178.649997px;}
.fsc{font-size:184.018541px;}
.fs8{font-size:203.939992px;}
.fs3{font-size:203.985001px;}
.fs24{font-size:205.425000px;}
.fs1e{font-size:209.861931px;}
.fs1a{font-size:209.969991px;}
.fs21{font-size:210.330000px;}
.fs29{font-size:216.899995px;}
.fs27{font-size:221.985000px;}
.fs13{font-size:225.629986px;}
.fs7{font-size:244.484999px;}
.fs5{font-size:249.017241px;}
.fs28{font-size:251.999990px;}
.fs4{font-size:258.659989px;}
.fs39{font-size:264.793861px;}
.fs18{font-size:267.476252px;}
.fs36{font-size:278.150747px;}
.fs3a{font-size:282.644993px;}
.fse{font-size:293.976373px;}
.fs31{font-size:296.954979px;}
.fs19{font-size:300.014978px;}
.fs12{font-size:305.279969px;}
.fs1{font-size:310.483720px;}
.fs15{font-size:311.984996px;}
.fs17{font-size:323.954978px;}
.fsa{font-size:332.864991px;}
.fs3b{font-size:363.795379px;}
.fsb{font-size:366.219627px;}
.fs38{font-size:409.699162px;}
.fs1f{font-size:462.914994px;}
.fs22{font-size:487.613420px;}
.fs6{font-size:538.809849px;}
.fs9{font-size:566.819972px;}
.fs2{font-size:1302.749946px;}
.fs23{font-size:1785.149971px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000010px;}
.y65{bottom:0.262397px;}
.ybc{bottom:4.543719px;}
.ya8{bottom:4.664484px;}
.yab{bottom:4.784279px;}
.ya5{bottom:4.922267px;}
.ybe{bottom:5.271984px;}
.y3e{bottom:6.072855px;}
.y40{bottom:6.084369px;}
.yc1{bottom:6.622614px;}
.yc4{bottom:6.806349px;}
.y4d{bottom:6.916779px;}
.yb9{bottom:7.283762px;}
.yb7{bottom:7.899700px;}
.ya2{bottom:8.076096px;}
.ya0{bottom:8.110110px;}
.y68{bottom:8.139607px;}
.y42{bottom:10.112213px;}
.y46{bottom:10.277148px;}
.y2e{bottom:12.147701px;}
.y30{bottom:12.168356px;}
.y81{bottom:14.624999px;}
.y56{bottom:17.667389px;}
.y54{bottom:17.935704px;}
.ye0{bottom:18.451348px;}
.yca{bottom:18.481524px;}
.y35{bottom:19.174186px;}
.y11{bottom:20.142960px;}
.yea{bottom:20.598203px;}
.y5f{bottom:21.374999px;}
.ybb{bottom:22.674673px;}
.ya7{bottom:23.224063px;}
.yaa{bottom:23.343858px;}
.ya4{bottom:23.481847px;}
.y8a{bottom:23.624999px;}
.y5{bottom:23.805862px;}
.y7e{bottom:24.749999px;}
.y13{bottom:27.272605px;}
.ycc{bottom:27.722537px;}
.yf2{bottom:28.005487px;}
.y2c{bottom:28.289608px;}
.y5c{bottom:29.249999px;}
.yc0{bottom:31.019911px;}
.y71{bottom:31.067045px;}
.y95{bottom:31.202407px;}
.yc3{bottom:31.203647px;}
.ye8{bottom:31.431051px;}
.ye2{bottom:31.482835px;}
.y92{bottom:31.499999px;}
.y5a{bottom:33.749999px;}
.y4c{bottom:41.045627px;}
.y67{bottom:51.120008px;}
.ydf{bottom:57.718185px;}
.yc9{bottom:57.748361px;}
.y80{bottom:58.499998px;}
.ye5{bottom:60.187497px;}
.y6d{bottom:60.749997px;}
.y4b{bottom:75.174475px;}
.y25{bottom:77.757754px;}
.yba{bottom:83.160007px;}
.yb6{bottom:84.600007px;}
.y28{bottom:87.402434px;}
.ya9{bottom:87.840006px;}
.y1b{bottom:88.689380px;}
.y20{bottom:90.939380px;}
.y3f{bottom:93.960006px;}
.yde{bottom:96.985022px;}
.yc8{bottom:97.015198px;}
.y82{bottom:99.994578px;}
.y3d{bottom:100.800006px;}
.y34{bottom:101.947615px;}
.y91{bottom:103.499996px;}
.y7c{bottom:105.560312px;}
.y10{bottom:106.405350px;}
.y53{bottom:110.822306px;}
.ye4{bottom:113.062495px;}
.y83{bottom:124.744577px;}
.y4{bottom:132.263180px;}
.y6c{bottom:132.749994px;}
.ydd{bottom:136.251860px;}
.y7b{bottom:149.435310px;}
.yf1{bottom:154.950698px;}
.ye3{bottom:165.937493px;}
.y9e{bottom:168.904145px;}
.ye7{bottom:174.394237px;}
.y90{bottom:175.499993px;}
.ydc{bottom:175.518697px;}
.y2{bottom:184.476448px;}
.yf{bottom:192.667741px;}
.y70{bottom:201.398822px;}
.y94{bottom:201.534184px;}
.yd8{bottom:202.320002px;}
.y6b{bottom:204.749991px;}
.ydb{bottom:214.785534px;}
.y69{bottom:230.625001px;}
.y1f{bottom:237.271994px;}
.y1a{bottom:239.317478px;}
.y9d{bottom:244.279142px;}
.y8f{bottom:247.499990px;}
.y8b{bottom:252.747936px;}
.yda{bottom:254.052371px;}
.y32{bottom:258.874513px;}
.y7a{bottom:261.012733px;}
.yd7{bottom:262.741214px;}
.y78{bottom:262.920049px;}
.y3c{bottom:264.306121px;}
.y76{bottom:264.424201px;}
.y9{bottom:264.599999px;}
.y24{bottom:275.757746px;}
.y6a{bottom:276.749988px;}
.ye{bottom:278.930131px;}
.yf0{bottom:281.895908px;}
.y89{bottom:281.997934px;}
.y45{bottom:283.319998px;}
.y27{bottom:285.402426px;}
.y55{bottom:286.919998px;}
.y5e{bottom:290.751046px;}
.yd9{bottom:293.319209px;}
.y31{bottom:298.249512px;}
.y79{bottom:304.887731px;}
.yd6{bottom:305.480701px;}
.y3b{bottom:305.931119px;}
.y77{bottom:306.795047px;}
.y8{bottom:307.435595px;}
.y75{bottom:308.299199px;}
.y50{bottom:319.176372px;}
.y8e{bottom:319.499987px;}
.y9c{bottom:319.654139px;}
.y8d{bottom:327.288337px;}
.y3a{bottom:347.556118px;}
.yd5{bottom:348.220187px;}
.ya1{bottom:348.479996px;}
.yc2{bottom:352.799995px;}
.ya6{bottom:355.319995px;}
.ybd{bottom:356.759995px;}
.y44{bottom:361.786269px;}
.yd{bottom:365.192522px;}
.y33{bottom:367.559995px;}
.y6f{bottom:371.730599px;}
.y1e{bottom:388.104680px;}
.y39{bottom:389.181116px;}
.y19{bottom:390.150056px;}
.y22{bottom:390.354680px;}
.yd4{bottom:390.959674px;}
.y9b{bottom:395.029136px;}
.y61{bottom:399.709927px;}
.y3{bottom:401.039993px;}
.y64{bottom:402.839993px;}
.ye9{bottom:420.839993px;}
.y38{bottom:430.806114px;}
.y4f{bottom:431.676367px;}
.y9f{bottom:433.079992px;}
.yd3{bottom:433.699160px;}
.yb8{bottom:434.159992px;}
.ya3{bottom:436.679992px;}
.y5b{bottom:437.619988px;}
.yc{bottom:451.454912px;}
.y43{bottom:459.180233px;}
.y37{bottom:472.431112px;}
.y23{bottom:473.757737px;}
.yd2{bottom:476.438647px;}
.y26{bottom:483.402418px;}
.y49{bottom:485.489511px;}
.y85{bottom:498.275259px;}
.y60{bottom:503.753667px;}
.y36{bottom:514.056111px;}
.yd1{bottom:519.178133px;}
.yef{bottom:519.479988px;}
.y88{bottom:523.325282px;}
.y84{bottom:525.275258px;}
.y59{bottom:531.512830px;}
.yb{bottom:537.717303px;}
.y18{bottom:540.982669px;}
.y1d{bottom:541.187329px;}
.y98{bottom:541.729180px;}
.y4e{bottom:544.176363px;}
.y87{bottom:550.325281px;}
.y7f{bottom:552.030896px;}
.yd0{bottom:561.917620px;}
.yc7{bottom:563.399987px;}
.y7d{bottom:576.780894px;}
.yee{bottom:578.484555px;}
.y57{bottom:581.062476px;}
.y48{bottom:594.614506px;}
.ybf{bottom:617.039984px;}
.ya{bottom:623.979694px;}
.y62{bottom:626.849578px;}
.y97{bottom:629.479176px;}
.y5d{bottom:649.884885px;}
.y6{bottom:666.793668px;}
.ye6{bottom:668.519982px;}
.yed{bottom:676.359551px;}
.y6e{bottom:678.239982px;}
.ycf{bottom:683.147279px;}
.y17{bottom:691.815424px;}
.y1c{bottom:694.269990px;}
.y2d{bottom:694.439981px;}
.y47{bottom:703.739501px;}
.y96{bottom:717.229173px;}
.yce{bottom:725.886766px;}
.yb5{bottom:727.121745px;}
.yc6{bottom:728.913531px;}
.yb1{bottom:737.399500px;}
.y63{bottom:739.839432px;}
.yae{bottom:760.368968px;}
.yb4{bottom:760.871744px;}
.ycd{bottom:768.626252px;}
.yb0{bottom:771.149499px;}
.yec{bottom:774.234547px;}
.y93{bottom:775.439978px;}
.y72{bottom:775.878830px;}
.y2f{bottom:777.239978px;}
.yad{bottom:794.118967px;}
.yb3{bottom:794.621742px;}
.yaf{bottom:804.899497px;}
.y52{bottom:827.639976px;}
.yb2{bottom:828.371741px;}
.y99{bottom:835.129168px;}
.y16{bottom:842.448392px;}
.y21{bottom:844.703270px;}
.ycb{bottom:854.279975px;}
.y8c{bottom:871.097637px;}
.yeb{bottom:872.109543px;}
.y2a{bottom:951.233130px;}
.y2b{bottom:963.359970px;}
.y51{bottom:973.733140px;}
.y15{bottom:979.933956px;}
.y9a{bottom:982.733129px;}
.y12{bottom:991.079969px;}
.y73{bottom:992.250322px;}
.y86{bottom:999.049649px;}
.yc5{bottom:1014.479594px;}
.y29{bottom:1037.858126px;}
.y4a{bottom:1043.279967px;}
.y66{bottom:1047.067971px;}
.yac{bottom:1087.995087px;}
.y7{bottom:1099.096471px;}
.ye1{bottom:1100.519964px;}
.y58{bottom:1103.993606px;}
.y14{bottom:1104.726591px;}
.y41{bottom:1151.639962px;}
.y74{bottom:1156.116891px;}
.h56{height:20.879999px;}
.h1b{height:29.519999px;}
.h4e{height:32.759999px;}
.h54{height:37.439998px;}
.h36{height:38.519998px;}
.h50{height:38.879998px;}
.h1d{height:45.719998px;}
.h21{height:48.959998px;}
.h58{height:50.759998px;}
.h55{height:51.089750px;}
.h51{height:52.719946px;}
.h57{height:55.601240px;}
.h14{height:56.519998px;}
.h42{height:58.254793px;}
.h5e{height:60.839997px;}
.h30{height:62.999997px;}
.h40{height:68.624997px;}
.h1c{height:68.644872px;}
.h59{height:69.795786px;}
.h25{height:73.110740px;}
.h53{height:77.527041px;}
.h5d{height:78.734697px;}
.h2e{height:80.999997px;}
.h2a{height:82.079997px;}
.h67{height:82.439997px;}
.h60{height:85.470009px;}
.h4f{height:86.801113px;}
.h41{height:93.374996px;}
.h5b{height:96.973787px;}
.h45{height:97.874996px;}
.h24{height:98.639996px;}
.h3f{height:99.161996px;}
.h16{height:101.213685px;}
.h44{height:103.872191px;}
.h19{height:105.257467px;}
.h2c{height:105.749996px;}
.h64{height:107.337570px;}
.h1a{height:107.646966px;}
.h37{height:108.270245px;}
.h62{height:109.799995px;}
.h1e{height:111.143203px;}
.h52{height:112.088470px;}
.h3e{height:113.525995px;}
.h5f{height:114.937818px;}
.h12{height:117.359995px;}
.h31{height:118.918480px;}
.h5c{height:119.159995px;}
.h2f{height:129.743995px;}
.h32{height:134.285030px;}
.hb{height:135.359994px;}
.h22{height:142.450331px;}
.h3{height:150.423298px;}
.hf{height:156.241136px;}
.h48{height:159.801504px;}
.he{height:160.500773px;}
.h39{height:160.931206px;}
.h15{height:165.800705px;}
.h7{height:168.491610px;}
.h4d{height:170.700296px;}
.h17{height:173.159993px;}
.h46{height:174.702195px;}
.h28{height:174.959993px;}
.h3d{height:185.087925px;}
.h4b{height:188.243992px;}
.h34{height:189.085600px;}
.h2d{height:189.182962px;}
.hd{height:192.409694px;}
.ha{height:195.976568px;}
.h4c{height:198.323992px;}
.h20{height:203.292617px;}
.h18{height:209.311178px;}
.h5a{height:209.376460px;}
.h29{height:210.503810px;}
.h6a{height:211.835089px;}
.h2b{height:213.610665px;}
.h1f{height:217.359338px;}
.h4{height:219.599991px;}
.h69{height:226.115994px;}
.h8{height:227.879451px;}
.h23{height:238.711176px;}
.h68{height:246.258291px;}
.h63{height:250.613823px;}
.h26{height:254.952567px;}
.h65{height:271.439989px;}
.h5{height:279.745832px;}
.h11{height:299.911357px;}
.h61{height:315.359987px;}
.h49{height:319.679987px;}
.h13{height:329.963884px;}
.h6c{height:338.329703px;}
.h4a{height:347.180755px;}
.h33{height:363.239985px;}
.h43{height:364.314100px;}
.h6b{height:368.279985px;}
.h38{height:376.874984px;}
.h66{height:381.020221px;}
.h47{height:391.499984px;}
.h27{height:403.575820px;}
.h35{height:417.086410px;}
.h10{height:425.114979px;}
.hc{height:431.047879px;}
.h3b{height:439.339691px;}
.h3a{height:489.959980px;}
.h9{height:687.599971px;}
.h6{height:1173.777701px;}
.h2{height:1214.999949px;}
.h0{height:1214.999989px;}
.h1{height:1215.000000px;}
.h3c{height:1294.408060px;}
.wa{width:55.439998px;}
.w9{width:61.199997px;}
.w13{width:63.719997px;}
.wc{width:164.159993px;}
.w14{width:178.919993px;}
.w20{width:200.879992px;}
.w22{width:205.199991px;}
.w1f{width:209.159991px;}
.w12{width:209.249991px;}
.w1e{width:227.519991px;}
.w23{width:232.199990px;}
.w21{width:240.479990px;}
.w27{width:252.359989px;}
.w24{width:266.039989px;}
.w25{width:266.759989px;}
.w28{width:271.799989px;}
.w26{width:277.559988px;}
.w10{width:294.749988px;}
.w7{width:324.359986px;}
.w17{width:350.999985px;}
.w1b{width:351.000007px;}
.w18{width:351.000029px;}
.w11{width:365.624985px;}
.w29{width:379.079984px;}
.w2b{width:383.399984px;}
.w1a{width:386.999897px;}
.w19{width:386.999984px;}
.w8{width:402.839983px;}
.wd{width:495.719979px;}
.w2a{width:575.999976px;}
.w1d{width:607.319975px;}
.w15{width:795.375039px;}
.w6{width:840.959965px;}
.w16{width:902.519962px;}
.w2e{width:966.239960px;}
.w2c{width:976.679959px;}
.w2d{width:988.199959px;}
.w2f{width:996.839958px;}
.w1c{width:1111.500026px;}
.wb{width:1186.559951px;}
.w2{width:1391.759942px;}
.w3{width:1398.239942px;}
.wf{width:1410.479941px;}
.w4{width:1484.639938px;}
.we{width:1572.839934px;}
.w5{width:1580.759934px;}
.w1{width:2159.999910px;}
.w0{width:2160.000000px;}
.x0{left:0.000000px;}
.x1e{left:1.611724px;}
.x8e{left:2.885061px;}
.x8d{left:4.627143px;}
.x8c{left:6.369226px;}
.x27{left:7.572565px;}
.x42{left:9.000000px;}
.x4e{left:10.300781px;}
.x8f{left:11.520000px;}
.x52{left:15.152343px;}
.x8{left:16.490604px;}
.x3{left:20.535951px;}
.x18{left:24.306596px;}
.x6{left:29.378471px;}
.x3a{left:32.958983px;}
.x38{left:38.021483px;}
.x65{left:39.339842px;}
.x16{left:44.893057px;}
.x3f{left:47.358439px;}
.x3e{left:49.161741px;}
.x2f{left:50.231918px;}
.x56{left:52.980467px;}
.x15{left:54.537746px;}
.x17{left:60.695126px;}
.x40{left:67.679997px;}
.x54{left:69.099606px;}
.x7{left:71.282972px;}
.x59{left:76.587887px;}
.x50{left:82.986325px;}
.x37{left:88.699215px;}
.x44{left:93.804836px;}
.x57{left:99.632808px;}
.x5b{left:102.744136px;}
.x63{left:114.082026px;}
.x19{left:124.919995px;}
.x75{left:127.297899px;}
.x61{left:131.906245px;}
.x99{left:145.079994px;}
.x1b{left:147.807800px;}
.x45{left:153.798272px;}
.x1d{left:156.244651px;}
.x66{left:168.198271px;}
.x43{left:187.804680px;}
.x2{left:190.799992px;}
.x28{left:197.438241px;}
.x84{left:205.924792px;}
.x1{left:211.335943px;}
.x93{left:223.199991px;}
.x76{left:230.227592px;}
.xd{left:234.246084px;}
.x7f{left:238.319990px;}
.xc{left:239.431631px;}
.xe{left:240.749990px;}
.x1c{left:244.439990px;}
.x39{left:252.721570px;}
.x4{left:255.490852px;}
.x5e{left:265.413152px;}
.x95{left:268.559989px;}
.xb{left:275.167957px;}
.x77{left:280.659230px;}
.x47{left:288.160650px;}
.x6c{left:291.159459px;}
.x30{left:293.399988px;}
.x46{left:298.918462px;}
.x94{left:336.035532px;}
.x9{left:337.679986px;}
.x32{left:375.119984px;}
.x5{left:385.919984px;}
.x96{left:389.004243px;}
.x71{left:425.159982px;}
.x9a{left:437.880203px;}
.x97{left:453.111662px;}
.x55{left:481.383614px;}
.x98{left:494.191744px;}
.x4c{left:522.163279px;}
.x29{left:602.088286px;}
.x86{left:606.959975px;}
.x85{left:609.436870px;}
.x31{left:647.919027px;}
.x62{left:659.795409px;}
.x4f{left:660.836888px;}
.x5c{left:663.930638px;}
.x5d{left:670.663060px;}
.x33{left:692.675271px;}
.x2b{left:696.816798px;}
.x2c{left:714.569693px;}
.x4d{left:738.374207px;}
.x80{left:776.519968px;}
.x83{left:778.319968px;}
.x2d{left:787.659534px;}
.x35{left:793.361739px;}
.x67{left:795.141075px;}
.x41{left:807.396914px;}
.x2a{left:817.912496px;}
.xa{left:844.278501px;}
.x11{left:875.593616px;}
.x58{left:882.757331px;}
.x12{left:888.778015px;}
.x78{left:892.633418px;}
.x81{left:902.159962px;}
.x10{left:913.246397px;}
.xf{left:916.973657px;}
.x79{left:921.900995px;}
.x91{left:924.105383px;}
.x7a{left:958.076774px;}
.x69{left:974.337396px;}
.x68{left:989.788567px;}
.x51{left:1070.229843px;}
.x64{left:1071.438435px;}
.x5f{left:1075.766953px;}
.x90{left:1083.837798px;}
.x36{left:1087.911063px;}
.x82{left:1096.559954px;}
.x48{left:1112.845397px;}
.x1a{left:1123.199953px;}
.x49{left:1132.304381px;}
.x60{left:1154.516949px;}
.x26{left:1168.919951px;}
.x2e{left:1185.804054px;}
.x5a{left:1284.298290px;}
.x6a{left:1289.513169px;}
.x6b{left:1290.738887px;}
.x87{left:1324.439945px;}
.x25{left:1332.719944px;}
.x8b{left:1364.038137px;}
.x8a{left:1365.934285px;}
.x89{left:1367.830432px;}
.x88{left:1369.726579px;}
.x70{left:1379.005348px;}
.x6f{left:1394.509254px;}
.x6d{left:1408.466285px;}
.x72{left:1432.799940px;}
.x6e{left:1441.214330px;}
.x14{left:1506.360888px;}
.x21{left:1507.575515px;}
.x13{left:1509.156504px;}
.x53{left:1510.695801px;}
.x1f{left:1513.552077px;}
.x23{left:1526.964186px;}
.x4a{left:1528.185865px;}
.x22{left:1530.444654px;}
.x4b{left:1540.174146px;}
.x74{left:1555.559935px;}
.x7b{left:1560.929002px;}
.x3d{left:1563.479935px;}
.x20{left:1581.368480px;}
.x7c{left:1590.196579px;}
.x24{left:1607.770823px;}
.x7e{left:1623.735640px;}
.x7d{left:1644.653608px;}
.x3c{left:1723.359816px;}
.x3b{left:1742.531075px;}
.x73{left:1746.719927px;}
.x92{left:1791.216675px;}
.x34{left:1819.199633px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws13{word-spacing:-365.818423pt;}
.ws0{word-spacing:-327.713986pt;}
.ws14{word-spacing:-154.114400pt;}
.ws7{word-spacing:-142.586713pt;}
.ws4{word-spacing:-142.344599pt;}
.ws16{word-spacing:-142.166401pt;}
.wsa{word-spacing:-89.006071pt;}
.wsb{word-spacing:-72.038204pt;}
.ws8{word-spacing:-68.463831pt;}
.wsc{word-spacing:-67.285137pt;}
.ws3{word-spacing:-62.641670pt;}
.ws1b{word-spacing:-60.737312pt;}
.ws17{word-spacing:-54.562399pt;}
.ws1c{word-spacing:-53.898201pt;}
.wsd{word-spacing:-52.819118pt;}
.ws11{word-spacing:-52.791935pt;}
.ws12{word-spacing:-48.565782pt;}
.ws1f{word-spacing:-47.859303pt;}
.ws2{word-spacing:-46.925916pt;}
.ws10{word-spacing:-39.876477pt;}
.wse{word-spacing:-38.527998pt;}
.ws1e{word-spacing:-37.183519pt;}
.ws19{word-spacing:-35.827799pt;}
.ws1d{word-spacing:-34.835103pt;}
.ws9{word-spacing:-33.593995pt;}
.wsf{word-spacing:-33.201559pt;}
.ws15{word-spacing:-31.695999pt;}
.ws18{word-spacing:-24.855800pt;}
.ws1a{word-spacing:-14.629727pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:1803.215229pt;}
.ws5{word-spacing:1817.569932pt;}
._4{margin-left:-16.863238pt;}
._c{margin-left:-13.325467pt;}
._1{margin-left:-11.302696pt;}
._e{margin-left:-7.298656pt;}
._6{margin-left:-5.931116pt;}
._a{margin-left:-4.881993pt;}
._8{margin-left:-3.346077pt;}
._b{margin-left:-2.182531pt;}
._3{margin-left:-0.910102pt;}
._9{width:1.337054pt;}
._7{width:2.357585pt;}
._10{width:5.532819pt;}
._d{width:9.337960pt;}
._0{width:15.531293pt;}
._5{width:16.606554pt;}
._f{width:18.371715pt;}
._2{width:22.160998pt;}
.fs2e{font-size:60.957196pt;}
.fs2b{font-size:62.902247pt;}
.fs2f{font-size:66.340033pt;}
.fs26{font-size:69.319997pt;}
.fs30{font-size:83.276106pt;}
.fs10{font-size:85.698967pt;}
.fs16{font-size:87.583995pt;}
.fs2d{font-size:92.500570pt;}
.fs33{font-size:101.294800pt;}
.fsd{font-size:102.120000pt;}
.fs2a{font-size:103.565832pt;}
.fsf{font-size:106.199992pt;}
.fs11{font-size:109.649232pt;}
.fs35{font-size:109.960002pt;}
.fs25{font-size:111.999995pt;}
.fs20{font-size:116.513581pt;}
.fs1c{font-size:117.319995pt;}
.fs32{font-size:124.759994pt;}
.fs2c{font-size:126.599995pt;}
.fs1b{font-size:127.999995pt;}
.fs1d{font-size:132.479990pt;}
.fs37{font-size:135.320002pt;}
.fs14{font-size:140.535535pt;}
.fs34{font-size:147.871316pt;}
.fs0{font-size:158.799997pt;}
.fsc{font-size:163.572036pt;}
.fs8{font-size:181.279992pt;}
.fs3{font-size:181.320000pt;}
.fs24{font-size:182.600000pt;}
.fs1e{font-size:186.543938pt;}
.fs1a{font-size:186.639992pt;}
.fs21{font-size:186.960000pt;}
.fs29{font-size:192.799996pt;}
.fs27{font-size:197.320000pt;}
.fs13{font-size:200.559988pt;}
.fs7{font-size:217.319999pt;}
.fs5{font-size:221.348658pt;}
.fs28{font-size:223.999991pt;}
.fs4{font-size:229.919990pt;}
.fs39{font-size:235.372321pt;}
.fs18{font-size:237.756668pt;}
.fs36{font-size:247.245109pt;}
.fs3a{font-size:251.239994pt;}
.fse{font-size:261.312332pt;}
.fs31{font-size:263.959981pt;}
.fs19{font-size:266.679981pt;}
.fs12{font-size:271.359973pt;}
.fs1{font-size:275.985529pt;}
.fs15{font-size:277.319996pt;}
.fs17{font-size:287.959980pt;}
.fsa{font-size:295.879992pt;}
.fs3b{font-size:323.373671pt;}
.fsb{font-size:325.528557pt;}
.fs38{font-size:364.177033pt;}
.fs1f{font-size:411.479995pt;}
.fs22{font-size:433.434151pt;}
.fs6{font-size:478.942088pt;}
.fs9{font-size:503.839975pt;}
.fs2{font-size:1157.999952pt;}
.fs23{font-size:1586.799974pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000009pt;}
.y65{bottom:0.233242pt;}
.ybc{bottom:4.038861pt;}
.ya8{bottom:4.146208pt;}
.yab{bottom:4.252692pt;}
.ya5{bottom:4.375349pt;}
.ybe{bottom:4.686208pt;}
.y3e{bottom:5.398094pt;}
.y40{bottom:5.408328pt;}
.yc1{bottom:5.886768pt;}
.yc4{bottom:6.050088pt;}
.y4d{bottom:6.148248pt;}
.yb9{bottom:6.474455pt;}
.yb7{bottom:7.021955pt;}
.ya2{bottom:7.178752pt;}
.ya0{bottom:7.208987pt;}
.y68{bottom:7.235206pt;}
.y42{bottom:8.988634pt;}
.y46{bottom:9.135242pt;}
.y2e{bottom:10.797957pt;}
.y30{bottom:10.816316pt;}
.y81{bottom:12.999999pt;}
.y56{bottom:15.704345pt;}
.y54{bottom:15.942848pt;}
.ye0{bottom:16.401198pt;}
.yca{bottom:16.428021pt;}
.y35{bottom:17.043721pt;}
.y11{bottom:17.904853pt;}
.yea{bottom:18.309514pt;}
.y5f{bottom:18.999999pt;}
.ybb{bottom:20.155265pt;}
.ya7{bottom:20.643612pt;}
.yaa{bottom:20.750096pt;}
.ya4{bottom:20.872753pt;}
.y8a{bottom:20.999999pt;}
.y5{bottom:21.160766pt;}
.y7e{bottom:21.999999pt;}
.y13{bottom:24.242316pt;}
.ycc{bottom:24.642255pt;}
.yf2{bottom:24.893766pt;}
.y2c{bottom:25.146319pt;}
.y5c{bottom:25.999999pt;}
.yc0{bottom:27.573254pt;}
.y71{bottom:27.615151pt;}
.y95{bottom:27.735473pt;}
.yc3{bottom:27.736575pt;}
.ye8{bottom:27.938712pt;}
.ye2{bottom:27.984742pt;}
.y92{bottom:27.999999pt;}
.y5a{bottom:29.999999pt;}
.y4c{bottom:36.485002pt;}
.y67{bottom:45.440007pt;}
.ydf{bottom:51.305053pt;}
.yc9{bottom:51.331876pt;}
.y80{bottom:51.999998pt;}
.ye5{bottom:53.499998pt;}
.y6d{bottom:53.999998pt;}
.y4b{bottom:66.821756pt;}
.y25{bottom:69.118004pt;}
.yba{bottom:73.920006pt;}
.yb6{bottom:75.200006pt;}
.y28{bottom:77.691053pt;}
.ya9{bottom:78.080006pt;}
.y1b{bottom:78.835005pt;}
.y20{bottom:80.835005pt;}
.y3f{bottom:83.520006pt;}
.yde{bottom:86.208909pt;}
.yc8{bottom:86.235732pt;}
.y82{bottom:88.884069pt;}
.y3d{bottom:89.600005pt;}
.y34{bottom:90.620102pt;}
.y91{bottom:91.999996pt;}
.y7c{bottom:93.831388pt;}
.y10{bottom:94.582533pt;}
.y53{bottom:98.508717pt;}
.ye4{bottom:100.499996pt;}
.y83{bottom:110.884068pt;}
.y4{bottom:117.567271pt;}
.y6c{bottom:117.999995pt;}
.ydd{bottom:121.112764pt;}
.y7b{bottom:132.831386pt;}
.yf1{bottom:137.733953pt;}
.ye3{bottom:147.499994pt;}
.y9e{bottom:150.137018pt;}
.ye7{bottom:155.017100pt;}
.y90{bottom:155.999993pt;}
.ydc{bottom:156.016619pt;}
.y2{bottom:163.979065pt;}
.yf{bottom:171.260214pt;}
.y70{bottom:179.021175pt;}
.y94{bottom:179.141497pt;}
.yd8{bottom:179.840002pt;}
.y6b{bottom:181.999992pt;}
.ydb{bottom:190.920475pt;}
.y69{bottom:205.000000pt;}
.y1f{bottom:210.908439pt;}
.y1a{bottom:212.726647pt;}
.y9d{bottom:217.137015pt;}
.y8f{bottom:219.999991pt;}
.y8b{bottom:224.664832pt;}
.yda{bottom:225.824330pt;}
.y32{bottom:230.110678pt;}
.y7a{bottom:232.011318pt;}
.yd7{bottom:233.547746pt;}
.y78{bottom:233.706710pt;}
.y3c{bottom:234.938774pt;}
.y76{bottom:235.043734pt;}
.y9{bottom:235.199999pt;}
.y24{bottom:245.117996pt;}
.y6a{bottom:245.999990pt;}
.ye{bottom:247.937894pt;}
.yf0{bottom:250.574141pt;}
.y89{bottom:250.664831pt;}
.y45{bottom:251.839999pt;}
.y27{bottom:253.691045pt;}
.y55{bottom:255.039998pt;}
.y5e{bottom:258.445374pt;}
.yd9{bottom:260.728185pt;}
.y31{bottom:265.110677pt;}
.y79{bottom:271.011317pt;}
.yd6{bottom:271.538400pt;}
.y3b{bottom:271.938773pt;}
.y77{bottom:272.706709pt;}
.y8{bottom:273.276085pt;}
.y75{bottom:274.043733pt;}
.y50{bottom:283.712331pt;}
.y8e{bottom:283.999988pt;}
.y9c{bottom:284.137012pt;}
.y8d{bottom:290.922966pt;}
.y3a{bottom:308.938771pt;}
.yd5{bottom:309.529055pt;}
.ya1{bottom:309.759996pt;}
.yc2{bottom:313.599996pt;}
.ya6{bottom:315.839996pt;}
.ybd{bottom:317.119996pt;}
.y44{bottom:321.587795pt;}
.yd{bottom:324.615575pt;}
.y33{bottom:326.719995pt;}
.y6f{bottom:330.427199pt;}
.y1e{bottom:344.981938pt;}
.y39{bottom:345.938770pt;}
.y19{bottom:346.800050pt;}
.y22{bottom:346.981938pt;}
.yd4{bottom:347.519710pt;}
.y9b{bottom:351.137009pt;}
.y61{bottom:355.297713pt;}
.y3{bottom:356.479994pt;}
.y64{bottom:358.079994pt;}
.ye9{bottom:374.079993pt;}
.y38{bottom:382.938768pt;}
.y4f{bottom:383.712326pt;}
.y9f{bottom:384.959993pt;}
.yd3{bottom:385.510364pt;}
.yb8{bottom:385.919993pt;}
.ya3{bottom:388.159993pt;}
.y5b{bottom:388.995545pt;}
.yc{bottom:401.293256pt;}
.y43{bottom:408.160207pt;}
.y37{bottom:419.938767pt;}
.y23{bottom:421.117989pt;}
.yd2{bottom:423.501019pt;}
.y26{bottom:429.691038pt;}
.y49{bottom:431.546232pt;}
.y85{bottom:442.911342pt;}
.y60{bottom:447.781037pt;}
.y36{bottom:456.938765pt;}
.yd1{bottom:461.491674pt;}
.yef{bottom:461.759990pt;}
.y88{bottom:465.178029pt;}
.y84{bottom:466.911341pt;}
.y59{bottom:472.455849pt;}
.yb{bottom:477.970936pt;}
.y18{bottom:480.873484pt;}
.y1d{bottom:481.055404pt;}
.y98{bottom:481.537049pt;}
.y4e{bottom:483.712322pt;}
.y87{bottom:489.178028pt;}
.y7f{bottom:490.694129pt;}
.yd0{bottom:499.482329pt;}
.yc7{bottom:500.799988pt;}
.y7d{bottom:512.694128pt;}
.yee{bottom:514.208494pt;}
.y57{bottom:516.499978pt;}
.y48{bottom:528.546228pt;}
.ybf{bottom:548.479986pt;}
.ya{bottom:554.648617pt;}
.y62{bottom:557.199625pt;}
.y97{bottom:559.537045pt;}
.y5d{bottom:577.675454pt;}
.y6{bottom:592.705483pt;}
.ye6{bottom:594.239984pt;}
.yed{bottom:601.208490pt;}
.y6e{bottom:602.879984pt;}
.ycf{bottom:607.242026pt;}
.y17{bottom:614.947043pt;}
.y1c{bottom:617.128880pt;}
.y2d{bottom:617.279983pt;}
.y47{bottom:625.546224pt;}
.y96{bottom:637.537042pt;}
.yce{bottom:645.232681pt;}
.yb5{bottom:646.330440pt;}
.yc6{bottom:647.923139pt;}
.yb1{bottom:655.466222pt;}
.y63{bottom:657.635051pt;}
.yae{bottom:675.883527pt;}
.yb4{bottom:676.330439pt;}
.ycd{bottom:683.223335pt;}
.yb0{bottom:685.466221pt;}
.yec{bottom:688.208487pt;}
.y93{bottom:689.279980pt;}
.y72{bottom:689.670071pt;}
.y2f{bottom:690.879980pt;}
.yad{bottom:705.883526pt;}
.yb3{bottom:706.330438pt;}
.yaf{bottom:715.466220pt;}
.y52{bottom:735.679978pt;}
.yb2{bottom:736.330437pt;}
.y99{bottom:742.337038pt;}
.y16{bottom:748.843015pt;}
.y21{bottom:750.847351pt;}
.ycb{bottom:759.359977pt;}
.y8c{bottom:774.309011pt;}
.yeb{bottom:775.208483pt;}
.y2a{bottom:845.540560pt;}
.y2b{bottom:856.319973pt;}
.y51{bottom:865.540569pt;}
.y15{bottom:871.052405pt;}
.y9a{bottom:873.540559pt;}
.y12{bottom:880.959972pt;}
.y73{bottom:882.000286pt;}
.y86{bottom:888.044133pt;}
.yc5{bottom:901.759639pt;}
.y29{bottom:922.540557pt;}
.y4a{bottom:927.359970pt;}
.y66{bottom:930.727085pt;}
.yac{bottom:967.106744pt;}
.y7{bottom:976.974641pt;}
.ye1{bottom:978.239968pt;}
.y58{bottom:981.327650pt;}
.y14{bottom:981.979192pt;}
.y41{bottom:1023.679966pt;}
.y74{bottom:1027.659459pt;}
.h56{height:18.559999pt;}
.h1b{height:26.239999pt;}
.h4e{height:29.119999pt;}
.h54{height:33.279999pt;}
.h36{height:34.239999pt;}
.h50{height:34.559999pt;}
.h1d{height:40.639998pt;}
.h21{height:43.519998pt;}
.h58{height:45.119998pt;}
.h55{height:45.413111pt;}
.h51{height:46.862174pt;}
.h57{height:49.423325pt;}
.h14{height:50.239998pt;}
.h42{height:51.782038pt;}
.h5e{height:54.079998pt;}
.h30{height:55.999998pt;}
.h40{height:60.999997pt;}
.h1c{height:61.017664pt;}
.h59{height:62.040699pt;}
.h25{height:64.987325pt;}
.h53{height:68.912925pt;}
.h5d{height:69.986397pt;}
.h2e{height:71.999997pt;}
.h2a{height:72.959997pt;}
.h67{height:73.279997pt;}
.h60{height:75.973341pt;}
.h4f{height:77.156545pt;}
.h41{height:82.999997pt;}
.h5b{height:86.198922pt;}
.h45{height:86.999996pt;}
.h24{height:87.679996pt;}
.h3f{height:88.143996pt;}
.h16{height:89.967720pt;}
.h44{height:92.330836pt;}
.h19{height:93.562193pt;}
.h2c{height:93.999996pt;}
.h64{height:95.411174pt;}
.h1a{height:95.686192pt;}
.h37{height:96.240218pt;}
.h62{height:97.599996pt;}
.h1e{height:98.793958pt;}
.h52{height:99.634196pt;}
.h3e{height:100.911996pt;}
.h5f{height:102.166950pt;}
.h12{height:104.319996pt;}
.h31{height:105.705316pt;}
.h5c{height:105.919996pt;}
.h2f{height:115.327995pt;}
.h32{height:119.364471pt;}
.hb{height:120.319995pt;}
.h22{height:126.622517pt;}
.h3{height:133.709598pt;}
.hf{height:138.881010pt;}
.h48{height:142.045781pt;}
.he{height:142.667354pt;}
.h39{height:143.049961pt;}
.h15{height:147.378405pt;}
.h7{height:149.770320pt;}
.h4d{height:151.733597pt;}
.h17{height:153.919994pt;}
.h46{height:155.290840pt;}
.h28{height:155.519994pt;}
.h3d{height:164.522600pt;}
.h4b{height:167.327993pt;}
.h34{height:168.076089pt;}
.h2d{height:168.162633pt;}
.hd{height:171.030839pt;}
.ha{height:174.201394pt;}
.h4c{height:176.287993pt;}
.h20{height:180.704549pt;}
.h18{height:186.054380pt;}
.h5a{height:186.112408pt;}
.h29{height:187.114498pt;}
.h6a{height:188.297857pt;}
.h2b{height:189.876146pt;}
.h1f{height:193.208301pt;}
.h4{height:195.199992pt;}
.h69{height:200.991995pt;}
.h8{height:202.559512pt;}
.h23{height:212.187712pt;}
.h68{height:218.896258pt;}
.h63{height:222.767843pt;}
.h26{height:226.624504pt;}
.h65{height:241.279990pt;}
.h5{height:248.662962pt;}
.h11{height:266.587872pt;}
.h61{height:280.319988pt;}
.h49{height:284.159988pt;}
.h13{height:293.301230pt;}
.h6c{height:300.737514pt;}
.h4a{height:308.605115pt;}
.h33{height:322.879987pt;}
.h43{height:323.834756pt;}
.h6b{height:327.359986pt;}
.h38{height:334.999986pt;}
.h66{height:338.684641pt;}
.h47{height:347.999986pt;}
.h27{height:358.734062pt;}
.h35{height:370.743475pt;}
.h10{height:377.879981pt;}
.hc{height:383.153670pt;}
.h3b{height:390.524170pt;}
.h3a{height:435.519982pt;}
.h9{height:611.199975pt;}
.h6{height:1043.357957pt;}
.h2{height:1079.999955pt;}
.h0{height:1079.999991pt;}
.h1{height:1080.000000pt;}
.h3c{height:1150.584942pt;}
.wa{width:49.279998pt;}
.w9{width:54.399998pt;}
.w13{width:56.639998pt;}
.wc{width:145.919994pt;}
.w14{width:159.039993pt;}
.w20{width:178.559993pt;}
.w22{width:182.399992pt;}
.w1f{width:185.919992pt;}
.w12{width:185.999992pt;}
.w1e{width:202.239992pt;}
.w23{width:206.399991pt;}
.w21{width:213.759991pt;}
.w27{width:224.319991pt;}
.w24{width:236.479990pt;}
.w25{width:237.119990pt;}
.w28{width:241.599990pt;}
.w26{width:246.719990pt;}
.w10{width:261.999989pt;}
.w7{width:288.319988pt;}
.w17{width:311.999987pt;}
.w1b{width:312.000006pt;}
.w18{width:312.000025pt;}
.w11{width:324.999986pt;}
.w29{width:336.959986pt;}
.w2b{width:340.799986pt;}
.w1a{width:343.999909pt;}
.w19{width:343.999986pt;}
.w8{width:358.079985pt;}
.wd{width:440.639982pt;}
.w2a{width:511.999979pt;}
.w1d{width:539.839978pt;}
.w15{width:707.000035pt;}
.w6{width:747.519969pt;}
.w16{width:802.239967pt;}
.w2e{width:858.879964pt;}
.w2c{width:868.159964pt;}
.w2d{width:878.399963pt;}
.w2f{width:886.079963pt;}
.w1c{width:988.000023pt;}
.wb{width:1054.719956pt;}
.w2{width:1237.119948pt;}
.w3{width:1242.879948pt;}
.wf{width:1253.759948pt;}
.w4{width:1319.679945pt;}
.we{width:1398.079942pt;}
.w5{width:1405.119941pt;}
.w1{width:1919.999920pt;}
.w0{width:1920.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.432644pt;}
.x8e{left:2.564498pt;}
.x8d{left:4.113016pt;}
.x8c{left:5.661534pt;}
.x27{left:6.731169pt;}
.x42{left:8.000000pt;}
.x4e{left:9.156250pt;}
.x8f{left:10.240000pt;}
.x52{left:13.468749pt;}
.x8{left:14.658314pt;}
.x3{left:18.254179pt;}
.x18{left:21.605863pt;}
.x6{left:26.114197pt;}
.x3a{left:29.296874pt;}
.x38{left:33.796874pt;}
.x65{left:34.968749pt;}
.x16{left:39.904940pt;}
.x3f{left:42.096390pt;}
.x3e{left:43.699325pt;}
.x2f{left:44.650594pt;}
.x56{left:47.093748pt;}
.x15{left:48.477996pt;}
.x17{left:53.951223pt;}
.x40{left:60.159997pt;}
.x54{left:61.421872pt;}
.x7{left:63.362642pt;}
.x59{left:68.078122pt;}
.x50{left:73.765622pt;}
.x37{left:78.843747pt;}
.x44{left:83.382077pt;}
.x57{left:88.562496pt;}
.x5b{left:91.328121pt;}
.x63{left:101.406246pt;}
.x19{left:111.039995pt;}
.x75{left:113.153688pt;}
.x61{left:117.249995pt;}
.x99{left:128.959995pt;}
.x1b{left:131.384711pt;}
.x45{left:136.709575pt;}
.x1d{left:138.884135pt;}
.x66{left:149.509575pt;}
.x43{left:166.937493pt;}
.x2{left:169.599993pt;}
.x28{left:175.500658pt;}
.x84{left:183.044260pt;}
.x1{left:187.854171pt;}
.x93{left:198.399992pt;}
.x76{left:204.646748pt;}
.xd{left:208.218741pt;}
.x7f{left:211.839991pt;}
.xc{left:212.828116pt;}
.xe{left:213.999991pt;}
.x1c{left:217.279991pt;}
.x39{left:224.641395pt;}
.x4{left:227.102979pt;}
.x5e{left:235.922802pt;}
.x95{left:238.719990pt;}
.xb{left:244.593740pt;}
.x77{left:249.474871pt;}
.x47{left:256.142800pt;}
.x6c{left:258.808408pt;}
.x30{left:260.799989pt;}
.x46{left:265.705300pt;}
.x94{left:298.698251pt;}
.x9{left:300.159987pt;}
.x32{left:333.439986pt;}
.x5{left:343.039986pt;}
.x96{left:345.781549pt;}
.x71{left:377.919984pt;}
.x9a{left:389.226847pt;}
.x97{left:402.765922pt;}
.x55{left:427.896545pt;}
.x98{left:439.281550pt;}
.x4c{left:464.145137pt;}
.x29{left:535.189588pt;}
.x86{left:539.519978pt;}
.x85{left:541.721662pt;}
.x31{left:575.928024pt;}
.x62{left:586.484808pt;}
.x4f{left:587.410568pt;}
.x5c{left:590.160567pt;}
.x5d{left:596.144942pt;}
.x33{left:615.711352pt;}
.x2b{left:619.392709pt;}
.x2c{left:635.173061pt;}
.x4d{left:656.332629pt;}
.x80{left:690.239971pt;}
.x83{left:691.839971pt;}
.x2d{left:700.141808pt;}
.x35{left:705.210435pt;}
.x67{left:706.792067pt;}
.x41{left:717.686146pt;}
.x2a{left:727.033330pt;}
.xa{left:750.469779pt;}
.x11{left:778.305437pt;}
.x58{left:784.673183pt;}
.x12{left:790.024902pt;}
.x78{left:793.451927pt;}
.x81{left:801.919967pt;}
.x10{left:811.774575pt;}
.xf{left:815.087695pt;}
.x79{left:819.467551pt;}
.x91{left:821.427007pt;}
.x7a{left:851.623800pt;}
.x69{left:866.077685pt;}
.x68{left:879.812059pt;}
.x51{left:951.315416pt;}
.x64{left:952.389720pt;}
.x5f{left:956.237291pt;}
.x90{left:963.411376pt;}
.x36{left:967.032056pt;}
.x82{left:974.719959pt;}
.x48{left:989.195909pt;}
.x1a{left:998.399958pt;}
.x49{left:1006.492783pt;}
.x60{left:1026.237288pt;}
.x26{left:1039.039957pt;}
.x2e{left:1054.048048pt;}
.x5a{left:1141.598480pt;}
.x6a{left:1146.233928pt;}
.x6b{left:1147.323455pt;}
.x87{left:1177.279951pt;}
.x25{left:1184.639951pt;}
.x8b{left:1212.478344pt;}
.x8a{left:1214.163808pt;}
.x89{left:1215.849273pt;}
.x88{left:1217.534737pt;}
.x70{left:1225.782532pt;}
.x6f{left:1239.563781pt;}
.x6d{left:1251.970031pt;}
.x72{left:1273.599947pt;}
.x6e{left:1281.079405pt;}
.x14{left:1338.987456pt;}
.x21{left:1340.067124pt;}
.x13{left:1341.472448pt;}
.x53{left:1342.840712pt;}
.x1f{left:1345.379624pt;}
.x23{left:1357.301498pt;}
.x4a{left:1358.387435pt;}
.x22{left:1360.395248pt;}
.x4b{left:1369.043685pt;}
.x74{left:1382.719942pt;}
.x7b{left:1387.492446pt;}
.x3d{left:1389.759942pt;}
.x20{left:1405.660871pt;}
.x7c{left:1413.508070pt;}
.x24{left:1429.129620pt;}
.x7e{left:1443.320569pt;}
.x7d{left:1461.914318pt;}
.x3c{left:1531.875392pt;}
.x3b{left:1548.916511pt;}
.x73{left:1552.639935pt;}
.x92{left:1592.192600pt;}
.x34{left:1617.066341pt;}
}




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