
    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_2a27c0f7f107057ab79aeb5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061000;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_7fb69d138fa24279e70ac1b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_0ce90f9842f118d8869ec652.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.079000;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_6651279cf981cc2070a71cef.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.123000;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_b4b81d6d46b104223a3ce01f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_19b07fbd7c59806ebbe37f56.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061000;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_a5d50076f20a5a51406f3544.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.079000;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_a91da8aeaa020ccf20808a01.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_c2ab85d9b72b44617eede80b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061000;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_7963f210a11e18ae8edaf7ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.061000;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_469848c2ac732264114726e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061000;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_7d5a3b5bf5e6a6645c2e0561.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.079000;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_9c78b6128da168e31bfcaec6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061000;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_9a8cc3ac382e853931f37b8b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.061000;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_4f8ad30d6ff093fbb351eaea.woff2')format("woff");}.fff{font-family:fff;line-height:1.061000;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_0e4800aad9381bdd85e0fcfd.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.061000;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_17e670e6468b14d1e7bbf2de.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.079000;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_0813eccf518aa3160b85aad8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.061000;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_e174c9982f3cfa7eebe04224.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.079000;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_9c6c15b4d3a0ff22cf2c7683.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.061000;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_2a5042f7455f864b9e49abad.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.061000;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_098fbea559fd186390f353fb.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.061000;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_a91da8aeaa020ccf20808a01.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.028000;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_715f457aaa29aa63d3960ce7.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.061000;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_8111f6c7d6085c7f3a3259f1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.061000;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_954882a6a96eb6797a6bf1bf.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.079000;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_39cc6f6e5f4a0ce8a8190bd3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.079000;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_571d4fa1767246a698e1bdc0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.061000;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_d9a7f0357855f7007cfc3c17.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.061000;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_8ea69ab55d974029bb1ae6b4.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.075000;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_a91da8aeaa020ccf20808a01.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.028000;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_e5cf656196378eebf3695ea7.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.061000;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_3ac686275800c3cfce1ce8ab.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.061000;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_b07f4f015496ddcbc39b869a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.079000;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_3612e09cd68a5c39b858d873.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.061000;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_94dbdef6fadbd44732c11fa0.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.061000;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_bc730c93aa3c9edd7459ad27.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.079000;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_7307ec854ab4baf06e855ccd.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.061000;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_278c2491f27aff5f798584ce.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.061000;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_a91da8aeaa020ccf20808a01.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.028000;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_e154d5d6dc6a248d9ca3484d.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.725000;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_68f47795c208afe27e1c499c.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_552d2b52c031adea7c61dd08.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.075000;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_e684d4b105975555c52d395f.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.061000;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_48885f0475d84dd56be41705.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.061000;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_ca075403b93e4cc8452f43e4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.079000;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_7fc3263a52aa28ebdb2bc85c.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.061000;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_d33a3800351f7c8eb0722ae2.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.075000;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_91a24e0f6fcf85d3f4077ea0.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.061000;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_554a0117744d4aa18eea1549.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.061000;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_17e670e6468b14d1e7bbf2de.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.079000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_7a897a6728c555865b866d74.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_ae2a7d99e2db9581a85e3082.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_a3fe2a7c1a8ed1b4182c80b2.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:40.515258px;}
.v2{vertical-align:43.335976px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-52.512285px;}
.ws2{word-spacing:-50.475313px;}
.ws4{word-spacing:-24.005295px;}
.ws5{word-spacing:-19.503598px;}
.wsa{word-spacing:-16.498716px;}
.ws6{word-spacing:-12.005011px;}
.ws3{word-spacing:-12.004560px;}
.ws8{word-spacing:-10.625866px;}
.ws9{word-spacing:-10.271400px;}
.ws7{word-spacing:-8.500692px;}
.ws0{word-spacing:0.000000px;}
._4{width:1.749180px;}
._3{width:2.769977px;}
._1{width:4.678008px;}
._2{width:5.755501px;}
._5{width:6.774977px;}
._1c{width:7.907014px;}
._9{width:9.044366px;}
._7{width:10.459216px;}
._b{width:13.454349px;}
._16{width:15.000297px;}
._e{width:16.032158px;}
._30{width:17.068289px;}
._c{width:18.146193px;}
._8{width:19.665067px;}
._6{width:20.884512px;}
._19{width:21.948602px;}
._0{width:23.052530px;}
._11{width:24.354405px;}
._10{width:25.646916px;}
._d{width:27.474728px;}
._17{width:28.566731px;}
._f{width:30.397375px;}
._1a{width:32.119535px;}
._14{width:33.700608px;}
._27{width:35.018250px;}
._2d{width:36.209214px;}
._13{width:38.489902px;}
._a{width:40.181720px;}
._20{width:42.168891px;}
._28{width:43.651753px;}
._21{width:44.908055px;}
._1d{width:46.039909px;}
._22{width:47.210015px;}
._2e{width:48.723668px;}
._1b{width:49.771451px;}
._2b{width:51.113995px;}
._2a{width:52.520637px;}
._12{width:56.069995px;}
._25{width:57.907562px;}
._1e{width:59.812022px;}
._18{width:61.105346px;}
._24{width:63.694041px;}
._26{width:65.044576px;}
._2c{width:135.647279px;}
._23{width:525.969201px;}
._29{width:662.396685px;}
._1f{width:676.935356px;}
._2f{width:742.088338px;}
._15{width:809.976590px;}
.fc4{color:rgb(0,76,62);}
.fc5{color:rgb(34,61,75);}
.fc3{color:rgb(52,159,114);}
.fc2{color:transparent;}
.fc6{color:rgb(254,254,254);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(243,244,244);}
.fsd{font-size:34.002767px;}
.fs10{font-size:35.605739px;}
.fsf{font-size:41.085600px;}
.fs8{font-size:42.016004px;}
.fse{font-size:42.503464px;}
.fs2{font-size:48.018239px;}
.fs9{font-size:48.018289px;}
.fs7{font-size:48.020043px;}
.fsa{font-size:48.020200px;}
.fs5{font-size:60.007609px;}
.fsb{font-size:65.994864px;}
.fsc{font-size:76.506098px;}
.fs4{font-size:78.014394px;}
.fs6{font-size:96.021179px;}
.fs1{font-size:120.015219px;}
.fs3{font-size:210.049142px;}
.fs0{font-size:270.101768px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y267{bottom:6.370942px;}
.y1e3{bottom:6.418587px;}
.y1f0{bottom:6.419021px;}
.y1e6{bottom:6.452947px;}
.y1dd{bottom:6.490947px;}
.y1d7{bottom:6.557947px;}
.y1ed{bottom:6.564648px;}
.y260{bottom:7.332600px;}
.y263{bottom:7.368636px;}
.y25e{bottom:7.454768px;}
.y261{bottom:7.454856px;}
.y1d9{bottom:8.005653px;}
.y1f3{bottom:8.061083px;}
.y43{bottom:8.062147px;}
.y1f5{bottom:8.304965px;}
.y1b9{bottom:9.003272px;}
.y23a{bottom:9.020014px;}
.y176{bottom:9.021630px;}
.y24{bottom:9.022398px;}
.y11e{bottom:9.026672px;}
.yb9{bottom:9.033232px;}
.y2c{bottom:9.062730px;}
.yfa{bottom:9.066565px;}
.y217{bottom:9.071003px;}
.y246{bottom:9.076069px;}
.y150{bottom:9.079324px;}
.y16d{bottom:9.112036px;}
.y26d{bottom:9.119818px;}
.y1c8{bottom:9.131998px;}
.y133{bottom:9.142140px;}
.y1b1{bottom:9.152049px;}
.y60{bottom:9.156838px;}
.ybd{bottom:9.181294px;}
.yd2{bottom:9.211583px;}
.y25a{bottom:9.224893px;}
.y4b{bottom:9.232106px;}
.ya6{bottom:9.238040px;}
.y215{bottom:9.239247px;}
.y184{bottom:9.242586px;}
.y63{bottom:9.246949px;}
.y21f{bottom:9.253509px;}
.y19f{bottom:9.268557px;}
.y230{bottom:9.274584px;}
.y86{bottom:9.278051px;}
.y13d{bottom:9.279928px;}
.y9b{bottom:9.284979px;}
.ya{bottom:9.287851px;}
.yd5{bottom:9.293383px;}
.y1ab{bottom:9.296748px;}
.y144{bottom:9.303606px;}
.y1fa{bottom:9.304198px;}
.yac{bottom:9.311294px;}
.y25c{bottom:9.331190px;}
.yb1{bottom:9.331264px;}
.y9f{bottom:9.331503px;}
.y106{bottom:9.350268px;}
.y92{bottom:9.351829px;}
.y34{bottom:9.353253px;}
.yf2{bottom:9.361362px;}
.y39{bottom:9.363718px;}
.y127{bottom:9.396464px;}
.y199{bottom:9.434462px;}
.ye6{bottom:9.448865px;}
.y3f{bottom:9.460444px;}
.y1a5{bottom:9.462664px;}
.y75{bottom:9.463444px;}
.y12d{bottom:9.475143px;}
.y209{bottom:9.476024px;}
.y18b{bottom:9.501712px;}
.y18f{bottom:9.540771px;}
.y1e2{bottom:17.752842px;}
.y1ef{bottom:17.753277px;}
.y1e5{bottom:17.787202px;}
.y1dc{bottom:17.825202px;}
.y1d6{bottom:17.892203px;}
.y1ec{bottom:17.898904px;}
.y266{bottom:18.548544px;}
.y42{bottom:22.067482px;}
.y1f2{bottom:22.228904px;}
.y1b8{bottom:25.009351px;}
.y239{bottom:25.026695px;}
.y175{bottom:25.027710px;}
.y23{bottom:25.028478px;}
.y11d{bottom:25.032752px;}
.yb8{bottom:25.039311px;}
.y2b{bottom:25.068809px;}
.yf9{bottom:25.073246px;}
.y245{bottom:25.082750px;}
.y14f{bottom:25.086005px;}
.y16c{bottom:25.118116px;}
.y26c{bottom:25.126500px;}
.y1c7{bottom:25.138078px;}
.y132{bottom:25.148821px;}
.y1b0{bottom:25.158128px;}
.y5f{bottom:25.162918px;}
.ybc{bottom:25.187374px;}
.yd1{bottom:25.217663px;}
.y259{bottom:25.231574px;}
.y4a{bottom:25.238186px;}
.ya5{bottom:25.244721px;}
.y214{bottom:25.245327px;}
.y183{bottom:25.249267px;}
.y21e{bottom:25.260190px;}
.y19e{bottom:25.275238px;}
.y22f{bottom:25.281265px;}
.y85{bottom:25.284130px;}
.y13c{bottom:25.286609px;}
.y9a{bottom:25.291660px;}
.y9{bottom:25.293931px;}
.yd4{bottom:25.299479px;}
.y1aa{bottom:25.303429px;}
.y1f9{bottom:25.310278px;}
.y143{bottom:25.310287px;}
.yab{bottom:25.317975px;}
.yb0{bottom:25.337945px;}
.y9e{bottom:25.338184px;}
.y105{bottom:25.356950px;}
.y91{bottom:25.358510px;}
.y33{bottom:25.359934px;}
.yf1{bottom:25.368043px;}
.y38{bottom:25.370399px;}
.y126{bottom:25.403198px;}
.y198{bottom:25.441143px;}
.ye5{bottom:25.455547px;}
.y3e{bottom:25.467125px;}
.y1a4{bottom:25.469345px;}
.y74{bottom:25.469524px;}
.y12c{bottom:25.481877px;}
.y208{bottom:25.482705px;}
.y18a{bottom:25.508393px;}
.y18e{bottom:25.547452px;}
.y1e1{bottom:29.087098px;}
.y1db{bottom:29.159458px;}
.y1d5{bottom:29.226459px;}
.y1eb{bottom:29.233159px;}
.y265{bottom:30.726147px;}
.y6{bottom:30.735019px;}
.y264{bottom:31.455019px;}
.y41{bottom:36.072816px;}
.y221{bottom:36.135019px;}
.y1e0{bottom:40.421354px;}
.y1d4{bottom:40.560714px;}
.y1ea{bottom:40.567415px;}
.y1b7{bottom:41.015431px;}
.y238{bottom:41.033376px;}
.y174{bottom:41.033789px;}
.y22{bottom:41.034558px;}
.y11c{bottom:41.038832px;}
.yb7{bottom:41.045391px;}
.y2a{bottom:41.074889px;}
.yf8{bottom:41.079927px;}
.y244{bottom:41.089431px;}
.y14e{bottom:41.092686px;}
.y16b{bottom:41.124195px;}
.y26b{bottom:41.133181px;}
.y1c6{bottom:41.144158px;}
.y1af{bottom:41.164208px;}
.y5e{bottom:41.168997px;}
.ybb{bottom:41.193454px;}
.yd0{bottom:41.223742px;}
.y258{bottom:41.238255px;}
.y49{bottom:41.244265px;}
.ya4{bottom:41.251402px;}
.y213{bottom:41.251406px;}
.y182{bottom:41.255948px;}
.y21d{bottom:41.266871px;}
.y19d{bottom:41.281919px;}
.y22e{bottom:41.287946px;}
.y84{bottom:41.290210px;}
.y13b{bottom:41.293290px;}
.y99{bottom:41.298341px;}
.y8{bottom:41.300010px;}
.y1a9{bottom:41.310110px;}
.y1f8{bottom:41.316358px;}
.y142{bottom:41.316968px;}
.yaa{bottom:41.324656px;}
.yaf{bottom:41.344626px;}
.y9d{bottom:41.344865px;}
.y104{bottom:41.363631px;}
.y90{bottom:41.365191px;}
.yf0{bottom:41.374724px;}
.y37{bottom:41.377080px;}
.y125{bottom:41.409931px;}
.y197{bottom:41.447824px;}
.ye4{bottom:41.462228px;}
.y3d{bottom:41.473806px;}
.y73{bottom:41.475604px;}
.y1a3{bottom:41.476026px;}
.y12b{bottom:41.488610px;}
.y207{bottom:41.489386px;}
.y189{bottom:41.515074px;}
.y18d{bottom:41.554133px;}
.y1df{bottom:51.755609px;}
.y1d3{bottom:51.894970px;}
.y1e9{bottom:51.901670px;}
.y1b6{bottom:57.021511px;}
.y173{bottom:57.039869px;}
.y237{bottom:57.040057px;}
.y21{bottom:57.040637px;}
.y11b{bottom:57.044911px;}
.yb6{bottom:57.051471px;}
.y29{bottom:57.080969px;}
.yf7{bottom:57.086608px;}
.y243{bottom:57.096112px;}
.y14d{bottom:57.099367px;}
.y16a{bottom:57.130275px;}
.y1c5{bottom:57.150237px;}
.y1ae{bottom:57.170288px;}
.y5d{bottom:57.175077px;}
.ycf{bottom:57.229822px;}
.y257{bottom:57.244936px;}
.y48{bottom:57.250345px;}
.y212{bottom:57.257486px;}
.ya3{bottom:57.258083px;}
.y181{bottom:57.262629px;}
.y21c{bottom:57.273552px;}
.y19c{bottom:57.288600px;}
.y22d{bottom:57.294627px;}
.y83{bottom:57.296290px;}
.y13a{bottom:57.299971px;}
.y98{bottom:57.305022px;}
.y7{bottom:57.306090px;}
.y1a8{bottom:57.316791px;}
.y1f7{bottom:57.322438px;}
.y141{bottom:57.323649px;}
.ya9{bottom:57.331337px;}
.yae{bottom:57.351307px;}
.y103{bottom:57.370312px;}
.y8f{bottom:57.371872px;}
.yef{bottom:57.381405px;}
.y36{bottom:57.383761px;}
.y124{bottom:57.416665px;}
.y196{bottom:57.454505px;}
.ye3{bottom:57.468909px;}
.y3c{bottom:57.480487px;}
.y1a2{bottom:57.482707px;}
.y12a{bottom:57.495344px;}
.y206{bottom:57.496067px;}
.y188{bottom:57.521755px;}
.y134{bottom:59.535018px;}
.y1d2{bottom:63.229226px;}
.y1e8{bottom:63.235926px;}
.y18c{bottom:68.535018px;}
.y1b5{bottom:73.027591px;}
.y172{bottom:73.045949px;}
.y20{bottom:73.046717px;}
.y236{bottom:73.046738px;}
.y11a{bottom:73.050991px;}
.yb5{bottom:73.057550px;}
.y28{bottom:73.087049px;}
.yf6{bottom:73.093290px;}
.y242{bottom:73.102793px;}
.y14c{bottom:73.106048px;}
.y169{bottom:73.136355px;}
.y1c4{bottom:73.156317px;}
.y1ad{bottom:73.176368px;}
.y5c{bottom:73.181157px;}
.yce{bottom:73.235902px;}
.y256{bottom:73.251617px;}
.y47{bottom:73.256425px;}
.y211{bottom:73.263566px;}
.ya2{bottom:73.264764px;}
.y180{bottom:73.269310px;}
.y21b{bottom:73.280233px;}
.y19b{bottom:73.295281px;}
.y22c{bottom:73.301308px;}
.y139{bottom:73.306653px;}
.y97{bottom:73.311703px;}
.y1a7{bottom:73.323472px;}
.y140{bottom:73.330331px;}
.ya8{bottom:73.338018px;}
.y102{bottom:73.376993px;}
.y8e{bottom:73.378553px;}
.yee{bottom:73.388086px;}
.y123{bottom:73.423398px;}
.y195{bottom:73.461186px;}
.ye2{bottom:73.475590px;}
.y3b{bottom:73.487169px;}
.y72{bottom:73.487763px;}
.y1a1{bottom:73.489388px;}
.y129{bottom:73.502077px;}
.y205{bottom:73.502748px;}
.y187{bottom:73.528436px;}
.y1d1{bottom:74.563481px;}
.y1d0{bottom:85.897737px;}
.ye8{bottom:87.615017px;}
.y1b4{bottom:89.033670px;}
.y171{bottom:89.052028px;}
.y1f{bottom:89.052797px;}
.y235{bottom:89.053419px;}
.y119{bottom:89.057071px;}
.yb4{bottom:89.063630px;}
.y27{bottom:89.093128px;}
.yf5{bottom:89.099971px;}
.y241{bottom:89.109474px;}
.y14b{bottom:89.112729px;}
.y168{bottom:89.142434px;}
.y1c3{bottom:89.162397px;}
.y5b{bottom:89.187236px;}
.ycd{bottom:89.241982px;}
.y255{bottom:89.258299px;}
.y46{bottom:89.262505px;}
.y210{bottom:89.269645px;}
.ya1{bottom:89.271445px;}
.y17f{bottom:89.275991px;}
.y21a{bottom:89.286914px;}
.y22b{bottom:89.307989px;}
.y82{bottom:89.308449px;}
.y138{bottom:89.313334px;}
.y96{bottom:89.318384px;}
.y13f{bottom:89.337012px;}
.y101{bottom:89.383674px;}
.y8d{bottom:89.385234px;}
.yed{bottom:89.394767px;}
.y122{bottom:89.430132px;}
.ye1{bottom:89.482271px;}
.y71{bottom:89.493843px;}
.y204{bottom:89.509429px;}
.y186{bottom:89.535117px;}
.y1ba{bottom:95.175017px;}
.y1cf{bottom:97.231993px;}
.y159{bottom:100.979896px;}
.ya7{bottom:102.735016px;}
.y35{bottom:104.175016px;}
.y1b3{bottom:105.039750px;}
.y170{bottom:105.058108px;}
.y1e{bottom:105.058876px;}
.y234{bottom:105.060100px;}
.y118{bottom:105.063150px;}
.y26{bottom:105.099208px;}
.y240{bottom:105.116155px;}
.y14a{bottom:105.119410px;}
.y167{bottom:105.148514px;}
.y1c2{bottom:105.168476px;}
.y5a{bottom:105.193316px;}
.ycc{bottom:105.248061px;}
.y254{bottom:105.264980px;}
.y20f{bottom:105.275725px;}
.y17e{bottom:105.282673px;}
.y81{bottom:105.314529px;}
.y22a{bottom:105.314670px;}
.y137{bottom:105.320015px;}
.y95{bottom:105.325066px;}
.y100{bottom:105.390355px;}
.y8c{bottom:105.391915px;}
.yec{bottom:105.401448px;}
.y121{bottom:105.436865px;}
.ye0{bottom:105.488952px;}
.y70{bottom:105.499923px;}
.y203{bottom:105.516110px;}
.yd{bottom:109.262213px;}
.y77{bottom:109.265440px;}
.yc1{bottom:113.715089px;}
.y10a{bottom:115.583790px;}
.y1ce{bottom:119.900504px;}
.y16f{bottom:121.064188px;}
.y1d{bottom:121.064956px;}
.y233{bottom:121.066781px;}
.y117{bottom:121.069230px;}
.y23f{bottom:121.122836px;}
.y149{bottom:121.126091px;}
.y166{bottom:121.154594px;}
.y1c1{bottom:121.174556px;}
.y59{bottom:121.199396px;}
.ycb{bottom:121.254141px;}
.y253{bottom:121.271661px;}
.y20e{bottom:121.281805px;}
.y17d{bottom:121.289354px;}
.y80{bottom:121.320609px;}
.y229{bottom:121.321351px;}
.y136{bottom:121.326696px;}
.y94{bottom:121.331747px;}
.yff{bottom:121.397036px;}
.y8b{bottom:121.398596px;}
.yeb{bottom:121.408129px;}
.y120{bottom:121.443599px;}
.ydf{bottom:121.495633px;}
.y202{bottom:121.522791px;}
.y185{bottom:129.015015px;}
.y1c{bottom:137.071036px;}
.y232{bottom:137.073462px;}
.y116{bottom:137.075310px;}
.y23e{bottom:137.129517px;}
.y148{bottom:137.132772px;}
.y165{bottom:137.160674px;}
.y1c0{bottom:137.180636px;}
.y58{bottom:137.205476px;}
.yca{bottom:137.260221px;}
.y20d{bottom:137.287885px;}
.y17c{bottom:137.296035px;}
.y7f{bottom:137.326688px;}
.y228{bottom:137.328033px;}
.y135{bottom:137.333377px;}
.yfe{bottom:137.403717px;}
.y8a{bottom:137.405277px;}
.yea{bottom:137.414810px;}
.yde{bottom:137.502314px;}
.y6f{bottom:137.512082px;}
.y201{bottom:137.529472px;}
.y4c{bottom:145.215015px;}
.y1b{bottom:153.077116px;}
.y115{bottom:153.081390px;}
.y23d{bottom:153.136198px;}
.y147{bottom:153.139453px;}
.y164{bottom:153.166753px;}
.y1bf{bottom:153.186716px;}
.y57{bottom:153.211555px;}
.yc9{bottom:153.266300px;}
.y252{bottom:153.285023px;}
.y20c{bottom:153.293964px;}
.y17b{bottom:153.302716px;}
.y7e{bottom:153.332768px;}
.y227{bottom:153.334714px;}
.yfd{bottom:153.410398px;}
.y89{bottom:153.411958px;}
.ye9{bottom:153.421491px;}
.ydd{bottom:153.508995px;}
.y6e{bottom:153.518162px;}
.y200{bottom:153.536153px;}
.y5{bottom:167.054709px;}
.y1a{bottom:169.083195px;}
.y114{bottom:169.087469px;}
.y146{bottom:169.146134px;}
.y163{bottom:169.172833px;}
.y1be{bottom:169.192795px;}
.yc8{bottom:169.272380px;}
.y251{bottom:169.291704px;}
.y17a{bottom:169.309397px;}
.y7d{bottom:169.338848px;}
.y226{bottom:169.341395px;}
.yfc{bottom:169.417079px;}
.y88{bottom:169.418639px;}
.ydc{bottom:169.515676px;}
.y6d{bottom:169.524241px;}
.y1ff{bottom:169.542834px;}
.y19{bottom:185.089275px;}
.y113{bottom:185.093549px;}
.y162{bottom:185.178913px;}
.y1bd{bottom:185.198875px;}
.y56{bottom:185.223715px;}
.yc7{bottom:185.278460px;}
.y250{bottom:185.298385px;}
.y179{bottom:185.316078px;}
.y7c{bottom:185.344927px;}
.y225{bottom:185.348076px;}
.ydb{bottom:185.522357px;}
.y1fe{bottom:185.549515px;}
.yba{bottom:186.255013px;}
.ya0{bottom:197.415012px;}
.y158{bottom:200.017211px;}
.y18{bottom:201.095355px;}
.y112{bottom:201.099629px;}
.y161{bottom:201.184992px;}
.y1bc{bottom:201.204955px;}
.y55{bottom:201.229794px;}
.yc6{bottom:201.284540px;}
.y24f{bottom:201.305066px;}
.y178{bottom:201.322759px;}
.y224{bottom:201.354757px;}
.yda{bottom:201.529038px;}
.y6c{bottom:201.536401px;}
.y1fd{bottom:201.556196px;}
.yc{bottom:208.299528px;}
.y76{bottom:208.302755px;}
.y4{bottom:208.695398px;}
.y3a{bottom:211.455012px;}
.yc0{bottom:212.752404px;}
.y109{bottom:214.621105px;}
.y17{bottom:217.101434px;}
.y111{bottom:217.105708px;}
.y160{bottom:217.191072px;}
.y1bb{bottom:217.211034px;}
.y54{bottom:217.235874px;}
.yc5{bottom:217.290619px;}
.y24e{bottom:217.311747px;}
.y223{bottom:217.361438px;}
.y6b{bottom:217.542481px;}
.y131{bottom:218.295012px;}
.y16{bottom:233.107514px;}
.y110{bottom:233.111788px;}
.y15f{bottom:233.197152px;}
.y53{bottom:233.241954px;}
.yc4{bottom:233.296699px;}
.y24d{bottom:233.318428px;}
.y222{bottom:233.368119px;}
.y6a{bottom:233.548560px;}
.y177{bottom:237.735011px;}
.y15{bottom:249.113594px;}
.y15e{bottom:249.203232px;}
.y52{bottom:249.248034px;}
.yc3{bottom:249.302779px;}
.y24c{bottom:249.325109px;}
.y3{bottom:250.336088px;}
.y268{bottom:260.822396px;}
.y14{bottom:265.119674px;}
.y15d{bottom:265.209311px;}
.y51{bottom:265.254113px;}
.y24b{bottom:265.331790px;}
.y69{bottom:265.560720px;}
.y130{bottom:275.056135px;}
.y13{bottom:281.125753px;}
.y50{bottom:281.260193px;}
.y24a{bottom:281.338471px;}
.y68{bottom:281.566799px;}
.ybe{bottom:282.728275px;}
.ye7{bottom:286.251919px;}
.y12{bottom:297.131833px;}
.y4f{bottom:297.266273px;}
.y249{bottom:297.345152px;}
.y67{bottom:297.572879px;}
.yb{bottom:307.336843px;}
.y9c{bottom:307.935008px;}
.ybf{bottom:311.789719px;}
.y11{bottom:313.137913px;}
.y4e{bottom:313.272352px;}
.y220{bottom:313.344906px;}
.y66{bottom:313.578959px;}
.y108{bottom:313.658420px;}
.y128{bottom:324.495007px;}
.y4d{bottom:329.278432px;}
.y65{bottom:329.585039px;}
.y32{bottom:352.215006px;}
.y219{bottom:352.935006px;}
.yd9{bottom:353.295006px;}
.y262{bottom:354.375006px;}
.y25f{bottom:355.095006px;}
.y269{bottom:364.728364px;}
.y1b2{bottom:365.175005px;}
.y93{bottom:370.575005px;}
.y25d{bottom:404.055004px;}
.y107{bottom:412.695734px;}
.y11f{bottom:418.095003px;}
.y25{bottom:420.255003px;}
.y1cc{bottom:426.211930px;}
.y145{bottom:434.655003px;}
.y1cb{bottom:451.713963px;}
.y23c{bottom:460.935001px;}
.y1f6{bottom:471.735001px;}
.y157{bottom:481.580780px;}
.y15a{bottom:487.401298px;}
.y1fc{bottom:494.415000px;}
.y156{bottom:504.089261px;}
.y87{bottom:513.134999px;}
.y45{bottom:519.254999px;}
.y16e{bottom:519.614999px;}
.y1ac{bottom:522.854999px;}
.y155{bottom:526.597742px;}
.y248{bottom:530.774999px;}
.y154{bottom:549.106222px;}
.y31{bottom:568.945939px;}
.y153{bottom:571.614703px;}
.y1c9{bottom:586.403886px;}
.y10e{bottom:597.791046px;}
.y10{bottom:604.214996px;}
.y40{bottom:604.574995px;}
.yd8{bottom:619.790321px;}
.y1ca{bottom:629.774994px;}
.y152{bottom:633.901065px;}
.y151{bottom:641.403809px;}
.yd3{bottom:658.214993px;}
.y44{bottom:658.494535px;}
.y64{bottom:658.934993px;}
.y193{bottom:661.049822px;}
.y23b{bottom:664.690999px;}
.y13e{bottom:670.814993px;}
.y1d8{bottom:672.614993px;}
.y15c{bottom:683.414992px;}
.yc2{bottom:692.054992px;}
.y1e4{bottom:696.374992px;}
.yfb{bottom:717.254991px;}
.y1a6{bottom:748.574989px;}
.y79{bottom:753.024634px;}
.y1f1{bottom:755.414989px;}
.y1fb{bottom:759.740884px;}
.y10f{bottom:761.174989px;}
.y1f4{bottom:762.254989px;}
.y1cd{bottom:772.334989px;}
.y1e7{bottom:792.134988px;}
.y1de{bottom:793.574988px;}
.y7b{bottom:794.294988px;}
.y216{bottom:804.014987px;}
.y1a0{bottom:840.374986px;}
.yb3{bottom:840.734986px;}
.y20b{bottom:842.534986px;}
.y1da{bottom:863.774985px;}
.y247{bottom:870.960575px;}
.y1ee{bottom:873.494984px;}
.y26a{bottom:895.094983px;}
.yf4{bottom:923.534982px;}
.y19a{bottom:932.534982px;}
.y231{bottom:951.614981px;}
.yf{bottom:961.565364px;}
.y26e{bottom:967.297223px;}
.yb2{bottom:967.501570px;}
.y2{bottom:973.511965px;}
.ye{bottom:988.575540px;}
.y15b{bottom:995.842054px;}
.yad{bottom:1022.894978px;}
.y194{bottom:1024.334978px;}
.y78{bottom:1026.857687px;}
.y62{bottom:1029.374978px;}
.y10d{bottom:1039.351843px;}
.y30{bottom:1040.593127px;}
.y192{bottom:1046.915879px;}
.y20a{bottom:1049.596549px;}
.y25b{bottom:1050.254977px;}
.y2f{bottom:1073.230424px;}
.y191{bottom:1079.553176px;}
.yf3{bottom:1082.361548px;}
.y12f{bottom:1092.783153px;}
.y61{bottom:1098.219368px;}
.y2e{bottom:1105.867721px;}
.y190{bottom:1112.190473px;}
.y12e{bottom:1125.420450px;}
.yd7{bottom:1194.036171px;}
.y10c{bottom:1198.861160px;}
.yd6{bottom:1204.164989px;}
.y2d{bottom:1204.400237px;}
.y7a{bottom:1205.122134px;}
.y10b{bottom:1208.284799px;}
.y218{bottom:1208.989975px;}
.h4b{height:19.079999px;}
.h3f{height:19.799999px;}
.h45{height:20.159999px;}
.h17{height:22.319999px;}
.h4a{height:22.679999px;}
.h42{height:26.999999px;}
.h3e{height:27.644250px;}
.h3d{height:28.154291px;}
.h4e{height:28.947465px;}
.h4c{height:33.402593px;}
.h44{height:33.839999px;}
.h40{height:35.192868px;}
.h13{height:36.764003px;}
.h2c{height:38.159998px;}
.h22{height:38.519998px;}
.h6{height:39.038828px;}
.h23{height:39.038869px;}
.hf{height:39.040295px;}
.h2b{height:39.040423px;}
.he{height:39.239998px;}
.h2a{height:39.759102px;}
.h2f{height:39.760596px;}
.h4d{height:40.679998px;}
.ha{height:42.015959px;}
.h12{height:47.519998px;}
.h14{height:48.786186px;}
.hc{height:52.506658px;}
.h30{height:53.653825px;}
.h20{height:54.359998px;}
.h3a{height:54.472342px;}
.h1c{height:55.439998px;}
.h3b{height:58.603671px;}
.h41{height:61.199997px;}
.h4f{height:62.411515px;}
.h8{height:64.595918px;}
.h5{height:70.559997px;}
.h10{height:71.279997px;}
.h43{height:72.719997px;}
.h1e{height:78.065218px;}
.hd{height:84.018531px;}
.h36{height:86.399996px;}
.h35{height:87.119996px;}
.h11{height:87.479996px;}
.h24{height:89.301444px;}
.h28{height:92.122162px;}
.h4{height:97.572373px;}
.h1f{height:102.239996px;}
.h15{height:102.599996px;}
.h1d{height:103.319996px;}
.h34{height:103.679996px;}
.h37{height:118.079995px;}
.hb{height:118.439995px;}
.h3c{height:129.239995px;}
.h32{height:134.279994px;}
.h1b{height:135.359994px;}
.h48{height:150.119994px;}
.h2d{height:150.479994px;}
.h46{height:166.319993px;}
.h26{height:166.679993px;}
.h7{height:170.769952px;}
.h2e{height:182.159992px;}
.h27{height:182.519992px;}
.h1a{height:183.239992px;}
.h19{height:198.359992px;}
.h33{height:215.279991px;}
.h25{height:215.639991px;}
.h3{height:219.592737px;}
.h38{height:230.399990px;}
.h29{height:246.239990px;}
.h47{height:246.599990px;}
.h21{height:262.439989px;}
.h31{height:278.279988px;}
.h49{height:310.679987px;}
.h9{height:326.159986px;}
.h16{height:342.359986px;}
.h18{height:343.439986px;}
.h39{height:499.319979px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w30{width:62.639997px;}
.w25{width:66.599997px;}
.w31{width:91.079996px;}
.w26{width:93.239996px;}
.w2f{width:96.479996px;}
.w20{width:101.879996px;}
.w24{width:105.839996px;}
.w21{width:110.159995px;}
.w1f{width:113.399995px;}
.w27{width:129.599995px;}
.w22{width:146.879994px;}
.w23{width:204.479991px;}
.w15{width:242.279990px;}
.w2a{width:243.359990px;}
.w1a{width:247.319990px;}
.w8{width:255.239989px;}
.w10{width:266.399989px;}
.w2d{width:271.439989px;}
.w9{width:287.639988px;}
.wb{width:289.439988px;}
.w1b{width:339.479986px;}
.wd{width:341.279986px;}
.w19{width:346.319986px;}
.w2e{width:378.359984px;}
.w13{width:380.519984px;}
.wa{width:390.599984px;}
.w29{width:396.359983px;}
.w2c{width:397.439983px;}
.w3{width:401.399983px;}
.w32{width:404.999983px;}
.wc{width:405.359983px;}
.w2{width:424.439982px;}
.w11{width:441.359982px;}
.w28{width:442.439982px;}
.w14{width:509.399979px;}
.w1d{width:517.319978px;}
.w2b{width:554.399977px;}
.w7{width:600.479975px;}
.w5{width:640.439973px;}
.w6{width:641.519973px;}
.wf{width:650.519973px;}
.we{width:651.599973px;}
.w16{width:657.719973px;}
.w1e{width:665.639972px;}
.w12{width:677.519972px;}
.w1c{width:679.679972px;}
.w18{width:712.439970px;}
.w4{width:715.319970px;}
.w17{width:715.679970px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:3.013176px;}
.x2f{left:11.742689px;}
.x2c{left:14.484964px;}
.x1d{left:16.484129px;}
.x23{left:20.443362px;}
.x1{left:67.873861px;}
.x13{left:85.042217px;}
.x25{left:86.832281px;}
.x3{left:89.324996px;}
.x38{left:91.759705px;}
.x1c{left:93.239996px;}
.x20{left:101.307918px;}
.x8{left:105.479996px;}
.x26{left:107.999996px;}
.x21{left:112.667667px;}
.x1f{left:113.828260px;}
.x28{left:117.719995px;}
.x11{left:121.319995px;}
.x2a{left:125.357692px;}
.x10{left:131.039995px;}
.x6{left:147.599994px;}
.x1b{left:150.119994px;}
.x2b{left:162.359993px;}
.x3b{left:166.319993px;}
.x29{left:195.463378px;}
.x27{left:264.239989px;}
.x4{left:276.827662px;}
.x17{left:285.941479px;}
.x22{left:295.654293px;}
.xe{left:313.500771px;}
.x39{left:323.999987px;}
.x16{left:347.039986px;}
.x35{left:348.479985px;}
.x2d{left:368.639985px;}
.x2e{left:371.519985px;}
.x30{left:373.679984px;}
.x2{left:402.479983px;}
.xf{left:441.359982px;}
.x24{left:443.519982px;}
.x1e{left:458.999981px;}
.x3a{left:479.519980px;}
.xc{left:496.439979px;}
.xa{left:498.239979px;}
.x14{left:521.639978px;}
.x37{left:533.159978px;}
.x9{left:535.319978px;}
.x36{left:540.359977px;}
.x1a{left:553.679977px;}
.x33{left:566.999976px;}
.x18{left:569.073007px;}
.x32{left:575.999976px;}
.x31{left:577.439976px;}
.x19{left:590.349473px;}
.x5{left:593.763614px;}
.xd{left:623.125054px;}
.x15{left:633.814462px;}
.x34{left:655.166864px;}
.x12{left:670.381783px;}
.xb{left:685.658202px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:36.013563pt;}
.v2{vertical-align:38.520868pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-46.677587pt;}
.ws2{word-spacing:-44.866945pt;}
.ws4{word-spacing:-21.338040pt;}
.ws5{word-spacing:-17.336532pt;}
.wsa{word-spacing:-14.665525pt;}
.ws6{word-spacing:-10.671121pt;}
.ws3{word-spacing:-10.670720pt;}
.ws8{word-spacing:-9.445214pt;}
.ws9{word-spacing:-9.130133pt;}
.ws7{word-spacing:-7.556170pt;}
.ws0{word-spacing:0.000000pt;}
._4{width:1.554827pt;}
._3{width:2.462201pt;}
._1{width:4.158230pt;}
._2{width:5.116000pt;}
._5{width:6.022202pt;}
._1c{width:7.028457pt;}
._9{width:8.039436pt;}
._7{width:9.297081pt;}
._b{width:11.959421pt;}
._16{width:13.333598pt;}
._e{width:14.250807pt;}
._30{width:15.171813pt;}
._c{width:16.129950pt;}
._8{width:17.480060pt;}
._6{width:18.564010pt;}
._19{width:19.509869pt;}
._0{width:20.491137pt;}
._11{width:21.648360pt;}
._10{width:22.797259pt;}
._d{width:24.421980pt;}
._17{width:25.392650pt;}
._f{width:27.019889pt;}
._1a{width:28.550698pt;}
._14{width:29.956096pt;}
._27{width:31.127334pt;}
._2d{width:32.185968pt;}
._13{width:34.213247pt;}
._a{width:35.717084pt;}
._20{width:37.483458pt;}
._28{width:38.801558pt;}
._21{width:39.918272pt;}
._1d{width:40.924364pt;}
._22{width:41.964458pt;}
._2e{width:43.309927pt;}
._1b{width:44.241290pt;}
._2b{width:45.434662pt;}
._2a{width:46.685010pt;}
._12{width:49.839995pt;}
._25{width:51.473389pt;}
._1e{width:53.166242pt;}
._18{width:54.315863pt;}
._24{width:56.616926pt;}
._26{width:57.817401pt;}
._2c{width:120.575359pt;}
._23{width:467.528179pt;}
._29{width:588.797053pt;}
._1f{width:601.720316pt;}
._2f{width:659.634078pt;}
._15{width:719.979192pt;}
.fsd{font-size:30.224682pt;}
.fs10{font-size:31.649545pt;}
.fsf{font-size:36.520534pt;}
.fs8{font-size:37.347559pt;}
.fse{font-size:37.780857pt;}
.fs2{font-size:42.682879pt;}
.fs9{font-size:42.682924pt;}
.fs7{font-size:42.684483pt;}
.fsa{font-size:42.684623pt;}
.fs5{font-size:53.340097pt;}
.fsb{font-size:58.662102pt;}
.fsc{font-size:68.005420pt;}
.fs4{font-size:69.346128pt;}
.fs6{font-size:85.352159pt;}
.fs1{font-size:106.680195pt;}
.fs3{font-size:186.710348pt;}
.fs0{font-size:240.090460pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y267{bottom:5.663059pt;}
.y1e3{bottom:5.705410pt;}
.y1f0{bottom:5.705796pt;}
.y1e6{bottom:5.735953pt;}
.y1dd{bottom:5.769730pt;}
.y1d7{bottom:5.829287pt;}
.y1ed{bottom:5.835243pt;}
.y260{bottom:6.517867pt;}
.y263{bottom:6.549898pt;}
.y25e{bottom:6.626461pt;}
.y261{bottom:6.626539pt;}
.y1d9{bottom:7.116136pt;}
.y1f3{bottom:7.165407pt;}
.y43{bottom:7.166353pt;}
.y1f5{bottom:7.382191pt;}
.y1b9{bottom:8.002908pt;}
.y23a{bottom:8.017790pt;}
.y176{bottom:8.019227pt;}
.y24{bottom:8.019909pt;}
.y11e{bottom:8.023709pt;}
.yb9{bottom:8.029539pt;}
.y2c{bottom:8.055760pt;}
.yfa{bottom:8.059169pt;}
.y217{bottom:8.063114pt;}
.y246{bottom:8.067617pt;}
.y150{bottom:8.070510pt;}
.y16d{bottom:8.099587pt;}
.y26d{bottom:8.106505pt;}
.y1c8{bottom:8.117332pt;}
.y133{bottom:8.126347pt;}
.y1b1{bottom:8.135154pt;}
.y60{bottom:8.139411pt;}
.ybd{bottom:8.161151pt;}
.yd2{bottom:8.188074pt;}
.y25a{bottom:8.199905pt;}
.y4b{bottom:8.206316pt;}
.ya6{bottom:8.211591pt;}
.y215{bottom:8.212664pt;}
.y184{bottom:8.215632pt;}
.y63{bottom:8.219510pt;}
.y21f{bottom:8.225341pt;}
.y19f{bottom:8.238717pt;}
.y230{bottom:8.244075pt;}
.y86{bottom:8.247156pt;}
.y13d{bottom:8.248825pt;}
.y9b{bottom:8.253315pt;}
.ya{bottom:8.255867pt;}
.yd5{bottom:8.260785pt;}
.y1ab{bottom:8.263776pt;}
.y144{bottom:8.269872pt;}
.y1fa{bottom:8.270399pt;}
.yac{bottom:8.276706pt;}
.y25c{bottom:8.294391pt;}
.yb1{bottom:8.294457pt;}
.y9f{bottom:8.294669pt;}
.y106{bottom:8.311350pt;}
.y92{bottom:8.312736pt;}
.y34{bottom:8.314003pt;}
.yf2{bottom:8.321211pt;}
.y39{bottom:8.323305pt;}
.y127{bottom:8.352413pt;}
.y199{bottom:8.386188pt;}
.ye6{bottom:8.398992pt;}
.y3f{bottom:8.409284pt;}
.y1a5{bottom:8.411256pt;}
.y75{bottom:8.411950pt;}
.y12d{bottom:8.422350pt;}
.y209{bottom:8.423132pt;}
.y18b{bottom:8.445966pt;}
.y18f{bottom:8.480685pt;}
.y1e2{bottom:15.780304pt;}
.y1ef{bottom:15.780690pt;}
.y1e5{bottom:15.810847pt;}
.y1dc{bottom:15.844624pt;}
.y1d6{bottom:15.904180pt;}
.y1ec{bottom:15.910136pt;}
.y266{bottom:16.487595pt;}
.y42{bottom:19.615539pt;}
.y1f2{bottom:19.759026pt;}
.y1b8{bottom:22.230535pt;}
.y239{bottom:22.245951pt;}
.y175{bottom:22.246853pt;}
.y23{bottom:22.247536pt;}
.y11d{bottom:22.251335pt;}
.yb8{bottom:22.257166pt;}
.y2b{bottom:22.283386pt;}
.yf9{bottom:22.287330pt;}
.y245{bottom:22.295778pt;}
.y14f{bottom:22.298671pt;}
.y16c{bottom:22.327214pt;}
.y26c{bottom:22.334666pt;}
.y1c7{bottom:22.344958pt;}
.y132{bottom:22.354507pt;}
.y1b0{bottom:22.362781pt;}
.y5f{bottom:22.367038pt;}
.ybc{bottom:22.388777pt;}
.yd1{bottom:22.415700pt;}
.y259{bottom:22.428066pt;}
.y4a{bottom:22.433943pt;}
.ya5{bottom:22.439752pt;}
.y214{bottom:22.440290pt;}
.y183{bottom:22.443793pt;}
.y21e{bottom:22.453502pt;}
.y19e{bottom:22.466878pt;}
.y22f{bottom:22.472236pt;}
.y85{bottom:22.474782pt;}
.y13c{bottom:22.476986pt;}
.y9a{bottom:22.481476pt;}
.y9{bottom:22.483494pt;}
.yd4{bottom:22.488426pt;}
.y1aa{bottom:22.491937pt;}
.y1f9{bottom:22.498025pt;}
.y143{bottom:22.498033pt;}
.yab{bottom:22.504867pt;}
.yb0{bottom:22.522618pt;}
.y9e{bottom:22.522830pt;}
.y105{bottom:22.539511pt;}
.y91{bottom:22.540897pt;}
.y33{bottom:22.542164pt;}
.yf1{bottom:22.549371pt;}
.y38{bottom:22.551466pt;}
.y126{bottom:22.580620pt;}
.y198{bottom:22.614349pt;}
.ye5{bottom:22.627152pt;}
.y3e{bottom:22.637445pt;}
.y1a4{bottom:22.639417pt;}
.y74{bottom:22.639577pt;}
.y12c{bottom:22.650557pt;}
.y208{bottom:22.651293pt;}
.y18a{bottom:22.674127pt;}
.y18e{bottom:22.708846pt;}
.y1e1{bottom:25.855198pt;}
.y1db{bottom:25.919518pt;}
.y1d5{bottom:25.979074pt;}
.y1eb{bottom:25.985030pt;}
.y265{bottom:27.312130pt;}
.y6{bottom:27.320017pt;}
.y264{bottom:27.960017pt;}
.y41{bottom:32.064726pt;}
.y221{bottom:32.120017pt;}
.y1e0{bottom:35.930092pt;}
.y1d4{bottom:36.053968pt;}
.y1ea{bottom:36.059924pt;}
.y1b7{bottom:36.458161pt;}
.y238{bottom:36.474112pt;}
.y174{bottom:36.474479pt;}
.y22{bottom:36.475162pt;}
.y11c{bottom:36.478961pt;}
.yb7{bottom:36.484792pt;}
.y2a{bottom:36.511013pt;}
.yf8{bottom:36.515491pt;}
.y244{bottom:36.523939pt;}
.y14e{bottom:36.526832pt;}
.y16b{bottom:36.554840pt;}
.y26b{bottom:36.562827pt;}
.y1c6{bottom:36.572584pt;}
.y1af{bottom:36.590407pt;}
.y5e{bottom:36.594664pt;}
.ybb{bottom:36.616403pt;}
.yd0{bottom:36.643327pt;}
.y258{bottom:36.656227pt;}
.y49{bottom:36.661569pt;}
.ya4{bottom:36.667913pt;}
.y213{bottom:36.667917pt;}
.y182{bottom:36.671954pt;}
.y21d{bottom:36.681663pt;}
.y19d{bottom:36.695039pt;}
.y22e{bottom:36.700397pt;}
.y84{bottom:36.702409pt;}
.y13b{bottom:36.705147pt;}
.y99{bottom:36.709637pt;}
.y8{bottom:36.711120pt;}
.y1a9{bottom:36.720098pt;}
.y1f8{bottom:36.725651pt;}
.y142{bottom:36.726194pt;}
.yaa{bottom:36.733028pt;}
.yaf{bottom:36.750779pt;}
.y9d{bottom:36.750991pt;}
.y104{bottom:36.767672pt;}
.y90{bottom:36.769058pt;}
.yf0{bottom:36.777532pt;}
.y37{bottom:36.779627pt;}
.y125{bottom:36.808828pt;}
.y197{bottom:36.842510pt;}
.ye4{bottom:36.855313pt;}
.y3d{bottom:36.865606pt;}
.y73{bottom:36.867203pt;}
.y1a3{bottom:36.867578pt;}
.y12b{bottom:36.878765pt;}
.y207{bottom:36.879454pt;}
.y189{bottom:36.902288pt;}
.y18d{bottom:36.937007pt;}
.y1df{bottom:46.004986pt;}
.y1d3{bottom:46.128862pt;}
.y1e9{bottom:46.134818pt;}
.y1b6{bottom:50.685787pt;}
.y173{bottom:50.702106pt;}
.y237{bottom:50.702273pt;}
.y21{bottom:50.702789pt;}
.y11b{bottom:50.706588pt;}
.yb6{bottom:50.712418pt;}
.y29{bottom:50.738639pt;}
.yf7{bottom:50.743652pt;}
.y243{bottom:50.752100pt;}
.y14d{bottom:50.754993pt;}
.y16a{bottom:50.782467pt;}
.y1c5{bottom:50.800211pt;}
.y1ae{bottom:50.818034pt;}
.y5d{bottom:50.822291pt;}
.ycf{bottom:50.870953pt;}
.y257{bottom:50.884388pt;}
.y48{bottom:50.889196pt;}
.y212{bottom:50.895543pt;}
.ya3{bottom:50.896074pt;}
.y181{bottom:50.900115pt;}
.y21c{bottom:50.909824pt;}
.y19c{bottom:50.923200pt;}
.y22d{bottom:50.928558pt;}
.y83{bottom:50.930035pt;}
.y13a{bottom:50.933308pt;}
.y98{bottom:50.937798pt;}
.y7{bottom:50.938747pt;}
.y1a8{bottom:50.948259pt;}
.y1f7{bottom:50.953278pt;}
.y141{bottom:50.954355pt;}
.ya9{bottom:50.961189pt;}
.yae{bottom:50.978940pt;}
.y103{bottom:50.995833pt;}
.y8f{bottom:50.997219pt;}
.yef{bottom:51.005693pt;}
.y36{bottom:51.007788pt;}
.y124{bottom:51.037035pt;}
.y196{bottom:51.070671pt;}
.ye3{bottom:51.083474pt;}
.y3c{bottom:51.093767pt;}
.y1a2{bottom:51.095739pt;}
.y12a{bottom:51.106972pt;}
.y206{bottom:51.107615pt;}
.y188{bottom:51.130449pt;}
.y134{bottom:52.920016pt;}
.y1d2{bottom:56.203756pt;}
.y1e8{bottom:56.209712pt;}
.y18c{bottom:60.920016pt;}
.y1b5{bottom:64.913414pt;}
.y172{bottom:64.929732pt;}
.y20{bottom:64.930415pt;}
.y236{bottom:64.930434pt;}
.y11a{bottom:64.934214pt;}
.yb5{bottom:64.940045pt;}
.y28{bottom:64.966265pt;}
.yf6{bottom:64.971813pt;}
.y242{bottom:64.980261pt;}
.y14c{bottom:64.983154pt;}
.y169{bottom:65.010093pt;}
.y1c4{bottom:65.027837pt;}
.y1ad{bottom:65.045660pt;}
.y5c{bottom:65.049917pt;}
.yce{bottom:65.098579pt;}
.y256{bottom:65.112549pt;}
.y47{bottom:65.116822pt;}
.y211{bottom:65.123170pt;}
.ya2{bottom:65.124235pt;}
.y180{bottom:65.128276pt;}
.y21b{bottom:65.137985pt;}
.y19b{bottom:65.151361pt;}
.y22c{bottom:65.156718pt;}
.y139{bottom:65.161469pt;}
.y97{bottom:65.165959pt;}
.y1a7{bottom:65.176420pt;}
.y140{bottom:65.182516pt;}
.ya8{bottom:65.189349pt;}
.y102{bottom:65.223994pt;}
.y8e{bottom:65.225380pt;}
.yee{bottom:65.233854pt;}
.y123{bottom:65.265243pt;}
.y195{bottom:65.298832pt;}
.ye2{bottom:65.311635pt;}
.y3b{bottom:65.321928pt;}
.y72{bottom:65.322456pt;}
.y1a1{bottom:65.323900pt;}
.y129{bottom:65.335180pt;}
.y205{bottom:65.335776pt;}
.y187{bottom:65.358610pt;}
.y1d1{bottom:66.278650pt;}
.y1d0{bottom:76.353544pt;}
.ye8{bottom:77.880015pt;}
.y1b4{bottom:79.141040pt;}
.y171{bottom:79.157359pt;}
.y1f{bottom:79.158042pt;}
.y235{bottom:79.158595pt;}
.y119{bottom:79.161841pt;}
.yb4{bottom:79.167671pt;}
.y27{bottom:79.193892pt;}
.yf5{bottom:79.199974pt;}
.y241{bottom:79.208421pt;}
.y14b{bottom:79.211315pt;}
.y168{bottom:79.237719pt;}
.y1c3{bottom:79.255464pt;}
.y5b{bottom:79.277543pt;}
.ycd{bottom:79.326206pt;}
.y255{bottom:79.340710pt;}
.y46{bottom:79.344449pt;}
.y210{bottom:79.350796pt;}
.ya1{bottom:79.352396pt;}
.y17f{bottom:79.356437pt;}
.y21a{bottom:79.366146pt;}
.y22b{bottom:79.384879pt;}
.y82{bottom:79.385288pt;}
.y138{bottom:79.389630pt;}
.y96{bottom:79.394120pt;}
.y13f{bottom:79.410677pt;}
.y101{bottom:79.452154pt;}
.y8d{bottom:79.453541pt;}
.yed{bottom:79.462015pt;}
.y122{bottom:79.493450pt;}
.ye1{bottom:79.539796pt;}
.y71{bottom:79.550083pt;}
.y204{bottom:79.563937pt;}
.y186{bottom:79.586771pt;}
.y1ba{bottom:84.600015pt;}
.y1cf{bottom:86.428438pt;}
.y159{bottom:89.759908pt;}
.ya7{bottom:91.320015pt;}
.y35{bottom:92.600015pt;}
.y1b3{bottom:93.368667pt;}
.y170{bottom:93.384985pt;}
.y1e{bottom:93.385668pt;}
.y234{bottom:93.386756pt;}
.y118{bottom:93.389467pt;}
.y26{bottom:93.421518pt;}
.y240{bottom:93.436582pt;}
.y14a{bottom:93.439476pt;}
.y167{bottom:93.465346pt;}
.y1c2{bottom:93.483090pt;}
.y5a{bottom:93.505170pt;}
.ycc{bottom:93.553832pt;}
.y254{bottom:93.568871pt;}
.y20f{bottom:93.578422pt;}
.y17e{bottom:93.584598pt;}
.y81{bottom:93.612914pt;}
.y22a{bottom:93.613040pt;}
.y137{bottom:93.617791pt;}
.y95{bottom:93.622280pt;}
.y100{bottom:93.680315pt;}
.y8c{bottom:93.681702pt;}
.yec{bottom:93.690176pt;}
.y121{bottom:93.721658pt;}
.ye0{bottom:93.767957pt;}
.y70{bottom:93.777709pt;}
.y203{bottom:93.792098pt;}
.yd{bottom:97.121967pt;}
.y77{bottom:97.124836pt;}
.yc1{bottom:101.080079pt;}
.y10a{bottom:102.741146pt;}
.y1ce{bottom:106.578226pt;}
.y16f{bottom:107.612611pt;}
.y1d{bottom:107.613294pt;}
.y233{bottom:107.614917pt;}
.y117{bottom:107.617093pt;}
.y23f{bottom:107.664743pt;}
.y149{bottom:107.667637pt;}
.y166{bottom:107.692972pt;}
.y1c1{bottom:107.710717pt;}
.y59{bottom:107.732796pt;}
.ycb{bottom:107.781459pt;}
.y253{bottom:107.797032pt;}
.y20e{bottom:107.806049pt;}
.y17d{bottom:107.812759pt;}
.y80{bottom:107.840541pt;}
.y229{bottom:107.841201pt;}
.y136{bottom:107.845952pt;}
.y94{bottom:107.850441pt;}
.yff{bottom:107.908476pt;}
.y8b{bottom:107.909863pt;}
.yeb{bottom:107.918337pt;}
.y120{bottom:107.949865pt;}
.ydf{bottom:107.996118pt;}
.y202{bottom:108.020259pt;}
.y185{bottom:114.680014pt;}
.y1c{bottom:121.840921pt;}
.y232{bottom:121.843078pt;}
.y116{bottom:121.844720pt;}
.y23e{bottom:121.892904pt;}
.y148{bottom:121.895797pt;}
.y165{bottom:121.920599pt;}
.y1c0{bottom:121.938343pt;}
.y58{bottom:121.960423pt;}
.yca{bottom:122.009085pt;}
.y20d{bottom:122.033675pt;}
.y17c{bottom:122.040920pt;}
.y7f{bottom:122.068167pt;}
.y228{bottom:122.069362pt;}
.y135{bottom:122.074113pt;}
.yfe{bottom:122.136637pt;}
.y8a{bottom:122.138024pt;}
.yea{bottom:122.146498pt;}
.yde{bottom:122.224279pt;}
.y6f{bottom:122.232962pt;}
.y201{bottom:122.248420pt;}
.y4c{bottom:129.080013pt;}
.y1b{bottom:136.068547pt;}
.y115{bottom:136.072346pt;}
.y23d{bottom:136.121065pt;}
.y147{bottom:136.123958pt;}
.y164{bottom:136.148225pt;}
.y1bf{bottom:136.165969pt;}
.y57{bottom:136.188049pt;}
.yc9{bottom:136.236711pt;}
.y252{bottom:136.253354pt;}
.y20c{bottom:136.261302pt;}
.y17b{bottom:136.269081pt;}
.y7e{bottom:136.295794pt;}
.y227{bottom:136.297523pt;}
.yfd{bottom:136.364798pt;}
.y89{bottom:136.366185pt;}
.ye9{bottom:136.374659pt;}
.ydd{bottom:136.452440pt;}
.y6e{bottom:136.460588pt;}
.y200{bottom:136.476581pt;}
.y5{bottom:148.493075pt;}
.y1a{bottom:150.296174pt;}
.y114{bottom:150.299973pt;}
.y146{bottom:150.352119pt;}
.y163{bottom:150.375852pt;}
.y1be{bottom:150.393596pt;}
.yc8{bottom:150.464338pt;}
.y251{bottom:150.481515pt;}
.y17a{bottom:150.497242pt;}
.y7d{bottom:150.523420pt;}
.y226{bottom:150.525684pt;}
.yfc{bottom:150.592959pt;}
.y88{bottom:150.594346pt;}
.ydc{bottom:150.680601pt;}
.y6d{bottom:150.688215pt;}
.y1ff{bottom:150.704742pt;}
.y19{bottom:164.523800pt;}
.y113{bottom:164.527599pt;}
.y162{bottom:164.603478pt;}
.y1bd{bottom:164.621222pt;}
.y56{bottom:164.643302pt;}
.yc7{bottom:164.691964pt;}
.y250{bottom:164.709675pt;}
.y179{bottom:164.725403pt;}
.y7c{bottom:164.751047pt;}
.y225{bottom:164.753845pt;}
.ydb{bottom:164.908762pt;}
.y1fe{bottom:164.932903pt;}
.yba{bottom:165.560011pt;}
.ya0{bottom:175.480011pt;}
.y158{bottom:177.793077pt;}
.y18{bottom:178.751426pt;}
.y112{bottom:178.755226pt;}
.y161{bottom:178.831104pt;}
.y1bc{bottom:178.848849pt;}
.y55{bottom:178.870928pt;}
.yc6{bottom:178.919591pt;}
.y24f{bottom:178.937836pt;}
.y178{bottom:178.953563pt;}
.y224{bottom:178.982006pt;}
.yda{bottom:179.136923pt;}
.y6c{bottom:179.143467pt;}
.y1fd{bottom:179.161063pt;}
.yc{bottom:185.155136pt;}
.y76{bottom:185.158004pt;}
.y4{bottom:185.507021pt;}
.y3a{bottom:187.960011pt;}
.yc0{bottom:189.113248pt;}
.y109{bottom:190.774315pt;}
.y17{bottom:192.979053pt;}
.y111{bottom:192.982852pt;}
.y160{bottom:193.058731pt;}
.y1bb{bottom:193.076475pt;}
.y54{bottom:193.098555pt;}
.yc5{bottom:193.147217pt;}
.y24e{bottom:193.165997pt;}
.y223{bottom:193.210167pt;}
.y6b{bottom:193.371094pt;}
.y131{bottom:194.040010pt;}
.y16{bottom:207.206679pt;}
.y110{bottom:207.210478pt;}
.y15f{bottom:207.286357pt;}
.y53{bottom:207.326181pt;}
.yc4{bottom:207.374844pt;}
.y24d{bottom:207.394158pt;}
.y222{bottom:207.438328pt;}
.y6a{bottom:207.598720pt;}
.y177{bottom:211.320010pt;}
.y15{bottom:221.434306pt;}
.y15e{bottom:221.513984pt;}
.y52{bottom:221.553808pt;}
.yc3{bottom:221.602470pt;}
.y24c{bottom:221.622319pt;}
.y3{bottom:222.520967pt;}
.y268{bottom:231.842130pt;}
.y14{bottom:235.661932pt;}
.y15d{bottom:235.741610pt;}
.y51{bottom:235.781434pt;}
.y24b{bottom:235.850480pt;}
.y69{bottom:236.053973pt;}
.y130{bottom:244.494342pt;}
.y13{bottom:249.889559pt;}
.y50{bottom:250.009060pt;}
.y24a{bottom:250.078641pt;}
.y68{bottom:250.281599pt;}
.ybe{bottom:251.314022pt;}
.ye7{bottom:254.446150pt;}
.y12{bottom:264.117185pt;}
.y4f{bottom:264.236687pt;}
.y249{bottom:264.306802pt;}
.y67{bottom:264.509226pt;}
.yb{bottom:273.188305pt;}
.y9c{bottom:273.720007pt;}
.ybf{bottom:277.146417pt;}
.y11{bottom:278.344811pt;}
.y4e{bottom:278.464313pt;}
.y220{bottom:278.528805pt;}
.y66{bottom:278.736852pt;}
.y108{bottom:278.807484pt;}
.y128{bottom:288.440006pt;}
.y4d{bottom:292.691940pt;}
.y65{bottom:292.964479pt;}
.y32{bottom:313.080005pt;}
.y219{bottom:313.720005pt;}
.yd9{bottom:314.040005pt;}
.y262{bottom:315.000005pt;}
.y25f{bottom:315.640005pt;}
.y269{bottom:324.202990pt;}
.y1b2{bottom:324.600005pt;}
.y93{bottom:329.400005pt;}
.y25d{bottom:359.160003pt;}
.y107{bottom:366.840653pt;}
.y11f{bottom:371.640003pt;}
.y25{bottom:373.560003pt;}
.y1cc{bottom:378.855049pt;}
.y145{bottom:386.360002pt;}
.y1cb{bottom:401.523522pt;}
.y23c{bottom:409.720001pt;}
.y1f6{bottom:419.320001pt;}
.y157{bottom:428.071805pt;}
.y15a{bottom:433.245599pt;}
.y1fc{bottom:439.480000pt;}
.y156{bottom:448.079343pt;}
.y87{bottom:456.119999pt;}
.y45{bottom:461.559999pt;}
.y16e{bottom:461.879999pt;}
.y1ac{bottom:464.759999pt;}
.y155{bottom:468.086882pt;}
.y248{bottom:471.799999pt;}
.y154{bottom:488.094420pt;}
.y31{bottom:505.729724pt;}
.y153{bottom:508.101958pt;}
.y1c9{bottom:521.247899pt;}
.y10e{bottom:531.369818pt;}
.y10{bottom:537.079996pt;}
.y40{bottom:537.399996pt;}
.yd8{bottom:550.924730pt;}
.y1ca{bottom:559.799995pt;}
.y152{bottom:563.467613pt;}
.y151{bottom:570.136719pt;}
.yd3{bottom:585.079994pt;}
.y44{bottom:585.328475pt;}
.y64{bottom:585.719994pt;}
.y193{bottom:587.599842pt;}
.y23b{bottom:590.836443pt;}
.y13e{bottom:596.279994pt;}
.y1d8{bottom:597.879993pt;}
.y15c{bottom:607.479993pt;}
.yc2{bottom:615.159993pt;}
.y1e4{bottom:618.999993pt;}
.yfb{bottom:637.559992pt;}
.y1a6{bottom:665.399991pt;}
.y79{bottom:669.355230pt;}
.y1f1{bottom:671.479990pt;}
.y1fb{bottom:675.325230pt;}
.y10f{bottom:676.599990pt;}
.y1f4{bottom:677.559990pt;}
.y1cd{bottom:686.519990pt;}
.y1e7{bottom:704.119989pt;}
.y1de{bottom:705.399989pt;}
.y7b{bottom:706.039989pt;}
.y216{bottom:714.679989pt;}
.y1a0{bottom:746.999987pt;}
.yb3{bottom:747.319987pt;}
.y20b{bottom:748.919987pt;}
.y1da{bottom:767.799986pt;}
.y247{bottom:774.187178pt;}
.y1ee{bottom:776.439986pt;}
.y26a{bottom:795.639985pt;}
.yf4{bottom:820.919984pt;}
.y19a{bottom:828.919984pt;}
.y231{bottom:845.879983pt;}
.yf{bottom:854.724768pt;}
.y26e{bottom:859.819754pt;}
.yb2{bottom:860.001395pt;}
.y2{bottom:865.343969pt;}
.ye{bottom:878.733814pt;}
.y15b{bottom:885.192937pt;}
.yad{bottom:909.239981pt;}
.y194{bottom:910.519980pt;}
.y78{bottom:912.762388pt;}
.y62{bottom:914.999980pt;}
.y10d{bottom:923.868305pt;}
.y30{bottom:924.971668pt;}
.y192{bottom:930.591892pt;}
.y20a{bottom:932.974711pt;}
.y25b{bottom:933.559979pt;}
.y2f{bottom:953.982599pt;}
.y191{bottom:959.602823pt;}
.yf3{bottom:962.099154pt;}
.y12f{bottom:971.362803pt;}
.y61{bottom:976.194994pt;}
.y2e{bottom:982.993530pt;}
.y190{bottom:988.613753pt;}
.y12e{bottom:1000.373734pt;}
.yd7{bottom:1061.365485pt;}
.y10c{bottom:1065.654365pt;}
.yd6{bottom:1070.368879pt;}
.y2d{bottom:1070.577988pt;}
.y7a{bottom:1071.219675pt;}
.y10b{bottom:1074.030932pt;}
.y218{bottom:1074.657756pt;}
.h4b{height:16.959999pt;}
.h3f{height:17.599999pt;}
.h45{height:17.919999pt;}
.h17{height:19.839999pt;}
.h4a{height:20.159999pt;}
.h42{height:23.999999pt;}
.h3e{height:24.572666pt;}
.h3d{height:25.026036pt;}
.h4e{height:25.731080pt;}
.h4c{height:29.691194pt;}
.h44{height:30.079999pt;}
.h40{height:31.282549pt;}
.h13{height:32.679114pt;}
.h2c{height:33.919999pt;}
.h22{height:34.239999pt;}
.h6{height:34.701181pt;}
.h23{height:34.701217pt;}
.hf{height:34.702485pt;}
.h2b{height:34.702598pt;}
.he{height:34.879999pt;}
.h2a{height:35.341424pt;}
.h2f{height:35.342752pt;}
.h4d{height:36.159998pt;}
.ha{height:37.347519pt;}
.h12{height:42.239998pt;}
.h14{height:43.365499pt;}
.hc{height:46.672585pt;}
.h30{height:47.692289pt;}
.h20{height:48.319998pt;}
.h3a{height:48.419859pt;}
.h1c{height:49.279998pt;}
.h3b{height:52.092152pt;}
.h41{height:54.399998pt;}
.h4f{height:55.476902pt;}
.h8{height:57.418594pt;}
.h5{height:62.719997pt;}
.h10{height:63.359997pt;}
.h43{height:64.639997pt;}
.h1e{height:69.391305pt;}
.hd{height:74.683139pt;}
.h36{height:76.799997pt;}
.h35{height:77.439997pt;}
.h11{height:77.759997pt;}
.h24{height:79.379061pt;}
.h28{height:81.886366pt;}
.h4{height:86.730998pt;}
.h1f{height:90.879996pt;}
.h15{height:91.199996pt;}
.h1d{height:91.839996pt;}
.h34{height:92.159996pt;}
.h37{height:104.959996pt;}
.hb{height:105.279996pt;}
.h3c{height:114.879995pt;}
.h32{height:119.359995pt;}
.h1b{height:120.319995pt;}
.h48{height:133.439994pt;}
.h2d{height:133.759994pt;}
.h46{height:147.839994pt;}
.h26{height:148.159994pt;}
.h7{height:151.795513pt;}
.h2e{height:161.919993pt;}
.h27{height:162.239993pt;}
.h1a{height:162.879993pt;}
.h19{height:176.319993pt;}
.h33{height:191.359992pt;}
.h25{height:191.679992pt;}
.h3{height:195.193544pt;}
.h38{height:204.799991pt;}
.h29{height:218.879991pt;}
.h47{height:219.199991pt;}
.h21{height:233.279990pt;}
.h31{height:247.359990pt;}
.h49{height:276.159988pt;}
.h9{height:289.919988pt;}
.h16{height:304.319987pt;}
.h18{height:305.279987pt;}
.h39{height:443.839982pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w30{width:55.679998pt;}
.w25{width:59.199998pt;}
.w31{width:80.959997pt;}
.w26{width:82.879997pt;}
.w2f{width:85.759996pt;}
.w20{width:90.559996pt;}
.w24{width:94.079996pt;}
.w21{width:97.919996pt;}
.w1f{width:100.799996pt;}
.w27{width:115.199995pt;}
.w22{width:130.559995pt;}
.w23{width:181.759992pt;}
.w15{width:215.359991pt;}
.w2a{width:216.319991pt;}
.w1a{width:219.839991pt;}
.w8{width:226.879991pt;}
.w10{width:236.799990pt;}
.w2d{width:241.279990pt;}
.w9{width:255.679989pt;}
.wb{width:257.279989pt;}
.w1b{width:301.759987pt;}
.wd{width:303.359987pt;}
.w19{width:307.839987pt;}
.w2e{width:336.319986pt;}
.w13{width:338.239986pt;}
.wa{width:347.199986pt;}
.w29{width:352.319985pt;}
.w2c{width:353.279985pt;}
.w3{width:356.799985pt;}
.w32{width:359.999985pt;}
.wc{width:360.319985pt;}
.w2{width:377.279984pt;}
.w11{width:392.319984pt;}
.w28{width:393.279984pt;}
.w14{width:452.799981pt;}
.w1d{width:459.839981pt;}
.w2b{width:492.799979pt;}
.w7{width:533.759978pt;}
.w5{width:569.279976pt;}
.w6{width:570.239976pt;}
.wf{width:578.239976pt;}
.we{width:579.199976pt;}
.w16{width:584.639976pt;}
.w1e{width:591.679975pt;}
.w12{width:602.239975pt;}
.w1c{width:604.159975pt;}
.w18{width:633.279974pt;}
.w4{width:635.839974pt;}
.w17{width:636.159973pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:2.678379pt;}
.x2f{left:10.437946pt;}
.x2c{left:12.875524pt;}
.x1d{left:14.652559pt;}
.x23{left:18.171877pt;}
.x1{left:60.332321pt;}
.x13{left:75.593082pt;}
.x25{left:77.184250pt;}
.x3{left:79.399997pt;}
.x38{left:81.564182pt;}
.x1c{left:82.879997pt;}
.x20{left:90.051483pt;}
.x8{left:93.759996pt;}
.x26{left:95.999996pt;}
.x21{left:100.149037pt;}
.x1f{left:101.180676pt;}
.x28{left:104.639996pt;}
.x11{left:107.839996pt;}
.x2a{left:111.429060pt;}
.x10{left:116.479995pt;}
.x6{left:131.199995pt;}
.x1b{left:133.439994pt;}
.x2b{left:144.319994pt;}
.x3b{left:147.839994pt;}
.x29{left:173.745224pt;}
.x27{left:234.879990pt;}
.x4{left:246.069033pt;}
.x17{left:254.170204pt;}
.x22{left:262.803816pt;}
.xe{left:278.667352pt;}
.x39{left:287.999988pt;}
.x16{left:308.479987pt;}
.x35{left:309.759987pt;}
.x2d{left:327.679986pt;}
.x2e{left:330.239986pt;}
.x30{left:332.159986pt;}
.x2{left:357.759985pt;}
.xf{left:392.319984pt;}
.x24{left:394.239984pt;}
.x1e{left:407.999983pt;}
.x3a{left:426.239982pt;}
.xc{left:441.279982pt;}
.xa{left:442.879982pt;}
.x14{left:463.679981pt;}
.x37{left:473.919980pt;}
.x9{left:475.839980pt;}
.x36{left:480.319980pt;}
.x1a{left:492.159979pt;}
.x33{left:503.999979pt;}
.x18{left:505.842673pt;}
.x32{left:511.999979pt;}
.x31{left:513.279979pt;}
.x19{left:524.755087pt;}
.x5{left:527.789879pt;}
.xd{left:553.888937pt;}
.x15{left:563.390633pt;}
.x34{left:582.370545pt;}
.x12{left:595.894918pt;}
.xb{left:609.473958pt;}
}




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