
    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_4f005c29c403057195060fc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_34a92962671465519d9ff7a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912308;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_439c888baadcdcaf43f87522.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730957;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_96f717e6716ead403f46b0e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.716000;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_4f005c29c403057195060fc9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936000;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_236ced5932b2061e3a5bb2d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bee529d9b05f8ecfc60650b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942871;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_ee2d7d713298f2604f366ccc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929199;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_74035321f73fe3ca0c35dc02.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_800546dfacb5b608d5f7f0ac.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943359;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_4f005c29c403057195060fc9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936000;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_d84b0b14698f35a2df561caa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.927734;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_0a487c63fa959406c06a40a9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.078613;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_b5f8fe31e83422463f8636da.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.781000;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_69e0505a22abac300e0837c7.woff2')format("woff");}.fff{font-family:fff;line-height:0.912308;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_4e31dee461a82b5791178d38.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.715820;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_c658832bf4fab0fcb362c2a3.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_4f005c29c403057195060fc9.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.936000;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_141c63485b917c6ed566880b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.927734;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_0a768dda931bb318b9a51895.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.078613;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_b5f8fe31e83422463f8636da.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.781000;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_69e0505a22abac300e0837c7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.912308;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_4e31dee461a82b5791178d38.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.715820;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_c658832bf4fab0fcb362c2a3.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_b5f8fe31e83422463f8636da.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.781000;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_69e0505a22abac300e0837c7.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.912308;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_4e31dee461a82b5791178d38.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.715820;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_c658832bf4fab0fcb362c2a3.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_4eee6ec80de3125627521bd2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.927734;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_96fb7690212223f2091c722a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.078613;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_b5f8fe31e83422463f8636da.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.781000;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_4f005c29c403057195060fc9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.936000;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_69e0505a22abac300e0837c7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.912308;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_4e31dee461a82b5791178d38.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.715820;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_c658832bf4fab0fcb362c2a3.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_4eee6ec80de3125627521bd2.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.927734;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_96fb7690212223f2091c722a.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.078613;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_b5f8fe31e83422463f8636da.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.781000;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_4f005c29c403057195060fc9.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.936000;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_69e0505a22abac300e0837c7.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.912308;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_4e31dee461a82b5791178d38.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.715820;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_c658832bf4fab0fcb362c2a3.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_c36f4e60be957c15c337b269.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.690918;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.142000px;}
.v2{vertical-align:6.046800px;}
.v3{vertical-align:32.400000px;}
.lse{letter-spacing:-1.650000px;}
.lsd{letter-spacing:-1.320000px;}
.lsc{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001800px;}
.ls7{letter-spacing:0.003000px;}
.lsa{letter-spacing:0.003600px;}
.ls6{letter-spacing:8.640000px;}
.ls4{letter-spacing:10.200000px;}
.ls1{letter-spacing:10.800000px;}
.ls3{letter-spacing:13.200000px;}
.lsb{letter-spacing:14.400000px;}
.ls2{letter-spacing:19.585200px;}
.ls9{letter-spacing:28.800000px;}
.ls5{letter-spacing:36.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-420.000000px;}
.ws22{word-spacing:-98.766600px;}
.wsf{word-spacing:-92.160000px;}
.wsd{word-spacing:-75.600000px;}
.ws94{word-spacing:-72.479400px;}
.ws23{word-spacing:-36.180000px;}
.ws95{word-spacing:-31.680000px;}
.ws6{word-spacing:-25.812000px;}
.wsc5{word-spacing:-20.016000px;}
.wsb4{word-spacing:-16.680000px;}
.ws96{word-spacing:-15.012000px;}
.wse{word-spacing:-14.520000px;}
.ws9c{word-spacing:-14.400000px;}
.ws70{word-spacing:-14.388000px;}
.ws30{word-spacing:-14.322000px;}
.ws10{word-spacing:-14.124000px;}
.ws50{word-spacing:-14.058000px;}
.ws17{word-spacing:-13.926000px;}
.ws5c{word-spacing:-13.794000px;}
.ws26{word-spacing:-13.728000px;}
.ws82{word-spacing:-13.344000px;}
.ws24{word-spacing:-13.332000px;}
.ws5f{word-spacing:-13.200000px;}
.ws87{word-spacing:-13.002000px;}
.ws7{word-spacing:-12.960000px;}
.ws69{word-spacing:-12.936000px;}
.ws86{word-spacing:-12.870000px;}
.wsa6{word-spacing:-12.840000px;}
.ws7b{word-spacing:-12.738000px;}
.ws5e{word-spacing:-12.672000px;}
.ws6a{word-spacing:-12.606000px;}
.ws4b{word-spacing:-12.540000px;}
.ws5d{word-spacing:-12.474000px;}
.ws18{word-spacing:-12.408000px;}
.ws4a{word-spacing:-12.342000px;}
.ws7e{word-spacing:-12.276000px;}
.ws46{word-spacing:-12.210000px;}
.ws1f{word-spacing:-12.144000px;}
.ws89{word-spacing:-12.078000px;}
.ws1d{word-spacing:-12.012000px;}
.ws90{word-spacing:-11.946000px;}
.ws63{word-spacing:-11.814000px;}
.ws78{word-spacing:-11.616000px;}
.ws85{word-spacing:-11.550000px;}
.ws7f{word-spacing:-11.484000px;}
.ws48{word-spacing:-11.418000px;}
.ws74{word-spacing:-11.352000px;}
.ws60{word-spacing:-11.286000px;}
.ws71{word-spacing:-11.220000px;}
.ws19{word-spacing:-11.154000px;}
.ws4f{word-spacing:-11.088000px;}
.ws72{word-spacing:-11.022000px;}
.ws5a{word-spacing:-10.956000px;}
.ws51{word-spacing:-10.890000px;}
.ws2d{word-spacing:-10.758000px;}
.ws73{word-spacing:-10.692000px;}
.ws14{word-spacing:-10.626000px;}
.ws56{word-spacing:-10.560000px;}
.ws91{word-spacing:-10.494000px;}
.ws29{word-spacing:-10.428000px;}
.ws8c{word-spacing:-10.362000px;}
.ws84{word-spacing:-10.032000px;}
.ws33{word-spacing:-9.966000px;}
.ws7d{word-spacing:-9.900000px;}
.ws79{word-spacing:-9.834000px;}
.ws11{word-spacing:-9.768000px;}
.ws62{word-spacing:-9.702000px;}
.ws4c{word-spacing:-9.636000px;}
.ws68{word-spacing:-9.570000px;}
.ws83{word-spacing:-9.504000px;}
.ws81{word-spacing:-9.438000px;}
.ws6d{word-spacing:-9.372000px;}
.ws32{word-spacing:-9.306000px;}
.ws1a{word-spacing:-9.240000px;}
.ws15{word-spacing:-9.174000px;}
.ws8a{word-spacing:-9.108000px;}
.ws8b{word-spacing:-9.042000px;}
.ws40{word-spacing:-8.976000px;}
.ws57{word-spacing:-8.844000px;}
.ws37{word-spacing:-8.778000px;}
.ws39{word-spacing:-8.712000px;}
.ws35{word-spacing:-8.646000px;}
.ws8f{word-spacing:-8.580000px;}
.ws25{word-spacing:-8.514000px;}
.ws52{word-spacing:-8.316000px;}
.ws8e{word-spacing:-8.250000px;}
.ws2a{word-spacing:-8.184000px;}
.ws80{word-spacing:-8.052000px;}
.ws1e{word-spacing:-7.986000px;}
.ws55{word-spacing:-7.920000px;}
.ws3f{word-spacing:-7.854000px;}
.ws2b{word-spacing:-7.722000px;}
.ws9e{word-spacing:-7.680000px;}
.ws45{word-spacing:-7.656000px;}
.ws2f{word-spacing:-7.590000px;}
.ws38{word-spacing:-7.524000px;}
.ws77{word-spacing:-7.392000px;}
.ws27{word-spacing:-7.326000px;}
.ws2c{word-spacing:-7.260000px;}
.ws6f{word-spacing:-7.128000px;}
.ws44{word-spacing:-6.336000px;}
.ws16{word-spacing:-6.138000px;}
.ws41{word-spacing:-6.072000px;}
.ws61{word-spacing:-6.006000px;}
.ws34{word-spacing:-5.940000px;}
.ws92{word-spacing:-5.874000px;}
.ws20{word-spacing:-5.676000px;}
.ws9f{word-spacing:-5.640000px;}
.ws2e{word-spacing:-5.610000px;}
.ws53{word-spacing:-5.544000px;}
.ws31{word-spacing:-5.478000px;}
.ws76{word-spacing:-5.412000px;}
.ws54{word-spacing:-5.346000px;}
.ws5b{word-spacing:-5.082000px;}
.ws3b{word-spacing:-5.016000px;}
.ws67{word-spacing:-4.950000px;}
.ws28{word-spacing:-4.884000px;}
.ws1c{word-spacing:-4.818000px;}
.ws13{word-spacing:-4.752000px;}
.ws42{word-spacing:-4.488000px;}
.ws47{word-spacing:-4.422000px;}
.ws6b{word-spacing:-4.224000px;}
.ws59{word-spacing:-4.092000px;}
.ws6c{word-spacing:-3.960000px;}
.ws64{word-spacing:-3.762000px;}
.ws8d{word-spacing:-3.696000px;}
.ws7a{word-spacing:-3.630000px;}
.wsb6{word-spacing:-3.240000px;}
.ws88{word-spacing:-3.234000px;}
.ws3d{word-spacing:-3.102000px;}
.ws1b{word-spacing:-2.970000px;}
.ws49{word-spacing:-2.904000px;}
.ws75{word-spacing:-2.838000px;}
.ws7c{word-spacing:-2.706000px;}
.ws58{word-spacing:-2.640000px;}
.ws4e{word-spacing:-2.574000px;}
.ws65{word-spacing:-2.508000px;}
.ws3e{word-spacing:-2.442000px;}
.ws4d{word-spacing:-2.310000px;}
.ws3c{word-spacing:-2.244000px;}
.ws3{word-spacing:-2.220000px;}
.ws66{word-spacing:-2.178000px;}
.ws4{word-spacing:-1.998000px;}
.ws36{word-spacing:-1.980000px;}
.ws3a{word-spacing:-1.914000px;}
.ws9{word-spacing:-1.887000px;}
.ws6e{word-spacing:-1.848000px;}
.ws12{word-spacing:-1.776000px;}
.wsbb{word-spacing:-1.620000px;}
.wsb8{word-spacing:-1.020000px;}
.ws5{word-spacing:-0.972000px;}
.wsa{word-spacing:-0.918000px;}
.ws43{word-spacing:-0.864000px;}
.wsa1{word-spacing:-0.540000px;}
.ws2{word-spacing:0.000000px;}
.wsc4{word-spacing:0.918000px;}
.wsbc{word-spacing:1.200000px;}
.wsc6{word-spacing:1.650000px;}
.wsa0{word-spacing:2.340000px;}
.ws98{word-spacing:2.430000px;}
.ws9a{word-spacing:3.240000px;}
.wsb9{word-spacing:3.360000px;}
.wsbf{word-spacing:3.720000px;}
.ws99{word-spacing:4.806000px;}
.wsa3{word-spacing:6.300000px;}
.ws9d{word-spacing:7.020000px;}
.wsc2{word-spacing:9.600000px;}
.wsb5{word-spacing:10.020000px;}
.wsba{word-spacing:10.380000px;}
.wsa5{word-spacing:14.760000px;}
.ws97{word-spacing:15.282000px;}
.wsc0{word-spacing:16.560000px;}
.wsb7{word-spacing:17.880000px;}
.wsbd{word-spacing:18.120000px;}
.wsc3{word-spacing:18.180000px;}
.ws8{word-spacing:20.574000px;}
.wsa4{word-spacing:21.540000px;}
.wsa2{word-spacing:26.760000px;}
.wsbe{word-spacing:27.900000px;}
.wsc1{word-spacing:28.080000px;}
.wsb{word-spacing:41.597400px;}
.wsc{word-spacing:41.633400px;}
.ws9b{word-spacing:66.634800px;}
.ws21{word-spacing:81.017400px;}
.wsb2{word-spacing:96.989400px;}
.wsb1{word-spacing:101.422800px;}
.ws0{word-spacing:101.888400px;}
.wsa9{word-spacing:103.323000px;}
.ws93{word-spacing:107.243400px;}
.wsb0{word-spacing:139.384200px;}
.wsa7{word-spacing:146.404800px;}
.wsac{word-spacing:148.348200px;}
.wsaa{word-spacing:194.464800px;}
.wsad{word-spacing:269.524800px;}
.wsb3{word-spacing:387.307200px;}
.wsab{word-spacing:399.349200px;}
.wsae{word-spacing:430.559400px;}
.wsaf{word-spacing:465.337200px;}
.wsa8{word-spacing:489.367200px;}
._10{margin-left:-2067.096000px;}
._36{margin-left:-1881.693600px;}
._2d{margin-left:-1721.301600px;}
._2b{margin-left:-1718.806800px;}
._3f{margin-left:-1698.882600px;}
._34{margin-left:-1597.708200px;}
._38{margin-left:-1537.439400px;}
._25{margin-left:-1473.690000px;}
._2f{margin-left:-1406.215800px;}
._27{margin-left:-1348.122600px;}
._8{margin-left:-1344.388800px;}
._43{margin-left:-1325.889000px;}
._30{margin-left:-1314.353400px;}
._17{margin-left:-1272.573000px;}
._e{margin-left:-1238.490600px;}
._32{margin-left:-1212.406200px;}
._29{margin-left:-1194.318600px;}
._12{margin-left:-1134.312600px;}
._c{margin-left:-1121.347800px;}
._2a{margin-left:-1086.210000px;}
._3b{margin-left:-1072.250400px;}
._1c{margin-left:-1068.670800px;}
._14{margin-left:-1065.258000px;}
._9{margin-left:-1053.270000px;}
._1e{margin-left:-1029.294000px;}
._a{margin-left:-998.220000px;}
._15{margin-left:-951.156000px;}
._35{margin-left:-937.422000px;}
._23{margin-left:-927.258600px;}
._11{margin-left:-924.264000px;}
._21{margin-left:-915.300000px;}
._18{margin-left:-897.210000px;}
._42{margin-left:-891.096000px;}
._3e{margin-left:-882.966000px;}
._20{margin-left:-878.310000px;}
._13{margin-left:-861.192000px;}
._3c{margin-left:-858.276000px;}
._1a{margin-left:-853.032000px;}
._31{margin-left:-840.294000px;}
._1b{margin-left:-838.440000px;}
._d{margin-left:-813.078000px;}
._16{margin-left:-796.932000px;}
._22{margin-left:-786.240000px;}
._1d{margin-left:-782.130000px;}
._1f{margin-left:-775.422000px;}
._33{margin-left:-767.210400px;}
._40{margin-left:-762.156000px;}
._24{margin-left:-724.446000px;}
._3a{margin-left:-705.240000px;}
._2c{margin-left:-696.222000px;}
._7{margin-left:-693.252000px;}
._1{margin-left:-622.440000px;}
._3d{margin-left:-609.336000px;}
._6{margin-left:-571.860000px;}
._41{margin-left:-563.239800px;}
._0{margin-left:-508.577400px;}
._19{margin-left:-480.864000px;}
._2e{margin-left:-441.126000px;}
._f{margin-left:-399.114000px;}
._28{margin-left:-389.048400px;}
._39{margin-left:-378.162000px;}
._37{margin-left:-366.120000px;}
._26{margin-left:-264.060000px;}
._49{margin-left:-13.186800px;}
._44{margin-left:-10.800000px;}
._4a{margin-left:-9.589800px;}
._4c{margin-left:-8.052000px;}
._b{margin-left:-6.993000px;}
._45{margin-left:-5.940600px;}
._4{margin-left:-4.017600px;}
._3{margin-left:-2.220000px;}
._5{margin-left:-1.043400px;}
._4e{width:1.016400px;}
._2{width:2.196000px;}
._4d{width:3.608400px;}
._4b{width:4.844400px;}
._52{width:6.289200px;}
._4f{width:7.296600px;}
._48{width:8.532000px;}
._47{width:10.492200px;}
._51{width:12.331800px;}
._55{width:13.911600px;}
._59{width:15.636000px;}
._54{width:17.211000px;}
._53{width:18.371400px;}
._5b{width:19.477800px;}
._46{width:20.593200px;}
._58{width:22.455000px;}
._57{width:23.475000px;}
._56{width:24.921000px;}
._5a{width:28.932000px;}
._64{width:30.240000px;}
._61{width:48.077400px;}
._66{width:59.007000px;}
._65{width:79.008000px;}
._60{width:84.695400px;}
._5f{width:153.801600px;}
._5d{width:187.322400px;}
._5c{width:195.512400px;}
._62{width:205.043400px;}
._50{width:220.797600px;}
._5e{width:230.162400px;}
._63{width:304.469400px;}
.fcb{color:rgb(105,198,71);}
.fca{color:rgb(246,131,19);}
.fc8{color:rgb(47,92,179);}
.fc7{color:rgb(210,32,39);}
.fc9{color:rgb(90,198,243);}
.fc5{color:rgb(61,123,199);}
.fc4{color:transparent;}
.fc3{color:rgb(217,182,26);}
.fc2{color:rgb(213,185,16);}
.fc6{color:rgb(48,169,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsd{font-size:126.000000px;}
.fsc{font-size:144.000000px;}
.fs9{font-size:180.000000px;}
.fsb{font-size:288.000000px;}
.fs3{font-size:300.000000px;}
.fs1{font-size:300.112800px;}
.fs4{font-size:420.000000px;}
.fs2{font-size:420.157800px;}
.y0{bottom:0.000000px;}
.y2{bottom:72.509250px;}
.y4{bottom:72.957000px;}
.y6{bottom:83.368950px;}
.y7{bottom:83.904450px;}
.y1{bottom:84.471900px;}
.ya3{bottom:85.007400px;}
.y36{bottom:120.265350px;}
.y5e{bottom:127.559100px;}
.y24d{bottom:127.559250px;}
.y62{bottom:127.597200px;}
.y143{bottom:128.869650px;}
.y183{bottom:130.017750px;}
.y1a1{bottom:131.165700px;}
.y214{bottom:134.222700px;}
.y6d{bottom:134.881650px;}
.y35{bottom:139.817400px;}
.y1e0{bottom:140.372550px;}
.y142{bottom:143.269650px;}
.y61{bottom:143.797200px;}
.y182{bottom:144.417600px;}
.y1a0{bottom:145.565700px;}
.y5d{bottom:147.111000px;}
.y167{bottom:148.669650px;}
.y10b{bottom:149.817750px;}
.y213{bottom:152.222700px;}
.y6c{bottom:152.881650px;}
.y34{bottom:159.069300px;}
.y1df{bottom:159.872550px;}
.y60{bottom:159.997200px;}
.y141{bottom:163.069650px;}
.y10a{bottom:164.217750px;}
.y19f{bottom:165.365700px;}
.yd5{bottom:165.734100px;}
.y18c{bottom:167.321550px;}
.y5c{bottom:167.562900px;}
.y174{bottom:169.617600px;}
.y6b{bottom:170.881650px;}
.y24c{bottom:171.227100px;}
.y5f{bottom:176.197200px;}
.y33{bottom:178.321350px;}
.y212{bottom:178.726500px;}
.yd4{bottom:180.134250px;}
.y18b{bottom:181.721700px;}
.y109{bottom:184.017750px;}
.y140{bottom:187.121550px;}
.y1de{bottom:187.876500px;}
.y5b{bottom:188.014950px;}
.y17f{bottom:188.269650px;}
.y6a{bottom:188.881650px;}
.y24b{bottom:189.227100px;}
.y19e{bottom:189.417600px;}
.y32{bottom:197.573250px;}
.y13f{bottom:201.521550px;}
.y17e{bottom:202.669650px;}
.y19d{bottom:203.817750px;}
.yd3{bottom:204.186150px;}
.y69{bottom:206.881650px;}
.y24a{bottom:207.227100px;}
.y1dd{bottom:207.376500px;}
.y108{bottom:208.069650px;}
.y5a{bottom:208.467000px;}
.ya2{bottom:210.292950px;}
.y31{bottom:216.825150px;}
.y211{bottom:218.326500px;}
.yd2{bottom:218.586150px;}
.y13e{bottom:221.321550px;}
.y107{bottom:222.469650px;}
.y68{bottom:224.881650px;}
.y249{bottom:225.227100px;}
.y166{bottom:225.573600px;}
.y17d{bottom:226.721700px;}
.y1dc{bottom:226.876500px;}
.y19c{bottom:227.869650px;}
.y59{bottom:228.918900px;}
.ya1{bottom:230.745000px;}
.y30{bottom:236.077200px;}
.y210{bottom:236.326500px;}
.y165{bottom:239.973600px;}
.y17c{bottom:241.121550px;}
.y106{bottom:242.269650px;}
.yd1{bottom:242.638050px;}
.y67{bottom:242.881650px;}
.y248{bottom:243.227100px;}
.y13d{bottom:245.373600px;}
.y1db{bottom:246.376500px;}
.y173{bottom:246.521550px;}
.y58{bottom:249.370950px;}
.ya0{bottom:251.196900px;}
.y268{bottom:253.855950px;}
.y20f{bottom:254.326500px;}
.y2f{bottom:255.329250px;}
.yd0{bottom:257.038200px;}
.y13c{bottom:259.773600px;}
.y66{bottom:260.881650px;}
.y172{bottom:260.921700px;}
.y247{bottom:261.227100px;}
.y1a4{bottom:265.173600px;}
.y1da{bottom:265.876500px;}
.y105{bottom:266.321550px;}
.y57{bottom:269.822850px;}
.y9f{bottom:271.648950px;}
.y267{bottom:271.855950px;}
.y20e{bottom:272.326500px;}
.y2e{bottom:274.581150px;}
.y246{bottom:279.227100px;}
.y13b{bottom:279.573600px;}
.y104{bottom:280.721700px;}
.ycf{bottom:281.090100px;}
.y164{bottom:283.825500px;}
.y171{bottom:284.973600px;}
.y1d9{bottom:285.376500px;}
.y65{bottom:287.385450px;}
.y56{bottom:290.274750px;}
.y20d{bottom:290.326500px;}
.y9e{bottom:292.100850px;}
.y2d{bottom:293.833050px;}
.yce{bottom:295.490100px;}
.y245{bottom:297.227100px;}
.y163{bottom:298.225500px;}
.y170{bottom:299.373600px;}
.y103{bottom:300.521550px;}
.y13a{bottom:303.625650px;}
.y128{bottom:304.773600px;}
.y1d8{bottom:304.876500px;}
.y64{bottom:305.385450px;}
.y27e{bottom:305.730000px;}
.y20c{bottom:308.326500px;}
.y55{bottom:310.726800px;}
.y9d{bottom:312.552900px;}
.y2c{bottom:313.085100px;}
.y244{bottom:315.227100px;}
.ycd{bottom:315.290100px;}
.y139{bottom:318.025500px;}
.y127{bottom:319.173600px;}
.y16f{bottom:323.425500px;}
.y1d7{bottom:324.376500px;}
.y102{bottom:324.573600px;}
.y27d{bottom:325.530000px;}
.y1b7{bottom:325.721700px;}
.y20b{bottom:326.326500px;}
.y54{bottom:331.178700px;}
.y63{bottom:331.889400px;}
.y2b{bottom:332.337000px;}
.y9c{bottom:333.004800px;}
.y243{bottom:333.227100px;}
.y138{bottom:337.825500px;}
.y101{bottom:338.973600px;}
.ycc{bottom:339.342150px;}
.y1b6{bottom:340.121550px;}
.y162{bottom:342.077550px;}
.y17b{bottom:343.225500px;}
.y1d6{bottom:343.876500px;}
.y20a{bottom:344.326500px;}
.y27c{bottom:345.330000px;}
.y242{bottom:351.227100px;}
.y2a{bottom:351.589050px;}
.y53{bottom:351.630750px;}
.y9b{bottom:353.456850px;}
.ycb{bottom:353.742000px;}
.y161{bottom:356.477550px;}
.y17a{bottom:357.625650px;}
.y19b{bottom:358.773600px;}
.y137{bottom:361.877550px;}
.y209{bottom:362.326500px;}
.y100{bottom:363.025500px;}
.y1d5{bottom:363.376500px;}
.y1b5{bottom:364.173600px;}
.y27b{bottom:365.130000px;}
.y241{bottom:369.227100px;}
.y29{bottom:370.840950px;}
.y52{bottom:372.082650px;}
.yca{bottom:373.542000px;}
.y9a{bottom:373.908750px;}
.y136{bottom:376.277550px;}
.yff{bottom:377.425500px;}
.y1b4{bottom:378.573600px;}
.y208{bottom:380.326500px;}
.y1a3{bottom:381.677550px;}
.y19a{bottom:382.825500px;}
.y27a{bottom:384.930000px;}
.y240{bottom:387.227100px;}
.y28{bottom:390.093000px;}
.y51{bottom:392.534700px;}
.y99{bottom:394.360800px;}
.y135{bottom:396.077550px;}
.yfe{bottom:397.225500px;}
.y1d4{bottom:397.519500px;}
.yc9{bottom:397.594050px;}
.y1b3{bottom:398.373600px;}
.y160{bottom:400.329450px;}
.y179{bottom:401.477550px;}
.y23f{bottom:405.227100px;}
.y207{bottom:406.830450px;}
.y27{bottom:409.344900px;}
.yc8{bottom:411.994050px;}
.y50{bottom:412.986600px;}
.y15f{bottom:414.729450px;}
.y98{bottom:414.812700px;}
.y178{bottom:415.877550px;}
.y199{bottom:417.025500px;}
.y134{bottom:420.129450px;}
.yfd{bottom:421.277550px;}
.y1b2{bottom:422.425500px;}
.y23e{bottom:423.227100px;}
.y1d3{bottom:425.523450px;}
.y26{bottom:428.596950px;}
.yc7{bottom:431.794050px;}
.y273{bottom:432.045300px;}
.y4f{bottom:433.438500px;}
.y133{bottom:434.529450px;}
.y97{bottom:435.264750px;}
.yfc{bottom:435.677550px;}
.y1b1{bottom:436.825500px;}
.y1a2{bottom:439.929450px;}
.y198{bottom:441.077550px;}
.y23d{bottom:441.227100px;}
.y1d2{bottom:445.023450px;}
.y206{bottom:446.430450px;}
.y25{bottom:447.848850px;}
.y272{bottom:451.845300px;}
.y4e{bottom:453.890550px;}
.y132{bottom:454.329450px;}
.yfb{bottom:455.477550px;}
.y96{bottom:455.716650px;}
.yc6{bottom:455.845950px;}
.y15e{bottom:458.581500px;}
.y23c{bottom:459.227100px;}
.y126{bottom:459.729450px;}
.y1b0{bottom:460.877550px;}
.y205{bottom:464.430450px;}
.y1d1{bottom:464.523450px;}
.y24{bottom:467.100750px;}
.yc5{bottom:470.245950px;}
.y271{bottom:471.645300px;}
.y15d{bottom:472.981500px;}
.y125{bottom:474.129450px;}
.y4d{bottom:474.342450px;}
.y197{bottom:475.277550px;}
.y95{bottom:476.168550px;}
.y131{bottom:478.381500px;}
.yfa{bottom:479.529450px;}
.y204{bottom:482.430450px;}
.y1d0{bottom:484.023450px;}
.y23{bottom:486.352800px;}
.yc4{bottom:490.045950px;}
.y130{bottom:492.781500px;}
.yf9{bottom:493.929450px;}
.y4c{bottom:494.794500px;}
.y1af{bottom:495.077550px;}
.y23b{bottom:495.602100px;}
.y94{bottom:496.620600px;}
.y177{bottom:498.181500px;}
.y196{bottom:499.329450px;}
.y203{bottom:500.430450px;}
.y1cf{bottom:503.523450px;}
.y23a{bottom:503.702100px;}
.y22{bottom:505.604700px;}
.y12f{bottom:512.581500px;}
.yf8{bottom:513.729450px;}
.yc3{bottom:514.098000px;}
.y4b{bottom:515.246550px;}
.y15c{bottom:516.833400px;}
.y93{bottom:517.072500px;}
.y124{bottom:517.981500px;}
.y202{bottom:518.430450px;}
.y279{bottom:518.760750px;}
.y1ae{bottom:519.129450px;}
.y1ce{bottom:523.023450px;}
.y21{bottom:524.856750px;}
.yc2{bottom:528.498000px;}
.y15b{bottom:531.233400px;}
.y123{bottom:532.381500px;}
.y195{bottom:533.529450px;}
.y239{bottom:533.630550px;}
.y4a{bottom:535.698450px;}
.y201{bottom:536.430450px;}
.y12e{bottom:536.633400px;}
.y92{bottom:537.524550px;}
.yf7{bottom:537.781500px;}
.y278{bottom:538.560750px;}
.y238{bottom:541.730550px;}
.y1cd{bottom:542.523450px;}
.y20{bottom:544.108650px;}
.yc1{bottom:548.298000px;}
.y12d{bottom:551.033400px;}
.yf6{bottom:552.181500px;}
.y1ad{bottom:553.329450px;}
.y200{bottom:554.430450px;}
.y15a{bottom:555.285450px;}
.y49{bottom:556.150350px;}
.y122{bottom:556.433400px;}
.y194{bottom:557.581500px;}
.y277{bottom:558.360600px;}
.y1cc{bottom:562.023450px;}
.y1f{bottom:563.360700px;}
.y159{bottom:569.685450px;}
.y121{bottom:570.833400px;}
.y237{bottom:571.658850px;}
.yf5{bottom:571.981500px;}
.yc0{bottom:572.349900px;}
.y1ff{bottom:572.430450px;}
.y16e{bottom:575.085450px;}
.y48{bottom:576.602400px;}
.y1ac{bottom:577.381500px;}
.y276{bottom:578.160750px;}
.y1e{bottom:582.612600px;}
.ybf{bottom:586.749900px;}
.y236{bottom:587.858850px;}
.y91{bottom:589.315800px;}
.y158{bottom:589.485450px;}
.y1fe{bottom:590.430450px;}
.y176{bottom:590.633400px;}
.y1ab{bottom:591.781500px;}
.y120{bottom:594.885450px;}
.y1cb{bottom:595.728900px;}
.yf4{bottom:596.033400px;}
.y47{bottom:597.054300px;}
.y275{bottom:597.960600px;}
.y1d{bottom:601.864500px;}
.y90{bottom:604.615650px;}
.y266{bottom:605.614950px;}
.y1fd{bottom:608.430450px;}
.y11f{bottom:609.285450px;}
.y234{bottom:609.687300px;}
.yf3{bottom:610.433400px;}
.ybe{bottom:610.801950px;}
.y157{bottom:613.537350px;}
.y175{bottom:614.685450px;}
.y1ca{bottom:615.228900px;}
.y1aa{bottom:615.833400px;}
.y46{bottom:617.506350px;}
.y274{bottom:617.760750px;}
.y233{bottom:617.787300px;}
.y8f{bottom:619.915800px;}
.y1c{bottom:621.116550px;}
.y265{bottom:621.814950px;}
.ybd{bottom:625.201950px;}
.y235{bottom:625.887300px;}
.y1fc{bottom:626.430450px;}
.y156{bottom:627.937350px;}
.y11e{bottom:629.085450px;}
.y1a9{bottom:630.233400px;}
.y16d{bottom:633.337350px;}
.yf2{bottom:634.485450px;}
.y8e{bottom:635.215800px;}
.y45{bottom:637.958250px;}
.y264{bottom:638.014950px;}
.y1b{bottom:640.368600px;}
.y1c9{bottom:643.232850px;}
.y1fb{bottom:644.430450px;}
.y231{bottom:647.715600px;}
.y155{bottom:647.737350px;}
.yf1{bottom:648.885450px;}
.ybc{bottom:649.253850px;}
.y8d{bottom:650.515800px;}
.y11d{bottom:653.137350px;}
.y263{bottom:654.214950px;}
.y1a8{bottom:654.285450px;}
.y230{bottom:655.815600px;}
.y44{bottom:658.410300px;}
.y1a{bottom:659.620500px;}
.y1fa{bottom:662.430450px;}
.y1c8{bottom:662.732850px;}
.ybb{bottom:663.653850px;}
.y232{bottom:663.915600px;}
.y8c{bottom:665.815800px;}
.y11c{bottom:667.537350px;}
.yf0{bottom:668.685450px;}
.y262{bottom:670.414950px;}
.y154{bottom:671.789400px;}
.y270{bottom:677.952450px;}
.y43{bottom:678.862200px;}
.y19{bottom:678.872550px;}
.y1f9{bottom:680.430450px;}
.y8b{bottom:681.115650px;}
.y1c7{bottom:682.232850px;}
.yba{bottom:683.453850px;}
.y22f{bottom:686.119050px;}
.y153{bottom:686.189400px;}
.y261{bottom:686.614950px;}
.y11b{bottom:687.337350px;}
.y16c{bottom:691.589250px;}
.yef{bottom:692.737350px;}
.y8a{bottom:696.415800px;}
.y26f{bottom:697.752450px;}
.y18{bottom:698.124450px;}
.y1f8{bottom:698.430450px;}
.y42{bottom:699.314100px;}
.y1c6{bottom:701.732850px;}
.y260{bottom:702.814950px;}
.y22e{bottom:704.119050px;}
.y152{bottom:705.989250px;}
.yee{bottom:707.137350px;}
.yb9{bottom:707.505900px;}
.y12c{bottom:711.389400px;}
.y89{bottom:711.715800px;}
.y1f7{bottom:716.430450px;}
.y17{bottom:717.376350px;}
.y26e{bottom:717.552450px;}
.y25f{bottom:719.014950px;}
.y41{bottom:719.766150px;}
.y1c5{bottom:721.232850px;}
.yb8{bottom:721.905900px;}
.y22d{bottom:722.119050px;}
.y12b{bottom:725.789400px;}
.yed{bottom:726.937350px;}
.y88{bottom:727.015800px;}
.y151{bottom:730.041300px;}
.y11a{bottom:731.189400px;}
.y1f6{bottom:734.430450px;}
.y25e{bottom:735.214950px;}
.y16{bottom:736.628400px;}
.y26d{bottom:737.352450px;}
.y22c{bottom:740.119050px;}
.y40{bottom:740.218200px;}
.y1c4{bottom:740.732850px;}
.yb7{bottom:741.705900px;}
.y87{bottom:742.315800px;}
.y150{bottom:744.441300px;}
.y119{bottom:745.589250px;}
.y16b{bottom:749.841300px;}
.yec{bottom:750.989250px;}
.y25d{bottom:751.414950px;}
.y1f5{bottom:752.430450px;}
.y3{bottom:754.869900px;}
.y5{bottom:755.061000px;}
.y15{bottom:755.880300px;}
.y86{bottom:757.615650px;}
.y22b{bottom:758.119050px;}
.y1c3{bottom:760.232850px;}
.y3f{bottom:760.670100px;}
.y14f{bottom:764.241300px;}
.yeb{bottom:765.389400px;}
.yb6{bottom:765.757800px;}
.y269{bottom:766.563300px;}
.y25c{bottom:767.614950px;}
.y118{bottom:769.641300px;}
.y85{bottom:772.915800px;}
.y14{bottom:775.132350px;}
.y22a{bottom:776.119050px;}
.y1f4{bottom:778.934400px;}
.y1c2{bottom:779.732850px;}
.yb5{bottom:780.157800px;}
.y3e{bottom:781.122000px;}
.y25b{bottom:783.814950px;}
.y117{bottom:784.041300px;}
.y1a7{bottom:785.189250px;}
.y84{bottom:788.215800px;}
.y14e{bottom:788.293200px;}
.yea{bottom:789.441300px;}
.y229{bottom:794.119050px;}
.y13{bottom:794.384250px;}
.y1c1{bottom:799.232850px;}
.yb4{bottom:799.957800px;}
.y3d{bottom:801.574050px;}
.y14d{bottom:802.693200px;}
.y83{bottom:803.515800px;}
.ye9{bottom:803.841300px;}
.y26c{bottom:805.427700px;}
.y12a{bottom:808.093350px;}
.y1a6{bottom:809.241300px;}
.y228{bottom:812.119050px;}
.y12{bottom:813.636300px;}
.y25a{bottom:818.015100px;}
.y1f3{bottom:818.534400px;}
.y82{bottom:818.815650px;}
.y3c{bottom:822.025950px;}
.y129{bottom:822.493350px;}
.y193{bottom:823.641300px;}
.yb3{bottom:824.009700px;}
.ye8{bottom:827.893200px;}
.y227{bottom:830.119050px;}
.y11{bottom:832.888200px;}
.y81{bottom:834.115650px;}
.y26b{bottom:835.531800px;}
.y259{bottom:836.015100px;}
.y1f2{bottom:836.534400px;}
.yb2{bottom:838.409850px;}
.ye7{bottom:842.293200px;}
.y3b{bottom:842.478000px;}
.y14c{bottom:846.545250px;}
.y192{bottom:847.693200px;}
.y226{bottom:848.119050px;}
.y80{bottom:849.415800px;}
.y10{bottom:852.140100px;}
.y258{bottom:854.015100px;}
.y1f1{bottom:854.534400px;}
.y14b{bottom:860.945250px;}
.ye6{bottom:862.093350px;}
.yb1{bottom:862.461750px;}
.y3a{bottom:862.929900px;}
.y26a{bottom:865.635750px;}
.y225{bottom:866.119050px;}
.y116{bottom:866.345250px;}
.yf{bottom:871.392150px;}
.y257{bottom:872.015100px;}
.y1f0{bottom:872.534400px;}
.yb0{bottom:876.861750px;}
.y115{bottom:880.745250px;}
.y1c0{bottom:881.437350px;}
.ye5{bottom:881.893200px;}
.y39{bottom:883.381950px;}
.y224{bottom:884.119050px;}
.y18a{bottom:884.997300px;}
.y1a5{bottom:886.145250px;}
.y256{bottom:890.015100px;}
.y1ef{bottom:890.534400px;}
.y7f{bottom:895.657050px;}
.yaf{bottom:896.661750px;}
.y189{bottom:899.397150px;}
.y114{bottom:900.545250px;}
.y1bf{bottom:901.237350px;}
.y223{bottom:902.119050px;}
.y38{bottom:903.833850px;}
.yd{bottom:903.943050px;}
.y14a{bottom:904.797150px;}
.ye4{bottom:905.945250px;}
.y255{bottom:908.015100px;}
.y1ee{bottom:908.534400px;}
.y7e{bottom:910.957050px;}
.y149{bottom:919.197300px;}
.y222{bottom:920.119050px;}
.ye3{bottom:920.345250px;}
.yae{bottom:920.713650px;}
.y1be{bottom:921.037350px;}
.yc{bottom:921.943050px;}
.y188{bottom:923.449200px;}
.y37{bottom:924.285900px;}
.y113{bottom:924.597150px;}
.y254{bottom:926.015100px;}
.y7d{bottom:926.257200px;}
.y1ed{bottom:926.534400px;}
.yad{bottom:935.113800px;}
.y187{bottom:937.849200px;}
.y221{bottom:938.119050px;}
.y112{bottom:938.997300px;}
.y7c{bottom:941.557200px;}
.y253{bottom:944.015100px;}
.ye2{bottom:944.397150px;}
.y1ec{bottom:944.534400px;}
.yb{bottom:948.446850px;}
.yac{bottom:954.913800px;}
.y220{bottom:956.119050px;}
.y7b{bottom:956.857200px;}
.y186{bottom:957.649200px;}
.ye1{bottom:958.797150px;}
.y1bd{bottom:960.637350px;}
.y252{bottom:962.015100px;}
.y1eb{bottom:962.534400px;}
.y111{bottom:963.049200px;}
.ya{bottom:966.446850px;}
.y7a{bottom:972.157050px;}
.y21f{bottom:974.119050px;}
.y110{bottom:977.449200px;}
.y191{bottom:978.597150px;}
.yab{bottom:978.965850px;}
.y251{bottom:980.015100px;}
.y1bc{bottom:980.437350px;}
.y1ea{bottom:980.534400px;}
.y185{bottom:981.701100px;}
.ye0{bottom:982.849200px;}
.y79{bottom:987.457050px;}
.y21e{bottom:992.119050px;}
.y9{bottom:992.950800px;}
.yaa{bottom:993.365700px;}
.y184{bottom:996.101100px;}
.ydf{bottom:997.249200px;}
.y250{bottom:998.015100px;}
.y1e9{bottom:998.534400px;}
.y1bb{bottom:1000.237500px;}
.ye{bottom:1000.564800px;}
.y181{bottom:1001.501100px;}
.y190{bottom:1002.649200px;}
.y78{bottom:1002.757050px;}
.y21d{bottom:1010.119050px;}
.y8{bottom:1010.950800px;}
.ya9{bottom:1013.165700px;}
.y180{bottom:1015.901250px;}
.y24f{bottom:1016.015100px;}
.y1e8{bottom:1016.534400px;}
.yde{bottom:1017.049200px;}
.y77{bottom:1018.057050px;}
.y1ba{bottom:1020.037500px;}
.y10f{bottom:1021.301100px;}
.y148{bottom:1021.301250px;}
.y21c{bottom:1028.119050px;}
.y76{bottom:1033.357050px;}
.y1e7{bottom:1034.534400px;}
.y10e{bottom:1035.701100px;}
.y147{bottom:1035.701250px;}
.ya8{bottom:1037.217750px;}
.ydd{bottom:1041.101100px;}
.y24e{bottom:1042.518900px;}
.y21b{bottom:1046.119050px;}
.y75{bottom:1048.657050px;}
.ya7{bottom:1051.617750px;}
.y1e6{bottom:1052.534400px;}
.ydc{bottom:1055.501100px;}
.y16a{bottom:1055.501250px;}
.y10d{bottom:1059.753150px;}
.y74{bottom:1063.957050px;}
.y21a{bottom:1064.119050px;}
.y1e5{bottom:1070.534400px;}
.ya6{bottom:1071.417750px;}
.y10c{bottom:1074.153150px;}
.y18f{bottom:1075.301100px;}
.y73{bottom:1079.257050px;}
.ydb{bottom:1079.553150px;}
.y219{bottom:1082.119050px;}
.y1e4{bottom:1088.534400px;}
.y1b9{bottom:1093.837500px;}
.yda{bottom:1093.953150px;}
.y72{bottom:1094.557050px;}
.y18e{bottom:1099.353150px;}
.y218{bottom:1100.119050px;}
.y1e3{bottom:1106.534400px;}
.yd6{bottom:1109.035500px;}
.y71{bottom:1109.857050px;}
.y169{bottom:1113.753150px;}
.yd9{bottom:1118.005050px;}
.y146{bottom:1118.005200px;}
.y217{bottom:1118.119050px;}
.y1e2{bottom:1124.534400px;}
.y70{bottom:1125.157050px;}
.yd8{bottom:1132.405050px;}
.y145{bottom:1132.405200px;}
.y216{bottom:1136.119050px;}
.y1b8{bottom:1137.037500px;}
.y18d{bottom:1137.805050px;}
.y168{bottom:1137.805200px;}
.y6f{bottom:1140.457050px;}
.y1e1{bottom:1151.038350px;}
.yd7{bottom:1152.205050px;}
.y144{bottom:1152.205200px;}
.y215{bottom:1154.119050px;}
.y6e{bottom:1155.757050px;}
.ya4{bottom:1201.511100px;}
.ya5{bottom:1203.022800px;}
.h17{height:34.945312px;}
.h28{height:34.968750px;}
.h19{height:35.156250px;}
.hf{height:37.154297px;}
.h13{height:37.378418px;}
.h8{height:39.312000px;}
.hc{height:39.313477px;}
.hd{height:39.339844px;}
.h7{height:39.474000px;}
.he{height:39.550781px;}
.h10{height:39.577148px;}
.h2{height:41.454000px;}
.h23{height:42.568359px;}
.h9{height:43.681641px;}
.h1f{height:43.710938px;}
.ha{height:43.945312px;}
.h20{height:43.974609px;}
.h16{height:46.825195px;}
.h1e{height:48.049805px;}
.h11{height:48.082031px;}
.h12{height:48.372070px;}
.h21{height:51.082031px;}
.hb{height:51.750000px;}
.h22{height:51.972656px;}
.h2a{height:52.453125px;}
.h15{height:52.560000px;}
.h2b{height:52.769531px;}
.h18{height:57.169922px;}
.h24{height:71.713477px;}
.h25{height:71.739844px;}
.h27{height:71.977148px;}
.h29{height:85.148438px;}
.h1d{height:102.164062px;}
.h26{height:104.139844px;}
.h1c{height:124.734375px;}
.h14{height:155.917969px;}
.h1b{height:155.918569px;}
.h1a{height:204.328125px;}
.h5{height:215.625000px;}
.h3{height:215.706075px;}
.h6{height:297.360000px;}
.h4{height:297.471722px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.643400px;}
.x8{left:68.031450px;}
.x1b{left:72.776850px;}
.x18{left:79.530450px;}
.x6{left:96.944850px;}
.x1f{left:99.504600px;}
.x9{left:104.598450px;}
.x14{left:106.299150px;}
.x5{left:108.374100px;}
.x19{left:110.551200px;}
.x2b{left:117.879900px;}
.x2f{left:123.708900px;}
.x2e{left:124.732050px;}
.x21{left:127.559100px;}
.x22{left:132.978300px;}
.x2c{left:135.354750px;}
.x1d{left:140.314950px;}
.x4{left:142.368300px;}
.x31{left:197.802150px;}
.x1c{left:208.346400px;}
.x1a{left:215.016000px;}
.x36{left:227.937750px;}
.x30{left:231.714300px;}
.x37{left:242.157600px;}
.x35{left:248.409600px;}
.x38{left:256.192350px;}
.x17{left:280.629900px;}
.x27{left:286.271400px;}
.x2d{left:329.282100px;}
.x32{left:345.007050px;}
.x25{left:351.956400px;}
.x28{left:368.097600px;}
.x2a{left:386.449200px;}
.x33{left:389.464350px;}
.x34{left:399.251700px;}
.x29{left:461.720700px;}
.x26{left:481.989750px;}
.x1{left:511.976100px;}
.x7{left:567.081150px;}
.xe{left:581.778450px;}
.xa{left:596.738100px;}
.xd{left:605.154750px;}
.x10{left:611.128800px;}
.xf{left:612.957600px;}
.x13{left:615.692850px;}
.xb{left:617.239800px;}
.x12{left:624.861300px;}
.xc{left:634.041900px;}
.x11{left:652.837950px;}
.x20{left:658.648500px;}
.x2{left:705.924150px;}
.x23{left:727.718550px;}
.x24{left:738.209400px;}
.x1e{left:772.793700px;}
.x16{left:776.033700px;}
.x15{left:855.139050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.904000pt;}
.v2{vertical-align:5.374933pt;}
.v3{vertical-align:28.800000pt;}
.lse{letter-spacing:-1.466667pt;}
.lsd{letter-spacing:-1.173333pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.001600pt;}
.ls7{letter-spacing:0.002667pt;}
.lsa{letter-spacing:0.003200pt;}
.ls6{letter-spacing:7.680000pt;}
.ls4{letter-spacing:9.066667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls3{letter-spacing:11.733333pt;}
.lsb{letter-spacing:12.800000pt;}
.ls2{letter-spacing:17.409067pt;}
.ls9{letter-spacing:25.600000pt;}
.ls5{letter-spacing:32.000000pt;}
.ws1{word-spacing:-373.333333pt;}
.ws22{word-spacing:-87.792533pt;}
.wsf{word-spacing:-81.920000pt;}
.wsd{word-spacing:-67.200000pt;}
.ws94{word-spacing:-64.426133pt;}
.ws23{word-spacing:-32.160000pt;}
.ws95{word-spacing:-28.160000pt;}
.ws6{word-spacing:-22.944000pt;}
.wsc5{word-spacing:-17.792000pt;}
.wsb4{word-spacing:-14.826667pt;}
.ws96{word-spacing:-13.344000pt;}
.wse{word-spacing:-12.906667pt;}
.ws9c{word-spacing:-12.800000pt;}
.ws70{word-spacing:-12.789333pt;}
.ws30{word-spacing:-12.730667pt;}
.ws10{word-spacing:-12.554667pt;}
.ws50{word-spacing:-12.496000pt;}
.ws17{word-spacing:-12.378667pt;}
.ws5c{word-spacing:-12.261333pt;}
.ws26{word-spacing:-12.202667pt;}
.ws82{word-spacing:-11.861333pt;}
.ws24{word-spacing:-11.850667pt;}
.ws5f{word-spacing:-11.733333pt;}
.ws87{word-spacing:-11.557333pt;}
.ws7{word-spacing:-11.520000pt;}
.ws69{word-spacing:-11.498667pt;}
.ws86{word-spacing:-11.440000pt;}
.wsa6{word-spacing:-11.413333pt;}
.ws7b{word-spacing:-11.322667pt;}
.ws5e{word-spacing:-11.264000pt;}
.ws6a{word-spacing:-11.205333pt;}
.ws4b{word-spacing:-11.146667pt;}
.ws5d{word-spacing:-11.088000pt;}
.ws18{word-spacing:-11.029333pt;}
.ws4a{word-spacing:-10.970667pt;}
.ws7e{word-spacing:-10.912000pt;}
.ws46{word-spacing:-10.853333pt;}
.ws1f{word-spacing:-10.794667pt;}
.ws89{word-spacing:-10.736000pt;}
.ws1d{word-spacing:-10.677333pt;}
.ws90{word-spacing:-10.618667pt;}
.ws63{word-spacing:-10.501333pt;}
.ws78{word-spacing:-10.325333pt;}
.ws85{word-spacing:-10.266667pt;}
.ws7f{word-spacing:-10.208000pt;}
.ws48{word-spacing:-10.149333pt;}
.ws74{word-spacing:-10.090667pt;}
.ws60{word-spacing:-10.032000pt;}
.ws71{word-spacing:-9.973333pt;}
.ws19{word-spacing:-9.914667pt;}
.ws4f{word-spacing:-9.856000pt;}
.ws72{word-spacing:-9.797333pt;}
.ws5a{word-spacing:-9.738667pt;}
.ws51{word-spacing:-9.680000pt;}
.ws2d{word-spacing:-9.562667pt;}
.ws73{word-spacing:-9.504000pt;}
.ws14{word-spacing:-9.445333pt;}
.ws56{word-spacing:-9.386667pt;}
.ws91{word-spacing:-9.328000pt;}
.ws29{word-spacing:-9.269333pt;}
.ws8c{word-spacing:-9.210667pt;}
.ws84{word-spacing:-8.917333pt;}
.ws33{word-spacing:-8.858667pt;}
.ws7d{word-spacing:-8.800000pt;}
.ws79{word-spacing:-8.741333pt;}
.ws11{word-spacing:-8.682667pt;}
.ws62{word-spacing:-8.624000pt;}
.ws4c{word-spacing:-8.565333pt;}
.ws68{word-spacing:-8.506667pt;}
.ws83{word-spacing:-8.448000pt;}
.ws81{word-spacing:-8.389333pt;}
.ws6d{word-spacing:-8.330667pt;}
.ws32{word-spacing:-8.272000pt;}
.ws1a{word-spacing:-8.213333pt;}
.ws15{word-spacing:-8.154667pt;}
.ws8a{word-spacing:-8.096000pt;}
.ws8b{word-spacing:-8.037333pt;}
.ws40{word-spacing:-7.978667pt;}
.ws57{word-spacing:-7.861333pt;}
.ws37{word-spacing:-7.802667pt;}
.ws39{word-spacing:-7.744000pt;}
.ws35{word-spacing:-7.685333pt;}
.ws8f{word-spacing:-7.626667pt;}
.ws25{word-spacing:-7.568000pt;}
.ws52{word-spacing:-7.392000pt;}
.ws8e{word-spacing:-7.333333pt;}
.ws2a{word-spacing:-7.274667pt;}
.ws80{word-spacing:-7.157333pt;}
.ws1e{word-spacing:-7.098667pt;}
.ws55{word-spacing:-7.040000pt;}
.ws3f{word-spacing:-6.981333pt;}
.ws2b{word-spacing:-6.864000pt;}
.ws9e{word-spacing:-6.826667pt;}
.ws45{word-spacing:-6.805333pt;}
.ws2f{word-spacing:-6.746667pt;}
.ws38{word-spacing:-6.688000pt;}
.ws77{word-spacing:-6.570667pt;}
.ws27{word-spacing:-6.512000pt;}
.ws2c{word-spacing:-6.453333pt;}
.ws6f{word-spacing:-6.336000pt;}
.ws44{word-spacing:-5.632000pt;}
.ws16{word-spacing:-5.456000pt;}
.ws41{word-spacing:-5.397333pt;}
.ws61{word-spacing:-5.338667pt;}
.ws34{word-spacing:-5.280000pt;}
.ws92{word-spacing:-5.221333pt;}
.ws20{word-spacing:-5.045333pt;}
.ws9f{word-spacing:-5.013333pt;}
.ws2e{word-spacing:-4.986667pt;}
.ws53{word-spacing:-4.928000pt;}
.ws31{word-spacing:-4.869333pt;}
.ws76{word-spacing:-4.810667pt;}
.ws54{word-spacing:-4.752000pt;}
.ws5b{word-spacing:-4.517333pt;}
.ws3b{word-spacing:-4.458667pt;}
.ws67{word-spacing:-4.400000pt;}
.ws28{word-spacing:-4.341333pt;}
.ws1c{word-spacing:-4.282667pt;}
.ws13{word-spacing:-4.224000pt;}
.ws42{word-spacing:-3.989333pt;}
.ws47{word-spacing:-3.930667pt;}
.ws6b{word-spacing:-3.754667pt;}
.ws59{word-spacing:-3.637333pt;}
.ws6c{word-spacing:-3.520000pt;}
.ws64{word-spacing:-3.344000pt;}
.ws8d{word-spacing:-3.285333pt;}
.ws7a{word-spacing:-3.226667pt;}
.wsb6{word-spacing:-2.880000pt;}
.ws88{word-spacing:-2.874667pt;}
.ws3d{word-spacing:-2.757333pt;}
.ws1b{word-spacing:-2.640000pt;}
.ws49{word-spacing:-2.581333pt;}
.ws75{word-spacing:-2.522667pt;}
.ws7c{word-spacing:-2.405333pt;}
.ws58{word-spacing:-2.346667pt;}
.ws4e{word-spacing:-2.288000pt;}
.ws65{word-spacing:-2.229333pt;}
.ws3e{word-spacing:-2.170667pt;}
.ws4d{word-spacing:-2.053333pt;}
.ws3c{word-spacing:-1.994667pt;}
.ws3{word-spacing:-1.973333pt;}
.ws66{word-spacing:-1.936000pt;}
.ws4{word-spacing:-1.776000pt;}
.ws36{word-spacing:-1.760000pt;}
.ws3a{word-spacing:-1.701333pt;}
.ws9{word-spacing:-1.677333pt;}
.ws6e{word-spacing:-1.642667pt;}
.ws12{word-spacing:-1.578667pt;}
.wsbb{word-spacing:-1.440000pt;}
.wsb8{word-spacing:-0.906667pt;}
.ws5{word-spacing:-0.864000pt;}
.wsa{word-spacing:-0.816000pt;}
.ws43{word-spacing:-0.768000pt;}
.wsa1{word-spacing:-0.480000pt;}
.ws2{word-spacing:0.000000pt;}
.wsc4{word-spacing:0.816000pt;}
.wsbc{word-spacing:1.066667pt;}
.wsc6{word-spacing:1.466667pt;}
.wsa0{word-spacing:2.080000pt;}
.ws98{word-spacing:2.160000pt;}
.ws9a{word-spacing:2.880000pt;}
.wsb9{word-spacing:2.986667pt;}
.wsbf{word-spacing:3.306667pt;}
.ws99{word-spacing:4.272000pt;}
.wsa3{word-spacing:5.600000pt;}
.ws9d{word-spacing:6.240000pt;}
.wsc2{word-spacing:8.533333pt;}
.wsb5{word-spacing:8.906667pt;}
.wsba{word-spacing:9.226667pt;}
.wsa5{word-spacing:13.120000pt;}
.ws97{word-spacing:13.584000pt;}
.wsc0{word-spacing:14.720000pt;}
.wsb7{word-spacing:15.893333pt;}
.wsbd{word-spacing:16.106667pt;}
.wsc3{word-spacing:16.160000pt;}
.ws8{word-spacing:18.288000pt;}
.wsa4{word-spacing:19.146667pt;}
.wsa2{word-spacing:23.786667pt;}
.wsbe{word-spacing:24.800000pt;}
.wsc1{word-spacing:24.960000pt;}
.wsb{word-spacing:36.975467pt;}
.wsc{word-spacing:37.007467pt;}
.ws9b{word-spacing:59.230933pt;}
.ws21{word-spacing:72.015467pt;}
.wsb2{word-spacing:86.212800pt;}
.wsb1{word-spacing:90.153600pt;}
.ws0{word-spacing:90.567467pt;}
.wsa9{word-spacing:91.842667pt;}
.ws93{word-spacing:95.327467pt;}
.wsb0{word-spacing:123.897067pt;}
.wsa7{word-spacing:130.137600pt;}
.wsac{word-spacing:131.865067pt;}
.wsaa{word-spacing:172.857600pt;}
.wsad{word-spacing:239.577600pt;}
.wsb3{word-spacing:344.273067pt;}
.wsab{word-spacing:354.977067pt;}
.wsae{word-spacing:382.719467pt;}
.wsaf{word-spacing:413.633067pt;}
.wsa8{word-spacing:434.993067pt;}
._10{margin-left:-1837.418667pt;}
._36{margin-left:-1672.616533pt;}
._2d{margin-left:-1530.045867pt;}
._2b{margin-left:-1527.828267pt;}
._3f{margin-left:-1510.117867pt;}
._34{margin-left:-1420.185067pt;}
._38{margin-left:-1366.612800pt;}
._25{margin-left:-1309.946667pt;}
._2f{margin-left:-1249.969600pt;}
._27{margin-left:-1198.331200pt;}
._8{margin-left:-1195.012267pt;}
._43{margin-left:-1178.568000pt;}
._30{margin-left:-1168.314133pt;}
._17{margin-left:-1131.176000pt;}
._e{margin-left:-1100.880533pt;}
._32{margin-left:-1077.694400pt;}
._29{margin-left:-1061.616533pt;}
._12{margin-left:-1008.277867pt;}
._c{margin-left:-996.753600pt;}
._2a{margin-left:-965.520000pt;}
._3b{margin-left:-953.111467pt;}
._1c{margin-left:-949.929600pt;}
._14{margin-left:-946.896000pt;}
._9{margin-left:-936.240000pt;}
._1e{margin-left:-914.928000pt;}
._a{margin-left:-887.306667pt;}
._15{margin-left:-845.472000pt;}
._35{margin-left:-833.264000pt;}
._23{margin-left:-824.229867pt;}
._11{margin-left:-821.568000pt;}
._21{margin-left:-813.600000pt;}
._18{margin-left:-797.520000pt;}
._42{margin-left:-792.085333pt;}
._3e{margin-left:-784.858667pt;}
._20{margin-left:-780.720000pt;}
._13{margin-left:-765.504000pt;}
._3c{margin-left:-762.912000pt;}
._1a{margin-left:-758.250667pt;}
._31{margin-left:-746.928000pt;}
._1b{margin-left:-745.280000pt;}
._d{margin-left:-722.736000pt;}
._16{margin-left:-708.384000pt;}
._22{margin-left:-698.880000pt;}
._1d{margin-left:-695.226667pt;}
._1f{margin-left:-689.264000pt;}
._33{margin-left:-681.964800pt;}
._40{margin-left:-677.472000pt;}
._24{margin-left:-643.952000pt;}
._3a{margin-left:-626.880000pt;}
._2c{margin-left:-618.864000pt;}
._7{margin-left:-616.224000pt;}
._1{margin-left:-553.280000pt;}
._3d{margin-left:-541.632000pt;}
._6{margin-left:-508.320000pt;}
._41{margin-left:-500.657600pt;}
._0{margin-left:-452.068800pt;}
._19{margin-left:-427.434667pt;}
._2e{margin-left:-392.112000pt;}
._f{margin-left:-354.768000pt;}
._28{margin-left:-345.820800pt;}
._39{margin-left:-336.144000pt;}
._37{margin-left:-325.440000pt;}
._26{margin-left:-234.720000pt;}
._49{margin-left:-11.721600pt;}
._44{margin-left:-9.600000pt;}
._4a{margin-left:-8.524267pt;}
._4c{margin-left:-7.157333pt;}
._b{margin-left:-6.216000pt;}
._45{margin-left:-5.280533pt;}
._4{margin-left:-3.571200pt;}
._3{margin-left:-1.973333pt;}
._5{margin-left:-0.927467pt;}
._4e{width:0.903467pt;}
._2{width:1.952000pt;}
._4d{width:3.207467pt;}
._4b{width:4.306133pt;}
._52{width:5.590400pt;}
._4f{width:6.485867pt;}
._48{width:7.584000pt;}
._47{width:9.326400pt;}
._51{width:10.961600pt;}
._55{width:12.365867pt;}
._59{width:13.898667pt;}
._54{width:15.298667pt;}
._53{width:16.330133pt;}
._5b{width:17.313600pt;}
._46{width:18.305067pt;}
._58{width:19.960000pt;}
._57{width:20.866667pt;}
._56{width:22.152000pt;}
._5a{width:25.717333pt;}
._64{width:26.880000pt;}
._61{width:42.735467pt;}
._66{width:52.450667pt;}
._65{width:70.229333pt;}
._60{width:75.284800pt;}
._5f{width:136.712533pt;}
._5d{width:166.508800pt;}
._5c{width:173.788800pt;}
._62{width:182.260800pt;}
._50{width:196.264533pt;}
._5e{width:204.588800pt;}
._63{width:270.639467pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsd{font-size:112.000000pt;}
.fsc{font-size:128.000000pt;}
.fs9{font-size:160.000000pt;}
.fsb{font-size:256.000000pt;}
.fs3{font-size:266.666667pt;}
.fs1{font-size:266.766933pt;}
.fs4{font-size:373.333333pt;}
.fs2{font-size:373.473600pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:64.452667pt;}
.y4{bottom:64.850667pt;}
.y6{bottom:74.105733pt;}
.y7{bottom:74.581733pt;}
.y1{bottom:75.086133pt;}
.ya3{bottom:75.562133pt;}
.y36{bottom:106.902533pt;}
.y5e{bottom:113.385867pt;}
.y24d{bottom:113.386000pt;}
.y62{bottom:113.419733pt;}
.y143{bottom:114.550800pt;}
.y183{bottom:115.571333pt;}
.y1a1{bottom:116.591733pt;}
.y214{bottom:119.309067pt;}
.y6d{bottom:119.894800pt;}
.y35{bottom:124.282133pt;}
.y1e0{bottom:124.775600pt;}
.y142{bottom:127.350800pt;}
.y61{bottom:127.819733pt;}
.y182{bottom:128.371200pt;}
.y1a0{bottom:129.391733pt;}
.y5d{bottom:130.765333pt;}
.y167{bottom:132.150800pt;}
.y10b{bottom:133.171333pt;}
.y213{bottom:135.309067pt;}
.y6c{bottom:135.894800pt;}
.y34{bottom:141.394933pt;}
.y1df{bottom:142.108933pt;}
.y60{bottom:142.219733pt;}
.y141{bottom:144.950800pt;}
.y10a{bottom:145.971333pt;}
.y19f{bottom:146.991733pt;}
.yd5{bottom:147.319200pt;}
.y18c{bottom:148.730267pt;}
.y5c{bottom:148.944800pt;}
.y174{bottom:150.771200pt;}
.y6b{bottom:151.894800pt;}
.y24c{bottom:152.201867pt;}
.y5f{bottom:156.619733pt;}
.y33{bottom:158.507867pt;}
.y212{bottom:158.868000pt;}
.yd4{bottom:160.119333pt;}
.y18b{bottom:161.530400pt;}
.y109{bottom:163.571333pt;}
.y140{bottom:166.330267pt;}
.y1de{bottom:167.001333pt;}
.y5b{bottom:167.124400pt;}
.y17f{bottom:167.350800pt;}
.y6a{bottom:167.894800pt;}
.y24b{bottom:168.201867pt;}
.y19e{bottom:168.371200pt;}
.y32{bottom:175.620667pt;}
.y13f{bottom:179.130267pt;}
.y17e{bottom:180.150800pt;}
.y19d{bottom:181.171333pt;}
.yd3{bottom:181.498800pt;}
.y69{bottom:183.894800pt;}
.y24a{bottom:184.201867pt;}
.y1dd{bottom:184.334667pt;}
.y108{bottom:184.950800pt;}
.y5a{bottom:185.304000pt;}
.ya2{bottom:186.927067pt;}
.y31{bottom:192.733467pt;}
.y211{bottom:194.068000pt;}
.yd2{bottom:194.298800pt;}
.y13e{bottom:196.730267pt;}
.y107{bottom:197.750800pt;}
.y68{bottom:199.894800pt;}
.y249{bottom:200.201867pt;}
.y166{bottom:200.509867pt;}
.y17d{bottom:201.530400pt;}
.y1dc{bottom:201.668000pt;}
.y19c{bottom:202.550800pt;}
.y59{bottom:203.483467pt;}
.ya1{bottom:205.106667pt;}
.y30{bottom:209.846400pt;}
.y210{bottom:210.068000pt;}
.y165{bottom:213.309867pt;}
.y17c{bottom:214.330267pt;}
.y106{bottom:215.350800pt;}
.yd1{bottom:215.678267pt;}
.y67{bottom:215.894800pt;}
.y248{bottom:216.201867pt;}
.y13d{bottom:218.109867pt;}
.y1db{bottom:219.001333pt;}
.y173{bottom:219.130267pt;}
.y58{bottom:221.663067pt;}
.ya0{bottom:223.286133pt;}
.y268{bottom:225.649733pt;}
.y20f{bottom:226.068000pt;}
.y2f{bottom:226.959333pt;}
.yd0{bottom:228.478400pt;}
.y13c{bottom:230.909867pt;}
.y66{bottom:231.894800pt;}
.y172{bottom:231.930400pt;}
.y247{bottom:232.201867pt;}
.y1a4{bottom:235.709867pt;}
.y1da{bottom:236.334667pt;}
.y105{bottom:236.730267pt;}
.y57{bottom:239.842533pt;}
.y9f{bottom:241.465733pt;}
.y267{bottom:241.649733pt;}
.y20e{bottom:242.068000pt;}
.y2e{bottom:244.072133pt;}
.y246{bottom:248.201867pt;}
.y13b{bottom:248.509867pt;}
.y104{bottom:249.530400pt;}
.ycf{bottom:249.857867pt;}
.y164{bottom:252.289333pt;}
.y171{bottom:253.309867pt;}
.y1d9{bottom:253.668000pt;}
.y65{bottom:255.453733pt;}
.y56{bottom:258.022000pt;}
.y20d{bottom:258.068000pt;}
.y9e{bottom:259.645200pt;}
.y2d{bottom:261.184933pt;}
.yce{bottom:262.657867pt;}
.y245{bottom:264.201867pt;}
.y163{bottom:265.089333pt;}
.y170{bottom:266.109867pt;}
.y103{bottom:267.130267pt;}
.y13a{bottom:269.889467pt;}
.y128{bottom:270.909867pt;}
.y1d8{bottom:271.001333pt;}
.y64{bottom:271.453733pt;}
.y27e{bottom:271.760000pt;}
.y20c{bottom:274.068000pt;}
.y55{bottom:276.201600pt;}
.y9d{bottom:277.824800pt;}
.y2c{bottom:278.297867pt;}
.y244{bottom:280.201867pt;}
.ycd{bottom:280.257867pt;}
.y139{bottom:282.689333pt;}
.y127{bottom:283.709867pt;}
.y16f{bottom:287.489333pt;}
.y1d7{bottom:288.334667pt;}
.y102{bottom:288.509867pt;}
.y27d{bottom:289.360000pt;}
.y1b7{bottom:289.530400pt;}
.y20b{bottom:290.068000pt;}
.y54{bottom:294.381067pt;}
.y63{bottom:295.012800pt;}
.y2b{bottom:295.410667pt;}
.y9c{bottom:296.004267pt;}
.y243{bottom:296.201867pt;}
.y138{bottom:300.289333pt;}
.y101{bottom:301.309867pt;}
.ycc{bottom:301.637467pt;}
.y1b6{bottom:302.330267pt;}
.y162{bottom:304.068933pt;}
.y17b{bottom:305.089333pt;}
.y1d6{bottom:305.668000pt;}
.y20a{bottom:306.068000pt;}
.y27c{bottom:306.960000pt;}
.y242{bottom:312.201867pt;}
.y2a{bottom:312.523600pt;}
.y53{bottom:312.560667pt;}
.y9b{bottom:314.183867pt;}
.ycb{bottom:314.437333pt;}
.y161{bottom:316.868933pt;}
.y17a{bottom:317.889467pt;}
.y19b{bottom:318.909867pt;}
.y137{bottom:321.668933pt;}
.y209{bottom:322.068000pt;}
.y100{bottom:322.689333pt;}
.y1d5{bottom:323.001333pt;}
.y1b5{bottom:323.709867pt;}
.y27b{bottom:324.560000pt;}
.y241{bottom:328.201867pt;}
.y29{bottom:329.636400pt;}
.y52{bottom:330.740133pt;}
.yca{bottom:332.037333pt;}
.y9a{bottom:332.363333pt;}
.y136{bottom:334.468933pt;}
.yff{bottom:335.489333pt;}
.y1b4{bottom:336.509867pt;}
.y208{bottom:338.068000pt;}
.y1a3{bottom:339.268933pt;}
.y19a{bottom:340.289333pt;}
.y27a{bottom:342.160000pt;}
.y240{bottom:344.201867pt;}
.y28{bottom:346.749333pt;}
.y51{bottom:348.919733pt;}
.y99{bottom:350.542933pt;}
.y135{bottom:352.068933pt;}
.yfe{bottom:353.089333pt;}
.y1d4{bottom:353.350667pt;}
.yc9{bottom:353.416933pt;}
.y1b3{bottom:354.109867pt;}
.y160{bottom:355.848400pt;}
.y179{bottom:356.868933pt;}
.y23f{bottom:360.201867pt;}
.y207{bottom:361.627067pt;}
.y27{bottom:363.862133pt;}
.yc8{bottom:366.216933pt;}
.y50{bottom:367.099200pt;}
.y15f{bottom:368.648400pt;}
.y98{bottom:368.722400pt;}
.y178{bottom:369.668933pt;}
.y199{bottom:370.689333pt;}
.y134{bottom:373.448400pt;}
.yfd{bottom:374.468933pt;}
.y1b2{bottom:375.489333pt;}
.y23e{bottom:376.201867pt;}
.y1d3{bottom:378.243067pt;}
.y26{bottom:380.975067pt;}
.yc7{bottom:383.816933pt;}
.y273{bottom:384.040267pt;}
.y4f{bottom:385.278667pt;}
.y133{bottom:386.248400pt;}
.y97{bottom:386.902000pt;}
.yfc{bottom:387.268933pt;}
.y1b1{bottom:388.289333pt;}
.y1a2{bottom:391.048400pt;}
.y198{bottom:392.068933pt;}
.y23d{bottom:392.201867pt;}
.y1d2{bottom:395.576400pt;}
.y206{bottom:396.827067pt;}
.y25{bottom:398.087867pt;}
.y272{bottom:401.640267pt;}
.y4e{bottom:403.458267pt;}
.y132{bottom:403.848400pt;}
.yfb{bottom:404.868933pt;}
.y96{bottom:405.081467pt;}
.yc6{bottom:405.196400pt;}
.y15e{bottom:407.628000pt;}
.y23c{bottom:408.201867pt;}
.y126{bottom:408.648400pt;}
.y1b0{bottom:409.668933pt;}
.y205{bottom:412.827067pt;}
.y1d1{bottom:412.909733pt;}
.y24{bottom:415.200667pt;}
.yc5{bottom:417.996400pt;}
.y271{bottom:419.240267pt;}
.y15d{bottom:420.428000pt;}
.y125{bottom:421.448400pt;}
.y4d{bottom:421.637733pt;}
.y197{bottom:422.468933pt;}
.y95{bottom:423.260933pt;}
.y131{bottom:425.228000pt;}
.yfa{bottom:426.248400pt;}
.y204{bottom:428.827067pt;}
.y1d0{bottom:430.243067pt;}
.y23{bottom:432.313600pt;}
.yc4{bottom:435.596400pt;}
.y130{bottom:438.028000pt;}
.yf9{bottom:439.048400pt;}
.y4c{bottom:439.817333pt;}
.y1af{bottom:440.068933pt;}
.y23b{bottom:440.535200pt;}
.y94{bottom:441.440533pt;}
.y177{bottom:442.828000pt;}
.y196{bottom:443.848400pt;}
.y203{bottom:444.827067pt;}
.y1cf{bottom:447.576400pt;}
.y23a{bottom:447.735200pt;}
.y22{bottom:449.426400pt;}
.y12f{bottom:455.628000pt;}
.yf8{bottom:456.648400pt;}
.yc3{bottom:456.976000pt;}
.y4b{bottom:457.996933pt;}
.y15c{bottom:459.407467pt;}
.y93{bottom:459.620000pt;}
.y124{bottom:460.428000pt;}
.y202{bottom:460.827067pt;}
.y279{bottom:461.120667pt;}
.y1ae{bottom:461.448400pt;}
.y1ce{bottom:464.909733pt;}
.y21{bottom:466.539333pt;}
.yc2{bottom:469.776000pt;}
.y15b{bottom:472.207467pt;}
.y123{bottom:473.228000pt;}
.y195{bottom:474.248400pt;}
.y239{bottom:474.338267pt;}
.y4a{bottom:476.176400pt;}
.y201{bottom:476.827067pt;}
.y12e{bottom:477.007467pt;}
.y92{bottom:477.799600pt;}
.yf7{bottom:478.028000pt;}
.y278{bottom:478.720667pt;}
.y238{bottom:481.538267pt;}
.y1cd{bottom:482.243067pt;}
.y20{bottom:483.652133pt;}
.yc1{bottom:487.376000pt;}
.y12d{bottom:489.807467pt;}
.yf6{bottom:490.828000pt;}
.y1ad{bottom:491.848400pt;}
.y200{bottom:492.827067pt;}
.y15a{bottom:493.587067pt;}
.y49{bottom:494.355867pt;}
.y122{bottom:494.607467pt;}
.y194{bottom:495.628000pt;}
.y277{bottom:496.320533pt;}
.y1cc{bottom:499.576400pt;}
.y1f{bottom:500.765067pt;}
.y159{bottom:506.387067pt;}
.y121{bottom:507.407467pt;}
.y237{bottom:508.141200pt;}
.yf5{bottom:508.428000pt;}
.yc0{bottom:508.755467pt;}
.y1ff{bottom:508.827067pt;}
.y16e{bottom:511.187067pt;}
.y48{bottom:512.535467pt;}
.y1ac{bottom:513.228000pt;}
.y276{bottom:513.920667pt;}
.y1e{bottom:517.877867pt;}
.ybf{bottom:521.555467pt;}
.y236{bottom:522.541200pt;}
.y91{bottom:523.836267pt;}
.y158{bottom:523.987067pt;}
.y1fe{bottom:524.827067pt;}
.y176{bottom:525.007467pt;}
.y1ab{bottom:526.028000pt;}
.y120{bottom:528.787067pt;}
.y1cb{bottom:529.536800pt;}
.yf4{bottom:529.807467pt;}
.y47{bottom:530.714933pt;}
.y275{bottom:531.520533pt;}
.y1d{bottom:534.990667pt;}
.y90{bottom:537.436133pt;}
.y266{bottom:538.324400pt;}
.y1fd{bottom:540.827067pt;}
.y11f{bottom:541.587067pt;}
.y234{bottom:541.944267pt;}
.yf3{bottom:542.607467pt;}
.ybe{bottom:542.935067pt;}
.y157{bottom:545.366533pt;}
.y175{bottom:546.387067pt;}
.y1ca{bottom:546.870133pt;}
.y1aa{bottom:547.407467pt;}
.y46{bottom:548.894533pt;}
.y274{bottom:549.120667pt;}
.y233{bottom:549.144267pt;}
.y8f{bottom:551.036267pt;}
.y1c{bottom:552.103600pt;}
.y265{bottom:552.724400pt;}
.ybd{bottom:555.735067pt;}
.y235{bottom:556.344267pt;}
.y1fc{bottom:556.827067pt;}
.y156{bottom:558.166533pt;}
.y11e{bottom:559.187067pt;}
.y1a9{bottom:560.207467pt;}
.y16d{bottom:562.966533pt;}
.yf2{bottom:563.987067pt;}
.y8e{bottom:564.636267pt;}
.y45{bottom:567.074000pt;}
.y264{bottom:567.124400pt;}
.y1b{bottom:569.216533pt;}
.y1c9{bottom:571.762533pt;}
.y1fb{bottom:572.827067pt;}
.y231{bottom:575.747200pt;}
.y155{bottom:575.766533pt;}
.yf1{bottom:576.787067pt;}
.ybc{bottom:577.114533pt;}
.y8d{bottom:578.236267pt;}
.y11d{bottom:580.566533pt;}
.y263{bottom:581.524400pt;}
.y1a8{bottom:581.587067pt;}
.y230{bottom:582.947200pt;}
.y44{bottom:585.253600pt;}
.y1a{bottom:586.329333pt;}
.y1fa{bottom:588.827067pt;}
.y1c8{bottom:589.095867pt;}
.ybb{bottom:589.914533pt;}
.y232{bottom:590.147200pt;}
.y8c{bottom:591.836267pt;}
.y11c{bottom:593.366533pt;}
.yf0{bottom:594.387067pt;}
.y262{bottom:595.924400pt;}
.y154{bottom:597.146133pt;}
.y270{bottom:602.624400pt;}
.y43{bottom:603.433067pt;}
.y19{bottom:603.442267pt;}
.y1f9{bottom:604.827067pt;}
.y8b{bottom:605.436133pt;}
.y1c7{bottom:606.429200pt;}
.yba{bottom:607.514533pt;}
.y22f{bottom:609.883600pt;}
.y153{bottom:609.946133pt;}
.y261{bottom:610.324400pt;}
.y11b{bottom:610.966533pt;}
.y16c{bottom:614.746000pt;}
.yef{bottom:615.766533pt;}
.y8a{bottom:619.036267pt;}
.y26f{bottom:620.224400pt;}
.y18{bottom:620.555067pt;}
.y1f8{bottom:620.827067pt;}
.y42{bottom:621.612533pt;}
.y1c6{bottom:623.762533pt;}
.y260{bottom:624.724400pt;}
.y22e{bottom:625.883600pt;}
.y152{bottom:627.546000pt;}
.yee{bottom:628.566533pt;}
.yb9{bottom:628.894133pt;}
.y12c{bottom:632.346133pt;}
.y89{bottom:632.636267pt;}
.y1f7{bottom:636.827067pt;}
.y17{bottom:637.667867pt;}
.y26e{bottom:637.824400pt;}
.y25f{bottom:639.124400pt;}
.y41{bottom:639.792133pt;}
.y1c5{bottom:641.095867pt;}
.yb8{bottom:641.694133pt;}
.y22d{bottom:641.883600pt;}
.y12b{bottom:645.146133pt;}
.yed{bottom:646.166533pt;}
.y88{bottom:646.236267pt;}
.y151{bottom:648.925600pt;}
.y11a{bottom:649.946133pt;}
.y1f6{bottom:652.827067pt;}
.y25e{bottom:653.524400pt;}
.y16{bottom:654.780800pt;}
.y26d{bottom:655.424400pt;}
.y22c{bottom:657.883600pt;}
.y40{bottom:657.971733pt;}
.y1c4{bottom:658.429200pt;}
.yb7{bottom:659.294133pt;}
.y87{bottom:659.836267pt;}
.y150{bottom:661.725600pt;}
.y119{bottom:662.746000pt;}
.y16b{bottom:666.525600pt;}
.yec{bottom:667.546000pt;}
.y25d{bottom:667.924400pt;}
.y1f5{bottom:668.827067pt;}
.y3{bottom:670.995467pt;}
.y5{bottom:671.165333pt;}
.y15{bottom:671.893600pt;}
.y86{bottom:673.436133pt;}
.y22b{bottom:673.883600pt;}
.y1c3{bottom:675.762533pt;}
.y3f{bottom:676.151200pt;}
.y14f{bottom:679.325600pt;}
.yeb{bottom:680.346133pt;}
.yb6{bottom:680.673600pt;}
.y269{bottom:681.389600pt;}
.y25c{bottom:682.324400pt;}
.y118{bottom:684.125600pt;}
.y85{bottom:687.036267pt;}
.y14{bottom:689.006533pt;}
.y22a{bottom:689.883600pt;}
.y1f4{bottom:692.386133pt;}
.y1c2{bottom:693.095867pt;}
.yb5{bottom:693.473600pt;}
.y3e{bottom:694.330667pt;}
.y25b{bottom:696.724400pt;}
.y117{bottom:696.925600pt;}
.y1a7{bottom:697.946000pt;}
.y84{bottom:700.636267pt;}
.y14e{bottom:700.705067pt;}
.yea{bottom:701.725600pt;}
.y229{bottom:705.883600pt;}
.y13{bottom:706.119333pt;}
.y1c1{bottom:710.429200pt;}
.yb4{bottom:711.073600pt;}
.y3d{bottom:712.510267pt;}
.y14d{bottom:713.505067pt;}
.y83{bottom:714.236267pt;}
.ye9{bottom:714.525600pt;}
.y26c{bottom:715.935733pt;}
.y12a{bottom:718.305200pt;}
.y1a6{bottom:719.325600pt;}
.y228{bottom:721.883600pt;}
.y12{bottom:723.232267pt;}
.y25a{bottom:727.124533pt;}
.y1f3{bottom:727.586133pt;}
.y82{bottom:727.836133pt;}
.y3c{bottom:730.689733pt;}
.y129{bottom:731.105200pt;}
.y193{bottom:732.125600pt;}
.yb3{bottom:732.453067pt;}
.ye8{bottom:735.905067pt;}
.y227{bottom:737.883600pt;}
.y11{bottom:740.345067pt;}
.y81{bottom:741.436133pt;}
.y26b{bottom:742.694933pt;}
.y259{bottom:743.124533pt;}
.y1f2{bottom:743.586133pt;}
.yb2{bottom:745.253200pt;}
.ye7{bottom:748.705067pt;}
.y3b{bottom:748.869333pt;}
.y14c{bottom:752.484667pt;}
.y192{bottom:753.505067pt;}
.y226{bottom:753.883600pt;}
.y80{bottom:755.036267pt;}
.y10{bottom:757.457867pt;}
.y258{bottom:759.124533pt;}
.y1f1{bottom:759.586133pt;}
.y14b{bottom:765.284667pt;}
.ye6{bottom:766.305200pt;}
.yb1{bottom:766.632667pt;}
.y3a{bottom:767.048800pt;}
.y26a{bottom:769.454000pt;}
.y225{bottom:769.883600pt;}
.y116{bottom:770.084667pt;}
.yf{bottom:774.570800pt;}
.y257{bottom:775.124533pt;}
.y1f0{bottom:775.586133pt;}
.yb0{bottom:779.432667pt;}
.y115{bottom:782.884667pt;}
.y1c0{bottom:783.499867pt;}
.ye5{bottom:783.905067pt;}
.y39{bottom:785.228400pt;}
.y224{bottom:785.883600pt;}
.y18a{bottom:786.664267pt;}
.y1a5{bottom:787.684667pt;}
.y256{bottom:791.124533pt;}
.y1ef{bottom:791.586133pt;}
.y7f{bottom:796.139600pt;}
.yaf{bottom:797.032667pt;}
.y189{bottom:799.464133pt;}
.y114{bottom:800.484667pt;}
.y1bf{bottom:801.099867pt;}
.y223{bottom:801.883600pt;}
.y38{bottom:803.407867pt;}
.yd{bottom:803.504933pt;}
.y14a{bottom:804.264133pt;}
.ye4{bottom:805.284667pt;}
.y255{bottom:807.124533pt;}
.y1ee{bottom:807.586133pt;}
.y7e{bottom:809.739600pt;}
.y149{bottom:817.064267pt;}
.y222{bottom:817.883600pt;}
.ye3{bottom:818.084667pt;}
.yae{bottom:818.412133pt;}
.y1be{bottom:818.699867pt;}
.yc{bottom:819.504933pt;}
.y188{bottom:820.843733pt;}
.y37{bottom:821.587467pt;}
.y113{bottom:821.864133pt;}
.y254{bottom:823.124533pt;}
.y7d{bottom:823.339733pt;}
.y1ed{bottom:823.586133pt;}
.yad{bottom:831.212267pt;}
.y187{bottom:833.643733pt;}
.y221{bottom:833.883600pt;}
.y112{bottom:834.664267pt;}
.y7c{bottom:836.939733pt;}
.y253{bottom:839.124533pt;}
.ye2{bottom:839.464133pt;}
.y1ec{bottom:839.586133pt;}
.yb{bottom:843.063867pt;}
.yac{bottom:848.812267pt;}
.y220{bottom:849.883600pt;}
.y7b{bottom:850.539733pt;}
.y186{bottom:851.243733pt;}
.ye1{bottom:852.264133pt;}
.y1bd{bottom:853.899867pt;}
.y252{bottom:855.124533pt;}
.y1eb{bottom:855.586133pt;}
.y111{bottom:856.043733pt;}
.ya{bottom:859.063867pt;}
.y7a{bottom:864.139600pt;}
.y21f{bottom:865.883600pt;}
.y110{bottom:868.843733pt;}
.y191{bottom:869.864133pt;}
.yab{bottom:870.191867pt;}
.y251{bottom:871.124533pt;}
.y1bc{bottom:871.499867pt;}
.y1ea{bottom:871.586133pt;}
.y185{bottom:872.623200pt;}
.ye0{bottom:873.643733pt;}
.y79{bottom:877.739600pt;}
.y21e{bottom:881.883600pt;}
.y9{bottom:882.622933pt;}
.yaa{bottom:882.991733pt;}
.y184{bottom:885.423200pt;}
.ydf{bottom:886.443733pt;}
.y250{bottom:887.124533pt;}
.y1e9{bottom:887.586133pt;}
.y1bb{bottom:889.100000pt;}
.ye{bottom:889.390933pt;}
.y181{bottom:890.223200pt;}
.y190{bottom:891.243733pt;}
.y78{bottom:891.339600pt;}
.y21d{bottom:897.883600pt;}
.y8{bottom:898.622933pt;}
.ya9{bottom:900.591733pt;}
.y180{bottom:903.023333pt;}
.y24f{bottom:903.124533pt;}
.y1e8{bottom:903.586133pt;}
.yde{bottom:904.043733pt;}
.y77{bottom:904.939600pt;}
.y1ba{bottom:906.700000pt;}
.y10f{bottom:907.823200pt;}
.y148{bottom:907.823333pt;}
.y21c{bottom:913.883600pt;}
.y76{bottom:918.539600pt;}
.y1e7{bottom:919.586133pt;}
.y10e{bottom:920.623200pt;}
.y147{bottom:920.623333pt;}
.ya8{bottom:921.971333pt;}
.ydd{bottom:925.423200pt;}
.y24e{bottom:926.683467pt;}
.y21b{bottom:929.883600pt;}
.y75{bottom:932.139600pt;}
.ya7{bottom:934.771333pt;}
.y1e6{bottom:935.586133pt;}
.ydc{bottom:938.223200pt;}
.y16a{bottom:938.223333pt;}
.y10d{bottom:942.002800pt;}
.y74{bottom:945.739600pt;}
.y21a{bottom:945.883600pt;}
.y1e5{bottom:951.586133pt;}
.ya6{bottom:952.371333pt;}
.y10c{bottom:954.802800pt;}
.y18f{bottom:955.823200pt;}
.y73{bottom:959.339600pt;}
.ydb{bottom:959.602800pt;}
.y219{bottom:961.883600pt;}
.y1e4{bottom:967.586133pt;}
.y1b9{bottom:972.300000pt;}
.yda{bottom:972.402800pt;}
.y72{bottom:972.939600pt;}
.y18e{bottom:977.202800pt;}
.y218{bottom:977.883600pt;}
.y1e3{bottom:983.586133pt;}
.yd6{bottom:985.809333pt;}
.y71{bottom:986.539600pt;}
.y169{bottom:990.002800pt;}
.yd9{bottom:993.782267pt;}
.y146{bottom:993.782400pt;}
.y217{bottom:993.883600pt;}
.y1e2{bottom:999.586133pt;}
.y70{bottom:1000.139600pt;}
.yd8{bottom:1006.582267pt;}
.y145{bottom:1006.582400pt;}
.y216{bottom:1009.883600pt;}
.y1b8{bottom:1010.700000pt;}
.y18d{bottom:1011.382267pt;}
.y168{bottom:1011.382400pt;}
.y6f{bottom:1013.739600pt;}
.y1e1{bottom:1023.145200pt;}
.yd7{bottom:1024.182267pt;}
.y144{bottom:1024.182400pt;}
.y215{bottom:1025.883600pt;}
.y6e{bottom:1027.339600pt;}
.ya4{bottom:1068.009867pt;}
.ya5{bottom:1069.353600pt;}
.h17{height:31.062500pt;}
.h28{height:31.083333pt;}
.h19{height:31.250000pt;}
.hf{height:33.026042pt;}
.h13{height:33.225260pt;}
.h8{height:34.944000pt;}
.hc{height:34.945312pt;}
.hd{height:34.968750pt;}
.h7{height:35.088000pt;}
.he{height:35.156250pt;}
.h10{height:35.179688pt;}
.h2{height:36.848000pt;}
.h23{height:37.838542pt;}
.h9{height:38.828125pt;}
.h1f{height:38.854167pt;}
.ha{height:39.062500pt;}
.h20{height:39.088542pt;}
.h16{height:41.622396pt;}
.h1e{height:42.710938pt;}
.h11{height:42.739583pt;}
.h12{height:42.997396pt;}
.h21{height:45.406250pt;}
.hb{height:46.000000pt;}
.h22{height:46.197917pt;}
.h2a{height:46.625000pt;}
.h15{height:46.720000pt;}
.h2b{height:46.906250pt;}
.h18{height:50.817708pt;}
.h24{height:63.745313pt;}
.h25{height:63.768750pt;}
.h27{height:63.979687pt;}
.h29{height:75.687500pt;}
.h1d{height:90.812500pt;}
.h26{height:92.568750pt;}
.h1c{height:110.875000pt;}
.h14{height:138.593750pt;}
.h1b{height:138.594283pt;}
.h1a{height:181.625000pt;}
.h5{height:191.666667pt;}
.h3{height:191.738733pt;}
.h6{height:264.320000pt;}
.h4{height:264.419309pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.794133pt;}
.x8{left:60.472400pt;}
.x1b{left:64.690533pt;}
.x18{left:70.693733pt;}
.x6{left:86.173200pt;}
.x1f{left:88.448533pt;}
.x9{left:92.976400pt;}
.x14{left:94.488133pt;}
.x5{left:96.332533pt;}
.x19{left:98.267733pt;}
.x2b{left:104.782133pt;}
.x2f{left:109.963467pt;}
.x2e{left:110.872933pt;}
.x21{left:113.385867pt;}
.x22{left:118.202933pt;}
.x2c{left:120.315333pt;}
.x1d{left:124.724400pt;}
.x4{left:126.549600pt;}
.x31{left:175.824133pt;}
.x1c{left:185.196800pt;}
.x1a{left:191.125333pt;}
.x36{left:202.611333pt;}
.x30{left:205.968267pt;}
.x37{left:215.251200pt;}
.x35{left:220.808533pt;}
.x38{left:227.726533pt;}
.x17{left:249.448800pt;}
.x27{left:254.463467pt;}
.x2d{left:292.695200pt;}
.x32{left:306.672933pt;}
.x25{left:312.850133pt;}
.x28{left:327.197867pt;}
.x2a{left:343.510400pt;}
.x33{left:346.190533pt;}
.x34{left:354.890400pt;}
.x29{left:410.418400pt;}
.x26{left:428.435333pt;}
.x1{left:455.089867pt;}
.x7{left:504.072133pt;}
.xe{left:517.136400pt;}
.xa{left:530.433867pt;}
.xd{left:537.915333pt;}
.x10{left:543.225600pt;}
.xf{left:544.851200pt;}
.x13{left:547.282533pt;}
.xb{left:548.657600pt;}
.x12{left:555.432267pt;}
.xc{left:563.592800pt;}
.x11{left:580.300400pt;}
.x20{left:585.465333pt;}
.x2{left:627.488133pt;}
.x23{left:646.860933pt;}
.x24{left:656.186133pt;}
.x1e{left:686.927733pt;}
.x16{left:689.807733pt;}
.x15{left:760.123600pt;}
}




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