
    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_c02d879e00ea189dd2f8bb8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86c887fb6871563ff61f0e98.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0867deba38712c5735d41924.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;font-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_e3e51b7f3db291a5f9b42278.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.884277;font-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_b4983b154faeb09e874b5082.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.862793;font-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_983a86849df910d6292391af.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a93b51ecfa9facef4da8b2a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ecc5caf24fa57f0ad4428f85.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_19f890868a10cc83c5907c08.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.862793;font-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_c8985b2cd0dc5836b80c8e1a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8a153fcf88dfa2dc1031c64b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.861816;font-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_fae9af82935793c727ab54e5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6769d592b1e563bd4d778bba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;font-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_05be1ad0df46a32e163c8862.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f931eeafcf57f98a50d399d0.woff2')format("woff");}.fff{font-family:fff;line-height:0.862793;font-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_e0ee940d9172e5062acfda2b.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bc2f2a63f77b385ee63430da.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.871094;font-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_69503019d67782b0c99c1764.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871094;font-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_93f1b8fe16c05e0361ad627a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9fee4368467eb1453d2ef156.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.862793;font-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_444f8c21306a8b40f560a50c.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871094;font-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_7b2e174de7a362343a7c459f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_699e9b5c54b377a41344312f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_0acb9fe280de30e30e1eee3a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_d7930337cf2646700b41a6f8.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_a6a4914532afed55bb872948.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_b0cffcccb52333bbaffefe48.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_1ba17f78f755e16efc6fa1ea.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_57302a544c42c0ecc290e82f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_64da9d64a37ff7693e4619e7.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_76179b3acf96c58c53b39d67.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.862793;font-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_d42f3ca042dc570f83ddf972.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_07fbf87b6d8d675fb3347fd2.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.871094;font-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_43cde19c6fa5481411c20e27.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_613733de35df8fdd535c7810.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_bf411c12d4b6e4d3d5c1a88f.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_ca499ad3c1a6978e98d3e909.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.871094;font-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_0399eb185c2f7cf4c00fc502.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_961d69d1126983e642aad0f2.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.862793;font-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_476fe67f52d25d5f31c0a8a4.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_65b13dd55414ddc3a0cdfefd.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_a01a1eb9f11ed854598375a7.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_961d69d1126983e642aad0f2.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.862793;font-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_50ee51a8e2d3f2a3993cc5eb.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_7202c03b916525c48bc0e2c4.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_a5029d489e76e4053d81cce7.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_65b13dd55414ddc3a0cdfefd.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_18475ba816838c927fa31e37.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_7dc2cc0e1757705d554da380.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_1798bf5cf83327a5be4e54f7.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_c889b200b677d5bf73338124.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_65b13dd55414ddc3a0cdfefd.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_45a4a2fc7d207f2f3dae8812.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_c54c076a957e46d8773bfbfd.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_af01b9f0ed7177e99cb32b45.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_03bb89d08c1e25c17c6d6076.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_38f215cc36fb467c264f97b2.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_11824e121e8bdc8ccdd695ad.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_8e2aa6192b8788b92df0d211.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_2cfc654a7fb0bd5eb77ec888.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_1b7909a8feb66823dc3b38d0.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_c5b8e542e5c1cef6fca2f365.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_8c2f7e569172b5b210f180d0.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_e68a2fddfaa20a1e49aa4a90.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_7a1a953d099b989ea796a992.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_6f08cf72b20ebb2ac6102f15.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_d91f84464404eaa9ba4d6603.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_76e25393908a5aa3b69aa93c.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_b93874000dcf4dcec6931dfc.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.693848;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_2eb5f6b34e23541ee21ded3f.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_bc43411d2a222a74d710a241.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_c413d792eba1bc50fc5e2627.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-85.800000px;}
.v2{vertical-align:-22.302000px;}
.v3{vertical-align:-20.034000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.010880px;}
.ls1e{letter-spacing:-0.927360px;}
.ls26{letter-spacing:-0.861120px;}
.ls4f{letter-spacing:-0.836640px;}
.ls21{letter-spacing:-0.794880px;}
.ls13{letter-spacing:-0.728640px;}
.ls50{letter-spacing:-0.717120px;}
.ls1d{letter-spacing:-0.662400px;}
.ls9{letter-spacing:-0.630000px;}
.ls12{letter-spacing:-0.596160px;}
.lsc{letter-spacing:-0.463680px;}
.ls3e{letter-spacing:-0.397440px;}
.lsb{letter-spacing:-0.331200px;}
.ls31{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.298800px;}
.ls36{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.264960px;}
.ls48{letter-spacing:-0.239040px;}
.ls33{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.198720px;}
.ls4d{letter-spacing:-0.179280px;}
.ls1f{letter-spacing:-0.132480px;}
.ls2d{letter-spacing:-0.119520px;}
.ls32{letter-spacing:-0.108000px;}
.ls39{letter-spacing:-0.066240px;}
.ls11{letter-spacing:-0.059760px;}
.ls8{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.059760px;}
.ls6{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.132480px;}
.ls37{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.179280px;}
.ls3{letter-spacing:0.198720px;}
.ls47{letter-spacing:0.239040px;}
.ls27{letter-spacing:0.264960px;}
.ls4e{letter-spacing:0.298800px;}
.ls20{letter-spacing:0.331200px;}
.ls4c{letter-spacing:0.358560px;}
.ls2e{letter-spacing:0.463680px;}
.ls15{letter-spacing:0.529920px;}
.ls51{letter-spacing:0.657360px;}
.ls4b{letter-spacing:0.717120px;}
.ls22{letter-spacing:0.861120px;}
.ls2f{letter-spacing:1.589760px;}
.ls38{letter-spacing:1.788480px;}
.ls5{letter-spacing:2.318400px;}
.ls34{letter-spacing:3.047040px;}
.ls42{letter-spacing:3.047760px;}
.ls2a{letter-spacing:3.775680px;}
.ls23{letter-spacing:4.438080px;}
.ls29{letter-spacing:5.166720px;}
.ls3b{letter-spacing:5.895360px;}
.ls49{letter-spacing:5.916240px;}
.ls2b{letter-spacing:6.624000px;}
.ls44{letter-spacing:6.633360px;}
.ls45{letter-spacing:7.350480px;}
.ls1b{letter-spacing:7.352640px;}
.ls3f{letter-spacing:8.081280px;}
.ls4a{letter-spacing:8.844480px;}
.ls1a{letter-spacing:9.538560px;}
.ls30{letter-spacing:10.200960px;}
.ls35{letter-spacing:10.929600px;}
.ls46{letter-spacing:10.995840px;}
.ls28{letter-spacing:12.386880px;}
.ls17{letter-spacing:12.389760px;}
.ls3a{letter-spacing:13.115520px;}
.ls43{letter-spacing:13.147200px;}
.ls4{letter-spacing:13.844160px;}
.ls19{letter-spacing:15.433920px;}
.ls41{letter-spacing:15.963840px;}
.ls1c{letter-spacing:16.692480px;}
.ls3d{letter-spacing:17.421120px;}
.ls24{letter-spacing:18.149760px;}
.ls2c{letter-spacing:18.878400px;}
.ls40{letter-spacing:19.607040px;}
.ls25{letter-spacing:22.455360px;}
.ls3c{letter-spacing:24.641280px;}
.ls2{letter-spacing:26.760960px;}
.ls18{letter-spacing:29.079360px;}
.ls7{letter-spacing:33.252480px;}
.ls16{letter-spacing:63.509760px;}
.ls0{letter-spacing:832.068000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws50{word-spacing:-65.975040px;}
.wsf4{word-spacing:-32.449680px;}
.wsf2{word-spacing:-31.493520px;}
.wsf5{word-spacing:-31.433760px;}
.ws51{word-spacing:-18.282240px;}
.ws52{word-spacing:-15.301440px;}
.ws7{word-spacing:-15.102720px;}
.ws6{word-spacing:-15.036480px;}
.ws0{word-spacing:-14.970240px;}
.wsb9{word-spacing:-14.904000px;}
.ws8{word-spacing:-14.771520px;}
.ws5{word-spacing:-14.705280px;}
.wsc9{word-spacing:-14.572800px;}
.ws1{word-spacing:-14.506560px;}
.ws4{word-spacing:-14.374080px;}
.ws83{word-spacing:-14.241600px;}
.wsf8{word-spacing:-14.163120px;}
.wsef{word-spacing:-13.864320px;}
.wsf3{word-spacing:-13.804560px;}
.wsf7{word-spacing:-13.744800px;}
.ws2{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.446000px;}
.wsf6{word-spacing:-13.386240px;}
.wsf0{word-spacing:-13.326480px;}
.wsf1{word-spacing:-13.206960px;}
.wsae{word-spacing:-12.366000px;}
.ws9{word-spacing:-12.204000px;}
.wsbf{word-spacing:-11.988000px;}
.wsaf{word-spacing:-11.934000px;}
.wsad{word-spacing:-11.880000px;}
.wsa4{word-spacing:-1.350000px;}
.wsb7{word-spacing:-1.080000px;}
.wsa6{word-spacing:-1.026000px;}
.ws7e{word-spacing:-0.927360px;}
.wsc8{word-spacing:-0.728640px;}
.wsb6{word-spacing:-0.702000px;}
.ws8b{word-spacing:-0.662400px;}
.ws57{word-spacing:-0.596160px;}
.ws4d{word-spacing:-0.529920px;}
.wsa8{word-spacing:-0.486000px;}
.ws5e{word-spacing:-0.463680px;}
.wsb5{word-spacing:-0.432000px;}
.wsbc{word-spacing:-0.331200px;}
.ws10f{word-spacing:-0.298800px;}
.wsb{word-spacing:-0.270000px;}
.ws93{word-spacing:-0.264960px;}
.wsd8{word-spacing:-0.239040px;}
.ws71{word-spacing:-0.198720px;}
.ws10{word-spacing:-0.179280px;}
.ws45{word-spacing:-0.066240px;}
.ws11{word-spacing:-0.059760px;}
.wsa{word-spacing:0.000000px;}
.wse1{word-spacing:0.059760px;}
.wsca{word-spacing:0.066240px;}
.wsa7{word-spacing:0.108000px;}
.ws98{word-spacing:0.119520px;}
.ws6e{word-spacing:0.132480px;}
.wsdc{word-spacing:0.179280px;}
.ws3c{word-spacing:0.198720px;}
.wse5{word-spacing:0.239040px;}
.wse{word-spacing:0.264960px;}
.wsb8{word-spacing:0.270000px;}
.wsf{word-spacing:0.298800px;}
.wsa1{word-spacing:0.324000px;}
.wsd{word-spacing:0.331200px;}
.ws7d{word-spacing:0.397440px;}
.wse2{word-spacing:0.418320px;}
.ws6f{word-spacing:0.463680px;}
.ws1a{word-spacing:0.596160px;}
.ws56{word-spacing:0.662400px;}
.ws107{word-spacing:0.717120px;}
.ws25{word-spacing:0.728640px;}
.ws40{word-spacing:0.794880px;}
.ws12{word-spacing:0.836640px;}
.ws76{word-spacing:0.861120px;}
.ws5b{word-spacing:0.927360px;}
.ws41{word-spacing:0.993600px;}
.wsc{word-spacing:1.010880px;}
.wsa5{word-spacing:1.080000px;}
.ws75{word-spacing:1.391040px;}
.ws92{word-spacing:1.457280px;}
.ws48{word-spacing:1.523520px;}
.wsa3{word-spacing:1.589760px;}
.ws3a{word-spacing:2.053440px;}
.wsa9{word-spacing:2.119680px;}
.ws80{word-spacing:2.185920px;}
.ws4a{word-spacing:2.252160px;}
.wsf9{word-spacing:2.270880px;}
.ws49{word-spacing:2.384640px;}
.ws47{word-spacing:2.782080px;}
.wse4{word-spacing:2.808720px;}
.ws74{word-spacing:2.848320px;}
.ws89{word-spacing:2.914560px;}
.ws2a{word-spacing:2.980800px;}
.wsdd{word-spacing:2.988000px;}
.wsde{word-spacing:3.107520px;}
.ws95{word-spacing:3.113280px;}
.ws8a{word-spacing:3.312000px;}
.ws84{word-spacing:3.510720px;}
.ws7a{word-spacing:3.576960px;}
.ws110{word-spacing:3.585600px;}
.wsbb{word-spacing:3.643200px;}
.ws10e{word-spacing:3.705120px;}
.ws15{word-spacing:3.709440px;}
.wsac{word-spacing:3.775680px;}
.wsb0{word-spacing:3.841920px;}
.wsc7{word-spacing:4.040640px;}
.wsd1{word-spacing:4.106880px;}
.wsb2{word-spacing:4.239360px;}
.ws30{word-spacing:4.371840px;}
.wseb{word-spacing:4.422240px;}
.ws73{word-spacing:4.438080px;}
.ws91{word-spacing:4.504320px;}
.ws114{word-spacing:4.601520px;}
.wse0{word-spacing:4.960080px;}
.ws5a{word-spacing:4.968000px;}
.ws59{word-spacing:5.034240px;}
.ws3b{word-spacing:5.100480px;}
.ws7b{word-spacing:5.166720px;}
.ws72{word-spacing:5.232960px;}
.wsec{word-spacing:5.378400px;}
.wsc2{word-spacing:5.497920px;}
.ws8d{word-spacing:5.762880px;}
.ws13{word-spacing:5.829120px;}
.wsdf{word-spacing:5.856480px;}
.ws88{word-spacing:5.895360px;}
.wsa0{word-spacing:6.027840px;}
.wse7{word-spacing:6.394320px;}
.ws68{word-spacing:6.425280px;}
.ws39{word-spacing:6.491520px;}
.ws16{word-spacing:6.557760px;}
.wse6{word-spacing:6.573600px;}
.ws8e{word-spacing:6.690240px;}
.ws38{word-spacing:6.756480px;}
.ws9c{word-spacing:6.955200px;}
.ws27{word-spacing:7.087680px;}
.ws106{word-spacing:7.111440px;}
.ws99{word-spacing:7.153920px;}
.ws9e{word-spacing:7.220160px;}
.wsfc{word-spacing:7.230960px;}
.ws26{word-spacing:7.286400px;}
.wse8{word-spacing:7.290720px;}
.wsfd{word-spacing:7.350480px;}
.wsbd{word-spacing:7.418880px;}
.ws9a{word-spacing:7.485120px;}
.ws90{word-spacing:7.948800px;}
.ws113{word-spacing:8.007840px;}
.ws23{word-spacing:8.015040px;}
.wscc{word-spacing:8.081280px;}
.ws34{word-spacing:8.147520px;}
.ws102{word-spacing:8.545680px;}
.ws101{word-spacing:8.665200px;}
.ws100{word-spacing:8.724960px;}
.ws61{word-spacing:8.743680px;}
.ws79{word-spacing:8.876160px;}
.wscd{word-spacing:9.074880px;}
.ws4e{word-spacing:9.273600px;}
.wsb3{word-spacing:9.339840px;}
.ws5f{word-spacing:9.406080px;}
.ws60{word-spacing:9.472320px;}
.ws3e{word-spacing:9.538560px;}
.ws4f{word-spacing:9.604800px;}
.ws8c{word-spacing:9.671040px;}
.wsa2{word-spacing:10.002240px;}
.ws2e{word-spacing:10.134720px;}
.ws2d{word-spacing:10.200960px;}
.ws10d{word-spacing:10.218960px;}
.wsc4{word-spacing:10.267200px;}
.ws3d{word-spacing:10.333440px;}
.wsc5{word-spacing:10.598400px;}
.wsab{word-spacing:10.664640px;}
.ws3f{word-spacing:10.863360px;}
.ws2c{word-spacing:10.929600px;}
.wsea{word-spacing:10.936080px;}
.ws2f{word-spacing:10.995840px;}
.wscf{word-spacing:11.062080px;}
.wsc3{word-spacing:11.525760px;}
.ws22{word-spacing:11.592000px;}
.wsd0{word-spacing:11.790720px;}
.ws37{word-spacing:12.121920px;}
.ws9b{word-spacing:12.188160px;}
.ws36{word-spacing:12.320640px;}
.wsfa{word-spacing:12.370320px;}
.wsb4{word-spacing:12.453120px;}
.wsc0{word-spacing:12.850560px;}
.ws10a{word-spacing:12.908160px;}
.wsc1{word-spacing:12.916800px;}
.ws7c{word-spacing:12.983040px;}
.ws42{word-spacing:13.049280px;}
.wse3{word-spacing:13.087440px;}
.ws81{word-spacing:13.115520px;}
.ws43{word-spacing:13.248000px;}
.ws44{word-spacing:13.579200px;}
.ws96{word-spacing:13.711680px;}
.ws69{word-spacing:13.777920px;}
.ws46{word-spacing:13.910400px;}
.wsba{word-spacing:14.374080px;}
.ws53{word-spacing:14.506560px;}
.ws82{word-spacing:15.036480px;}
.wsbe{word-spacing:15.168960px;}
.ws1b{word-spacing:15.235200px;}
.wsd3{word-spacing:15.301440px;}
.ws97{word-spacing:15.367680px;}
.ws64{word-spacing:15.765120px;}
.ws5d{word-spacing:15.831360px;}
.ws33{word-spacing:15.897600px;}
.wsd2{word-spacing:16.096320px;}
.ws65{word-spacing:16.493760px;}
.ws66{word-spacing:16.560000px;}
.ws35{word-spacing:16.626240px;}
.ws6a{word-spacing:17.089920px;}
.ws67{word-spacing:17.354880px;}
.ws6b{word-spacing:17.421120px;}
.wsff{word-spacing:17.928000px;}
.wsaa{word-spacing:18.017280px;}
.ws5c{word-spacing:18.083520px;}
.wsfe{word-spacing:18.107280px;}
.ws94{word-spacing:18.149760px;}
.ws70{word-spacing:18.216000px;}
.wsb1{word-spacing:18.745920px;}
.ws28{word-spacing:18.812160px;}
.ws108{word-spacing:18.824400px;}
.ws116{word-spacing:18.944640px;}
.ws115{word-spacing:19.143360px;}
.wsce{word-spacing:19.474560px;}
.ws62{word-spacing:19.540800px;}
.ws10c{word-spacing:20.079360px;}
.ws10b{word-spacing:20.258640px;}
.ws1e{word-spacing:20.269440px;}
.ws6d{word-spacing:20.865600px;}
.ws6c{word-spacing:20.931840px;}
.ws29{word-spacing:21.660480px;}
.wscb{word-spacing:22.256640px;}
.ws2b{word-spacing:22.322880px;}
.ws78{word-spacing:22.389120px;}
.wsfb{word-spacing:22.410000px;}
.ws31{word-spacing:22.455360px;}
.wsd4{word-spacing:22.985280px;}
.ws24{word-spacing:23.117760px;}
.ws63{word-spacing:23.846400px;}
.ws109{word-spacing:23.904000px;}
.ws9f{word-spacing:23.978880px;}
.wsd5{word-spacing:24.508800px;}
.ws87{word-spacing:24.575040px;}
.wsdb{word-spacing:24.621120px;}
.ws32{word-spacing:25.303680px;}
.wse9{word-spacing:25.338240px;}
.ws7f{word-spacing:26.032320px;}
.ws19{word-spacing:26.694720px;}
.ws9d{word-spacing:28.152000px;}
.ws8f{word-spacing:31.728960px;}
.ws14{word-spacing:33.186240px;}
.ws4c{word-spacing:33.318720px;}
.ws4b{word-spacing:33.517440px;}
.ws77{word-spacing:35.372160px;}
.wsda{word-spacing:37.529280px;}
.wsd9{word-spacing:37.589040px;}
.wsc6{word-spacing:39.677760px;}
.ws17{word-spacing:41.135040px;}
.ws1d{word-spacing:41.863680px;}
.ws1c{word-spacing:42.526080px;}
.ws21{word-spacing:44.712000px;}
.ws86{word-spacing:47.626560px;}
.ws104{word-spacing:48.345840px;}
.ws85{word-spacing:48.355200px;}
.ws103{word-spacing:48.465360px;}
.ws1f{word-spacing:48.487680px;}
.ws20{word-spacing:49.017600px;}
.ws112{word-spacing:50.258160px;}
.ws111{word-spacing:50.497200px;}
.ws18{word-spacing:51.203520px;}
.ws55{word-spacing:51.932160px;}
.wsee{word-spacing:54.680400px;}
.wsed{word-spacing:54.859680px;}
.ws105{word-spacing:54.919440px;}
.wsd7{word-spacing:61.791840px;}
.wsd6{word-spacing:62.030880px;}
.ws58{word-spacing:62.663040px;}
.ws54{word-spacing:87.171840px;}
._10{margin-left:-25.222752px;}
._d{margin-left:-15.168960px;}
._9{margin-left:-5.437800px;}
._a{margin-left:-4.395600px;}
._2{margin-left:-2.461752px;}
._0{margin-left:-1.350000px;}
._3{width:1.021248px;}
._4{width:2.144880px;}
._14{width:3.576960px;}
._8{width:5.136624px;}
._f{width:6.822720px;}
._17{width:8.330400px;}
._5{width:10.333440px;}
._12{width:13.597776px;}
._1d{width:16.030080px;}
._c{width:17.487360px;}
._20{width:18.813744px;}
._21{width:20.432592px;}
._11{width:23.647680px;}
._19{width:24.887952px;}
._6{width:33.252480px;}
._13{width:36.282816px;}
._1e{width:37.823904px;}
._b{width:44.645760px;}
._e{width:48.741840px;}
._1f{width:55.441296px;}
._7{width:64.165440px;}
._1c{width:88.506000px;}
._1b{width:102.168000px;}
._1a{width:115.938000px;}
._18{width:123.769944px;}
._16{width:289.656000px;}
._15{width:295.218000px;}
._1{width:1629.040320px;}
.fc5{color:rgb(88,192,52);}
.fc7{color:rgb(112,109,110);}
.fc6{color:rgb(90,87,88);}
.fc4{color:rgb(101,98,99);}
.fc3{color:rgb(127,20,55);}
.fc8{color:rgb(65,79,107);}
.fc2{color:rgb(91,95,106);}
.fc1{color:rgb(152,30,56);}
.fc9{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:4.499850px;}
.y1ed{bottom:8.129850px;}
.y1e5{bottom:8.130000px;}
.y1e8{bottom:8.204850px;}
.y1f2{bottom:8.249850px;}
.y1e2{bottom:8.279850px;}
.y152{bottom:13.394850px;}
.y182{bottom:13.469850px;}
.y1d6{bottom:16.094850px;}
.y1d8{bottom:16.169850px;}
.y1db{bottom:16.199850px;}
.y1a8{bottom:20.084850px;}
.y1ae{bottom:20.159850px;}
.y1ac{bottom:20.189850px;}
.y1aa{bottom:20.234850px;}
.y1b0{bottom:20.264850px;}
.y1f0{bottom:23.759850px;}
.y44{bottom:24.659850px;}
.y47{bottom:26.347500px;}
.y1ee{bottom:45.284850px;}
.y46{bottom:45.847500px;}
.y141{bottom:48.629850px;}
.y48{bottom:52.596000px;}
.y4c{bottom:53.819850px;}
.y45{bottom:65.347500px;}
.y1eb{bottom:66.809850px;}
.y1e9{bottom:88.379850px;}
.y4a{bottom:94.169850px;}
.y10{bottom:109.273500px;}
.y1e6{bottom:109.904850px;}
.y24b{bottom:110.949150px;}
.y10b{bottom:111.710550px;}
.y1be{bottom:111.727110px;}
.y154{bottom:117.389850px;}
.y16e{bottom:117.435870px;}
.y1f9{bottom:121.977750px;}
.y72{bottom:127.550790px;}
.ye7{bottom:128.454870px;}
.y21c{bottom:129.282030px;}
.y184{bottom:129.809850px;}
.y173{bottom:131.219850px;}
.y1e3{bottom:131.474850px;}
.y2b{bottom:133.979550px;}
.y10a{bottom:134.745510px;}
.y1bd{bottom:134.762070px;}
.y24a{bottom:138.304290px;}
.y19e{bottom:140.593350px;}
.y153{bottom:142.709850px;}
.y1f8{bottom:145.194870px;}
.y1de{bottom:146.624850px;}
.y21b{bottom:147.643290px;}
.y71{bottom:150.767910px;}
.ye6{bottom:151.671990px;}
.ybe{bottom:152.762790px;}
.y1e0{bottom:152.999850px;}
.y1b5{bottom:153.149850px;}
.y43{bottom:154.119750px;}
.y2a{bottom:154.133070px;}
.y183{bottom:155.129850px;}
.y109{bottom:157.962630px;}
.y1bc{bottom:157.979190px;}
.y16d{bottom:158.471550px;}
.y19d{bottom:160.207350px;}
.y99{bottom:163.195590px;}
.y128{bottom:164.215950px;}
.y249{bottom:165.480150px;}
.y3d{bottom:165.773850px;}
.y21a{bottom:166.004550px;}
.y1d4{bottom:169.082910px;}
.y70{bottom:173.802870px;}
.y42{bottom:174.273270px;}
.y29{bottom:174.286590px;}
.ye5{bottom:174.706950px;}
.y13f{bottom:174.988950px;}
.ybd{bottom:175.979910px;}
.y19c{bottom:177.667350px;}
.y1bb{bottom:181.196310px;}
.y16c{bottom:181.688670px;}
.y248{bottom:183.841410px;}
.y3c{bottom:185.933850px;}
.y98{bottom:186.230550px;}
.y127{bottom:187.433070px;}
.y1a7{bottom:187.717500px;}
.y108{bottom:190.006230px;}
.y1d3{bottom:192.300030px;}
.y219{bottom:193.359690px;}
.y41{bottom:194.426790px;}
.y28{bottom:194.440110px;}
.y6f{bottom:197.019990px;}
.ye4{bottom:197.924070px;}
.y13e{bottom:198.206070px;}
.ybc{bottom:199.197030px;}
.y247{bottom:202.202670px;}
.y1ff{bottom:204.231270px;}
.y16b{bottom:204.905790px;}
.y3a{bottom:205.913850px;}
.y19f{bottom:207.082350px;}
.y97{bottom:209.447670px;}
.y126{bottom:210.468030px;}
.y218{bottom:211.541670px;}
.y40{bottom:214.580310px;}
.y27{bottom:214.593630px;}
.y1d2{bottom:215.334990px;}
.y1a9{bottom:220.657500px;}
.y13d{bottom:221.241030px;}
.y1ba{bottom:222.049830px;}
.ybb{bottom:222.231990px;}
.y16a{bottom:227.940750px;}
.y246{bottom:229.378530px;}
.y107{bottom:231.224070px;}
.y96{bottom:232.664790px;}
.y125{bottom:233.685150px;}
.y3f{bottom:234.733830px;}
.y26{bottom:234.747150px;}
.y6e{bottom:238.237830px;}
.y1d1{bottom:238.552110px;}
.y217{bottom:238.896810px;}
.ye3{bottom:239.141910px;}
.y1a3{bottom:240.170850px;}
.y13c{bottom:244.458150px;}
.yba{bottom:245.449110px;}
.y37{bottom:246.278850px;}
.y245{bottom:247.739790px;}
.y169{bottom:251.157870px;}
.y1ab{bottom:253.777500px;}
.y106{bottom:254.441190px;}
.y3e{bottom:254.887350px;}
.y25{bottom:254.900670px;}
.y95{bottom:255.699750px;}
.y124{bottom:256.902270px;}
.y216{bottom:257.258070px;}
.y6d{bottom:261.454950px;}
.y1d0{bottom:261.769230px;}
.ye2{bottom:262.176870px;}
.y1f{bottom:266.438850px;}
.y13b{bottom:267.675270px;}
.yb9{bottom:268.666230px;}
.y1a5{bottom:273.218850px;}
.y168{bottom:274.374990px;}
.y24{bottom:275.054190px;}
.y244{bottom:275.094930px;}
.y215{bottom:275.440050px;}
.y105{bottom:277.658310px;}
.y94{bottom:278.916870px;}
.y123{bottom:279.937230px;}
.y6c{bottom:284.489910px;}
.y1cf{bottom:284.804190px;}
.ye1{bottom:285.393990px;}
.y1e{bottom:286.598850px;}
.y1b9{bottom:286.666950px;}
.y1ad{bottom:286.897500px;}
.y13a{bottom:290.892390px;}
.yc4{bottom:291.701190px;}
.y3b{bottom:295.207350px;}
.y23{bottom:295.207710px;}
.y167{bottom:297.592110px;}
.y104{bottom:300.693270px;}
.y243{bottom:302.450070px;}
.y214{bottom:302.795190px;}
.y122{bottom:303.154350px;}
.y1a4{bottom:306.307350px;}
.y1d{bottom:306.758850px;}
.y6b{bottom:307.707030px;}
.y1ce{bottom:308.021310px;}
.ye0{bottom:308.611110px;}
.yb8{bottom:309.701910px;}
.y139{bottom:313.927350px;}
.y1fe{bottom:314.918310px;}
.y39{bottom:315.189150px;}
.y22{bottom:315.195630px;}
.y1af{bottom:319.837500px;}
.y93{bottom:320.134710px;}
.y166{bottom:320.627070px;}
.y242{bottom:320.632050px;}
.y103{bottom:323.910390px;}
.y121{bottom:326.371470px;}
.y213{bottom:330.195150px;}
.y6a{bottom:330.973830px;}
.y1cd{bottom:331.288110px;}
.y1b4{bottom:331.897500px;}
.yb7{bottom:332.968710px;}
.y38{bottom:335.392350px;}
.y21{bottom:335.398830px;}
.y1fd{bottom:338.185110px;}
.y1a0{bottom:339.382350px;}
.y92{bottom:343.219350px;}
.y165{bottom:343.893870px;}
.y34{bottom:347.078850px;}
.y241{bottom:348.032010px;}
.y212{bottom:348.556410px;}
.ydf{bottom:349.696470px;}
.y1b1{bottom:352.957500px;}
.y138{bottom:353.572350px;}
.y69{bottom:354.008790px;}
.y20{bottom:355.552350px;}
.yb6{bottom:356.185830px;}
.y1fc{bottom:361.220070px;}
.y102{bottom:365.177910px;}
.y240{bottom:366.393270px;}
.y91{bottom:366.436470px;}
.y33{bottom:367.238850px;}
.y120{bottom:367.456830px;}
.y1a1{bottom:372.430350px;}
.y1cc{bottom:372.505950px;}
.yde{bottom:372.913590px;}
.y137{bottom:373.192350px;}
.y211{bottom:375.732270px;}
.yb5{bottom:379.220790px;}
.y164{bottom:385.111710px;}
.y1b2{bottom:386.077500px;}
.y31{bottom:387.398850px;}
.y101{bottom:388.212870px;}
.y90{bottom:389.653590px;}
.y136{bottom:390.112350px;}
.y11f{bottom:390.673950px;}
.y140{bottom:390.757500px;}
.y23f{bottom:393.748410px;}
.y210{bottom:394.093530px;}
.y68{bottom:395.226630px;}
.y1cb{bottom:395.540910px;}
.y36{bottom:395.872350px;}
.yc3{bottom:402.437910px;}
.y1a6{bottom:405.518850px;}
.y18{bottom:407.378850px;}
.y1f7{bottom:407.472150px;}
.y163{bottom:408.146670px;}
.y100{bottom:411.429990px;}
.y23e{bottom:411.930390px;}
.y20f{bottom:412.454790px;}
.y11e{bottom:413.891070px;}
.ydd{bottom:414.131430px;}
.y67{bottom:418.443750px;}
.y1ca{bottom:418.758030px;}
.y1b3{bottom:419.197500px;}
.yb4{bottom:420.438630px;}
.y147{bottom:421.718850px;}
.y1fb{bottom:425.655030px;}
.y17{bottom:427.538850px;}
.y23d{bottom:430.291650px;}
.y8f{bottom:430.507110px;}
.y162{bottom:431.363790px;}
.yff{bottom:434.647110px;}
.y35{bottom:436.192350px;}
.y1c{bottom:436.211790px;}
.y11d{bottom:436.926030px;}
.ydc{bottom:437.166390px;}
.y1a2{bottom:438.607350px;}
.y20e{bottom:439.809930px;}
.y66{bottom:441.478710px;}
.y1c9{bottom:441.975150px;}
.y148{bottom:443.345850px;}
.yb3{bottom:443.655750px;}
.y2f{bottom:447.698850px;}
.y1f6{bottom:448.689990px;}
.y161{bottom:454.580910px;}
.y1b{bottom:456.365310px;}
.y23c{bottom:457.646790px;}
.yfe{bottom:457.682070px;}
.y11c{bottom:460.143150px;}
.y65{bottom:464.695830px;}
.y1c8{bottom:465.010110px;}
.y149{bottom:465.026850px;}
.yb2{bottom:466.690710px;}
.y20d{bottom:466.985790px;}
.y2e{bottom:467.858850px;}
.y8e{bottom:471.907110px;}
.y23b{bottom:475.828770px;}
.y32{bottom:476.512350px;}
.y1a{bottom:476.518830px;}
.y160{bottom:477.615870px;}
.ydb{bottom:478.384230px;}
.y11b{bottom:483.360270px;}
.y14a{bottom:486.667350px;}
.y143{bottom:487.490850px;}
.y64{bottom:487.912950px;}
.y14{bottom:488.048850px;}
.yb1{bottom:489.907830px;}
.y20c{bottom:494.340930px;}
.y8d{bottom:495.124230px;}
.y19{bottom:496.672350px;}
.yfd{bottom:498.899910px;}
.y15f{bottom:500.832990px;}
.yda{bottom:501.601350px;}
.y23a{bottom:503.183910px;}
.y142{bottom:506.107350px;}
.y1c7{bottom:506.227950px;}
.y11a{bottom:506.395230px;}
.y2d{bottom:508.208850px;}
.y14b{bottom:508.294350px;}
.y63{bottom:510.947910px;}
.y20b{bottom:512.702190px;}
.yb0{bottom:513.124950px;}
.y30{bottom:516.652350px;}
.y8c{bottom:518.159190px;}
.y239{bottom:521.545170px;}
.yfc{bottom:522.117030px;}
.y15e{bottom:524.050110px;}
.y1c6{bottom:529.445070px;}
.y119{bottom:529.612350px;}
.y14c{bottom:529.975350px;}
.y1b8{bottom:536.159910px;}
.y19b{bottom:536.162070px;}
.y11{bottom:537.368850px;}
.y20a{bottom:539.878050px;}
.y8b{bottom:541.376310px;}
.yd9{bottom:542.819190px;}
.yfb{bottom:545.151990px;}
.y144{bottom:547.646850px;}
.y238{bottom:548.900310px;}
.y14d{bottom:551.602350px;}
.y62{bottom:552.165750px;}
.y1c5{bottom:552.480030px;}
.yaf{bottom:554.160630px;}
.y16{bottom:556.978830px;}
.y209{bottom:558.239310px;}
.y1b7{bottom:559.377030px;}
.y19a{bottom:559.379190px;}
.y8a{bottom:564.593430px;}
.y15d{bottom:565.085790px;}
.yd8{bottom:565.854150px;}
.y118{bottom:566.872350px;}
.y237{bottom:567.082290px;}
.yfa{bottom:568.369110px;}
.y14e{bottom:573.242850px;}
.y61{bottom:575.382870px;}
.y1c4{bottom:575.697150px;}
.y208{bottom:576.600570px;}
.y15{bottom:577.132350px;}
.yae{bottom:577.377750px;}
.y1b6{bottom:582.594150px;}
.y199{bottom:582.596310px;}
.y236{bottom:585.443550px;}
.y89{bottom:587.810550px;}
.y15c{bottom:588.302910px;}
.yf9{bottom:591.586230px;}
.y117{bottom:592.612290px;}
.y14f{bottom:594.896850px;}
.y146{bottom:595.747350px;}
.y13{bottom:597.328830px;}
.y60{bottom:598.450950px;}
.y1c3{bottom:598.947390px;}
.yad{bottom:600.627990px;}
.y235{bottom:603.834690px;}
.y207{bottom:603.985590px;}
.y1f5{bottom:605.844390px;}
.y198{bottom:605.846550px;}
.yd7{bottom:607.105110px;}
.y88{bottom:610.878630px;}
.y15b{bottom:611.553150px;}
.y145{bottom:614.350350px;}
.yf8{bottom:614.836470px;}
.y150{bottom:616.537350px;}
.y12{bottom:617.482350px;}
.y116{bottom:618.742350px;}
.y5f{bottom:621.668070px;}
.y1c2{bottom:621.982350px;}
.y206{bottom:622.167570px;}
.yac{bottom:623.845110px;}
.y115{bottom:628.879350px;}
.y197{bottom:628.881510px;}
.y25a{bottom:629.714430px;}
.yd6{bottom:630.322230px;}
.y234{bottom:631.010550px;}
.y15a{bottom:634.588110px;}
.yf7{bottom:637.871430px;}
.y151{bottom:638.164350px;}
.y5e{bottom:644.885190px;}
.yc2{bottom:646.880070px;}
.y233{bottom:649.371810px;}
.y205{bottom:649.522710px;}
.y87{bottom:652.096470px;}
.yd5{bottom:653.357190px;}
.y159{bottom:657.805230px;}
.y1c1{bottom:661.762350px;}
.yab{bottom:664.880790px;}
.y259{bottom:666.078390px;}
.y204{bottom:667.883970px;}
.y114{bottom:670.097190px;}
.y196{bottom:670.099350px;}
.y86{bottom:675.313590px;}
.yd4{bottom:676.574310px;}
.y232{bottom:676.726950px;}
.yf6{bottom:679.089270px;}
.y158{bottom:681.022350px;}
.y1c0{bottom:681.375510px;}
.y135{bottom:684.305670px;}
.y5d{bottom:685.920870px;}
.y203{bottom:686.065950px;}
.yaa{bottom:688.097910px;}
.y113{bottom:693.314310px;}
.y195{bottom:693.316470px;}
.y85{bottom:698.348550px;}
.yd3{bottom:699.791430px;}
.y1bf{bottom:702.082350px;}
.yf5{bottom:702.306390px;}
.y258{bottom:702.442350px;}
.yf{bottom:702.982350px;}
.y231{bottom:704.082090px;}
.y134{bottom:707.340630px;}
.y5c{bottom:709.137990px;}
.ya9{bottom:711.315030px;}
.y202{bottom:713.421090px;}
.y112{bottom:716.349270px;}
.y194{bottom:716.351430px;}
.y1df{bottom:716.917500px;}
.y157{bottom:718.102350px;}
.y84{bottom:721.565670px;}
.yf4{bottom:725.341350px;}
.y133{bottom:730.557750px;}
.y230{bottom:731.257950px;}
.y201{bottom:731.782350px;}
.y1f1{bottom:732.037500px;}
.y5b{bottom:732.355110px;}
.y257{bottom:733.219830px;}
.ya8{bottom:734.349990px;}
.y156{bottom:735.029550px;}
.y111{bottom:739.566390px;}
.y193{bottom:739.568550px;}
.yd2{bottom:740.827110px;}
.y1dd{bottom:741.937500px;}
.y83{bottom:744.782790px;}
.yf3{bottom:748.558470px;}
.y22f{bottom:749.619210px;}
.y155{bottom:751.762350px;}
.y181{bottom:753.277500px;}
.y1ef{bottom:753.637500px;}
.y132{bottom:753.774870px;}
.y5a{bottom:755.390070px;}
.ya7{bottom:757.567110px;}
.y1f4{bottom:762.783510px;}
.y192{bottom:762.785670px;}
.yd1{bottom:764.044230px;}
.y256{bottom:765.445590px;}
.ye{bottom:766.902150px;}
.y22e{bottom:767.980470px;}
.yf2{bottom:771.775590px;}
.y1ec{bottom:775.237500px;}
.y131{bottom:776.809830px;}
.y59{bottom:778.607190px;}
.ya6{bottom:780.784230px;}
.y176{bottom:784.316850px;}
.y82{bottom:785.818470px;}
.y191{bottom:785.820630px;}
.yd{bottom:787.055670px;}
.y255{bottom:788.662710px;}
.yf1{bottom:794.810550px;}
.y22d{bottom:795.335610px;}
.y1ea{bottom:796.657500px;}
.y130{bottom:800.026950px;}
.yc1{bottom:803.819190px;}
.yd0{bottom:805.262070px;}
.yc{bottom:807.043590px;}
.y172{bottom:807.637500px;}
.y177{bottom:808.441350px;}
.y81{bottom:809.035590px;}
.y22c{bottom:813.517590px;}
.yf0{bottom:818.027670px;}
.y16f{bottom:818.227350px;}
.y1e7{bottom:818.257500px;}
.y58{bottom:819.825030px;}
.y254{bottom:820.706310px;}
.ya5{bottom:821.819910px;}
.y12f{bottom:823.244070px;}
.y1f3{bottom:826.854150px;}
.y110{bottom:827.036310px;}
.y190{bottom:827.038470px;}
.yb{bottom:827.197110px;}
.y22b{bottom:831.878850px;}
.y80{bottom:832.252710px;}
.y178{bottom:832.565850px;}
.y1e4{bottom:839.857500px;}
.yef{bottom:841.244790px;}
.y57{bottom:843.042150px;}
.y253{bottom:843.923430px;}
.ya4{bottom:845.037030px;}
.y12e{bottom:846.279030px;}
.ycf{bottom:846.297750px;}
.ya{bottom:847.350630px;}
.y10f{bottom:850.253430px;}
.y18f{bottom:850.255590px;}
.y171{bottom:851.990850px;}
.y7f{bottom:855.287670px;}
.y179{bottom:856.690350px;}
.y22a{bottom:859.233990px;}
.y1e1{bottom:861.277500px;}
.yee{bottom:864.329430px;}
.y56{bottom:866.126790px;}
.y170{bottom:867.070350px;}
.y252{bottom:867.190230px;}
.y9{bottom:867.553830px;}
.ya3{bottom:868.303830px;}
.yce{bottom:869.564550px;}
.y10e{bottom:873.338070px;}
.y18e{bottom:873.340230px;}
.y229{bottom:877.460790px;}
.y7e{bottom:878.554470px;}
.y17a{bottom:880.814850px;}
.y12d{bottom:887.546550px;}
.y8{bottom:887.707350px;}
.y55{bottom:889.343910px;}
.y251{bottom:890.225190px;}
.ya2{bottom:891.338790px;}
.y200{bottom:896.555190px;}
.y18d{bottom:896.557350px;}
.y228{bottom:904.815930px;}
.y17b{bottom:904.939350px;}
.yed{bottom:905.547270px;}
.y12c{bottom:910.763670px;}
.ycd{bottom:910.782390px;}
.y54{bottom:912.561030px;}
.ya1{bottom:914.555910px;}
.y1dc{bottom:915.562350px;}
.y250{bottom:919.387350px;}
.y7d{bottom:919.772310px;}
.y18c{bottom:919.774470px;}
.y227{bottom:923.177190px;}
.yec{bottom:928.764390px;}
.y17c{bottom:929.063850px;}
.y1d5{bottom:931.477500px;}
.y12b{bottom:933.798630px;}
.ya0{bottom:937.773030px;}
.y226{bottom:941.538450px;}
.y7c{bottom:942.807270px;}
.y53{bottom:950.350950px;}
.yeb{bottom:951.799350px;}
.ycc{bottom:951.818070px;}
.y17d{bottom:953.188350px;}
.y24f{bottom:959.720430px;}
.y1d7{bottom:960.277500px;}
.yc0{bottom:960.807990px;}
.y18b{bottom:960.810150px;}
.y7{bottom:962.767350px;}
.y7b{bottom:966.024390px;}
.y225{bottom:968.714310px;}
.y175{bottom:972.628350px;}
.y12a{bottom:974.834310px;}
.yea{bottom:975.016470px;}
.ycb{bottom:975.035190px;}
.y17e{bottom:977.312850px;}
.y9f{bottom:978.808710px;}
.y10d{bottom:984.025110px;}
.y18a{bottom:984.027270px;}
.y224{bottom:987.075570px;}
.y6{bottom:987.427350px;}
.y174{bottom:987.667350px;}
.y52{bottom:988.687350px;}
.y7a{bottom:989.241510px;}
.y1d9{bottom:989.257500px;}
.ye9{bottom:998.233590px;}
.yca{bottom:998.252310px;}
.y17f{bottom:1001.437350px;}
.ybf{bottom:1001.843670px;}
.y9e{bottom:1002.025830px;}
.y51{bottom:1005.067500px;}
.y223{bottom:1005.436830px;}
.y129{bottom:1007.060070px;}
.y10c{bottom:1007.242230px;}
.y189{bottom:1007.244390px;}
.y5{bottom:1009.207350px;}
.y79{bottom:1012.276470px;}
.y24e{bottom:1014.430710px;}
.y1da{bottom:1018.057500px;}
.yc9{bottom:1021.287270px;}
.y9d{bottom:1025.242950px;}
.y180{bottom:1025.588850px;}
.ye8{bottom:1030.095030px;}
.y1fa{bottom:1030.277190px;}
.y188{bottom:1030.279350px;}
.y222{bottom:1032.791970px;}
.y78{bottom:1035.493590px;}
.y4{bottom:1036.567350px;}
.y49{bottom:1046.107500px;}
.y9c{bottom:1048.277910px;}
.y24d{bottom:1050.973950px;}
.y187{bottom:1053.496470px;}
.y4e{bottom:1059.613830px;}
.y221{bottom:1059.967830px;}
.yc8{bottom:1062.505110px;}
.y3{bottom:1064.107350px;}
.y50{bottom:1070.771670px;}
.y9b{bottom:1071.495030px;}
.y77{bottom:1076.529270px;}
.y186{bottom:1076.713590px;}
.y220{bottom:1078.329090px;}
.y4d{bottom:1079.767350px;}
.yc7{bottom:1085.722230px;}
.y9a{bottom:1094.712150px;}
.y2{bottom:1095.427350px;}
.y21f{bottom:1096.690350px;}
.y185{bottom:1099.748550px;}
.y4f{bottom:1099.933830px;}
.yc6{bottom:1108.757190px;}
.y24c{bottom:1114.872330px;}
.y76{bottom:1117.747110px;}
.y4b{bottom:1120.087350px;}
.y21e{bottom:1123.866210px;}
.yc5{bottom:1140.817350px;}
.y75{bottom:1140.997350px;}
.y21d{bottom:1142.257350px;}
.y1{bottom:1148.197350px;}
.y74{bottom:1188.425250px;}
.y73{bottom:1207.925250px;}
.h23{height:21.060000px;}
.h12{height:26.280000px;}
.h20{height:28.978500px;}
.h1f{height:28.980000px;}
.h1b{height:33.120000px;}
.h1c{height:33.121500px;}
.h29{height:36.540000px;}
.h10{height:38.759766px;}
.h16{height:39.830273px;}
.hd{height:40.141500px;}
.h2b{height:41.405977px;}
.h2a{height:42.894141px;}
.ha{height:44.534180px;}
.h9{height:45.345937px;}
.hf{height:45.895781px;}
.h6{height:47.545312px;}
.h1a{height:47.988281px;}
.h7{height:49.284492px;}
.h1e{height:49.289062px;}
.h15{height:51.649567px;}
.h2{height:51.679688px;}
.hb{height:54.430664px;}
.h4{height:54.628594px;}
.he{height:55.357234px;}
.h5{height:57.585938px;}
.h28{height:58.140000px;}
.h11{height:63.720000px;}
.h3{height:74.223633px;}
.h27{height:79.740000px;}
.h26{height:101.160000px;}
.hc{height:109.656000px;}
.h25{height:122.760000px;}
.h14{height:130.320000px;}
.h19{height:142.741500px;}
.h24{height:144.360000px;}
.h17{height:146.340000px;}
.h13{height:155.520000px;}
.h21{height:159.481500px;}
.h22{height:165.780000px;}
.h1d{height:165.960000px;}
.h18{height:167.940000px;}
.h8{height:552.855000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w23{width:16.380000px;}
.w5{width:38.520000px;}
.wc{width:38.521500px;}
.w24{width:41.221500px;}
.w19{width:47.338500px;}
.w22{width:47.340000px;}
.w1b{width:48.600000px;}
.w20{width:51.840000px;}
.w18{width:52.020000px;}
.w1f{width:53.460000px;}
.w8{width:53.640000px;}
.w21{width:57.780000px;}
.w4{width:57.960000px;}
.wb{width:57.961500px;}
.w1a{width:58.680000px;}
.w1e{width:61.378500px;}
.we{width:61.380000px;}
.w7{width:61.560000px;}
.w6{width:66.060000px;}
.wd{width:66.061500px;}
.w1d{width:66.780000px;}
.w1c{width:67.500000px;}
.wf{width:74.338500px;}
.w9{width:74.520000px;}
.wa{width:79.380000px;}
.w16{width:86.760000px;}
.w17{width:98.640000px;}
.w10{width:101.880000px;}
.w12{width:109.620000px;}
.w11{width:113.580000px;}
.w14{width:114.300000px;}
.w13{width:121.500000px;}
.w15{width:126.180000px;}
.w2{width:336.090000px;}
.w3{width:336.315000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.739700px;}
.xb{left:49.493700px;}
.x8{left:111.423000px;}
.xa{left:119.162700px;}
.x6{left:127.622700px;}
.x3b{left:129.027000px;}
.x3a{left:133.707000px;}
.x7{left:136.802700px;}
.x38{left:141.627000px;}
.x1b{left:144.047700px;}
.x39{left:145.587000px;}
.x43{left:148.647000px;}
.x1a{left:150.878700px;}
.x37{left:153.325500px;}
.x3d{left:156.567000px;}
.x13{left:159.649740px;}
.x4{left:166.864200px;}
.x3c{left:168.447000px;}
.x42{left:171.507000px;}
.x14{left:180.697500px;}
.x44{left:206.036700px;}
.x17{left:210.207000px;}
.x10{left:214.454700px;}
.x19{left:218.473200px;}
.x1c{left:219.927000px;}
.x5{left:221.404200px;}
.xf{left:247.394700px;}
.x11{left:252.434700px;}
.x45{left:261.865500px;}
.x3e{left:264.387000px;}
.x28{left:265.796700px;}
.x4b{left:273.027000px;}
.x29{left:275.570700px;}
.xe{left:287.534700px;}
.x2d{left:295.172700px;}
.x2a{left:304.960200px;}
.x24{left:322.345500px;}
.x1d{left:324.327000px;}
.x22{left:334.660200px;}
.x18{left:336.746700px;}
.x2b{left:353.924700px;}
.x30{left:363.725700px;}
.x3f{left:379.407000px;}
.x46{left:381.745500px;}
.x48{left:385.887000px;}
.x2f{left:402.889200px;}
.x2e{left:438.637200px;}
.x25{left:441.507000px;}
.x1e{left:444.925500px;}
.x3{left:446.449200px;}
.xc{left:448.242000px;}
.x23{left:451.556700px;}
.xd{left:455.981700px;}
.x2c{left:458.171700px;}
.x33{left:471.401700px;}
.x31{left:481.189200px;}
.x40{left:502.347000px;}
.x36{left:516.950700px;}
.x49{left:519.445500px;}
.x1{left:553.391700px;}
.x34{left:559.529700px;}
.x26{left:562.287000px;}
.x1f{left:567.147000px;}
.x41{left:577.587000px;}
.x35{left:608.494200px;}
.x4a{left:653.007000px;}
.x47{left:655.167000px;}
.x32{left:657.445200px;}
.x15{left:659.411700px;}
.x27{left:673.527000px;}
.x20{left:678.927000px;}
.x12{left:742.022850px;}
.x21{left:760.616700px;}
.x2{left:765.476700px;}
.x16{left:766.736700px;}
@media print{
.v1{vertical-align:-76.266667pt;}
.v2{vertical-align:-19.824000pt;}
.v3{vertical-align:-17.808000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.898560pt;}
.ls1e{letter-spacing:-0.824320pt;}
.ls26{letter-spacing:-0.765440pt;}
.ls4f{letter-spacing:-0.743680pt;}
.ls21{letter-spacing:-0.706560pt;}
.ls13{letter-spacing:-0.647680pt;}
.ls50{letter-spacing:-0.637440pt;}
.ls1d{letter-spacing:-0.588800pt;}
.ls9{letter-spacing:-0.560000pt;}
.ls12{letter-spacing:-0.529920pt;}
.lsc{letter-spacing:-0.412160pt;}
.ls3e{letter-spacing:-0.353280pt;}
.lsb{letter-spacing:-0.294400pt;}
.ls31{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.265600pt;}
.ls36{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.235520pt;}
.ls48{letter-spacing:-0.212480pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.176640pt;}
.ls4d{letter-spacing:-0.159360pt;}
.ls1f{letter-spacing:-0.117760pt;}
.ls2d{letter-spacing:-0.106240pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls39{letter-spacing:-0.058880pt;}
.ls11{letter-spacing:-0.053120pt;}
.ls8{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.053120pt;}
.ls6{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.117760pt;}
.ls37{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.159360pt;}
.ls3{letter-spacing:0.176640pt;}
.ls47{letter-spacing:0.212480pt;}
.ls27{letter-spacing:0.235520pt;}
.ls4e{letter-spacing:0.265600pt;}
.ls20{letter-spacing:0.294400pt;}
.ls4c{letter-spacing:0.318720pt;}
.ls2e{letter-spacing:0.412160pt;}
.ls15{letter-spacing:0.471040pt;}
.ls51{letter-spacing:0.584320pt;}
.ls4b{letter-spacing:0.637440pt;}
.ls22{letter-spacing:0.765440pt;}
.ls2f{letter-spacing:1.413120pt;}
.ls38{letter-spacing:1.589760pt;}
.ls5{letter-spacing:2.060800pt;}
.ls34{letter-spacing:2.708480pt;}
.ls42{letter-spacing:2.709120pt;}
.ls2a{letter-spacing:3.356160pt;}
.ls23{letter-spacing:3.944960pt;}
.ls29{letter-spacing:4.592640pt;}
.ls3b{letter-spacing:5.240320pt;}
.ls49{letter-spacing:5.258880pt;}
.ls2b{letter-spacing:5.888000pt;}
.ls44{letter-spacing:5.896320pt;}
.ls45{letter-spacing:6.533760pt;}
.ls1b{letter-spacing:6.535680pt;}
.ls3f{letter-spacing:7.183360pt;}
.ls4a{letter-spacing:7.861760pt;}
.ls1a{letter-spacing:8.478720pt;}
.ls30{letter-spacing:9.067520pt;}
.ls35{letter-spacing:9.715200pt;}
.ls46{letter-spacing:9.774080pt;}
.ls28{letter-spacing:11.010560pt;}
.ls17{letter-spacing:11.013120pt;}
.ls3a{letter-spacing:11.658240pt;}
.ls43{letter-spacing:11.686400pt;}
.ls4{letter-spacing:12.305920pt;}
.ls19{letter-spacing:13.719040pt;}
.ls41{letter-spacing:14.190080pt;}
.ls1c{letter-spacing:14.837760pt;}
.ls3d{letter-spacing:15.485440pt;}
.ls24{letter-spacing:16.133120pt;}
.ls2c{letter-spacing:16.780800pt;}
.ls40{letter-spacing:17.428480pt;}
.ls25{letter-spacing:19.960320pt;}
.ls3c{letter-spacing:21.903360pt;}
.ls2{letter-spacing:23.787520pt;}
.ls18{letter-spacing:25.848320pt;}
.ls7{letter-spacing:29.557760pt;}
.ls16{letter-spacing:56.453120pt;}
.ls0{letter-spacing:739.616000pt;}
.ws50{word-spacing:-58.644480pt;}
.wsf4{word-spacing:-28.844160pt;}
.wsf2{word-spacing:-27.994240pt;}
.wsf5{word-spacing:-27.941120pt;}
.ws51{word-spacing:-16.250880pt;}
.ws52{word-spacing:-13.601280pt;}
.ws7{word-spacing:-13.424640pt;}
.ws6{word-spacing:-13.365760pt;}
.ws0{word-spacing:-13.306880pt;}
.wsb9{word-spacing:-13.248000pt;}
.ws8{word-spacing:-13.130240pt;}
.ws5{word-spacing:-13.071360pt;}
.wsc9{word-spacing:-12.953600pt;}
.ws1{word-spacing:-12.894720pt;}
.ws4{word-spacing:-12.776960pt;}
.ws83{word-spacing:-12.659200pt;}
.wsf8{word-spacing:-12.589440pt;}
.wsef{word-spacing:-12.323840pt;}
.wsf3{word-spacing:-12.270720pt;}
.wsf7{word-spacing:-12.217600pt;}
.ws2{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.952000pt;}
.wsf6{word-spacing:-11.898880pt;}
.wsf0{word-spacing:-11.845760pt;}
.wsf1{word-spacing:-11.739520pt;}
.wsae{word-spacing:-10.992000pt;}
.ws9{word-spacing:-10.848000pt;}
.wsbf{word-spacing:-10.656000pt;}
.wsaf{word-spacing:-10.608000pt;}
.wsad{word-spacing:-10.560000pt;}
.wsa4{word-spacing:-1.200000pt;}
.wsb7{word-spacing:-0.960000pt;}
.wsa6{word-spacing:-0.912000pt;}
.ws7e{word-spacing:-0.824320pt;}
.wsc8{word-spacing:-0.647680pt;}
.wsb6{word-spacing:-0.624000pt;}
.ws8b{word-spacing:-0.588800pt;}
.ws57{word-spacing:-0.529920pt;}
.ws4d{word-spacing:-0.471040pt;}
.wsa8{word-spacing:-0.432000pt;}
.ws5e{word-spacing:-0.412160pt;}
.wsb5{word-spacing:-0.384000pt;}
.wsbc{word-spacing:-0.294400pt;}
.ws10f{word-spacing:-0.265600pt;}
.wsb{word-spacing:-0.240000pt;}
.ws93{word-spacing:-0.235520pt;}
.wsd8{word-spacing:-0.212480pt;}
.ws71{word-spacing:-0.176640pt;}
.ws10{word-spacing:-0.159360pt;}
.ws45{word-spacing:-0.058880pt;}
.ws11{word-spacing:-0.053120pt;}
.wsa{word-spacing:0.000000pt;}
.wse1{word-spacing:0.053120pt;}
.wsca{word-spacing:0.058880pt;}
.wsa7{word-spacing:0.096000pt;}
.ws98{word-spacing:0.106240pt;}
.ws6e{word-spacing:0.117760pt;}
.wsdc{word-spacing:0.159360pt;}
.ws3c{word-spacing:0.176640pt;}
.wse5{word-spacing:0.212480pt;}
.wse{word-spacing:0.235520pt;}
.wsb8{word-spacing:0.240000pt;}
.wsf{word-spacing:0.265600pt;}
.wsa1{word-spacing:0.288000pt;}
.wsd{word-spacing:0.294400pt;}
.ws7d{word-spacing:0.353280pt;}
.wse2{word-spacing:0.371840pt;}
.ws6f{word-spacing:0.412160pt;}
.ws1a{word-spacing:0.529920pt;}
.ws56{word-spacing:0.588800pt;}
.ws107{word-spacing:0.637440pt;}
.ws25{word-spacing:0.647680pt;}
.ws40{word-spacing:0.706560pt;}
.ws12{word-spacing:0.743680pt;}
.ws76{word-spacing:0.765440pt;}
.ws5b{word-spacing:0.824320pt;}
.ws41{word-spacing:0.883200pt;}
.wsc{word-spacing:0.898560pt;}
.wsa5{word-spacing:0.960000pt;}
.ws75{word-spacing:1.236480pt;}
.ws92{word-spacing:1.295360pt;}
.ws48{word-spacing:1.354240pt;}
.wsa3{word-spacing:1.413120pt;}
.ws3a{word-spacing:1.825280pt;}
.wsa9{word-spacing:1.884160pt;}
.ws80{word-spacing:1.943040pt;}
.ws4a{word-spacing:2.001920pt;}
.wsf9{word-spacing:2.018560pt;}
.ws49{word-spacing:2.119680pt;}
.ws47{word-spacing:2.472960pt;}
.wse4{word-spacing:2.496640pt;}
.ws74{word-spacing:2.531840pt;}
.ws89{word-spacing:2.590720pt;}
.ws2a{word-spacing:2.649600pt;}
.wsdd{word-spacing:2.656000pt;}
.wsde{word-spacing:2.762240pt;}
.ws95{word-spacing:2.767360pt;}
.ws8a{word-spacing:2.944000pt;}
.ws84{word-spacing:3.120640pt;}
.ws7a{word-spacing:3.179520pt;}
.ws110{word-spacing:3.187200pt;}
.wsbb{word-spacing:3.238400pt;}
.ws10e{word-spacing:3.293440pt;}
.ws15{word-spacing:3.297280pt;}
.wsac{word-spacing:3.356160pt;}
.wsb0{word-spacing:3.415040pt;}
.wsc7{word-spacing:3.591680pt;}
.wsd1{word-spacing:3.650560pt;}
.wsb2{word-spacing:3.768320pt;}
.ws30{word-spacing:3.886080pt;}
.wseb{word-spacing:3.930880pt;}
.ws73{word-spacing:3.944960pt;}
.ws91{word-spacing:4.003840pt;}
.ws114{word-spacing:4.090240pt;}
.wse0{word-spacing:4.408960pt;}
.ws5a{word-spacing:4.416000pt;}
.ws59{word-spacing:4.474880pt;}
.ws3b{word-spacing:4.533760pt;}
.ws7b{word-spacing:4.592640pt;}
.ws72{word-spacing:4.651520pt;}
.wsec{word-spacing:4.780800pt;}
.wsc2{word-spacing:4.887040pt;}
.ws8d{word-spacing:5.122560pt;}
.ws13{word-spacing:5.181440pt;}
.wsdf{word-spacing:5.205760pt;}
.ws88{word-spacing:5.240320pt;}
.wsa0{word-spacing:5.358080pt;}
.wse7{word-spacing:5.683840pt;}
.ws68{word-spacing:5.711360pt;}
.ws39{word-spacing:5.770240pt;}
.ws16{word-spacing:5.829120pt;}
.wse6{word-spacing:5.843200pt;}
.ws8e{word-spacing:5.946880pt;}
.ws38{word-spacing:6.005760pt;}
.ws9c{word-spacing:6.182400pt;}
.ws27{word-spacing:6.300160pt;}
.ws106{word-spacing:6.321280pt;}
.ws99{word-spacing:6.359040pt;}
.ws9e{word-spacing:6.417920pt;}
.wsfc{word-spacing:6.427520pt;}
.ws26{word-spacing:6.476800pt;}
.wse8{word-spacing:6.480640pt;}
.wsfd{word-spacing:6.533760pt;}
.wsbd{word-spacing:6.594560pt;}
.ws9a{word-spacing:6.653440pt;}
.ws90{word-spacing:7.065600pt;}
.ws113{word-spacing:7.118080pt;}
.ws23{word-spacing:7.124480pt;}
.wscc{word-spacing:7.183360pt;}
.ws34{word-spacing:7.242240pt;}
.ws102{word-spacing:7.596160pt;}
.ws101{word-spacing:7.702400pt;}
.ws100{word-spacing:7.755520pt;}
.ws61{word-spacing:7.772160pt;}
.ws79{word-spacing:7.889920pt;}
.wscd{word-spacing:8.066560pt;}
.ws4e{word-spacing:8.243200pt;}
.wsb3{word-spacing:8.302080pt;}
.ws5f{word-spacing:8.360960pt;}
.ws60{word-spacing:8.419840pt;}
.ws3e{word-spacing:8.478720pt;}
.ws4f{word-spacing:8.537600pt;}
.ws8c{word-spacing:8.596480pt;}
.wsa2{word-spacing:8.890880pt;}
.ws2e{word-spacing:9.008640pt;}
.ws2d{word-spacing:9.067520pt;}
.ws10d{word-spacing:9.083520pt;}
.wsc4{word-spacing:9.126400pt;}
.ws3d{word-spacing:9.185280pt;}
.wsc5{word-spacing:9.420800pt;}
.wsab{word-spacing:9.479680pt;}
.ws3f{word-spacing:9.656320pt;}
.ws2c{word-spacing:9.715200pt;}
.wsea{word-spacing:9.720960pt;}
.ws2f{word-spacing:9.774080pt;}
.wscf{word-spacing:9.832960pt;}
.wsc3{word-spacing:10.245120pt;}
.ws22{word-spacing:10.304000pt;}
.wsd0{word-spacing:10.480640pt;}
.ws37{word-spacing:10.775040pt;}
.ws9b{word-spacing:10.833920pt;}
.ws36{word-spacing:10.951680pt;}
.wsfa{word-spacing:10.995840pt;}
.wsb4{word-spacing:11.069440pt;}
.wsc0{word-spacing:11.422720pt;}
.ws10a{word-spacing:11.473920pt;}
.wsc1{word-spacing:11.481600pt;}
.ws7c{word-spacing:11.540480pt;}
.ws42{word-spacing:11.599360pt;}
.wse3{word-spacing:11.633280pt;}
.ws81{word-spacing:11.658240pt;}
.ws43{word-spacing:11.776000pt;}
.ws44{word-spacing:12.070400pt;}
.ws96{word-spacing:12.188160pt;}
.ws69{word-spacing:12.247040pt;}
.ws46{word-spacing:12.364800pt;}
.wsba{word-spacing:12.776960pt;}
.ws53{word-spacing:12.894720pt;}
.ws82{word-spacing:13.365760pt;}
.wsbe{word-spacing:13.483520pt;}
.ws1b{word-spacing:13.542400pt;}
.wsd3{word-spacing:13.601280pt;}
.ws97{word-spacing:13.660160pt;}
.ws64{word-spacing:14.013440pt;}
.ws5d{word-spacing:14.072320pt;}
.ws33{word-spacing:14.131200pt;}
.wsd2{word-spacing:14.307840pt;}
.ws65{word-spacing:14.661120pt;}
.ws66{word-spacing:14.720000pt;}
.ws35{word-spacing:14.778880pt;}
.ws6a{word-spacing:15.191040pt;}
.ws67{word-spacing:15.426560pt;}
.ws6b{word-spacing:15.485440pt;}
.wsff{word-spacing:15.936000pt;}
.wsaa{word-spacing:16.015360pt;}
.ws5c{word-spacing:16.074240pt;}
.wsfe{word-spacing:16.095360pt;}
.ws94{word-spacing:16.133120pt;}
.ws70{word-spacing:16.192000pt;}
.wsb1{word-spacing:16.663040pt;}
.ws28{word-spacing:16.721920pt;}
.ws108{word-spacing:16.732800pt;}
.ws116{word-spacing:16.839680pt;}
.ws115{word-spacing:17.016320pt;}
.wsce{word-spacing:17.310720pt;}
.ws62{word-spacing:17.369600pt;}
.ws10c{word-spacing:17.848320pt;}
.ws10b{word-spacing:18.007680pt;}
.ws1e{word-spacing:18.017280pt;}
.ws6d{word-spacing:18.547200pt;}
.ws6c{word-spacing:18.606080pt;}
.ws29{word-spacing:19.253760pt;}
.wscb{word-spacing:19.783680pt;}
.ws2b{word-spacing:19.842560pt;}
.ws78{word-spacing:19.901440pt;}
.wsfb{word-spacing:19.920000pt;}
.ws31{word-spacing:19.960320pt;}
.wsd4{word-spacing:20.431360pt;}
.ws24{word-spacing:20.549120pt;}
.ws63{word-spacing:21.196800pt;}
.ws109{word-spacing:21.248000pt;}
.ws9f{word-spacing:21.314560pt;}
.wsd5{word-spacing:21.785600pt;}
.ws87{word-spacing:21.844480pt;}
.wsdb{word-spacing:21.885440pt;}
.ws32{word-spacing:22.492160pt;}
.wse9{word-spacing:22.522880pt;}
.ws7f{word-spacing:23.139840pt;}
.ws19{word-spacing:23.728640pt;}
.ws9d{word-spacing:25.024000pt;}
.ws8f{word-spacing:28.203520pt;}
.ws14{word-spacing:29.498880pt;}
.ws4c{word-spacing:29.616640pt;}
.ws4b{word-spacing:29.793280pt;}
.ws77{word-spacing:31.441920pt;}
.wsda{word-spacing:33.359360pt;}
.wsd9{word-spacing:33.412480pt;}
.wsc6{word-spacing:35.269120pt;}
.ws17{word-spacing:36.564480pt;}
.ws1d{word-spacing:37.212160pt;}
.ws1c{word-spacing:37.800960pt;}
.ws21{word-spacing:39.744000pt;}
.ws86{word-spacing:42.334720pt;}
.ws104{word-spacing:42.974080pt;}
.ws85{word-spacing:42.982400pt;}
.ws103{word-spacing:43.080320pt;}
.ws1f{word-spacing:43.100160pt;}
.ws20{word-spacing:43.571200pt;}
.ws112{word-spacing:44.673920pt;}
.ws111{word-spacing:44.886400pt;}
.ws18{word-spacing:45.514240pt;}
.ws55{word-spacing:46.161920pt;}
.wsee{word-spacing:48.604800pt;}
.wsed{word-spacing:48.764160pt;}
.ws105{word-spacing:48.817280pt;}
.wsd7{word-spacing:54.926080pt;}
.wsd6{word-spacing:55.138560pt;}
.ws58{word-spacing:55.700480pt;}
.ws54{word-spacing:77.486080pt;}
._10{margin-left:-22.420224pt;}
._d{margin-left:-13.483520pt;}
._9{margin-left:-4.833600pt;}
._a{margin-left:-3.907200pt;}
._2{margin-left:-2.188224pt;}
._0{margin-left:-1.200000pt;}
._3{width:0.907776pt;}
._4{width:1.906560pt;}
._14{width:3.179520pt;}
._8{width:4.565888pt;}
._f{width:6.064640pt;}
._17{width:7.404800pt;}
._5{width:9.185280pt;}
._12{width:12.086912pt;}
._1d{width:14.248960pt;}
._c{width:15.544320pt;}
._20{width:16.723328pt;}
._21{width:18.162304pt;}
._11{width:21.020160pt;}
._19{width:22.122624pt;}
._6{width:29.557760pt;}
._13{width:32.251392pt;}
._1e{width:33.621248pt;}
._b{width:39.685120pt;}
._e{width:43.326080pt;}
._1f{width:49.281152pt;}
._7{width:57.035947pt;}
._1c{width:78.672000pt;}
._1b{width:90.816000pt;}
._1a{width:103.056000pt;}
._18{width:110.017728pt;}
._16{width:257.472000pt;}
._15{width:262.416000pt;}
._1{width:1448.035840pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.999867pt;}
.y1ed{bottom:7.226533pt;}
.y1e5{bottom:7.226667pt;}
.y1e8{bottom:7.293200pt;}
.y1f2{bottom:7.333200pt;}
.y1e2{bottom:7.359867pt;}
.y152{bottom:11.906533pt;}
.y182{bottom:11.973200pt;}
.y1d6{bottom:14.306533pt;}
.y1d8{bottom:14.373200pt;}
.y1db{bottom:14.399867pt;}
.y1a8{bottom:17.853200pt;}
.y1ae{bottom:17.919867pt;}
.y1ac{bottom:17.946533pt;}
.y1aa{bottom:17.986533pt;}
.y1b0{bottom:18.013200pt;}
.y1f0{bottom:21.119867pt;}
.y44{bottom:21.919867pt;}
.y47{bottom:23.420000pt;}
.y1ee{bottom:40.253200pt;}
.y46{bottom:40.753333pt;}
.y141{bottom:43.226533pt;}
.y48{bottom:46.752000pt;}
.y4c{bottom:47.839867pt;}
.y45{bottom:58.086667pt;}
.y1eb{bottom:59.386533pt;}
.y1e9{bottom:78.559867pt;}
.y4a{bottom:83.706533pt;}
.y10{bottom:97.132000pt;}
.y1e6{bottom:97.693200pt;}
.y24b{bottom:98.621467pt;}
.y10b{bottom:99.298267pt;}
.y1be{bottom:99.312987pt;}
.y154{bottom:104.346533pt;}
.y16e{bottom:104.387440pt;}
.y1f9{bottom:108.424667pt;}
.y72{bottom:113.378480pt;}
.ye7{bottom:114.182107pt;}
.y21c{bottom:114.917360pt;}
.y184{bottom:115.386533pt;}
.y173{bottom:116.639867pt;}
.y1e3{bottom:116.866533pt;}
.y2b{bottom:119.092933pt;}
.y10a{bottom:119.773787pt;}
.y1bd{bottom:119.788507pt;}
.y24a{bottom:122.937147pt;}
.y19e{bottom:124.971867pt;}
.y153{bottom:126.853200pt;}
.y1f8{bottom:129.062107pt;}
.y1de{bottom:130.333200pt;}
.y21b{bottom:131.238480pt;}
.y71{bottom:134.015920pt;}
.ye6{bottom:134.819547pt;}
.ybe{bottom:135.789147pt;}
.y1e0{bottom:135.999867pt;}
.y1b5{bottom:136.133200pt;}
.y43{bottom:136.995333pt;}
.y2a{bottom:137.007173pt;}
.y183{bottom:137.893200pt;}
.y109{bottom:140.411227pt;}
.y1bc{bottom:140.425947pt;}
.y16d{bottom:140.863600pt;}
.y19d{bottom:142.406533pt;}
.y99{bottom:145.062747pt;}
.y128{bottom:145.969733pt;}
.y249{bottom:147.093467pt;}
.y3d{bottom:147.354533pt;}
.y21a{bottom:147.559600pt;}
.y1d4{bottom:150.295920pt;}
.y70{bottom:154.491440pt;}
.y42{bottom:154.909573pt;}
.y29{bottom:154.921413pt;}
.ye5{bottom:155.295067pt;}
.y13f{bottom:155.545733pt;}
.ybd{bottom:156.426587pt;}
.y19c{bottom:157.926533pt;}
.y1bb{bottom:161.063387pt;}
.y16c{bottom:161.501040pt;}
.y248{bottom:163.414587pt;}
.y3c{bottom:165.274533pt;}
.y98{bottom:165.538267pt;}
.y127{bottom:166.607173pt;}
.y1a7{bottom:166.860000pt;}
.y108{bottom:168.894427pt;}
.y1d3{bottom:170.933360pt;}
.y219{bottom:171.875280pt;}
.y41{bottom:172.823813pt;}
.y28{bottom:172.835653pt;}
.y6f{bottom:175.128880pt;}
.ye4{bottom:175.932507pt;}
.y13e{bottom:176.183173pt;}
.ybc{bottom:177.064027pt;}
.y247{bottom:179.735707pt;}
.y1ff{bottom:181.538907pt;}
.y16b{bottom:182.138480pt;}
.y3a{bottom:183.034533pt;}
.y19f{bottom:184.073200pt;}
.y97{bottom:186.175707pt;}
.y126{bottom:187.082693pt;}
.y218{bottom:188.037040pt;}
.y40{bottom:190.738053pt;}
.y27{bottom:190.749893pt;}
.y1d2{bottom:191.408880pt;}
.y1a9{bottom:196.140000pt;}
.y13d{bottom:196.658693pt;}
.y1ba{bottom:197.377627pt;}
.ybb{bottom:197.539547pt;}
.y16a{bottom:202.614000pt;}
.y246{bottom:203.892027pt;}
.y107{bottom:205.532507pt;}
.y96{bottom:206.813147pt;}
.y125{bottom:207.720133pt;}
.y3f{bottom:208.652293pt;}
.y26{bottom:208.664133pt;}
.y6e{bottom:211.766960pt;}
.y1d1{bottom:212.046320pt;}
.y217{bottom:212.352720pt;}
.ye3{bottom:212.570587pt;}
.y1a3{bottom:213.485200pt;}
.y13c{bottom:217.296133pt;}
.yba{bottom:218.176987pt;}
.y37{bottom:218.914533pt;}
.y245{bottom:220.213147pt;}
.y169{bottom:223.251440pt;}
.y1ab{bottom:225.580000pt;}
.y106{bottom:226.169947pt;}
.y3e{bottom:226.566533pt;}
.y25{bottom:226.578373pt;}
.y95{bottom:227.288667pt;}
.y124{bottom:228.357573pt;}
.y216{bottom:228.673840pt;}
.y6d{bottom:232.404400pt;}
.y1d0{bottom:232.683760pt;}
.ye2{bottom:233.046107pt;}
.y1f{bottom:236.834533pt;}
.y13b{bottom:237.933573pt;}
.yb9{bottom:238.814427pt;}
.y1a5{bottom:242.861200pt;}
.y168{bottom:243.888880pt;}
.y24{bottom:244.492613pt;}
.y244{bottom:244.528827pt;}
.y215{bottom:244.835600pt;}
.y105{bottom:246.807387pt;}
.y94{bottom:247.926107pt;}
.y123{bottom:248.833093pt;}
.y6c{bottom:252.879920pt;}
.y1cf{bottom:253.159280pt;}
.ye1{bottom:253.683547pt;}
.y1e{bottom:254.754533pt;}
.y1b9{bottom:254.815067pt;}
.y1ad{bottom:255.020000pt;}
.y13a{bottom:258.571013pt;}
.yc4{bottom:259.289947pt;}
.y3b{bottom:262.406533pt;}
.y23{bottom:262.406853pt;}
.y167{bottom:264.526320pt;}
.y104{bottom:267.282907pt;}
.y243{bottom:268.844507pt;}
.y214{bottom:269.151280pt;}
.y122{bottom:269.470533pt;}
.y1a4{bottom:272.273200pt;}
.y1d{bottom:272.674533pt;}
.y6b{bottom:273.517360pt;}
.y1ce{bottom:273.796720pt;}
.ye0{bottom:274.320987pt;}
.yb8{bottom:275.290587pt;}
.y139{bottom:279.046533pt;}
.y1fe{bottom:279.927387pt;}
.y39{bottom:280.168133pt;}
.y22{bottom:280.173893pt;}
.y1af{bottom:284.300000pt;}
.y93{bottom:284.564187pt;}
.y166{bottom:285.001840pt;}
.y242{bottom:285.006267pt;}
.y103{bottom:287.920347pt;}
.y121{bottom:290.107973pt;}
.y213{bottom:293.506800pt;}
.y6a{bottom:294.198960pt;}
.y1cd{bottom:294.478320pt;}
.y1b4{bottom:295.020000pt;}
.yb7{bottom:295.972187pt;}
.y38{bottom:298.126533pt;}
.y21{bottom:298.132293pt;}
.y1fd{bottom:300.608987pt;}
.y1a0{bottom:301.673200pt;}
.y92{bottom:305.083867pt;}
.y165{bottom:305.683440pt;}
.y34{bottom:308.514533pt;}
.y241{bottom:309.361787pt;}
.y212{bottom:309.827920pt;}
.ydf{bottom:310.841307pt;}
.y1b1{bottom:313.740000pt;}
.y138{bottom:314.286533pt;}
.y69{bottom:314.674480pt;}
.y20{bottom:316.046533pt;}
.yb6{bottom:316.609627pt;}
.y1fc{bottom:321.084507pt;}
.y102{bottom:324.602587pt;}
.y240{bottom:325.682907pt;}
.y91{bottom:325.721307pt;}
.y33{bottom:326.434533pt;}
.y120{bottom:326.628293pt;}
.y1a1{bottom:331.049200pt;}
.y1cc{bottom:331.116400pt;}
.yde{bottom:331.478747pt;}
.y137{bottom:331.726533pt;}
.y211{bottom:333.984240pt;}
.yb5{bottom:337.085147pt;}
.y164{bottom:342.321520pt;}
.y1b2{bottom:343.180000pt;}
.y31{bottom:344.354533pt;}
.y101{bottom:345.078107pt;}
.y90{bottom:346.358747pt;}
.y136{bottom:346.766533pt;}
.y11f{bottom:347.265733pt;}
.y140{bottom:347.340000pt;}
.y23f{bottom:349.998587pt;}
.y210{bottom:350.305360pt;}
.y68{bottom:351.312560pt;}
.y1cb{bottom:351.591920pt;}
.y36{bottom:351.886533pt;}
.yc3{bottom:357.722587pt;}
.y1a6{bottom:360.461200pt;}
.y18{bottom:362.114533pt;}
.y1f7{bottom:362.197467pt;}
.y163{bottom:362.797040pt;}
.y100{bottom:365.715547pt;}
.y23e{bottom:366.160347pt;}
.y20f{bottom:366.626480pt;}
.y11e{bottom:367.903173pt;}
.ydd{bottom:368.116827pt;}
.y67{bottom:371.950000pt;}
.y1ca{bottom:372.229360pt;}
.y1b3{bottom:372.620000pt;}
.yb4{bottom:373.723227pt;}
.y147{bottom:374.861200pt;}
.y1fb{bottom:378.360027pt;}
.y17{bottom:380.034533pt;}
.y23d{bottom:382.481467pt;}
.y8f{bottom:382.672987pt;}
.y162{bottom:383.434480pt;}
.yff{bottom:386.352987pt;}
.y35{bottom:387.726533pt;}
.y1c{bottom:387.743813pt;}
.y11d{bottom:388.378693pt;}
.ydc{bottom:388.592347pt;}
.y1a2{bottom:389.873200pt;}
.y20e{bottom:390.942160pt;}
.y66{bottom:392.425520pt;}
.y1c9{bottom:392.866800pt;}
.y148{bottom:394.085200pt;}
.yb3{bottom:394.360667pt;}
.y2f{bottom:397.954533pt;}
.y1f6{bottom:398.835547pt;}
.y161{bottom:404.071920pt;}
.y1b{bottom:405.658053pt;}
.y23c{bottom:406.797147pt;}
.yfe{bottom:406.828507pt;}
.y11c{bottom:409.016133pt;}
.y65{bottom:413.062960pt;}
.y1c8{bottom:413.342320pt;}
.y149{bottom:413.357200pt;}
.yb2{bottom:414.836187pt;}
.y20d{bottom:415.098480pt;}
.y2e{bottom:415.874533pt;}
.y8e{bottom:419.472987pt;}
.y23b{bottom:422.958907pt;}
.y32{bottom:423.566533pt;}
.y1a{bottom:423.572293pt;}
.y160{bottom:424.547440pt;}
.ydb{bottom:425.230427pt;}
.y11b{bottom:429.653573pt;}
.y14a{bottom:432.593200pt;}
.y143{bottom:433.325200pt;}
.y64{bottom:433.700400pt;}
.y14{bottom:433.821200pt;}
.yb1{bottom:435.473627pt;}
.y20c{bottom:439.414160pt;}
.y8d{bottom:440.110427pt;}
.y19{bottom:441.486533pt;}
.yfd{bottom:443.466587pt;}
.y15f{bottom:445.184880pt;}
.yda{bottom:445.867867pt;}
.y23a{bottom:447.274587pt;}
.y142{bottom:449.873200pt;}
.y1c7{bottom:449.980400pt;}
.y11a{bottom:450.129093pt;}
.y2d{bottom:451.741200pt;}
.y14b{bottom:451.817200pt;}
.y63{bottom:454.175920pt;}
.y20b{bottom:455.735280pt;}
.yb0{bottom:456.111067pt;}
.y30{bottom:459.246533pt;}
.y8c{bottom:460.585947pt;}
.y239{bottom:463.595707pt;}
.yfc{bottom:464.104027pt;}
.y15e{bottom:465.822320pt;}
.y1c6{bottom:470.617840pt;}
.y119{bottom:470.766533pt;}
.y14c{bottom:471.089200pt;}
.y1b8{bottom:476.586587pt;}
.y19b{bottom:476.588507pt;}
.y11{bottom:477.661200pt;}
.y20a{bottom:479.891600pt;}
.y8b{bottom:481.223387pt;}
.yd9{bottom:482.505947pt;}
.yfb{bottom:484.579547pt;}
.y144{bottom:486.797200pt;}
.y238{bottom:487.911387pt;}
.y14d{bottom:490.313200pt;}
.y62{bottom:490.814000pt;}
.y1c5{bottom:491.093360pt;}
.yaf{bottom:492.587227pt;}
.y16{bottom:495.092293pt;}
.y209{bottom:496.212720pt;}
.y1b7{bottom:497.224027pt;}
.y19a{bottom:497.225947pt;}
.y8a{bottom:501.860827pt;}
.y15d{bottom:502.298480pt;}
.yd8{bottom:502.981467pt;}
.y118{bottom:503.886533pt;}
.y237{bottom:504.073147pt;}
.yfa{bottom:505.216987pt;}
.y14e{bottom:509.549200pt;}
.y61{bottom:511.451440pt;}
.y1c4{bottom:511.730800pt;}
.y208{bottom:512.533840pt;}
.y15{bottom:513.006533pt;}
.yae{bottom:513.224667pt;}
.y1b6{bottom:517.861467pt;}
.y199{bottom:517.863387pt;}
.y236{bottom:520.394267pt;}
.y89{bottom:522.498267pt;}
.y15c{bottom:522.935920pt;}
.yf9{bottom:525.854427pt;}
.y117{bottom:526.766480pt;}
.y14f{bottom:528.797200pt;}
.y146{bottom:529.553200pt;}
.y13{bottom:530.958960pt;}
.y60{bottom:531.956400pt;}
.y1c3{bottom:532.397680pt;}
.yad{bottom:533.891547pt;}
.y235{bottom:536.741947pt;}
.y207{bottom:536.876080pt;}
.y1f5{bottom:538.528347pt;}
.y198{bottom:538.530267pt;}
.yd7{bottom:539.648987pt;}
.y88{bottom:543.003227pt;}
.y15b{bottom:543.602800pt;}
.y145{bottom:546.089200pt;}
.yf8{bottom:546.521307pt;}
.y150{bottom:548.033200pt;}
.y12{bottom:548.873200pt;}
.y116{bottom:549.993200pt;}
.y5f{bottom:552.593840pt;}
.y1c2{bottom:552.873200pt;}
.y206{bottom:553.037840pt;}
.yac{bottom:554.528987pt;}
.y115{bottom:559.003867pt;}
.y197{bottom:559.005787pt;}
.y25a{bottom:559.746160pt;}
.yd6{bottom:560.286427pt;}
.y234{bottom:560.898267pt;}
.y15a{bottom:564.078320pt;}
.yf7{bottom:566.996827pt;}
.y151{bottom:567.257200pt;}
.y5e{bottom:573.231280pt;}
.yc2{bottom:575.004507pt;}
.y233{bottom:577.219387pt;}
.y205{bottom:577.353520pt;}
.y87{bottom:579.641307pt;}
.yd5{bottom:580.761947pt;}
.y159{bottom:584.715760pt;}
.y1c1{bottom:588.233200pt;}
.yab{bottom:591.005147pt;}
.y259{bottom:592.069680pt;}
.y204{bottom:593.674640pt;}
.y114{bottom:595.641947pt;}
.y196{bottom:595.643867pt;}
.y86{bottom:600.278747pt;}
.yd4{bottom:601.399387pt;}
.y232{bottom:601.535067pt;}
.yf6{bottom:603.634907pt;}
.y158{bottom:605.353200pt;}
.y1c0{bottom:605.667120pt;}
.y135{bottom:608.271707pt;}
.y5d{bottom:609.707440pt;}
.y203{bottom:609.836400pt;}
.yaa{bottom:611.642587pt;}
.y113{bottom:616.279387pt;}
.y195{bottom:616.281307pt;}
.y85{bottom:620.754267pt;}
.yd3{bottom:622.036827pt;}
.y1bf{bottom:624.073200pt;}
.yf5{bottom:624.272347pt;}
.y258{bottom:624.393200pt;}
.yf{bottom:624.873200pt;}
.y231{bottom:625.850747pt;}
.y134{bottom:628.747227pt;}
.y5c{bottom:630.344880pt;}
.ya9{bottom:632.280027pt;}
.y202{bottom:634.152080pt;}
.y112{bottom:636.754907pt;}
.y194{bottom:636.756827pt;}
.y1df{bottom:637.260000pt;}
.y157{bottom:638.313200pt;}
.y84{bottom:641.391707pt;}
.yf4{bottom:644.747867pt;}
.y133{bottom:649.384667pt;}
.y230{bottom:650.007067pt;}
.y201{bottom:650.473200pt;}
.y1f1{bottom:650.700000pt;}
.y5b{bottom:650.982320pt;}
.y257{bottom:651.750960pt;}
.ya8{bottom:652.755547pt;}
.y156{bottom:653.359600pt;}
.y111{bottom:657.392347pt;}
.y193{bottom:657.394267pt;}
.yd2{bottom:658.512987pt;}
.y1dd{bottom:659.500000pt;}
.y83{bottom:662.029147pt;}
.yf3{bottom:665.385307pt;}
.y22f{bottom:666.328187pt;}
.y155{bottom:668.233200pt;}
.y181{bottom:669.580000pt;}
.y1ef{bottom:669.900000pt;}
.y132{bottom:670.022107pt;}
.y5a{bottom:671.457840pt;}
.ya7{bottom:673.392987pt;}
.y1f4{bottom:678.029787pt;}
.y192{bottom:678.031707pt;}
.yd1{bottom:679.150427pt;}
.y256{bottom:680.396080pt;}
.ye{bottom:681.690800pt;}
.y22e{bottom:682.649307pt;}
.yf2{bottom:686.022747pt;}
.y1ec{bottom:689.100000pt;}
.y131{bottom:690.497627pt;}
.y59{bottom:692.095280pt;}
.ya6{bottom:694.030427pt;}
.y176{bottom:697.170533pt;}
.y82{bottom:698.505307pt;}
.y191{bottom:698.507227pt;}
.yd{bottom:699.605040pt;}
.y255{bottom:701.033520pt;}
.yf1{bottom:706.498267pt;}
.y22d{bottom:706.964987pt;}
.y1ea{bottom:708.140000pt;}
.y130{bottom:711.135067pt;}
.yc1{bottom:714.505947pt;}
.yd0{bottom:715.788507pt;}
.yc{bottom:717.372080pt;}
.y172{bottom:717.900000pt;}
.y177{bottom:718.614533pt;}
.y81{bottom:719.142747pt;}
.y22c{bottom:723.126747pt;}
.yf0{bottom:727.135707pt;}
.y16f{bottom:727.313200pt;}
.y1e7{bottom:727.340000pt;}
.y58{bottom:728.733360pt;}
.y254{bottom:729.516720pt;}
.ya5{bottom:730.506587pt;}
.y12f{bottom:731.772507pt;}
.y1f3{bottom:734.981467pt;}
.y110{bottom:735.143387pt;}
.y190{bottom:735.145307pt;}
.yb{bottom:735.286320pt;}
.y22b{bottom:739.447867pt;}
.y80{bottom:739.780187pt;}
.y178{bottom:740.058533pt;}
.y1e4{bottom:746.540000pt;}
.yef{bottom:747.773147pt;}
.y57{bottom:749.370800pt;}
.y253{bottom:750.154160pt;}
.ya4{bottom:751.144027pt;}
.y12e{bottom:752.248027pt;}
.ycf{bottom:752.264667pt;}
.ya{bottom:753.200560pt;}
.y10f{bottom:755.780827pt;}
.y18f{bottom:755.782747pt;}
.y171{bottom:757.325200pt;}
.y7f{bottom:760.255707pt;}
.y179{bottom:761.502533pt;}
.y22a{bottom:763.763547pt;}
.y1e1{bottom:765.580000pt;}
.yee{bottom:768.292827pt;}
.y56{bottom:769.890480pt;}
.y170{bottom:770.729200pt;}
.y252{bottom:770.835760pt;}
.y9{bottom:771.158960pt;}
.ya3{bottom:771.825627pt;}
.yce{bottom:772.946267pt;}
.y10e{bottom:776.300507pt;}
.y18e{bottom:776.302427pt;}
.y229{bottom:779.965147pt;}
.y7e{bottom:780.937307pt;}
.y17a{bottom:782.946533pt;}
.y12d{bottom:788.930267pt;}
.y8{bottom:789.073200pt;}
.y55{bottom:790.527920pt;}
.y251{bottom:791.311280pt;}
.ya2{bottom:792.301147pt;}
.y200{bottom:796.937947pt;}
.y18d{bottom:796.939867pt;}
.y228{bottom:804.280827pt;}
.y17b{bottom:804.390533pt;}
.yed{bottom:804.930907pt;}
.y12c{bottom:809.567707pt;}
.ycd{bottom:809.584347pt;}
.y54{bottom:811.165360pt;}
.ya1{bottom:812.938587pt;}
.y1dc{bottom:813.833200pt;}
.y250{bottom:817.233200pt;}
.y7d{bottom:817.575387pt;}
.y18c{bottom:817.577307pt;}
.y227{bottom:820.601947pt;}
.yec{bottom:825.568347pt;}
.y17c{bottom:825.834533pt;}
.y1d5{bottom:827.980000pt;}
.y12b{bottom:830.043227pt;}
.ya0{bottom:833.576027pt;}
.y226{bottom:836.923067pt;}
.y7c{bottom:838.050907pt;}
.y53{bottom:844.756400pt;}
.yeb{bottom:846.043867pt;}
.ycc{bottom:846.060507pt;}
.y17d{bottom:847.278533pt;}
.y24f{bottom:853.084827pt;}
.y1d7{bottom:853.580000pt;}
.yc0{bottom:854.051547pt;}
.y18b{bottom:854.053467pt;}
.y7{bottom:855.793200pt;}
.y7b{bottom:858.688347pt;}
.y225{bottom:861.079387pt;}
.y175{bottom:864.558533pt;}
.y12a{bottom:866.519387pt;}
.yea{bottom:866.681307pt;}
.ycb{bottom:866.697947pt;}
.y17e{bottom:868.722533pt;}
.y9f{bottom:870.052187pt;}
.y10d{bottom:874.688987pt;}
.y18a{bottom:874.690907pt;}
.y224{bottom:877.400507pt;}
.y6{bottom:877.713200pt;}
.y174{bottom:877.926533pt;}
.y52{bottom:878.833200pt;}
.y7a{bottom:879.325787pt;}
.y1d9{bottom:879.340000pt;}
.ye9{bottom:887.318747pt;}
.yca{bottom:887.335387pt;}
.y17f{bottom:890.166533pt;}
.ybf{bottom:890.527707pt;}
.y9e{bottom:890.689627pt;}
.y51{bottom:893.393333pt;}
.y223{bottom:893.721627pt;}
.y129{bottom:895.164507pt;}
.y10c{bottom:895.326427pt;}
.y189{bottom:895.328347pt;}
.y5{bottom:897.073200pt;}
.y79{bottom:899.801307pt;}
.y24e{bottom:901.716187pt;}
.y1da{bottom:904.940000pt;}
.yc9{bottom:907.810907pt;}
.y9d{bottom:911.327067pt;}
.y180{bottom:911.634533pt;}
.ye8{bottom:915.640027pt;}
.y1fa{bottom:915.801947pt;}
.y188{bottom:915.803867pt;}
.y222{bottom:918.037307pt;}
.y78{bottom:920.438747pt;}
.y4{bottom:921.393200pt;}
.y49{bottom:929.873333pt;}
.y9c{bottom:931.802587pt;}
.y24d{bottom:934.199067pt;}
.y187{bottom:936.441307pt;}
.y4e{bottom:941.878960pt;}
.y221{bottom:942.193627pt;}
.yc8{bottom:944.448987pt;}
.y3{bottom:945.873200pt;}
.y50{bottom:951.797040pt;}
.y9b{bottom:952.440027pt;}
.y77{bottom:956.914907pt;}
.y186{bottom:957.078747pt;}
.y220{bottom:958.514747pt;}
.y4d{bottom:959.793200pt;}
.yc7{bottom:965.086427pt;}
.y9a{bottom:973.077467pt;}
.y2{bottom:973.713200pt;}
.y21f{bottom:974.835867pt;}
.y185{bottom:977.554267pt;}
.y4f{bottom:977.718960pt;}
.yc6{bottom:985.561947pt;}
.y24c{bottom:990.997627pt;}
.y76{bottom:993.552987pt;}
.y4b{bottom:995.633200pt;}
.y21e{bottom:998.992187pt;}
.yc5{bottom:1014.059867pt;}
.y75{bottom:1014.219867pt;}
.y21d{bottom:1015.339867pt;}
.y1{bottom:1020.619867pt;}
.y74{bottom:1056.378000pt;}
.y73{bottom:1073.711333pt;}
.h23{height:18.720000pt;}
.h12{height:23.360000pt;}
.h20{height:25.758667pt;}
.h1f{height:25.760000pt;}
.h1b{height:29.440000pt;}
.h1c{height:29.441333pt;}
.h29{height:32.480000pt;}
.h10{height:34.453125pt;}
.h16{height:35.404688pt;}
.hd{height:35.681333pt;}
.h2b{height:36.805312pt;}
.h2a{height:38.128125pt;}
.ha{height:39.585938pt;}
.h9{height:40.307500pt;}
.hf{height:40.796250pt;}
.h6{height:42.262500pt;}
.h1a{height:42.656250pt;}
.h7{height:43.808438pt;}
.h1e{height:43.812500pt;}
.h15{height:45.910727pt;}
.h2{height:45.937500pt;}
.hb{height:48.382812pt;}
.h4{height:48.558750pt;}
.he{height:49.206430pt;}
.h5{height:51.187500pt;}
.h28{height:51.680000pt;}
.h11{height:56.640000pt;}
.h3{height:65.976562pt;}
.h27{height:70.880000pt;}
.h26{height:89.920000pt;}
.hc{height:97.472000pt;}
.h25{height:109.120000pt;}
.h14{height:115.840000pt;}
.h19{height:126.881333pt;}
.h24{height:128.320000pt;}
.h17{height:130.080000pt;}
.h13{height:138.240000pt;}
.h21{height:141.761333pt;}
.h22{height:147.360000pt;}
.h1d{height:147.520000pt;}
.h18{height:149.280000pt;}
.h8{height:491.426667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w23{width:14.560000pt;}
.w5{width:34.240000pt;}
.wc{width:34.241333pt;}
.w24{width:36.641333pt;}
.w19{width:42.078667pt;}
.w22{width:42.080000pt;}
.w1b{width:43.200000pt;}
.w20{width:46.080000pt;}
.w18{width:46.240000pt;}
.w1f{width:47.520000pt;}
.w8{width:47.680000pt;}
.w21{width:51.360000pt;}
.w4{width:51.520000pt;}
.wb{width:51.521333pt;}
.w1a{width:52.160000pt;}
.w1e{width:54.558667pt;}
.we{width:54.560000pt;}
.w7{width:54.720000pt;}
.w6{width:58.720000pt;}
.wd{width:58.721333pt;}
.w1d{width:59.360000pt;}
.w1c{width:60.000000pt;}
.wf{width:66.078667pt;}
.w9{width:66.240000pt;}
.wa{width:70.560000pt;}
.w16{width:77.120000pt;}
.w17{width:87.680000pt;}
.w10{width:90.560000pt;}
.w12{width:97.440000pt;}
.w11{width:100.960000pt;}
.w14{width:101.600000pt;}
.w13{width:108.000000pt;}
.w15{width:112.160000pt;}
.w2{width:298.746667pt;}
.w3{width:298.946667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.879733pt;}
.xb{left:43.994400pt;}
.x8{left:99.042667pt;}
.xa{left:105.922400pt;}
.x6{left:113.442400pt;}
.x3b{left:114.690667pt;}
.x3a{left:118.850667pt;}
.x7{left:121.602400pt;}
.x38{left:125.890667pt;}
.x1b{left:128.042400pt;}
.x39{left:129.410667pt;}
.x43{left:132.130667pt;}
.x1a{left:134.114400pt;}
.x37{left:136.289333pt;}
.x3d{left:139.170667pt;}
.x13{left:141.910880pt;}
.x4{left:148.323733pt;}
.x3c{left:149.730667pt;}
.x42{left:152.450667pt;}
.x14{left:160.620000pt;}
.x44{left:183.143733pt;}
.x17{left:186.850667pt;}
.x10{left:190.626400pt;}
.x19{left:194.198400pt;}
.x1c{left:195.490667pt;}
.x5{left:196.803733pt;}
.xf{left:219.906400pt;}
.x11{left:224.386400pt;}
.x45{left:232.769333pt;}
.x3e{left:235.010667pt;}
.x28{left:236.263733pt;}
.x4b{left:242.690667pt;}
.x29{left:244.951733pt;}
.xe{left:255.586400pt;}
.x2d{left:262.375733pt;}
.x2a{left:271.075733pt;}
.x24{left:286.529333pt;}
.x1d{left:288.290667pt;}
.x22{left:297.475733pt;}
.x18{left:299.330400pt;}
.x2b{left:314.599733pt;}
.x30{left:323.311733pt;}
.x3f{left:337.250667pt;}
.x46{left:339.329333pt;}
.x48{left:343.010667pt;}
.x2f{left:358.123733pt;}
.x2e{left:389.899733pt;}
.x25{left:392.450667pt;}
.x1e{left:395.489333pt;}
.x3{left:396.843733pt;}
.xc{left:398.437333pt;}
.x23{left:401.383733pt;}
.xd{left:405.317067pt;}
.x2c{left:407.263733pt;}
.x33{left:419.023733pt;}
.x31{left:427.723733pt;}
.x40{left:446.530667pt;}
.x36{left:459.511733pt;}
.x49{left:461.729333pt;}
.x1{left:491.903733pt;}
.x34{left:497.359733pt;}
.x26{left:499.810667pt;}
.x1f{left:504.130667pt;}
.x41{left:513.410667pt;}
.x35{left:540.883733pt;}
.x4a{left:580.450667pt;}
.x47{left:582.370667pt;}
.x32{left:584.395733pt;}
.x15{left:586.143733pt;}
.x27{left:598.690667pt;}
.x20{left:603.490667pt;}
.x12{left:659.575867pt;}
.x21{left:676.103733pt;}
.x2{left:680.423733pt;}
.x16{left:681.543733pt;}
}




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