
    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_e32d4b9e41e7caae0324ec5a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0d192fde7ca9ebcfb89a59b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;font-style:normal;font-weight: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_1498a9fda281b094b6c18995.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.877930;font-style:normal;font-weight: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_4245888b61f4bdc7c4ecc363.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.853027;font-style:normal;font-weight: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_a6d372fb48523c2948f83c75.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_030addd0f64e2a95c683a958.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682129;font-style:normal;font-weight: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_62cb277cafd1f292cc35c38a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.877930;font-style:normal;font-weight: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_3512a9df2f50cfbe7b14458f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.867676;font-style:normal;font-weight: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_9e73fa74f5e2d05e0a459139.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;font-style:normal;font-weight: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_36e925e65614143fdd477bde.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0b80e4d3d299cb7d9e49889f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight: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_4551c1fd12085cc511eaca8c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.093262;font-style:normal;font-weight: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_28f04e3de88c16c1d0a61f4f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850098;font-style:normal;font-weight: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_1fc71aaabbb078461c158fc4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.834473;font-style:normal;font-weight: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_08605569d6426c4ef884b26a.woff2')format("woff");}.fff{font-family:fff;line-height:0.895020;font-style:normal;font-weight: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_89fe43a54f64c99005671080.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_370a639bfa9058a5c6cfc798.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;font-style:normal;font-weight: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_ebcbc3560128b0b6c57f85df.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.853027;font-style:normal;font-weight: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_6b4a6df5b3df661d3b6443d5.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_fb417295fb75d518c1282741.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.834473;font-style:normal;font-weight: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_67c5662aa53d458a361a8de3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.093262;font-style:normal;font-weight: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_0d5fd445e972ddf5d098cd08.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_0336f681a87c264832fe4901.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.093262;font-style:normal;font-weight: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_aa6e0ac66d73d06a5490fff2.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.093262;font-style:normal;font-weight: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_18f78e34c5e5ecb6ccee4501.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_28ac3b366a08a9f70aa63d2b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.853027;font-style:normal;font-weight: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_2b6785caf638a0caf146b932.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_f6aee55245dfaf7e0d193877.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.093262;font-style:normal;font-weight: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_53418322db10e57184058be8.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.682129;font-style:normal;font-weight: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_d235eb3cdbe974ebd9f02272.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_47a3c00f9ba3e2fd0798ee01.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.093262;font-style:normal;font-weight: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_3e12df18022d81c8059ba261.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.093262;font-style:normal;font-weight: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_1c5374f24a94b63831db6dc2.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_5fe9e0217ef76bbb8554d404.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.728027;font-style:normal;font-weight: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_36571f1e2a9845cc96554806.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.853027;font-style:normal;font-weight: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_0ddab7f22629407bbca39083.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.853027;font-style:normal;font-weight: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_f0d86f91ff552c704d613cb5.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.093262;font-style:normal;font-weight: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_c149633f016868c74c2924d0.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_6ce4bcb03f34ab9b22bf9be6.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.093262;font-style:normal;font-weight: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_b26c915861200b6fb5e600e6.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.853027;font-style:normal;font-weight: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_0defbb79b4eab9a1f079ccff.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.093262;font-style:normal;font-weight: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_895896e9b5266f156109d8f7.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_5d551c79eec4cc91d165cab3.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.682129;font-style:normal;font-weight: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_6f53b73f2dda5a862825b9f8.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.093262;font-style:normal;font-weight: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_edcb278daf9ce62b1c4a049f.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_96c8c77929fa735ef8aefec2.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.093262;font-style:normal;font-weight: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_d019bacf861bd23564b27f68.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.093262;font-style:normal;font-weight: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_7dcd861f21bffe60d2c08f51.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_3b1ef9172d6bf89f0d7038ec.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_c96e5fb4f939e24dd8b85189.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.093262;font-style:normal;font-weight: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_2094acdd09ec4fece865e8c3.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_5db267aeddb8bf9b3e241c1f.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_009ce04a5f29fd6b14e00876.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_5558dffc07f5065d30b76e5a.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.682129;font-style:normal;font-weight: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_ef74a1877865575a58271ee5.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.093262;font-style:normal;font-weight: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_e23a3e687469e7eff5276f94.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_443f00f22cf38bc56a148831.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.093262;font-style:normal;font-weight: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_06d8e72c2c8b57a2ddb5b6b4.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_71a57f029f11e0f19268abf5.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.853027;font-style:normal;font-weight: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_c1edb7a7981d47df39c0423b.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_317ad7d69fa01e16d31ed718.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.093262;font-style:normal;font-weight: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_4489d22747497ad46f811493.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.682129;font-style:normal;font-weight: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_421c2169b73c3625d2727f80.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_8e8ba87df77a87ac8904bdab.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.093262;font-style:normal;font-weight: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_85a0ba5b93989bc4d7c723a0.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_c750715c9da694206e96482c.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.853027;font-style:normal;font-weight: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_aaea9aaf3f368c563f23cd80.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.093262;font-style:normal;font-weight: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_bf7d3706f179be791a35e6bd.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.853027;font-style:normal;font-weight: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_63060a52d0d01c393179bf59.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.877930;font-style:normal;font-weight: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_87684022caeac236d260e74b.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.093262;font-style:normal;font-weight: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_1ae04da8344320e80ce1f1f1.woff2')format("woff");}.ff47{font-family:ff47;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;}
.m1{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);-ms-transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);-webkit-transform:matrix(0.250001,0.000000,-0.079055,0.237171,0,0);}
.m5{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257075,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257975,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-37.500000px;}
.v1{vertical-align:-13.200000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-6.000000px;}
.ls4{letter-spacing:-3.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.912000px;}
.ls0{letter-spacing:2.808000px;}
.lsb{letter-spacing:3.149400px;}
.ls5{letter-spacing:3.492000px;}
.ls7{letter-spacing:3.510000px;}
.lsc{letter-spacing:4.992000px;}
.ls6{letter-spacing:6.000000px;}
.lsa{letter-spacing:6.144000px;}
.ls2{letter-spacing:15.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-96.648000px;}
.ws2{word-spacing:-36.000000px;}
.ws6{word-spacing:-34.827000px;}
.ws13{word-spacing:-30.000000px;}
.ws12{word-spacing:-28.692000px;}
.ws5{word-spacing:-27.000000px;}
.wsc{word-spacing:-25.500000px;}
.ws14{word-spacing:-21.000000px;}
.ws8{word-spacing:-19.034736px;}
.wsf{word-spacing:-18.207000px;}
.ws3{word-spacing:-15.750000px;}
.ws7{word-spacing:-14.250000px;}
.ws9{word-spacing:-12.750000px;}
.wsa{word-spacing:-11.250000px;}
.ws1{word-spacing:-10.455000px;}
.ws11{word-spacing:-10.200000px;}
.ws10{word-spacing:-9.000000px;}
.wsd{word-spacing:-8.955000px;}
.ws0{word-spacing:-1.494000px;}
.ws4{word-spacing:0.000000px;}
.wsb{word-spacing:576.522000px;}
._4{margin-left:-32.088000px;}
._2b{margin-left:-23.724000px;}
._1c{margin-left:-21.954600px;}
._1d{margin-left:-20.088000px;}
._2e{margin-left:-17.718000px;}
._20{margin-left:-13.452000px;}
._19{margin-left:-11.670000px;}
._18{margin-left:-10.632000px;}
._2d{margin-left:-9.519000px;}
._5{margin-left:-8.400000px;}
._1f{margin-left:-7.095000px;}
._14{margin-left:-5.985000px;}
._16{margin-left:-4.275000px;}
._15{margin-left:-2.964000px;}
._2{margin-left:-1.824000px;}
._6{width:1.785000px;}
._1a{width:3.060000px;}
._e{width:4.224000px;}
._10{width:6.204000px;}
._7{width:7.722000px;}
._1b{width:9.015000px;}
._a{width:10.098000px;}
._9{width:11.616000px;}
._d{width:13.068000px;}
._c{width:14.586000px;}
._22{width:15.789000px;}
._25{width:16.923000px;}
._21{width:18.042000px;}
._24{width:19.137000px;}
._13{width:20.235000px;}
._26{width:21.375000px;}
._12{width:22.686000px;}
._1{width:23.826000px;}
._0{width:25.194000px;}
._27{width:26.802000px;}
._32{width:28.875000px;}
._28{width:29.898000px;}
._2f{width:30.906000px;}
._17{width:32.868000px;}
._29{width:35.604000px;}
._2a{width:40.869000px;}
._30{width:43.877400px;}
._23{width:45.258000px;}
._36{width:47.766000px;}
._34{width:49.902000px;}
._b{width:51.612000px;}
._39{width:52.653000px;}
._38{width:53.916000px;}
._11{width:55.506000px;}
._8{width:63.096000px;}
._2c{width:66.348000px;}
._f{width:69.762000px;}
._33{width:72.132000px;}
._35{width:73.686000px;}
._37{width:76.950000px;}
._1e{width:93.084000px;}
._31{width:156.321000px;}
._3{width:876.498000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fsf{font-size:39.000000px;}
.fse{font-size:40.800000px;}
.fsa{font-size:45.000000px;}
.fs9{font-size:45.594000px;}
.fs2{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs4{font-size:68.999615px;}
.fsc{font-size:72.000000px;}
.fsd{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:108.000000px;}
.fs1{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y2a9{bottom:52.192650px;}
.y2a8{bottom:64.792500px;}
.y7e{bottom:74.176500px;}
.y4a{bottom:74.178000px;}
.y13c{bottom:75.605850px;}
.y2f{bottom:76.727850px;}
.y64{bottom:76.728750px;}
.y2a7{bottom:78.142500px;}
.y116{bottom:79.957200px;}
.y216{bottom:80.628900px;}
.yee{bottom:81.379650px;}
.y1f4{bottom:82.129500px;}
.y161{bottom:84.231000px;}
.y186{bottom:84.604050px;}
.y23c{bottom:84.982050px;}
.y7d{bottom:85.351500px;}
.yc6{bottom:85.351800px;}
.y49{bottom:85.353000px;}
.y9{bottom:87.843000px;}
.y2a6{bottom:91.117500px;}
.y115{bottom:92.932050px;}
.y215{bottom:93.603750px;}
.yed{bottom:94.729500px;}
.y1f3{bottom:95.029350px;}
.y1cf{bottom:95.030250px;}
.ya4{bottom:97.202850px;}
.y185{bottom:97.204050px;}
.y7c{bottom:97.951500px;}
.y48{bottom:97.953000px;}
.y23b{bottom:97.957050px;}
.yc5{bottom:98.326800px;}
.y13b{bottom:98.330850px;}
.y160{bottom:99.754500px;}
.y114{bottom:105.832050px;}
.y214{bottom:106.953750px;}
.y1f2{bottom:107.629200px;}
.yec{bottom:107.629350px;}
.y1ce{bottom:107.630100px;}
.y259{bottom:108.750000px;}
.ya3{bottom:109.802850px;}
.y184{bottom:110.554050px;}
.y7b{bottom:110.926500px;}
.yc4{bottom:110.926800px;}
.y47{bottom:110.928000px;}
.y13a{bottom:111.230700px;}
.y15f{bottom:111.604500px;}
.y280{bottom:114.153150px;}
.y23a{bottom:116.630550px;}
.y113{bottom:118.131900px;}
.y213{bottom:119.178750px;}
.y8{bottom:119.866500px;}
.y1f1{bottom:120.604200px;}
.yeb{bottom:120.604350px;}
.y1cd{bottom:120.605100px;}
.ya2{bottom:123.152850px;}
.y183{bottom:123.153900px;}
.y7a{bottom:123.526500px;}
.y46{bottom:123.528000px;}
.yc3{bottom:123.826650px;}
.y139{bottom:124.205700px;}
.y15e{bottom:124.579500px;}
.y2a5{bottom:126.816000px;}
.y27f{bottom:127.128000px;}
.y239{bottom:129.605550px;}
.y112{bottom:130.356900px;}
.y212{bottom:132.228600px;}
.y1f0{bottom:133.204200px;}
.yea{bottom:133.579350px;}
.y1cc{bottom:133.580100px;}
.ya1{bottom:135.752700px;}
.y182{bottom:135.753750px;}
.y79{bottom:136.126350px;}
.y45{bottom:136.127850px;}
.yc2{bottom:136.426650px;}
.y138{bottom:136.805700px;}
.y7{bottom:139.291500px;}
.y2a4{bottom:139.715850px;}
.y27e{bottom:140.403000px;}
.y1aa{bottom:142.576500px;}
.y238{bottom:142.580550px;}
.y111{bottom:143.631750px;}
.y258{bottom:144.378000px;}
.y211{bottom:145.128600px;}
.y1ef{bottom:146.179200px;}
.ye9{bottom:146.179350px;}
.y1cb{bottom:146.555100px;}
.ya0{bottom:147.977700px;}
.y15d{bottom:148.728000px;}
.y181{bottom:148.728750px;}
.y78{bottom:149.026350px;}
.y44{bottom:149.027850px;}
.yc1{bottom:149.401650px;}
.y2a3{bottom:152.615700px;}
.y27d{bottom:153.002850px;}
.y237{bottom:155.180550px;}
.y110{bottom:156.606750px;}
.y1a9{bottom:156.976350px;}
.y257{bottom:156.978000px;}
.y210{bottom:158.028600px;}
.y1ee{bottom:158.779200px;}
.y137{bottom:158.780700px;}
.ye8{bottom:159.154350px;}
.y1ca{bottom:159.530100px;}
.y9f{bottom:161.327700px;}
.y180{bottom:161.328750px;}
.y77{bottom:161.626200px;}
.y43{bottom:161.627700px;}
.y15c{bottom:162.002850px;}
.yc0{bottom:162.751500px;}
.y2a2{bottom:165.590700px;}
.y27c{bottom:166.352850px;}
.y236{bottom:168.155550px;}
.y1a8{bottom:169.201350px;}
.y10f{bottom:169.206750px;}
.y256{bottom:169.953000px;}
.y20f{bottom:170.628450px;}
.y1ed{bottom:171.379050px;}
.ye7{bottom:171.829200px;}
.y1c9{bottom:172.129950px;}
.y15b{bottom:173.552850px;}
.y76{bottom:174.226200px;}
.y42{bottom:174.602700px;}
.ybf{bottom:174.976500px;}
.y17f{bottom:176.028750px;}
.y2a1{bottom:178.565700px;}
.y27b{bottom:179.327850px;}
.y136{bottom:179.329200px;}
.y235{bottom:180.755400px;}
.y10e{bottom:182.181750px;}
.y1a7{bottom:182.551350px;}
.y255{bottom:182.553000px;}
.y20e{bottom:183.603450px;}
.y1ec{bottom:184.354050px;}
.ye6{bottom:184.729200px;}
.y1c8{bottom:185.029950px;}
.y9e{bottom:185.777700px;}
.y15a{bottom:185.777850px;}
.y17e{bottom:186.828600px;}
.ybe{bottom:187.201500px;}
.y75{bottom:187.576200px;}
.y41{bottom:187.577700px;}
.y2a0{bottom:191.540700px;}
.y27a{bottom:191.927850px;}
.y234{bottom:193.730400px;}
.y1a6{bottom:195.151200px;}
.y10d{bottom:195.156600px;}
.y254{bottom:195.527850px;}
.y20d{bottom:196.203450px;}
.y1eb{bottom:196.954050px;}
.ye5{bottom:197.629200px;}
.y1c7{bottom:197.629950px;}
.y2e{bottom:198.752850px;}
.y63{bottom:198.753750px;}
.y9d{bottom:199.802550px;}
.y40{bottom:199.802700px;}
.y74{bottom:200.176200px;}
.y17d{bottom:200.178600px;}
.ybd{bottom:200.551500px;}
.y135{bottom:203.777700px;}
.y29f{bottom:204.515550px;}
.y279{bottom:205.202850px;}
.y1a5{bottom:207.751200px;}
.y10c{bottom:207.756600px;}
.y253{bottom:208.127850px;}
.y20c{bottom:209.178300px;}
.y1ea{bottom:209.928900px;}
.ye4{bottom:210.229050px;}
.y1c6{bottom:210.604800px;}
.y233{bottom:212.028900px;}
.y9c{bottom:212.777550px;}
.ybc{bottom:213.151350px;}
.y17c{bottom:213.153450px;}
.y73{bottom:213.526050px;}
.y3f{bottom:213.527550px;}
.y134{bottom:216.752700px;}
.y29e{bottom:217.115550px;}
.y278{bottom:217.802700px;}
.y10b{bottom:220.356450px;}
.y1a4{bottom:220.726050px;}
.y252{bottom:221.402700px;}
.y20b{bottom:222.153150px;}
.y1e9{bottom:222.528750px;}
.ye3{bottom:223.204050px;}
.y1c5{bottom:223.579800px;}
.y3e{bottom:225.377550px;}
.y72{bottom:225.751050px;}
.y9b{bottom:225.752400px;}
.y159{bottom:225.752550px;}
.y17b{bottom:225.753450px;}
.ybb{bottom:226.126350px;}
.y133{bottom:229.652700px;}
.y29d{bottom:230.765400px;}
.y277{bottom:230.777550px;}
.y232{bottom:231.528900px;}
.y1a3{bottom:233.326050px;}
.y10a{bottom:233.631450px;}
.y251{bottom:234.002700px;}
.y20a{bottom:234.753150px;}
.y1e8{bottom:235.128750px;}
.ye2{bottom:236.178900px;}
.y1c4{bottom:236.179650px;}
.y158{bottom:237.977400px;}
.y71{bottom:238.350900px;}
.y3d{bottom:238.352400px;}
.y17a{bottom:238.353300px;}
.yba{bottom:238.726200px;}
.y9a{bottom:238.727250px;}
.y132{bottom:242.627550px;}
.y29c{bottom:243.740400px;}
.y276{bottom:243.827400px;}
.y1a2{bottom:246.225900px;}
.y250{bottom:246.977700px;}
.y209{bottom:247.728000px;}
.y1e7{bottom:248.028600px;}
.ye1{bottom:248.778750px;}
.y1c3{bottom:249.154500px;}
.y70{bottom:250.950900px;}
.y3c{bottom:250.952400px;}
.y99{bottom:251.327250px;}
.y179{bottom:251.328300px;}
.yb9{bottom:251.626200px;}
.y131{bottom:255.602400px;}
.y29b{bottom:256.715250px;}
.y275{bottom:256.727400px;}
.y109{bottom:258.529950px;}
.y1a1{bottom:259.200900px;}
.y24f{bottom:259.577550px;}
.y157{bottom:261.002400px;}
.y1e6{bottom:261.003600px;}
.y208{bottom:261.378000px;}
.ye0{bottom:261.753750px;}
.y231{bottom:262.052400px;}
.y1c2{bottom:262.129500px;}
.y6f{bottom:263.175750px;}
.y3b{bottom:263.927250px;}
.yb8{bottom:264.226050px;}
.y98{bottom:264.227100px;}
.y178{bottom:264.228150px;}
.y130{bottom:268.202400px;}
.y29a{bottom:269.615250px;}
.y274{bottom:269.627400px;}
.y108{bottom:271.429950px;}
.y1a0{bottom:271.800750px;}
.y23{bottom:272.175750px;}
.y62{bottom:272.177250px;}
.y24e{bottom:272.177400px;}
.y207{bottom:273.227850px;}
.y1e5{bottom:273.603450px;}
.ydf{bottom:274.353600px;}
.y1c1{bottom:274.729350px;}
.y230{bottom:275.027400px;}
.y6e{bottom:276.150600px;}
.y3a{bottom:276.152100px;}
.y97{bottom:276.827100px;}
.y156{bottom:276.827400px;}
.y177{bottom:276.828150px;}
.yb7{bottom:277.201050px;}
.y12f{bottom:281.177250px;}
.y299{bottom:282.590250px;}
.y273{bottom:282.602250px;}
.y107{bottom:284.404800px;}
.y19f{bottom:284.775600px;}
.y2d{bottom:285.151350px;}
.y61{bottom:285.152100px;}
.y24d{bottom:285.152250px;}
.y206{bottom:285.827850px;}
.y1e4{bottom:286.203450px;}
.yde{bottom:287.328600px;}
.y1c0{bottom:287.629350px;}
.y22f{bottom:288.002400px;}
.y6d{bottom:289.425600px;}
.yb6{bottom:289.425900px;}
.y39{bottom:289.427100px;}
.y96{bottom:289.801950px;}
.y176{bottom:289.803000px;}
.y155{bottom:290.177250px;}
.y12e{bottom:294.152100px;}
.y298{bottom:295.565100px;}
.y272{bottom:295.652100px;}
.y106{bottom:297.004800px;}
.y19e{bottom:297.375600px;}
.y24c{bottom:297.827100px;}
.y205{bottom:298.802700px;}
.y1e3{bottom:299.178300px;}
.ydd{bottom:300.228450px;}
.y1bf{bottom:300.229200px;}
.y22e{bottom:300.602250px;}
.y6c{bottom:302.025450px;}
.y38{bottom:302.026950px;}
.yb5{bottom:302.400900px;}
.y175{bottom:302.402850px;}
.y95{bottom:302.776800px;}
.y154{bottom:302.777100px;}
.y12d{bottom:307.127100px;}
.y297{bottom:308.539950px;}
.y271{bottom:308.552100px;}
.y105{bottom:309.979650px;}
.y19d{bottom:310.350450px;}
.y24b{bottom:310.727100px;}
.y21{bottom:310.727250px;}
.y60{bottom:311.027100px;}
.y204{bottom:311.777550px;}
.y1e2{bottom:311.778150px;}
.ydc{bottom:312.528300px;}
.y22d{bottom:313.577250px;}
.y6b{bottom:315.000450px;}
.y37{bottom:315.001950px;}
.yb4{bottom:315.375900px;}
.y153{bottom:315.377100px;}
.y174{bottom:315.377850px;}
.y94{bottom:315.751800px;}
.y1be{bottom:318.604200px;}
.y12c{bottom:319.726950px;}
.y270{bottom:321.452100px;}
.y296{bottom:321.514800px;}
.y104{bottom:322.579650px;}
.y19c{bottom:322.950450px;}
.y20{bottom:323.327100px;}
.y5f{bottom:323.627100px;}
.y2c{bottom:324.001350px;}
.y203{bottom:324.752400px;}
.y1e1{bottom:324.753150px;}
.ydb{bottom:325.803300px;}
.y22c{bottom:326.177100px;}
.y6a{bottom:327.600300px;}
.y36{bottom:327.601800px;}
.yb3{bottom:327.975750px;}
.y93{bottom:328.351650px;}
.y152{bottom:328.351950px;}
.y1bd{bottom:331.579200px;}
.y12b{bottom:332.626950px;}
.y295{bottom:334.114800px;}
.y26f{bottom:334.426950px;}
.y103{bottom:335.554500px;}
.y19b{bottom:335.925300px;}
.y1f{bottom:335.926950px;}
.y2b{bottom:336.601200px;}
.y5e{bottom:336.601950px;}
.y202{bottom:337.352400px;}
.y22b{bottom:338.776950px;}
.yda{bottom:338.778150px;}
.yb2{bottom:340.575750px;}
.y92{bottom:340.951650px;}
.y151{bottom:340.951950px;}
.y173{bottom:341.327850px;}
.y1bc{bottom:344.554050px;}
.y12a{bottom:345.601800px;}
.y294{bottom:347.389650px;}
.y26e{bottom:347.401800px;}
.y102{bottom:348.154350px;}
.y1e{bottom:348.826950px;}
.y22{bottom:349.200750px;}
.y2a{bottom:349.576200px;}
.y5d{bottom:349.576950px;}
.y201{bottom:349.952400px;}
.yd9{bottom:351.378150px;}
.y22a{bottom:351.751950px;}
.yb1{bottom:353.550600px;}
.y150{bottom:353.926800px;}
.y91{bottom:354.226500px;}
.y172{bottom:354.602700px;}
.y1e0{bottom:354.976650px;}
.y1bb{bottom:357.153900px;}
.y129{bottom:358.576800px;}
.y26d{bottom:360.001800px;}
.y293{bottom:360.439500px;}
.y19a{bottom:361.125300px;}
.y101{bottom:361.129350px;}
.y1d{bottom:361.426800px;}
.y5c{bottom:362.176800px;}
.y29{bottom:362.551050px;}
.y200{bottom:363.227250px;}
.y229{bottom:364.351800px;}
.yd8{bottom:364.353000px;}
.yb0{bottom:365.775450px;}
.y14f{bottom:366.526650px;}
.y90{bottom:366.826500px;}
.y171{bottom:366.827700px;}
.y1df{bottom:367.576650px;}
.y1ba{bottom:370.428900px;}
.y128{bottom:371.551650px;}
.y292{bottom:373.339500px;}
.y26c{bottom:373.351650px;}
.y199{bottom:373.725150px;}
.y100{bottom:373.729200px;}
.y1c{bottom:374.026800px;}
.y5b{bottom:375.151650px;}
.y28{bottom:375.525900px;}
.y1ff{bottom:375.827250px;}
.yd7{bottom:376.953000px;}
.y228{bottom:377.326800px;}
.y170{bottom:379.127550px;}
.y8f{bottom:379.426350px;}
.y14e{bottom:379.426650px;}
.y69{bottom:380.175300px;}
.y35{bottom:380.176800px;}
.y1de{bottom:380.551500px;}
.y1b9{bottom:383.403750px;}
.y127{bottom:384.151650px;}
.y291{bottom:386.239500px;}
.y26b{bottom:386.326500px;}
.y6{bottom:386.626500px;}
.yff{bottom:386.629200px;}
.y198{bottom:387.000150px;}
.y1b{bottom:387.001650px;}
.y5a{bottom:387.751650px;}
.y27{bottom:388.125900px;}
.y68{bottom:389.175300px;}
.y34{bottom:389.551800px;}
.y227{bottom:389.926800px;}
.y14d{bottom:392.026650px;}
.y8e{bottom:392.401350px;}
.y16f{bottom:392.402550px;}
.y1dd{bottom:393.151500px;}
.yd6{bottom:395.626500px;}
.y1b8{bottom:395.628750px;}
.yaf{bottom:396.000450px;}
.y126{bottom:397.126500px;}
.y1fe{bottom:397.802250px;}
.y290{bottom:399.214350px;}
.y26a{bottom:399.226500px;}
.yfe{bottom:399.229050px;}
.y197{bottom:399.600000px;}
.y1a{bottom:399.976500px;}
.y24a{bottom:400.726500px;}
.y26{bottom:401.025900px;}
.y59{bottom:401.026650px;}
.y226{bottom:402.826650px;}
.y33{bottom:403.201650px;}
.y67{bottom:403.575150px;}
.y8d{bottom:404.326200px;}
.y14c{bottom:405.001500px;}
.y16e{bottom:405.377400px;}
.y1dc{bottom:406.126350px;}
.yae{bottom:407.550450px;}
.yd5{bottom:408.601350px;}
.y1b7{bottom:408.978600px;}
.y125{bottom:410.026500px;}
.y1fd{bottom:410.402100px;}
.y28f{bottom:412.189200px;}
.y269{bottom:412.201350px;}
.yfd{bottom:412.203900px;}
.y249{bottom:413.326350px;}
.y58{bottom:413.626500px;}
.y25{bottom:414.375750px;}
.y225{bottom:415.801650px;}
.y66{bottom:416.175150px;}
.y32{bottom:416.176650px;}
.y8c{bottom:417.601200px;}
.y14b{bottom:417.601350px;}
.y1db{bottom:418.726200px;}
.yad{bottom:420.525300px;}
.yd4{bottom:421.576200px;}
.y1b6{bottom:421.578450px;}
.y124{bottom:423.001350px;}
.y1fc{bottom:423.376950px;}
.y195{bottom:424.426500px;}
.y28e{bottom:425.164200px;}
.y268{bottom:425.176350px;}
.yfc{bottom:425.178900px;}
.y248{bottom:426.226350px;}
.y224{bottom:428.401500px;}
.y65{bottom:429.150000px;}
.y31{bottom:429.151500px;}
.y8b{bottom:430.576050px;}
.y14a{bottom:430.576200px;}
.y16d{bottom:431.627400px;}
.yac{bottom:433.125150px;}
.yd3{bottom:434.176200px;}
.y1b5{bottom:434.178450px;}
.y19{bottom:435.226500px;}
.y123{bottom:435.976200px;}
.y5{bottom:436.276500px;}
.y1fb{bottom:436.351800px;}
.y28d{bottom:437.764050px;}
.y194{bottom:437.776350px;}
.yfb{bottom:437.778750px;}
.y267{bottom:438.151200px;}
.y247{bottom:439.201200px;}
.y223{bottom:441.376350px;}
.y149{bottom:442.801200px;}
.y16c{bottom:443.177400px;}
.y8a{bottom:443.551050px;}
.yab{bottom:445.725000px;}
.y1da{bottom:446.026200px;}
.yd2{bottom:447.151050px;}
.y1b4{bottom:447.153300px;}
.y122{bottom:448.201050px;}
.y14{bottom:448.575750px;}
.y1fa{bottom:448.951650px;}
.y193{bottom:449.626200px;}
.yfa{bottom:450.003600px;}
.y28c{bottom:451.113900px;}
.y266{bottom:451.126050px;}
.y246{bottom:451.801200px;}
.y222{bottom:453.976200px;}
.y148{bottom:455.776050px;}
.y16b{bottom:456.152250px;}
.y89{bottom:456.225900px;}
.yaa{bottom:458.625000px;}
.y1d9{bottom:458.626050px;}
.yd1{bottom:459.375900px;}
.y1b3{bottom:459.378150px;}
.y121{bottom:461.551050px;}
.y13{bottom:461.850750px;}
.y1f9{bottom:461.926650px;}
.y192{bottom:462.601050px;}
.yf9{bottom:463.353450px;}
.y57{bottom:463.725000px;}
.y265{bottom:463.725900px;}
.y28b{bottom:464.388900px;}
.y245{bottom:464.401050px;}
.y221{bottom:466.951050px;}
.y147{bottom:468.750900px;}
.y88{bottom:469.125900px;}
.y16a{bottom:469.127100px;}
.y1d8{bottom:471.600900px;}
.yd0{bottom:472.350750px;}
.y1b2{bottom:472.353000px;}
.y120{bottom:474.525900px;}
.y12{bottom:474.825600px;}
.y191{bottom:474.826050px;}
.y1f8{bottom:474.826500px;}
.yf8{bottom:475.953300px;}
.y30{bottom:476.625000px;}
.y264{bottom:477.000900px;}
.y28a{bottom:477.513750px;}
.y244{bottom:477.750900px;}
.y4{bottom:479.475000px;}
.y3{bottom:479.476500px;}
.y220{bottom:479.551050px;}
.y18{bottom:479.551500px;}
.y146{bottom:481.350750px;}
.y87{bottom:482.025900px;}
.y169{bottom:482.027100px;}
.y1d7{bottom:484.575900px;}
.ycf{bottom:485.325600px;}
.ya9{bottom:486.750000px;}
.y11f{bottom:487.125750px;}
.y11{bottom:487.800600px;}
.y190{bottom:487.800900px;}
.y1b1{bottom:487.803000px;}
.yf7{bottom:488.928300px;}
.y56{bottom:489.600000px;}
.y55{bottom:489.600150px;}
.y263{bottom:489.975750px;}
.y289{bottom:490.413750px;}
.y243{bottom:490.425750px;}
.y21f{bottom:492.150900px;}
.y145{bottom:493.950600px;}
.y86{bottom:495.000750px;}
.y168{bottom:495.001950px;}
.y1d6{bottom:497.175750px;}
.y1f7{bottom:497.551500px;}
.yce{bottom:498.225600px;}
.y11e{bottom:500.025750px;}
.y10{bottom:500.400450px;}
.y18f{bottom:500.775750px;}
.yf6{bottom:501.528150px;}
.y54{bottom:502.575000px;}
.y262{bottom:502.950600px;}
.y288{bottom:503.313750px;}
.y242{bottom:503.325750px;}
.y21e{bottom:505.425900px;}
.y1b0{bottom:506.851500px;}
.y144{bottom:506.925600px;}
.y85{bottom:507.600600px;}
.y167{bottom:507.601800px;}
.y1d5{bottom:509.775600px;}
.ycd{bottom:511.200450px;}
.y11d{bottom:512.625600px;}
.yf{bottom:513.375300px;}
.y18e{bottom:513.750600px;}
.ya8{bottom:514.125000px;}
.yf5{bottom:514.428150px;}
.y53{bottom:515.550000px;}
.y52{bottom:515.550150px;}
.y287{bottom:516.213750px;}
.y261{bottom:516.225600px;}
.y241{bottom:516.225750px;}
.y21d{bottom:518.025750px;}
.y1f6{bottom:518.775000px;}
.y143{bottom:519.825450px;}
.y1af{bottom:519.826500px;}
.y84{bottom:520.575450px;}
.y166{bottom:520.576650px;}
.y2{bottom:523.426500px;}
.ycc{bottom:523.800450px;}
.y17{bottom:523.801500px;}
.y11c{bottom:525.600450px;}
.ye{bottom:526.350150px;}
.y18d{bottom:526.350450px;}
.yf4{bottom:527.028000px;}
.y51{bottom:528.825000px;}
.y260{bottom:528.825450px;}
.y286{bottom:529.188600px;}
.y240{bottom:529.200600px;}
.y21c{bottom:530.625600px;}
.y142{bottom:532.125450px;}
.y1ae{bottom:532.801500px;}
.y83{bottom:533.175450px;}
.y165{bottom:533.551650px;}
.ycb{bottom:536.775300px;}
.yd{bottom:538.575000px;}
.y11b{bottom:538.575300px;}
.y18c{bottom:538.950300px;}
.y50{bottom:541.125000px;}
.y1d4{bottom:541.425600px;}
.y285{bottom:541.788600px;}
.y25f{bottom:541.800450px;}
.y23f{bottom:541.800600px;}
.y21b{bottom:543.600450px;}
.y141{bottom:545.025450px;}
.y82{bottom:546.150300px;}
.yf3{bottom:547.576500px;}
.yca{bottom:549.750150px;}
.y4d{bottom:550.801500px;}
.y11a{bottom:551.175300px;}
.y4f{bottom:554.400000px;}
.y1d3{bottom:554.400450px;}
.y25e{bottom:554.775300px;}
.y23e{bottom:554.775450px;}
.y284{bottom:555.138450px;}
.y21a{bottom:556.575300px;}
.y140{bottom:558.000300px;}
.y164{bottom:558.750150px;}
.y81{bottom:559.125150px;}
.yf2{bottom:559.426500px;}
.y1ad{bottom:560.926500px;}
.yc9{bottom:562.725000px;}
.y18b{bottom:564.150300px;}
.y119{bottom:564.525150px;}
.yc{bottom:565.575000px;}
.y16{bottom:567.375000px;}
.y1d2{bottom:567.375300px;}
.y23d{bottom:567.750300px;}
.y283{bottom:568.113300px;}
.y25d{bottom:568.125150px;}
.ya7{bottom:568.800000px;}
.y219{bottom:569.550300px;}
.y13f{bottom:570.600150px;}
.y80{bottom:572.025150px;}
.y118{bottom:577.125000px;}
.y18a{bottom:578.175300px;}
.yf1{bottom:579.225000px;}
.y1d1{bottom:580.350150px;}
.yc8{bottom:580.725000px;}
.y25c{bottom:581.025150px;}
.y282{bottom:581.388300px;}
.y218{bottom:582.150150px;}
.y4c{bottom:582.525000px;}
.y13e{bottom:583.950000px;}
.y7f{bottom:585.000000px;}
.y1ac{bottom:586.125000px;}
.y163{bottom:586.125150px;}
.y4e{bottom:590.025000px;}
.y189{bottom:591.150150px;}
.y4b{bottom:591.525000px;}
.y24{bottom:591.525750px;}
.yb{bottom:593.250000px;}
.y1d0{bottom:593.325000px;}
.y25b{bottom:593.625000px;}
.y281{bottom:593.988150px;}
.yc7{bottom:594.750000px;}
.y217{bottom:595.125000px;}
.y13d{bottom:596.175000px;}
.y162{bottom:597.975000px;}
.y188{bottom:603.750000px;}
.ya5{bottom:605.175000px;}
.y117{bottom:610.200000px;}
.yf0{bottom:611.325000px;}
.y1f5{bottom:612.750000px;}
.ya6{bottom:613.425000px;}
.yef{bottom:614.550000px;}
.y25a{bottom:618.150000px;}
.y187{bottom:618.525000px;}
.y196{bottom:622.800000px;}
.y1ab{bottom:627.150000px;}
.ya{bottom:632.925000px;}
.y1{bottom:648.000000px;}
.y15{bottom:653.400000px;}
.h12{height:34.564453px;}
.h19{height:36.506836px;}
.h11{height:39.484863px;}
.h14{height:39.577148px;}
.hf{height:40.664062px;}
.h16{height:40.968750px;}
.h15{height:41.894531px;}
.h3{height:44.375977px;}
.h4{height:44.730469px;}
.h10{height:44.749512px;}
.h18{height:48.550781px;}
.h13{height:49.675781px;}
.h6{height:50.014160px;}
.h5{height:50.705283px;}
.he{height:52.646484px;}
.hc{height:54.817383px;}
.h9{height:55.278809px;}
.h7{height:60.688477px;}
.hd{height:73.142578px;}
.h17{height:73.705078px;}
.h2{height:103.448438px;}
.h8{height:116.648438px;}
.hb{height:664.500000px;}
.ha{height:664.575000px;}
.h1{height:688.500000px;}
.h0{height:688.650000px;}
.w4{width:443.850000px;}
.w5{width:444.000000px;}
.w3{width:453.750000px;}
.w2{width:453.975000px;}
.w1{width:465.750000px;}
.w0{width:465.825000px;}
.x0{left:0.000000px;}
.xa{left:21.975000px;}
.x21{left:24.825000px;}
.xb{left:28.050000px;}
.x20{left:35.610000px;}
.x1f{left:36.735000px;}
.x1e{left:37.785000px;}
.xd{left:38.850000px;}
.x2f{left:40.633350px;}
.x1a{left:42.150000px;}
.x48{left:46.050000px;}
.x65{left:47.173365px;}
.x49{left:48.223500px;}
.x4a{left:49.648500px;}
.x3c{left:51.142365px;}
.x39{left:52.200000px;}
.x1{left:54.000000px;}
.x1b{left:55.035000px;}
.x1d{left:57.585000px;}
.x30{left:58.645335px;}
.x4b{left:60.145485px;}
.x1c{left:61.560000px;}
.x67{left:62.608365px;}
.x4e{left:63.745320px;}
.x59{left:64.800000px;}
.x3a{left:66.225000px;}
.x5a{left:68.400000px;}
.x6e{left:71.999835px;}
.x3b{left:73.049850px;}
.x69{left:74.551500px;}
.x6a{left:75.601500px;}
.x8{left:77.403000px;}
.x63{left:78.824700px;}
.x62{left:79.949700px;}
.x5f{left:80.998500px;}
.x57{left:82.050000px;}
.x58{left:83.175000px;}
.x5e{left:84.212715px;}
.x50{left:85.346805px;}
.x19{left:87.448500px;}
.xe{left:88.948500px;}
.x42{left:90.765000px;}
.x43{left:91.813500px;}
.x7{left:92.851500px;}
.x44{left:94.363500px;}
.x61{left:97.574850px;}
.x28{left:98.639985px;}
.xc{left:100.425000px;}
.x27{left:101.851485px;}
.x2a{left:102.990120px;}
.x32{left:104.023365px;}
.x37{left:105.449865px;}
.x29{left:106.964985px;}
.x24{left:108.375000px;}
.x41{left:109.440000px;}
.x52{left:110.846415px;}
.x64{left:111.973365px;}
.x47{left:113.038350px;}
.x4c{left:114.145320px;}
.x4d{left:115.195320px;}
.x4f{left:116.620305px;}
.x26{left:119.850000px;}
.x5c{left:123.136215px;}
.x36{left:124.574865px;}
.x3{left:126.376500px;}
.x2b{left:127.815120px;}
.x23{left:133.950000px;}
.x5d{left:136.036215px;}
.x22{left:137.850000px;}
.x53{left:139.348500px;}
.x2c{left:141.164970px;}
.x3f{left:142.950000px;}
.x60{left:145.800000px;}
.x33{left:149.398365px;}
.x34{left:150.448365px;}
.x55{left:151.573365px;}
.x54{left:152.998350px;}
.x40{left:154.438500px;}
.x66{left:155.548365px;}
.x51{left:158.773500px;}
.x6{left:164.851500px;}
.x38{left:168.450000px;}
.x35{left:169.948365px;}
.x31{left:175.648350px;}
.x2e{left:194.775000px;}
.x68{left:196.200000px;}
.x5b{left:200.160000px;}
.x9{left:202.639350px;}
.x2{left:205.576500px;}
.x46{left:208.063500px;}
.x56{left:210.225000px;}
.x45{left:211.363500px;}
.x6b{left:234.751500px;}
.x25{left:236.533500px;}
.x3e{left:240.825000px;}
.x3d{left:244.790715px;}
.x2d{left:249.150000px;}
.x12{left:252.736500px;}
.x10{left:254.160000px;}
.xf{left:255.225000px;}
.x6d{left:262.423335px;}
.x6c{left:263.551485px;}
.x13{left:269.609985px;}
.x4{left:273.975000px;}
.x5{left:279.000000px;}
.x11{left:280.785000px;}
.x18{left:285.133650px;}
.x16{left:286.560000px;}
.x15{left:287.609985px;}
.x17{left:290.158350px;}
.x14{left:312.134985px;}
@media print{
.v2{vertical-align:-33.333333pt;}
.v1{vertical-align:-11.733333pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-5.333333pt;}
.ls4{letter-spacing:-2.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.810667pt;}
.ls0{letter-spacing:2.496000pt;}
.lsb{letter-spacing:2.799467pt;}
.ls5{letter-spacing:3.104000pt;}
.ls7{letter-spacing:3.120000pt;}
.lsc{letter-spacing:4.437333pt;}
.ls6{letter-spacing:5.333333pt;}
.lsa{letter-spacing:5.461333pt;}
.ls2{letter-spacing:13.333333pt;}
.wse{word-spacing:-85.909333pt;}
.ws2{word-spacing:-32.000000pt;}
.ws6{word-spacing:-30.957333pt;}
.ws13{word-spacing:-26.666667pt;}
.ws12{word-spacing:-25.504000pt;}
.ws5{word-spacing:-24.000000pt;}
.wsc{word-spacing:-22.666667pt;}
.ws14{word-spacing:-18.666667pt;}
.ws8{word-spacing:-16.919765pt;}
.wsf{word-spacing:-16.184000pt;}
.ws3{word-spacing:-14.000000pt;}
.ws7{word-spacing:-12.666667pt;}
.ws9{word-spacing:-11.333333pt;}
.wsa{word-spacing:-10.000000pt;}
.ws1{word-spacing:-9.293333pt;}
.ws11{word-spacing:-9.066667pt;}
.ws10{word-spacing:-8.000000pt;}
.wsd{word-spacing:-7.960000pt;}
.ws0{word-spacing:-1.328000pt;}
.ws4{word-spacing:0.000000pt;}
.wsb{word-spacing:512.464000pt;}
._4{margin-left:-28.522667pt;}
._2b{margin-left:-21.088000pt;}
._1c{margin-left:-19.515200pt;}
._1d{margin-left:-17.856000pt;}
._2e{margin-left:-15.749333pt;}
._20{margin-left:-11.957333pt;}
._19{margin-left:-10.373333pt;}
._18{margin-left:-9.450667pt;}
._2d{margin-left:-8.461333pt;}
._5{margin-left:-7.466667pt;}
._1f{margin-left:-6.306667pt;}
._14{margin-left:-5.320000pt;}
._16{margin-left:-3.800000pt;}
._15{margin-left:-2.634667pt;}
._2{margin-left:-1.621333pt;}
._6{width:1.586667pt;}
._1a{width:2.720000pt;}
._e{width:3.754667pt;}
._10{width:5.514667pt;}
._7{width:6.864000pt;}
._1b{width:8.013333pt;}
._a{width:8.976000pt;}
._9{width:10.325333pt;}
._d{width:11.616000pt;}
._c{width:12.965333pt;}
._22{width:14.034667pt;}
._25{width:15.042667pt;}
._21{width:16.037333pt;}
._24{width:17.010667pt;}
._13{width:17.986667pt;}
._26{width:19.000000pt;}
._12{width:20.165333pt;}
._1{width:21.178667pt;}
._0{width:22.394667pt;}
._27{width:23.824000pt;}
._32{width:25.666667pt;}
._28{width:26.576000pt;}
._2f{width:27.472000pt;}
._17{width:29.216000pt;}
._29{width:31.648000pt;}
._2a{width:36.328000pt;}
._30{width:39.002133pt;}
._23{width:40.229333pt;}
._36{width:42.458667pt;}
._34{width:44.357333pt;}
._b{width:45.877333pt;}
._39{width:46.802667pt;}
._38{width:47.925333pt;}
._11{width:49.338667pt;}
._8{width:56.085333pt;}
._2c{width:58.976000pt;}
._f{width:62.010667pt;}
._33{width:64.117333pt;}
._35{width:65.498667pt;}
._37{width:68.400000pt;}
._1e{width:82.741333pt;}
._31{width:138.952000pt;}
._3{width:779.109333pt;}
.fsb{font-size:32.000000pt;}
.fsf{font-size:34.666667pt;}
.fse{font-size:36.266667pt;}
.fsa{font-size:40.000000pt;}
.fs9{font-size:40.528000pt;}
.fs2{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs4{font-size:61.332991pt;}
.fsc{font-size:64.000000pt;}
.fsd{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:96.000000pt;}
.fs1{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y2a9{bottom:46.393467pt;}
.y2a8{bottom:57.593333pt;}
.y7e{bottom:65.934667pt;}
.y4a{bottom:65.936000pt;}
.y13c{bottom:67.205200pt;}
.y2f{bottom:68.202533pt;}
.y64{bottom:68.203333pt;}
.y2a7{bottom:69.460000pt;}
.y116{bottom:71.073067pt;}
.y216{bottom:71.670133pt;}
.yee{bottom:72.337467pt;}
.y1f4{bottom:73.004000pt;}
.y161{bottom:74.872000pt;}
.y186{bottom:75.203600pt;}
.y23c{bottom:75.539600pt;}
.y7d{bottom:75.868000pt;}
.yc6{bottom:75.868267pt;}
.y49{bottom:75.869333pt;}
.y9{bottom:78.082667pt;}
.y2a6{bottom:80.993333pt;}
.y115{bottom:82.606267pt;}
.y215{bottom:83.203333pt;}
.yed{bottom:84.204000pt;}
.y1f3{bottom:84.470533pt;}
.y1cf{bottom:84.471333pt;}
.ya4{bottom:86.402533pt;}
.y185{bottom:86.403600pt;}
.y7c{bottom:87.068000pt;}
.y48{bottom:87.069333pt;}
.y23b{bottom:87.072933pt;}
.yc5{bottom:87.401600pt;}
.y13b{bottom:87.405200pt;}
.y160{bottom:88.670667pt;}
.y114{bottom:94.072933pt;}
.y214{bottom:95.070000pt;}
.y1f2{bottom:95.670400pt;}
.yec{bottom:95.670533pt;}
.y1ce{bottom:95.671200pt;}
.y259{bottom:96.666667pt;}
.ya3{bottom:97.602533pt;}
.y184{bottom:98.270267pt;}
.y7b{bottom:98.601333pt;}
.yc4{bottom:98.601600pt;}
.y47{bottom:98.602667pt;}
.y13a{bottom:98.871733pt;}
.y15f{bottom:99.204000pt;}
.y280{bottom:101.469467pt;}
.y23a{bottom:103.671600pt;}
.y113{bottom:105.006133pt;}
.y213{bottom:105.936667pt;}
.y8{bottom:106.548000pt;}
.y1f1{bottom:107.203733pt;}
.yeb{bottom:107.203867pt;}
.y1cd{bottom:107.204533pt;}
.ya2{bottom:109.469200pt;}
.y183{bottom:109.470133pt;}
.y7a{bottom:109.801333pt;}
.y46{bottom:109.802667pt;}
.yc3{bottom:110.068133pt;}
.y139{bottom:110.405067pt;}
.y15e{bottom:110.737333pt;}
.y2a5{bottom:112.725333pt;}
.y27f{bottom:113.002667pt;}
.y239{bottom:115.204933pt;}
.y112{bottom:115.872800pt;}
.y212{bottom:117.536533pt;}
.y1f0{bottom:118.403733pt;}
.yea{bottom:118.737200pt;}
.y1cc{bottom:118.737867pt;}
.ya1{bottom:120.669067pt;}
.y182{bottom:120.670000pt;}
.y79{bottom:121.001200pt;}
.y45{bottom:121.002533pt;}
.yc2{bottom:121.268133pt;}
.y138{bottom:121.605067pt;}
.y7{bottom:123.814667pt;}
.y2a4{bottom:124.191867pt;}
.y27e{bottom:124.802667pt;}
.y1aa{bottom:126.734667pt;}
.y238{bottom:126.738267pt;}
.y111{bottom:127.672667pt;}
.y258{bottom:128.336000pt;}
.y211{bottom:129.003200pt;}
.y1ef{bottom:129.937067pt;}
.ye9{bottom:129.937200pt;}
.y1cb{bottom:130.271200pt;}
.ya0{bottom:131.535733pt;}
.y15d{bottom:132.202667pt;}
.y181{bottom:132.203333pt;}
.y78{bottom:132.467867pt;}
.y44{bottom:132.469200pt;}
.yc1{bottom:132.801467pt;}
.y2a3{bottom:135.658400pt;}
.y27d{bottom:136.002533pt;}
.y237{bottom:137.938267pt;}
.y110{bottom:139.206000pt;}
.y1a9{bottom:139.534533pt;}
.y257{bottom:139.536000pt;}
.y210{bottom:140.469867pt;}
.y1ee{bottom:141.137067pt;}
.y137{bottom:141.138400pt;}
.ye8{bottom:141.470533pt;}
.y1ca{bottom:141.804533pt;}
.y9f{bottom:143.402400pt;}
.y180{bottom:143.403333pt;}
.y77{bottom:143.667733pt;}
.y43{bottom:143.669067pt;}
.y15c{bottom:144.002533pt;}
.yc0{bottom:144.668000pt;}
.y2a2{bottom:147.191733pt;}
.y27c{bottom:147.869200pt;}
.y236{bottom:149.471600pt;}
.y1a8{bottom:150.401200pt;}
.y10f{bottom:150.406000pt;}
.y256{bottom:151.069333pt;}
.y20f{bottom:151.669733pt;}
.y1ed{bottom:152.336933pt;}
.ye7{bottom:152.737067pt;}
.y1c9{bottom:153.004400pt;}
.y15b{bottom:154.269200pt;}
.y76{bottom:154.867733pt;}
.y42{bottom:155.202400pt;}
.ybf{bottom:155.534667pt;}
.y17f{bottom:156.470000pt;}
.y2a1{bottom:158.725067pt;}
.y27b{bottom:159.402533pt;}
.y136{bottom:159.403733pt;}
.y235{bottom:160.671467pt;}
.y10e{bottom:161.939333pt;}
.y1a7{bottom:162.267867pt;}
.y255{bottom:162.269333pt;}
.y20e{bottom:163.203067pt;}
.y1ec{bottom:163.870267pt;}
.ye6{bottom:164.203733pt;}
.y1c8{bottom:164.471067pt;}
.y9e{bottom:165.135733pt;}
.y15a{bottom:165.135867pt;}
.y17e{bottom:166.069867pt;}
.ybe{bottom:166.401333pt;}
.y75{bottom:166.734400pt;}
.y41{bottom:166.735733pt;}
.y2a0{bottom:170.258400pt;}
.y27a{bottom:170.602533pt;}
.y234{bottom:172.204800pt;}
.y1a6{bottom:173.467733pt;}
.y10d{bottom:173.472533pt;}
.y254{bottom:173.802533pt;}
.y20d{bottom:174.403067pt;}
.y1eb{bottom:175.070267pt;}
.ye5{bottom:175.670400pt;}
.y1c7{bottom:175.671067pt;}
.y2e{bottom:176.669200pt;}
.y63{bottom:176.670000pt;}
.y9d{bottom:177.602267pt;}
.y40{bottom:177.602400pt;}
.y74{bottom:177.934400pt;}
.y17d{bottom:177.936533pt;}
.ybd{bottom:178.268000pt;}
.y135{bottom:181.135733pt;}
.y29f{bottom:181.791600pt;}
.y279{bottom:182.402533pt;}
.y1a5{bottom:184.667733pt;}
.y10c{bottom:184.672533pt;}
.y253{bottom:185.002533pt;}
.y20c{bottom:185.936267pt;}
.y1ea{bottom:186.603467pt;}
.ye4{bottom:186.870267pt;}
.y1c6{bottom:187.204267pt;}
.y233{bottom:188.470133pt;}
.y9c{bottom:189.135600pt;}
.ybc{bottom:189.467867pt;}
.y17c{bottom:189.469733pt;}
.y73{bottom:189.800933pt;}
.y3f{bottom:189.802267pt;}
.y134{bottom:192.669067pt;}
.y29e{bottom:192.991600pt;}
.y278{bottom:193.602400pt;}
.y10b{bottom:195.872400pt;}
.y1a4{bottom:196.200933pt;}
.y252{bottom:196.802400pt;}
.y20b{bottom:197.469467pt;}
.y1e9{bottom:197.803333pt;}
.ye3{bottom:198.403600pt;}
.y1c5{bottom:198.737600pt;}
.y3e{bottom:200.335600pt;}
.y72{bottom:200.667600pt;}
.y9b{bottom:200.668800pt;}
.y159{bottom:200.668933pt;}
.y17b{bottom:200.669733pt;}
.ybb{bottom:201.001200pt;}
.y133{bottom:204.135733pt;}
.y29d{bottom:205.124800pt;}
.y277{bottom:205.135600pt;}
.y232{bottom:205.803467pt;}
.y1a3{bottom:207.400933pt;}
.y10a{bottom:207.672400pt;}
.y251{bottom:208.002400pt;}
.y20a{bottom:208.669467pt;}
.y1e8{bottom:209.003333pt;}
.ye2{bottom:209.936800pt;}
.y1c4{bottom:209.937467pt;}
.y158{bottom:211.535467pt;}
.y71{bottom:211.867467pt;}
.y3d{bottom:211.868800pt;}
.y17a{bottom:211.869600pt;}
.yba{bottom:212.201067pt;}
.y9a{bottom:212.202000pt;}
.y132{bottom:215.668933pt;}
.y29c{bottom:216.658133pt;}
.y276{bottom:216.735467pt;}
.y1a2{bottom:218.867467pt;}
.y250{bottom:219.535733pt;}
.y209{bottom:220.202667pt;}
.y1e7{bottom:220.469867pt;}
.ye1{bottom:221.136667pt;}
.y1c3{bottom:221.470667pt;}
.y70{bottom:223.067467pt;}
.y3c{bottom:223.068800pt;}
.y99{bottom:223.402000pt;}
.y179{bottom:223.402933pt;}
.yb9{bottom:223.667733pt;}
.y131{bottom:227.202133pt;}
.y29b{bottom:228.191333pt;}
.y275{bottom:228.202133pt;}
.y109{bottom:229.804400pt;}
.y1a1{bottom:230.400800pt;}
.y24f{bottom:230.735600pt;}
.y157{bottom:232.002133pt;}
.y1e6{bottom:232.003200pt;}
.y208{bottom:232.336000pt;}
.ye0{bottom:232.670000pt;}
.y231{bottom:232.935467pt;}
.y1c2{bottom:233.004000pt;}
.y6f{bottom:233.934000pt;}
.y3b{bottom:234.602000pt;}
.yb8{bottom:234.867600pt;}
.y98{bottom:234.868533pt;}
.y178{bottom:234.869467pt;}
.y130{bottom:238.402133pt;}
.y29a{bottom:239.658000pt;}
.y274{bottom:239.668800pt;}
.y108{bottom:241.271067pt;}
.y1a0{bottom:241.600667pt;}
.y23{bottom:241.934000pt;}
.y62{bottom:241.935333pt;}
.y24e{bottom:241.935467pt;}
.y207{bottom:242.869200pt;}
.y1e5{bottom:243.203067pt;}
.ydf{bottom:243.869867pt;}
.y1c1{bottom:244.203867pt;}
.y230{bottom:244.468800pt;}
.y6e{bottom:245.467200pt;}
.y3a{bottom:245.468533pt;}
.y97{bottom:246.068533pt;}
.y156{bottom:246.068800pt;}
.y177{bottom:246.069467pt;}
.yb7{bottom:246.400933pt;}
.y12f{bottom:249.935333pt;}
.y299{bottom:251.191333pt;}
.y273{bottom:251.202000pt;}
.y107{bottom:252.804267pt;}
.y19f{bottom:253.133867pt;}
.y2d{bottom:253.467867pt;}
.y61{bottom:253.468533pt;}
.y24d{bottom:253.468667pt;}
.y206{bottom:254.069200pt;}
.y1e4{bottom:254.403067pt;}
.yde{bottom:255.403200pt;}
.y1c0{bottom:255.670533pt;}
.y22f{bottom:256.002133pt;}
.y6d{bottom:257.267200pt;}
.yb6{bottom:257.267467pt;}
.y39{bottom:257.268533pt;}
.y96{bottom:257.601733pt;}
.y176{bottom:257.602667pt;}
.y155{bottom:257.935333pt;}
.y12e{bottom:261.468533pt;}
.y298{bottom:262.724533pt;}
.y272{bottom:262.801867pt;}
.y106{bottom:264.004267pt;}
.y19e{bottom:264.333867pt;}
.y24c{bottom:264.735200pt;}
.y205{bottom:265.602400pt;}
.y1e3{bottom:265.936267pt;}
.ydd{bottom:266.869733pt;}
.y1bf{bottom:266.870400pt;}
.y22e{bottom:267.202000pt;}
.y6c{bottom:268.467067pt;}
.y38{bottom:268.468400pt;}
.yb5{bottom:268.800800pt;}
.y175{bottom:268.802533pt;}
.y95{bottom:269.134933pt;}
.y154{bottom:269.135200pt;}
.y12d{bottom:273.001867pt;}
.y297{bottom:274.257733pt;}
.y271{bottom:274.268533pt;}
.y105{bottom:275.537467pt;}
.y19d{bottom:275.867067pt;}
.y24b{bottom:276.201867pt;}
.y21{bottom:276.202000pt;}
.y60{bottom:276.468533pt;}
.y204{bottom:277.135600pt;}
.y1e2{bottom:277.136133pt;}
.ydc{bottom:277.802933pt;}
.y22d{bottom:278.735333pt;}
.y6b{bottom:280.000400pt;}
.y37{bottom:280.001733pt;}
.yb4{bottom:280.334133pt;}
.y153{bottom:280.335200pt;}
.y174{bottom:280.335867pt;}
.y94{bottom:280.668267pt;}
.y1be{bottom:283.203733pt;}
.y12c{bottom:284.201733pt;}
.y270{bottom:285.735200pt;}
.y296{bottom:285.790933pt;}
.y104{bottom:286.737467pt;}
.y19c{bottom:287.067067pt;}
.y20{bottom:287.401867pt;}
.y5f{bottom:287.668533pt;}
.y2c{bottom:288.001200pt;}
.y203{bottom:288.668800pt;}
.y1e1{bottom:288.669467pt;}
.ydb{bottom:289.602933pt;}
.y22c{bottom:289.935200pt;}
.y6a{bottom:291.200267pt;}
.y36{bottom:291.201600pt;}
.yb3{bottom:291.534000pt;}
.y93{bottom:291.868133pt;}
.y152{bottom:291.868400pt;}
.y1bd{bottom:294.737067pt;}
.y12b{bottom:295.668400pt;}
.y295{bottom:296.990933pt;}
.y26f{bottom:297.268400pt;}
.y103{bottom:298.270667pt;}
.y19b{bottom:298.600267pt;}
.y1f{bottom:298.601733pt;}
.y2b{bottom:299.201067pt;}
.y5e{bottom:299.201733pt;}
.y202{bottom:299.868800pt;}
.y22b{bottom:301.135067pt;}
.yda{bottom:301.136133pt;}
.yb2{bottom:302.734000pt;}
.y92{bottom:303.068133pt;}
.y151{bottom:303.068400pt;}
.y173{bottom:303.402533pt;}
.y1bc{bottom:306.270267pt;}
.y12a{bottom:307.201600pt;}
.y294{bottom:308.790800pt;}
.y26e{bottom:308.801600pt;}
.y102{bottom:309.470533pt;}
.y1e{bottom:310.068400pt;}
.y22{bottom:310.400667pt;}
.y2a{bottom:310.734400pt;}
.y5d{bottom:310.735067pt;}
.y201{bottom:311.068800pt;}
.yd9{bottom:312.336133pt;}
.y22a{bottom:312.668400pt;}
.yb1{bottom:314.267200pt;}
.y150{bottom:314.601600pt;}
.y91{bottom:314.868000pt;}
.y172{bottom:315.202400pt;}
.y1e0{bottom:315.534800pt;}
.y1bb{bottom:317.470133pt;}
.y129{bottom:318.734933pt;}
.y26d{bottom:320.001600pt;}
.y293{bottom:320.390667pt;}
.y19a{bottom:321.000267pt;}
.y101{bottom:321.003867pt;}
.y1d{bottom:321.268267pt;}
.y5c{bottom:321.934933pt;}
.y29{bottom:322.267600pt;}
.y200{bottom:322.868667pt;}
.y229{bottom:323.868267pt;}
.yd8{bottom:323.869333pt;}
.yb0{bottom:325.133733pt;}
.y14f{bottom:325.801467pt;}
.y90{bottom:326.068000pt;}
.y171{bottom:326.069067pt;}
.y1df{bottom:326.734800pt;}
.y1ba{bottom:329.270133pt;}
.y128{bottom:330.268133pt;}
.y292{bottom:331.857333pt;}
.y26c{bottom:331.868133pt;}
.y199{bottom:332.200133pt;}
.y100{bottom:332.203733pt;}
.y1c{bottom:332.468267pt;}
.y5b{bottom:333.468133pt;}
.y28{bottom:333.800800pt;}
.y1ff{bottom:334.068667pt;}
.yd7{bottom:335.069333pt;}
.y228{bottom:335.401600pt;}
.y170{bottom:337.002267pt;}
.y8f{bottom:337.267867pt;}
.y14e{bottom:337.268133pt;}
.y69{bottom:337.933600pt;}
.y35{bottom:337.934933pt;}
.y1de{bottom:338.268000pt;}
.y1b9{bottom:340.803333pt;}
.y127{bottom:341.468133pt;}
.y291{bottom:343.324000pt;}
.y26b{bottom:343.401333pt;}
.y6{bottom:343.668000pt;}
.yff{bottom:343.670400pt;}
.y198{bottom:344.000133pt;}
.y1b{bottom:344.001467pt;}
.y5a{bottom:344.668133pt;}
.y27{bottom:345.000800pt;}
.y68{bottom:345.933600pt;}
.y34{bottom:346.268267pt;}
.y227{bottom:346.601600pt;}
.y14d{bottom:348.468133pt;}
.y8e{bottom:348.801200pt;}
.y16f{bottom:348.802267pt;}
.y1dd{bottom:349.468000pt;}
.yd6{bottom:351.668000pt;}
.y1b8{bottom:351.670000pt;}
.yaf{bottom:352.000400pt;}
.y126{bottom:353.001333pt;}
.y1fe{bottom:353.602000pt;}
.y290{bottom:354.857200pt;}
.y26a{bottom:354.868000pt;}
.yfe{bottom:354.870267pt;}
.y197{bottom:355.200000pt;}
.y1a{bottom:355.534667pt;}
.y24a{bottom:356.201333pt;}
.y26{bottom:356.467467pt;}
.y59{bottom:356.468133pt;}
.y226{bottom:358.068133pt;}
.y33{bottom:358.401467pt;}
.y67{bottom:358.733467pt;}
.y8d{bottom:359.401067pt;}
.y14c{bottom:360.001333pt;}
.y16e{bottom:360.335467pt;}
.y1dc{bottom:361.001200pt;}
.yae{bottom:362.267067pt;}
.yd5{bottom:363.201200pt;}
.y1b7{bottom:363.536533pt;}
.y125{bottom:364.468000pt;}
.y1fd{bottom:364.801867pt;}
.y28f{bottom:366.390400pt;}
.y269{bottom:366.401200pt;}
.yfd{bottom:366.403467pt;}
.y249{bottom:367.401200pt;}
.y58{bottom:367.668000pt;}
.y25{bottom:368.334000pt;}
.y225{bottom:369.601467pt;}
.y66{bottom:369.933467pt;}
.y32{bottom:369.934800pt;}
.y8c{bottom:371.201067pt;}
.y14b{bottom:371.201200pt;}
.y1db{bottom:372.201067pt;}
.yad{bottom:373.800267pt;}
.yd4{bottom:374.734400pt;}
.y1b6{bottom:374.736400pt;}
.y124{bottom:376.001200pt;}
.y1fc{bottom:376.335067pt;}
.y195{bottom:377.268000pt;}
.y28e{bottom:377.923733pt;}
.y268{bottom:377.934533pt;}
.yfc{bottom:377.936800pt;}
.y248{bottom:378.867867pt;}
.y224{bottom:380.801333pt;}
.y65{bottom:381.466667pt;}
.y31{bottom:381.468000pt;}
.y8b{bottom:382.734267pt;}
.y14a{bottom:382.734400pt;}
.y16d{bottom:383.668800pt;}
.yac{bottom:385.000133pt;}
.yd3{bottom:385.934400pt;}
.y1b5{bottom:385.936400pt;}
.y19{bottom:386.868000pt;}
.y123{bottom:387.534400pt;}
.y5{bottom:387.801333pt;}
.y1fb{bottom:387.868267pt;}
.y28d{bottom:389.123600pt;}
.y194{bottom:389.134533pt;}
.yfb{bottom:389.136667pt;}
.y267{bottom:389.467733pt;}
.y247{bottom:390.401067pt;}
.y223{bottom:392.334533pt;}
.y149{bottom:393.601067pt;}
.y16c{bottom:393.935467pt;}
.y8a{bottom:394.267600pt;}
.yab{bottom:396.200000pt;}
.y1da{bottom:396.467733pt;}
.yd2{bottom:397.467600pt;}
.y1b4{bottom:397.469600pt;}
.y122{bottom:398.400933pt;}
.y14{bottom:398.734000pt;}
.y1fa{bottom:399.068133pt;}
.y193{bottom:399.667733pt;}
.yfa{bottom:400.003200pt;}
.y28c{bottom:400.990133pt;}
.y266{bottom:401.000933pt;}
.y246{bottom:401.601067pt;}
.y222{bottom:403.534400pt;}
.y148{bottom:405.134267pt;}
.y16b{bottom:405.468667pt;}
.y89{bottom:405.534133pt;}
.yaa{bottom:407.666667pt;}
.y1d9{bottom:407.667600pt;}
.yd1{bottom:408.334133pt;}
.y1b3{bottom:408.336133pt;}
.y121{bottom:410.267600pt;}
.y13{bottom:410.534000pt;}
.y1f9{bottom:410.601467pt;}
.y192{bottom:411.200933pt;}
.yf9{bottom:411.869733pt;}
.y57{bottom:412.200000pt;}
.y265{bottom:412.200800pt;}
.y28b{bottom:412.790133pt;}
.y245{bottom:412.800933pt;}
.y221{bottom:415.067600pt;}
.y147{bottom:416.667467pt;}
.y88{bottom:417.000800pt;}
.y16a{bottom:417.001867pt;}
.y1d8{bottom:419.200800pt;}
.yd0{bottom:419.867333pt;}
.y1b2{bottom:419.869333pt;}
.y120{bottom:421.800800pt;}
.y12{bottom:422.067200pt;}
.y191{bottom:422.067600pt;}
.y1f8{bottom:422.068000pt;}
.yf8{bottom:423.069600pt;}
.y30{bottom:423.666667pt;}
.y264{bottom:424.000800pt;}
.y28a{bottom:424.456667pt;}
.y244{bottom:424.667467pt;}
.y4{bottom:426.200000pt;}
.y3{bottom:426.201333pt;}
.y220{bottom:426.267600pt;}
.y18{bottom:426.268000pt;}
.y146{bottom:427.867333pt;}
.y87{bottom:428.467467pt;}
.y169{bottom:428.468533pt;}
.y1d7{bottom:430.734133pt;}
.ycf{bottom:431.400533pt;}
.ya9{bottom:432.666667pt;}
.y11f{bottom:433.000667pt;}
.y11{bottom:433.600533pt;}
.y190{bottom:433.600800pt;}
.y1b1{bottom:433.602667pt;}
.yf7{bottom:434.602933pt;}
.y56{bottom:435.200000pt;}
.y55{bottom:435.200133pt;}
.y263{bottom:435.534000pt;}
.y289{bottom:435.923333pt;}
.y243{bottom:435.934000pt;}
.y21f{bottom:437.467467pt;}
.y145{bottom:439.067200pt;}
.y86{bottom:440.000667pt;}
.y168{bottom:440.001733pt;}
.y1d6{bottom:441.934000pt;}
.y1f7{bottom:442.268000pt;}
.yce{bottom:442.867200pt;}
.y11e{bottom:444.467333pt;}
.y10{bottom:444.800400pt;}
.y18f{bottom:445.134000pt;}
.yf6{bottom:445.802800pt;}
.y54{bottom:446.733333pt;}
.y262{bottom:447.067200pt;}
.y288{bottom:447.390000pt;}
.y242{bottom:447.400667pt;}
.y21e{bottom:449.267467pt;}
.y1b0{bottom:450.534667pt;}
.y144{bottom:450.600533pt;}
.y85{bottom:451.200533pt;}
.y167{bottom:451.201600pt;}
.y1d5{bottom:453.133867pt;}
.ycd{bottom:454.400400pt;}
.y11d{bottom:455.667200pt;}
.yf{bottom:456.333600pt;}
.y18e{bottom:456.667200pt;}
.ya8{bottom:457.000000pt;}
.yf5{bottom:457.269467pt;}
.y53{bottom:458.266667pt;}
.y52{bottom:458.266800pt;}
.y287{bottom:458.856667pt;}
.y261{bottom:458.867200pt;}
.y241{bottom:458.867333pt;}
.y21d{bottom:460.467333pt;}
.y1f6{bottom:461.133333pt;}
.y143{bottom:462.067067pt;}
.y1af{bottom:462.068000pt;}
.y84{bottom:462.733733pt;}
.y166{bottom:462.734800pt;}
.y2{bottom:465.268000pt;}
.ycc{bottom:465.600400pt;}
.y17{bottom:465.601333pt;}
.y11c{bottom:467.200400pt;}
.ye{bottom:467.866800pt;}
.y18d{bottom:467.867067pt;}
.yf4{bottom:468.469333pt;}
.y51{bottom:470.066667pt;}
.y260{bottom:470.067067pt;}
.y286{bottom:470.389867pt;}
.y240{bottom:470.400533pt;}
.y21c{bottom:471.667200pt;}
.y142{bottom:473.000400pt;}
.y1ae{bottom:473.601333pt;}
.y83{bottom:473.933733pt;}
.y165{bottom:474.268133pt;}
.ycb{bottom:477.133600pt;}
.yd{bottom:478.733333pt;}
.y11b{bottom:478.733600pt;}
.y18c{bottom:479.066933pt;}
.y50{bottom:481.000000pt;}
.y1d4{bottom:481.267200pt;}
.y285{bottom:481.589867pt;}
.y25f{bottom:481.600400pt;}
.y23f{bottom:481.600533pt;}
.y21b{bottom:483.200400pt;}
.y141{bottom:484.467067pt;}
.y82{bottom:485.466933pt;}
.yf3{bottom:486.734667pt;}
.yca{bottom:488.666800pt;}
.y4d{bottom:489.601333pt;}
.y11a{bottom:489.933600pt;}
.y4f{bottom:492.800000pt;}
.y1d3{bottom:492.800400pt;}
.y25e{bottom:493.133600pt;}
.y23e{bottom:493.133733pt;}
.y284{bottom:493.456400pt;}
.y21a{bottom:494.733600pt;}
.y140{bottom:496.000267pt;}
.y164{bottom:496.666800pt;}
.y81{bottom:497.000133pt;}
.yf2{bottom:497.268000pt;}
.y1ad{bottom:498.601333pt;}
.yc9{bottom:500.200000pt;}
.y18b{bottom:501.466933pt;}
.y119{bottom:501.800133pt;}
.yc{bottom:502.733333pt;}
.y16{bottom:504.333333pt;}
.y1d2{bottom:504.333600pt;}
.y23d{bottom:504.666933pt;}
.y283{bottom:504.989600pt;}
.y25d{bottom:505.000133pt;}
.ya7{bottom:505.600000pt;}
.y219{bottom:506.266933pt;}
.y13f{bottom:507.200133pt;}
.y80{bottom:508.466800pt;}
.y118{bottom:513.000000pt;}
.y18a{bottom:513.933600pt;}
.yf1{bottom:514.866667pt;}
.y1d1{bottom:515.866800pt;}
.yc8{bottom:516.200000pt;}
.y25c{bottom:516.466800pt;}
.y282{bottom:516.789600pt;}
.y218{bottom:517.466800pt;}
.y4c{bottom:517.800000pt;}
.y13e{bottom:519.066667pt;}
.y7f{bottom:520.000000pt;}
.y1ac{bottom:521.000000pt;}
.y163{bottom:521.000133pt;}
.y4e{bottom:524.466667pt;}
.y189{bottom:525.466800pt;}
.y4b{bottom:525.800000pt;}
.y24{bottom:525.800667pt;}
.yb{bottom:527.333333pt;}
.y1d0{bottom:527.400000pt;}
.y25b{bottom:527.666667pt;}
.y281{bottom:527.989467pt;}
.yc7{bottom:528.666667pt;}
.y217{bottom:529.000000pt;}
.y13d{bottom:529.933333pt;}
.y162{bottom:531.533333pt;}
.y188{bottom:536.666667pt;}
.ya5{bottom:537.933333pt;}
.y117{bottom:542.400000pt;}
.yf0{bottom:543.400000pt;}
.y1f5{bottom:544.666667pt;}
.ya6{bottom:545.266667pt;}
.yef{bottom:546.266667pt;}
.y25a{bottom:549.466667pt;}
.y187{bottom:549.800000pt;}
.y196{bottom:553.600000pt;}
.y1ab{bottom:557.466667pt;}
.ya{bottom:562.600000pt;}
.y1{bottom:576.000000pt;}
.y15{bottom:580.800000pt;}
.h12{height:30.723958pt;}
.h19{height:32.450521pt;}
.h11{height:35.097656pt;}
.h14{height:35.179688pt;}
.hf{height:36.145833pt;}
.h16{height:36.416667pt;}
.h15{height:37.239583pt;}
.h3{height:39.445312pt;}
.h4{height:39.760417pt;}
.h10{height:39.777344pt;}
.h18{height:43.156250pt;}
.h13{height:44.156250pt;}
.h6{height:44.457031pt;}
.h5{height:45.071363pt;}
.he{height:46.796875pt;}
.hc{height:48.726562pt;}
.h9{height:49.136719pt;}
.h7{height:53.945312pt;}
.hd{height:65.015625pt;}
.h17{height:65.515625pt;}
.h2{height:91.954167pt;}
.h8{height:103.687500pt;}
.hb{height:590.666667pt;}
.ha{height:590.733333pt;}
.h1{height:612.000000pt;}
.h0{height:612.133333pt;}
.w4{width:394.533333pt;}
.w5{width:394.666667pt;}
.w3{width:403.333333pt;}
.w2{width:403.533333pt;}
.w1{width:414.000000pt;}
.w0{width:414.066667pt;}
.x0{left:0.000000pt;}
.xa{left:19.533333pt;}
.x21{left:22.066667pt;}
.xb{left:24.933333pt;}
.x20{left:31.653333pt;}
.x1f{left:32.653333pt;}
.x1e{left:33.586667pt;}
.xd{left:34.533333pt;}
.x2f{left:36.118533pt;}
.x1a{left:37.466667pt;}
.x48{left:40.933333pt;}
.x65{left:41.931880pt;}
.x49{left:42.865333pt;}
.x4a{left:44.132000pt;}
.x3c{left:45.459880pt;}
.x39{left:46.400000pt;}
.x1{left:48.000000pt;}
.x1b{left:48.920000pt;}
.x1d{left:51.186667pt;}
.x30{left:52.129187pt;}
.x4b{left:53.462653pt;}
.x1c{left:54.720000pt;}
.x67{left:55.651880pt;}
.x4e{left:56.662507pt;}
.x59{left:57.600000pt;}
.x3a{left:58.866667pt;}
.x5a{left:60.800000pt;}
.x6e{left:63.999853pt;}
.x3b{left:64.933200pt;}
.x69{left:66.268000pt;}
.x6a{left:67.201333pt;}
.x8{left:68.802667pt;}
.x63{left:70.066400pt;}
.x62{left:71.066400pt;}
.x5f{left:71.998667pt;}
.x57{left:72.933333pt;}
.x58{left:73.933333pt;}
.x5e{left:74.855747pt;}
.x50{left:75.863827pt;}
.x19{left:77.732000pt;}
.xe{left:79.065333pt;}
.x42{left:80.680000pt;}
.x43{left:81.612000pt;}
.x7{left:82.534667pt;}
.x44{left:83.878667pt;}
.x61{left:86.733200pt;}
.x28{left:87.679987pt;}
.xc{left:89.266667pt;}
.x27{left:90.534653pt;}
.x2a{left:91.546773pt;}
.x32{left:92.465213pt;}
.x37{left:93.733213pt;}
.x29{left:95.079987pt;}
.x24{left:96.333333pt;}
.x41{left:97.280000pt;}
.x52{left:98.530147pt;}
.x64{left:99.531880pt;}
.x47{left:100.478533pt;}
.x4c{left:101.462507pt;}
.x4d{left:102.395840pt;}
.x4f{left:103.662493pt;}
.x26{left:106.533333pt;}
.x5c{left:109.454413pt;}
.x36{left:110.733213pt;}
.x3{left:112.334667pt;}
.x2b{left:113.613440pt;}
.x23{left:119.066667pt;}
.x5d{left:120.921080pt;}
.x22{left:122.533333pt;}
.x53{left:123.865333pt;}
.x2c{left:125.479973pt;}
.x3f{left:127.066667pt;}
.x60{left:129.600000pt;}
.x33{left:132.798547pt;}
.x34{left:133.731880pt;}
.x55{left:134.731880pt;}
.x54{left:135.998533pt;}
.x40{left:137.278667pt;}
.x66{left:138.265213pt;}
.x51{left:141.132000pt;}
.x6{left:146.534667pt;}
.x38{left:149.733333pt;}
.x35{left:151.065213pt;}
.x31{left:156.131867pt;}
.x2e{left:173.133333pt;}
.x68{left:174.400000pt;}
.x5b{left:177.920000pt;}
.x9{left:180.123867pt;}
.x2{left:182.734667pt;}
.x46{left:184.945333pt;}
.x56{left:186.866667pt;}
.x45{left:187.878667pt;}
.x6b{left:208.668000pt;}
.x25{left:210.252000pt;}
.x3e{left:214.066667pt;}
.x3d{left:217.591747pt;}
.x2d{left:221.466667pt;}
.x12{left:224.654667pt;}
.x10{left:225.920000pt;}
.xf{left:226.866667pt;}
.x6d{left:233.265187pt;}
.x6c{left:234.267987pt;}
.x13{left:239.653320pt;}
.x4{left:243.533333pt;}
.x5{left:248.000000pt;}
.x11{left:249.586667pt;}
.x18{left:253.452133pt;}
.x16{left:254.720000pt;}
.x15{left:255.653320pt;}
.x17{left:257.918533pt;}
.x14{left:277.453320pt;}
}




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