
    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_0a21f464015f75e53ddd42d4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;font-style:normal;font-weight: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_35ded35623438a8e61a92370.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.220215;font-style:normal;font-weight: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_c7b42de1a569dd27fa93c1f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.220215;font-style:normal;font-weight: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_c4f876526d0df30b161be4c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.231934;font-style:normal;font-weight: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_e9dbe3d5af6469c02ec96181.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.006348;font-style:normal;font-weight: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_63ef9d276113d94290cdb853.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.186035;font-style:normal;font-weight: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_ece1a997e24343daf7a1e804.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.231934;font-style:normal;font-weight: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_a78778b5f28c7ee194509366.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.067000;font-style:normal;font-weight: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_2df3e3000a3cae17deb8822f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.220215;font-style:normal;font-weight: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_c67d5b30e2c4eedf753af898.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.220215;font-style:normal;font-weight: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_366aad65e86e8edb7ea4d420.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.186035;font-style:normal;font-weight: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_aa9b3a91c86cafee2984469e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.231934;font-style:normal;font-weight: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_b7cb835c108a5b2d94245dc9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.231934;font-style:normal;font-weight: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_75821b6132a7eb1ae3c31e18.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.186035;font-style:normal;font-weight: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_c84ba11395b4957d4069fa78.woff2')format("woff");}.fff{font-family:fff;line-height:1.231934;font-style:normal;font-weight: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_ce27428ae694fc4ea472d004.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.186035;font-style:normal;font-weight: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_effceabcedf3d890578f6fed.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.186035;font-style:normal;font-weight: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_d56c79680ef1dec337b155a0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.220215;font-style:normal;font-weight: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_d9b551eeaacfeffa82f161db.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.231934;font-style:normal;font-weight: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_cff79e7936e6bb701c879c4b.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_1d8236fb33b3d20a33c05ab6.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_eec8b4443f83cd4a321f9dd5.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.402354;font-style:normal;font-weight: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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910156;font-style:normal;font-weight: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_6e12d9f8aa897476010b9333.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.402354;font-style:normal;font-weight: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_ef1d9069ca3cccd1a8c4ce87.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.758789;font-style:normal;font-weight: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_dc1352e352c835ef2eef4a59.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.960449;font-style:normal;font-weight: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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.035156;font-style:normal;font-weight: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_ec73faecca7efe41d210ce4c.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.172363;font-style:normal;font-weight: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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.767578;font-style:normal;font-weight: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_843bc5742db028115c5e5c4f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.186035;font-style:normal;font-weight: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_96d05097c8d0e39c269cb453.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;font-style:normal;font-weight: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_5a66c6144989e2a3844bd974.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.220215;font-style:normal;font-weight: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_c67d5b30e2c4eedf753af898.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.220215;font-style:normal;font-weight: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_62a9c6e108d79f20bae9b21b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.231934;font-style:normal;font-weight: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_fa9349273f7841671f334677.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.231934;font-style:normal;font-weight: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_e837c82b6bcf79d8050d203e.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_4f79b1fda9faefa057b4c5cb.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_c57b518d8745d0d355f92b86.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.232910;font-style:normal;font-weight: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_9f1b6f593a163d4f0593fcd5.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.232910;font-style:normal;font-weight: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_a368b9b547c0d939eff66586.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_b9e4e907b5ee3fb00fd22c4f.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_0a438463ee05128df72c5544.woff2')format("woff");}.ff2a{font-family:ff2a;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;}
.m2{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-5.760000px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.230000px;}
.ls9{letter-spacing:-1.440000px;}
.ls2f{letter-spacing:-0.936000px;}
.ls22{letter-spacing:-0.648000px;}
.ls43{letter-spacing:-0.600000px;}
.ls36{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.252000px;}
.ls2{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.169800px;}
.ls3{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.006000px;}
.lsd{letter-spacing:0.057600px;}
.ls4{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.080400px;}
.lsc{letter-spacing:0.080640px;}
.ls3b{letter-spacing:0.120000px;}
.ls25{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.147000px;}
.ls3e{letter-spacing:0.149760px;}
.ls11{letter-spacing:0.180000px;}
.ls2e{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.270600px;}
.ls19{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.360000px;}
.ls41{letter-spacing:0.468000px;}
.ls33{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.576000px;}
.ls29{letter-spacing:0.593280px;}
.ls39{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls1f{letter-spacing:1.440000px;}
.ls2c{letter-spacing:2.160000px;}
.ls1b{letter-spacing:2.880000px;}
.lsb{letter-spacing:3.600000px;}
.ls14{letter-spacing:4.320000px;}
.ls1e{letter-spacing:5.040000px;}
.ls13{letter-spacing:5.760000px;}
.ls3a{letter-spacing:6.480000px;}
.ls2b{letter-spacing:7.200000px;}
.ls26{letter-spacing:7.920000px;}
.ls28{letter-spacing:8.640000px;}
.ls18{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.800000px;}
.ls34{letter-spacing:11.700000px;}
.ls16{letter-spacing:12.240000px;}
.ls40{letter-spacing:12.420000px;}
.ls17{letter-spacing:12.960000px;}
.ls21{letter-spacing:13.680000px;}
.ls31{letter-spacing:17.280000px;}
.ls3f{letter-spacing:18.000000px;}
.ls23{letter-spacing:20.160000px;}
.ls2a{letter-spacing:21.600000px;}
.ls24{letter-spacing:25.200000px;}
.ls27{letter-spacing:28.800000px;}
.ls1d{letter-spacing:29.520000px;}
.ls2d{letter-spacing:30.240000px;}
.lsa{letter-spacing:45.360000px;}
.ls38{letter-spacing:48.960000px;}
.ls35{letter-spacing:50.400000px;}
.ls12{letter-spacing:54.840000px;}
.ls1a{letter-spacing:64.944000px;}
.ls20{letter-spacing:92.280000px;}
.ls37{letter-spacing:839.712000px;}
.ls3d{letter-spacing:846.120000px;}
.ls3c{letter-spacing:846.897600px;}
.ls1c{letter-spacing:849.029760px;}
.ls1{letter-spacing:849.149760px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(46,116,181),0 0.015em rgb(46,116,181),0.015em 0 rgb(46,116,181),0 -0.015em  rgb(46,116,181);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(46,116,181);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws23{word-spacing:-72.000000px;}
.ws1f{word-spacing:-28.080000px;}
.ws27{word-spacing:-27.828000px;}
.ws29{word-spacing:-19.080000px;}
.ws24{word-spacing:-19.008000px;}
.ws26{word-spacing:-18.936000px;}
.ws1d{word-spacing:-18.792000px;}
.ws1{word-spacing:-18.720000px;}
.ws28{word-spacing:-18.648000px;}
.ws1c{word-spacing:-18.576000px;}
.ws1b{word-spacing:-18.504000px;}
.ws2a{word-spacing:-17.628000px;}
.ws20{word-spacing:-17.493000px;}
.ws22{word-spacing:-17.369400px;}
.ws1e{word-spacing:-17.222400px;}
.ws21{word-spacing:-17.052600px;}
.ws2b{word-spacing:-17.028000px;}
.ws25{word-spacing:-10.857600px;}
.ws14{word-spacing:-0.576000px;}
.ws30{word-spacing:-0.228000px;}
.ws10{word-spacing:-0.216000px;}
.ws0{word-spacing:0.000000px;}
.ws12{word-spacing:0.084000px;}
.ws9{word-spacing:0.144000px;}
.ws2f{word-spacing:0.204000px;}
.ws4{word-spacing:0.216000px;}
.wsf{word-spacing:0.264000px;}
.ws3{word-spacing:0.408000px;}
.ws6{word-spacing:0.432000px;}
.ws2{word-spacing:0.468000px;}
.wsb{word-spacing:0.480000px;}
.ws2c{word-spacing:0.496926px;}
.wsa{word-spacing:0.516000px;}
.ws2d{word-spacing:0.540000px;}
.ws7{word-spacing:0.588000px;}
.wsd{word-spacing:0.660000px;}
.ws11{word-spacing:0.756000px;}
.wsc{word-spacing:0.864000px;}
.ws8{word-spacing:1.020000px;}
.ws2e{word-spacing:1.044000px;}
.wse{word-spacing:1.092000px;}
.ws1a{word-spacing:1.128000px;}
.ws16{word-spacing:1.206000px;}
.ws19{word-spacing:1.230000px;}
.ws15{word-spacing:1.236000px;}
.ws18{word-spacing:1.266000px;}
.ws17{word-spacing:1.350000px;}
.ws5{word-spacing:1.356000px;}
.ws13{word-spacing:1.428000px;}
.ws31{word-spacing:13.896000px;}
._14{margin-left:-18.528000px;}
._10{margin-left:-17.484000px;}
._13{margin-left:-16.044000px;}
._11{margin-left:-14.604000px;}
._12{margin-left:-12.804000px;}
._d{margin-left:-11.112000px;}
._f{margin-left:-9.960000px;}
._c{margin-left:-8.304000px;}
._e{margin-left:-6.896400px;}
._8{margin-left:-4.952400px;}
._4{margin-left:-3.456000px;}
._5{margin-left:-2.256000px;}
._2{margin-left:-1.080000px;}
._1{width:1.436400px;}
._21{width:2.508000px;}
._22{width:3.684000px;}
._9{width:5.616000px;}
._a{width:6.636000px;}
._1b{width:7.920000px;}
._15{width:9.072000px;}
._3{width:10.368000px;}
._19{width:12.240000px;}
._2d{width:14.040000px;}
._42{width:15.120000px;}
._1c{width:16.128000px;}
._2e{width:17.184000px;}
._28{width:20.592000px;}
._2b{width:21.600000px;}
._6{width:22.680000px;}
._7{width:23.760000px;}
._26{width:25.056000px;}
._16{width:26.280000px;}
._40{width:28.440000px;}
._25{width:29.736000px;}
._32{width:30.744000px;}
._24{width:32.040000px;}
._23{width:33.048000px;}
._30{width:34.776000px;}
._31{width:35.856000px;}
._39{width:37.152000px;}
._37{width:39.024000px;}
._38{width:40.251600px;}
._36{width:41.256000px;}
._33{width:42.552000px;}
._43{width:44.664000px;}
._2c{width:45.768000px;}
._17{width:46.944000px;}
._35{width:48.744000px;}
._34{width:50.184000px;}
._27{width:51.816000px;}
._18{width:53.280000px;}
._48{width:56.592000px;}
._47{width:57.816000px;}
._3b{width:63.000000px;}
._3c{width:64.080000px;}
._29{width:68.544000px;}
._2a{width:69.624000px;}
._2f{width:72.432000px;}
._3f{width:79.056000px;}
._1d{width:82.152000px;}
._3e{width:83.736000px;}
._3a{width:91.584000px;}
._1a{width:93.528000px;}
._46{width:96.768000px;}
._49{width:129.528000px;}
._1f{width:136.008000px;}
._20{width:137.160000px;}
._41{width:157.248000px;}
._1e{width:160.056000px;}
._4b{width:188.334000px;}
._4a{width:306.636000px;}
._44{width:836.040000px;}
._3d{width:845.400000px;}
._b{width:847.848000px;}
._0{width:849.005760px;}
._45{width:850.061760px;}
.fc8{color:rgb(153,154,154);}
.fc7{color:rgb(46,116,181);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(55,81,138);}
.fc2{color:transparent;}
.fc1{color:rgb(197,224,179);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:30.240000px;}
.fs9{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsc{font-size:74.538968px;}
.fs6{font-size:78.000000px;}
.fsd{font-size:84.000000px;}
.fs5{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:167.760000px;}
.y29a{bottom:-28.260000px;}
.y1bf{bottom:-16.554000px;}
.y0{bottom:0.000000px;}
.y23f{bottom:4.140000px;}
.y173{bottom:4.680000px;}
.yaf{bottom:4.860000px;}
.y1c0{bottom:6.120000px;}
.y1be{bottom:6.300000px;}
.ya7{bottom:6.480000px;}
.yb5{bottom:7.740000px;}
.yaa{bottom:7.920000px;}
.y235{bottom:8.100000px;}
.y124{bottom:8.280000px;}
.y3{bottom:8.460000px;}
.y13c{bottom:9.900000px;}
.y13a{bottom:10.080000px;}
.y1f3{bottom:10.254000px;}
.y1f9{bottom:10.260000px;}
.y292{bottom:11.025000px;}
.y291{bottom:11.205000px;}
.y1b8{bottom:12.600000px;}
.y136{bottom:15.840000px;}
.yb6{bottom:19.074000px;}
.yb1{bottom:19.080000px;}
.yab{bottom:19.260000px;}
.y138{bottom:21.240000px;}
.ye0{bottom:22.140000px;}
.y25e{bottom:23.940000px;}
.yae{bottom:27.180000px;}
.yb4{bottom:30.234000px;}
.y299{bottom:30.240000px;}
.ya9{bottom:30.420000px;}
.y13b{bottom:32.400000px;}
.y139{bottom:32.580000px;}
.y262{bottom:36.540000px;}
.y135{bottom:38.340000px;}
.y266{bottom:43.200000px;}
.ydf{bottom:48.825000px;}
.yad{bottom:49.680000px;}
.y25d{bottom:50.400000px;}
.y7{bottom:57.636000px;}
.y134{bottom:60.840000px;}
.y265{bottom:63.360000px;}
.yde{bottom:75.285000px;}
.y6{bottom:77.616000px;}
.y79{bottom:77.976000px;}
.y133{bottom:83.340000px;}
.y264{bottom:83.520000px;}
.y1{bottom:92.196000px;}
.ydd{bottom:101.745000px;}
.y20e{bottom:111.636000px;}
.yb7{bottom:114.696000px;}
.ya1{bottom:115.056000px;}
.y1b3{bottom:120.276000px;}
.y233{bottom:121.536000px;}
.y2a{bottom:121.984200px;}
.y122{bottom:122.436000px;}
.y194{bottom:124.596000px;}
.y15{bottom:124.776000px;}
.y164{bottom:125.316000px;}
.ya4{bottom:125.676000px;}
.yff{bottom:127.836000px;}
.ydc{bottom:128.205000px;}
.y187{bottom:128.376000px;}
.yb3{bottom:131.976000px;}
.y255{bottom:132.516000px;}
.y15c{bottom:132.876000px;}
.y67{bottom:134.136000px;}
.y8c{bottom:134.676000px;}
.y19e{bottom:135.756000px;}
.y1b7{bottom:140.616000px;}
.y1f2{bottom:142.776000px;}
.y1b2{bottom:148.356000px;}
.y29{bottom:148.624200px;}
.y1a2{bottom:149.076000px;}
.y1d6{bottom:149.436000px;}
.y20d{bottom:149.976000px;}
.y207{bottom:150.150000px;}
.y116{bottom:150.690000px;}
.y1bd{bottom:151.770000px;}
.y193{bottom:152.670000px;}
.y171{bottom:152.850000px;}
.y16f{bottom:153.750000px;}
.ydb{bottom:154.665000px;}
.yd7{bottom:155.190000px;}
.y123{bottom:156.090000px;}
.y186{bottom:156.630000px;}
.y121{bottom:158.610000px;}
.y28f{bottom:158.970000px;}
.y284{bottom:159.870000px;}
.y78{bottom:160.410000px;}
.y254{bottom:160.590000px;}
.y131{bottom:161.130000px;}
.ya3{bottom:162.030000px;}
.y14{bottom:163.290000px;}
.ya0{bottom:164.910000px;}
.y25c{bottom:167.070000px;}
.y26f{bottom:167.250000px;}
.yfe{bottom:168.330000px;}
.y66{bottom:169.770000px;}
.y221{bottom:170.670000px;}
.yef{bottom:173.370000px;}
.y23e{bottom:174.990000px;}
.y1b1{bottom:176.430000px;}
.y206{bottom:176.610000px;}
.y1d5{bottom:177.510000px;}
.y232{bottom:177.690000px;}
.y294{bottom:177.870000px;}
.y163{bottom:180.930000px;}
.y1b6{bottom:181.110000px;}
.y1a1{bottom:182.370000px;}
.y108{bottom:182.550000px;}
.y2a5{bottom:183.090000px;}
.y19d{bottom:183.270000px;}
.yb2{bottom:184.350000px;}
.y8b{bottom:184.530000px;}
.y185{bottom:184.710000px;}
.y1e8{bottom:185.070000px;}
.yca{bottom:186.150000px;}
.y28{bottom:186.829200px;}
.y20c{bottom:188.490000px;}
.y253{bottom:188.850000px;}
.y115{bottom:189.210000px;}
.y130{bottom:189.390000px;}
.y259{bottom:190.470000px;}
.y9f{bottom:192.810000px;}
.yd8{bottom:192.990000px;}
.yda{bottom:193.005000px;}
.yd6{bottom:193.530000px;}
.y28e{bottom:195.510000px;}
.y77{bottom:196.230000px;}
.y120{bottom:197.310000px;}
.yee{bottom:201.450000px;}
.y13{bottom:201.630000px;}
.y14b{bottom:202.350000px;}
.y26e{bottom:202.890000px;}
.y205{bottom:203.070000px;}
.y1b0{bottom:204.690000px;}
.y65{bottom:205.410000px;}
.y1d4{bottom:205.770000px;}
.y231{bottom:205.950000px;}
.y162{bottom:209.010000px;}
.y283{bottom:209.550000px;}
.y23d{bottom:210.990000px;}
.y293{bottom:212.250000px;}
.y8a{bottom:212.430000px;}
.y184{bottom:212.970000px;}
.y27{bottom:213.514200px;}
.y220{bottom:216.390000px;}
.y252{bottom:216.930000px;}
.y15b{bottom:217.470000px;}
.y12f{bottom:217.650000px;}
.y36{bottom:217.749000px;}
.y19c{bottom:218.910000px;}
.yd9{bottom:219.645000px;}
.y9e{bottom:221.070000px;}
.yf3{bottom:221.250000px;}
.y290{bottom:223.230000px;}
.y1e7{bottom:223.590000px;}
.yfd{bottom:224.490000px;}
.y2b8{bottom:224.787000px;}
.y11f{bottom:225.210000px;}
.y107{bottom:227.010000px;}
.y20b{bottom:228.810000px;}
.y204{bottom:229.530000px;}
.y28d{bottom:229.890000px;}
.y2a4{bottom:230.610000px;}
.y76{bottom:231.870000px;}
.yd5{bottom:232.050000px;}
.y114{bottom:233.715000px;}
.y1d3{bottom:233.895000px;}
.yc9{bottom:235.875000px;}
.yb0{bottom:236.955000px;}
.y161{bottom:237.315000px;}
.y258{bottom:237.495000px;}
.y55{bottom:237.675000px;}
.y26d{bottom:238.755000px;}
.yed{bottom:239.835000px;}
.y12{bottom:240.195000px;}
.y172{bottom:240.555000px;}
.y89{bottom:240.735000px;}
.y64{bottom:241.275000px;}
.y1af{bottom:243.075000px;}
.y251{bottom:245.235000px;}
.y15a{bottom:245.595000px;}
.y35{bottom:246.528000px;}
.y192{bottom:247.575000px;}
.y2b7{bottom:248.187000px;}
.y9d{bottom:249.195000px;}
.y170{bottom:249.375000px;}
.y26{bottom:251.809200px;}
.y14a{bottom:252.075000px;}
.yfc{bottom:252.795000px;}
.y183{bottom:253.335000px;}
.y11e{bottom:253.515000px;}
.y230{bottom:255.135000px;}
.y203{bottom:256.035000px;}
.y19b{bottom:256.935000px;}
.y12e{bottom:258.015000px;}
.y1e6{bottom:261.975000px;}
.y1d2{bottom:262.155000px;}
.yc8{bottom:263.775000px;}
.y28c{bottom:264.135000px;}
.y160{bottom:265.395000px;}
.y21f{bottom:265.575000px;}
.y282{bottom:265.755000px;}
.y75{bottom:267.555000px;}
.y88{bottom:268.815000px;}
.yd4{bottom:270.615000px;}
.y106{bottom:271.515000px;}
.y250{bottom:273.495000px;}
.y54{bottom:273.855000px;}
.y1f8{bottom:274.395000px;}
.y132{bottom:276.015000px;}
.y63{bottom:276.915000px;}
.y9c{bottom:277.455000px;}
.y11{bottom:278.175000px;}
.yec{bottom:278.355000px;}
.y25{bottom:278.449200px;}
.y113{bottom:279.975000px;}
.yfb{bottom:280.875000px;}
.y1ae{bottom:281.595000px;}
.y202{bottom:282.495000px;}
.y22f{bottom:283.215000px;}
.y2a3{bottom:283.755000px;}
.y1f5{bottom:283.935000px;}
.y19a{bottom:285.015000px;}
.y191{bottom:285.915000px;}
.y43{bottom:287.355000px;}
.yac{bottom:289.515000px;}
.y1d1{bottom:290.235000px;}
.y12d{bottom:291.135000px;}
.y159{bottom:291.855000px;}
.yc7{bottom:292.035000px;}
.y182{bottom:293.475000px;}
.y15f{bottom:293.655000px;}
.y281{bottom:294.015000px;}
.y2ac{bottom:294.555000px;}
.y154{bottom:295.275000px;}
.y87{bottom:297.075000px;}
.y14f{bottom:297.435000px;}
.y28b{bottom:297.795000px;}
.y11d{bottom:299.775000px;}
.y1e0{bottom:300.495000px;}
.y53{bottom:301.935000px;}
.y1bc{bottom:302.295000px;}
.y74{bottom:303.375000px;}
.y34{bottom:304.086000px;}
.y9b{bottom:305.715000px;}
.y112{bottom:308.055000px;}
.y149{bottom:308.235000px;}
.yd3{bottom:308.955000px;}
.y2b6{bottom:308.958000px;}
.yfa{bottom:309.135000px;}
.y26c{bottom:310.035000px;}
.y2be{bottom:310.540500px;}
.y24f{bottom:310.575000px;}
.y22e{bottom:311.475000px;}
.y62{bottom:312.555000px;}
.y199{bottom:313.275000px;}
.y1a0{bottom:314.175000px;}
.y105{bottom:315.795000px;}
.y10{bottom:316.335000px;}
.yeb{bottom:316.695000px;}
.y24{bottom:316.789200px;}
.yf2{bottom:317.775000px;}
.y1f7{bottom:318.135000px;}
.y1d0{bottom:318.495000px;}
.y158{bottom:320.115000px;}
.y2ab{bottom:321.195000px;}
.y181{bottom:321.555000px;}
.y15e{bottom:321.915000px;}
.y1f4{bottom:322.095000px;}
.y190{bottom:324.435000px;}
.y86{bottom:325.335000px;}
.y2a2{bottom:326.235000px;}
.y42{bottom:326.415000px;}
.y11c{bottom:327.855000px;}
.y153{bottom:329.115000px;}
.y12c{bottom:329.475000px;}
.y28a{bottom:329.835000px;}
.y52{bottom:330.195000px;}
.yc6{bottom:332.355000px;}
.y137{bottom:332.715000px;}
.y33{bottom:332.865000px;}
.y9a{bottom:333.795000px;}
.y14e{bottom:333.975000px;}
.y2b5{bottom:334.933500px;}
.y148{bottom:336.495000px;}
.y2bd{bottom:336.711000px;}
.yf9{bottom:337.215000px;}
.y1bb{bottom:337.755000px;}
.y1e5{bottom:338.835000px;}
.y73{bottom:339.015000px;}
.y22d{bottom:339.735000px;}
.y20a{bottom:341.535000px;}
.y23{bottom:343.429200px;}
.y16b{bottom:344.055000px;}
.yf1{bottom:345.855000px;}
.y1cf{bottom:346.755000px;}
.yd2{bottom:347.475000px;}
.y24e{bottom:347.835000px;}
.y61{bottom:348.195000px;}
.y180{bottom:349.815000px;}
.y1b5{bottom:349.995000px;}
.y1df{bottom:350.175000px;}
.yf{bottom:350.715000px;}
.y201{bottom:351.075000px;}
.y1f6{bottom:352.335000px;}
.y85{bottom:353.415000px;}
.y198{bottom:353.595000px;}
.y111{bottom:354.495000px;}
.yea{bottom:355.215000px;}
.y11b{bottom:356.115000px;}
.ya8{bottom:358.275000px;}
.y51{bottom:358.455000px;}
.y41{bottom:359.355000px;}
.yc5{bottom:360.435000px;}
.y1d9{bottom:361.335000px;}
.y104{bottom:362.055000px;}
.y15d{bottom:362.235000px;}
.y280{bottom:362.595000px;}
.y2ba{bottom:362.871000px;}
.y2bc{bottom:362.881500px;}
.y18f{bottom:362.955000px;}
.y147{bottom:364.575000px;}
.yf8{bottom:365.475000px;}
.y22c{bottom:367.815000px;}
.y12b{bottom:367.995000px;}
.y209{bottom:369.615000px;}
.y2a1{bottom:373.935000px;}
.yf0{bottom:374.115000px;}
.y99{bottom:374.295000px;}
.y72{bottom:374.655000px;}
.y1ce{bottom:374.835000px;}
.y1ef{bottom:375.735000px;}
.y1e4{bottom:377.355000px;}
.y17f{bottom:377.895000px;}
.y1de{bottom:378.255000px;}
.y197{bottom:381.495000px;}
.y22{bottom:381.619200px;}
.y84{bottom:381.675000px;}
.y110{bottom:382.395000px;}
.y60{bottom:384.015000px;}
.y11a{bottom:384.195000px;}
.y16a{bottom:384.375000px;}
.y24d{bottom:384.915000px;}
.yd1{bottom:385.815000px;}
.y50{bottom:386.535000px;}
.y2b9{bottom:388.144500px;}
.y1ba{bottom:388.155000px;}
.yc4{bottom:388.695000px;}
.y103{bottom:390.315000px;}
.y1b4{bottom:390.495000px;}
.y2bb{bottom:391.570500px;}
.y40{bottom:392.295000px;}
.y146{bottom:392.835000px;}
.y215{bottom:393.015000px;}
.ye9{bottom:393.735000px;}
.y289{bottom:394.275000px;}
.y157{bottom:394.455000px;}
.ye{bottom:394.815000px;}
.y1c2{bottom:396.075000px;}
.y1ad{bottom:396.975000px;}
.y2aa{bottom:397.875000px;}
.y32{bottom:397.923000px;}
.y27f{bottom:398.955000px;}
.y200{bottom:400.755000px;}
.y18e{bottom:401.295000px;}
.y98{bottom:402.195000px;}
.y1cd{bottom:403.095000px;}
.y17e{bottom:406.155000px;}
.y12a{bottom:406.335000px;}
.y21{bottom:408.289200px;}
.y1d8{bottom:408.675000px;}
.y83{bottom:409.755000px;}
.y208{bottom:409.935000px;}
.y71{bottom:410.295000px;}
.y10f{bottom:410.655000px;}
.ya6{bottom:410.835000px;}
.y119{bottom:412.455000px;}
.y167{bottom:414.075000px;}
.y4f{bottom:414.795000px;}
.y1e3{bottom:415.875000px;}
.yc3{bottom:416.775000px;}
.y26b{bottom:417.315000px;}
.y102{bottom:418.395000px;}
.y5f{bottom:419.655000px;}
.y145{bottom:420.915000px;}
.yf7{bottom:421.815000px;}
.y24c{bottom:422.175000px;}
.y156{bottom:422.535000px;}
.yd0{bottom:424.365000px;}
.y3f{bottom:425.265000px;}
.y288{bottom:426.345000px;}
.y1ff{bottom:428.865000px;}
.y1b9{bottom:430.305000px;}
.y97{bottom:430.485000px;}
.y1cc{bottom:431.205000px;}
.ye8{bottom:432.105000px;}
.y277{bottom:433.005000px;}
.y27e{bottom:433.185000px;}
.y17d{bottom:434.265000px;}
.y129{bottom:434.625000px;}
.y1ac{bottom:435.525000px;}
.y2a9{bottom:436.425000px;}
.y82{bottom:438.045000px;}
.y18d{bottom:439.845000px;}
.y118{bottom:440.565000px;}
.y22b{bottom:442.185000px;}
.y4e{bottom:442.905000px;}
.y242{bottom:443.265000px;}
.y25b{bottom:443.625000px;}
.yc2{bottom:445.065000px;}
.yd{bottom:445.605000px;}
.y70{bottom:446.145000px;}
.y20{bottom:446.599200px;}
.y101{bottom:446.685000px;}
.y1d7{bottom:446.865000px;}
.y144{bottom:449.205000px;}
.yf6{bottom:450.105000px;}
.y263{bottom:450.285000px;}
.y10e{bottom:450.825000px;}
.y1ee{bottom:452.265000px;}
.y166{bottom:452.625000px;}
.y26a{bottom:452.985000px;}
.y1e2{bottom:454.245000px;}
.y5e{bottom:455.325000px;}
.y257{bottom:455.865000px;}
.y2b4{bottom:456.582000px;}
.y1fe{bottom:456.945000px;}
.y3e{bottom:458.025000px;}
.y96{bottom:458.565000px;}
.ya5{bottom:458.745000px;}
.y1cb{bottom:459.465000px;}
.y214{bottom:461.445000px;}
.y17c{bottom:462.525000px;}
.ycf{bottom:462.885000px;}
.y267{bottom:464.505000px;}
.y81{bottom:466.305000px;}
.y276{bottom:467.205000px;}
.y27d{bottom:467.565000px;}
.y117{bottom:468.825000px;}
.y2a8{bottom:469.005000px;}
.y29d{bottom:469.365000px;}
.y22a{bottom:470.445000px;}
.ye7{bottom:470.625000px;}
.y4d{bottom:471.165000px;}
.y1a7{bottom:471.345000px;}
.yc1{bottom:473.145000px;}
.y1f{bottom:473.239200px;}
.y1ab{bottom:473.865000px;}
.y100{bottom:474.765000px;}
.y1c1{bottom:474.945000px;}
.y143{bottom:477.465000px;}
.y261{bottom:478.005000px;}
.yf5{bottom:478.185000px;}
.y18c{bottom:478.365000px;}
.y155{bottom:479.085000px;}
.y25a{bottom:480.165000px;}
.y241{bottom:481.605000px;}
.yc{bottom:481.785000px;}
.y2b3{bottom:482.142000px;}
.y256{bottom:483.765000px;}
.y21e{bottom:483.945000px;}
.y1fd{bottom:485.205000px;}
.y95{bottom:486.825000px;}
.y1ed{bottom:487.365000px;}
.y1ca{bottom:487.725000px;}
.y269{bottom:488.625000px;}
.y213{bottom:489.345000px;}
.y17b{bottom:490.785000px;}
.y3d{bottom:490.965000px;}
.y5d{bottom:491.145000px;}
.y1e1{bottom:492.765000px;}
.y260{bottom:494.205000px;}
.y152{bottom:494.385000px;}
.y24b{bottom:496.545000px;}
.y169{bottom:497.085000px;}
.y10d{bottom:497.265000px;}
.y229{bottom:498.705000px;}
.y4c{bottom:499.425000px;}
.yc0{bottom:501.405000px;}
.y275{bottom:501.585000px;}
.y27c{bottom:501.765000px;}
.y14d{bottom:503.025000px;}
.yce{bottom:503.205000px;}
.y1a6{bottom:505.005000px;}
.y142{bottom:505.545000px;}
.yf4{bottom:506.445000px;}
.y80{bottom:506.625000px;}
.y31{bottom:506.760000px;}
.y29c{bottom:507.705000px;}
.ye6{bottom:509.145000px;}
.y1e{bottom:511.399500px;}
.y21d{bottom:512.025000px;}
.y1aa{bottom:512.385000px;}
.y1fc{bottom:513.465000px;}
.y94{bottom:515.085000px;}
.ya2{bottom:515.265000px;}
.y1c9{bottom:515.805000px;}
.y18b{bottom:516.705000px;}
.y6f{bottom:517.425000px;}
.y212{bottom:517.605000px;}
.y17a{bottom:518.865000px;}
.y128{bottom:519.225000px;}
.y1f0{bottom:521.025000px;}
.y1ec{bottom:522.105000px;}
.y151{bottom:522.645000px;}
.y287{bottom:522.825000px;}
.y248{bottom:523.545000px;}
.y3c{bottom:523.905000px;}
.y268{bottom:524.445000px;}
.y10c{bottom:525.165000px;}
.y5c{bottom:526.785000px;}
.y4b{bottom:527.505000px;}
.y2{bottom:529.665000px;}
.y29f{bottom:529.845000px;}
.ycd{bottom:531.285000px;}
.y165{bottom:531.465000px;}
.y25f{bottom:532.545000px;}
.y2b2{bottom:532.737000px;}
.y141{bottom:533.805000px;}
.y7f{bottom:534.705000px;}
.y274{bottom:535.785000px;}
.y27b{bottom:535.965000px;}
.y297{bottom:537.045000px;}
.y1d{bottom:538.039500px;}
.y1a5{bottom:539.205000px;}
.y21c{bottom:540.285000px;}
.y1fb{bottom:541.545000px;}
.y93{bottom:543.165000px;}
.y168{bottom:543.345000px;}
.y23c{bottom:543.705000px;}
.y1c8{bottom:544.065000px;}
.y29b{bottom:545.325000px;}
.y211{bottom:545.865000px;}
.y179{bottom:547.125000px;}
.ye5{bottom:547.485000px;}
.y1a9{bottom:550.905000px;}
.y196{bottom:551.805000px;}
.y6e{bottom:553.245000px;}
.y10b{bottom:553.425000px;}
.y240{bottom:553.785000px;}
.y228{bottom:555.045000px;}
.y18a{bottom:555.225000px;}
.y286{bottom:555.765000px;}
.y3b{bottom:556.665000px;}
.ybf{bottom:557.745000px;}
.y2b1{bottom:559.309500px;}
.ycc{bottom:559.365000px;}
.y1dd{bottom:559.545000px;}
.y1eb{bottom:560.085000px;}
.y247{bottom:560.805000px;}
.y1a4{bottom:561.705000px;}
.y5b{bottom:562.425000px;}
.y7e{bottom:562.785000px;}
.y150{bottom:562.965000px;}
.y4a{bottom:566.025000px;}
.y21b{bottom:568.365000px;}
.y1fa{bottom:569.805000px;}
.y1f1{bottom:569.985000px;}
.y273{bottom:570.165000px;}
.y27a{bottom:570.345000px;}
.y24a{bottom:571.065000px;}
.y92{bottom:571.425000px;}
.y14c{bottom:571.605000px;}
.y1c7{bottom:572.325000px;}
.y210{bottom:573.945000px;}
.y140{bottom:574.125000px;}
.y178{bottom:575.205000px;}
.y296{bottom:575.385000px;}
.y127{bottom:575.565000px;}
.y1c{bottom:576.424500px;}
.y2a0{bottom:581.505000px;}
.y10a{bottom:581.685000px;}
.y227{bottom:583.125000px;}
.y23b{bottom:584.025000px;}
.y2b0{bottom:585.882000px;}
.ybe{bottom:586.005000px;}
.y1a3{bottom:586.185000px;}
.y3a{bottom:587.625000px;}
.y195{bottom:587.805000px;}
.y6d{bottom:588.885000px;}
.y246{bottom:589.065000px;}
.y30{bottom:589.425000px;}
.y285{bottom:590.505000px;}
.y7d{bottom:591.045000px;}
.y1a8{bottom:591.225000px;}
.y49{bottom:592.665000px;}
.y189{bottom:593.565000px;}
.y21a{bottom:596.625000px;}
.y5a{bottom:598.065000px;}
.y1ea{bottom:598.245000px;}
.y91{bottom:599.505000px;}
.ycb{bottom:599.685000px;}
.y1c6{bottom:600.405000px;}
.y1b{bottom:603.109500px;}
.y177{bottom:603.465000px;}
.y272{bottom:604.365000px;}
.y249{bottom:608.145000px;}
.y279{bottom:609.945000px;}
.y226{bottom:611.385000px;}
.y23a{bottom:612.105000px;}
.y2af{bottom:612.147000px;}
.ybd{bottom:614.130000px;}
.y13f{bottom:614.310000px;}
.y19f{bottom:615.750000px;}
.y126{bottom:615.930000px;}
.y2f{bottom:616.065000px;}
.y245{bottom:617.190000px;}
.y48{bottom:619.170000px;}
.y39{bottom:622.410000px;}
.y6c{bottom:624.570000px;}
.y219{bottom:624.750000px;}
.y1e9{bottom:626.190000px;}
.ye4{bottom:626.370000px;}
.y90{bottom:627.810000px;}
.y109{bottom:627.990000px;}
.y1c5{bottom:628.710000px;}
.y176{bottom:631.770000px;}
.y188{bottom:632.130000px;}
.y59{bottom:633.930000px;}
.y1a{bottom:636.364500px;}
.y271{bottom:638.610000px;}
.y225{bottom:639.690000px;}
.y239{bottom:640.230000px;}
.ybc{bottom:642.390000px;}
.y1dc{bottom:644.010000px;}
.y244{bottom:645.450000px;}
.y295{bottom:646.350000px;}
.yb{bottom:647.070000px;}
.y7c{bottom:647.430000px;}
.y218{bottom:653.010000px;}
.ye3{bottom:654.450000px;}
.y20f{bottom:654.630000px;}
.y8f{bottom:656.070000px;}
.y125{bottom:656.250000px;}
.y1c4{bottom:656.790000px;}
.y47{bottom:657.330000px;}
.y175{bottom:659.850000px;}
.y6b{bottom:660.210000px;}
.y278{bottom:661.290000px;}
.y224{bottom:667.770000px;}
.y16e{bottom:668.130000px;}
.y238{bottom:668.490000px;}
.y58{bottom:669.570000px;}
.ybb{bottom:670.650000px;}
.y1db{bottom:672.270000px;}
.y270{bottom:672.990000px;}
.y243{bottom:673.530000px;}
.y298{bottom:674.430000px;}
.y7b{bottom:675.690000px;}
.y2ae{bottom:677.748300px;}
.y2e{bottom:680.910000px;}
.y217{bottom:681.270000px;}
.ye2{bottom:682.530000px;}
.y29e{bottom:682.710000px;}
.ya{bottom:683.250000px;}
.y8e{bottom:684.150000px;}
.y1c3{bottom:684.330000px;}
.y19{bottom:685.504500px;}
.y46{bottom:694.950000px;}
.y6a{bottom:696.030000px;}
.y237{bottom:696.570000px;}
.y174{bottom:697.470000px;}
.y38{bottom:697.650000px;}
.y13e{bottom:698.730000px;}
.y2ad{bottom:704.388000px;}
.y2a7{bottom:705.030000px;}
.y57{bottom:705.210000px;}
.y2d{bottom:707.550000px;}
.y216{bottom:709.530000px;}
.ye1{bottom:710.790000px;}
.yba{bottom:710.970000px;}
.y18{bottom:712.144500px;}
.y8d{bottom:712.410000px;}
.y1da{bottom:712.590000px;}
.y9{bottom:719.970000px;}
.y7a{bottom:721.050000px;}
.y223{bottom:724.110000px;}
.y16d{bottom:724.290000px;}
.y45{bottom:728.610000px;}
.y69{bottom:731.670000px;}
.y236{bottom:734.190000px;}
.yb9{bottom:739.050000px;}
.y13d{bottom:739.230000px;}
.y2c{bottom:745.710000px;}
.y234{bottom:749.670000px;}
.y2a6{bottom:752.370000px;}
.y56{bottom:754.710000px;}
.y17{bottom:754.897500px;}
.y44{bottom:757.770000px;}
.y8{bottom:760.830000px;}
.y16c{bottom:764.070000px;}
.y37{bottom:766.950000px;}
.yb8{bottom:767.130000px;}
.y68{bottom:767.310000px;}
.y222{bottom:769.470000px;}
.y2b{bottom:772.350000px;}
.y16{bottom:781.537500px;}
.y5{bottom:802.050000px;}
.y4{bottom:824.220000px;}
.h2b{height:23.580000px;}
.h24{height:24.120000px;}
.h28{height:25.560000px;}
.h17{height:25.596000px;}
.h31{height:25.920000px;}
.h29{height:29.700000px;}
.h21{height:29.974219px;}
.h30{height:30.456000px;}
.h2f{height:30.636000px;}
.h20{height:30.780000px;}
.h1f{height:30.960000px;}
.h25{height:32.040000px;}
.h2a{height:36.900000px;}
.h3{height:46.980000px;}
.h33{height:47.880000px;}
.h8{height:50.747344px;}
.h1b{height:50.940000px;}
.h19{height:51.120000px;}
.h1c{height:51.156000px;}
.h23{height:55.260000px;}
.hf{height:55.986328px;}
.hd{height:58.320000px;}
.h38{height:60.292969px;}
.hb{height:62.617500px;}
.h18{height:64.913906px;}
.h5{height:65.657812px;}
.h2{height:65.884219px;}
.h1a{height:67.320000px;}
.h32{height:67.824844px;}
.he{height:68.062500px;}
.h2c{height:69.696000px;}
.h7{height:70.558594px;}
.h2d{height:70.740000px;}
.hc{height:71.367188px;}
.h15{height:71.613281px;}
.h37{height:72.597188px;}
.h36{height:73.883841px;}
.h1d{height:74.004654px;}
.ha{height:82.553555px;}
.h34{height:82.740234px;}
.h13{height:83.499609px;}
.h10{height:86.585445px;}
.h6{height:93.842930px;}
.h2e{height:99.180000px;}
.h26{height:102.832031px;}
.h16{height:105.837891px;}
.h14{height:107.050781px;}
.h27{height:110.583984px;}
.h22{height:111.960000px;}
.h9{height:117.832852px;}
.h4{height:141.117188px;}
.h35{height:147.445312px;}
.h11{height:164.401523px;}
.h12{height:166.285547px;}
.h1e{height:238.935000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1d{width:93.996000px;}
.w18{width:118.800000px;}
.w7{width:136.116000px;}
.w19{width:158.580000px;}
.w9{width:173.340000px;}
.w8{width:173.370000px;}
.wb{width:206.130000px;}
.w6{width:210.630000px;}
.wd{width:218.730000px;}
.wf{width:260.850000px;}
.we{width:261.075000px;}
.w10{width:261.390000px;}
.w14{width:271.470000px;}
.wc{width:274.890000px;}
.w11{width:286.410000px;}
.w15{width:292.035000px;}
.w17{width:321.735000px;}
.wa{width:330.375000px;}
.w13{width:366.870000px;}
.w12{width:367.050000px;}
.w1b{width:369.390000px;}
.w16{width:437.835000px;}
.w3{width:454.575000px;}
.w1a{width:485.355000px;}
.w1c{width:503.535000px;}
.w5{width:1262.879981px;}
.w4{width:1262.880000px;}
.w1{width:1263.000000px;}
.w2{width:1263.059981px;}
.w0{width:1263.060000px;}
.x0{left:0.000000px;}
.x21{left:7.416000px;}
.x34{left:9.756000px;}
.x29{left:10.800000px;}
.x3c{left:16.740000px;}
.x52{left:18.570000px;}
.x31{left:32.040000px;}
.x2a{left:37.800000px;}
.x4d{left:39.420000px;}
.x43{left:40.500000px;}
.x39{left:45.180000px;}
.x3{left:46.434000px;}
.x4b{left:59.400000px;}
.x2b{left:64.800000px;}
.x48{left:69.660000px;}
.x4f{left:79.200000px;}
.x46{left:95.760000px;}
.x1e{left:98.099981px;}
.x3f{left:100.980000px;}
.x4{left:106.379981px;}
.x1{left:108.035981px;}
.x2f{left:109.439981px;}
.x20{left:111.599981px;}
.x41{left:113.975981px;}
.x2{left:116.316000px;}
.x17{left:122.975981px;}
.x26{left:133.415981px;}
.x18{left:139.355981px;}
.x27{left:160.409981px;}
.x56{left:170.044500px;}
.x58{left:171.195000px;}
.x3e{left:217.470000px;}
.xd{left:286.589981px;}
.x53{left:298.469981px;}
.x57{left:308.290500px;}
.x22{left:319.890000px;}
.x35{left:327.990000px;}
.x6{left:333.209981px;}
.x55{left:338.069981px;}
.x10{left:375.554981px;}
.x9{left:378.614981px;}
.x45{left:387.794981px;}
.x14{left:393.734981px;}
.x47{left:412.455000px;}
.x12{left:434.954981px;}
.x23{left:457.455000px;}
.x13{left:476.714981px;}
.x54{left:489.134981px;}
.x44{left:497.235000px;}
.x38{left:500.295000px;}
.xa{left:519.734981px;}
.x42{left:522.255000px;}
.x7{left:526.034981px;}
.x15{left:540.074981px;}
.x11{left:550.874981px;}
.x16{left:558.974981px;}
.xf{left:562.754981px;}
.x8{left:578.594981px;}
.xc{left:581.654981px;}
.x51{left:588.135000px;}
.x36{left:590.505000px;}
.x32{left:599.145000px;}
.xe{left:621.104981px;}
.xb{left:631.544981px;}
.x50{left:641.444981px;}
.x2c{left:643.604981px;}
.x2d{left:644.864981px;}
.x2e{left:645.944981px;}
.x4e{left:652.785000px;}
.x3d{left:665.565000px;}
.x4c{left:688.605000px;}
.x49{left:744.045000px;}
.x3b{left:748.365000px;}
.x28{left:754.125000px;}
.x24{left:807.045000px;}
.x1a{left:836.069981px;}
.x1b{left:837.149981px;}
.x1c{left:838.409981px;}
.x1d{left:839.489981px;}
.x4a{left:847.410000px;}
.x37{left:852.990000px;}
.x30{left:934.710000px;}
.x3a{left:973.229981px;}
.x25{left:981.870000px;}
.x40{left:1118.159981px;}
.x33{left:1125.899981px;}
.x1f{left:1137.779981px;}
.x19{left:1147.319981px;}
.x5{left:1156.679981px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.093333pt;}
.ls9{letter-spacing:-1.280000pt;}
.ls2f{letter-spacing:-0.832000pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls43{letter-spacing:-0.533333pt;}
.ls36{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.224000pt;}
.ls2{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.150933pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.005333pt;}
.lsd{letter-spacing:0.051200pt;}
.ls4{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.071467pt;}
.lsc{letter-spacing:0.071680pt;}
.ls3b{letter-spacing:0.106667pt;}
.ls25{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.130667pt;}
.ls3e{letter-spacing:0.133120pt;}
.ls11{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.240533pt;}
.ls19{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls41{letter-spacing:0.416000pt;}
.ls33{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls29{letter-spacing:0.527360pt;}
.ls39{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1f{letter-spacing:1.280000pt;}
.ls2c{letter-spacing:1.920000pt;}
.ls1b{letter-spacing:2.560000pt;}
.lsb{letter-spacing:3.200000pt;}
.ls14{letter-spacing:3.840000pt;}
.ls1e{letter-spacing:4.480000pt;}
.ls13{letter-spacing:5.120000pt;}
.ls3a{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:6.400000pt;}
.ls26{letter-spacing:7.040000pt;}
.ls28{letter-spacing:7.680000pt;}
.ls18{letter-spacing:8.320000pt;}
.ls5{letter-spacing:9.600000pt;}
.ls34{letter-spacing:10.400000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls40{letter-spacing:11.040000pt;}
.ls17{letter-spacing:11.520000pt;}
.ls21{letter-spacing:12.160000pt;}
.ls31{letter-spacing:15.360000pt;}
.ls3f{letter-spacing:16.000000pt;}
.ls23{letter-spacing:17.920000pt;}
.ls2a{letter-spacing:19.200000pt;}
.ls24{letter-spacing:22.400000pt;}
.ls27{letter-spacing:25.600000pt;}
.ls1d{letter-spacing:26.240000pt;}
.ls2d{letter-spacing:26.880000pt;}
.lsa{letter-spacing:40.320000pt;}
.ls38{letter-spacing:43.520000pt;}
.ls35{letter-spacing:44.800000pt;}
.ls12{letter-spacing:48.746667pt;}
.ls1a{letter-spacing:57.728000pt;}
.ls20{letter-spacing:82.026667pt;}
.ls37{letter-spacing:746.410667pt;}
.ls3d{letter-spacing:752.106667pt;}
.ls3c{letter-spacing:752.797867pt;}
.ls1c{letter-spacing:754.693120pt;}
.ls1{letter-spacing:754.799787pt;}
.ws23{word-spacing:-64.000000pt;}
.ws1f{word-spacing:-24.960000pt;}
.ws27{word-spacing:-24.736000pt;}
.ws29{word-spacing:-16.960000pt;}
.ws24{word-spacing:-16.896000pt;}
.ws26{word-spacing:-16.832000pt;}
.ws1d{word-spacing:-16.704000pt;}
.ws1{word-spacing:-16.640000pt;}
.ws28{word-spacing:-16.576000pt;}
.ws1c{word-spacing:-16.512000pt;}
.ws1b{word-spacing:-16.448000pt;}
.ws2a{word-spacing:-15.669333pt;}
.ws20{word-spacing:-15.549333pt;}
.ws22{word-spacing:-15.439467pt;}
.ws1e{word-spacing:-15.308800pt;}
.ws21{word-spacing:-15.157867pt;}
.ws2b{word-spacing:-15.136000pt;}
.ws25{word-spacing:-9.651200pt;}
.ws14{word-spacing:-0.512000pt;}
.ws30{word-spacing:-0.202667pt;}
.ws10{word-spacing:-0.192000pt;}
.ws0{word-spacing:0.000000pt;}
.ws12{word-spacing:0.074667pt;}
.ws9{word-spacing:0.128000pt;}
.ws2f{word-spacing:0.181333pt;}
.ws4{word-spacing:0.192000pt;}
.wsf{word-spacing:0.234667pt;}
.ws3{word-spacing:0.362667pt;}
.ws6{word-spacing:0.384000pt;}
.ws2{word-spacing:0.416000pt;}
.wsb{word-spacing:0.426667pt;}
.ws2c{word-spacing:0.441712pt;}
.wsa{word-spacing:0.458667pt;}
.ws2d{word-spacing:0.480000pt;}
.ws7{word-spacing:0.522667pt;}
.wsd{word-spacing:0.586667pt;}
.ws11{word-spacing:0.672000pt;}
.wsc{word-spacing:0.768000pt;}
.ws8{word-spacing:0.906667pt;}
.ws2e{word-spacing:0.928000pt;}
.wse{word-spacing:0.970667pt;}
.ws1a{word-spacing:1.002667pt;}
.ws16{word-spacing:1.072000pt;}
.ws19{word-spacing:1.093333pt;}
.ws15{word-spacing:1.098667pt;}
.ws18{word-spacing:1.125333pt;}
.ws17{word-spacing:1.200000pt;}
.ws5{word-spacing:1.205333pt;}
.ws13{word-spacing:1.269333pt;}
.ws31{word-spacing:12.352000pt;}
._14{margin-left:-16.469333pt;}
._10{margin-left:-15.541333pt;}
._13{margin-left:-14.261333pt;}
._11{margin-left:-12.981333pt;}
._12{margin-left:-11.381333pt;}
._d{margin-left:-9.877333pt;}
._f{margin-left:-8.853333pt;}
._c{margin-left:-7.381333pt;}
._e{margin-left:-6.130133pt;}
._8{margin-left:-4.402133pt;}
._4{margin-left:-3.072000pt;}
._5{margin-left:-2.005333pt;}
._2{margin-left:-0.960000pt;}
._1{width:1.276800pt;}
._21{width:2.229333pt;}
._22{width:3.274667pt;}
._9{width:4.992000pt;}
._a{width:5.898667pt;}
._1b{width:7.040000pt;}
._15{width:8.064000pt;}
._3{width:9.216000pt;}
._19{width:10.880000pt;}
._2d{width:12.480000pt;}
._42{width:13.440000pt;}
._1c{width:14.336000pt;}
._2e{width:15.274667pt;}
._28{width:18.304000pt;}
._2b{width:19.200000pt;}
._6{width:20.160000pt;}
._7{width:21.120000pt;}
._26{width:22.272000pt;}
._16{width:23.360000pt;}
._40{width:25.280000pt;}
._25{width:26.432000pt;}
._32{width:27.328000pt;}
._24{width:28.480000pt;}
._23{width:29.376000pt;}
._30{width:30.912000pt;}
._31{width:31.872000pt;}
._39{width:33.024000pt;}
._37{width:34.688000pt;}
._38{width:35.779200pt;}
._36{width:36.672000pt;}
._33{width:37.824000pt;}
._43{width:39.701333pt;}
._2c{width:40.682667pt;}
._17{width:41.728000pt;}
._35{width:43.328000pt;}
._34{width:44.608000pt;}
._27{width:46.058667pt;}
._18{width:47.360000pt;}
._48{width:50.304000pt;}
._47{width:51.392000pt;}
._3b{width:56.000000pt;}
._3c{width:56.960000pt;}
._29{width:60.928000pt;}
._2a{width:61.888000pt;}
._2f{width:64.384000pt;}
._3f{width:70.272000pt;}
._1d{width:73.024000pt;}
._3e{width:74.432000pt;}
._3a{width:81.408000pt;}
._1a{width:83.136000pt;}
._46{width:86.016000pt;}
._49{width:115.136000pt;}
._1f{width:120.896000pt;}
._20{width:121.920000pt;}
._41{width:139.776000pt;}
._1e{width:142.272000pt;}
._4b{width:167.408000pt;}
._4a{width:272.565333pt;}
._44{width:743.146667pt;}
._3d{width:751.466667pt;}
._b{width:753.642667pt;}
._0{width:754.671787pt;}
._45{width:755.610453pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsc{font-size:66.256861pt;}
.fs6{font-size:69.333333pt;}
.fsd{font-size:74.666667pt;}
.fs5{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:149.120000pt;}
.y29a{bottom:-25.120000pt;}
.y1bf{bottom:-14.714667pt;}
.y0{bottom:0.000000pt;}
.y23f{bottom:3.680000pt;}
.y173{bottom:4.160000pt;}
.yaf{bottom:4.320000pt;}
.y1c0{bottom:5.440000pt;}
.y1be{bottom:5.600000pt;}
.ya7{bottom:5.760000pt;}
.yb5{bottom:6.880000pt;}
.yaa{bottom:7.040000pt;}
.y235{bottom:7.200000pt;}
.y124{bottom:7.360000pt;}
.y3{bottom:7.520000pt;}
.y13c{bottom:8.800000pt;}
.y13a{bottom:8.960000pt;}
.y1f3{bottom:9.114667pt;}
.y1f9{bottom:9.120000pt;}
.y292{bottom:9.800000pt;}
.y291{bottom:9.960000pt;}
.y1b8{bottom:11.200000pt;}
.y136{bottom:14.080000pt;}
.yb6{bottom:16.954667pt;}
.yb1{bottom:16.960000pt;}
.yab{bottom:17.120000pt;}
.y138{bottom:18.880000pt;}
.ye0{bottom:19.680000pt;}
.y25e{bottom:21.280000pt;}
.yae{bottom:24.160000pt;}
.yb4{bottom:26.874667pt;}
.y299{bottom:26.880000pt;}
.ya9{bottom:27.040000pt;}
.y13b{bottom:28.800000pt;}
.y139{bottom:28.960000pt;}
.y262{bottom:32.480000pt;}
.y135{bottom:34.080000pt;}
.y266{bottom:38.400000pt;}
.ydf{bottom:43.400000pt;}
.yad{bottom:44.160000pt;}
.y25d{bottom:44.800000pt;}
.y7{bottom:51.232000pt;}
.y134{bottom:54.080000pt;}
.y265{bottom:56.320000pt;}
.yde{bottom:66.920000pt;}
.y6{bottom:68.992000pt;}
.y79{bottom:69.312000pt;}
.y133{bottom:74.080000pt;}
.y264{bottom:74.240000pt;}
.y1{bottom:81.952000pt;}
.ydd{bottom:90.440000pt;}
.y20e{bottom:99.232000pt;}
.yb7{bottom:101.952000pt;}
.ya1{bottom:102.272000pt;}
.y1b3{bottom:106.912000pt;}
.y233{bottom:108.032000pt;}
.y2a{bottom:108.430400pt;}
.y122{bottom:108.832000pt;}
.y194{bottom:110.752000pt;}
.y15{bottom:110.912000pt;}
.y164{bottom:111.392000pt;}
.ya4{bottom:111.712000pt;}
.yff{bottom:113.632000pt;}
.ydc{bottom:113.960000pt;}
.y187{bottom:114.112000pt;}
.yb3{bottom:117.312000pt;}
.y255{bottom:117.792000pt;}
.y15c{bottom:118.112000pt;}
.y67{bottom:119.232000pt;}
.y8c{bottom:119.712000pt;}
.y19e{bottom:120.672000pt;}
.y1b7{bottom:124.992000pt;}
.y1f2{bottom:126.912000pt;}
.y1b2{bottom:131.872000pt;}
.y29{bottom:132.110400pt;}
.y1a2{bottom:132.512000pt;}
.y1d6{bottom:132.832000pt;}
.y20d{bottom:133.312000pt;}
.y207{bottom:133.466667pt;}
.y116{bottom:133.946667pt;}
.y1bd{bottom:134.906667pt;}
.y193{bottom:135.706667pt;}
.y171{bottom:135.866667pt;}
.y16f{bottom:136.666667pt;}
.ydb{bottom:137.480000pt;}
.yd7{bottom:137.946667pt;}
.y123{bottom:138.746667pt;}
.y186{bottom:139.226667pt;}
.y121{bottom:140.986667pt;}
.y28f{bottom:141.306667pt;}
.y284{bottom:142.106667pt;}
.y78{bottom:142.586667pt;}
.y254{bottom:142.746667pt;}
.y131{bottom:143.226667pt;}
.ya3{bottom:144.026667pt;}
.y14{bottom:145.146667pt;}
.ya0{bottom:146.586667pt;}
.y25c{bottom:148.506667pt;}
.y26f{bottom:148.666667pt;}
.yfe{bottom:149.626667pt;}
.y66{bottom:150.906667pt;}
.y221{bottom:151.706667pt;}
.yef{bottom:154.106667pt;}
.y23e{bottom:155.546667pt;}
.y1b1{bottom:156.826667pt;}
.y206{bottom:156.986667pt;}
.y1d5{bottom:157.786667pt;}
.y232{bottom:157.946667pt;}
.y294{bottom:158.106667pt;}
.y163{bottom:160.826667pt;}
.y1b6{bottom:160.986667pt;}
.y1a1{bottom:162.106667pt;}
.y108{bottom:162.266667pt;}
.y2a5{bottom:162.746667pt;}
.y19d{bottom:162.906667pt;}
.yb2{bottom:163.866667pt;}
.y8b{bottom:164.026667pt;}
.y185{bottom:164.186667pt;}
.y1e8{bottom:164.506667pt;}
.yca{bottom:165.466667pt;}
.y28{bottom:166.070400pt;}
.y20c{bottom:167.546667pt;}
.y253{bottom:167.866667pt;}
.y115{bottom:168.186667pt;}
.y130{bottom:168.346667pt;}
.y259{bottom:169.306667pt;}
.y9f{bottom:171.386667pt;}
.yd8{bottom:171.546667pt;}
.yda{bottom:171.560000pt;}
.yd6{bottom:172.026667pt;}
.y28e{bottom:173.786667pt;}
.y77{bottom:174.426667pt;}
.y120{bottom:175.386667pt;}
.yee{bottom:179.066667pt;}
.y13{bottom:179.226667pt;}
.y14b{bottom:179.866667pt;}
.y26e{bottom:180.346667pt;}
.y205{bottom:180.506667pt;}
.y1b0{bottom:181.946667pt;}
.y65{bottom:182.586667pt;}
.y1d4{bottom:182.906667pt;}
.y231{bottom:183.066667pt;}
.y162{bottom:185.786667pt;}
.y283{bottom:186.266667pt;}
.y23d{bottom:187.546667pt;}
.y293{bottom:188.666667pt;}
.y8a{bottom:188.826667pt;}
.y184{bottom:189.306667pt;}
.y27{bottom:189.790400pt;}
.y220{bottom:192.346667pt;}
.y252{bottom:192.826667pt;}
.y15b{bottom:193.306667pt;}
.y12f{bottom:193.466667pt;}
.y36{bottom:193.554667pt;}
.y19c{bottom:194.586667pt;}
.yd9{bottom:195.240000pt;}
.y9e{bottom:196.506667pt;}
.yf3{bottom:196.666667pt;}
.y290{bottom:198.426667pt;}
.y1e7{bottom:198.746667pt;}
.yfd{bottom:199.546667pt;}
.y2b8{bottom:199.810667pt;}
.y11f{bottom:200.186667pt;}
.y107{bottom:201.786667pt;}
.y20b{bottom:203.386667pt;}
.y204{bottom:204.026667pt;}
.y28d{bottom:204.346667pt;}
.y2a4{bottom:204.986667pt;}
.y76{bottom:206.106667pt;}
.yd5{bottom:206.266667pt;}
.y114{bottom:207.746667pt;}
.y1d3{bottom:207.906667pt;}
.yc9{bottom:209.666667pt;}
.yb0{bottom:210.626667pt;}
.y161{bottom:210.946667pt;}
.y258{bottom:211.106667pt;}
.y55{bottom:211.266667pt;}
.y26d{bottom:212.226667pt;}
.yed{bottom:213.186667pt;}
.y12{bottom:213.506667pt;}
.y172{bottom:213.826667pt;}
.y89{bottom:213.986667pt;}
.y64{bottom:214.466667pt;}
.y1af{bottom:216.066667pt;}
.y251{bottom:217.986667pt;}
.y15a{bottom:218.306667pt;}
.y35{bottom:219.136000pt;}
.y192{bottom:220.066667pt;}
.y2b7{bottom:220.610667pt;}
.y9d{bottom:221.506667pt;}
.y170{bottom:221.666667pt;}
.y26{bottom:223.830400pt;}
.y14a{bottom:224.066667pt;}
.yfc{bottom:224.706667pt;}
.y183{bottom:225.186667pt;}
.y11e{bottom:225.346667pt;}
.y230{bottom:226.786667pt;}
.y203{bottom:227.586667pt;}
.y19b{bottom:228.386667pt;}
.y12e{bottom:229.346667pt;}
.y1e6{bottom:232.866667pt;}
.y1d2{bottom:233.026667pt;}
.yc8{bottom:234.466667pt;}
.y28c{bottom:234.786667pt;}
.y160{bottom:235.906667pt;}
.y21f{bottom:236.066667pt;}
.y282{bottom:236.226667pt;}
.y75{bottom:237.826667pt;}
.y88{bottom:238.946667pt;}
.yd4{bottom:240.546667pt;}
.y106{bottom:241.346667pt;}
.y250{bottom:243.106667pt;}
.y54{bottom:243.426667pt;}
.y1f8{bottom:243.906667pt;}
.y132{bottom:245.346667pt;}
.y63{bottom:246.146667pt;}
.y9c{bottom:246.626667pt;}
.y11{bottom:247.266667pt;}
.yec{bottom:247.426667pt;}
.y25{bottom:247.510400pt;}
.y113{bottom:248.866667pt;}
.yfb{bottom:249.666667pt;}
.y1ae{bottom:250.306667pt;}
.y202{bottom:251.106667pt;}
.y22f{bottom:251.746667pt;}
.y2a3{bottom:252.226667pt;}
.y1f5{bottom:252.386667pt;}
.y19a{bottom:253.346667pt;}
.y191{bottom:254.146667pt;}
.y43{bottom:255.426667pt;}
.yac{bottom:257.346667pt;}
.y1d1{bottom:257.986667pt;}
.y12d{bottom:258.786667pt;}
.y159{bottom:259.426667pt;}
.yc7{bottom:259.586667pt;}
.y182{bottom:260.866667pt;}
.y15f{bottom:261.026667pt;}
.y281{bottom:261.346667pt;}
.y2ac{bottom:261.826667pt;}
.y154{bottom:262.466667pt;}
.y87{bottom:264.066667pt;}
.y14f{bottom:264.386667pt;}
.y28b{bottom:264.706667pt;}
.y11d{bottom:266.466667pt;}
.y1e0{bottom:267.106667pt;}
.y53{bottom:268.386667pt;}
.y1bc{bottom:268.706667pt;}
.y74{bottom:269.666667pt;}
.y34{bottom:270.298667pt;}
.y9b{bottom:271.746667pt;}
.y112{bottom:273.826667pt;}
.y149{bottom:273.986667pt;}
.yd3{bottom:274.626667pt;}
.y2b6{bottom:274.629333pt;}
.yfa{bottom:274.786667pt;}
.y26c{bottom:275.586667pt;}
.y2be{bottom:276.036000pt;}
.y24f{bottom:276.066667pt;}
.y22e{bottom:276.866667pt;}
.y62{bottom:277.826667pt;}
.y199{bottom:278.466667pt;}
.y1a0{bottom:279.266667pt;}
.y105{bottom:280.706667pt;}
.y10{bottom:281.186667pt;}
.yeb{bottom:281.506667pt;}
.y24{bottom:281.590400pt;}
.yf2{bottom:282.466667pt;}
.y1f7{bottom:282.786667pt;}
.y1d0{bottom:283.106667pt;}
.y158{bottom:284.546667pt;}
.y2ab{bottom:285.506667pt;}
.y181{bottom:285.826667pt;}
.y15e{bottom:286.146667pt;}
.y1f4{bottom:286.306667pt;}
.y190{bottom:288.386667pt;}
.y86{bottom:289.186667pt;}
.y2a2{bottom:289.986667pt;}
.y42{bottom:290.146667pt;}
.y11c{bottom:291.426667pt;}
.y153{bottom:292.546667pt;}
.y12c{bottom:292.866667pt;}
.y28a{bottom:293.186667pt;}
.y52{bottom:293.506667pt;}
.yc6{bottom:295.426667pt;}
.y137{bottom:295.746667pt;}
.y33{bottom:295.880000pt;}
.y9a{bottom:296.706667pt;}
.y14e{bottom:296.866667pt;}
.y2b5{bottom:297.718667pt;}
.y148{bottom:299.106667pt;}
.y2bd{bottom:299.298667pt;}
.yf9{bottom:299.746667pt;}
.y1bb{bottom:300.226667pt;}
.y1e5{bottom:301.186667pt;}
.y73{bottom:301.346667pt;}
.y22d{bottom:301.986667pt;}
.y20a{bottom:303.586667pt;}
.y23{bottom:305.270400pt;}
.y16b{bottom:305.826667pt;}
.yf1{bottom:307.426667pt;}
.y1cf{bottom:308.226667pt;}
.yd2{bottom:308.866667pt;}
.y24e{bottom:309.186667pt;}
.y61{bottom:309.506667pt;}
.y180{bottom:310.946667pt;}
.y1b5{bottom:311.106667pt;}
.y1df{bottom:311.266667pt;}
.yf{bottom:311.746667pt;}
.y201{bottom:312.066667pt;}
.y1f6{bottom:313.186667pt;}
.y85{bottom:314.146667pt;}
.y198{bottom:314.306667pt;}
.y111{bottom:315.106667pt;}
.yea{bottom:315.746667pt;}
.y11b{bottom:316.546667pt;}
.ya8{bottom:318.466667pt;}
.y51{bottom:318.626667pt;}
.y41{bottom:319.426667pt;}
.yc5{bottom:320.386667pt;}
.y1d9{bottom:321.186667pt;}
.y104{bottom:321.826667pt;}
.y15d{bottom:321.986667pt;}
.y280{bottom:322.306667pt;}
.y2ba{bottom:322.552000pt;}
.y2bc{bottom:322.561333pt;}
.y18f{bottom:322.626667pt;}
.y147{bottom:324.066667pt;}
.yf8{bottom:324.866667pt;}
.y22c{bottom:326.946667pt;}
.y12b{bottom:327.106667pt;}
.y209{bottom:328.546667pt;}
.y2a1{bottom:332.386667pt;}
.yf0{bottom:332.546667pt;}
.y99{bottom:332.706667pt;}
.y72{bottom:333.026667pt;}
.y1ce{bottom:333.186667pt;}
.y1ef{bottom:333.986667pt;}
.y1e4{bottom:335.426667pt;}
.y17f{bottom:335.906667pt;}
.y1de{bottom:336.226667pt;}
.y197{bottom:339.106667pt;}
.y22{bottom:339.217067pt;}
.y84{bottom:339.266667pt;}
.y110{bottom:339.906667pt;}
.y60{bottom:341.346667pt;}
.y11a{bottom:341.506667pt;}
.y16a{bottom:341.666667pt;}
.y24d{bottom:342.146667pt;}
.yd1{bottom:342.946667pt;}
.y50{bottom:343.586667pt;}
.y2b9{bottom:345.017333pt;}
.y1ba{bottom:345.026667pt;}
.yc4{bottom:345.506667pt;}
.y103{bottom:346.946667pt;}
.y1b4{bottom:347.106667pt;}
.y2bb{bottom:348.062667pt;}
.y40{bottom:348.706667pt;}
.y146{bottom:349.186667pt;}
.y215{bottom:349.346667pt;}
.ye9{bottom:349.986667pt;}
.y289{bottom:350.466667pt;}
.y157{bottom:350.626667pt;}
.ye{bottom:350.946667pt;}
.y1c2{bottom:352.066667pt;}
.y1ad{bottom:352.866667pt;}
.y2aa{bottom:353.666667pt;}
.y32{bottom:353.709333pt;}
.y27f{bottom:354.626667pt;}
.y200{bottom:356.226667pt;}
.y18e{bottom:356.706667pt;}
.y98{bottom:357.506667pt;}
.y1cd{bottom:358.306667pt;}
.y17e{bottom:361.026667pt;}
.y12a{bottom:361.186667pt;}
.y21{bottom:362.923733pt;}
.y1d8{bottom:363.266667pt;}
.y83{bottom:364.226667pt;}
.y208{bottom:364.386667pt;}
.y71{bottom:364.706667pt;}
.y10f{bottom:365.026667pt;}
.ya6{bottom:365.186667pt;}
.y119{bottom:366.626667pt;}
.y167{bottom:368.066667pt;}
.y4f{bottom:368.706667pt;}
.y1e3{bottom:369.666667pt;}
.yc3{bottom:370.466667pt;}
.y26b{bottom:370.946667pt;}
.y102{bottom:371.906667pt;}
.y5f{bottom:373.026667pt;}
.y145{bottom:374.146667pt;}
.yf7{bottom:374.946667pt;}
.y24c{bottom:375.266667pt;}
.y156{bottom:375.586667pt;}
.yd0{bottom:377.213333pt;}
.y3f{bottom:378.013333pt;}
.y288{bottom:378.973333pt;}
.y1ff{bottom:381.213333pt;}
.y1b9{bottom:382.493333pt;}
.y97{bottom:382.653333pt;}
.y1cc{bottom:383.293333pt;}
.ye8{bottom:384.093333pt;}
.y277{bottom:384.893333pt;}
.y27e{bottom:385.053333pt;}
.y17d{bottom:386.013333pt;}
.y129{bottom:386.333333pt;}
.y1ac{bottom:387.133333pt;}
.y2a9{bottom:387.933333pt;}
.y82{bottom:389.373333pt;}
.y18d{bottom:390.973333pt;}
.y118{bottom:391.613333pt;}
.y22b{bottom:393.053333pt;}
.y4e{bottom:393.693333pt;}
.y242{bottom:394.013333pt;}
.y25b{bottom:394.333333pt;}
.yc2{bottom:395.613333pt;}
.yd{bottom:396.093333pt;}
.y70{bottom:396.573333pt;}
.y20{bottom:396.977067pt;}
.y101{bottom:397.053333pt;}
.y1d7{bottom:397.213333pt;}
.y144{bottom:399.293333pt;}
.yf6{bottom:400.093333pt;}
.y263{bottom:400.253333pt;}
.y10e{bottom:400.733333pt;}
.y1ee{bottom:402.013333pt;}
.y166{bottom:402.333333pt;}
.y26a{bottom:402.653333pt;}
.y1e2{bottom:403.773333pt;}
.y5e{bottom:404.733333pt;}
.y257{bottom:405.213333pt;}
.y2b4{bottom:405.850667pt;}
.y1fe{bottom:406.173333pt;}
.y3e{bottom:407.133333pt;}
.y96{bottom:407.613333pt;}
.ya5{bottom:407.773333pt;}
.y1cb{bottom:408.413333pt;}
.y214{bottom:410.173333pt;}
.y17c{bottom:411.133333pt;}
.ycf{bottom:411.453333pt;}
.y267{bottom:412.893333pt;}
.y81{bottom:414.493333pt;}
.y276{bottom:415.293333pt;}
.y27d{bottom:415.613333pt;}
.y117{bottom:416.733333pt;}
.y2a8{bottom:416.893333pt;}
.y29d{bottom:417.213333pt;}
.y22a{bottom:418.173333pt;}
.ye7{bottom:418.333333pt;}
.y4d{bottom:418.813333pt;}
.y1a7{bottom:418.973333pt;}
.yc1{bottom:420.573333pt;}
.y1f{bottom:420.657067pt;}
.y1ab{bottom:421.213333pt;}
.y100{bottom:422.013333pt;}
.y1c1{bottom:422.173333pt;}
.y143{bottom:424.413333pt;}
.y261{bottom:424.893333pt;}
.yf5{bottom:425.053333pt;}
.y18c{bottom:425.213333pt;}
.y155{bottom:425.853333pt;}
.y25a{bottom:426.813333pt;}
.y241{bottom:428.093333pt;}
.yc{bottom:428.253333pt;}
.y2b3{bottom:428.570667pt;}
.y256{bottom:430.013333pt;}
.y21e{bottom:430.173333pt;}
.y1fd{bottom:431.293333pt;}
.y95{bottom:432.733333pt;}
.y1ed{bottom:433.213333pt;}
.y1ca{bottom:433.533333pt;}
.y269{bottom:434.333333pt;}
.y213{bottom:434.973333pt;}
.y17b{bottom:436.253333pt;}
.y3d{bottom:436.413333pt;}
.y5d{bottom:436.573333pt;}
.y1e1{bottom:438.013333pt;}
.y260{bottom:439.293333pt;}
.y152{bottom:439.453333pt;}
.y24b{bottom:441.373333pt;}
.y169{bottom:441.853333pt;}
.y10d{bottom:442.013333pt;}
.y229{bottom:443.293333pt;}
.y4c{bottom:443.933333pt;}
.yc0{bottom:445.693333pt;}
.y275{bottom:445.853333pt;}
.y27c{bottom:446.013333pt;}
.y14d{bottom:447.133333pt;}
.yce{bottom:447.293333pt;}
.y1a6{bottom:448.893333pt;}
.y142{bottom:449.373333pt;}
.yf4{bottom:450.173333pt;}
.y80{bottom:450.333333pt;}
.y31{bottom:450.453333pt;}
.y29c{bottom:451.293333pt;}
.ye6{bottom:452.573333pt;}
.y1e{bottom:454.577333pt;}
.y21d{bottom:455.133333pt;}
.y1aa{bottom:455.453333pt;}
.y1fc{bottom:456.413333pt;}
.y94{bottom:457.853333pt;}
.ya2{bottom:458.013333pt;}
.y1c9{bottom:458.493333pt;}
.y18b{bottom:459.293333pt;}
.y6f{bottom:459.933333pt;}
.y212{bottom:460.093333pt;}
.y17a{bottom:461.213333pt;}
.y128{bottom:461.533333pt;}
.y1f0{bottom:463.133333pt;}
.y1ec{bottom:464.093333pt;}
.y151{bottom:464.573333pt;}
.y287{bottom:464.733333pt;}
.y248{bottom:465.373333pt;}
.y3c{bottom:465.693333pt;}
.y268{bottom:466.173333pt;}
.y10c{bottom:466.813333pt;}
.y5c{bottom:468.253333pt;}
.y4b{bottom:468.893333pt;}
.y2{bottom:470.813333pt;}
.y29f{bottom:470.973333pt;}
.ycd{bottom:472.253333pt;}
.y165{bottom:472.413333pt;}
.y25f{bottom:473.373333pt;}
.y2b2{bottom:473.544000pt;}
.y141{bottom:474.493333pt;}
.y7f{bottom:475.293333pt;}
.y274{bottom:476.253333pt;}
.y27b{bottom:476.413333pt;}
.y297{bottom:477.373333pt;}
.y1d{bottom:478.257333pt;}
.y1a5{bottom:479.293333pt;}
.y21c{bottom:480.253333pt;}
.y1fb{bottom:481.373333pt;}
.y93{bottom:482.813333pt;}
.y168{bottom:482.973333pt;}
.y23c{bottom:483.293333pt;}
.y1c8{bottom:483.613333pt;}
.y29b{bottom:484.733333pt;}
.y211{bottom:485.213333pt;}
.y179{bottom:486.333333pt;}
.ye5{bottom:486.653333pt;}
.y1a9{bottom:489.693333pt;}
.y196{bottom:490.493333pt;}
.y6e{bottom:491.773333pt;}
.y10b{bottom:491.933333pt;}
.y240{bottom:492.253333pt;}
.y228{bottom:493.373333pt;}
.y18a{bottom:493.533333pt;}
.y286{bottom:494.013333pt;}
.y3b{bottom:494.813333pt;}
.ybf{bottom:495.773333pt;}
.y2b1{bottom:497.164000pt;}
.ycc{bottom:497.213333pt;}
.y1dd{bottom:497.373333pt;}
.y1eb{bottom:497.853333pt;}
.y247{bottom:498.493333pt;}
.y1a4{bottom:499.293333pt;}
.y5b{bottom:499.933333pt;}
.y7e{bottom:500.253333pt;}
.y150{bottom:500.413333pt;}
.y4a{bottom:503.133333pt;}
.y21b{bottom:505.213333pt;}
.y1fa{bottom:506.493333pt;}
.y1f1{bottom:506.653333pt;}
.y273{bottom:506.813333pt;}
.y27a{bottom:506.973333pt;}
.y24a{bottom:507.613333pt;}
.y92{bottom:507.933333pt;}
.y14c{bottom:508.093333pt;}
.y1c7{bottom:508.733333pt;}
.y210{bottom:510.173333pt;}
.y140{bottom:510.333333pt;}
.y178{bottom:511.293333pt;}
.y296{bottom:511.453333pt;}
.y127{bottom:511.613333pt;}
.y1c{bottom:512.377333pt;}
.y2a0{bottom:516.893333pt;}
.y10a{bottom:517.053333pt;}
.y227{bottom:518.333333pt;}
.y23b{bottom:519.133333pt;}
.y2b0{bottom:520.784000pt;}
.ybe{bottom:520.893333pt;}
.y1a3{bottom:521.053333pt;}
.y3a{bottom:522.333333pt;}
.y195{bottom:522.493333pt;}
.y6d{bottom:523.453333pt;}
.y246{bottom:523.613333pt;}
.y30{bottom:523.933333pt;}
.y285{bottom:524.893333pt;}
.y7d{bottom:525.373333pt;}
.y1a8{bottom:525.533333pt;}
.y49{bottom:526.813333pt;}
.y189{bottom:527.613333pt;}
.y21a{bottom:530.333333pt;}
.y5a{bottom:531.613333pt;}
.y1ea{bottom:531.773333pt;}
.y91{bottom:532.893333pt;}
.ycb{bottom:533.053333pt;}
.y1c6{bottom:533.693333pt;}
.y1b{bottom:536.097333pt;}
.y177{bottom:536.413333pt;}
.y272{bottom:537.213333pt;}
.y249{bottom:540.573333pt;}
.y279{bottom:542.173333pt;}
.y226{bottom:543.453333pt;}
.y23a{bottom:544.093333pt;}
.y2af{bottom:544.130667pt;}
.ybd{bottom:545.893333pt;}
.y13f{bottom:546.053333pt;}
.y19f{bottom:547.333333pt;}
.y126{bottom:547.493333pt;}
.y2f{bottom:547.613333pt;}
.y245{bottom:548.613333pt;}
.y48{bottom:550.373333pt;}
.y39{bottom:553.253333pt;}
.y6c{bottom:555.173333pt;}
.y219{bottom:555.333333pt;}
.y1e9{bottom:556.613333pt;}
.ye4{bottom:556.773333pt;}
.y90{bottom:558.053333pt;}
.y109{bottom:558.213333pt;}
.y1c5{bottom:558.853333pt;}
.y176{bottom:561.573333pt;}
.y188{bottom:561.893333pt;}
.y59{bottom:563.493333pt;}
.y1a{bottom:565.657333pt;}
.y271{bottom:567.653333pt;}
.y225{bottom:568.613333pt;}
.y239{bottom:569.093333pt;}
.ybc{bottom:571.013333pt;}
.y1dc{bottom:572.453333pt;}
.y244{bottom:573.733333pt;}
.y295{bottom:574.533333pt;}
.yb{bottom:575.173333pt;}
.y7c{bottom:575.493333pt;}
.y218{bottom:580.453333pt;}
.ye3{bottom:581.733333pt;}
.y20f{bottom:581.893333pt;}
.y8f{bottom:583.173333pt;}
.y125{bottom:583.333333pt;}
.y1c4{bottom:583.813333pt;}
.y47{bottom:584.293333pt;}
.y175{bottom:586.533333pt;}
.y6b{bottom:586.853333pt;}
.y278{bottom:587.813333pt;}
.y224{bottom:593.573333pt;}
.y16e{bottom:593.893333pt;}
.y238{bottom:594.213333pt;}
.y58{bottom:595.173333pt;}
.ybb{bottom:596.133333pt;}
.y1db{bottom:597.573333pt;}
.y270{bottom:598.213333pt;}
.y243{bottom:598.693333pt;}
.y298{bottom:599.493333pt;}
.y7b{bottom:600.613333pt;}
.y2ae{bottom:602.442933pt;}
.y2e{bottom:605.253333pt;}
.y217{bottom:605.573333pt;}
.ye2{bottom:606.693333pt;}
.y29e{bottom:606.853333pt;}
.ya{bottom:607.333333pt;}
.y8e{bottom:608.133333pt;}
.y1c3{bottom:608.293333pt;}
.y19{bottom:609.337333pt;}
.y46{bottom:617.733333pt;}
.y6a{bottom:618.693333pt;}
.y237{bottom:619.173333pt;}
.y174{bottom:619.973333pt;}
.y38{bottom:620.133333pt;}
.y13e{bottom:621.093333pt;}
.y2ad{bottom:626.122667pt;}
.y2a7{bottom:626.693333pt;}
.y57{bottom:626.853333pt;}
.y2d{bottom:628.933333pt;}
.y216{bottom:630.693333pt;}
.ye1{bottom:631.813333pt;}
.yba{bottom:631.973333pt;}
.y18{bottom:633.017333pt;}
.y8d{bottom:633.253333pt;}
.y1da{bottom:633.413333pt;}
.y9{bottom:639.973333pt;}
.y7a{bottom:640.933333pt;}
.y223{bottom:643.653333pt;}
.y16d{bottom:643.813333pt;}
.y45{bottom:647.653333pt;}
.y69{bottom:650.373333pt;}
.y236{bottom:652.613333pt;}
.yb9{bottom:656.933333pt;}
.y13d{bottom:657.093333pt;}
.y2c{bottom:662.853333pt;}
.y234{bottom:666.373333pt;}
.y2a6{bottom:668.773333pt;}
.y56{bottom:670.853333pt;}
.y17{bottom:671.020000pt;}
.y44{bottom:673.573333pt;}
.y8{bottom:676.293333pt;}
.y16c{bottom:679.173333pt;}
.y37{bottom:681.733333pt;}
.yb8{bottom:681.893333pt;}
.y68{bottom:682.053333pt;}
.y222{bottom:683.973333pt;}
.y2b{bottom:686.533333pt;}
.y16{bottom:694.700000pt;}
.y5{bottom:712.933333pt;}
.y4{bottom:732.640000pt;}
.h2b{height:20.960000pt;}
.h24{height:21.440000pt;}
.h28{height:22.720000pt;}
.h17{height:22.752000pt;}
.h31{height:23.040000pt;}
.h29{height:26.400000pt;}
.h21{height:26.643750pt;}
.h30{height:27.072000pt;}
.h2f{height:27.232000pt;}
.h20{height:27.360000pt;}
.h1f{height:27.520000pt;}
.h25{height:28.480000pt;}
.h2a{height:32.800000pt;}
.h3{height:41.760000pt;}
.h33{height:42.560000pt;}
.h8{height:45.108750pt;}
.h1b{height:45.280000pt;}
.h19{height:45.440000pt;}
.h1c{height:45.472000pt;}
.h23{height:49.120000pt;}
.hf{height:49.765625pt;}
.hd{height:51.840000pt;}
.h38{height:53.593750pt;}
.hb{height:55.660000pt;}
.h18{height:57.701250pt;}
.h5{height:58.362500pt;}
.h2{height:58.563750pt;}
.h1a{height:59.840000pt;}
.h32{height:60.288750pt;}
.he{height:60.500000pt;}
.h2c{height:61.952000pt;}
.h7{height:62.718750pt;}
.h2d{height:62.880000pt;}
.hc{height:63.437500pt;}
.h15{height:63.656250pt;}
.h37{height:64.530833pt;}
.h36{height:65.674525pt;}
.h1d{height:65.781915pt;}
.ha{height:73.380937pt;}
.h34{height:73.546875pt;}
.h13{height:74.221875pt;}
.h10{height:76.964840pt;}
.h6{height:83.415937pt;}
.h2e{height:88.160000pt;}
.h26{height:91.406250pt;}
.h16{height:94.078125pt;}
.h14{height:95.156250pt;}
.h27{height:98.296875pt;}
.h22{height:99.520000pt;}
.h9{height:104.740312pt;}
.h4{height:125.437500pt;}
.h35{height:131.062500pt;}
.h11{height:146.134687pt;}
.h12{height:147.809375pt;}
.h1e{height:212.386667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1d{width:83.552000pt;}
.w18{width:105.600000pt;}
.w7{width:120.992000pt;}
.w19{width:140.960000pt;}
.w9{width:154.080000pt;}
.w8{width:154.106667pt;}
.wb{width:183.226667pt;}
.w6{width:187.226667pt;}
.wd{width:194.426667pt;}
.wf{width:231.866667pt;}
.we{width:232.066667pt;}
.w10{width:232.346667pt;}
.w14{width:241.306667pt;}
.wc{width:244.346667pt;}
.w11{width:254.586667pt;}
.w15{width:259.586667pt;}
.w17{width:285.986667pt;}
.wa{width:293.666667pt;}
.w13{width:326.106667pt;}
.w12{width:326.266667pt;}
.w1b{width:328.346667pt;}
.w16{width:389.186667pt;}
.w3{width:404.066667pt;}
.w1a{width:431.426667pt;}
.w1c{width:447.586667pt;}
.w5{width:1122.559983pt;}
.w4{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.w2{width:1122.719983pt;}
.w0{width:1122.720000pt;}
.x0{left:0.000000pt;}
.x21{left:6.592000pt;}
.x34{left:8.672000pt;}
.x29{left:9.600000pt;}
.x3c{left:14.880000pt;}
.x52{left:16.506667pt;}
.x31{left:28.480000pt;}
.x2a{left:33.600000pt;}
.x4d{left:35.040000pt;}
.x43{left:36.000000pt;}
.x39{left:40.160000pt;}
.x3{left:41.274667pt;}
.x4b{left:52.800000pt;}
.x2b{left:57.600000pt;}
.x48{left:61.920000pt;}
.x4f{left:70.400000pt;}
.x46{left:85.120000pt;}
.x1e{left:87.199983pt;}
.x3f{left:89.760000pt;}
.x4{left:94.559983pt;}
.x1{left:96.031983pt;}
.x2f{left:97.279983pt;}
.x20{left:99.199983pt;}
.x41{left:101.311983pt;}
.x2{left:103.392000pt;}
.x17{left:109.311983pt;}
.x26{left:118.591983pt;}
.x18{left:123.871983pt;}
.x27{left:142.586650pt;}
.x56{left:151.150667pt;}
.x58{left:152.173333pt;}
.x3e{left:193.306667pt;}
.xd{left:254.746650pt;}
.x53{left:265.306650pt;}
.x57{left:274.036000pt;}
.x22{left:284.346667pt;}
.x35{left:291.546667pt;}
.x6{left:296.186650pt;}
.x55{left:300.506650pt;}
.x10{left:333.826650pt;}
.x9{left:336.546650pt;}
.x45{left:344.706650pt;}
.x14{left:349.986650pt;}
.x47{left:366.626667pt;}
.x12{left:386.626650pt;}
.x23{left:406.626667pt;}
.x13{left:423.746650pt;}
.x54{left:434.786650pt;}
.x44{left:441.986667pt;}
.x38{left:444.706667pt;}
.xa{left:461.986650pt;}
.x42{left:464.226667pt;}
.x7{left:467.586650pt;}
.x15{left:480.066650pt;}
.x11{left:489.666650pt;}
.x16{left:496.866650pt;}
.xf{left:500.226650pt;}
.x8{left:514.306650pt;}
.xc{left:517.026650pt;}
.x51{left:522.786667pt;}
.x36{left:524.893333pt;}
.x32{left:532.573333pt;}
.xe{left:552.093317pt;}
.xb{left:561.373317pt;}
.x50{left:570.173317pt;}
.x2c{left:572.093317pt;}
.x2d{left:573.213317pt;}
.x2e{left:574.173317pt;}
.x4e{left:580.253333pt;}
.x3d{left:591.613333pt;}
.x4c{left:612.093333pt;}
.x49{left:661.373333pt;}
.x3b{left:665.213333pt;}
.x28{left:670.333333pt;}
.x24{left:717.373333pt;}
.x1a{left:743.173317pt;}
.x1b{left:744.133317pt;}
.x1c{left:745.253317pt;}
.x1d{left:746.213317pt;}
.x4a{left:753.253333pt;}
.x37{left:758.213333pt;}
.x30{left:830.853333pt;}
.x3a{left:865.093317pt;}
.x25{left:872.773333pt;}
.x40{left:993.919983pt;}
.x33{left:1000.799983pt;}
.x1f{left:1011.359983pt;}
.x19{left:1019.839983pt;}
.x5{left:1028.159983pt;}
}




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