
    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_313354aa3549be164463b82a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_f2df81021200fae5f15f0f73.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_67f559d1e171f8be0946b0fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_91187ae6b5961aa2afac9cf5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_9fd5e6ab80cce648f2a1735b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_f2df81021200fae5f15f0f73.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.677734;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_1122749d1f466d3ed1be9c15.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_fa22d01ca0054ca9ba2ae0c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_d77ca00b77fb45b5f2c92427.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_301cf78864f644e9011cfc02.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_fa22d01ca0054ca9ba2ae0c8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904297;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_aad9bbb9a43a7c02fba3530f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.002930;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_00b980dd1204071ce0a2ce10.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904297;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_d77ca00b77fb45b5f2c92427.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_0de3fef51887a82c9fd48e88.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c60b60742fbf17df1cf96e10.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.002930;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_c52bbf54e816d53644bfd8ef.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.904297;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_0de3fef51887a82c9fd48e88.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_189da89e689fef815fe42fee.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.002930;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_02c27e0db8bf489cf425519f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.904297;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_0de3fef51887a82c9fd48e88.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_154036f1500a9adf7bc3b13c.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.002930;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_e27bafa4081fe03863d709e1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.904297;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_8e1d6e869acc4b62433c4c29.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.002930;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_7f3331f7b9814b4f7bb3ff93.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.904297;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_d77ca00b77fb45b5f2c92427.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.938965;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_325755bf246d9034d5961710.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.895996;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_362ad45afdcc6ee24694cdf2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.002930;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_9bdbad4c25df7168cac2e43a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.904297;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_cf89b0f3cdbbf5603bfc244f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.002930;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_b3f9f9b4bf9fc335d0983f89.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.904297;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_d77ca00b77fb45b5f2c92427.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938965;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_0de3fef51887a82c9fd48e88.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_4b2a3c4cb57456028ab56ee1.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.002930;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_2fde591ff59ed7599c7af963.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.904297;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_0de3fef51887a82c9fd48e88.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_5e9661d1e876805073c39a49.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.002930;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_a666a87dd0d0557226efd922.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.904297;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_d77ca00b77fb45b5f2c92427.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.938965;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_007551097581bd0470e85125.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.002930;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_a666a87dd0d0557226efd922.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.904297;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_d77ca00b77fb45b5f2c92427.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.938965;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_04a33d63454cbe06253cb2c4.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.002930;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_a666a87dd0d0557226efd922.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.904297;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_ba7062db27dfd813320f9f54.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.002930;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_a666a87dd0d0557226efd922.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.904297;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_2c163b95fa86143462d713de.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.004395;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_93cebd47578fdd4556abcaa7.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.002930;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_2a10f070aa9f42870f6fac12.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.904297;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_da3b13a1a23fdaae29baf9e2.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.002930;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_2a10f070aa9f42870f6fac12.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.904297;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);}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls39{letter-spacing:-2.116800px;}
.ls2d{letter-spacing:-2.056320px;}
.ls4f{letter-spacing:-1.969920px;}
.ls38{letter-spacing:-1.874880px;}
.ls60{letter-spacing:-1.814400px;}
.ls24{letter-spacing:-1.753920px;}
.ls4d{letter-spacing:-1.751040px;}
.ls23{letter-spacing:-1.693440px;}
.ls1c{letter-spacing:-1.632960px;}
.ls7{letter-spacing:-1.627200px;}
.ls1d{letter-spacing:-1.512000px;}
.ls4e{letter-spacing:-1.477440px;}
.ls20{letter-spacing:-1.451520px;}
.ls29{letter-spacing:-1.391040px;}
.ls47{letter-spacing:-1.368000px;}
.ls48{letter-spacing:-1.313280px;}
.ls25{letter-spacing:-1.270080px;}
.ls54{letter-spacing:-1.209600px;}
.ls52{letter-spacing:-1.149120px;}
.ls4{letter-spacing:-1.139040px;}
.ls45{letter-spacing:-1.094400px;}
.ls2c{letter-spacing:-1.088640px;}
.ls35{letter-spacing:-1.028160px;}
.ls3c{letter-spacing:-0.993600px;}
.ls22{letter-spacing:-0.907200px;}
.ls4a{letter-spacing:-0.875520px;}
.ls26{letter-spacing:-0.846720px;}
.ls36{letter-spacing:-0.786240px;}
.ls21{letter-spacing:-0.665280px;}
.lsb{letter-spacing:-0.662400px;}
.ls1a{letter-spacing:-0.604800px;}
.lsc{letter-spacing:-0.596160px;}
.ls33{letter-spacing:-0.584640px;}
.ls3d{letter-spacing:-0.544320px;}
.ls16{letter-spacing:-0.529920px;}
.ls3a{letter-spacing:-0.501120px;}
.ls46{letter-spacing:-0.492480px;}
.lsa{letter-spacing:-0.463680px;}
.ls1e{letter-spacing:-0.423360px;}
.ls57{letter-spacing:-0.417600px;}
.ls43{letter-spacing:-0.397440px;}
.ls5d{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.331200px;}
.ls4c{letter-spacing:-0.273600px;}
.lsf{letter-spacing:-0.264960px;}
.ls37{letter-spacing:-0.250560px;}
.ls8{letter-spacing:-0.198720px;}
.ls1b{letter-spacing:-0.181440px;}
.ls34{letter-spacing:-0.167040px;}
.ls19{letter-spacing:-0.120960px;}
.ls9{letter-spacing:-0.066240px;}
.ls3{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.054720px;}
.ls28{letter-spacing:0.060480px;}
.ls31{letter-spacing:0.066240px;}
.ls58{letter-spacing:0.114912px;}
.ls27{letter-spacing:0.120960px;}
.lsd{letter-spacing:0.132480px;}
.ls59{letter-spacing:0.139104px;}
.ls18{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.181440px;}
.ls42{letter-spacing:0.198720px;}
.ls3e{letter-spacing:0.205632px;}
.ls5b{letter-spacing:0.211680px;}
.ls5c{letter-spacing:0.223776px;}
.ls51{letter-spacing:0.235872px;}
.ls15{letter-spacing:0.241920px;}
.ls5{letter-spacing:0.325440px;}
.ls2b{letter-spacing:0.362880px;}
.ls4b{letter-spacing:0.383040px;}
.ls17{letter-spacing:0.397440px;}
.ls2f{letter-spacing:0.423360px;}
.ls3b{letter-spacing:0.463680px;}
.ls6{letter-spacing:0.488160px;}
.ls5f{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.544320px;}
.ls41{letter-spacing:0.601920px;}
.ls1f{letter-spacing:0.604800px;}
.ls1{letter-spacing:0.662400px;}
.ls44{letter-spacing:0.665280px;}
.ls32{letter-spacing:0.713664px;}
.ls10{letter-spacing:0.725760px;}
.ls0{letter-spacing:0.728640px;}
.ls11{letter-spacing:0.737856px;}
.ls3f{letter-spacing:0.840672px;}
.ls2a{letter-spacing:0.858816px;}
.ls2{letter-spacing:0.861120px;}
.ls56{letter-spacing:0.931392px;}
.ls5e{letter-spacing:0.967680px;}
.ls55{letter-spacing:1.252800px;}
.ls53{letter-spacing:3.775680px;}
.ls2e{letter-spacing:38.669760px;}
.ls50{letter-spacing:45.118080px;}
.ls30{letter-spacing:59.351040px;}
.ls40{letter-spacing:100.091520px;}
.ls14{letter-spacing:154.828800px;}
.ls12{letter-spacing:169.223040px;}
.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;}
}
.ws73{word-spacing:-66.000000px;}
.ws7d{word-spacing:-41.220000px;}
.ws1b{word-spacing:-40.860000px;}
.ws1a{word-spacing:-40.680000px;}
.ws7b{word-spacing:-40.320000px;}
.ws0{word-spacing:-35.147520px;}
.ws77{word-spacing:-18.708480px;}
.ws78{word-spacing:-18.457920px;}
.ws4d{word-spacing:-18.290880px;}
.ws5f{word-spacing:-15.433920px;}
.ws6{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.771520px;}
.ws7{word-spacing:-14.639040px;}
.ws3{word-spacing:-14.506560px;}
.ws4f{word-spacing:-14.440320px;}
.ws20{word-spacing:-14.394240px;}
.ws5{word-spacing:-14.374080px;}
.ws4{word-spacing:-14.307840px;}
.ws25{word-spacing:-14.212800px;}
.ws43{word-spacing:-14.031360px;}
.ws7e{word-spacing:-13.910400px;}
.ws24{word-spacing:-13.789440px;}
.ws44{word-spacing:-13.728960px;}
.ws27{word-spacing:-13.668480px;}
.ws1c{word-spacing:-13.547520px;}
.ws1d{word-spacing:-13.487040px;}
.ws1e{word-spacing:-13.245120px;}
.ws1f{word-spacing:-13.063680px;}
.ws21{word-spacing:-13.003200px;}
.ws4e{word-spacing:-12.882240px;}
.ws74{word-spacing:-12.821760px;}
.ws23{word-spacing:-12.761280px;}
.ws64{word-spacing:-12.749760px;}
.ws45{word-spacing:-12.579840px;}
.ws63{word-spacing:-12.421440px;}
.ws26{word-spacing:-12.398400px;}
.ws61{word-spacing:-12.366720px;}
.ws28{word-spacing:-12.277440px;}
.ws7c{word-spacing:-12.216960px;}
.ws42{word-spacing:-12.156480px;}
.ws22{word-spacing:-12.035520px;}
.ws62{word-spacing:-11.874240px;}
.ws66{word-spacing:-11.793600px;}
.ws60{word-spacing:-11.272320px;}
.ws65{word-spacing:-10.396800px;}
.wse{word-spacing:-2.252160px;}
.ws2e{word-spacing:-1.270080px;}
.wsb{word-spacing:-1.139040px;}
.ws14{word-spacing:-1.059840px;}
.ws2b{word-spacing:-0.993600px;}
.ws6f{word-spacing:-0.930240px;}
.ws48{word-spacing:-0.846720px;}
.wsa{word-spacing:-0.813600px;}
.ws13{word-spacing:-0.728640px;}
.ws7f{word-spacing:-0.665280px;}
.ws5b{word-spacing:-0.662400px;}
.ws35{word-spacing:-0.604800px;}
.ws31{word-spacing:-0.544320px;}
.ws11{word-spacing:-0.529920px;}
.ws67{word-spacing:-0.397440px;}
.ws72{word-spacing:-0.362880px;}
.ws49{word-spacing:-0.302400px;}
.ws71{word-spacing:-0.241920px;}
.ws12{word-spacing:-0.198720px;}
.ws50{word-spacing:-0.180000px;}
.ws29{word-spacing:-0.132480px;}
.ws3c{word-spacing:-0.120960px;}
.ws2a{word-spacing:-0.066240px;}
.ws41{word-spacing:-0.060480px;}
.ws8{word-spacing:0.000000px;}
.ws6a{word-spacing:0.054720px;}
.ws52{word-spacing:0.060480px;}
.ws19{word-spacing:0.066240px;}
.ws33{word-spacing:0.120960px;}
.wsc{word-spacing:0.162720px;}
.ws79{word-spacing:0.167040px;}
.ws37{word-spacing:0.181440px;}
.ws6b{word-spacing:0.218880px;}
.ws16{word-spacing:0.264960px;}
.ws51{word-spacing:0.302400px;}
.wsd{word-spacing:0.325440px;}
.ws10{word-spacing:0.331200px;}
.ws75{word-spacing:0.362880px;}
.ws15{word-spacing:0.397440px;}
.ws3a{word-spacing:0.423360px;}
.ws17{word-spacing:0.463680px;}
.ws4b{word-spacing:0.483840px;}
.wsf{word-spacing:0.529920px;}
.ws5e{word-spacing:0.544320px;}
.ws6d{word-spacing:0.547200px;}
.ws2d{word-spacing:0.604800px;}
.ws3b{word-spacing:0.665280px;}
.ws59{word-spacing:0.786240px;}
.ws2c{word-spacing:0.846720px;}
.ws6c{word-spacing:0.875520px;}
.ws32{word-spacing:0.907200px;}
.ws80{word-spacing:0.967680px;}
.ws5c{word-spacing:0.993600px;}
.ws56{word-spacing:1.028160px;}
.ws54{word-spacing:1.088640px;}
.ws34{word-spacing:1.149120px;}
.ws76{word-spacing:1.209600px;}
.ws3f{word-spacing:1.270080px;}
.ws69{word-spacing:1.313280px;}
.ws18{word-spacing:1.324800px;}
.ws36{word-spacing:1.330560px;}
.ws5d{word-spacing:1.391040px;}
.ws39{word-spacing:1.451520px;}
.ws70{word-spacing:1.477440px;}
.ws53{word-spacing:1.503360px;}
.ws38{word-spacing:1.512000px;}
.ws4a{word-spacing:1.632960px;}
.ws5a{word-spacing:1.753920px;}
.ws9{word-spacing:1.789920px;}
.ws81{word-spacing:1.814400px;}
.ws55{word-spacing:1.874880px;}
.ws68{word-spacing:1.969920px;}
.ws47{word-spacing:1.995840px;}
.ws4c{word-spacing:2.056320px;}
.ws7a{word-spacing:2.116800px;}
.ws46{word-spacing:2.177280px;}
.ws30{word-spacing:2.237760px;}
.ws6e{word-spacing:2.352960px;}
.ws2f{word-spacing:2.358720px;}
.ws3d{word-spacing:2.419200px;}
.ws3e{word-spacing:2.479680px;}
.ws57{word-spacing:2.600640px;}
.ws58{word-spacing:2.842560px;}
.ws40{word-spacing:10.946880px;}
._6{margin-left:-11.700000px;}
._3{margin-left:-2.733696px;}
._2{margin-left:-1.008864px;}
._1{width:1.057680px;}
._4{width:2.473344px;}
._7{width:3.500928px;}
._5{width:36.432000px;}
._0{width:394.746000px;}
.fc4{color:rgb(87,105,112);}
.fc2{color:transparent;}
.fc1{color:rgb(0,128,129);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:162.720000px;}
.fs3{font-size:180.000000px;}
.y203{bottom:-796.645350px;}
.y15{bottom:-350.780400px;}
.y14{bottom:-330.626880px;}
.y13{bottom:-310.473360px;}
.y12{bottom:-290.319840px;}
.y11{bottom:-270.166320px;}
.y10{bottom:-250.012800px;}
.y1ec{bottom:-239.636850px;}
.y159{bottom:-164.165850px;}
.yf{bottom:-149.553090px;}
.ye{bottom:-100.248930px;}
.yd{bottom:-50.578650px;}
.y44{bottom:-47.237400px;}
.y18{bottom:-47.228430px;}
.yda{bottom:-40.858800px;}
.yac{bottom:-40.858350px;}
.y5e{bottom:-34.480350px;}
.y6e{bottom:-34.479900px;}
.yb{bottom:-34.009770px;}
.y178{bottom:-32.354400px;}
.y106{bottom:-30.229350px;}
.ye4{bottom:-30.227850px;}
.ya{bottom:-13.856250px;}
.y17{bottom:-13.396350px;}
.y0{bottom:0.000000px;}
.y8c{bottom:56.588580px;}
.y1{bottom:63.779550px;}
.y8b{bottom:77.832180px;}
.y105{bottom:92.481000px;}
.y6d{bottom:95.668500px;}
.y8a{bottom:98.712900px;}
.ye3{bottom:98.857500px;}
.yab{bottom:99.921000px;}
.y112{bottom:102.249090px;}
.y5d{bottom:103.110000px;}
.yd9{bottom:104.173500px;}
.y43{bottom:108.426000px;}
.y113{bottom:109.488000px;}
.y16{bottom:115.866000px;}
.y6c{bottom:119.037000px;}
.y111{bottom:120.604770px;}
.y13b{bottom:121.539570px;}
.y42{bottom:125.105010px;}
.y89{bottom:128.590020px;}
.y1a0{bottom:130.062750px;}
.y6b{bottom:137.392680px;}
.y110{bottom:138.960450px;}
.y13a{bottom:142.420290px;}
.y41{bottom:145.985730px;}
.y88{bottom:149.833620px;}
.y19f{bottom:149.869950px;}
.yaa{bottom:152.257080px;}
.y6a{bottom:155.748360px;}
.y10f{bottom:157.316130px;}
.yd8{bottom:161.302650px;}
.y139{bottom:163.663890px;}
.y40{bottom:166.866450px;}
.y87{bottom:170.714340px;}
.y1c5{bottom:171.901650px;}
.ya9{bottom:173.500680px;}
.y10e{bottom:175.308930px;}
.y19e{bottom:181.546350px;}
.y104{bottom:182.001570px;}
.y138{bottom:184.544610px;}
.y3f{bottom:188.110050px;}
.y86{bottom:191.595060px;}
.ya8{bottom:194.381400px;}
.yd6{bottom:197.665530px;}
.y19d{bottom:201.353550px;}
.y1c4{bottom:204.877650px;}
.y137{bottom:205.425330px;}
.y3e{bottom:208.990770px;}
.y103{bottom:211.878690px;}
.yd7{bottom:212.781930px;}
.y85{bottom:212.838660px;}
.ya7{bottom:224.258520px;}
.y1c3{bottom:224.684850px;}
.y136{bottom:226.668930px;}
.yd5{bottom:227.542650px;}
.y3d{bottom:229.871490px;}
.y158{bottom:232.795500px;}
.y19c{bottom:233.029950px;}
.y102{bottom:233.122290px;}
.y84{bottom:233.719380px;}
.y1c2{bottom:244.492050px;}
.ya6{bottom:245.502120px;}
.y135{bottom:247.549650px;}
.y3c{bottom:251.115090px;}
.y19b{bottom:252.837150px;}
.y101{bottom:254.003010px;}
.y83{bottom:254.600100px;}
.yd3{bottom:258.505530px;}
.y1c1{bottom:264.299250px;}
.ya5{bottom:266.382840px;}
.y1ea{bottom:271.822650px;}
.y3b{bottom:271.995810px;}
.y19a{bottom:272.644350px;}
.yd4{bottom:273.621930px;}
.y100{bottom:274.883730px;}
.y134{bottom:281.389650px;}
.y1c0{bottom:284.106450px;}
.y82{bottom:287.000100px;}
.ya4{bottom:287.263560px;}
.yd2{bottom:288.382650px;}
.y199{bottom:292.451550px;}
.y3a{bottom:292.876530px;}
.yff{bottom:296.127330px;}
.y1e9{bottom:304.798650px;}
.y1eb{bottom:308.266500px;}
.ya3{bottom:308.507160px;}
.y39{bottom:314.120130px;}
.y1bf{bottom:315.782850px;}
.yfe{bottom:317.008050px;}
.yd0{bottom:319.345530px;}
.y198{bottom:324.127950px;}
.y81{bottom:324.439380px;}
.y1e8{bottom:324.605850px;}
.ya2{bottom:329.387880px;}
.y133{bottom:332.058930px;}
.yd1{bottom:334.106250px;}
.y1be{bottom:335.590050px;}
.yfd{bottom:337.888770px;}
.y197{bottom:343.935150px;}
.y38{bottom:343.997250px;}
.y1e7{bottom:344.413050px;}
.y80{bottom:345.320100px;}
.ycf{bottom:349.222650px;}
.ya1{bottom:350.268600px;}
.y132{bottom:353.302530px;}
.y1bd{bottom:355.397250px;}
.yfc{bottom:359.132370px;}
.y196{bottom:363.742350px;}
.y1e6{bottom:364.220250px;}
.y37{bottom:364.877970px;}
.y131{bottom:374.183250px;}
.y10d{bottom:377.629650px;}
.y7f{bottom:379.160100px;}
.ycc{bottom:379.816170px;}
.yfb{bottom:380.013090px;}
.y69{bottom:382.548360px;}
.ya0{bottom:382.668600px;}
.y1e5{bottom:384.027450px;}
.yce{bottom:384.494730px;}
.y36{bottom:386.121570px;}
.y1bc{bottom:387.073650px;}
.y130{bottom:395.063970px;}
.y195{bottom:395.418750px;}
.ye2{bottom:398.478300px;}
.yfa{bottom:400.893810px;}
.ycd{bottom:405.739770px;}
.y1bb{bottom:406.880850px;}
.y35{bottom:407.002290px;}
.ycb{bottom:410.062650px;}
.y194{bottom:415.225950px;}
.y1e4{bottom:415.703850px;}
.y12f{bottom:416.307570px;}
.ye1{bottom:416.833980px;}
.y9f{bottom:420.107880px;}
.yf9{bottom:422.137410px;}
.y34{bottom:427.883010px;}
.y7e{bottom:430.268730px;}
.y1e3{bottom:435.511050px;}
.y1ba{bottom:438.557250px;}
.yc8{bottom:440.665530px;}
.y9e{bottom:440.988600px;}
.yf8{bottom:443.018130px;}
.yca{bottom:445.344090px;}
.y12e{bottom:446.184690px;}
.y193{bottom:446.902350px;}
.y7d{bottom:448.624410px;}
.y33{bottom:449.126610px;}
.y1e2{bottom:455.318250px;}
.y1b9{bottom:458.364450px;}
.yf7{bottom:463.898850px;}
.yc9{bottom:466.589130px;}
.y192{bottom:466.709550px;}
.y12d{bottom:467.065410px;}
.y32{bottom:470.007330px;}
.yc7{bottom:470.542650px;}
.y9d{bottom:474.828600px;}
.y1b8{bottom:478.171650px;}
.yf6{bottom:485.142450px;}
.y191{bottom:486.516750px;}
.y1e1{bottom:486.994650px;}
.y12c{bottom:488.309010px;}
.y31{bottom:490.888050px;}
.yc5{bottom:501.505530px;}
.y157{bottom:501.746130px;}
.y190{bottom:506.323950px;}
.y1e0{bottom:506.801850px;}
.y12b{bottom:509.189730px;}
.y1b7{bottom:509.848050px;}
.yf5{bottom:515.019570px;}
.yc6{bottom:516.621930px;}
.y30{bottom:521.128050px;}
.y9c{bottom:525.937230px;}
.y18f{bottom:526.131150px;}
.y1b6{bottom:529.655250px;}
.y12a{bottom:530.070450px;}
.yc4{bottom:531.382650px;}
.y156{bottom:531.623250px;}
.y1df{bottom:538.478250px;}
.y9b{bottom:544.292910px;}
.yf4{bottom:544.896690px;}
.y1b5{bottom:549.462450px;}
.y2f{bottom:551.005170px;}
.y129{bottom:551.314050px;}
.y155{bottom:552.503970px;}
.y18e{bottom:557.807550px;}
.y1de{bottom:558.285450px;}
.yc3{bottom:562.342650px;}
.yf3{bottom:566.140290px;}
.y2e{bottom:571.885890px;}
.y128{bottom:572.194770px;}
.y154{bottom:573.747570px;}
.y18d{bottom:577.614750px;}
.y1dd{bottom:578.092650px;}
.y1b4{bottom:581.138850px;}
.yf2{bottom:587.021010px;}
.y153{bottom:594.628290px;}
.y7c{bottom:595.862970px;}
.y10c{bottom:598.668930px;}
.y201{bottom:598.822530px;}
.y1b3{bottom:600.946050px;}
.y2d{bottom:602.125890px;}
.yc2{bottom:602.289840px;}
.y5c{bottom:605.839800px;}
.y127{bottom:606.759090px;}
.y18c{bottom:609.291150px;}
.y1dc{bottom:609.769050px;}
.y68{bottom:610.421880px;}
.y152{bottom:615.509010px;}
.yf1{bottom:616.898130px;}
.y10b{bottom:617.024610px;}
.y200{bottom:618.629730px;}
.y1b2{bottom:620.753250px;}
.y2c{bottom:623.006610px;}
.y126{bottom:626.566290px;}
.y18b{bottom:629.098350px;}
.y1db{bottom:629.576250px;}
.yc1{bottom:632.166960px;}
.y10a{bottom:635.380290px;}
.y5b{bottom:635.716920px;}
.y151{bottom:636.752610px;}
.y173{bottom:636.803190px;}
.yf0{bottom:638.141730px;}
.y1ff{bottom:638.436930px;}
.y67{bottom:640.299000px;}
.y1b1{bottom:640.560450px;}
.y2b{bottom:643.887330px;}
.y125{bottom:646.373490px;}
.y18a{bottom:648.905550px;}
.y1da{bottom:649.383450px;}
.yc0{bottom:653.410560px;}
.y109{bottom:653.735970px;}
.y172{bottom:656.610390px;}
.y5a{bottom:656.960520px;}
.y150{bottom:657.633330px;}
.y1fe{bottom:658.244130px;}
.yef{bottom:659.022450px;}
.y66{bottom:661.179720px;}
.y16a{bottom:665.425410px;}
.y124{bottom:666.180690px;}
.y108{bottom:672.091650px;}
.y1b0{bottom:672.236850px;}
.y2a{bottom:674.127330px;}
.ybf{bottom:674.291280px;}
.y171{bottom:676.417590px;}
.y59{bottom:677.841240px;}
.y1fd{bottom:678.051330px;}
.y189{bottom:680.581950px;}
.y1d9{bottom:681.059850px;}
.y65{bottom:682.423320px;}
.y123{bottom:685.987890px;}
.yee{bottom:688.899570px;}
.y14f{bottom:689.309730px;}
.y9a{bottom:691.531470px;}
.y1af{bottom:692.044050px;}
.y29{bottom:695.008050px;}
.ybe{bottom:695.172000px;}
.y169{bottom:695.665410px;}
.y170{bottom:696.224790px;}
.y1fc{bottom:697.858530px;}
.y58{bottom:698.721960px;}
.y107{bottom:700.176000px;}
.y188{bottom:700.389150px;}
.y1d8{bottom:700.867050px;}
.y64{bottom:703.304040px;}
.yc{bottom:703.701000px;}
.y122{bottom:705.795090px;}
.y14e{bottom:709.116930px;}
.yed{bottom:710.143170px;}
.y1ae{bottom:711.851250px;}
.y28{bottom:715.888770px;}
.ybd{bottom:716.415600px;}
.y1fb{bottom:717.665730px;}
.y57{bottom:719.965560px;}
.y187{bottom:720.196350px;}
.ye0{bottom:720.670380px;}
.y1d7{bottom:720.674250px;}
.y16f{bottom:723.229110px;}
.y63{bottom:724.184760px;}
.y121{bottom:725.602290px;}
.y168{bottom:727.341810px;}
.y14d{bottom:728.924130px;}
.yec{bottom:731.023890px;}
.y1ad{bottom:731.658450px;}
.y27{bottom:737.132370px;}
.ybc{bottom:737.296320px;}
.y1d6{bottom:740.481450px;}
.y56{bottom:740.846280px;}
.y7b{bottom:743.464410px;}
.y16e{bottom:744.109830px;}
.y120{bottom:745.046610px;}
.y62{bottom:745.428360px;}
.y167{bottom:746.786130px;}
.y14c{bottom:748.368450px;}
.y1fa{bottom:749.342130px;}
.y186{bottom:751.872750px;}
.y26{bottom:758.013090px;}
.yeb{bottom:760.901010px;}
.y1ac{bottom:763.334850px;}
.y16d{bottom:765.353430px;}
.y61{bottom:766.309080px;}
.y166{bottom:766.593330px;}
.ybb{bottom:767.173440px;}
.y14b{bottom:768.175650px;}
.y1f9{bottom:769.149330px;}
.y55{bottom:770.723400px;}
.y185{bottom:771.679950px;}
.y1d5{bottom:772.157850px;}
.y11f{bottom:772.413810px;}
.y7a{bottom:773.341530px;}
.yea{bottom:782.144610px;}
.y1ab{bottom:783.142050px;}
.y16c{bottom:786.234150px;}
.y165{bottom:786.400530px;}
.y9{bottom:786.613500px;}
.y60{bottom:787.189800px;}
.y25{bottom:787.890210px;}
.y14a{bottom:787.982850px;}
.yba{bottom:788.417040px;}
.y1f8{bottom:788.956530px;}
.y1d4{bottom:791.965050px;}
.y54{bottom:791.967000px;}
.y8{bottom:792.912690px;}
.y11e{bottom:793.294530px;}
.y79{bottom:794.585130px;}
.y1aa{bottom:802.949250px;}
.ye9{bottom:803.025330px;}
.y184{bottom:803.356350px;}
.y164{bottom:806.207730px;}
.y149{bottom:807.790050px;}
.y1f7{bottom:808.763730px;}
.y24{bottom:809.133810px;}
.yb9{bottom:809.297760px;}
.y1d3{bottom:811.772250px;}
.y53{bottom:812.847720px;}
.y7{bottom:813.066210px;}
.y11d{bottom:814.175250px;}
.y78{bottom:815.465850px;}
.y5f{bottom:821.029650px;}
.y1a9{bottom:822.756450px;}
.y183{bottom:823.163550px;}
.y163{bottom:826.014930px;}
.y148{bottom:827.597250px;}
.y1f6{bottom:828.570930px;}
.y23{bottom:830.014530px;}
.yb8{bottom:830.178480px;}
.y1d2{bottom:831.579450px;}
.ye8{bottom:832.902450px;}
.y6{bottom:833.219730px;}
.y52{bottom:833.728440px;}
.y11c{bottom:835.418850px;}
.y77{bottom:836.346570px;}
.y99{bottom:839.132910px;}
.y182{bottom:842.970750px;}
.y147{bottom:847.404450px;}
.y1f5{bottom:848.015250px;}
.y22{bottom:850.895250px;}
.yb7{bottom:851.422080px;}
.y5{bottom:853.373250px;}
.ye7{bottom:854.146050px;}
.y1a8{bottom:854.432850px;}
.y162{bottom:854.818530px;}
.y51{bottom:854.972040px;}
.y11b{bottom:856.299570px;}
.y76{bottom:857.590170px;}
.y181{bottom:862.777950px;}
.y1d1{bottom:863.255850px;}
.y16b{bottom:865.074150px;}
.y202{bottom:865.275000px;}
.y146{bottom:867.211650px;}
.y1f4{bottom:867.822450px;}
.y98{bottom:869.010030px;}
.y177{bottom:869.598690px;}
.y21{bottom:872.138850px;}
.yb6{bottom:872.302800px;}
.y1a7{bottom:874.240050px;}
.y161{bottom:874.625730px;}
.y50{bottom:875.852760px;}
.y11a{bottom:877.180290px;}
.y75{bottom:878.470890px;}
.y1d0{bottom:883.063050px;}
.ye6{bottom:884.023170px;}
.y145{bottom:889.171650px;}
.y176{bottom:889.405890px;}
.y97{bottom:890.253630px;}
.y20{bottom:893.019570px;}
.y1a6{bottom:894.047250px;}
.y160{bottom:894.432930px;}
.y180{bottom:894.454350px;}
.y4f{bottom:896.733480px;}
.y119{bottom:898.423890px;}
.y74{bottom:899.351610px;}
.y1f3{bottom:899.861730px;}
.y1cf{bottom:902.870250px;}
.ye5{bottom:904.903890px;}
.yb5{bottom:906.142800px;}
.y175{bottom:909.213090px;}
.y96{bottom:911.134350px;}
.y1a5{bottom:913.491570px;}
.y1f{bottom:913.900290px;}
.y15f{bottom:914.240130px;}
.y17f{bottom:914.261550px;}
.y4e{bottom:917.977080px;}
.y118{bottom:919.304610px;}
.y1f2{bottom:919.306050px;}
.y73{bottom:920.595210px;}
.y1ce{bottom:922.677450px;}
.y174{bottom:929.020290px;}
.y95{bottom:932.015070px;}
.y15e{bottom:933.684450px;}
.y17e{bottom:934.068750px;}
.y1e{bottom:935.143890px;}
.y4d{bottom:938.857800px;}
.y1f1{bottom:939.113250px;}
.y144{bottom:939.920850px;}
.y117{bottom:940.185330px;}
.y72{bottom:941.475930px;}
.y1a4{bottom:945.530850px;}
.y94{bottom:953.258670px;}
.y4{bottom:953.832810px;}
.y17d{bottom:953.875950px;}
.y1cd{bottom:954.353850px;}
.y1d{bottom:956.024610px;}
.yb4{bottom:956.892570px;}
.y4c{bottom:959.738520px;}
.y143{bottom:960.801570px;}
.y116{bottom:961.428930px;}
.y71{bottom:962.356650px;}
.y15d{bottom:962.488050px;}
.y1a3{bottom:965.338050px;}
.y1f0{bottom:969.716130px;}
.y93{bottom:974.139390px;}
.y1cc{bottom:974.161050px;}
.y1c{bottom:976.905330px;}
.yb3{bottom:978.136170px;}
.y4b{bottom:980.982120px;}
.y142{bottom:982.045170px;}
.y15c{bottom:982.295250px;}
.y115{bottom:982.309650px;}
.y70{bottom:983.600250px;}
.y17c{bottom:985.552350px;}
.y1ef{bottom:990.596850px;}
.y1cb{bottom:993.968250px;}
.y92{bottom:995.020110px;}
.y1a2{bottom:997.014450px;}
.y1b{bottom:998.148930px;}
.yb2{bottom:999.016890px;}
.y4a{bottom:1001.862840px;}
.y15b{bottom:1002.102450px;}
.y3{bottom:1003.136970px;}
.y17b{bottom:1005.359550px;}
.y141{bottom:1011.922290px;}
.y1ca{bottom:1013.412570px;}
.y114{bottom:1016.149650px;}
.y91{bottom:1016.263710px;}
.y1a1{bottom:1016.821650px;}
.y6f{bottom:1017.440100px;}
.y1a{bottom:1019.029650px;}
.yb1{bottom:1019.897610px;}
.y15a{bottom:1021.909650px;}
.y1ee{bottom:1023.709650px;}
.ydf{bottom:1024.869660px;}
.y17a{bottom:1025.166750px;}
.y49{bottom:1031.739960px;}
.y140{bottom:1032.803010px;}
.y90{bottom:1037.144430px;}
.yb0{bottom:1041.141210px;}
.y1c9{bottom:1045.451850px;}
.y2{bottom:1052.807250px;}
.y48{bottom:1052.983560px;}
.y13f{bottom:1054.046610px;}
.yde{bottom:1055.109660px;}
.y8f{bottom:1058.025150px;}
.yaf{bottom:1062.021930px;}
.y1c8{bottom:1065.259050px;}
.y47{bottom:1073.864280px;}
.y13e{bottom:1074.927330px;}
.ydd{bottom:1075.990380px;}
.y8e{bottom:1079.268750px;}
.yae{bottom:1082.902650px;}
.y46{bottom:1094.745000px;}
.y13d{bottom:1095.808050px;}
.y179{bottom:1096.446600px;}
.ydc{bottom:1096.871100px;}
.y1c7{bottom:1096.935450px;}
.y1ed{bottom:1097.509650px;}
.y19{bottom:1097.869650px;}
.y8d{bottom:1113.108600px;}
.yad{bottom:1115.309100px;}
.y45{bottom:1115.988600px;}
.y1c6{bottom:1116.742650px;}
.y13c{bottom:1117.051650px;}
.ydb{bottom:1118.114700px;}
.h11{height:41.032969px;}
.hd{height:43.912969px;}
.h12{height:45.127969px;}
.h2{height:47.373047px;}
.hf{height:48.095156px;}
.h9{height:49.878281px;}
.h19{height:49.966875px;}
.h6{height:53.149500px;}
.h4{height:54.628594px;}
.hc{height:60.641719px;}
.h3{height:118.146797px;}
.h8{height:148.447266px;}
.h5{height:369.921000px;}
.h1b{height:397.558500px;}
.h1a{height:954.567000px;}
.h17{height:1030.039500px;}
.h7{height:1146.967500px;}
.ha{height:1152.283500px;}
.h16{height:1153.347000px;}
.h10{height:1158.660000px;}
.h13{height:1158.661500px;}
.hb{height:1159.725000px;}
.h18{height:1162.912500px;}
.h14{height:1163.976000px;}
.he{height:1165.039500px;}
.h15{height:1169.292000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:0.114000px;}
.w4{width:892.686000px;}
.w2{width:892.800000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x4{left:121.295520px;}
.xb{left:128.880720px;}
.x9{left:129.961440px;}
.x7{left:138.600000px;}
.x8{left:162.000000px;}
.xa{left:220.687200px;}
.x2{left:234.000000px;}
.xd{left:260.989200px;}
.xe{left:287.993520px;}
.xc{left:679.299120px;}
.x3{left:701.253360px;}
.xf{left:751.323600px;}
.x10{left:760.306320px;}
.x6{left:789.130800px;}
.x5{left:892.800000px;}
@media print{
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls39{letter-spacing:-1.881600pt;}
.ls2d{letter-spacing:-1.827840pt;}
.ls4f{letter-spacing:-1.751040pt;}
.ls38{letter-spacing:-1.666560pt;}
.ls60{letter-spacing:-1.612800pt;}
.ls24{letter-spacing:-1.559040pt;}
.ls4d{letter-spacing:-1.556480pt;}
.ls23{letter-spacing:-1.505280pt;}
.ls1c{letter-spacing:-1.451520pt;}
.ls7{letter-spacing:-1.446400pt;}
.ls1d{letter-spacing:-1.344000pt;}
.ls4e{letter-spacing:-1.313280pt;}
.ls20{letter-spacing:-1.290240pt;}
.ls29{letter-spacing:-1.236480pt;}
.ls47{letter-spacing:-1.216000pt;}
.ls48{letter-spacing:-1.167360pt;}
.ls25{letter-spacing:-1.128960pt;}
.ls54{letter-spacing:-1.075200pt;}
.ls52{letter-spacing:-1.021440pt;}
.ls4{letter-spacing:-1.012480pt;}
.ls45{letter-spacing:-0.972800pt;}
.ls2c{letter-spacing:-0.967680pt;}
.ls35{letter-spacing:-0.913920pt;}
.ls3c{letter-spacing:-0.883200pt;}
.ls22{letter-spacing:-0.806400pt;}
.ls4a{letter-spacing:-0.778240pt;}
.ls26{letter-spacing:-0.752640pt;}
.ls36{letter-spacing:-0.698880pt;}
.ls21{letter-spacing:-0.591360pt;}
.lsb{letter-spacing:-0.588800pt;}
.ls1a{letter-spacing:-0.537600pt;}
.lsc{letter-spacing:-0.529920pt;}
.ls33{letter-spacing:-0.519680pt;}
.ls3d{letter-spacing:-0.483840pt;}
.ls16{letter-spacing:-0.471040pt;}
.ls3a{letter-spacing:-0.445440pt;}
.ls46{letter-spacing:-0.437760pt;}
.lsa{letter-spacing:-0.412160pt;}
.ls1e{letter-spacing:-0.376320pt;}
.ls57{letter-spacing:-0.371200pt;}
.ls43{letter-spacing:-0.353280pt;}
.ls5d{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.294400pt;}
.ls4c{letter-spacing:-0.243200pt;}
.lsf{letter-spacing:-0.235520pt;}
.ls37{letter-spacing:-0.222720pt;}
.ls8{letter-spacing:-0.176640pt;}
.ls1b{letter-spacing:-0.161280pt;}
.ls34{letter-spacing:-0.148480pt;}
.ls19{letter-spacing:-0.107520pt;}
.ls9{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.048640pt;}
.ls28{letter-spacing:0.053760pt;}
.ls31{letter-spacing:0.058880pt;}
.ls58{letter-spacing:0.102144pt;}
.ls27{letter-spacing:0.107520pt;}
.lsd{letter-spacing:0.117760pt;}
.ls59{letter-spacing:0.123648pt;}
.ls18{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.161280pt;}
.ls42{letter-spacing:0.176640pt;}
.ls3e{letter-spacing:0.182784pt;}
.ls5b{letter-spacing:0.188160pt;}
.ls5c{letter-spacing:0.198912pt;}
.ls51{letter-spacing:0.209664pt;}
.ls15{letter-spacing:0.215040pt;}
.ls5{letter-spacing:0.289280pt;}
.ls2b{letter-spacing:0.322560pt;}
.ls4b{letter-spacing:0.340480pt;}
.ls17{letter-spacing:0.353280pt;}
.ls2f{letter-spacing:0.376320pt;}
.ls3b{letter-spacing:0.412160pt;}
.ls6{letter-spacing:0.433920pt;}
.ls5f{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.483840pt;}
.ls41{letter-spacing:0.535040pt;}
.ls1f{letter-spacing:0.537600pt;}
.ls1{letter-spacing:0.588800pt;}
.ls44{letter-spacing:0.591360pt;}
.ls32{letter-spacing:0.634368pt;}
.ls10{letter-spacing:0.645120pt;}
.ls0{letter-spacing:0.647680pt;}
.ls11{letter-spacing:0.655872pt;}
.ls3f{letter-spacing:0.747264pt;}
.ls2a{letter-spacing:0.763392pt;}
.ls2{letter-spacing:0.765440pt;}
.ls56{letter-spacing:0.827904pt;}
.ls5e{letter-spacing:0.860160pt;}
.ls55{letter-spacing:1.113600pt;}
.ls53{letter-spacing:3.356160pt;}
.ls2e{letter-spacing:34.373120pt;}
.ls50{letter-spacing:40.104960pt;}
.ls30{letter-spacing:52.756480pt;}
.ls40{letter-spacing:88.970240pt;}
.ls14{letter-spacing:137.625600pt;}
.ls12{letter-spacing:150.420480pt;}
.ws73{word-spacing:-58.666667pt;}
.ws7d{word-spacing:-36.640000pt;}
.ws1b{word-spacing:-36.320000pt;}
.ws1a{word-spacing:-36.160000pt;}
.ws7b{word-spacing:-35.840000pt;}
.ws0{word-spacing:-31.242240pt;}
.ws77{word-spacing:-16.629760pt;}
.ws78{word-spacing:-16.407040pt;}
.ws4d{word-spacing:-16.258560pt;}
.ws5f{word-spacing:-13.719040pt;}
.ws6{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.130240pt;}
.ws7{word-spacing:-13.012480pt;}
.ws3{word-spacing:-12.894720pt;}
.ws4f{word-spacing:-12.835840pt;}
.ws20{word-spacing:-12.794880pt;}
.ws5{word-spacing:-12.776960pt;}
.ws4{word-spacing:-12.718080pt;}
.ws25{word-spacing:-12.633600pt;}
.ws43{word-spacing:-12.472320pt;}
.ws7e{word-spacing:-12.364800pt;}
.ws24{word-spacing:-12.257280pt;}
.ws44{word-spacing:-12.203520pt;}
.ws27{word-spacing:-12.149760pt;}
.ws1c{word-spacing:-12.042240pt;}
.ws1d{word-spacing:-11.988480pt;}
.ws1e{word-spacing:-11.773440pt;}
.ws1f{word-spacing:-11.612160pt;}
.ws21{word-spacing:-11.558400pt;}
.ws4e{word-spacing:-11.450880pt;}
.ws74{word-spacing:-11.397120pt;}
.ws23{word-spacing:-11.343360pt;}
.ws64{word-spacing:-11.333120pt;}
.ws45{word-spacing:-11.182080pt;}
.ws63{word-spacing:-11.041280pt;}
.ws26{word-spacing:-11.020800pt;}
.ws61{word-spacing:-10.992640pt;}
.ws28{word-spacing:-10.913280pt;}
.ws7c{word-spacing:-10.859520pt;}
.ws42{word-spacing:-10.805760pt;}
.ws22{word-spacing:-10.698240pt;}
.ws62{word-spacing:-10.554880pt;}
.ws66{word-spacing:-10.483200pt;}
.ws60{word-spacing:-10.019840pt;}
.ws65{word-spacing:-9.241600pt;}
.wse{word-spacing:-2.001920pt;}
.ws2e{word-spacing:-1.128960pt;}
.wsb{word-spacing:-1.012480pt;}
.ws14{word-spacing:-0.942080pt;}
.ws2b{word-spacing:-0.883200pt;}
.ws6f{word-spacing:-0.826880pt;}
.ws48{word-spacing:-0.752640pt;}
.wsa{word-spacing:-0.723200pt;}
.ws13{word-spacing:-0.647680pt;}
.ws7f{word-spacing:-0.591360pt;}
.ws5b{word-spacing:-0.588800pt;}
.ws35{word-spacing:-0.537600pt;}
.ws31{word-spacing:-0.483840pt;}
.ws11{word-spacing:-0.471040pt;}
.ws67{word-spacing:-0.353280pt;}
.ws72{word-spacing:-0.322560pt;}
.ws49{word-spacing:-0.268800pt;}
.ws71{word-spacing:-0.215040pt;}
.ws12{word-spacing:-0.176640pt;}
.ws50{word-spacing:-0.160000pt;}
.ws29{word-spacing:-0.117760pt;}
.ws3c{word-spacing:-0.107520pt;}
.ws2a{word-spacing:-0.058880pt;}
.ws41{word-spacing:-0.053760pt;}
.ws8{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.048640pt;}
.ws52{word-spacing:0.053760pt;}
.ws19{word-spacing:0.058880pt;}
.ws33{word-spacing:0.107520pt;}
.wsc{word-spacing:0.144640pt;}
.ws79{word-spacing:0.148480pt;}
.ws37{word-spacing:0.161280pt;}
.ws6b{word-spacing:0.194560pt;}
.ws16{word-spacing:0.235520pt;}
.ws51{word-spacing:0.268800pt;}
.wsd{word-spacing:0.289280pt;}
.ws10{word-spacing:0.294400pt;}
.ws75{word-spacing:0.322560pt;}
.ws15{word-spacing:0.353280pt;}
.ws3a{word-spacing:0.376320pt;}
.ws17{word-spacing:0.412160pt;}
.ws4b{word-spacing:0.430080pt;}
.wsf{word-spacing:0.471040pt;}
.ws5e{word-spacing:0.483840pt;}
.ws6d{word-spacing:0.486400pt;}
.ws2d{word-spacing:0.537600pt;}
.ws3b{word-spacing:0.591360pt;}
.ws59{word-spacing:0.698880pt;}
.ws2c{word-spacing:0.752640pt;}
.ws6c{word-spacing:0.778240pt;}
.ws32{word-spacing:0.806400pt;}
.ws80{word-spacing:0.860160pt;}
.ws5c{word-spacing:0.883200pt;}
.ws56{word-spacing:0.913920pt;}
.ws54{word-spacing:0.967680pt;}
.ws34{word-spacing:1.021440pt;}
.ws76{word-spacing:1.075200pt;}
.ws3f{word-spacing:1.128960pt;}
.ws69{word-spacing:1.167360pt;}
.ws18{word-spacing:1.177600pt;}
.ws36{word-spacing:1.182720pt;}
.ws5d{word-spacing:1.236480pt;}
.ws39{word-spacing:1.290240pt;}
.ws70{word-spacing:1.313280pt;}
.ws53{word-spacing:1.336320pt;}
.ws38{word-spacing:1.344000pt;}
.ws4a{word-spacing:1.451520pt;}
.ws5a{word-spacing:1.559040pt;}
.ws9{word-spacing:1.591040pt;}
.ws81{word-spacing:1.612800pt;}
.ws55{word-spacing:1.666560pt;}
.ws68{word-spacing:1.751040pt;}
.ws47{word-spacing:1.774080pt;}
.ws4c{word-spacing:1.827840pt;}
.ws7a{word-spacing:1.881600pt;}
.ws46{word-spacing:1.935360pt;}
.ws30{word-spacing:1.989120pt;}
.ws6e{word-spacing:2.091520pt;}
.ws2f{word-spacing:2.096640pt;}
.ws3d{word-spacing:2.150400pt;}
.ws3e{word-spacing:2.204160pt;}
.ws57{word-spacing:2.311680pt;}
.ws58{word-spacing:2.526720pt;}
.ws40{word-spacing:9.730560pt;}
._6{margin-left:-10.400000pt;}
._3{margin-left:-2.429952pt;}
._2{margin-left:-0.896768pt;}
._1{width:0.940160pt;}
._4{width:2.198528pt;}
._7{width:3.111936pt;}
._5{width:32.384000pt;}
._0{width:350.885333pt;}
.fs6{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:144.640000pt;}
.fs3{font-size:160.000000pt;}
.y203{bottom:-708.129200pt;}
.y15{bottom:-311.804800pt;}
.y14{bottom:-293.890560pt;}
.y13{bottom:-275.976320pt;}
.y12{bottom:-258.062080pt;}
.y11{bottom:-240.147840pt;}
.y10{bottom:-222.233600pt;}
.y1ec{bottom:-213.010533pt;}
.y159{bottom:-145.925200pt;}
.yf{bottom:-132.936080pt;}
.ye{bottom:-89.110160pt;}
.yd{bottom:-44.958800pt;}
.y44{bottom:-41.988800pt;}
.y18{bottom:-41.980827pt;}
.yda{bottom:-36.318933pt;}
.yac{bottom:-36.318533pt;}
.y5e{bottom:-30.649200pt;}
.y6e{bottom:-30.648800pt;}
.yb{bottom:-30.230907pt;}
.y178{bottom:-28.759467pt;}
.y106{bottom:-26.870533pt;}
.ye4{bottom:-26.869200pt;}
.ya{bottom:-12.316667pt;}
.y17{bottom:-11.907867pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:50.300960pt;}
.y1{bottom:56.692933pt;}
.y8b{bottom:69.184160pt;}
.y105{bottom:82.205333pt;}
.y6d{bottom:85.038667pt;}
.y8a{bottom:87.744800pt;}
.ye3{bottom:87.873333pt;}
.yab{bottom:88.818667pt;}
.y112{bottom:90.888080pt;}
.y5d{bottom:91.653333pt;}
.yd9{bottom:92.598667pt;}
.y43{bottom:96.378667pt;}
.y113{bottom:97.322667pt;}
.y16{bottom:102.992000pt;}
.y6c{bottom:105.810667pt;}
.y111{bottom:107.204240pt;}
.y13b{bottom:108.035173pt;}
.y42{bottom:111.204453pt;}
.y89{bottom:114.302240pt;}
.y1a0{bottom:115.611333pt;}
.y6b{bottom:122.126827pt;}
.y110{bottom:123.520400pt;}
.y13a{bottom:126.595813pt;}
.y41{bottom:129.765093pt;}
.y88{bottom:133.185440pt;}
.y19f{bottom:133.217733pt;}
.yaa{bottom:135.339627pt;}
.y6a{bottom:138.442987pt;}
.y10f{bottom:139.836560pt;}
.yd8{bottom:143.380133pt;}
.y139{bottom:145.479013pt;}
.y40{bottom:148.325733pt;}
.y87{bottom:151.746080pt;}
.y1c5{bottom:152.801467pt;}
.ya9{bottom:154.222827pt;}
.y10e{bottom:155.830160pt;}
.y19e{bottom:161.374533pt;}
.y104{bottom:161.779173pt;}
.y138{bottom:164.039653pt;}
.y3f{bottom:167.208933pt;}
.y86{bottom:170.306720pt;}
.ya8{bottom:172.783467pt;}
.yd6{bottom:175.702693pt;}
.y19d{bottom:178.980933pt;}
.y1c4{bottom:182.113467pt;}
.y137{bottom:182.600293pt;}
.y3e{bottom:185.769573pt;}
.y103{bottom:188.336613pt;}
.yd7{bottom:189.139493pt;}
.y85{bottom:189.189920pt;}
.ya7{bottom:199.340907pt;}
.y1c3{bottom:199.719867pt;}
.y136{bottom:201.483493pt;}
.yd5{bottom:202.260133pt;}
.y3d{bottom:204.330213pt;}
.y158{bottom:206.929333pt;}
.y19c{bottom:207.137733pt;}
.y102{bottom:207.219813pt;}
.y84{bottom:207.750560pt;}
.y1c2{bottom:217.326267pt;}
.ya6{bottom:218.224107pt;}
.y135{bottom:220.044133pt;}
.y3c{bottom:223.213413pt;}
.y19b{bottom:224.744133pt;}
.y101{bottom:225.780453pt;}
.y83{bottom:226.311200pt;}
.yd3{bottom:229.782693pt;}
.y1c1{bottom:234.932667pt;}
.ya5{bottom:236.784747pt;}
.y1ea{bottom:241.620133pt;}
.y3b{bottom:241.774053pt;}
.y19a{bottom:242.350533pt;}
.yd4{bottom:243.219493pt;}
.y100{bottom:244.341093pt;}
.y134{bottom:250.124133pt;}
.y1c0{bottom:252.539067pt;}
.y82{bottom:255.111200pt;}
.ya4{bottom:255.345387pt;}
.yd2{bottom:256.340133pt;}
.y199{bottom:259.956933pt;}
.y3a{bottom:260.334693pt;}
.yff{bottom:263.224293pt;}
.y1e9{bottom:270.932133pt;}
.y1eb{bottom:274.014667pt;}
.ya3{bottom:274.228587pt;}
.y39{bottom:279.217893pt;}
.y1bf{bottom:280.695867pt;}
.yfe{bottom:281.784933pt;}
.yd0{bottom:283.862693pt;}
.y198{bottom:288.113733pt;}
.y81{bottom:288.390560pt;}
.y1e8{bottom:288.538533pt;}
.ya2{bottom:292.789227pt;}
.y133{bottom:295.163493pt;}
.yd1{bottom:296.983333pt;}
.y1be{bottom:298.302267pt;}
.yfd{bottom:300.345573pt;}
.y197{bottom:305.720133pt;}
.y38{bottom:305.775333pt;}
.y1e7{bottom:306.144933pt;}
.y80{bottom:306.951200pt;}
.ycf{bottom:310.420133pt;}
.ya1{bottom:311.349867pt;}
.y132{bottom:314.046693pt;}
.y1bd{bottom:315.908667pt;}
.yfc{bottom:319.228773pt;}
.y196{bottom:323.326533pt;}
.y1e6{bottom:323.751333pt;}
.y37{bottom:324.335973pt;}
.y131{bottom:332.607333pt;}
.y10d{bottom:335.670800pt;}
.y7f{bottom:337.031200pt;}
.ycc{bottom:337.614373pt;}
.yfb{bottom:337.789413pt;}
.y69{bottom:340.042987pt;}
.ya0{bottom:340.149867pt;}
.y1e5{bottom:341.357733pt;}
.yce{bottom:341.773093pt;}
.y36{bottom:343.219173pt;}
.y1bc{bottom:344.065467pt;}
.y130{bottom:351.167973pt;}
.y195{bottom:351.483333pt;}
.ye2{bottom:354.202933pt;}
.yfa{bottom:356.350053pt;}
.ycd{bottom:360.657573pt;}
.y1bb{bottom:361.671867pt;}
.y35{bottom:361.779813pt;}
.ycb{bottom:364.500133pt;}
.y194{bottom:369.089733pt;}
.y1e4{bottom:369.514533pt;}
.y12f{bottom:370.051173pt;}
.ye1{bottom:370.519093pt;}
.y9f{bottom:373.429227pt;}
.yf9{bottom:375.233253pt;}
.y34{bottom:380.340453pt;}
.y7e{bottom:382.461093pt;}
.y1e3{bottom:387.120933pt;}
.y1ba{bottom:389.828667pt;}
.yc8{bottom:391.702693pt;}
.y9e{bottom:391.989867pt;}
.yf8{bottom:393.793893pt;}
.yca{bottom:395.861413pt;}
.y12e{bottom:396.608613pt;}
.y193{bottom:397.246533pt;}
.y7d{bottom:398.777253pt;}
.y33{bottom:399.223653pt;}
.y1e2{bottom:404.727333pt;}
.y1b9{bottom:407.435067pt;}
.yf7{bottom:412.354533pt;}
.yc9{bottom:414.745893pt;}
.y192{bottom:414.852933pt;}
.y12d{bottom:415.169253pt;}
.y32{bottom:417.784293pt;}
.yc7{bottom:418.260133pt;}
.y9d{bottom:422.069867pt;}
.y1b8{bottom:425.041467pt;}
.yf6{bottom:431.237733pt;}
.y191{bottom:432.459333pt;}
.y1e1{bottom:432.884133pt;}
.y12c{bottom:434.052453pt;}
.y31{bottom:436.344933pt;}
.yc5{bottom:445.782693pt;}
.y157{bottom:445.996560pt;}
.y190{bottom:450.065733pt;}
.y1e0{bottom:450.490533pt;}
.y12b{bottom:452.613093pt;}
.y1b7{bottom:453.198267pt;}
.yf5{bottom:457.795173pt;}
.yc6{bottom:459.219493pt;}
.y30{bottom:463.224933pt;}
.y9c{bottom:467.499760pt;}
.y18f{bottom:467.672133pt;}
.y1b6{bottom:470.804667pt;}
.y12a{bottom:471.173733pt;}
.yc4{bottom:472.340133pt;}
.y156{bottom:472.554000pt;}
.y1df{bottom:478.647333pt;}
.y9b{bottom:483.815920pt;}
.yf4{bottom:484.352613pt;}
.y1b5{bottom:488.411067pt;}
.y2f{bottom:489.782373pt;}
.y129{bottom:490.056933pt;}
.y155{bottom:491.114640pt;}
.y18e{bottom:495.828933pt;}
.y1de{bottom:496.253733pt;}
.yc3{bottom:499.860133pt;}
.yf3{bottom:503.235813pt;}
.y2e{bottom:508.343013pt;}
.y128{bottom:508.617573pt;}
.y154{bottom:509.997840pt;}
.y18d{bottom:513.435333pt;}
.y1dd{bottom:513.860133pt;}
.y1b4{bottom:516.567867pt;}
.yf2{bottom:521.796453pt;}
.y153{bottom:528.558480pt;}
.y7c{bottom:529.655973pt;}
.y10c{bottom:532.150160pt;}
.y201{bottom:532.286693pt;}
.y1b3{bottom:534.174267pt;}
.y2d{bottom:535.223013pt;}
.yc2{bottom:535.368747pt;}
.y5c{bottom:538.524267pt;}
.y127{bottom:539.341413pt;}
.y18c{bottom:541.592133pt;}
.y1dc{bottom:542.016933pt;}
.y68{bottom:542.597227pt;}
.y152{bottom:547.119120pt;}
.yf1{bottom:548.353893pt;}
.y10b{bottom:548.466320pt;}
.y200{bottom:549.893093pt;}
.y1b2{bottom:551.780667pt;}
.y2c{bottom:553.783653pt;}
.y126{bottom:556.947813pt;}
.y18b{bottom:559.198533pt;}
.y1db{bottom:559.623333pt;}
.yc1{bottom:561.926187pt;}
.y10a{bottom:564.782480pt;}
.y5b{bottom:565.081707pt;}
.y151{bottom:566.002320pt;}
.y173{bottom:566.047280pt;}
.yf0{bottom:567.237093pt;}
.y1ff{bottom:567.499493pt;}
.y67{bottom:569.154667pt;}
.y1b1{bottom:569.387067pt;}
.y2b{bottom:572.344293pt;}
.y125{bottom:574.554213pt;}
.y18a{bottom:576.804933pt;}
.y1da{bottom:577.229733pt;}
.yc0{bottom:580.809387pt;}
.y109{bottom:581.098640pt;}
.y172{bottom:583.653680pt;}
.y5a{bottom:583.964907pt;}
.y150{bottom:584.562960pt;}
.y1fe{bottom:585.105893pt;}
.yef{bottom:585.797733pt;}
.y66{bottom:587.715307pt;}
.y16a{bottom:591.489253pt;}
.y124{bottom:592.160613pt;}
.y108{bottom:597.414800pt;}
.y1b0{bottom:597.543867pt;}
.y2a{bottom:599.224293pt;}
.ybf{bottom:599.370027pt;}
.y171{bottom:601.260080pt;}
.y59{bottom:602.525547pt;}
.y1fd{bottom:602.712293pt;}
.y189{bottom:604.961733pt;}
.y1d9{bottom:605.386533pt;}
.y65{bottom:606.598507pt;}
.y123{bottom:609.767013pt;}
.yee{bottom:612.355173pt;}
.y14f{bottom:612.719760pt;}
.y9a{bottom:614.694640pt;}
.y1af{bottom:615.150267pt;}
.y29{bottom:617.784933pt;}
.ybe{bottom:617.930667pt;}
.y169{bottom:618.369253pt;}
.y170{bottom:618.866480pt;}
.y1fc{bottom:620.318693pt;}
.y58{bottom:621.086187pt;}
.y107{bottom:622.378667pt;}
.y188{bottom:622.568133pt;}
.y1d8{bottom:622.992933pt;}
.y64{bottom:625.159147pt;}
.yc{bottom:625.512000pt;}
.y122{bottom:627.373413pt;}
.y14e{bottom:630.326160pt;}
.yed{bottom:631.238373pt;}
.y1ae{bottom:632.756667pt;}
.y28{bottom:636.345573pt;}
.ybd{bottom:636.813867pt;}
.y1fb{bottom:637.925093pt;}
.y57{bottom:639.969387pt;}
.y187{bottom:640.174533pt;}
.ye0{bottom:640.595893pt;}
.y1d7{bottom:640.599333pt;}
.y16f{bottom:642.870320pt;}
.y63{bottom:643.719787pt;}
.y121{bottom:644.979813pt;}
.y168{bottom:646.526053pt;}
.y14d{bottom:647.932560pt;}
.yec{bottom:649.799013pt;}
.y1ad{bottom:650.363067pt;}
.y27{bottom:655.228773pt;}
.ybc{bottom:655.374507pt;}
.y1d6{bottom:658.205733pt;}
.y56{bottom:658.530027pt;}
.y7b{bottom:660.857253pt;}
.y16e{bottom:661.430960pt;}
.y120{bottom:662.263653pt;}
.y62{bottom:662.602987pt;}
.y167{bottom:663.809893pt;}
.y14c{bottom:665.216400pt;}
.y1fa{bottom:666.081893pt;}
.y186{bottom:668.331333pt;}
.y26{bottom:673.789413pt;}
.yeb{bottom:676.356453pt;}
.y1ac{bottom:678.519867pt;}
.y16d{bottom:680.314160pt;}
.y61{bottom:681.163627pt;}
.y166{bottom:681.416293pt;}
.ybb{bottom:681.931947pt;}
.y14b{bottom:682.822800pt;}
.y1f9{bottom:683.688293pt;}
.y55{bottom:685.087467pt;}
.y185{bottom:685.937733pt;}
.y1d5{bottom:686.362533pt;}
.y11f{bottom:686.590053pt;}
.y7a{bottom:687.414693pt;}
.yea{bottom:695.239653pt;}
.y1ab{bottom:696.126267pt;}
.y16c{bottom:698.874800pt;}
.y165{bottom:699.022693pt;}
.y9{bottom:699.212000pt;}
.y60{bottom:699.724267pt;}
.y25{bottom:700.346853pt;}
.y14a{bottom:700.429200pt;}
.yba{bottom:700.815147pt;}
.y1f8{bottom:701.294693pt;}
.y1d4{bottom:703.968933pt;}
.y54{bottom:703.970667pt;}
.y8{bottom:704.811280pt;}
.y11e{bottom:705.150693pt;}
.y79{bottom:706.297893pt;}
.y1aa{bottom:713.732667pt;}
.ye9{bottom:713.800293pt;}
.y184{bottom:714.094533pt;}
.y164{bottom:716.629093pt;}
.y149{bottom:718.035600pt;}
.y1f7{bottom:718.901093pt;}
.y24{bottom:719.230053pt;}
.yb9{bottom:719.375787pt;}
.y1d3{bottom:721.575333pt;}
.y53{bottom:722.531307pt;}
.y7{bottom:722.725520pt;}
.y11d{bottom:723.711333pt;}
.y78{bottom:724.858533pt;}
.y5f{bottom:729.804133pt;}
.y1a9{bottom:731.339067pt;}
.y183{bottom:731.700933pt;}
.y163{bottom:734.235493pt;}
.y148{bottom:735.642000pt;}
.y1f6{bottom:736.507493pt;}
.y23{bottom:737.790693pt;}
.yb8{bottom:737.936427pt;}
.y1d2{bottom:739.181733pt;}
.ye8{bottom:740.357733pt;}
.y6{bottom:740.639760pt;}
.y52{bottom:741.091947pt;}
.y11c{bottom:742.594533pt;}
.y77{bottom:743.419173pt;}
.y99{bottom:745.895920pt;}
.y182{bottom:749.307333pt;}
.y147{bottom:753.248400pt;}
.y1f5{bottom:753.791333pt;}
.y22{bottom:756.351333pt;}
.yb7{bottom:756.819627pt;}
.y5{bottom:758.554000pt;}
.ye7{bottom:759.240933pt;}
.y1a8{bottom:759.495867pt;}
.y162{bottom:759.838693pt;}
.y51{bottom:759.975147pt;}
.y11b{bottom:761.155173pt;}
.y76{bottom:762.302373pt;}
.y181{bottom:766.913733pt;}
.y1d1{bottom:767.338533pt;}
.y16b{bottom:768.954800pt;}
.y202{bottom:769.133333pt;}
.y146{bottom:770.854800pt;}
.y1f4{bottom:771.397733pt;}
.y98{bottom:772.453360pt;}
.y177{bottom:772.976613pt;}
.y21{bottom:775.234533pt;}
.yb6{bottom:775.380267pt;}
.y1a7{bottom:777.102267pt;}
.y161{bottom:777.445093pt;}
.y50{bottom:778.535787pt;}
.y11a{bottom:779.715813pt;}
.y75{bottom:780.863013pt;}
.y1d0{bottom:784.944933pt;}
.ye6{bottom:785.798373pt;}
.y145{bottom:790.374800pt;}
.y176{bottom:790.583013pt;}
.y97{bottom:791.336560pt;}
.y20{bottom:793.795173pt;}
.y1a6{bottom:794.708667pt;}
.y160{bottom:795.051493pt;}
.y180{bottom:795.070533pt;}
.y4f{bottom:797.096427pt;}
.y119{bottom:798.599013pt;}
.y74{bottom:799.423653pt;}
.y1f3{bottom:799.877093pt;}
.y1cf{bottom:802.551333pt;}
.ye5{bottom:804.359013pt;}
.yb5{bottom:805.460267pt;}
.y175{bottom:808.189413pt;}
.y96{bottom:809.897200pt;}
.y1a5{bottom:811.992507pt;}
.y1f{bottom:812.355813pt;}
.y15f{bottom:812.657893pt;}
.y17f{bottom:812.676933pt;}
.y4e{bottom:815.979627pt;}
.y118{bottom:817.159653pt;}
.y1f2{bottom:817.160933pt;}
.y73{bottom:818.306853pt;}
.y1ce{bottom:820.157733pt;}
.y174{bottom:825.795813pt;}
.y95{bottom:828.457840pt;}
.y15e{bottom:829.941733pt;}
.y17e{bottom:830.283333pt;}
.y1e{bottom:831.239013pt;}
.y4d{bottom:834.540267pt;}
.y1f1{bottom:834.767333pt;}
.y144{bottom:835.485200pt;}
.y117{bottom:835.720293pt;}
.y72{bottom:836.867493pt;}
.y1a4{bottom:840.471867pt;}
.y94{bottom:847.341040pt;}
.y4{bottom:847.851387pt;}
.y17d{bottom:847.889733pt;}
.y1cd{bottom:848.314533pt;}
.y1d{bottom:849.799653pt;}
.yb4{bottom:850.571173pt;}
.y4c{bottom:853.100907pt;}
.y143{bottom:854.045840pt;}
.y116{bottom:854.603493pt;}
.y71{bottom:855.428133pt;}
.y15d{bottom:855.544933pt;}
.y1a3{bottom:858.078267pt;}
.y1f0{bottom:861.969893pt;}
.y93{bottom:865.901680pt;}
.y1cc{bottom:865.920933pt;}
.y1c{bottom:868.360293pt;}
.yb3{bottom:869.454373pt;}
.y4b{bottom:871.984107pt;}
.y142{bottom:872.929040pt;}
.y15c{bottom:873.151333pt;}
.y115{bottom:873.164133pt;}
.y70{bottom:874.311333pt;}
.y17c{bottom:876.046533pt;}
.y1ef{bottom:880.530533pt;}
.y1cb{bottom:883.527333pt;}
.y92{bottom:884.462320pt;}
.y1a2{bottom:886.235067pt;}
.y1b{bottom:887.243493pt;}
.yb2{bottom:888.015013pt;}
.y4a{bottom:890.544747pt;}
.y15b{bottom:890.757733pt;}
.y3{bottom:891.677307pt;}
.y17b{bottom:893.652933pt;}
.y141{bottom:899.486480pt;}
.y1ca{bottom:900.811173pt;}
.y114{bottom:903.244133pt;}
.y91{bottom:903.345520pt;}
.y1a1{bottom:903.841467pt;}
.y6f{bottom:904.391200pt;}
.y1a{bottom:905.804133pt;}
.yb1{bottom:906.575653pt;}
.y15a{bottom:908.364133pt;}
.y1ee{bottom:909.964133pt;}
.ydf{bottom:910.995253pt;}
.y17a{bottom:911.259333pt;}
.y49{bottom:917.102187pt;}
.y140{bottom:918.047120pt;}
.y90{bottom:921.906160pt;}
.yb0{bottom:925.458853pt;}
.y1c9{bottom:929.290533pt;}
.y2{bottom:935.828667pt;}
.y48{bottom:935.985387pt;}
.y13f{bottom:936.930320pt;}
.yde{bottom:937.875253pt;}
.y8f{bottom:940.466800pt;}
.yaf{bottom:944.019493pt;}
.y1c8{bottom:946.896933pt;}
.y47{bottom:954.546027pt;}
.y13e{bottom:955.490960pt;}
.ydd{bottom:956.435893pt;}
.y8e{bottom:959.350000pt;}
.yae{bottom:962.580133pt;}
.y46{bottom:973.106667pt;}
.y13d{bottom:974.051600pt;}
.y179{bottom:974.619200pt;}
.ydc{bottom:974.996533pt;}
.y1c7{bottom:975.053733pt;}
.y1ed{bottom:975.564133pt;}
.y19{bottom:975.884133pt;}
.y8d{bottom:989.429867pt;}
.yad{bottom:991.385867pt;}
.y45{bottom:991.989867pt;}
.y1c6{bottom:992.660133pt;}
.y13c{bottom:992.934800pt;}
.ydb{bottom:993.879733pt;}
.h11{height:36.473750pt;}
.hd{height:39.033750pt;}
.h12{height:40.113750pt;}
.h2{height:42.109375pt;}
.hf{height:42.751250pt;}
.h9{height:44.336250pt;}
.h19{height:44.415000pt;}
.h6{height:47.244000pt;}
.h4{height:48.558750pt;}
.hc{height:53.903750pt;}
.h3{height:105.019375pt;}
.h8{height:131.953125pt;}
.h5{height:328.818667pt;}
.h1b{height:353.385333pt;}
.h1a{height:848.504000pt;}
.h17{height:915.590667pt;}
.h7{height:1019.526667pt;}
.ha{height:1024.252000pt;}
.h16{height:1025.197333pt;}
.h10{height:1029.920000pt;}
.h13{height:1029.921333pt;}
.hb{height:1030.866667pt;}
.h18{height:1033.700000pt;}
.h14{height:1034.645333pt;}
.he{height:1035.590667pt;}
.h15{height:1039.370667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:0.101333pt;}
.w4{width:793.498667pt;}
.w2{width:793.600000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x4{left:107.818240pt;}
.xb{left:114.560640pt;}
.x9{left:115.521280pt;}
.x7{left:123.200000pt;}
.x8{left:144.000000pt;}
.xa{left:196.166400pt;}
.x2{left:208.000000pt;}
.xd{left:231.990400pt;}
.xe{left:255.994240pt;}
.xc{left:603.821440pt;}
.x3{left:623.336320pt;}
.xf{left:667.843200pt;}
.x10{left:675.827840pt;}
.x6{left:701.449600pt;}
.x5{left:793.600000pt;}
}




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