
    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_75018e1a19c53827cdb411cb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;font-style:normal;font-weight: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_0a3f6c58a69bb92df2a8503b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.945312;font-style:normal;font-weight: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_b1245b4f4e161c367910cbe8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967773;font-style:normal;font-weight: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_1b4addb61847526994bc19e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936523;font-style:normal;font-weight: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_46651f8ea746f073d70c6176.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.721000;font-style:normal;font-weight: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_8c102d4ecb9b1f2d1c9d26ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.827637;font-style:normal;font-weight: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_2d947e4cc0bb77b28aec2c32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723145;font-style:normal;font-weight: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_db2b715baa7ccc1e4476be1b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.967773;font-style:normal;font-weight: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_40f6321dc0595f55fb18a581.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936523;font-style:normal;font-weight: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_b6772308794272ceec54bd92.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.967773;font-style:normal;font-weight: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_3a347e2dc6ce3a6902681801.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936523;font-style:normal;font-weight: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_f04e0a23f5881f61315d9da8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.967773;font-style:normal;font-weight: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_3a347e2dc6ce3a6902681801.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.936523;font-style:normal;font-weight: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_baaa68c7f06ad70c55eb533a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936523;font-style:normal;font-weight: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_12f0e05460f7db86619608a8.woff2')format("woff");}.fff{font-family:fff;line-height:1.026367;font-style:normal;font-weight: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_e7207c671f350afd667dd611.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_28cb309d1a7bfe3e79c6e4e9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.735000;font-style:normal;font-weight: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_47f92bef24aa10c50acd11a3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight: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_5292d8c4657491e325f41e24.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_25a7c6e3bf5517ecf9ee0a24.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_257a503f5db42e7e8ae03e2b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.956543;font-style:normal;font-weight: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_b688d2418d5c8edff07b6d07.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.736328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff17{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff18;src:url('chunks/assets/font_6f099a5ba0921c3888e9af84.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.939941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff19{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_01fa4f4152e40a7954413d6a.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.918945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1b{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_a41b599c85eae1d62a5ef30c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ff1d{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_d466ce00eeeaf205bf776091.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.943359;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_8d0d3ef4cdf395aa5b63d991.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_b4aba8e1336a0ca753bb8bce.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_16eca03713264d21813d8e32.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.717285;font-style:normal;font-weight: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_8d0d3ef4cdf395aa5b63d991.woff2')format("woff");}.ff22{font-family:ff22;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;}
.ff23{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff24;src:url('chunks/assets/font_679b9d65b54ab16891265726.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.918945;font-style:normal;font-weight: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_a8ad6a6d3b20a15d17135588.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.735352;font-style:normal;font-weight: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_a41b599c85eae1d62a5ef30c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.960000;font-style:normal;font-weight: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_ebe97cfb443ab3fcbe52ecc6.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.926758;font-style:normal;font-weight: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_cbea3f94d8c88b5e9ce328b5.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.967773;font-style:normal;font-weight: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_c2973d8e76c803258e3f66ec.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.967773;font-style:normal;font-weight: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_fec0500a758096db9e44eee7.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.936523;font-style:normal;font-weight: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_a15f81495a0f8f0d39521a8a.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.967773;font-style:normal;font-weight: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_dc89e600e16c01c4f95793bd.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.967773;font-style:normal;font-weight: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_2f85257a941ba08c55812d18.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.967773;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1e{transform:matrix(0.000000,-0.237603,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237603,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237603,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.237933,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.237933,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.237933,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.238273,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.238273,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.238273,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.245078,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.245078,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.245078,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249918,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249918,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249918,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249984,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249999,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250017,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250017,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250017,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250169,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250169,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250169,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.211775,-0.140933,0.148286,0.201274,0,0);-ms-transform:matrix(0.211775,-0.140933,0.148286,0.201274,0,0);-webkit-transform:matrix(0.211775,-0.140933,0.148286,0.201274,0,0);}
.m6{transform:matrix(0.240435,0.068490,-0.068490,0.240435,0,0);-ms-transform:matrix(0.240435,0.068490,-0.068490,0.240435,0,0);-webkit-transform:matrix(0.240435,0.068490,-0.068490,0.240435,0,0);}
.m3{transform:matrix(0.245762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245762,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250001,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250015,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.255021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255021,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262305,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262679,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.263044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263044,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-26.022000px;}
.v4{vertical-align:-20.580000px;}
.v9{vertical-align:-18.433216px;}
.v1{vertical-align:-17.164980px;}
.v5{vertical-align:-14.484706px;}
.v10{vertical-align:-12.397814px;}
.v13{vertical-align:-7.638000px;}
.v2{vertical-align:-5.916000px;}
.v6{vertical-align:-4.680000px;}
.v3{vertical-align:-1.194000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:14.980561px;}
.v14{vertical-align:18.420000px;}
.vd{vertical-align:21.089095px;}
.ve{vertical-align:24.451736px;}
.v11{vertical-align:26.428669px;}
.vb{vertical-align:28.206260px;}
.v7{vertical-align:32.484000px;}
.va{vertical-align:37.162724px;}
.vf{vertical-align:39.102000px;}
.v8{vertical-align:69.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.010752px;}
.ls2e{letter-spacing:0.012908px;}
.ls39{letter-spacing:0.014095px;}
.ls17{letter-spacing:0.014098px;}
.ls1d{letter-spacing:0.017264px;}
.ls35{letter-spacing:0.018000px;}
.ls31{letter-spacing:0.019885px;}
.ls28{letter-spacing:0.026890px;}
.ls38{letter-spacing:0.031510px;}
.ls18{letter-spacing:0.035965px;}
.ls5{letter-spacing:0.038652px;}
.ls7{letter-spacing:0.040235px;}
.lsb{letter-spacing:0.041878px;}
.ls21{letter-spacing:0.044275px;}
.ls9{letter-spacing:0.047856px;}
.ls1{letter-spacing:0.049588px;}
.ls37{letter-spacing:0.049591px;}
.ls24{letter-spacing:0.054197px;}
.ls23{letter-spacing:0.055520px;}
.ls2f{letter-spacing:0.055992px;}
.ls2c{letter-spacing:0.056797px;}
.ls33{letter-spacing:0.057236px;}
.ls4{letter-spacing:0.057939px;}
.ls10{letter-spacing:0.059217px;}
.ls26{letter-spacing:0.060276px;}
.ls13{letter-spacing:0.071060px;}
.ls12{letter-spacing:0.072795px;}
.ls22{letter-spacing:0.075642px;}
.ls14{letter-spacing:0.075966px;}
.ls16{letter-spacing:0.079032px;}
.ls2{letter-spacing:0.079867px;}
.ls30{letter-spacing:0.088519px;}
.ls2d{letter-spacing:0.090770px;}
.ls11{letter-spacing:0.101170px;}
.ls6{letter-spacing:0.120078px;}
.ls1c{letter-spacing:0.121404px;}
.lsa{letter-spacing:0.127295px;}
.ls32{letter-spacing:0.143892px;}
.ls8{letter-spacing:0.174964px;}
.ls34{letter-spacing:0.290116px;}
.lsd{letter-spacing:0.336537px;}
.lsc{letter-spacing:0.342307px;}
.ls2a{letter-spacing:2.602421px;}
.ls1a{letter-spacing:3.480688px;}
.ls36{letter-spacing:4.237211px;}
.ls1f{letter-spacing:5.431824px;}
.ls20{letter-spacing:13.584536px;}
.lsf{letter-spacing:18.169056px;}
.ls29{letter-spacing:28.111829px;}
.ls25{letter-spacing:29.438586px;}
.ls2b{letter-spacing:31.698293px;}
.ls19{letter-spacing:37.599031px;}
.ls15{letter-spacing:38.598471px;}
.ls1b{letter-spacing:41.561291px;}
.ls3{letter-spacing:61.760214px;}
.ls1e{letter-spacing:63.426252px;}
.lse{letter-spacing:515.726706px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws35{word-spacing:-66.580272px;}
.ws26{word-spacing:-50.680953px;}
.ws0{word-spacing:-39.902958px;}
.ws27{word-spacing:-36.559014px;}
.wsb{word-spacing:-33.381684px;}
.ws34{word-spacing:-33.072138px;}
.ws29{word-spacing:-31.754172px;}
.ws14{word-spacing:-30.599277px;}
.wsd{word-spacing:-29.916000px;}
.ws32{word-spacing:-27.936558px;}
.ws16{word-spacing:-27.752357px;}
.ws2e{word-spacing:-26.570394px;}
.ws2d{word-spacing:-24.941634px;}
.ws17{word-spacing:-24.921690px;}
.ws2{word-spacing:-24.183550px;}
.ws2f{word-spacing:-23.776521px;}
.ws10{word-spacing:-23.311930px;}
.ws4{word-spacing:-23.272986px;}
.ws3{word-spacing:-23.016291px;}
.ws1e{word-spacing:-22.878293px;}
.ws6{word-spacing:-21.444786px;}
.ws5{word-spacing:-21.004500px;}
.ws39{word-spacing:-20.945106px;}
.ws20{word-spacing:-20.749724px;}
.ws2b{word-spacing:-20.615448px;}
.ws9{word-spacing:-20.421102px;}
.ws8{word-spacing:-20.407341px;}
.wsa{word-spacing:-19.929042px;}
.ws15{word-spacing:-19.856673px;}
.ws2a{word-spacing:-18.446538px;}
.wsc{word-spacing:-18.278676px;}
.ws1a{word-spacing:-17.779727px;}
.ws30{word-spacing:-17.467143px;}
.ws37{word-spacing:-17.304744px;}
.ws36{word-spacing:-16.884757px;}
.ws31{word-spacing:-16.647759px;}
.ws7{word-spacing:-16.629972px;}
.ws2c{word-spacing:-14.981268px;}
.ws1f{word-spacing:-14.846324px;}
.ws33{word-spacing:-14.298886px;}
.ws28{word-spacing:-11.652282px;}
.ws11{word-spacing:-4.995336px;}
.ws1b{word-spacing:-3.734884px;}
.ws38{word-spacing:-0.095922px;}
.ws21{word-spacing:-0.065207px;}
.ws23{word-spacing:-0.063368px;}
.ws25{word-spacing:-0.063348px;}
.ws22{word-spacing:-0.052166px;}
.ws24{word-spacing:-0.050698px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:0.518826px;}
.ws12{word-spacing:0.693920px;}
.ws19{word-spacing:2.644122px;}
.wsf{word-spacing:3.536463px;}
.ws1d{word-spacing:4.610405px;}
.ws13{word-spacing:6.166329px;}
.ws18{word-spacing:25.982868px;}
.wse{word-spacing:34.751587px;}
._3{margin-left:-803.564438px;}
._8{margin-left:-441.662703px;}
._10{margin-left:-417.118728px;}
._e{margin-left:-406.328398px;}
._33{margin-left:-398.937800px;}
._f{margin-left:-386.358235px;}
._d{margin-left:-375.503485px;}
._34{margin-left:-365.336175px;}
._31{margin-left:-320.062359px;}
._32{margin-left:-295.038204px;}
._2f{margin-left:-56.635752px;}
._37{margin-left:-12.960000px;}
._b{margin-left:-11.880000px;}
._11{margin-left:-9.874017px;}
._9{margin-left:-8.467002px;}
._5{margin-left:-7.264614px;}
._1{margin-left:-5.508000px;}
._c{margin-left:-4.493706px;}
._4{margin-left:-3.267297px;}
._0{margin-left:-1.944000px;}
._2{width:1.494000px;}
._7{width:2.895054px;}
._2e{width:4.274420px;}
._20{width:5.504988px;}
._a{width:6.887196px;}
._25{width:51.044831px;}
._2c{width:53.717435px;}
._2b{width:65.905961px;}
._17{width:68.271480px;}
._1e{width:71.846037px;}
._2a{width:81.864370px;}
._1d{width:88.147956px;}
._24{width:96.524454px;}
._29{width:103.667372px;}
._1c{width:109.492022px;}
._16{width:129.099603px;}
._28{width:135.261776px;}
._1b{width:138.653119px;}
._1a{width:180.910026px;}
._27{width:185.211714px;}
._23{width:218.139813px;}
._22{width:236.838367px;}
._2d{width:238.929148px;}
._19{width:247.717108px;}
._26{width:276.370531px;}
._15{width:291.757808px;}
._14{width:316.766766px;}
._1f{width:319.563145px;}
._36{width:320.905778px;}
._35{width:341.515662px;}
._12{width:362.504130px;}
._18{width:369.640276px;}
._30{width:378.324196px;}
._6{width:522.307308px;}
._21{width:642.935976px;}
._13{width:859.914515px;}
.fc16{color:rgb(255,255,255);}
.fc13{color:rgb(0,110,235);}
.fc14{color:rgb(0,125,191);}
.fc12{color:rgb(0,197,232);}
.fc11{color:rgb(0,134,243);}
.fce{color:rgb(237,76,5);}
.fc10{color:rgb(255,0,233);}
.fcd{color:rgb(21,132,102);}
.fc0{color:rgb(0,0,0);}
.fc1{color:rgb(89,131,176);}
.fc15{color:rgb(255,64,0);}
.fc4{color:rgb(153,153,153);}
.fc2{color:transparent;}
.fc3{color:rgb(52,101,164);}
.fcf{color:rgb(255,0,255);}
.fc9{color:rgb(201,33,30);}
.fc5{color:rgb(241,13,12);}
.fc6{color:rgb(42,96,153);}
.fc7{color:rgb(255,134,13);}
.fcc{color:rgb(0,114,178);}
.fc8{color:rgb(128,0,128);}
.fca{color:rgb(0,158,115);}
.fcb{color:rgb(213,94,0);}
.fs10{font-size:37.758000px;}
.fs18{font-size:38.442000px;}
.fs2b{font-size:40.123478px;}
.fs38{font-size:40.188000px;}
.fs46{font-size:42.013272px;}
.fs31{font-size:42.066000px;}
.fs45{font-size:44.081117px;}
.fs49{font-size:45.106895px;}
.fs32{font-size:47.964000px;}
.fsa{font-size:48.564000px;}
.fs20{font-size:48.642000px;}
.fs3b{font-size:49.206000px;}
.fs2e{font-size:50.680953px;}
.fs30{font-size:50.697545px;}
.fs14{font-size:51.501176px;}
.fs15{font-size:51.535905px;}
.fs2a{font-size:52.165665px;}
.fs43{font-size:52.516590px;}
.fs50{font-size:53.264217px;}
.fs28{font-size:53.596838px;}
.fs4{font-size:54.084000px;}
.fs44{font-size:55.101396px;}
.fs21{font-size:55.806000px;}
.fs4b{font-size:56.381160px;}
.fs48{font-size:56.384478px;}
.fs8{font-size:58.085278px;}
.fs40{font-size:60.003838px;}
.fs11{font-size:60.036000px;}
.fs7{font-size:61.031040px;}
.fs51{font-size:62.472000px;}
.fs2d{font-size:63.347713px;}
.fs2f{font-size:63.368452px;}
.fs3a{font-size:63.552000px;}
.fsd{font-size:64.230000px;}
.fs27{font-size:64.316206px;}
.fs13{font-size:64.376470px;}
.fs12{font-size:64.419881px;}
.fs29{font-size:65.207077px;}
.fs2c{font-size:65.211313px;}
.fs26{font-size:65.607848px;}
.fs17{font-size:65.988000px;}
.fs4d{font-size:66.580272px;}
.fs35{font-size:66.594000px;}
.fs37{font-size:69.594000px;}
.fs4f{font-size:70.054051px;}
.fs4a{font-size:70.476450px;}
.fs47{font-size:70.480597px;}
.fs1f{font-size:71.684742px;}
.fs2{font-size:71.946000px;}
.fs4e{font-size:72.261161px;}
.fs5{font-size:72.606597px;}
.fs39{font-size:74.424000px;}
.fs42{font-size:75.000450px;}
.fs3f{font-size:75.004797px;}
.fs6{font-size:76.288800px;}
.fs23{font-size:76.567246px;}
.fs53{font-size:76.722000px;}
.fse{font-size:77.418000px;}
.fs36{font-size:78.618000px;}
.fs9{font-size:84.018000px;}
.fs1e{font-size:86.021690px;}
.fs1d{font-size:86.021884px;}
.fs33{font-size:89.322000px;}
.fs22{font-size:89.970000px;}
.fs41{font-size:90.005756px;}
.fs3d{font-size:90.042000px;}
.fs24{font-size:91.880695px;}
.fs25{font-size:93.725906px;}
.fs19{font-size:95.922000px;}
.fsc{font-size:100.854000px;}
.fs52{font-size:102.048000px;}
.fs1a{font-size:102.407220px;}
.fs3c{font-size:102.540000px;}
.fsf{font-size:103.746000px;}
.fs1{font-size:108.000000px;}
.fs34{font-size:114.636000px;}
.fs4c{font-size:119.394000px;}
.fsb{font-size:120.078000px;}
.fs1b{font-size:122.888664px;}
.fs1c{font-size:122.888941px;}
.fs16{font-size:131.982000px;}
.fs0{font-size:144.054000px;}
.fs3{font-size:155.964000px;}
.fs3e{font-size:479.964000px;}
.ycb{bottom:-322.447651px;}
.yc1{bottom:-321.192209px;}
.yc0{bottom:-296.395088px;}
.yc2{bottom:-285.265471px;}
.ycc{bottom:-253.641907px;}
.yc3{bottom:-236.036509px;}
.yd2{bottom:-169.345402px;}
.yc7{bottom:-169.068500px;}
.ycd{bottom:-161.569884px;}
.yce{bottom:-91.920087px;}
.yc4{bottom:-83.117388px;}
.yd5{bottom:-67.354038px;}
.yd4{bottom:-44.274670px;}
.ycf{bottom:-22.270290px;}
.yd3{bottom:-21.195302px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y1dc{bottom:3.837269px;}
.y1b6{bottom:4.083586px;}
.yca{bottom:4.351508px;}
.yb{bottom:5.527500px;}
.y103{bottom:5.535820px;}
.yc5{bottom:6.334563px;}
.yd9{bottom:15.816553px;}
.y1c3{bottom:16.506979px;}
.y17{bottom:18.038698px;}
.yd0{bottom:18.472229px;}
.y9e{bottom:19.989786px;}
.y42{bottom:20.248413px;}
.y20a{bottom:20.927466px;}
.yd8{bottom:21.088827px;}
.y94{bottom:21.668915px;}
.yeb{bottom:22.432154px;}
.y1d8{bottom:24.347123px;}
.y1b2{bottom:25.909982px;}
.y35{bottom:26.277000px;}
.yc9{bottom:27.336038px;}
.y14d{bottom:27.594000px;}
.yf8{bottom:29.232402px;}
.yf1{bottom:29.763000px;}
.y165{bottom:31.083000px;}
.y15d{bottom:31.125000px;}
.y77{bottom:31.167000px;}
.y175{bottom:31.210500px;}
.y47{bottom:31.380000px;}
.y45{bottom:31.422000px;}
.ybc{bottom:32.145000px;}
.y156{bottom:32.316000px;}
.y1a2{bottom:32.527500px;}
.y92{bottom:34.270500px;}
.y1c1{bottom:34.841834px;}
.y189{bottom:35.250000px;}
.y17c{bottom:35.292000px;}
.y26{bottom:36.142500px;}
.y1a9{bottom:36.312000px;}
.y1dd{bottom:38.020359px;}
.y219{bottom:38.268000px;}
.y1a{bottom:39.118500px;}
.y12{bottom:39.167218px;}
.y8b{bottom:39.883500px;}
.y1ae{bottom:40.463623px;}
.yd7{bottom:41.182945px;}
.y20f{bottom:42.393000px;}
.y217{bottom:42.648000px;}
.y40{bottom:42.739004px;}
.y1ad{bottom:42.903000px;}
.y22{bottom:43.753500px;}
.y1a4{bottom:44.094000px;}
.y205{bottom:44.172303px;}
.y20c{bottom:44.731500px;}
.yf2{bottom:45.030123px;}
.y1e7{bottom:45.751500px;}
.y155{bottom:45.837000px;}
.yd6{bottom:46.455218px;}
.ye4{bottom:46.789845px;}
.y1f9{bottom:47.070000px;}
.y1b8{bottom:47.112000px;}
.yd1{bottom:47.379506px;}
.yc8{bottom:49.257102px;}
.y8e{bottom:49.918500px;}
.yc{bottom:49.960500px;}
.y1ac{bottom:50.683500px;}
.y1d0{bottom:51.085700px;}
.y46{bottom:51.534000px;}
.y44{bottom:51.577500px;}
.ybb{bottom:52.894500px;}
.yd{bottom:53.252898px;}
.y34{bottom:54.511500px;}
.y1ed{bottom:54.723000px;}
.y93{bottom:54.834588px;}
.y31{bottom:55.701000px;}
.y38{bottom:57.274500px;}
.y39{bottom:57.732732px;}
.y218{bottom:58.422000px;}
.y17b{bottom:58.762500px;}
.y129{bottom:59.031000px;}
.y1fa{bottom:59.668862px;}
.y1a1{bottom:62.760000px;}
.y21f{bottom:62.929500px;}
.y1ec{bottom:63.057000px;}
.y10f{bottom:63.483000px;}
.y164{bottom:64.333500px;}
.y15c{bottom:64.375500px;}
.y76{bottom:64.417500px;}
.y174{bottom:64.461000px;}
.y8a{bottom:66.544500px;}
.y222{bottom:68.244000px;}
.y15{bottom:69.448707px;}
.y95{bottom:69.720238px;}
.yc6{bottom:69.801733px;}
.y87{bottom:73.092000px;}
.y1bb{bottom:74.537811px;}
.y20b{bottom:74.962500px;}
.y18a{bottom:75.217500px;}
.y208{bottom:75.548256px;}
.y223{bottom:76.323000px;}
.yf3{bottom:76.506786px;}
.y8d{bottom:76.578000px;}
.y1cf{bottom:79.894500px;}
.y21{bottom:81.426000px;}
.y17a{bottom:82.233000px;}
.y33{bottom:83.254500px;}
.ydc{bottom:83.908927px;}
.y14c{bottom:84.019500px;}
.y30{bottom:84.444000px;}
.yfc{bottom:84.942679px;}
.y4a{bottom:88.928059px;}
.y14{bottom:90.577226px;}
.y21e{bottom:92.650500px;}
.y89{bottom:93.204000px;}
.y207{bottom:94.923115px;}
.y1a8{bottom:96.775500px;}
.y1de{bottom:96.805582px;}
.yfd{bottom:97.247972px;}
.y163{bottom:100.560000px;}
.y15b{bottom:100.602000px;}
.y75{bottom:100.644000px;}
.y173{bottom:100.687500px;}
.y1c9{bottom:100.857000px;}
.y125{bottom:101.452500px;}
.yfe{bottom:101.647978px;}
.y8c{bottom:103.239000px;}
.y86{bottom:103.323000px;}
.y32{bottom:106.852500px;}
.yf4{bottom:107.983449px;}
.y2f{bottom:108.043500px;}
.yb9{bottom:109.531500px;}
.y20{bottom:109.701000px;}
.y10e{bottom:110.764500px;}
.y13{bottom:111.705746px;}
.y9f{bottom:112.016147px;}
.y1fb{bottom:112.700048px;}
.y14b{bottom:114.250500px;}
.y1b5{bottom:114.494823px;}
.y1d1{bottom:116.403593px;}
.ybf{bottom:117.991500px;}
.y179{bottom:118.971000px;}
.y172{bottom:119.055000px;}
.y88{bottom:119.863500px;}
.y1d{bottom:119.949000px;}
.y1eb{bottom:123.520500px;}
.ydd{bottom:123.878111px;}
.y1c8{bottom:129.133500px;}
.y1bc{bottom:129.489859px;}
.y19d{bottom:130.450500px;}
.y124{bottom:131.683500px;}
.yff{bottom:134.942563px;}
.y96{bottom:135.563028px;}
.y3a{bottom:135.729102px;}
.yfb{bottom:136.375314px;}
.y1ba{bottom:137.125500px;}
.y162{bottom:137.296500px;}
.y15a{bottom:137.338500px;}
.y74{bottom:137.382000px;}
.y171{bottom:137.424000px;}
.y1f{bottom:137.977500px;}
.y100{bottom:139.342568px;}
.yf5{bottom:139.519502px;}
.y1f8{bottom:139.593000px;}
.yb8{bottom:139.762500px;}
.y10d{bottom:140.995500px;}
.y1c{bottom:142.272000px;}
.y78{bottom:143.971500px;}
.y14a{bottom:144.483000px;}
.y37{bottom:144.949500px;}
.y4b{bottom:151.326766px;}
.y49{bottom:152.008500px;}
.ya{bottom:153.283500px;}
.y1ea{bottom:153.751500px;}
.y27{bottom:154.359000px;}
.y1df{bottom:155.590805px;}
.y161{bottom:155.665500px;}
.y159{bottom:155.707500px;}
.y73{bottom:155.749500px;}
.y170{bottom:155.793000px;}
.y19c{bottom:157.111500px;}
.ye{bottom:157.783708px;}
.y36{bottom:161.703000px;}
.y101{bottom:162.226929px;}
.y12d{bottom:162.457500px;}
.yde{bottom:163.847294px;}
.y183{bottom:163.956000px;}
.y1b{bottom:164.593500px;}
.y1a7{bottom:164.977500px;}
.y1fc{bottom:165.722912px;}
.y187{bottom:166.338000px;}
.y102{bottom:166.626935px;}
.y50{bottom:167.850465px;}
.y169{bottom:168.973500px;}
.yf6{bottom:170.996165px;}
.yfa{bottom:170.996169px;}
.y9{bottom:173.439000px;}
.y160{bottom:174.033000px;}
.y158{bottom:174.076500px;}
.y72{bottom:174.118500px;}
.y149{bottom:174.714000px;}
.y1db{bottom:174.838134px;}
.y1d2{bottom:181.721487px;}
.y48{bottom:182.239500px;}
.y24{bottom:183.516000px;}
.y19b{bottom:183.771000px;}
.y1bd{bottom:184.441906px;}
.y186{bottom:184.705500px;}
.yf9{bottom:186.734497px;}
.y182{bottom:187.555500px;}
.y120{bottom:192.147000px;}
.y178{bottom:192.444000px;}
.y16f{bottom:192.529500px;}
.ye8{bottom:194.205966px;}
.y1c2{bottom:194.649460px;}
.ye7{bottom:197.388439px;}
.y168{bottom:199.204500px;}
.y135{bottom:199.672500px;}
.y1ce{bottom:200.481000px;}
.y152{bottom:202.417500px;}
.yf7{bottom:202.472828px;}
.y185{bottom:203.074500px;}
.ydf{bottom:203.816478px;}
.y154{bottom:204.550500px;}
.yb7{bottom:206.731500px;}
.yba{bottom:207.283500px;}
.y1af{bottom:207.293042px;}
.y14f{bottom:207.501000px;}
.y19a{bottom:210.430500px;}
.y177{bottom:210.813000px;}
.y16e{bottom:210.898500px;}
.ye5{bottom:213.093977px;}
.y3b{bottom:213.725473px;}
.y1e0{bottom:214.380433px;}
.y151{bottom:216.267000px;}
.y10c{bottom:217.659000px;}
.y153{bottom:218.400000px;}
.y1fd{bottom:218.754098px;}
.y111{bottom:220.933500px;}
.y14e{bottom:221.352000px;}
.y11f{bottom:222.378000px;}
.ya5{bottom:224.761102px;}
.y9a{bottom:225.131454px;}
.y1e6{bottom:225.570949px;}
.y6{bottom:228.160500px;}
.y176{bottom:229.182000px;}
.y16d{bottom:229.266000px;}
.y134{bottom:229.905000px;}
.y150{bottom:230.118000px;}
.y110{bottom:234.454500px;}
.ya0{bottom:235.160709px;}
.y1be{bottom:239.393953px;}
.ye9{bottom:241.301777px;}
.y79{bottom:241.767000px;}
.ye0{bottom:243.785662px;}
.yea{bottom:245.830931px;}
.y184{bottom:246.880500px;}
.y1d3{bottom:247.039380px;}
.y10b{bottom:247.890000px;}
.y5{bottom:248.316000px;}
.y12c{bottom:252.865500px;}
.y16{bottom:255.085127px;}
.ydb{bottom:257.626500px;}
.y41{bottom:262.120469px;}
.yf{bottom:262.319056px;}
.yb6{bottom:267.193500px;}
.y55{bottom:270.553500px;}
.y2d{bottom:270.943500px;}
.y1fe{bottom:271.785284px;}
.y209{bottom:272.779373px;}
.y1e1{bottom:273.165656px;}
.y4c{bottom:276.124180px;}
.y51{bottom:277.960147px;}
.y1f7{bottom:278.887500px;}
.y1c7{bottom:283.351500px;}
.ye1{bottom:283.754846px;}
.y143{bottom:283.954500px;}
.y193{bottom:288.361500px;}
.yb5{bottom:290.920500px;}
.y3c{bottom:291.729896px;}
.y2c{bottom:292.648500px;}
.y54{bottom:294.151500px;}
.y1bf{bottom:294.339435px;}
.y13f{bottom:295.639500px;}
.ye6{bottom:298.204827px;}
.yf0{bottom:303.062847px;}
.y7a{bottom:305.547000px;}
.y1f6{bottom:309.118500px;}
.y1a0{bottom:310.479000px;}
.y1c6{bottom:311.628000px;}
.y1d4{bottom:312.357274px;}
.y11e{bottom:313.072500px;}
.y192{bottom:313.486500px;}
.yef{bottom:319.332656px;}
.y133{bottom:320.599500px;}
.yb4{bottom:321.151500px;}
.ye2{bottom:323.724030px;}
.y1ff{bottom:324.816471px;}
.y13e{bottom:325.872000px;}
.ya1{bottom:328.315974px;}
.y4{bottom:330.888000px;}
.y1e2{bottom:331.950880px;}
.y1a3{bottom:334.545000px;}
.yee{bottom:335.602465px;}
.y19f{bottom:337.138500px;}
.y71{bottom:338.287500px;}
.y4d{bottom:338.522887px;}
.y10a{bottom:338.584500px;}
.y191{bottom:338.613000px;}
.y1f5{bottom:339.349500px;}
.y97{bottom:340.089414px;}
.y65{bottom:342.028500px;}
.y11d{bottom:343.305000px;}
.y1b4{bottom:346.515269px;}
.y1c0{bottom:349.291483px;}
.y132{bottom:350.830500px;}
.yb3{bottom:351.382500px;}
.yed{bottom:351.872274px;}
.y13d{bottom:356.103000px;}
.y3{bottom:361.120500px;}
.ya8{bottom:361.172592px;}
.y64{bottom:362.182500px;}
.ye3{bottom:363.693213px;}
.y19e{bottom:363.799500px;}
.y7b{bottom:365.371500px;}
.y10{bottom:366.849866px;}
.yec{bottom:368.142083px;}
.y109{bottom:368.817000px;}
.y3d{bottom:369.726267px;}
.y2b{bottom:371.731500px;}
.y70{bottom:371.749500px;}
.y1b3{bottom:372.710702px;}
.y11c{bottom:373.536000px;}
.y1b0{bottom:374.117774px;}
.y17f{bottom:377.235000px;}
.y1d5{bottom:377.679572px;}
.y200{bottom:377.839335px;}
.y131{bottom:381.061500px;}
.y63{bottom:382.338000px;}
.y13c{bottom:386.334000px;}
.y52{bottom:388.077880px;}
.y1e3{bottom:390.740508px;}
.y15f{bottom:392.032500px;}
.ya7{bottom:392.040803px;}
.y2a{bottom:393.436500px;}
.y7d{bottom:397.261500px;}
.y1f4{bottom:399.813000px;}
.y17e{bottom:400.833000px;}
.y4e{bottom:400.921594px;}
.y62{bottom:402.492000px;}
.y6f{bottom:405.213000px;}
.yb2{bottom:411.846000px;}
.y142{bottom:412.108500px;}
.y13b{bottom:416.566500px;}
.y85{bottom:420.562500px;}
.y6d{bottom:420.604500px;}
.ya2{bottom:421.471239px;}
.y15e{bottom:422.263500px;}
.y61{bottom:422.646000px;}
.ya6{bottom:422.909015px;}
.y16b{bottom:424.771500px;}
.y115{bottom:426.303000px;}
.y7c{bottom:427.068000px;}
.y1f3{bottom:430.044000px;}
.y201{bottom:430.870521px;}
.y2{bottom:433.318500px;}
.y11b{bottom:433.999500px;}
.y190{bottom:436.762500px;}
.y114{bottom:439.824000px;}
.y84{bottom:440.716500px;}
.y6c{bottom:440.760000px;}
.yb1{bottom:442.077000px;}
.y60{bottom:442.800000px;}
.y1d6{bottom:442.997465px;}
.y3e{bottom:447.722638px;}
.y1e4{bottom:449.525731px;}
.y1cb{bottom:449.817000px;}
.y16a{bottom:455.004000px;}
.y9d{bottom:457.077382px;}
.y108{bottom:459.511500px;}
.y98{bottom:459.729681px;}
.y199{bottom:459.978000px;}
.y1f2{bottom:460.276500px;}
.y83{bottom:460.872000px;}
.y6b{bottom:460.914000px;}
.y5f{bottom:462.955500px;}
.y4f{bottom:463.320301px;}
.y11a{bottom:464.230500px;}
.y181{bottom:466.483500px;}
.y18f{bottom:466.993500px;}
.y11{bottom:471.380676px;}
.y130{bottom:471.756000px;}
.yac{bottom:472.411660px;}
.y221{bottom:472.777500px;}
.ya3{bottom:475.963575px;}
.y1ca{bottom:478.092000px;}
.yab{bottom:479.463225px;}
.y1da{bottom:479.557416px;}
.y29{bottom:480.744000px;}
.y82{bottom:481.026000px;}
.y6a{bottom:481.068000px;}
.y206{bottom:481.770338px;}
.y5e{bottom:483.109500px;}
.y202{bottom:483.901707px;}
.y9c{bottom:487.818750px;}
.y107{bottom:489.742500px;}
.y180{bottom:490.083000px;}
.y198{bottom:490.210500px;}
.y1f1{bottom:490.507500px;}
.y119{bottom:494.461500px;}
.y1d9{bottom:495.966180px;}
.y1cd{bottom:497.013000px;}
.y18e{bottom:497.226000px;}
.y53{bottom:498.187562px;}
.y81{bottom:501.180000px;}
.y69{bottom:501.222000px;}
.y12f{bottom:501.988500px;}
.y220{bottom:502.498500px;}
.yb0{bottom:502.540500px;}
.y5d{bottom:503.263500px;}
.yaa{bottom:506.338721px;}
.y13a{bottom:507.261000px;}
.y1e5{bottom:508.310954px;}
.y1d7{bottom:508.315359px;}
.ya9{bottom:513.390286px;}
.ya4{bottom:514.626504px;}
.y57{bottom:517.039500px;}
.y9b{bottom:517.137751px;}
.ybd{bottom:517.294500px;}
.y106{bottom:519.973500px;}
.y197{bottom:520.441500px;}
.y1f0{bottom:520.738500px;}
.y80{bottom:521.334000px;}
.y68{bottom:521.377500px;}
.y5c{bottom:523.417500px;}
.y1cc{bottom:525.288000px;}
.y3f{bottom:525.719008px;}
.y18d{bottom:527.457000px;}
.y91{bottom:530.817000px;}
.y12e{bottom:532.219500px;}
.yaf{bottom:532.771500px;}
.y203{bottom:536.924571px;}
.y139{bottom:537.492000px;}
.y1b1{bottom:540.947194px;}
.y7f{bottom:541.488000px;}
.y67{bottom:541.531500px;}
.y12b{bottom:542.353500px;}
.y5b{bottom:543.571500px;}
.y99{bottom:544.615801px;}
.y1c5{bottom:546.804000px;}
.y56{bottom:547.272000px;}
.y1ab{bottom:548.760000px;}
.y21a{bottom:550.588500px;}
.y196{bottom:550.672500px;}
.ybe{bottom:551.055000px;}
.y216{bottom:552.714000px;}
.y8{bottom:555.903000px;}
.y90{bottom:556.158000px;}
.y18c{bottom:557.688000px;}
.yda{bottom:559.899000px;}
.y7e{bottom:561.643500px;}
.y66{bottom:561.685500px;}
.y147{bottom:562.491000px;}
.y1c4{bottom:562.960500px;}
.yae{bottom:563.004000px;}
.y5a{bottom:563.727000px;}
.y128{bottom:568.872000px;}
.y123{bottom:568.914000px;}
.y118{bottom:568.956000px;}
.y211{bottom:571.677000px;}
.y12a{bottom:574.494000px;}
.y215{bottom:576.312000px;}
.y25{bottom:576.652500px;}
.y146{bottom:580.378500px;}
.y195{bottom:580.905000px;}
.y20e{bottom:581.074500px;}
.y1ef{bottom:581.202000px;}
.y59{bottom:583.881000px;}
.y105{bottom:586.389000px;}
.y18b{bottom:587.920500px;}
.y18{bottom:589.536000px;}
.y204{bottom:589.955758px;}
.y145{bottom:593.512500px;}
.y141{bottom:599.017500px;}
.y137{bottom:599.061000px;}
.y127{bottom:599.103000px;}
.y122{bottom:599.145000px;}
.y117{bottom:599.188500px;}
.y188{bottom:599.400000px;}
.y7{bottom:599.485500px;}
.y166{bottom:599.527500px;}
.y21d{bottom:601.356000px;}
.y210{bottom:601.909500px;}
.y28{bottom:603.465000px;}
.y1aa{bottom:603.780000px;}
.y1e9{bottom:605.268000px;}
.y21b{bottom:607.989000px;}
.y1a6{bottom:608.371500px;}
.y194{bottom:611.136000px;}
.y20d{bottom:611.305500px;}
.y1ee{bottom:611.433000px;}
.y113{bottom:612.072000px;}
.y144{bottom:614.458500px;}
.y213{bottom:617.004000px;}
.y23{bottom:620.617500px;}
.y1b9{bottom:621.255000px;}
.yad{bottom:621.340500px;}
.y104{bottom:623.296500px;}
.y1e{bottom:624.870000px;}
.y1b7{bottom:625.507500px;}
.y112{bottom:625.593000px;}
.y19{bottom:629.206500px;}
.y140{bottom:629.250000px;}
.y136{bottom:629.292000px;}
.y126{bottom:629.334000px;}
.y121{bottom:629.377500px;}
.y116{bottom:629.419500px;}
.y17d{bottom:629.632500px;}
.y16c{bottom:629.674500px;}
.y167{bottom:629.716500px;}
.y157{bottom:629.760000px;}
.y8f{bottom:630.184500px;}
.y214{bottom:631.672500px;}
.y58{bottom:632.481000px;}
.y138{bottom:634.011000px;}
.y1e8{bottom:635.499000px;}
.y43{bottom:635.542500px;}
.y2e{bottom:635.628000px;}
.y6e{bottom:636.094500px;}
.y21c{bottom:637.540500px;}
.y1a5{bottom:638.604000px;}
.y148{bottom:647.872500px;}
.y212{bottom:648.978000px;}
.h7{height:23.088000px;}
.h35{height:29.524454px;}
.h45{height:35.176723px;}
.h44{height:35.317242px;}
.h4e{height:36.231762px;}
.h36{height:38.117304px;}
.h8{height:39.823570px;}
.h59{height:39.900300px;}
.h13{height:41.284816px;}
.h5a{height:41.864147px;}
.h3d{height:42.221498px;}
.h5d{height:42.838988px;}
.h14{height:44.206195px;}
.h3b{height:45.747689px;}
.h42{height:45.762666px;}
.h3c{height:45.871415px;}
.h3f{height:45.886433px;}
.h4c{height:46.795125px;}
.h37{height:47.093521px;}
.h10{height:47.294355px;}
.h34{height:47.950126px;}
.h1a{height:48.588820px;}
.h17{height:48.911029px;}
.h16{height:48.944011px;}
.h62{height:50.585402px;}
.h4a{height:51.244020px;}
.h5{height:52.975863px;}
.h64{height:53.224660px;}
.h28{height:53.501438px;}
.h5e{height:53.545584px;}
.h5c{height:53.548735px;}
.h4b{height:54.800484px;}
.h63{height:54.901546px;}
.ha{height:55.163997px;}
.h43{height:55.370379px;}
.h11{height:56.778240px;}
.h57{height:56.982764px;}
.h55{height:56.986066px;}
.h2b{height:57.425434px;}
.h49{height:57.888645px;}
.hb{height:57.961608px;}
.h3e{height:60.108673px;}
.h41{height:60.128346px;}
.h3a{height:60.180327px;}
.h40{height:60.200029px;}
.hc{height:61.864816px;}
.h32{height:61.869393px;}
.h33{height:61.946723px;}
.h38{height:61.950747px;}
.h46{height:65.770301px;}
.h29{height:66.247441px;}
.h50{height:66.300457px;}
.h2f{height:67.983242px;}
.h56{height:68.383280px;}
.h2e{height:68.910521px;}
.h2a{height:69.264000px;}
.h5f{height:69.265136px;}
.hf{height:69.977312px;}
.h2d{height:70.294430px;}
.h51{height:70.349045px;}
.h1e{height:70.630066px;}
.h2c{height:71.207539px;}
.h66{height:72.878238px;}
.h4f{height:73.600488px;}
.h54{height:73.715652px;}
.he{height:74.261637px;}
.h65{height:75.140812px;}
.h12{height:76.087154px;}
.h22{height:76.805415px;}
.h68{height:77.466797px;}
.h30{height:78.514530px;}
.h18{height:79.207031px;}
.h4{height:79.523438px;}
.h1b{height:79.596446px;}
.h1c{height:79.618246px;}
.h1d{height:79.619890px;}
.h47{height:84.409711px;}
.h60{height:87.913160px;}
.hd{height:88.065018px;}
.h48{height:88.137035px;}
.h26{height:90.926281px;}
.h25{height:92.166498px;}
.h24{height:92.166706px;}
.h67{height:94.668729px;}
.h23{height:95.238715px;}
.h19{height:96.795393px;}
.h27{height:105.011675px;}
.h3{height:106.071012px;}
.h6{height:114.383754px;}
.h1f{height:120.900809px;}
.h20{height:157.464809px;}
.h39{height:240.576000px;}
.h4d{height:264.004500px;}
.h52{height:344.271053px;}
.h31{height:406.274997px;}
.h58{height:408.316489px;}
.h5b{height:528.604479px;}
.h9{height:544.549478px;}
.h15{height:547.568987px;}
.h53{height:562.535977px;}
.h21{height:575.587500px;}
.h61{height:612.538499px;}
.h2{height:669.556500px;}
.h0{height:669.600000px;}
.h1{height:669.750000px;}
.w7{width:195.930000px;}
.w5{width:410.399997px;}
.w9{width:427.747488px;}
.wa{width:529.284000px;}
.wc{width:571.676987px;}
.w6{width:628.567500px;}
.w8{width:672.873000px;}
.wd{width:704.764500px;}
.wb{width:750.004500px;}
.w4{width:762.888000px;}
.we{width:842.399968px;}
.w2{width:1190.125500px;}
.w3{width:1190.167500px;}
.w0{width:1190.168504px;}
.w1{width:1190.250000px;}
.x44{left:-595.813482px;}
.x43{left:-581.280158px;}
.x41{left:-549.519418px;}
.x49{left:-517.180704px;}
.x45{left:-461.019178px;}
.x42{left:-438.229307px;}
.x53{left:-48.305683px;}
.x52{left:-37.221293px;}
.x50{left:-12.997761px;}
.x0{left:0.000000px;}
.x26{left:3.486000px;}
.x38{left:5.230500px;}
.xa9{left:7.866000px;}
.xaa{left:9.525000px;}
.x5{left:10.630500px;}
.x59{left:11.666584px;}
.x11{left:12.883500px;}
.x12{left:15.180000px;}
.xd{left:16.463555px;}
.xc5{left:17.525312px;}
.x1{left:18.624000px;}
.x7{left:20.369110px;}
.x6f{left:22.052629px;}
.x9c{left:23.386500px;}
.xbf{left:24.874500px;}
.xce{left:26.362500px;}
.x27{left:27.440470px;}
.x2{left:29.253000px;}
.x23{left:31.209000px;}
.x5e{left:32.830499px;}
.x2e{left:34.163349px;}
.xd0{left:35.410011px;}
.xe2{left:36.652500px;}
.x8{left:38.563988px;}
.x28{left:42.794259px;}
.x48{left:44.439608px;}
.x3{left:45.580500px;}
.xa2{left:46.878000px;}
.x7f{left:49.595223px;}
.x2f{left:53.191058px;}
.x54{left:54.500300px;}
.x24{left:56.721000px;}
.x5f{left:60.542552px;}
.xb5{left:62.014500px;}
.x22{left:64.630500px;}
.x17{left:68.881500px;}
.x51{left:71.881858px;}
.xc8{left:73.474500px;}
.x46{left:76.200347px;}
.xd7{left:77.978916px;}
.x32{left:87.336000px;}
.xc7{left:89.079000px;}
.x7b{left:91.073662px;}
.x16{left:102.642000px;}
.x72{left:107.276194px;}
.x80{left:111.386123px;}
.xc2{left:122.269484px;}
.x78{left:129.947320px;}
.x89{left:134.087771px;}
.xc3{left:140.157091px;}
.x8b{left:143.128770px;}
.x8c{left:147.530216px;}
.x79{left:150.749729px;}
.x7a{left:155.279177px;}
.x7c{left:157.197933px;}
.x8d{left:160.137876px;}
.x7d{left:161.727380px;}
.x73{left:163.423134px;}
.x4a{left:164.700588px;}
.x75{left:166.190851px;}
.x74{left:167.952581px;}
.x76{left:169.810079px;}
.x77{left:174.339526px;}
.x4b{left:182.805420px;}
.x8a{left:187.166596px;}
.x2a{left:193.813410px;}
.x31{left:197.909363px;}
.x60{left:199.147638px;}
.x61{left:203.677085px;}
.xd6{left:210.600000px;}
.xa4{left:214.794000px;}
.xa3{left:219.381000px;}
.x81{left:221.763587px;}
.xa5{left:223.033500px;}
.x82{left:226.165033px;}
.x8e{left:231.273954px;}
.x8f{left:235.675400px;}
.x6c{left:241.805757px;}
.xd2{left:248.466927px;}
.x39{left:250.569000px;}
.xbe{left:254.481000px;}
.x3b{left:264.430500px;}
.x6{left:270.340500px;}
.x3a{left:273.316500px;}
.x3e{left:276.378000px;}
.x83{left:279.153041px;}
.x84{left:283.554487px;}
.xcf{left:285.732000px;}
.xbd{left:293.301000px;}
.x47{left:294.865393px;}
.x6b{left:297.013839px;}
.xdc{left:304.951500px;}
.x6d{left:306.198091px;}
.x6e{left:308.985168px;}
.x70{left:324.351294px;}
.x67{left:326.075675px;}
.x2d{left:334.250680px;}
.x85{left:336.542496px;}
.x86{left:340.943942px;}
.x71{left:346.099267px;}
.x34{left:347.470500px;}
.x62{left:351.254958px;}
.xa6{left:353.491500px;}
.x63{left:355.784405px;}
.x30{left:361.465833px;}
.xe{left:363.959561px;}
.x33{left:367.753500px;}
.x29{left:369.657739px;}
.x68{left:378.741160px;}
.x69{left:381.528238px;}
.xda{left:382.924202px;}
.xa7{left:384.405000px;}
.x87{left:393.931951px;}
.xc{left:396.658848px;}
.x88{left:398.333397px;}
.xf{left:418.692000px;}
.x58{left:428.923200px;}
.x6a{left:431.423339px;}
.x3f{left:436.890000px;}
.x57{left:440.007590px;}
.x3c{left:441.141000px;}
.x55{left:464.231121px;}
.x64{left:489.860044px;}
.x65{left:494.389491px;}
.xd9{left:498.793603px;}
.x5d{left:517.252500px;}
.xb{left:526.592978px;}
.x5a{left:531.729183px;}
.xa{left:544.339660px;}
.x5b{left:545.537519px;}
.x40{left:556.114500px;}
.xc9{left:559.474500px;}
.xbb{left:573.378000px;}
.x9d{left:577.386000px;}
.xd1{left:582.853456px;}
.x4c{left:587.281500px;}
.xca{left:589.578000px;}
.xa1{left:594.721500px;}
.x35{left:605.140500px;}
.x25{left:608.881500px;}
.x36{left:612.666000px;}
.xcd{left:614.070000px;}
.xac{left:618.874500px;}
.x1b{left:625.890000px;}
.xab{left:627.888000px;}
.x56{left:631.004302px;}
.x10{left:634.947000px;}
.x99{left:637.242000px;}
.x4f{left:641.068500px;}
.x37{left:645.279000px;}
.x66{left:646.496811px;}
.xba{left:664.369500px;}
.x9b{left:674.872500px;}
.x2b{left:677.125500px;}
.x18{left:679.890000px;}
.xa0{left:684.141000px;}
.xbc{left:696.685500px;}
.xd3{left:698.810616px;}
.xc6{left:704.125500px;}
.x9f{left:709.728000px;}
.x4e{left:712.630500px;}
.x9{left:714.780760px;}
.xaf{left:721.176000px;}
.x1e{left:729.490500px;}
.x7e{left:737.503500px;}
.xae{left:739.672500px;}
.xdf{left:744.009000px;}
.xdd{left:748.134000px;}
.xad{left:751.705500px;}
.xd8{left:753.790483px;}
.x19{left:757.659000px;}
.x90{left:759.019500px;}
.x97{left:767.755500px;}
.x14{left:769.435500px;}
.x15{left:771.052500px;}
.x2c{left:775.813500px;}
.x9e{left:804.997500px;}
.xc0{left:816.378000px;}
.xd4{left:820.630500px;}
.xb0{left:829.813500px;}
.x13{left:832.110000px;}
.xb1{left:836.446500px;}
.x3d{left:845.079000px;}
.xb2{left:846.525000px;}
.xe0{left:851.116500px;}
.x96{left:864.850500px;}
.xc1{left:874.630500px;}
.xc4{left:877.393500px;}
.xe1{left:883.431000px;}
.x95{left:884.962500px;}
.xb7{left:899.419500px;}
.x98{left:903.196500px;}
.x21{left:907.338000px;}
.xb9{left:913.450500px;}
.xb6{left:915.534000px;}
.xb8{left:925.186500px;}
.xb4{left:940.153500px;}
.x1d{left:943.402500px;}
.xb3{left:949.549500px;}
.x1c{left:952.653000px;}
.x4d{left:963.283500px;}
.xd5{left:982.630500px;}
.x1f{left:984.310500px;}
.xcb{left:986.967000px;}
.xde{left:988.030500px;}
.x92{left:989.986500px;}
.xcc{left:991.176000px;}
.x20{left:997.146000px;}
.x94{left:1011.246000px;}
.xdb{left:1017.580500px;}
.x91{left:1021.833000px;}
.x4{left:1023.916500px;}
.x5c{left:1030.677000px;}
.x93{left:1044.793500px;}
.x1a{left:1079.362500px;}
.xa8{left:1097.646000px;}
.x9a{left:1161.645000px;}
@media print{
.vc{vertical-align:-23.130667pt;}
.v4{vertical-align:-18.293333pt;}
.v9{vertical-align:-16.385081pt;}
.v1{vertical-align:-15.257760pt;}
.v5{vertical-align:-12.875294pt;}
.v10{vertical-align:-11.020279pt;}
.v13{vertical-align:-6.789333pt;}
.v2{vertical-align:-5.258667pt;}
.v6{vertical-align:-4.160000pt;}
.v3{vertical-align:-1.061333pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:13.316054pt;}
.v14{vertical-align:16.373333pt;}
.vd{vertical-align:18.745862pt;}
.ve{vertical-align:21.734876pt;}
.v11{vertical-align:23.492150pt;}
.vb{vertical-align:25.072231pt;}
.v7{vertical-align:28.874667pt;}
.va{vertical-align:33.033533pt;}
.vf{vertical-align:34.757333pt;}
.v8{vertical-align:61.376000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.009557pt;}
.ls2e{letter-spacing:0.011473pt;}
.ls39{letter-spacing:0.012529pt;}
.ls17{letter-spacing:0.012531pt;}
.ls1d{letter-spacing:0.015346pt;}
.ls35{letter-spacing:0.016000pt;}
.ls31{letter-spacing:0.017676pt;}
.ls28{letter-spacing:0.023902pt;}
.ls38{letter-spacing:0.028009pt;}
.ls18{letter-spacing:0.031969pt;}
.ls5{letter-spacing:0.034357pt;}
.ls7{letter-spacing:0.035764pt;}
.lsb{letter-spacing:0.037225pt;}
.ls21{letter-spacing:0.039355pt;}
.ls9{letter-spacing:0.042539pt;}
.ls1{letter-spacing:0.044078pt;}
.ls37{letter-spacing:0.044081pt;}
.ls24{letter-spacing:0.048175pt;}
.ls23{letter-spacing:0.049351pt;}
.ls2f{letter-spacing:0.049771pt;}
.ls2c{letter-spacing:0.050487pt;}
.ls33{letter-spacing:0.050876pt;}
.ls4{letter-spacing:0.051501pt;}
.ls10{letter-spacing:0.052637pt;}
.ls26{letter-spacing:0.053579pt;}
.ls13{letter-spacing:0.063165pt;}
.ls12{letter-spacing:0.064707pt;}
.ls22{letter-spacing:0.067237pt;}
.ls14{letter-spacing:0.067525pt;}
.ls16{letter-spacing:0.070250pt;}
.ls2{letter-spacing:0.070993pt;}
.ls30{letter-spacing:0.078684pt;}
.ls2d{letter-spacing:0.080685pt;}
.ls11{letter-spacing:0.089929pt;}
.ls6{letter-spacing:0.106736pt;}
.ls1c{letter-spacing:0.107914pt;}
.lsa{letter-spacing:0.113152pt;}
.ls32{letter-spacing:0.127904pt;}
.ls8{letter-spacing:0.155524pt;}
.ls34{letter-spacing:0.257881pt;}
.lsd{letter-spacing:0.299144pt;}
.lsc{letter-spacing:0.304273pt;}
.ls2a{letter-spacing:2.313263pt;}
.ls1a{letter-spacing:3.093945pt;}
.ls36{letter-spacing:3.766410pt;}
.ls1f{letter-spacing:4.828288pt;}
.ls20{letter-spacing:12.075143pt;}
.lsf{letter-spacing:16.150272pt;}
.ls29{letter-spacing:24.988292pt;}
.ls25{letter-spacing:26.167632pt;}
.ls2b{letter-spacing:28.176260pt;}
.ls19{letter-spacing:33.421361pt;}
.ls15{letter-spacing:34.309752pt;}
.ls1b{letter-spacing:36.943369pt;}
.ls3{letter-spacing:54.897968pt;}
.ls1e{letter-spacing:56.378891pt;}
.lse{letter-spacing:458.423739pt;}
.ws35{word-spacing:-59.182464pt;}
.ws26{word-spacing:-45.049736pt;}
.ws0{word-spacing:-35.469296pt;}
.ws27{word-spacing:-32.496901pt;}
.wsb{word-spacing:-29.672608pt;}
.ws34{word-spacing:-29.397456pt;}
.ws29{word-spacing:-28.225931pt;}
.ws14{word-spacing:-27.199358pt;}
.wsd{word-spacing:-26.592000pt;}
.ws32{word-spacing:-24.832496pt;}
.ws16{word-spacing:-24.668762pt;}
.ws2e{word-spacing:-23.618128pt;}
.ws2d{word-spacing:-22.170341pt;}
.ws17{word-spacing:-22.152613pt;}
.ws2{word-spacing:-21.496489pt;}
.ws2f{word-spacing:-21.134685pt;}
.ws10{word-spacing:-20.721716pt;}
.ws4{word-spacing:-20.687099pt;}
.ws3{word-spacing:-20.458926pt;}
.ws1e{word-spacing:-20.336261pt;}
.ws6{word-spacing:-19.062032pt;}
.ws5{word-spacing:-18.670667pt;}
.ws39{word-spacing:-18.617872pt;}
.ws20{word-spacing:-18.444199pt;}
.ws2b{word-spacing:-18.324843pt;}
.ws9{word-spacing:-18.152091pt;}
.ws8{word-spacing:-18.139859pt;}
.wsa{word-spacing:-17.714704pt;}
.ws15{word-spacing:-17.650376pt;}
.ws2a{word-spacing:-16.396923pt;}
.wsc{word-spacing:-16.247712pt;}
.ws1a{word-spacing:-15.804202pt;}
.ws30{word-spacing:-15.526349pt;}
.ws37{word-spacing:-15.381995pt;}
.ws36{word-spacing:-15.008673pt;}
.ws31{word-spacing:-14.798008pt;}
.ws7{word-spacing:-14.782197pt;}
.ws2c{word-spacing:-13.316683pt;}
.ws1f{word-spacing:-13.196733pt;}
.ws33{word-spacing:-12.710121pt;}
.ws28{word-spacing:-10.357584pt;}
.ws11{word-spacing:-4.440298pt;}
.ws1b{word-spacing:-3.319897pt;}
.ws38{word-spacing:-0.085264pt;}
.ws21{word-spacing:-0.057962pt;}
.ws23{word-spacing:-0.056328pt;}
.ws25{word-spacing:-0.056309pt;}
.ws22{word-spacing:-0.046369pt;}
.ws24{word-spacing:-0.045064pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.461179pt;}
.ws12{word-spacing:0.616818pt;}
.ws19{word-spacing:2.350331pt;}
.wsf{word-spacing:3.143522pt;}
.ws1d{word-spacing:4.098138pt;}
.ws13{word-spacing:5.481181pt;}
.ws18{word-spacing:23.095883pt;}
.wse{word-spacing:30.890300pt;}
._3{margin-left:-714.279500pt;}
._8{margin-left:-392.589069pt;}
._10{margin-left:-370.772203pt;}
._e{margin-left:-361.180798pt;}
._33{margin-left:-354.611378pt;}
._f{margin-left:-343.429542pt;}
._d{margin-left:-333.780876pt;}
._34{margin-left:-324.743267pt;}
._31{margin-left:-284.499875pt;}
._32{margin-left:-262.256181pt;}
._2f{margin-left:-50.342891pt;}
._37{margin-left:-11.520000pt;}
._b{margin-left:-10.560000pt;}
._11{margin-left:-8.776904pt;}
._9{margin-left:-7.526224pt;}
._5{margin-left:-6.457435pt;}
._1{margin-left:-4.896000pt;}
._c{margin-left:-3.994406pt;}
._4{margin-left:-2.904264pt;}
._0{margin-left:-1.728000pt;}
._2{width:1.328000pt;}
._7{width:2.573381pt;}
._2e{width:3.799485pt;}
._20{width:4.893322pt;}
._a{width:6.121952pt;}
._25{width:45.373183pt;}
._2c{width:47.748831pt;}
._2b{width:58.583076pt;}
._17{width:60.685760pt;}
._1e{width:63.863144pt;}
._2a{width:72.768329pt;}
._1d{width:78.353739pt;}
._24{width:85.799515pt;}
._29{width:92.148775pt;}
._1c{width:97.326241pt;}
._16{width:114.755203pt;}
._28{width:120.232690pt;}
._1b{width:123.247217pt;}
._1a{width:160.808912pt;}
._27{width:164.632634pt;}
._23{width:193.902056pt;}
._22{width:210.522993pt;}
._2d{width:212.381465pt;}
._19{width:220.192985pt;}
._26{width:245.662695pt;}
._15{width:259.340274pt;}
._14{width:281.570458pt;}
._1f{width:284.056129pt;}
._36{width:285.249580pt;}
._35{width:303.569478pt;}
._12{width:322.225893pt;}
._18{width:328.569134pt;}
._30{width:336.288174pt;}
._6{width:464.273163pt;}
._21{width:571.498645pt;}
._13{width:764.368458pt;}
.fs10{font-size:33.562667pt;}
.fs18{font-size:34.170667pt;}
.fs2b{font-size:35.665314pt;}
.fs38{font-size:35.722667pt;}
.fs46{font-size:37.345131pt;}
.fs31{font-size:37.392000pt;}
.fs45{font-size:39.183215pt;}
.fs49{font-size:40.095018pt;}
.fs32{font-size:42.634667pt;}
.fsa{font-size:43.168000pt;}
.fs20{font-size:43.237333pt;}
.fs3b{font-size:43.738667pt;}
.fs2e{font-size:45.049736pt;}
.fs30{font-size:45.064484pt;}
.fs14{font-size:45.778823pt;}
.fs15{font-size:45.809693pt;}
.fs2a{font-size:46.369480pt;}
.fs43{font-size:46.681414pt;}
.fs50{font-size:47.345971pt;}
.fs28{font-size:47.641634pt;}
.fs4{font-size:48.074667pt;}
.fs44{font-size:48.979019pt;}
.fs21{font-size:49.605333pt;}
.fs4b{font-size:50.116587pt;}
.fs48{font-size:50.119536pt;}
.fs8{font-size:51.631358pt;}
.fs40{font-size:53.336745pt;}
.fs11{font-size:53.365333pt;}
.fs7{font-size:54.249813pt;}
.fs51{font-size:55.530667pt;}
.fs2d{font-size:56.309078pt;}
.fs2f{font-size:56.327513pt;}
.fs3a{font-size:56.490667pt;}
.fsd{font-size:57.093333pt;}
.fs27{font-size:57.169961pt;}
.fs13{font-size:57.223529pt;}
.fs12{font-size:57.262116pt;}
.fs29{font-size:57.961846pt;}
.fs2c{font-size:57.965611pt;}
.fs26{font-size:58.318087pt;}
.fs17{font-size:58.656000pt;}
.fs4d{font-size:59.182464pt;}
.fs35{font-size:59.194667pt;}
.fs37{font-size:61.861333pt;}
.fs4f{font-size:62.270268pt;}
.fs4a{font-size:62.645733pt;}
.fs47{font-size:62.649420pt;}
.fs1f{font-size:63.719770pt;}
.fs2{font-size:63.952000pt;}
.fs4e{font-size:64.232143pt;}
.fs5{font-size:64.539197pt;}
.fs39{font-size:66.154667pt;}
.fs42{font-size:66.667067pt;}
.fs3f{font-size:66.670931pt;}
.fs6{font-size:67.812267pt;}
.fs23{font-size:68.059774pt;}
.fs53{font-size:68.197333pt;}
.fse{font-size:68.816000pt;}
.fs36{font-size:69.882667pt;}
.fs9{font-size:74.682667pt;}
.fs1e{font-size:76.463724pt;}
.fs1d{font-size:76.463897pt;}
.fs33{font-size:79.397333pt;}
.fs22{font-size:79.973333pt;}
.fs41{font-size:80.005117pt;}
.fs3d{font-size:80.037333pt;}
.fs24{font-size:81.671729pt;}
.fs25{font-size:83.311917pt;}
.fs19{font-size:85.264000pt;}
.fsc{font-size:89.648000pt;}
.fs52{font-size:90.709333pt;}
.fs1a{font-size:91.028640pt;}
.fs3c{font-size:91.146667pt;}
.fsf{font-size:92.218667pt;}
.fs1{font-size:96.000000pt;}
.fs34{font-size:101.898667pt;}
.fs4c{font-size:106.128000pt;}
.fsb{font-size:106.736000pt;}
.fs1b{font-size:109.234368pt;}
.fs1c{font-size:109.234614pt;}
.fs16{font-size:117.317333pt;}
.fs0{font-size:128.048000pt;}
.fs3{font-size:138.634667pt;}
.fs3e{font-size:426.634667pt;}
.ycb{bottom:-286.620134pt;}
.yc1{bottom:-285.504186pt;}
.yc0{bottom:-263.462301pt;}
.yc2{bottom:-253.569307pt;}
.ycc{bottom:-225.459473pt;}
.yc3{bottom:-209.810230pt;}
.yd2{bottom:-150.529246pt;}
.yc7{bottom:-150.283111pt;}
.ycd{bottom:-143.617674pt;}
.yce{bottom:-81.706744pt;}
.yc4{bottom:-73.882123pt;}
.yd5{bottom:-59.870256pt;}
.yd4{bottom:-39.355262pt;}
.ycf{bottom:-19.795814pt;}
.yd3{bottom:-18.840268pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y1dc{bottom:3.410906pt;}
.y1b6{bottom:3.629855pt;}
.yca{bottom:3.868007pt;}
.yb{bottom:4.913333pt;}
.y103{bottom:4.920729pt;}
.yc5{bottom:5.630723pt;}
.yd9{bottom:14.059159pt;}
.y1c3{bottom:14.672870pt;}
.y17{bottom:16.034398pt;}
.yd0{bottom:16.419759pt;}
.y9e{bottom:17.768699pt;}
.y42{bottom:17.998590pt;}
.y20a{bottom:18.602192pt;}
.yd8{bottom:18.745624pt;}
.y94{bottom:19.261258pt;}
.yeb{bottom:19.939693pt;}
.y1d8{bottom:21.641887pt;}
.y1b2{bottom:23.031095pt;}
.y35{bottom:23.357333pt;}
.yc9{bottom:24.298700pt;}
.y14d{bottom:24.528000pt;}
.yf8{bottom:25.984357pt;}
.yf1{bottom:26.456000pt;}
.y165{bottom:27.629333pt;}
.y15d{bottom:27.666667pt;}
.y77{bottom:27.704000pt;}
.y175{bottom:27.742667pt;}
.y47{bottom:27.893333pt;}
.y45{bottom:27.930667pt;}
.ybc{bottom:28.573333pt;}
.y156{bottom:28.725333pt;}
.y1a2{bottom:28.913333pt;}
.y92{bottom:30.462667pt;}
.y1c1{bottom:30.970519pt;}
.y189{bottom:31.333333pt;}
.y17c{bottom:31.370667pt;}
.y26{bottom:32.126667pt;}
.y1a9{bottom:32.277333pt;}
.y1dd{bottom:33.795875pt;}
.y219{bottom:34.016000pt;}
.y1a{bottom:34.772000pt;}
.y12{bottom:34.815305pt;}
.y8b{bottom:35.452000pt;}
.y1ae{bottom:35.967665pt;}
.yd7{bottom:36.607062pt;}
.y20f{bottom:37.682667pt;}
.y217{bottom:37.909333pt;}
.y40{bottom:37.990226pt;}
.y1ad{bottom:38.136000pt;}
.y22{bottom:38.892000pt;}
.y1a4{bottom:39.194667pt;}
.y205{bottom:39.264270pt;}
.y20c{bottom:39.761333pt;}
.yf2{bottom:40.026776pt;}
.y1e7{bottom:40.668000pt;}
.y155{bottom:40.744000pt;}
.yd6{bottom:41.293527pt;}
.ye4{bottom:41.590973pt;}
.y1f9{bottom:41.840000pt;}
.y1b8{bottom:41.877333pt;}
.yd1{bottom:42.115117pt;}
.yc8{bottom:43.784090pt;}
.y8e{bottom:44.372000pt;}
.yc{bottom:44.409333pt;}
.y1ac{bottom:45.052000pt;}
.y1d0{bottom:45.409511pt;}
.y46{bottom:45.808000pt;}
.y44{bottom:45.846667pt;}
.ybb{bottom:47.017333pt;}
.yd{bottom:47.335909pt;}
.y34{bottom:48.454667pt;}
.y1ed{bottom:48.642667pt;}
.y93{bottom:48.741856pt;}
.y31{bottom:49.512000pt;}
.y38{bottom:50.910667pt;}
.y39{bottom:51.317984pt;}
.y218{bottom:51.930667pt;}
.y17b{bottom:52.233333pt;}
.y129{bottom:52.472000pt;}
.y1fa{bottom:53.038988pt;}
.y1a1{bottom:55.786667pt;}
.y21f{bottom:55.937333pt;}
.y1ec{bottom:56.050667pt;}
.y10f{bottom:56.429333pt;}
.y164{bottom:57.185333pt;}
.y15c{bottom:57.222667pt;}
.y76{bottom:57.260000pt;}
.y174{bottom:57.298667pt;}
.y8a{bottom:59.150667pt;}
.y222{bottom:60.661333pt;}
.y15{bottom:61.732184pt;}
.y95{bottom:61.973545pt;}
.yc6{bottom:62.045985pt;}
.y87{bottom:64.970667pt;}
.y1bb{bottom:66.255832pt;}
.y20b{bottom:66.633333pt;}
.y18a{bottom:66.860000pt;}
.y208{bottom:67.154006pt;}
.y223{bottom:67.842667pt;}
.yf3{bottom:68.006032pt;}
.y8d{bottom:68.069333pt;}
.y1cf{bottom:71.017333pt;}
.y21{bottom:72.378667pt;}
.y17a{bottom:73.096000pt;}
.y33{bottom:74.004000pt;}
.ydc{bottom:74.585713pt;}
.y14c{bottom:74.684000pt;}
.y30{bottom:75.061333pt;}
.yfc{bottom:75.504604pt;}
.y4a{bottom:79.047163pt;}
.y14{bottom:80.513090pt;}
.y21e{bottom:82.356000pt;}
.y89{bottom:82.848000pt;}
.y207{bottom:84.376103pt;}
.y1a8{bottom:86.022667pt;}
.y1de{bottom:86.049406pt;}
.yfd{bottom:86.442642pt;}
.y163{bottom:89.386667pt;}
.y15b{bottom:89.424000pt;}
.y75{bottom:89.461333pt;}
.y173{bottom:89.500000pt;}
.y1c9{bottom:89.650667pt;}
.y125{bottom:90.180000pt;}
.yfe{bottom:90.353758pt;}
.y8c{bottom:91.768000pt;}
.y86{bottom:91.842667pt;}
.y32{bottom:94.980000pt;}
.yf4{bottom:95.985288pt;}
.y2f{bottom:96.038667pt;}
.yb9{bottom:97.361333pt;}
.y20{bottom:97.512000pt;}
.y10e{bottom:98.457333pt;}
.y13{bottom:99.293997pt;}
.y9f{bottom:99.569908pt;}
.y1fb{bottom:100.177820pt;}
.y14b{bottom:101.556000pt;}
.y1b5{bottom:101.773176pt;}
.y1d1{bottom:103.469861pt;}
.ybf{bottom:104.881333pt;}
.y179{bottom:105.752000pt;}
.y172{bottom:105.826667pt;}
.y88{bottom:106.545333pt;}
.y1d{bottom:106.621333pt;}
.y1eb{bottom:109.796000pt;}
.ydd{bottom:110.113876pt;}
.y1c8{bottom:114.785333pt;}
.y1bc{bottom:115.102097pt;}
.y19d{bottom:115.956000pt;}
.y124{bottom:117.052000pt;}
.yff{bottom:119.948944pt;}
.y96{bottom:120.500469pt;}
.y3a{bottom:120.648091pt;}
.yfb{bottom:121.222501pt;}
.y1ba{bottom:121.889333pt;}
.y162{bottom:122.041333pt;}
.y15a{bottom:122.078667pt;}
.y74{bottom:122.117333pt;}
.y171{bottom:122.154667pt;}
.y1f{bottom:122.646667pt;}
.y100{bottom:123.860060pt;}
.yf5{bottom:124.017335pt;}
.y1f8{bottom:124.082667pt;}
.yb8{bottom:124.233333pt;}
.y10d{bottom:125.329333pt;}
.y1c{bottom:126.464000pt;}
.y78{bottom:127.974667pt;}
.y14a{bottom:128.429333pt;}
.y37{bottom:128.844000pt;}
.y4b{bottom:134.512681pt;}
.y49{bottom:135.118667pt;}
.ya{bottom:136.252000pt;}
.y1ea{bottom:136.668000pt;}
.y27{bottom:137.208000pt;}
.y1df{bottom:138.302938pt;}
.y161{bottom:138.369333pt;}
.y159{bottom:138.406667pt;}
.y73{bottom:138.444000pt;}
.y170{bottom:138.482667pt;}
.y19c{bottom:139.654667pt;}
.ye{bottom:140.252185pt;}
.y36{bottom:143.736000pt;}
.y101{bottom:144.201715pt;}
.y12d{bottom:144.406667pt;}
.yde{bottom:145.642040pt;}
.y183{bottom:145.738667pt;}
.y1b{bottom:146.305333pt;}
.y1a7{bottom:146.646667pt;}
.y1fc{bottom:147.309255pt;}
.y187{bottom:147.856000pt;}
.y102{bottom:148.112831pt;}
.y50{bottom:149.200414pt;}
.y169{bottom:150.198667pt;}
.yf6{bottom:151.996591pt;}
.yfa{bottom:151.996595pt;}
.y9{bottom:154.168000pt;}
.y160{bottom:154.696000pt;}
.y158{bottom:154.734667pt;}
.y72{bottom:154.772000pt;}
.y149{bottom:155.301333pt;}
.y1db{bottom:155.411675pt;}
.y1d2{bottom:161.530210pt;}
.y48{bottom:161.990667pt;}
.y24{bottom:163.125333pt;}
.y19b{bottom:163.352000pt;}
.y1bd{bottom:163.948361pt;}
.y186{bottom:164.182667pt;}
.yf9{bottom:165.986219pt;}
.y182{bottom:166.716000pt;}
.y120{bottom:170.797333pt;}
.y178{bottom:171.061333pt;}
.y16f{bottom:171.137333pt;}
.ye8{bottom:172.627525pt;}
.y1c2{bottom:173.021742pt;}
.ye7{bottom:175.456390pt;}
.y168{bottom:177.070667pt;}
.y135{bottom:177.486667pt;}
.y1ce{bottom:178.205333pt;}
.y152{bottom:179.926667pt;}
.yf7{bottom:179.975847pt;}
.y185{bottom:180.510667pt;}
.ydf{bottom:181.170203pt;}
.y154{bottom:181.822667pt;}
.yb7{bottom:183.761333pt;}
.yba{bottom:184.252000pt;}
.y1af{bottom:184.260482pt;}
.y14f{bottom:184.445333pt;}
.y19a{bottom:187.049333pt;}
.y177{bottom:187.389333pt;}
.y16e{bottom:187.465333pt;}
.ye5{bottom:189.416868pt;}
.y3b{bottom:189.978198pt;}
.y1e0{bottom:190.560385pt;}
.y151{bottom:192.237333pt;}
.y10c{bottom:193.474667pt;}
.y153{bottom:194.133333pt;}
.y1fd{bottom:194.448087pt;}
.y111{bottom:196.385333pt;}
.y14e{bottom:196.757333pt;}
.y11f{bottom:197.669333pt;}
.ya5{bottom:199.787647pt;}
.y9a{bottom:200.116848pt;}
.y1e6{bottom:200.507510pt;}
.y6{bottom:202.809333pt;}
.y176{bottom:203.717333pt;}
.y16d{bottom:203.792000pt;}
.y134{bottom:204.360000pt;}
.y150{bottom:204.549333pt;}
.y110{bottom:208.404000pt;}
.ya0{bottom:209.031741pt;}
.y1be{bottom:212.794625pt;}
.ye9{bottom:214.490469pt;}
.y79{bottom:214.904000pt;}
.ye0{bottom:216.698366pt;}
.yea{bottom:218.516383pt;}
.y184{bottom:219.449333pt;}
.y1d3{bottom:219.590560pt;}
.y10b{bottom:220.346667pt;}
.y5{bottom:220.725333pt;}
.y12c{bottom:224.769333pt;}
.y16{bottom:226.742335pt;}
.ydb{bottom:229.001333pt;}
.y41{bottom:232.995972pt;}
.yf{bottom:233.172494pt;}
.yb6{bottom:237.505333pt;}
.y55{bottom:240.492000pt;}
.y2d{bottom:240.838667pt;}
.y1fe{bottom:241.586920pt;}
.y209{bottom:242.470554pt;}
.y1e1{bottom:242.813917pt;}
.y4c{bottom:245.443716pt;}
.y51{bottom:247.075686pt;}
.y1f7{bottom:247.900000pt;}
.y1c7{bottom:251.868000pt;}
.ye1{bottom:252.226530pt;}
.y143{bottom:252.404000pt;}
.y193{bottom:256.321333pt;}
.yb5{bottom:258.596000pt;}
.y3c{bottom:259.315463pt;}
.y2c{bottom:260.132000pt;}
.y54{bottom:261.468000pt;}
.y1bf{bottom:261.635054pt;}
.y13f{bottom:262.790667pt;}
.ye6{bottom:265.070957pt;}
.yf0{bottom:269.389197pt;}
.y7a{bottom:271.597333pt;}
.y1f6{bottom:274.772000pt;}
.y1a0{bottom:275.981333pt;}
.y1c6{bottom:277.002667pt;}
.y1d4{bottom:277.650910pt;}
.y11e{bottom:278.286667pt;}
.y192{bottom:278.654667pt;}
.yef{bottom:283.851250pt;}
.y133{bottom:284.977333pt;}
.yb4{bottom:285.468000pt;}
.ye2{bottom:287.754693pt;}
.y1ff{bottom:288.725752pt;}
.y13e{bottom:289.664000pt;}
.ya1{bottom:291.836421pt;}
.y4{bottom:294.122667pt;}
.y1e2{bottom:295.067448pt;}
.y1a3{bottom:297.373333pt;}
.yee{bottom:298.313302pt;}
.y19f{bottom:299.678667pt;}
.y71{bottom:300.700000pt;}
.y4d{bottom:300.909233pt;}
.y10a{bottom:300.964000pt;}
.y191{bottom:300.989333pt;}
.y1f5{bottom:301.644000pt;}
.y97{bottom:302.301702pt;}
.y65{bottom:304.025333pt;}
.y11d{bottom:305.160000pt;}
.y1b4{bottom:308.013573pt;}
.y1c0{bottom:310.481318pt;}
.y132{bottom:311.849333pt;}
.yb3{bottom:312.340000pt;}
.yed{bottom:312.775354pt;}
.y13d{bottom:316.536000pt;}
.y3{bottom:320.996000pt;}
.ya8{bottom:321.042304pt;}
.y64{bottom:321.940000pt;}
.ye3{bottom:323.282856pt;}
.y19e{bottom:323.377333pt;}
.y7b{bottom:324.774667pt;}
.y10{bottom:326.088770pt;}
.yec{bottom:327.237407pt;}
.y109{bottom:327.837333pt;}
.y3d{bottom:328.645571pt;}
.y2b{bottom:330.428000pt;}
.y70{bottom:330.444000pt;}
.y1b3{bottom:331.298402pt;}
.y11c{bottom:332.032000pt;}
.y1b0{bottom:332.549133pt;}
.y17f{bottom:335.320000pt;}
.y1d5{bottom:335.715175pt;}
.y200{bottom:335.857186pt;}
.y131{bottom:338.721333pt;}
.y63{bottom:339.856000pt;}
.y13c{bottom:343.408000pt;}
.y52{bottom:344.958116pt;}
.y1e3{bottom:347.324896pt;}
.y15f{bottom:348.473333pt;}
.ya7{bottom:348.480714pt;}
.y2a{bottom:349.721333pt;}
.y7d{bottom:353.121333pt;}
.y1f4{bottom:355.389333pt;}
.y17e{bottom:356.296000pt;}
.y4e{bottom:356.374750pt;}
.y62{bottom:357.770667pt;}
.y6f{bottom:360.189333pt;}
.yb2{bottom:366.085333pt;}
.y142{bottom:366.318667pt;}
.y13b{bottom:370.281333pt;}
.y85{bottom:373.833333pt;}
.y6d{bottom:373.870667pt;}
.ya2{bottom:374.641101pt;}
.y15e{bottom:375.345333pt;}
.y61{bottom:375.685333pt;}
.ya6{bottom:375.919124pt;}
.y16b{bottom:377.574667pt;}
.y115{bottom:378.936000pt;}
.y7c{bottom:379.616000pt;}
.y1f3{bottom:382.261333pt;}
.y201{bottom:382.996019pt;}
.y2{bottom:385.172000pt;}
.y11b{bottom:385.777333pt;}
.y190{bottom:388.233333pt;}
.y114{bottom:390.954667pt;}
.y84{bottom:391.748000pt;}
.y6c{bottom:391.786667pt;}
.yb1{bottom:392.957333pt;}
.y60{bottom:393.600000pt;}
.y1d6{bottom:393.775525pt;}
.y3e{bottom:397.975678pt;}
.y1e4{bottom:399.578427pt;}
.y1cb{bottom:399.837333pt;}
.y16a{bottom:404.448000pt;}
.y9d{bottom:406.291007pt;}
.y108{bottom:408.454667pt;}
.y98{bottom:408.648605pt;}
.y199{bottom:408.869333pt;}
.y1f2{bottom:409.134667pt;}
.y83{bottom:409.664000pt;}
.y6b{bottom:409.701333pt;}
.y5f{bottom:411.516000pt;}
.y4f{bottom:411.840268pt;}
.y11a{bottom:412.649333pt;}
.y181{bottom:414.652000pt;}
.y18f{bottom:415.105333pt;}
.y11{bottom:419.005046pt;}
.y130{bottom:419.338667pt;}
.yac{bottom:419.921476pt;}
.y221{bottom:420.246667pt;}
.ya3{bottom:423.078734pt;}
.y1ca{bottom:424.970667pt;}
.yab{bottom:426.189534pt;}
.y1da{bottom:426.273259pt;}
.y29{bottom:427.328000pt;}
.y82{bottom:427.578667pt;}
.y6a{bottom:427.616000pt;}
.y206{bottom:428.240300pt;}
.y5e{bottom:429.430667pt;}
.y202{bottom:430.134851pt;}
.y9c{bottom:433.616666pt;}
.y107{bottom:435.326667pt;}
.y180{bottom:435.629333pt;}
.y198{bottom:435.742667pt;}
.y1f1{bottom:436.006667pt;}
.y119{bottom:439.521333pt;}
.y1d9{bottom:440.858827pt;}
.y1cd{bottom:441.789333pt;}
.y18e{bottom:441.978667pt;}
.y53{bottom:442.833388pt;}
.y81{bottom:445.493333pt;}
.y69{bottom:445.530667pt;}
.y12f{bottom:446.212000pt;}
.y220{bottom:446.665333pt;}
.yb0{bottom:446.702667pt;}
.y5d{bottom:447.345333pt;}
.yaa{bottom:450.078863pt;}
.y13a{bottom:450.898667pt;}
.y1e5{bottom:451.831959pt;}
.y1d7{bottom:451.835875pt;}
.ya9{bottom:456.346921pt;}
.ya4{bottom:457.445781pt;}
.y57{bottom:459.590667pt;}
.y9b{bottom:459.678001pt;}
.ybd{bottom:459.817333pt;}
.y106{bottom:462.198667pt;}
.y197{bottom:462.614667pt;}
.y1f0{bottom:462.878667pt;}
.y80{bottom:463.408000pt;}
.y68{bottom:463.446667pt;}
.y5c{bottom:465.260000pt;}
.y1cc{bottom:466.922667pt;}
.y3f{bottom:467.305785pt;}
.y18d{bottom:468.850667pt;}
.y91{bottom:471.837333pt;}
.y12e{bottom:473.084000pt;}
.yaf{bottom:473.574667pt;}
.y203{bottom:477.266286pt;}
.y139{bottom:477.770667pt;}
.y1b1{bottom:480.841950pt;}
.y7f{bottom:481.322667pt;}
.y67{bottom:481.361333pt;}
.y12b{bottom:482.092000pt;}
.y5b{bottom:483.174667pt;}
.y99{bottom:484.102934pt;}
.y1c5{bottom:486.048000pt;}
.y56{bottom:486.464000pt;}
.y1ab{bottom:487.786667pt;}
.y21a{bottom:489.412000pt;}
.y196{bottom:489.486667pt;}
.ybe{bottom:489.826667pt;}
.y216{bottom:491.301333pt;}
.y8{bottom:494.136000pt;}
.y90{bottom:494.362667pt;}
.y18c{bottom:495.722667pt;}
.yda{bottom:497.688000pt;}
.y7e{bottom:499.238667pt;}
.y66{bottom:499.276000pt;}
.y147{bottom:499.992000pt;}
.y1c4{bottom:500.409333pt;}
.yae{bottom:500.448000pt;}
.y5a{bottom:501.090667pt;}
.y128{bottom:505.664000pt;}
.y123{bottom:505.701333pt;}
.y118{bottom:505.738667pt;}
.y211{bottom:508.157333pt;}
.y12a{bottom:510.661333pt;}
.y215{bottom:512.277333pt;}
.y25{bottom:512.580000pt;}
.y146{bottom:515.892000pt;}
.y195{bottom:516.360000pt;}
.y20e{bottom:516.510667pt;}
.y1ef{bottom:516.624000pt;}
.y59{bottom:519.005333pt;}
.y105{bottom:521.234667pt;}
.y18b{bottom:522.596000pt;}
.y18{bottom:524.032000pt;}
.y204{bottom:524.405118pt;}
.y145{bottom:527.566667pt;}
.y141{bottom:532.460000pt;}
.y137{bottom:532.498667pt;}
.y127{bottom:532.536000pt;}
.y122{bottom:532.573333pt;}
.y117{bottom:532.612000pt;}
.y188{bottom:532.800000pt;}
.y7{bottom:532.876000pt;}
.y166{bottom:532.913333pt;}
.y21d{bottom:534.538667pt;}
.y210{bottom:535.030667pt;}
.y28{bottom:536.413333pt;}
.y1aa{bottom:536.693333pt;}
.y1e9{bottom:538.016000pt;}
.y21b{bottom:540.434667pt;}
.y1a6{bottom:540.774667pt;}
.y194{bottom:543.232000pt;}
.y20d{bottom:543.382667pt;}
.y1ee{bottom:543.496000pt;}
.y113{bottom:544.064000pt;}
.y144{bottom:546.185333pt;}
.y213{bottom:548.448000pt;}
.y23{bottom:551.660000pt;}
.y1b9{bottom:552.226667pt;}
.yad{bottom:552.302667pt;}
.y104{bottom:554.041333pt;}
.y1e{bottom:555.440000pt;}
.y1b7{bottom:556.006667pt;}
.y112{bottom:556.082667pt;}
.y19{bottom:559.294667pt;}
.y140{bottom:559.333333pt;}
.y136{bottom:559.370667pt;}
.y126{bottom:559.408000pt;}
.y121{bottom:559.446667pt;}
.y116{bottom:559.484000pt;}
.y17d{bottom:559.673333pt;}
.y16c{bottom:559.710667pt;}
.y167{bottom:559.748000pt;}
.y157{bottom:559.786667pt;}
.y8f{bottom:560.164000pt;}
.y214{bottom:561.486667pt;}
.y58{bottom:562.205333pt;}
.y138{bottom:563.565333pt;}
.y1e8{bottom:564.888000pt;}
.y43{bottom:564.926667pt;}
.y2e{bottom:565.002667pt;}
.y6e{bottom:565.417333pt;}
.y21c{bottom:566.702667pt;}
.y1a5{bottom:567.648000pt;}
.y148{bottom:575.886667pt;}
.y212{bottom:576.869333pt;}
.h7{height:20.522667pt;}
.h35{height:26.243959pt;}
.h45{height:31.268198pt;}
.h44{height:31.393104pt;}
.h4e{height:32.206010pt;}
.h36{height:33.882048pt;}
.h8{height:35.398729pt;}
.h59{height:35.466933pt;}
.h13{height:36.697615pt;}
.h5a{height:37.212575pt;}
.h3d{height:37.530221pt;}
.h5d{height:38.079100pt;}
.h14{height:39.294396pt;}
.h3b{height:40.664613pt;}
.h42{height:40.677926pt;}
.h3c{height:40.774591pt;}
.h3f{height:40.787940pt;}
.h4c{height:41.595667pt;}
.h37{height:41.860908pt;}
.h10{height:42.039427pt;}
.h34{height:42.622334pt;}
.h1a{height:43.190062pt;}
.h17{height:43.476470pt;}
.h16{height:43.505788pt;}
.h62{height:44.964802pt;}
.h4a{height:45.550240pt;}
.h5{height:47.089656pt;}
.h64{height:47.310809pt;}
.h28{height:47.556833pt;}
.h5e{height:47.596075pt;}
.h5c{height:47.598876pt;}
.h4b{height:48.711542pt;}
.h63{height:48.801374pt;}
.ha{height:49.034664pt;}
.h43{height:49.218115pt;}
.h11{height:50.469547pt;}
.h57{height:50.651346pt;}
.h55{height:50.654281pt;}
.h2b{height:51.044831pt;}
.h49{height:51.456573pt;}
.hb{height:51.521429pt;}
.h3e{height:53.429931pt;}
.h41{height:53.447418pt;}
.h3a{height:53.493624pt;}
.h40{height:53.511137pt;}
.hc{height:54.990948pt;}
.h32{height:54.995016pt;}
.h33{height:55.063754pt;}
.h38{height:55.067331pt;}
.h46{height:58.462490pt;}
.h29{height:58.886615pt;}
.h50{height:58.933740pt;}
.h2f{height:60.429549pt;}
.h56{height:60.785138pt;}
.h2e{height:61.253797pt;}
.h2a{height:61.568000pt;}
.h5f{height:61.569010pt;}
.hf{height:62.202055pt;}
.h2d{height:62.483937pt;}
.h51{height:62.532484pt;}
.h1e{height:62.782281pt;}
.h2c{height:63.295590pt;}
.h66{height:64.780656pt;}
.h4f{height:65.422656pt;}
.h54{height:65.525024pt;}
.he{height:66.010344pt;}
.h65{height:66.791833pt;}
.h12{height:67.633026pt;}
.h22{height:68.271480pt;}
.h68{height:68.859375pt;}
.h30{height:69.790693pt;}
.h18{height:70.406250pt;}
.h4{height:70.687500pt;}
.h1b{height:70.752397pt;}
.h1c{height:70.771774pt;}
.h1d{height:70.773235pt;}
.h47{height:75.030854pt;}
.h60{height:78.145031pt;}
.hd{height:78.280016pt;}
.h48{height:78.344031pt;}
.h26{height:80.823361pt;}
.h25{height:81.925776pt;}
.h24{height:81.925961pt;}
.h67{height:84.149982pt;}
.h23{height:84.656635pt;}
.h19{height:86.040349pt;}
.h27{height:93.343711pt;}
.h3{height:94.285344pt;}
.h6{height:101.674448pt;}
.h1f{height:107.467385pt;}
.h20{height:139.968719pt;}
.h39{height:213.845333pt;}
.h4d{height:234.670667pt;}
.h52{height:306.018714pt;}
.h31{height:361.133331pt;}
.h58{height:362.947991pt;}
.h5b{height:469.870648pt;}
.h9{height:484.043981pt;}
.h15{height:486.727988pt;}
.h53{height:500.031980pt;}
.h21{height:511.633333pt;}
.h61{height:544.478666pt;}
.h2{height:595.161333pt;}
.h0{height:595.200000pt;}
.h1{height:595.333333pt;}
.w7{width:174.160000pt;}
.w5{width:364.799997pt;}
.w9{width:380.219989pt;}
.wa{width:470.474667pt;}
.wc{width:508.157322pt;}
.w6{width:558.726667pt;}
.w8{width:598.109333pt;}
.wd{width:626.457333pt;}
.wb{width:666.670667pt;}
.w4{width:678.122667pt;}
.we{width:748.799972pt;}
.w2{width:1057.889333pt;}
.w3{width:1057.926667pt;}
.w0{width:1057.927559pt;}
.w1{width:1058.000000pt;}
.x44{left:-529.611984pt;}
.x43{left:-516.693473pt;}
.x41{left:-488.461705pt;}
.x49{left:-459.716181pt;}
.x45{left:-409.794825pt;}
.x42{left:-389.537162pt;}
.x53{left:-42.938385pt;}
.x52{left:-33.085593pt;}
.x50{left:-11.553566pt;}
.x0{left:0.000000pt;}
.x26{left:3.098667pt;}
.x38{left:4.649333pt;}
.xa9{left:6.992000pt;}
.xaa{left:8.466667pt;}
.x5{left:9.449333pt;}
.x59{left:10.370297pt;}
.x11{left:11.452000pt;}
.x12{left:13.493333pt;}
.xd{left:14.634271pt;}
.xc5{left:15.578055pt;}
.x1{left:16.554667pt;}
.x7{left:18.105875pt;}
.x6f{left:19.602337pt;}
.x9c{left:20.788000pt;}
.xbf{left:22.110667pt;}
.xce{left:23.433333pt;}
.x27{left:24.391529pt;}
.x2{left:26.002667pt;}
.x23{left:27.741333pt;}
.x5e{left:29.182666pt;}
.x2e{left:30.367421pt;}
.xd0{left:31.475566pt;}
.xe2{left:32.580000pt;}
.x8{left:34.279101pt;}
.x28{left:38.039341pt;}
.x48{left:39.501873pt;}
.x3{left:40.516000pt;}
.xa2{left:41.669333pt;}
.x7f{left:44.084643pt;}
.x2f{left:47.280941pt;}
.x54{left:48.444711pt;}
.x24{left:50.418667pt;}
.x5f{left:53.815602pt;}
.xb5{left:55.124000pt;}
.x22{left:57.449333pt;}
.x17{left:61.228000pt;}
.x51{left:63.894985pt;}
.xc8{left:65.310667pt;}
.x46{left:67.733642pt;}
.xd7{left:69.314592pt;}
.x32{left:77.632000pt;}
.xc7{left:79.181333pt;}
.x7b{left:80.954366pt;}
.x16{left:91.237333pt;}
.x72{left:95.356617pt;}
.x80{left:99.009888pt;}
.xc2{left:108.683985pt;}
.x78{left:115.508729pt;}
.x89{left:119.189130pt;}
.xc3{left:124.584081pt;}
.x8b{left:127.225573pt;}
.x8c{left:131.137969pt;}
.x79{left:133.999759pt;}
.x7a{left:138.025935pt;}
.x7c{left:139.731496pt;}
.x8d{left:142.344779pt;}
.x7d{left:143.757671pt;}
.x73{left:145.265008pt;}
.x4a{left:146.400522pt;}
.x75{left:147.725201pt;}
.x74{left:149.291184pt;}
.x76{left:150.942292pt;}
.x77{left:154.968468pt;}
.x4b{left:162.493707pt;}
.x8a{left:166.370308pt;}
.x2a{left:172.278587pt;}
.x31{left:175.919434pt;}
.x60{left:177.020123pt;}
.x61{left:181.046298pt;}
.xd6{left:187.200000pt;}
.xa4{left:190.928000pt;}
.xa3{left:195.005333pt;}
.x81{left:197.123188pt;}
.xa5{left:198.252000pt;}
.x82{left:201.035585pt;}
.x8e{left:205.576848pt;}
.x8f{left:209.489245pt;}
.x6c{left:214.938451pt;}
.xd2{left:220.859491pt;}
.x39{left:222.728000pt;}
.xbe{left:226.205333pt;}
.x3b{left:235.049333pt;}
.x6{left:240.302667pt;}
.x3a{left:242.948000pt;}
.x3e{left:245.669333pt;}
.x83{left:248.136037pt;}
.x84{left:252.048433pt;}
.xcf{left:253.984000pt;}
.xbd{left:260.712000pt;}
.x47{left:262.102571pt;}
.x6b{left:264.012301pt;}
.xdc{left:271.068000pt;}
.x6d{left:272.176081pt;}
.x6e{left:274.653483pt;}
.x70{left:288.312261pt;}
.x67{left:289.845044pt;}
.x2d{left:297.111716pt;}
.x85{left:299.148885pt;}
.x86{left:303.061282pt;}
.x71{left:307.643793pt;}
.x34{left:308.862667pt;}
.x62{left:312.226629pt;}
.xa6{left:314.214667pt;}
.x63{left:316.252805pt;}
.x30{left:321.302962pt;}
.xe{left:323.519609pt;}
.x33{left:326.892000pt;}
.x29{left:328.584657pt;}
.x68{left:336.658809pt;}
.x69{left:339.136211pt;}
.xda{left:340.377068pt;}
.xa7{left:341.693333pt;}
.x87{left:350.161734pt;}
.xc{left:352.585642pt;}
.x88{left:354.074130pt;}
.xf{left:372.170667pt;}
.x58{left:381.265067pt;}
.x6a{left:383.487412pt;}
.x3f{left:388.346667pt;}
.x57{left:391.117858pt;}
.x3c{left:392.125333pt;}
.x55{left:412.649886pt;}
.x64{left:435.431150pt;}
.x65{left:439.457325pt;}
.xd9{left:443.372091pt;}
.x5d{left:459.780000pt;}
.xb{left:468.082647pt;}
.x5a{left:472.648162pt;}
.xa{left:483.857476pt;}
.x5b{left:484.922239pt;}
.x40{left:494.324000pt;}
.xc9{left:497.310667pt;}
.xbb{left:509.669333pt;}
.x9d{left:513.232000pt;}
.xd1{left:518.091961pt;}
.x4c{left:522.028000pt;}
.xca{left:524.069333pt;}
.xa1{left:528.641333pt;}
.x35{left:537.902667pt;}
.x25{left:541.228000pt;}
.x36{left:544.592000pt;}
.xcd{left:545.840000pt;}
.xac{left:550.110667pt;}
.x1b{left:556.346667pt;}
.xab{left:558.122667pt;}
.x56{left:560.892713pt;}
.x10{left:564.397333pt;}
.x99{left:566.437333pt;}
.x4f{left:569.838667pt;}
.x37{left:573.581333pt;}
.x66{left:574.663832pt;}
.xba{left:590.550667pt;}
.x9b{left:599.886667pt;}
.x2b{left:601.889333pt;}
.x18{left:604.346667pt;}
.xa0{left:608.125333pt;}
.xbc{left:619.276000pt;}
.xd3{left:621.164992pt;}
.xc6{left:625.889333pt;}
.x9f{left:630.869333pt;}
.x4e{left:633.449333pt;}
.x9{left:635.360675pt;}
.xaf{left:641.045333pt;}
.x1e{left:648.436000pt;}
.x7e{left:655.558667pt;}
.xae{left:657.486667pt;}
.xdf{left:661.341333pt;}
.xdd{left:665.008000pt;}
.xad{left:668.182667pt;}
.xd8{left:670.035985pt;}
.x19{left:673.474667pt;}
.x90{left:674.684000pt;}
.x97{left:682.449333pt;}
.x14{left:683.942667pt;}
.x15{left:685.380000pt;}
.x2c{left:689.612000pt;}
.x9e{left:715.553333pt;}
.xc0{left:725.669333pt;}
.xd4{left:729.449333pt;}
.xb0{left:737.612000pt;}
.x13{left:739.653333pt;}
.xb1{left:743.508000pt;}
.x3d{left:751.181333pt;}
.xb2{left:752.466667pt;}
.xe0{left:756.548000pt;}
.x96{left:768.756000pt;}
.xc1{left:777.449333pt;}
.xc4{left:779.905333pt;}
.xe1{left:785.272000pt;}
.x95{left:786.633333pt;}
.xb7{left:799.484000pt;}
.x98{left:802.841333pt;}
.x21{left:806.522667pt;}
.xb9{left:811.956000pt;}
.xb6{left:813.808000pt;}
.xb8{left:822.388000pt;}
.xb4{left:835.692000pt;}
.x1d{left:838.580000pt;}
.xb3{left:844.044000pt;}
.x1c{left:846.802667pt;}
.x4d{left:856.252000pt;}
.xd5{left:873.449333pt;}
.x1f{left:874.942667pt;}
.xcb{left:877.304000pt;}
.xde{left:878.249333pt;}
.x92{left:879.988000pt;}
.xcc{left:881.045333pt;}
.x20{left:886.352000pt;}
.x94{left:898.885333pt;}
.xdb{left:904.516000pt;}
.x91{left:908.296000pt;}
.x4{left:910.148000pt;}
.x5c{left:916.157333pt;}
.x93{left:928.705333pt;}
.x1a{left:959.433333pt;}
.xa8{left:975.685333pt;}
.x9a{left:1032.573333pt;}
}




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