
    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_f9160ab96c7551c01a19785e.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_8eb98a90d7ed4d617db8ec41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a138edf9055e30beb4ea0580.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.724000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b220f68c3482137eefb6da72.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ce57f115d6477f2f7d26714f.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_0a63d458b83557c30646794d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958000;font-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_5f64ceb06b2d9eba73f827f0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d921fc9246b00c5a0495658d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.724121;font-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_960d9da45cfd5efb6f97ce68.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.116000;font-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_50898c990f211747227b1cd5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958000;font-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_eae1fbe65a012d4126250b9b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.733887;font-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_1b400dc1bf5aafb2125e5d83.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_63b2986efe6a31bee70f00aa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958000;font-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_1f690b1d82cde498c17c4f8f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.717773;font-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_1a912d7b85a15ea53f11fad1.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_0386eca84b4bbe54395df04e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_505e592d0c82f906f0d74d7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.049000;font-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_462de0cccd31915caba9e374.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8178212c1c6902e9938055d0.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_aabff7d5f7e0cf2b88f8debd.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.723633;font-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_75f0a7852358f69a532f4793.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958000;font-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_170a5153cc7014e3163158ca.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_ea3a7c9ef396545afe8514a4.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.733887;font-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_5332c4c3d10d88bc086789ef.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_1fb968c6a75b27602ee2d6d2.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_703457d65036940d46700200.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.713867;font-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_a251f91e2fb59bf6feaa7175.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_c87e93d6f99cc3a0fad430c6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_7df2783291239055f9d28879.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_2c33beb33600c6018d2a28ea.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_b14c3a1860bda87b97b479a3.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.733887;font-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_954eaa0b754f91996e3826c8.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_1fbefefceb4f084a7bd9efcc.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_9eeebfddbd8be75eb2473403.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.733887;font-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_66f2ba0f31f55deeb9e6e3d0.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_c842bf8890b87ad3b2fdb273.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_8f55cb7d32f6552624a3ccf9.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_3da58d602bf90c7e41721f26.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_75f0a7852358f69a532f4793.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.958000;font-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_b4bcd7522952a46e3cd0cf41.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.713867;font-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_75cc075d20df43e43131022b.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_398aeacccf63831c4c233e3f.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_ba7712228820c05395820fd0.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.724121;font-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_88b4a2321a1324415c288dcb.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_723029f8660bff9e567fd0fc.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.713867;font-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_f4c5a519c2183724c41381e0.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_d72a460121a5b19a34d6d862.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_75be5ac11581178fdfaca49c.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_1a2b62f0be6ebdfaccccf7e4.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.733887;font-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_1d692a28ad66d7b30c5ebdf6.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_2af166758a455648954a9816.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_5a7871707900874d6e400be7.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.717773;font-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_bb70362de92ab89af57b8279.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_75f0a7852358f69a532f4793.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.958000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_a54fd20373dcafa0c95e9e8a.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.723633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_66d6af60cf7bb8b284550e59.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_4fd4eebb7c3b9756b164fa15.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_738f5c5beb585b850aab19b1.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_6213c9a3d18dc9646d92c366.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.958000;font-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:ff3c;src:url('chunks/assets/font_ffc596478092c43b235b2382.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.733887;font-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:ff3d;src:url('chunks/assets/font_b912d674d13eff52fa1d9b45.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_f967d8c0cf4efdd28e134aa4.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_c67cb1ac861be73e33082b9f.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_723029f8660bff9e567fd0fc.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.713867;font-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:ff41;src:url('chunks/assets/font_cd7fdb895562cf173d44d228.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_59ab05f2cc6c5f92a4b2f1e4.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.713867;font-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:ff43;src:url('chunks/assets/font_b05818220df277467f6722ca.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_723029f8660bff9e567fd0fc.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.713867;font-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:ff45;src:url('chunks/assets/font_86bca32c7f0d2281c7e5ce0f.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_c274e85ef058b7f726123431.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.759766;font-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:ff47;src:url('chunks/assets/font_982e1d445b1ee97df24ff00d.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_9afef81c332c7b01e3ecb070.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.958000;font-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:ff49;src:url('chunks/assets/font_c2a4500880036e8599698149.woff2')format("woff");}.ff49{font-family:ff49;line-height:0.733887;font-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:ff4a;src:url('chunks/assets/font_281e19bd5f85bac7b1b65569.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_8e9172283ae30f8b6e4bc67d.woff2')format("woff");}.ff4b{font-family:ff4b;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-45.917169px;}
.v6{vertical-align:-10.103739px;}
.v5{vertical-align:-7.412688px;}
.v4{vertical-align:-6.142326px;}
.v3{vertical-align:-3.301268px;}
.v1{vertical-align:-2.238067px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1482.259450px;}
.ls2{letter-spacing:1537.340153px;}
.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;}
}
.ws0{word-spacing:-257.113938px;}
.ws8{word-spacing:-109.121114px;}
.ws5{word-spacing:-90.925174px;}
.ws3{word-spacing:-60.018866px;}
.wsa{word-spacing:-41.939376px;}
.ws2{word-spacing:-41.711548px;}
.ws15{word-spacing:-36.364611px;}
.ws6{word-spacing:-33.008687px;}
.ws4{word-spacing:-30.003805px;}
.ws18{word-spacing:-21.000412px;}
.wse{word-spacing:-18.040548px;}
.ws7{word-spacing:-16.498716px;}
.ws12{word-spacing:-15.587914px;}
.ws9{word-spacing:-15.001902px;}
.ws16{word-spacing:-14.032631px;}
.wsf{word-spacing:-13.538851px;}
.wsb{word-spacing:-13.505088px;}
.ws17{word-spacing:-12.465654px;}
.ws19{word-spacing:-11.835462px;}
.ws10{word-spacing:-0.078014px;}
.ws13{word-spacing:-0.060008px;}
.ws1{word-spacing:0.000000px;}
.ws11{word-spacing:760.299287px;}
.wsd{word-spacing:765.273008px;}
.wsc{word-spacing:781.661995px;}
.ws14{word-spacing:1340.776365px;}
._33{margin-left:-1.000583px;}
._6{width:1.531307px;}
._7{width:3.070141px;}
._37{width:4.076276px;}
._3{width:5.189825px;}
._9{width:6.945855px;}
._0{width:8.427288px;}
._5{width:10.136406px;}
._1b{width:11.692058px;}
._1d{width:12.852878px;}
._29{width:14.754930px;}
._12{width:16.038133px;}
._e{width:17.499562px;}
._10{width:18.712231px;}
._2{width:19.905872px;}
._1{width:21.687096px;}
._11{width:23.519527px;}
._15{width:24.526874px;}
._3f{width:25.593962px;}
._4{width:26.621907px;}
._b{width:28.375699px;}
._d{width:29.594917px;}
._1c{width:30.959446px;}
._16{width:32.243312px;}
._8{width:33.595396px;}
._a{width:34.853687px;}
._34{width:36.022792px;}
._1a{width:37.334868px;}
._2d{width:38.439453px;}
._24{width:40.254019px;}
._25{width:41.517420px;}
._2c{width:42.927917px;}
._27{width:44.022216px;}
._21{width:45.687732px;}
._14{width:46.749404px;}
._35{width:48.097157px;}
._3c{width:50.071712px;}
._17{width:51.347486px;}
._47{width:52.400449px;}
._1f{width:53.565346px;}
._2a{width:54.566254px;}
._53{width:55.630618px;}
._28{width:56.747608px;}
._1e{width:57.820120px;}
._26{width:59.085523px;}
._46{width:60.203608px;}
._23{width:61.354198px;}
._f{width:63.263835px;}
._2e{width:65.213460px;}
._19{width:66.462819px;}
._39{width:67.910616px;}
._c{width:69.671657px;}
._18{width:71.578602px;}
._54{width:73.405450px;}
._2f{width:76.767211px;}
._5e{width:78.011116px;}
._38{width:79.436485px;}
._5d{width:80.684132px;}
._30{width:82.069491px;}
._32{width:84.161521px;}
._13{width:85.420782px;}
._4b{width:86.648861px;}
._20{width:88.696095px;}
._2b{width:89.761152px;}
._4a{width:91.248661px;}
._43{width:92.405734px;}
._4f{width:95.234414px;}
._3d{width:98.431911px;}
._22{width:101.266476px;}
._31{width:102.409765px;}
._4e{width:103.800920px;}
._42{width:105.269883px;}
._40{width:107.809625px;}
._3a{width:109.033334px;}
._44{width:113.185210px;}
._52{width:114.215518px;}
._51{width:115.226795px;}
._36{width:117.953042px;}
._50{width:120.107834px;}
._55{width:122.117652px;}
._49{width:123.412443px;}
._48{width:126.013783px;}
._56{width:129.559200px;}
._4c{width:130.814686px;}
._45{width:132.063519px;}
._57{width:136.461639px;}
._59{width:139.747947px;}
._41{width:196.671653px;}
._58{width:200.395374px;}
._5f{width:208.174035px;}
._3e{width:221.088472px;}
._5c{width:245.579714px;}
._5b{width:247.424531px;}
._4d{width:649.636937px;}
._5a{width:1126.071137px;}
._3b{width:1388.878639px;}
.fc4{color:rgb(42,109,109);}
.fc3{color:rgb(0,76,62);}
.fc1{color:transparent;}
.fc5{color:rgb(115,115,115);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs13{font-size:47.341850px;}
.fs12{font-size:47.988080px;}
.fsa{font-size:54.020354px;}
.fsf{font-size:54.155403px;}
.fs7{font-size:60.007609px;}
.fsb{font-size:65.994864px;}
.fsc{font-size:69.551204px;}
.fs11{font-size:71.982120px;}
.fse{font-size:72.162192px;}
.fs6{font-size:78.014394px;}
.fs5{font-size:84.001650px;}
.fs10{font-size:96.021179px;}
.fsd{font-size:108.040707px;}
.fs4{font-size:120.015219px;}
.fs9{font-size:132.034748px;}
.fs1{font-size:144.054276px;}
.fs0{font-size:150.041541px;}
.fs8{font-size:180.067845px;}
.fs3{font-size:240.075464px;}
.fs2{font-size:336.096651px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y2a9{bottom:9.006879px;}
.y2a3{bottom:9.172026px;}
.y2a5{bottom:9.189165px;}
.y2a7{bottom:9.206479px;}
.y16c{bottom:15.005693px;}
.y171{bottom:15.005729px;}
.y102{bottom:15.645591px;}
.ye7{bottom:15.755982px;}
.yec{bottom:16.881337px;}
.y71{bottom:16.881341px;}
.y69{bottom:16.881354px;}
.y86{bottom:16.881358px;}
.y80{bottom:16.881371px;}
.yfb{bottom:16.881402px;}
.y98{bottom:16.881406px;}
.y294{bottom:18.956351px;}
.y280{bottom:19.079431px;}
.y60{bottom:19.582600px;}
.y26e{bottom:20.139234px;}
.y64{bottom:20.257637px;}
.y169{bottom:22.408876px;}
.y16d{bottom:23.633913px;}
.y105{bottom:25.774408px;}
.y8e{bottom:25.884708px;}
.yee{bottom:25.884729px;}
.y75{bottom:25.884733px;}
.y6b{bottom:25.884746px;}
.y89{bottom:25.884751px;}
.yf9{bottom:25.884794px;}
.y93{bottom:25.884798px;}
.y27e{bottom:26.957399px;}
.y101{bottom:34.777800px;}
.ye9{bottom:34.888121px;}
.y6f{bottom:34.888126px;}
.y67{bottom:34.888139px;}
.y85{bottom:34.888143px;}
.y7f{bottom:34.888155px;}
.y97{bottom:34.888190px;}
.y16b{bottom:35.263326px;}
.y170{bottom:35.263362px;}
.y5f{bottom:35.338537px;}
.y234{bottom:35.697015px;}
.y293{bottom:35.837711px;}
.y26d{bottom:35.895171px;}
.y268{bottom:35.895175px;}
.y27c{bottom:35.960792px;}
.yeb{bottom:36.013545px;}
.yf4{bottom:36.013610px;}
.y208{bottom:38.489522px;}
.y220{bottom:42.625452px;}
.yfe{bottom:43.781192px;}
.y276{bottom:43.838760px;}
.y8d{bottom:43.891493px;}
.y79{bottom:43.891501px;}
.y74{bottom:43.891518px;}
.y6a{bottom:43.891531px;}
.y88{bottom:43.891535px;}
.y82{bottom:43.891578px;}
.y92{bottom:43.891583px;}
.y104{bottom:44.906616px;}
.yed{bottom:45.016938px;}
.yf8{bottom:45.017002px;}
.ye4{bottom:45.017007px;}
.y285{bottom:47.290081px;}
.y244{bottom:49.427184px;}
.y5e{bottom:51.094473px;}
.y4e{bottom:51.401088px;}
.y26c{bottom:51.651107px;}
.y267{bottom:51.651112px;}
.y264{bottom:51.651116px;}
.y292{bottom:52.719072px;}
.y21e{bottom:52.754268px;}
.y27b{bottom:52.842152px;}
.y6e{bottom:52.894910px;}
.y68{bottom:52.894923px;}
.y84{bottom:52.894927px;}
.y7e{bottom:52.894940px;}
.y96{bottom:52.894975px;}
.y100{bottom:53.910009px;}
.yf3{bottom:54.020395px;}
.ye6{bottom:54.020399px;}
.y2af{bottom:54.374139px;}
.y233{bottom:54.829224px;}
.yea{bottom:55.145754px;}
.y207{bottom:56.496307px;}
.y200{bottom:56.496313px;}
.y25f{bottom:57.621715px;}
.y262{bottom:59.529086px;}
.y28b{bottom:60.597040px;}
.y275{bottom:60.720120px;}
.y21c{bottom:61.757660px;}
.y8c{bottom:61.898277px;}
.y78{bottom:61.898285px;}
.y73{bottom:61.898302px;}
.y253{bottom:61.898307px;}
.y87{bottom:61.898320px;}
.y91{bottom:61.898367px;}
.yf0{bottom:63.023787px;}
.y284{bottom:63.046018px;}
.y23b{bottom:63.832616px;}
.y103{bottom:64.038825px;}
.yf7{bottom:64.149211px;}
.ye3{bottom:64.149215px;}
.y1fc{bottom:65.499693px;}
.y4d{bottom:67.157024px;}
.y26b{bottom:67.407044px;}
.y266{bottom:67.407048px;}
.y263{bottom:67.407052px;}
.y243{bottom:67.433969px;}
.y291{bottom:69.600432px;}
.y27a{bottom:69.723513px;}
.y1f3{bottom:70.095250px;}
.y6d{bottom:70.901695px;}
.y83{bottom:70.901712px;}
.y7d{bottom:70.901724px;}
.y95{bottom:70.901759px;}
.y271{bottom:70.923971px;}
.y22{bottom:71.082428px;}
.y213{bottom:71.886477px;}
.y2ae{bottom:72.380923px;}
.y132{bottom:72.618009px;}
.yff{bottom:73.042217px;}
.yf2{bottom:73.152603px;}
.ye5{bottom:73.152608px;}
.y2a6{bottom:73.575018px;}
.y232{bottom:73.961432px;}
.y206{bottom:74.503091px;}
.y202{bottom:74.503093px;}
.y1ff{bottom:74.503098px;}
.y25e{bottom:75.628499px;}
.y28a{bottom:77.478400px;}
.y1cb{bottom:77.569673px;}
.y274{bottom:77.601481px;}
.y297{bottom:78.678863px;}
.y283{bottom:78.801954px;}
.y8b{bottom:79.905062px;}
.y77{bottom:79.905070px;}
.y72{bottom:79.905087px;}
.y90{bottom:79.905152px;}
.y21b{bottom:80.889869px;}
.y252{bottom:81.030516px;}
.ycc{bottom:82.561720px;}
.y23a{bottom:82.964825px;}
.y26a{bottom:83.162980px;}
.y265{bottom:83.162985px;}
.yf6{bottom:83.281419px;}
.y1f9{bottom:83.506473px;}
.y1fb{bottom:83.506477px;}
.yc1{bottom:84.240236px;}
.y242{bottom:85.440753px;}
.y279{bottom:85.479449px;}
.y290{bottom:86.481793px;}
.y287{bottom:86.556859px;}
.y270{bottom:86.679907px;}
.y70{bottom:88.908479px;}
.y7c{bottom:88.908509px;}
.y94{bottom:88.908544px;}
.y212{bottom:89.893261px;}
.y2ad{bottom:90.387708px;}
.y131{bottom:90.624794px;}
.y231{bottom:91.968217px;}
.yf1{bottom:92.284812px;}
.y205{bottom:92.509876px;}
.y201{bottom:92.509878px;}
.y1fe{bottom:92.509882px;}
.y1f2{bottom:92.603731px;}
.y226{bottom:93.494622px;}
.y25d{bottom:93.635284px;}
.y289{bottom:94.359761px;}
.y296{bottom:94.434799px;}
.y273{bottom:94.482841px;}
.y282{bottom:94.557891px;}
.y1ca{bottom:95.576458px;}
.y269{bottom:98.918917px;}
.y251{bottom:99.037301px;}
.y21a{bottom:100.022078px;}
.y1fa{bottom:101.513262px;}
.y15f{bottom:101.591447px;}
.y2a4{bottom:101.655016px;}
.y239{bottom:102.097033px;}
.y28f{bottom:102.237729px;}
.y278{bottom:102.360810px;}
.yf5{bottom:102.413628px;}
.y241{bottom:103.447538px;}
.y22a{bottom:103.447554px;}
.y191{bottom:103.813320px;}
.yc0{bottom:106.748717px;}
.y7b{bottom:106.915293px;}
.yfd{bottom:108.096691px;}
.y2ac{bottom:108.394492px;}
.y130{bottom:108.631578px;}
.y211{bottom:109.025470px;}
.y295{bottom:110.190736px;}
.y281{bottom:110.313827px;}
.y204{bottom:110.516660px;}
.y1fd{bottom:110.516667px;}
.y230{bottom:111.100426px;}
.y245{bottom:111.206792px;}
.y288{bottom:111.241121px;}
.y272{bottom:111.364202px;}
.yfa{bottom:111.417020px;}
.y225{bottom:111.501406px;}
.y25c{bottom:111.642069px;}
.y1c9{bottom:113.583242px;}
.y1f1{bottom:115.112211px;}
.y250{bottom:118.169509px;}
.y28e{bottom:119.119090px;}
.y219{bottom:119.154286px;}
.y277{bottom:119.242170px;}
.y238{bottom:121.229242px;}
.y240{bottom:121.454322px;}
.y229{bottom:121.454338px;}
.y15e{bottom:124.099928px;}
.y190{bottom:126.321801px;}
.y2ab{bottom:126.401277px;}
.y210{bottom:128.157678px;}
.y27d{bottom:128.245562px;}
.y203{bottom:128.523445px;}
.ybf{bottom:129.257198px;}
.y20b{bottom:129.508182px;}
.y224{bottom:129.508191px;}
.y25b{bottom:129.648853px;}
.y2a2{bottom:129.735015px;}
.y22f{bottom:130.232634px;}
.y28d{bottom:136.000450px;}
.y27f{bottom:136.123531px;}
.y218{bottom:137.161071px;}
.y24f{bottom:137.301718px;}
.y1f0{bottom:137.620692px;}
.y248{bottom:138.652251px;}
.y237{bottom:139.236026px;}
.y23f{bottom:139.461107px;}
.y228{bottom:139.461123px;}
.y1ab{bottom:140.973733px;}
.y2aa{bottom:144.408061px;}
.y12f{bottom:144.645147px;}
.y20{bottom:145.675169px;}
.y15d{bottom:146.608408px;}
.y20f{bottom:147.289887px;}
.y20a{bottom:147.514967px;}
.y223{bottom:147.514976px;}
.y25a{bottom:147.655638px;}
.y4a{bottom:148.581298px;}
.y18f{bottom:148.830282px;}
.y22e{bottom:149.364843px;}
.ybe{bottom:151.765678px;}
.y28c{bottom:152.881811px;}
.y217{bottom:156.293279px;}
.y24e{bottom:156.433926px;}
.y247{bottom:156.659036px;}
.y23e{bottom:157.467892px;}
.y236{bottom:158.368235px;}
.y1ef{bottom:160.129173px;}
.y2a8{bottom:161.055014px;}
.y4{bottom:161.640564px;}
.y12e{bottom:162.651932px;}
.y222{bottom:165.521760px;}
.y259{bottom:165.662422px;}
.y20e{bottom:166.422096px;}
.y22d{bottom:168.497051px;}
.y15a{bottom:169.116889px;}
.y18e{bottom:171.338762px;}
.ybd{bottom:174.274159px;}
.y246{bottom:174.665820px;}
.y216{bottom:175.425488px;}
.y23d{bottom:175.474676px;}
.y24d{bottom:175.566135px;}
.y235{bottom:177.500443px;}
.y1ad{bottom:180.624652px;}
.y21{bottom:182.439050px;}
.y1ee{bottom:182.637653px;}
.y221{bottom:183.528545px;}
.y258{bottom:183.669207px;}
.y20d{bottom:184.428880px;}
.y22c{bottom:186.503836px;}
.y1f{bottom:187.315858px;}
.y49{bottom:189.096564px;}
.y159{bottom:191.625370px;}
.y23c{bottom:193.481461px;}
.y24c{bottom:193.572919px;}
.y18d{bottom:193.847243px;}
.y215{bottom:194.557696px;}
.ybc{bottom:196.782640px;}
.y12d{bottom:198.665501px;}
.yfc{bottom:201.396555px;}
.y257{bottom:201.675991px;}
.y20c{bottom:203.561089px;}
.y1ed{bottom:205.146134px;}
.y22b{bottom:205.636044px;}
.y48{bottom:209.354196px;}
.y24b{bottom:212.705128px;}
.y3{bottom:213.410069px;}
.y214{bottom:213.689905px;}
.y158{bottom:214.133850px;}
.y18c{bottom:216.355724px;}
.y12c{bottom:216.672285px;}
.ybb{bottom:219.291120px;}
.y256{bottom:219.682776px;}
.y21d{bottom:222.693297px;}
.y1ec{bottom:227.654615px;}
.y47{bottom:229.611829px;}
.y21f{bottom:231.696689px;}
.y24a{bottom:231.837336px;}
.y157{bottom:236.642331px;}
.y255{bottom:237.689560px;}
.y18b{bottom:238.864204px;}
.y1e{bottom:240.851530px;}
.yba{bottom:241.799601px;}
.y165{bottom:248.888985px;}
.y46{bottom:249.869461px;}
.y1eb{bottom:250.163095px;}
.y249{bottom:250.969545px;}
.y12b{bottom:252.685854px;}
.y254{bottom:255.696345px;}
.y156{bottom:259.150812px;}
.y18a{bottom:261.372685px;}
.yb9{bottom:264.308082px;}
.y2{bottom:265.179575px;}
.y45{bottom:270.127094px;}
.y12a{bottom:270.692639px;}
.y1d{bottom:272.363403px;}
.y1ea{bottom:272.671576px;}
.yef{bottom:276.799927px;}
.y155{bottom:281.659292px;}
.y189{bottom:283.881166px;}
.y167{bottom:286.034591px;}
.yb8{bottom:286.816562px;}
.y44{bottom:290.384727px;}
.y1e9{bottom:295.180057px;}
.y1c{bottom:303.875276px;}
.y154{bottom:304.167773px;}
.y188{bottom:306.389646px;}
.y129{bottom:306.706208px;}
.yb7{bottom:309.325043px;}
.y43{bottom:310.642359px;}
.y1e8{bottom:317.688537px;}
.y128{bottom:324.712992px;}
.y153{bottom:326.676254px;}
.y42{bottom:330.899992px;}
.yb6{bottom:331.833524px;}
.y1b{bottom:335.387149px;}
.y1e7{bottom:340.197018px;}
.y127{bottom:342.719777px;}
.y152{bottom:349.184734px;}
.y41{bottom:351.157624px;}
.yb5{bottom:354.342004px;}
.y16f{bottom:357.960145px;}
.y1e6{bottom:362.705499px;}
.y1a{bottom:366.899022px;}
.y40{bottom:371.415257px;}
.y151{bottom:371.693215px;}
.y9b{bottom:373.335917px;}
.yb4{bottom:376.850485px;}
.y1ac{bottom:380.720635px;}
.y126{bottom:382.069804px;}
.y7{bottom:383.808778px;}
.y1e5{bottom:385.213979px;}
.y3f{bottom:391.672890px;}
.y9a{bottom:393.593549px;}
.y150{bottom:394.201696px;}
.y19{bottom:398.410895px;}
.yb3{bottom:399.358966px;}
.y1e4{bottom:407.722460px;}
.ye8{bottom:408.474594px;}
.y3e{bottom:411.930522px;}
.y99{bottom:413.851182px;}
.y125{bottom:414.707101px;}
.y16e{bottom:416.482211px;}
.y14f{bottom:416.710176px;}
.yb2{bottom:421.867446px;}
.y18{bottom:429.922768px;}
.y1e3{bottom:430.230941px;}
.y227{bottom:431.953685px;}
.y3d{bottom:432.188155px;}
.y6{bottom:433.327436px;}
.y14e{bottom:439.218657px;}
.y3c{bottom:452.445787px;}
.y1e2{bottom:452.739421px;}
.y17{bottom:461.434641px;}
.y15c{bottom:461.727138px;}
.yb1{bottom:466.884408px;}
.y3b{bottom:472.703420px;}
.y16a{bottom:475.004276px;}
.y1e1{bottom:475.247902px;}
.y8f{bottom:477.875996px;}
.y8a{bottom:477.876086px;}
.y124{bottom:478.180977px;}
.y5{bottom:482.846093px;}
.ye2{bottom:483.877981px;}
.y14d{bottom:484.235618px;}
.yb0{bottom:489.392888px;}
.y16{bottom:492.946514px;}
.y3a{bottom:492.961052px;}
.y1e0{bottom:497.756383px;}
.y123{bottom:500.689457px;}
.y14c{bottom:506.744099px;}
.y2b1{bottom:510.110734px;}
.yaf{bottom:511.901369px;}
.y39{bottom:513.218685px;}
.y1c8{bottom:515.168325px;}
.y1df{bottom:520.264863px;}
.y122{bottom:523.197938px;}
.y15{bottom:524.458386px;}
.y14b{bottom:529.252580px;}
.y38{bottom:533.476318px;}
.y168{bottom:533.528361px;}
.yae{bottom:534.409849px;}
.y1c6{bottom:537.676806px;}
.y1f4{bottom:542.773344px;}
.y121{bottom:545.706419px;}
.y14a{bottom:551.761060px;}
.y37{bottom:553.733950px;}
.y14{bottom:555.970259px;}
.yad{bottom:556.918330px;}
.y1c5{bottom:560.185287px;}
.y1de{bottom:565.281825px;}
.y120{bottom:568.214899px;}
.y2b0{bottom:571.325983px;}
.y149{bottom:574.269541px;}
.ye1{bottom:577.398503px;}
.yac{bottom:579.426811px;}
.y1c4{bottom:582.693767px;}
.y1dd{bottom:587.790305px;}
.y81{bottom:589.293014px;}
.y11f{bottom:590.723380px;}
.y36{bottom:594.249215px;}
.y148{bottom:596.778022px;}
.y192{bottom:598.134762px;}
.y299{bottom:600.180229px;}
.yab{bottom:601.935291px;}
.y12{bottom:603.878736px;}
.y1c3{bottom:605.202248px;}
.y1dc{bottom:610.298786px;}
.y11e{bottom:613.231861px;}
.y35{bottom:614.506848px;}
.y8{bottom:614.895763px;}
.y298{bottom:618.187013px;}
.y147{bottom:619.286502px;}
.yaa{bottom:624.443772px;}
.y1c2{bottom:627.710729px;}
.y187{bottom:631.891841px;}
.y1db{bottom:632.807267px;}
.y34{bottom:634.764481px;}
.y11d{bottom:635.740341px;}
.y59{bottom:637.225089px;}
.y13{bottom:640.642581px;}
.y146{bottom:641.794983px;}
.y286{bottom:643.248627px;}
.y1aa{bottom:643.618307px;}
.y11{bottom:645.519426px;}
.ya9{bottom:646.952253px;}
.y106{bottom:649.328373px;}
.y1c1{bottom:650.219209px;}
.y133{bottom:653.396481px;}
.y186{bottom:654.400321px;}
.y33{bottom:655.022113px;}
.y1da{bottom:655.315747px;}
.y11c{bottom:658.248822px;}
.y58{bottom:659.733570px;}
.y145{bottom:664.303464px;}
.y1a9{bottom:666.126788px;}
.ya8{bottom:669.460733px;}
.y1c7{bottom:672.727690px;}
.y32{bottom:675.279746px;}
.y185{bottom:676.908802px;}
.y1d9{bottom:677.824228px;}
.y11b{bottom:680.757303px;}
.y209{bottom:681.495022px;}
.y57{bottom:682.242051px;}
.y7a{bottom:682.703207px;}
.y76{bottom:682.703254px;}
.y144{bottom:686.811944px;}
.y1a8{bottom:688.635269px;}
.ya7{bottom:691.969214px;}
.y1c0{bottom:695.236171px;}
.y31{bottom:695.537378px;}
.y184{bottom:699.417283px;}
.y1d8{bottom:700.332709px;}
.ydf{bottom:702.603120px;}
.y11a{bottom:703.265783px;}
.y56{bottom:704.750531px;}
.y15b{bottom:709.320425px;}
.y1a7{bottom:711.143749px;}
.y166{bottom:713.025022px;}
.ya6{bottom:714.477695px;}
.y30{bottom:715.795011px;}
.y1bf{bottom:717.744651px;}
.y183{bottom:721.925763px;}
.y1d7{bottom:722.841189px;}
.yde{bottom:725.111601px;}
.y119{bottom:725.774264px;}
.y55{bottom:727.259012px;}
.y143{bottom:731.828906px;}
.y1a6{bottom:733.652230px;}
.y2f{bottom:736.052644px;}
.yf{bottom:736.649601px;}
.ya5{bottom:736.986175px;}
.y1be{bottom:740.253132px;}
.y182{bottom:744.434244px;}
.y1d6{bottom:745.349670px;}
.ydd{bottom:747.620082px;}
.y118{bottom:748.282745px;}
.y54{bottom:749.767493px;}
.y142{bottom:754.337386px;}
.y1a5{bottom:756.160711px;}
.y2e{bottom:756.310276px;}
.ya4{bottom:759.494656px;}
.y1bd{bottom:762.761613px;}
.y181{bottom:766.942725px;}
.y1d5{bottom:767.858151px;}
.ydc{bottom:770.128562px;}
.y117{bottom:770.791225px;}
.y53{bottom:772.275973px;}
.y2d{bottom:776.567909px;}
.y141{bottom:776.845867px;}
.ye{bottom:778.290291px;}
.y1a4{bottom:778.669191px;}
.ya3{bottom:782.003137px;}
.y1bc{bottom:785.270093px;}
.y180{bottom:789.451205px;}
.y1d4{bottom:790.366631px;}
.ydb{bottom:792.637043px;}
.y116{bottom:793.299706px;}
.y52{bottom:794.784454px;}
.y2c{bottom:796.825541px;}
.y140{bottom:799.354348px;}
.y1a3{bottom:801.177672px;}
.y1bb{bottom:807.778574px;}
.y17f{bottom:811.959686px;}
.y6c{bottom:812.126982px;}
.y1d3{bottom:812.875112px;}
.y10{bottom:815.054182px;}
.yda{bottom:815.145524px;}
.y115{bottom:815.808187px;}
.y2b{bottom:817.083174px;}
.y51{bottom:817.292935px;}
.yd{bottom:819.930980px;}
.y2a1{bottom:820.871076px;}
.y26f{bottom:820.899829px;}
.y13f{bottom:821.862828px;}
.y1a2{bottom:823.686153px;}
.y1ba{bottom:830.287055px;}
.y17e{bottom:834.468167px;}
.y1d2{bottom:835.383593px;}
.yd9{bottom:837.654004px;}
.y50{bottom:839.801415px;}
.y13e{bottom:844.371309px;}
.y1a1{bottom:846.194633px;}
.y2a0{bottom:850.132101px;}
.y1b9{bottom:852.795535px;}
.ya2{bottom:853.401014px;}
.y17d{bottom:856.976647px;}
.y2a{bottom:857.598439px;}
.y1d1{bottom:857.892073px;}
.yd8{bottom:860.162485px;}
.y114{bottom:860.825148px;}
.y4f{bottom:862.309896px;}
.y13d{bottom:866.879790px;}
.y1a0{bottom:868.703114px;}
.y1b8{bottom:875.304016px;}
.y29{bottom:877.856072px;}
.y29f{bottom:879.393126px;}
.y17c{bottom:879.485128px;}
.y1d0{bottom:880.400554px;}
.ya1{bottom:882.662039px;}
.yd7{bottom:882.670966px;}
.y113{bottom:883.333629px;}
.y13c{bottom:889.388270px;}
.y19f{bottom:891.211595px;}
.y1b7{bottom:897.812497px;}
.y28{bottom:898.113704px;}
.y17b{bottom:901.993609px;}
.y1cf{bottom:902.909035px;}
.yd6{bottom:905.179446px;}
.yc{bottom:905.456785px;}
.y112{bottom:905.842109px;}
.yb{bottom:906.334447px;}
.y29e{bottom:908.654150px;}
.y13b{bottom:911.896751px;}
.ya0{bottom:911.923063px;}
.y19e{bottom:913.720075px;}
.y27{bottom:918.371337px;}
.y1b6{bottom:920.320977px;}
.y66{bottom:923.543968px;}
.y17a{bottom:924.502089px;}
.y1ce{bottom:925.417515px;}
.yd5{bottom:927.687927px;}
.y111{bottom:928.350590px;}
.y13a{bottom:934.405232px;}
.y19d{bottom:936.228556px;}
.y29d{bottom:937.915175px;}
.y26{bottom:938.628970px;}
.y5d{bottom:941.721109px;}
.y1b5{bottom:942.829458px;}
.ycb{bottom:946.994410px;}
.y179{bottom:947.010570px;}
.y1cd{bottom:947.925996px;}
.yd4{bottom:950.196408px;}
.y110{bottom:950.859071px;}
.y139{bottom:956.913712px;}
.y19c{bottom:958.737037px;}
.y25{bottom:958.886602px;}
.y1f8{bottom:965.050116px;}
.y1b4{bottom:965.337939px;}
.y29c{bottom:967.176200px;}
.yca{bottom:969.502890px;}
.y178{bottom:969.519051px;}
.y1cc{bottom:970.434477px;}
.yd3{bottom:972.704888px;}
.y10f{bottom:973.367551px;}
.y5c{bottom:976.609254px;}
.y24{bottom:979.144235px;}
.y138{bottom:979.422193px;}
.y19b{bottom:981.245517px;}
.y261{bottom:981.784625px;}
.y1b3{bottom:987.846419px;}
.yc9{bottom:992.011371px;}
.y177{bottom:992.027531px;}
.y9f{bottom:993.559025px;}
.yd2{bottom:995.213369px;}
.y10e{bottom:995.876032px;}
.y29b{bottom:996.437225px;}
.y63{bottom:998.947376px;}
.y65{bottom:998.947398px;}
.y23{bottom:999.401867px;}
.y137{bottom:1001.930674px;}
.y19a{bottom:1003.753998px;}
.y1b2{bottom:1010.354900px;}
.y5b{bottom:1011.497399px;}
.yc8{bottom:1014.519851px;}
.y176{bottom:1014.536012px;}
.yd1{bottom:1017.721850px;}
.y10d{bottom:1018.384513px;}
.ya{bottom:1025.292310px;}
.y29a{bottom:1025.698250px;}
.y1f7{bottom:1026.224419px;}
.y199{bottom:1026.262479px;}
.y9e{bottom:1028.447170px;}
.y1b1{bottom:1032.863381px;}
.yc7{bottom:1037.028332px;}
.yd0{bottom:1040.230330px;}
.y10c{bottom:1040.892993px;}
.y198{bottom:1048.770959px;}
.y4c{bottom:1054.155365px;}
.y1b0{bottom:1055.371861px;}
.yc6{bottom:1059.536813px;}
.y9c{bottom:1059.683971px;}
.y136{bottom:1060.817561px;}
.y1f6{bottom:1061.112564px;}
.ycf{bottom:1062.738811px;}
.y10b{bottom:1063.401474px;}
.y175{bottom:1067.265931px;}
.y197{bottom:1071.279440px;}
.yc5{bottom:1082.045293px;}
.y10a{bottom:1085.909955px;}
.y135{bottom:1090.078586px;}
.y196{bottom:1093.787921px;}
.y174{bottom:1096.526956px;}
.y164{bottom:1096.582510px;}
.yc4{bottom:1104.553774px;}
.y9{bottom:1107.142433px;}
.y109{bottom:1108.418435px;}
.y5a{bottom:1109.434268px;}
.yce{bottom:1111.101476px;}
.y1af{bottom:1113.728922px;}
.y195{bottom:1116.296401px;}
.y163{bottom:1119.090991px;}
.y134{bottom:1119.339611px;}
.y9d{bottom:1119.845417px;}
.y173{bottom:1125.787981px;}
.yc3{bottom:1127.062255px;}
.y4b{bottom:1129.541653px;}
.y108{bottom:1130.926916px;}
.y1f5{bottom:1135.434522px;}
.y194{bottom:1138.804882px;}
.ycd{bottom:1140.362501px;}
.y162{bottom:1141.599472px;}
.y1ae{bottom:1142.989947px;}
.y260{bottom:1150.682460px;}
.y2b2{bottom:1157.993888px;}
.y61{bottom:1209.990821px;}
.y62{bottom:1209.990826px;}
.y160{bottom:1216.759261px;}
.y161{bottom:1217.584576px;}
.y172{bottom:1218.371266px;}
.yc2{bottom:1218.930783px;}
.ye0{bottom:1218.933980px;}
.y107{bottom:1219.196583px;}
.y193{bottom:1219.303826px;}
.h43{height:21.959999px;}
.h41{height:22.319999px;}
.h40{height:36.459693px;}
.h3d{height:36.717442px;}
.h42{height:38.488924px;}
.h38{height:41.332956px;}
.h36{height:43.511377px;}
.h1b{height:43.918547px;}
.h2a{height:44.028343px;}
.h1a{height:44.728853px;}
.h31{height:45.485768px;}
.h34{height:45.914025px;}
.h18{height:46.142379px;}
.h16{height:46.142400px;}
.hf{height:46.889667px;}
.h12{height:47.267809px;}
.h15{height:48.006087px;}
.h14{height:48.786186px;}
.h26{height:49.686300px;}
.h2f{height:50.349543px;}
.hc{height:52.086605px;}
.h33{height:53.545559px;}
.h25{height:53.653825px;}
.h22{height:55.691916px;}
.h13{height:55.996660px;}
.hb{height:56.491868px;}
.h17{height:56.545129px;}
.h30{height:56.568054px;}
.h27{height:57.396619px;}
.h10{height:57.745506px;}
.h32{height:58.521464px;}
.h35{height:58.522058px;}
.h28{height:58.667862px;}
.h44{height:63.425702px;}
.ha{height:68.293341px;}
.h19{height:74.277991px;}
.h2b{height:75.403386px;}
.h2e{height:78.065218px;}
.h24{height:87.837095px;}
.h20{height:92.284758px;}
.h1f{height:92.284801px;}
.h2d{height:93.299850px;}
.h29{height:93.410240px;}
.h8{height:97.572373px;}
.h4{height:101.702319px;}
.h23{height:107.344250px;}
.h21{height:110.291478px;}
.h1d{height:110.291547px;}
.h1c{height:110.291568px;}
.h9{height:113.731488px;}
.he{height:114.606161px;}
.h11{height:115.530404px;}
.h6{height:120.033233px;}
.h3{height:121.983773px;}
.h3c{height:123.603205px;}
.h1e{height:128.298335px;}
.h2c{height:131.674653px;}
.hd{height:136.491427px;}
.h3e{height:160.882859px;}
.h37{height:173.315308px;}
.h3f{height:177.641139px;}
.h7{height:195.181352px;}
.h5{height:239.300816px;}
.h3a{height:249.527582px;}
.h39{height:283.466195px;}
.h3b{height:320.745835px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w14{width:72.359997px;}
.w7{width:85.286045px;}
.w13{width:105.119996px;}
.wf{width:105.789855px;}
.wd{width:107.513146px;}
.we{width:107.513171px;}
.w10{width:107.513214px;}
.wb{width:110.115697px;}
.w9{width:110.115708px;}
.wa{width:110.115719px;}
.w12{width:110.879995px;}
.wc{width:114.599836px;}
.w11{width:115.918678px;}
.w8{width:119.083927px;}
.w2{width:140.678015px;}
.w6{width:210.014638px;}
.w5{width:210.014685px;}
.w4{width:268.976372px;}
.w3{width:302.739046px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:5.627127px;}
.x1b{left:9.003392px;}
.xf{left:11.324587px;}
.x12{left:13.434757px;}
.x13{left:18.499165px;}
.x15{left:21.154462px;}
.x10{left:22.174378px;}
.x16{left:25.409972px;}
.xe{left:32.742813px;}
.x17{left:33.780313px;}
.x14{left:42.326502px;}
.x11{left:43.891544px;}
.x29{left:50.960607px;}
.x2a{left:55.251286px;}
.x34{left:64.708043px;}
.x3a{left:67.643133px;}
.x21{left:88.206732px;}
.x1{left:89.324996px;}
.xa{left:90.450417px;}
.x19{left:92.676726px;}
.x23{left:97.147779px;}
.x3{left:99.137287px;}
.x2b{left:102.056356px;}
.x2d{left:105.815905px;}
.x22{left:110.661898px;}
.x2c{left:117.372673px;}
.x1f{left:130.294683px;}
.x9{left:140.252203px;}
.x1e{left:144.285388px;}
.x3b{left:163.845349px;}
.x3e{left:167.151282px;}
.x18{left:168.628266px;}
.x1a{left:173.879950px;}
.x3f{left:176.893234px;}
.x3d{left:179.443023px;}
.x35{left:183.640510px;}
.x3c{left:195.814425px;}
.x24{left:208.425005px;}
.x2{left:227.691883px;}
.xc{left:231.926761px;}
.x6{left:278.459058px;}
.x4{left:279.461389px;}
.x2f{left:284.942382px;}
.x5{left:299.103555px;}
.x2e{left:305.513401px;}
.x20{left:310.665733px;}
.x25{left:327.524973px;}
.x1c{left:383.894941px;}
.x30{left:395.059556px;}
.x40{left:398.355582px;}
.x36{left:405.775311px;}
.x26{left:446.624981px;}
.x8{left:467.146298px;}
.x31{left:505.176747px;}
.x37{left:513.305266px;}
.xd{left:535.291192px;}
.x41{left:556.919977px;}
.x27{left:565.724990px;}
.x1d{left:593.909975px;}
.x32{left:615.293866px;}
.x38{left:620.835238px;}
.x28{left:684.824947px;}
.x33{left:725.411058px;}
.x39{left:727.177326px;}
.x7{left:803.924967px;}
@media print{
.v2{vertical-align:-40.815261pt;}
.v6{vertical-align:-8.981102pt;}
.v5{vertical-align:-6.589056pt;}
.v4{vertical-align:-5.459845pt;}
.v3{vertical-align:-2.934460pt;}
.v1{vertical-align:-1.989393pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1317.563955pt;}
.ls2{letter-spacing:1366.524581pt;}
.ws0{word-spacing:-228.545723pt;}
.ws8{word-spacing:-96.996546pt;}
.ws5{word-spacing:-80.822377pt;}
.ws3{word-spacing:-53.350103pt;}
.wsa{word-spacing:-37.279446pt;}
.ws2{word-spacing:-37.076932pt;}
.ws15{word-spacing:-32.324099pt;}
.ws6{word-spacing:-29.341055pt;}
.ws4{word-spacing:-26.670049pt;}
.ws18{word-spacing:-18.667033pt;}
.wse{word-spacing:-16.036043pt;}
.ws7{word-spacing:-14.665525pt;}
.ws12{word-spacing:-13.855924pt;}
.ws9{word-spacing:-13.335024pt;}
.ws16{word-spacing:-12.473450pt;}
.wsf{word-spacing:-12.034534pt;}
.wsb{word-spacing:-12.004523pt;}
.ws17{word-spacing:-11.080581pt;}
.ws19{word-spacing:-10.520411pt;}
.ws10{word-spacing:-0.069346pt;}
.ws13{word-spacing:-0.053340pt;}
.ws1{word-spacing:0.000000pt;}
.ws11{word-spacing:675.821588pt;}
.wsd{word-spacing:680.242674pt;}
.wsc{word-spacing:694.810663pt;}
.ws14{word-spacing:1191.801213pt;}
._33{margin-left:-0.889407pt;}
._6{width:1.361162pt;}
._7{width:2.729014pt;}
._37{width:3.623356pt;}
._3{width:4.613178pt;}
._9{width:6.174093pt;}
._0{width:7.490922pt;}
._5{width:9.010138pt;}
._1b{width:10.392940pt;}
._1d{width:11.424781pt;}
._29{width:13.115493pt;}
._12{width:14.256118pt;}
._e{width:15.555166pt;}
._10{width:16.633094pt;}
._2{width:17.694108pt;}
._1{width:19.277419pt;}
._11{width:20.906247pt;}
._15{width:21.801665pt;}
._3f{width:22.750188pt;}
._4{width:23.663918pt;}
._b{width:25.222843pt;}
._d{width:26.306593pt;}
._1c{width:27.519508pt;}
._16{width:28.660722pt;}
._8{width:29.862574pt;}
._a{width:30.981055pt;}
._34{width:32.020260pt;}
._1a{width:33.186550pt;}
._2d{width:34.168403pt;}
._24{width:35.781350pt;}
._25{width:36.904373pt;}
._2c{width:38.158149pt;}
._27{width:39.130859pt;}
._21{width:40.611317pt;}
._14{width:41.555025pt;}
._35{width:42.753028pt;}
._3c{width:44.508188pt;}
._17{width:45.642210pt;}
._47{width:46.578177pt;}
._1f{width:47.613641pt;}
._2a{width:48.503337pt;}
._53{width:49.449438pt;}
._28{width:50.442318pt;}
._1e{width:51.395662pt;}
._26{width:52.520465pt;}
._46{width:53.514318pt;}
._23{width:54.537065pt;}
._f{width:56.234520pt;}
._2e{width:57.967520pt;}
._19{width:59.078061pt;}
._39{width:60.364992pt;}
._c{width:61.930362pt;}
._18{width:63.625424pt;}
._54{width:65.249289pt;}
._2f{width:68.237521pt;}
._5e{width:69.343214pt;}
._38{width:70.610209pt;}
._5d{width:71.719228pt;}
._30{width:72.950659pt;}
._32{width:74.810241pt;}
._13{width:75.929584pt;}
._4b{width:77.021210pt;}
._20{width:78.840973pt;}
._2b{width:79.787691pt;}
._4a{width:81.109921pt;}
._43{width:82.138431pt;}
._4f{width:84.652812pt;}
._3d{width:87.495032pt;}
._22{width:90.014645pt;}
._31{width:91.030902pt;}
._4e{width:92.267484pt;}
._42{width:93.573230pt;}
._40{width:95.830778pt;}
._3a{width:96.918519pt;}
._44{width:100.609076pt;}
._52{width:101.524905pt;}
._51{width:102.423818pt;}
._36{width:104.847148pt;}
._50{width:106.762519pt;}
._55{width:108.549024pt;}
._49{width:109.699949pt;}
._48{width:112.012252pt;}
._56{width:115.163733pt;}
._4c{width:116.279721pt;}
._45{width:117.389795pt;}
._57{width:121.299235pt;}
._59{width:124.220397pt;}
._41{width:174.819247pt;}
._58{width:178.129221pt;}
._5f{width:185.043587pt;}
._3e{width:196.523086pt;}
._5c{width:218.293079pt;}
._5b{width:219.932917pt;}
._4d{width:577.455055pt;}
._5a{width:1000.952121pt;}
._3b{width:1234.558790pt;}
.fs13{font-size:42.081644pt;}
.fs12{font-size:42.656071pt;}
.fsa{font-size:48.018092pt;}
.fsf{font-size:48.138136pt;}
.fs7{font-size:53.340097pt;}
.fsb{font-size:58.662102pt;}
.fsc{font-size:61.823293pt;}
.fs11{font-size:63.984107pt;}
.fse{font-size:64.144171pt;}
.fs6{font-size:69.346128pt;}
.fs5{font-size:74.668133pt;}
.fs10{font-size:85.352159pt;}
.fsd{font-size:96.036184pt;}
.fs4{font-size:106.680195pt;}
.fs9{font-size:117.364220pt;}
.fs1{font-size:128.048246pt;}
.fs0{font-size:133.370259pt;}
.fs8{font-size:160.060307pt;}
.fs3{font-size:213.400412pt;}
.fs2{font-size:298.752579pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y2a9{bottom:8.006115pt;}
.y2a3{bottom:8.152912pt;}
.y2a5{bottom:8.168146pt;}
.y2a7{bottom:8.183537pt;}
.y16c{bottom:13.338394pt;}
.y171{bottom:13.338426pt;}
.y102{bottom:13.907192pt;}
.ye7{bottom:14.005317pt;}
.yec{bottom:15.005633pt;}
.y71{bottom:15.005636pt;}
.y69{bottom:15.005648pt;}
.y86{bottom:15.005652pt;}
.y80{bottom:15.005663pt;}
.yfb{bottom:15.005690pt;}
.y98{bottom:15.005694pt;}
.y294{bottom:16.850090pt;}
.y280{bottom:16.959494pt;}
.y60{bottom:17.406756pt;}
.y26e{bottom:17.901542pt;}
.y64{bottom:18.006788pt;}
.y169{bottom:19.919000pt;}
.y16d{bottom:21.007923pt;}
.y105{bottom:22.910585pt;}
.y8e{bottom:23.008629pt;}
.yee{bottom:23.008648pt;}
.y75{bottom:23.008652pt;}
.y6b{bottom:23.008663pt;}
.y89{bottom:23.008667pt;}
.yf9{bottom:23.008706pt;}
.y93{bottom:23.008709pt;}
.y27e{bottom:23.962133pt;}
.y101{bottom:30.913600pt;}
.ye9{bottom:31.011663pt;}
.y6f{bottom:31.011667pt;}
.y67{bottom:31.011679pt;}
.y85{bottom:31.011683pt;}
.y7f{bottom:31.011693pt;}
.y97{bottom:31.011725pt;}
.y16b{bottom:31.345179pt;}
.y170{bottom:31.345211pt;}
.y5f{bottom:31.412033pt;}
.y234{bottom:31.730680pt;}
.y293{bottom:31.855743pt;}
.y26d{bottom:31.906819pt;}
.y268{bottom:31.906822pt;}
.y27c{bottom:31.965148pt;}
.yeb{bottom:32.012040pt;}
.yf4{bottom:32.012098pt;}
.y208{bottom:34.212909pt;}
.y220{bottom:37.889291pt;}
.yfe{bottom:38.916615pt;}
.y276{bottom:38.967787pt;}
.y8d{bottom:39.014660pt;}
.y79{bottom:39.014667pt;}
.y74{bottom:39.014683pt;}
.y6a{bottom:39.014694pt;}
.y88{bottom:39.014698pt;}
.y82{bottom:39.014736pt;}
.y92{bottom:39.014740pt;}
.y104{bottom:39.916992pt;}
.yed{bottom:40.015056pt;}
.yf8{bottom:40.015113pt;}
.ye4{bottom:40.015117pt;}
.y285{bottom:42.035628pt;}
.y244{bottom:43.935275pt;}
.y5e{bottom:45.417309pt;}
.y4e{bottom:45.689856pt;}
.y26c{bottom:45.912095pt;}
.y267{bottom:45.912099pt;}
.y264{bottom:45.912103pt;}
.y292{bottom:46.861397pt;}
.y21e{bottom:46.892683pt;}
.y27b{bottom:46.970802pt;}
.y6e{bottom:47.017698pt;}
.y68{bottom:47.017709pt;}
.y84{bottom:47.017713pt;}
.y7e{bottom:47.017724pt;}
.y96{bottom:47.017755pt;}
.y100{bottom:47.920008pt;}
.yf3{bottom:48.018129pt;}
.ye6{bottom:48.018132pt;}
.y2af{bottom:48.332568pt;}
.y233{bottom:48.737088pt;}
.yea{bottom:49.018448pt;}
.y207{bottom:50.218939pt;}
.y200{bottom:50.218945pt;}
.y25f{bottom:51.219302pt;}
.y262{bottom:52.914743pt;}
.y28b{bottom:53.864036pt;}
.y275{bottom:53.973440pt;}
.y21c{bottom:54.895698pt;}
.y8c{bottom:55.020691pt;}
.y78{bottom:55.020698pt;}
.y73{bottom:55.020713pt;}
.y253{bottom:55.020718pt;}
.y87{bottom:55.020729pt;}
.y91{bottom:55.020771pt;}
.yf0{bottom:56.021144pt;}
.y284{bottom:56.040905pt;}
.y23b{bottom:56.740103pt;}
.y103{bottom:56.923400pt;}
.yf7{bottom:57.021521pt;}
.ye3{bottom:57.021525pt;}
.y1fc{bottom:58.221949pt;}
.y4d{bottom:59.695133pt;}
.y26b{bottom:59.917372pt;}
.y266{bottom:59.917376pt;}
.y263{bottom:59.917380pt;}
.y243{bottom:59.941306pt;}
.y291{bottom:61.867051pt;}
.y27a{bottom:61.976456pt;}
.y1f3{bottom:62.306889pt;}
.y6d{bottom:63.023729pt;}
.y83{bottom:63.023744pt;}
.y7d{bottom:63.023755pt;}
.y95{bottom:63.023786pt;}
.y271{bottom:63.043530pt;}
.y22{bottom:63.184380pt;}
.y213{bottom:63.899090pt;}
.y2ae{bottom:64.338598pt;}
.y132{bottom:64.549341pt;}
.yff{bottom:64.926415pt;}
.yf2{bottom:65.024536pt;}
.ye5{bottom:65.024540pt;}
.y2a6{bottom:65.400016pt;}
.y232{bottom:65.743496pt;}
.y206{bottom:66.224970pt;}
.y202{bottom:66.224972pt;}
.y1ff{bottom:66.224976pt;}
.y25e{bottom:67.225333pt;}
.y28a{bottom:68.869689pt;}
.y1cb{bottom:68.950821pt;}
.y274{bottom:68.979094pt;}
.y297{bottom:69.936767pt;}
.y283{bottom:70.046181pt;}
.y8b{bottom:71.026722pt;}
.y77{bottom:71.026729pt;}
.y72{bottom:71.026744pt;}
.y90{bottom:71.026802pt;}
.y21b{bottom:71.902106pt;}
.y252{bottom:72.027125pt;}
.ycc{bottom:73.388195pt;}
.y23a{bottom:73.746511pt;}
.y26a{bottom:73.922649pt;}
.y265{bottom:73.922653pt;}
.yf6{bottom:74.027928pt;}
.y1f9{bottom:74.227976pt;}
.y1fb{bottom:74.227980pt;}
.yc1{bottom:74.880210pt;}
.y242{bottom:75.947336pt;}
.y279{bottom:75.981733pt;}
.y290{bottom:76.872705pt;}
.y287{bottom:76.939430pt;}
.y270{bottom:77.048806pt;}
.y70{bottom:79.029759pt;}
.y7c{bottom:79.029786pt;}
.y94{bottom:79.029817pt;}
.y212{bottom:79.905121pt;}
.y2ad{bottom:80.344629pt;}
.y131{bottom:80.555372pt;}
.y231{bottom:81.749526pt;}
.yf1{bottom:82.030944pt;}
.y205{bottom:82.231001pt;}
.y201{bottom:82.231003pt;}
.y1fe{bottom:82.231006pt;}
.y1f2{bottom:82.314427pt;}
.y226{bottom:83.106331pt;}
.y25d{bottom:83.231364pt;}
.y289{bottom:83.875343pt;}
.y296{bottom:83.942044pt;}
.y273{bottom:83.984748pt;}
.y282{bottom:84.051458pt;}
.y1ca{bottom:84.956852pt;}
.y269{bottom:87.927926pt;}
.y251{bottom:88.033156pt;}
.y21a{bottom:88.908513pt;}
.y1fa{bottom:90.234010pt;}
.y15f{bottom:90.303509pt;}
.y2a4{bottom:90.360015pt;}
.y239{bottom:90.752918pt;}
.y28f{bottom:90.877981pt;}
.y278{bottom:90.987386pt;}
.yf5{bottom:91.034336pt;}
.y241{bottom:91.953367pt;}
.y22a{bottom:91.953381pt;}
.y191{bottom:92.278507pt;}
.yc0{bottom:94.887748pt;}
.y7b{bottom:95.035816pt;}
.yfd{bottom:96.085947pt;}
.y2ac{bottom:96.350660pt;}
.y130{bottom:96.561403pt;}
.y211{bottom:96.911529pt;}
.y295{bottom:97.947321pt;}
.y281{bottom:98.056735pt;}
.y204{bottom:98.237031pt;}
.y1fd{bottom:98.237037pt;}
.y230{bottom:98.755934pt;}
.y245{bottom:98.850481pt;}
.y288{bottom:98.880997pt;}
.y272{bottom:98.990402pt;}
.yfa{bottom:99.037351pt;}
.y225{bottom:99.112361pt;}
.y25c{bottom:99.237394pt;}
.y1c9{bottom:100.962882pt;}
.y1f1{bottom:102.321966pt;}
.y250{bottom:105.039564pt;}
.y28e{bottom:105.883635pt;}
.y219{bottom:105.914921pt;}
.y277{bottom:105.993040pt;}
.y238{bottom:107.759326pt;}
.y240{bottom:107.959398pt;}
.y229{bottom:107.959412pt;}
.y15e{bottom:110.311047pt;}
.y190{bottom:112.286045pt;}
.y2ab{bottom:112.356690pt;}
.y210{bottom:113.917936pt;}
.y27d{bottom:113.996055pt;}
.y203{bottom:114.243062pt;}
.ybf{bottom:114.895287pt;}
.y20b{bottom:115.118384pt;}
.y224{bottom:115.118392pt;}
.y25b{bottom:115.243425pt;}
.y2a2{bottom:115.320014pt;}
.y22f{bottom:115.762341pt;}
.y28d{bottom:120.889289pt;}
.y27f{bottom:120.998694pt;}
.y218{bottom:121.920952pt;}
.y24f{bottom:122.045971pt;}
.y1f0{bottom:122.329504pt;}
.y248{bottom:123.246445pt;}
.y237{bottom:123.765357pt;}
.y23f{bottom:123.965428pt;}
.y228{bottom:123.965443pt;}
.y1ab{bottom:125.309985pt;}
.y2aa{bottom:128.362721pt;}
.y12f{bottom:128.573464pt;}
.y20{bottom:129.489039pt;}
.y15d{bottom:130.318585pt;}
.y20f{bottom:130.924344pt;}
.y20a{bottom:131.124415pt;}
.y223{bottom:131.124423pt;}
.y25a{bottom:131.249456pt;}
.y4a{bottom:132.072265pt;}
.y18f{bottom:132.293584pt;}
.y22e{bottom:132.768749pt;}
.ybe{bottom:134.902825pt;}
.y28c{bottom:135.894943pt;}
.y217{bottom:138.927359pt;}
.y24e{bottom:139.052379pt;}
.y247{bottom:139.252476pt;}
.y23e{bottom:139.971459pt;}
.y236{bottom:140.771764pt;}
.y1ef{bottom:142.337042pt;}
.y2a8{bottom:143.160012pt;}
.y4{bottom:143.680501pt;}
.y12e{bottom:144.579495pt;}
.y222{bottom:147.130453pt;}
.y259{bottom:147.255486pt;}
.y20e{bottom:147.930752pt;}
.y22d{bottom:149.775157pt;}
.y15a{bottom:150.326124pt;}
.y18e{bottom:152.301122pt;}
.ybd{bottom:154.910363pt;}
.y246{bottom:155.258507pt;}
.y216{bottom:155.933767pt;}
.y23d{bottom:155.977490pt;}
.y24d{bottom:156.058786pt;}
.y235{bottom:157.778172pt;}
.y1ad{bottom:160.555246pt;}
.y21{bottom:162.168044pt;}
.y1ee{bottom:162.344581pt;}
.y221{bottom:163.136484pt;}
.y258{bottom:163.261517pt;}
.y20d{bottom:163.936782pt;}
.y22c{bottom:165.781187pt;}
.y1f{bottom:166.502985pt;}
.y49{bottom:168.085834pt;}
.y159{bottom:170.333662pt;}
.y23c{bottom:171.983521pt;}
.y24c{bottom:172.064817pt;}
.y18d{bottom:172.308660pt;}
.y215{bottom:172.940175pt;}
.ybc{bottom:174.917902pt;}
.y12d{bottom:176.591556pt;}
.yfc{bottom:179.019160pt;}
.y257{bottom:179.267548pt;}
.y20c{bottom:180.943190pt;}
.y1ed{bottom:182.352119pt;}
.y22b{bottom:182.787595pt;}
.y48{bottom:186.092619pt;}
.y24b{bottom:189.071225pt;}
.y3{bottom:189.697839pt;}
.y214{bottom:189.946582pt;}
.y158{bottom:190.341200pt;}
.y18c{bottom:192.316199pt;}
.y12c{bottom:192.597587pt;}
.ybb{bottom:194.925440pt;}
.y256{bottom:195.273578pt;}
.y21d{bottom:197.949598pt;}
.y1ec{bottom:202.359657pt;}
.y47{bottom:204.099403pt;}
.y21f{bottom:205.952613pt;}
.y24a{bottom:206.077632pt;}
.y157{bottom:210.348739pt;}
.y255{bottom:211.279609pt;}
.y18b{bottom:212.323737pt;}
.y1e{bottom:214.090249pt;}
.yba{bottom:214.932979pt;}
.y165{bottom:221.234653pt;}
.y46{bottom:222.106188pt;}
.y1eb{bottom:222.367196pt;}
.y249{bottom:223.084040pt;}
.y12b{bottom:224.609648pt;}
.y254{bottom:227.285640pt;}
.y156{bottom:230.356277pt;}
.y18a{bottom:232.331275pt;}
.yb9{bottom:234.940517pt;}
.y2{bottom:235.715177pt;}
.y45{bottom:240.112972pt;}
.y12a{bottom:240.615679pt;}
.y1d{bottom:242.100803pt;}
.y1ea{bottom:242.374734pt;}
.yef{bottom:246.044379pt;}
.y155{bottom:250.363815pt;}
.y189{bottom:252.338814pt;}
.y167{bottom:254.252970pt;}
.yb8{bottom:254.948055pt;}
.y44{bottom:258.119757pt;}
.y1e9{bottom:262.382273pt;}
.y1c{bottom:270.111356pt;}
.y154{bottom:270.371354pt;}
.y188{bottom:272.346352pt;}
.y129{bottom:272.627740pt;}
.yb7{bottom:274.955594pt;}
.y43{bottom:276.126541pt;}
.y1e8{bottom:282.389811pt;}
.y128{bottom:288.633771pt;}
.y153{bottom:290.378892pt;}
.y42{bottom:294.133326pt;}
.yb6{bottom:294.963132pt;}
.y1b{bottom:298.121910pt;}
.y1e7{bottom:302.397349pt;}
.y127{bottom:304.639802pt;}
.y152{bottom:310.386431pt;}
.y41{bottom:312.140111pt;}
.yb5{bottom:314.970670pt;}
.y16f{bottom:318.186796pt;}
.y1e6{bottom:322.404888pt;}
.y1a{bottom:326.132464pt;}
.y40{bottom:330.146895pt;}
.y151{bottom:330.393969pt;}
.y9b{bottom:331.854148pt;}
.yb4{bottom:334.978209pt;}
.y1ac{bottom:338.418342pt;}
.y126{bottom:339.617604pt;}
.y7{bottom:341.163359pt;}
.y1e5{bottom:342.412426pt;}
.y3f{bottom:348.153680pt;}
.y9a{bottom:349.860933pt;}
.y150{bottom:350.401507pt;}
.y19{bottom:354.143018pt;}
.yb3{bottom:354.985747pt;}
.y1e4{bottom:362.419964pt;}
.ye8{bottom:363.088528pt;}
.y3e{bottom:366.160464pt;}
.y99{bottom:367.867717pt;}
.y125{bottom:368.628534pt;}
.y16e{bottom:370.206410pt;}
.y14f{bottom:370.409046pt;}
.yb2{bottom:374.993285pt;}
.y18{bottom:382.153571pt;}
.y1e3{bottom:382.427503pt;}
.y227{bottom:383.958831pt;}
.y3d{bottom:384.167249pt;}
.y6{bottom:385.179943pt;}
.y14e{bottom:390.416584pt;}
.y3c{bottom:402.174033pt;}
.y1e2{bottom:402.435041pt;}
.y17{bottom:410.164125pt;}
.y15c{bottom:410.424122pt;}
.yb1{bottom:415.008362pt;}
.y3b{bottom:420.180818pt;}
.y16a{bottom:422.226024pt;}
.y1e1{bottom:422.442580pt;}
.y8f{bottom:424.778663pt;}
.y8a{bottom:424.778743pt;}
.y124{bottom:425.049757pt;}
.y5{bottom:429.196527pt;}
.ye2{bottom:430.113760pt;}
.y14d{bottom:430.431661pt;}
.yb0{bottom:435.015901pt;}
.y16{bottom:438.174679pt;}
.y3a{bottom:438.187602pt;}
.y1e0{bottom:442.450118pt;}
.y123{bottom:445.057295pt;}
.y14c{bottom:450.439199pt;}
.y2b1{bottom:453.431764pt;}
.yaf{bottom:455.023439pt;}
.y39{bottom:456.194387pt;}
.y1c8{bottom:457.927400pt;}
.y1df{bottom:462.457656pt;}
.y122{bottom:465.064834pt;}
.y15{bottom:466.185232pt;}
.y14b{bottom:470.446738pt;}
.y38{bottom:474.201171pt;}
.y168{bottom:474.247432pt;}
.yae{bottom:475.030977pt;}
.y1c6{bottom:477.934939pt;}
.y1f4{bottom:482.465195pt;}
.y121{bottom:485.072372pt;}
.y14a{bottom:490.454276pt;}
.y37{bottom:492.207956pt;}
.y14{bottom:494.195786pt;}
.yad{bottom:495.038516pt;}
.y1c5{bottom:497.942477pt;}
.y1de{bottom:502.472733pt;}
.y120{bottom:505.079910pt;}
.y2b0{bottom:507.845318pt;}
.y149{bottom:510.461814pt;}
.ye1{bottom:513.243114pt;}
.yac{bottom:515.046054pt;}
.y1c4{bottom:517.950016pt;}
.y1dd{bottom:522.480271pt;}
.y81{bottom:523.816013pt;}
.y11f{bottom:525.087449pt;}
.y36{bottom:528.221525pt;}
.y148{bottom:530.469353pt;}
.y192{bottom:531.675344pt;}
.y299{bottom:533.493537pt;}
.yab{bottom:535.053592pt;}
.y12{bottom:536.781099pt;}
.y1c3{bottom:537.957554pt;}
.y1dc{bottom:542.487810pt;}
.y11e{bottom:545.094987pt;}
.y35{bottom:546.228309pt;}
.y8{bottom:546.574011pt;}
.y298{bottom:549.499568pt;}
.y147{bottom:550.476891pt;}
.yaa{bottom:555.061131pt;}
.y1c2{bottom:557.965092pt;}
.y187{bottom:561.681636pt;}
.y1db{bottom:562.495348pt;}
.y34{bottom:564.235094pt;}
.y11d{bottom:565.102526pt;}
.y59{bottom:566.422302pt;}
.y13{bottom:569.460072pt;}
.y146{bottom:570.484429pt;}
.y286{bottom:571.776558pt;}
.y1aa{bottom:572.105162pt;}
.y11{bottom:573.795045pt;}
.ya9{bottom:575.068669pt;}
.y106{bottom:577.180776pt;}
.y1c1{bottom:577.972631pt;}
.y133{bottom:580.796872pt;}
.y186{bottom:581.689174pt;}
.y33{bottom:582.241878pt;}
.y1da{bottom:582.502886pt;}
.y11c{bottom:585.110064pt;}
.y58{bottom:586.429840pt;}
.y145{bottom:590.491968pt;}
.y1a9{bottom:592.112700pt;}
.ya8{bottom:595.076208pt;}
.y1c7{bottom:597.980169pt;}
.y32{bottom:600.248663pt;}
.y185{bottom:601.696713pt;}
.y1d9{bottom:602.510425pt;}
.y11b{bottom:605.117602pt;}
.y209{bottom:605.773353pt;}
.y57{bottom:606.437378pt;}
.y7a{bottom:606.847296pt;}
.y76{bottom:606.847337pt;}
.y144{bottom:610.499506pt;}
.y1a8{bottom:612.120239pt;}
.ya7{bottom:615.083746pt;}
.y1c0{bottom:617.987707pt;}
.y31{bottom:618.255448pt;}
.y184{bottom:621.704251pt;}
.y1d8{bottom:622.517963pt;}
.ydf{bottom:624.536107pt;}
.y11a{bottom:625.125141pt;}
.y56{bottom:626.444917pt;}
.y15b{bottom:630.507044pt;}
.y1a7{bottom:632.127777pt;}
.y166{bottom:633.800020pt;}
.ya6{bottom:635.091284pt;}
.y30{bottom:636.262232pt;}
.y1bf{bottom:637.995246pt;}
.y183{bottom:641.711790pt;}
.y1d7{bottom:642.525502pt;}
.yde{bottom:644.543645pt;}
.y119{bottom:645.132679pt;}
.y55{bottom:646.452455pt;}
.y143{bottom:650.514583pt;}
.y1a6{bottom:652.135316pt;}
.y2f{bottom:654.269017pt;}
.yf{bottom:654.799646pt;}
.ya5{bottom:655.098823pt;}
.y1be{bottom:658.002784pt;}
.y182{bottom:661.719328pt;}
.y1d6{bottom:662.533040pt;}
.ydd{bottom:664.551184pt;}
.y118{bottom:665.140217pt;}
.y54{bottom:666.459993pt;}
.y142{bottom:670.522121pt;}
.y1a5{bottom:672.142854pt;}
.y2e{bottom:672.275801pt;}
.ya4{bottom:675.106361pt;}
.y1bd{bottom:678.010322pt;}
.y181{bottom:681.726866pt;}
.y1d5{bottom:682.540578pt;}
.ydc{bottom:684.558722pt;}
.y117{bottom:685.147756pt;}
.y53{bottom:686.467532pt;}
.y2d{bottom:690.282586pt;}
.y141{bottom:690.529660pt;}
.ye{bottom:691.813592pt;}
.y1a4{bottom:692.150392pt;}
.ya3{bottom:695.113899pt;}
.y1bc{bottom:698.017861pt;}
.y180{bottom:701.734405pt;}
.y1d4{bottom:702.548117pt;}
.ydb{bottom:704.566261pt;}
.y116{bottom:705.155294pt;}
.y52{bottom:706.475070pt;}
.y2c{bottom:708.289370pt;}
.y140{bottom:710.537198pt;}
.y1a3{bottom:712.157931pt;}
.y1bb{bottom:718.025399pt;}
.y17f{bottom:721.741943pt;}
.y6c{bottom:721.890651pt;}
.y1d3{bottom:722.555655pt;}
.y10{bottom:724.492607pt;}
.yda{bottom:724.573799pt;}
.y115{bottom:725.162833pt;}
.y2b{bottom:726.296155pt;}
.y51{bottom:726.482608pt;}
.yd{bottom:728.827538pt;}
.y2a1{bottom:729.663179pt;}
.y26f{bottom:729.688737pt;}
.y13f{bottom:730.544736pt;}
.y1a2{bottom:732.165469pt;}
.y1ba{bottom:738.032938pt;}
.y17e{bottom:741.749481pt;}
.y1d2{bottom:742.563193pt;}
.yd9{bottom:744.581337pt;}
.y50{bottom:746.490147pt;}
.y13e{bottom:750.552275pt;}
.y1a1{bottom:752.173007pt;}
.y2a0{bottom:755.672978pt;}
.y1b9{bottom:758.040476pt;}
.ya2{bottom:758.578679pt;}
.y17d{bottom:761.757020pt;}
.y2a{bottom:762.309724pt;}
.y1d1{bottom:762.570732pt;}
.yd8{bottom:764.588876pt;}
.y114{bottom:765.177909pt;}
.y4f{bottom:766.497685pt;}
.y13d{bottom:770.559813pt;}
.y1a0{bottom:772.180546pt;}
.y1b8{bottom:778.048014pt;}
.y29{bottom:780.316508pt;}
.y29f{bottom:781.682778pt;}
.y17c{bottom:781.764558pt;}
.y1d0{bottom:782.578270pt;}
.ya1{bottom:784.588479pt;}
.yd7{bottom:784.596414pt;}
.y113{bottom:785.185448pt;}
.y13c{bottom:790.567351pt;}
.y19f{bottom:792.188084pt;}
.y1b7{bottom:798.055553pt;}
.y28{bottom:798.323293pt;}
.y17b{bottom:801.772097pt;}
.y1cf{bottom:802.585808pt;}
.yd6{bottom:804.603952pt;}
.yc{bottom:804.850475pt;}
.y112{bottom:805.192986pt;}
.yb{bottom:805.630619pt;}
.y29e{bottom:807.692578pt;}
.y13b{bottom:810.574890pt;}
.ya0{bottom:810.598279pt;}
.y19e{bottom:812.195622pt;}
.y27{bottom:816.330077pt;}
.y1b6{bottom:818.063091pt;}
.y66{bottom:820.927971pt;}
.y17a{bottom:821.779635pt;}
.y1ce{bottom:822.593347pt;}
.yd5{bottom:824.611491pt;}
.y111{bottom:825.200524pt;}
.y13a{bottom:830.582428pt;}
.y19d{bottom:832.203161pt;}
.y29d{bottom:833.702378pt;}
.y26{bottom:834.336862pt;}
.y5d{bottom:837.085430pt;}
.y1b5{bottom:838.070629pt;}
.ycb{bottom:841.772808pt;}
.y179{bottom:841.787173pt;}
.y1cd{bottom:842.600885pt;}
.yd4{bottom:844.619029pt;}
.y110{bottom:845.208063pt;}
.y139{bottom:850.589966pt;}
.y19c{bottom:852.210699pt;}
.y25{bottom:852.343646pt;}
.y1f8{bottom:857.822325pt;}
.y1b4{bottom:858.078168pt;}
.y29c{bottom:859.712178pt;}
.yca{bottom:861.780347pt;}
.y178{bottom:861.794712pt;}
.y1cc{bottom:862.608424pt;}
.yd3{bottom:864.626567pt;}
.y10f{bottom:865.215601pt;}
.y5c{bottom:868.097115pt;}
.y24{bottom:870.350431pt;}
.y138{bottom:870.597505pt;}
.y19b{bottom:872.218238pt;}
.y261{bottom:872.697444pt;}
.y1b3{bottom:878.085706pt;}
.yc9{bottom:881.787885pt;}
.y177{bottom:881.802250pt;}
.y9f{bottom:883.163578pt;}
.yd2{bottom:884.634106pt;}
.y10e{bottom:885.223139pt;}
.y29b{bottom:885.721978pt;}
.y63{bottom:887.953223pt;}
.y65{bottom:887.953243pt;}
.y23{bottom:888.357215pt;}
.y137{bottom:890.605043pt;}
.y19a{bottom:892.225776pt;}
.y1b2{bottom:898.093244pt;}
.y5b{bottom:899.108799pt;}
.yc8{bottom:901.795424pt;}
.y176{bottom:901.809788pt;}
.yd1{bottom:904.641644pt;}
.y10d{bottom:905.230678pt;}
.ya{bottom:911.370942pt;}
.y29a{bottom:911.731778pt;}
.y1f7{bottom:912.199484pt;}
.y199{bottom:912.233314pt;}
.y9e{bottom:914.175262pt;}
.y1b1{bottom:918.100783pt;}
.yc7{bottom:921.802962pt;}
.yd0{bottom:924.649183pt;}
.y10c{bottom:925.238216pt;}
.y198{bottom:932.240853pt;}
.y4c{bottom:937.026991pt;}
.y1b0{bottom:938.108321pt;}
.yc6{bottom:941.810500pt;}
.y9c{bottom:941.941308pt;}
.y136{bottom:942.948943pt;}
.y1f6{bottom:943.211168pt;}
.ycf{bottom:944.656721pt;}
.y10b{bottom:945.245755pt;}
.y175{bottom:948.680828pt;}
.y197{bottom:952.248391pt;}
.yc5{bottom:961.818039pt;}
.y10a{bottom:965.253293pt;}
.y135{bottom:968.958743pt;}
.y196{bottom:972.255929pt;}
.y174{bottom:974.690628pt;}
.y164{bottom:974.740009pt;}
.yc4{bottom:981.825577pt;}
.y9{bottom:984.126607pt;}
.y109{bottom:985.260831pt;}
.y5a{bottom:986.163794pt;}
.yce{bottom:987.645757pt;}
.y1af{bottom:989.981264pt;}
.y195{bottom:992.263468pt;}
.y163{bottom:994.747548pt;}
.y134{bottom:994.968543pt;}
.y9d{bottom:995.418149pt;}
.y173{bottom:1000.700427pt;}
.yc3{bottom:1001.833115pt;}
.y4b{bottom:1004.037025pt;}
.y108{bottom:1005.268370pt;}
.y1f5{bottom:1009.275130pt;}
.y194{bottom:1012.271006pt;}
.ycd{bottom:1013.655556pt;}
.y162{bottom:1014.755086pt;}
.y1ae{bottom:1015.991064pt;}
.y260{bottom:1022.828853pt;}
.y2b2{bottom:1029.327900pt;}
.y61{bottom:1075.547396pt;}
.y62{bottom:1075.547401pt;}
.y160{bottom:1081.563788pt;}
.y161{bottom:1082.297401pt;}
.y172{bottom:1082.996681pt;}
.yc2{bottom:1083.494029pt;}
.ye0{bottom:1083.496871pt;}
.y107{bottom:1083.730296pt;}
.y193{bottom:1083.825623pt;}
.h43{height:19.519999pt;}
.h41{height:19.839999pt;}
.h40{height:32.408616pt;}
.h3d{height:32.637726pt;}
.h42{height:34.212377pt;}
.h38{height:36.740405pt;}
.h36{height:38.676779pt;}
.h1b{height:39.038709pt;}
.h2a{height:39.136305pt;}
.h1a{height:39.758980pt;}
.h31{height:40.431793pt;}
.h34{height:40.812467pt;}
.h18{height:41.015448pt;}
.h16{height:41.015467pt;}
.hf{height:41.679704pt;}
.h12{height:42.015831pt;}
.h15{height:42.672078pt;}
.h14{height:43.365499pt;}
.h26{height:44.165600pt;}
.h2f{height:44.755149pt;}
.hc{height:46.299204pt;}
.h33{height:47.596053pt;}
.h25{height:47.692289pt;}
.h22{height:49.503925pt;}
.h13{height:49.774809pt;}
.hb{height:50.214994pt;}
.h17{height:50.262337pt;}
.h30{height:50.282715pt;}
.h27{height:51.019217pt;}
.h10{height:51.329339pt;}
.h32{height:52.019079pt;}
.h35{height:52.019607pt;}
.h28{height:52.149211pt;}
.h44{height:56.378402pt;}
.ha{height:60.705192pt;}
.h19{height:66.024880pt;}
.h2b{height:67.025232pt;}
.h2e{height:69.391305pt;}
.h24{height:78.077418pt;}
.h20{height:82.030896pt;}
.h1f{height:82.030934pt;}
.h2d{height:82.933200pt;}
.h29{height:83.031325pt;}
.h8{height:86.730998pt;}
.h4{height:90.402061pt;}
.h23{height:95.417111pt;}
.h21{height:98.036870pt;}
.h1d{height:98.036930pt;}
.h1c{height:98.036950pt;}
.h9{height:101.094656pt;}
.he{height:101.872143pt;}
.h11{height:102.693693pt;}
.h6{height:106.696207pt;}
.h3{height:108.430020pt;}
.h3c{height:109.869515pt;}
.h1e{height:114.042965pt;}
.h2c{height:117.044136pt;}
.hd{height:121.325713pt;}
.h3e{height:143.006986pt;}
.h37{height:154.058051pt;}
.h3f{height:157.903235pt;}
.h7{height:173.494535pt;}
.h5{height:212.711836pt;}
.h3a{height:221.802295pt;}
.h39{height:251.969951pt;}
.h3b{height:285.107409pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w14{width:64.319997pt;}
.w7{width:75.809818pt;}
.w13{width:93.439996pt;}
.wf{width:94.035426pt;}
.wd{width:95.567241pt;}
.we{width:95.567263pt;}
.w10{width:95.567302pt;}
.wb{width:97.880620pt;}
.w9{width:97.880630pt;}
.wa{width:97.880639pt;}
.w12{width:98.559996pt;}
.wc{width:101.866521pt;}
.w11{width:103.038825pt;}
.w8{width:105.852380pt;}
.w2{width:125.047124pt;}
.w6{width:186.679679pt;}
.w5{width:186.679720pt;}
.w4{width:239.090108pt;}
.w3{width:269.101374pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:5.001891pt;}
.x1b{left:8.003015pt;}
.xf{left:10.066299pt;}
.x12{left:11.942006pt;}
.x13{left:16.443702pt;}
.x15{left:18.803966pt;}
.x10{left:19.710558pt;}
.x16{left:22.586642pt;}
.xe{left:29.104722pt;}
.x17{left:30.026945pt;}
.x14{left:37.623557pt;}
.x11{left:39.014706pt;}
.x29{left:45.298317pt;}
.x2a{left:49.112254pt;}
.x34{left:57.518260pt;}
.x3a{left:60.127229pt;}
.x21{left:78.405984pt;}
.x1{left:79.399997pt;}
.xa{left:80.400371pt;}
.x19{left:82.379312pt;}
.x23{left:86.353581pt;}
.x3{left:88.122033pt;}
.x2b{left:90.716761pt;}
.x2d{left:94.058583pt;}
.x22{left:98.366131pt;}
.x2c{left:104.331265pt;}
.x1f{left:115.817496pt;}
.x9{left:124.668625pt;}
.x1e{left:128.253678pt;}
.x3b{left:145.640310pt;}
.x3e{left:148.578917pt;}
.x18{left:149.891792pt;}
.x1a{left:154.559955pt;}
.x3f{left:157.238430pt;}
.x3d{left:159.504909pt;}
.x35{left:163.236009pt;}
.x3c{left:174.057267pt;}
.x24{left:185.266671pt;}
.x2{left:202.392785pt;}
.xc{left:206.157121pt;}
.x6{left:247.519163pt;}
.x4{left:248.410123pt;}
.x2f{left:253.282117pt;}
.x5{left:265.869827pt;}
.x2e{left:271.567468pt;}
.x20{left:276.147318pt;}
.x25{left:291.133309pt;}
.x1c{left:341.239947pt;}
.x30{left:351.164049pt;}
.x40{left:354.093851pt;}
.x36{left:360.689166pt;}
.x26{left:396.999983pt;}
.x8{left:415.241154pt;}
.x31{left:449.045997pt;}
.x37{left:456.271347pt;}
.xd{left:475.814393pt;}
.x41{left:495.039979pt;}
.x27{left:502.866657pt;}
.x1d{left:527.919978pt;}
.x32{left:546.927881pt;}
.x38{left:551.853545pt;}
.x28{left:608.733287pt;}
.x33{left:644.809829pt;}
.x39{left:646.379845pt;}
.x7{left:714.599970pt;}
}




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