
    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_d9eb186880b5c60b263c0fbf.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;font-style:normal;font-weight: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_7a63a4668acb6a4c44c22e30.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_6b66ec51ad0c971317dd3e95.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3467db90e808c500b90deb39.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0e693bdf1cef64a594a9ce1f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fb5abf1c4318fbb3872e2e24.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9946a080c8f47aa7d62c6240.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1a20d0c14e76b709ea9ea5ee.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5fd6bc1014957f5453c240c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;font-style:normal;font-weight: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_2f32bb0d1e371cbc3e0d15a8.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8795af63e12913f26be4db40.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_638ce042fdc7d6bdbe13ef0b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104004;font-style:normal;font-weight: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_b75c75980d967e9b2a548823.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1995bdffdde3699464211f15.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.104004;font-style:normal;font-weight: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_125ed4fe42de1d1cb76c70a8.woff2')format("woff");}.fff{font-family:fff;line-height:0.692383;font-style:normal;font-weight: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_a9cec9ee29f4ae7584b9af43.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_aa61596fa9bc1670cbb67489.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.104004;font-style:normal;font-weight: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_976f64980d0e4e0be5718157.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c5498464c37c63c6609050ad.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_5117817c0c784ed8fce10104.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_b2f71a01c054c95be5c1bf2c.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_369e65beeb9320c9fd59fe38.woff2')format("woff");}.ff16{font-family:ff16;line-height:1000.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_c5498464c37c63c6609050ad.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_e797818ca65c57d2c705e0c6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.100000;font-style:normal;font-weight: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_8bdc3d880bf1813ad6a58ef4.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.297000;font-style:normal;font-weight: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_64001fdd61b22649cf03576e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.208857;font-style:normal;font-weight: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_303b89db8a65e88b5bc85b3f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.154785;font-style:normal;font-weight: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_4a247eef8cfc19ffc721d472.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_b4715b8a5648407030ca3590.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_48ffa46a6708b5b5ba554a14.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_70f6fef1f0fd42de2648a914.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.104004;font-style:normal;font-weight: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_bada2f61cee76efae31982a0.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_64c506000efbda2c86616423.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_f2076ba93393065a1e95788b.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.104004;font-style:normal;font-weight: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_d5b34cc638fce8cbf7a88d1c.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_0670e359ea55b727730d03f2.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_d550740764d21b9a914649b2.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.104004;font-style:normal;font-weight: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_da28eefe24509cc292c84dfd.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_df8b1b75e199b96f425a8412.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_ebdfa38680b35271e98db543.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.104004;font-style:normal;font-weight: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_9ef3e51163d8d77ec08760b7.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_0670e359ea55b727730d03f2.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_fbd976c1e9847eedcbe5e493.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_bd694dc3a3abf534ef1c6903.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.104004;font-style:normal;font-weight: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_14c965146e7c10e6a572944c.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_4ce9148e22e4eb7ef80470cc.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.104004;font-style:normal;font-weight: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_ff99054b34a376d1148e7092.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_6903bab2e77a36e5c68d7a88.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_1db4ecd9223ca22fe2489b2a.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.104004;font-style:normal;font-weight: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_d5b34cc638fce8cbf7a88d1c.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_0670e359ea55b727730d03f2.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_780ad3609fb9e3171ecbfdc2.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.104004;font-style:normal;font-weight: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_761de2b9488bfbb7540d648b.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_27cc778da00bb294635ebe6f.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_eaddf52304b0c4adeba8323a.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.104004;font-style:normal;font-weight: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_1a20d0c14e76b709ea9ea5ee.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_1ea439725754c2d397a3d712.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_8714bd8bed5353e95a3eaf41.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_5fbd7f72a4d093314344375c.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_1a20d0c14e76b709ea9ea5ee.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_a6406670fa90309f2707098d.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_91843b7b587ad10561cbb014.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_1a20d0c14e76b709ea9ea5ee.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_05866d78a01226c7531d282d.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.104004;font-style:normal;font-weight: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_b0acb5bf37ac53cfc5e9c93a.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_cae7bcadb65d1c0cd6594dd4.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.104004;font-style:normal;font-weight: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_c9e2852a5f22044ab4c1caa0.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_30c2b952de2434ca5582762a.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_47f2fbc72799f55285ba4fb4.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_9b47530ab185bc6ea945672d.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_5eb023eecaa2da9ee938e385.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;}
@font-face{font-family:ff48;src:url('chunks/assets/font_201a829d62b4d17210c00cfc.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_2655c5fc177256d18114a58d.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_d038651e4751973720ab0e03.woff2')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_a491d1c4469b63735b9e7ccb.woff2')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_c6942077d52dfe21c42ee37a.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_90153046e18d8a712566b90a.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.220993,0.000000,-0.046974,0.245547,0,0);-ms-transform:matrix(0.220993,0.000000,-0.046974,0.245547,0,0);-webkit-transform:matrix(0.220993,0.000000,-0.046974,0.245547,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.232801,0.000000,-0.049483,0.245054,0,0);-ms-transform:matrix(0.232801,0.000000,-0.049483,0.245054,0,0);-webkit-transform:matrix(0.232801,0.000000,-0.049483,0.245054,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-ms-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);-webkit-transform:matrix(0.244161,0.000000,-0.053715,0.244161,0,0);}
.m3{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,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);}
.v4{vertical-align:-30.002400px;}
.v9{vertical-align:-24.001200px;}
.v5{vertical-align:-19.800000px;}
.v14{vertical-align:-17.821800px;}
.v1{vertical-align:-15.840000px;}
.v6{vertical-align:-12.000600px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:10.199400px;}
.vb{vertical-align:12.000000px;}
.vf{vertical-align:15.000000px;}
.v8{vertical-align:16.200000px;}
.v13{vertical-align:17.820000px;}
.v2{vertical-align:19.799400px;}
.v3{vertical-align:30.000240px;}
.v12{vertical-align:34.500000px;}
.v7{vertical-align:36.000600px;}
.v11{vertical-align:37.500000px;}
.vc{vertical-align:45.000000px;}
.v10{vertical-align:52.500000px;}
.ve{vertical-align:54.000000px;}
.vd{vertical-align:90.000000px;}
.ls39{letter-spacing:-15.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls4a{letter-spacing:0.000667px;}
.ls22{letter-spacing:0.002400px;}
.ls17{letter-spacing:0.003000px;}
.ls50{letter-spacing:0.003067px;}
.ls11{letter-spacing:0.009000px;}
.ls8{letter-spacing:0.009600px;}
.lse{letter-spacing:0.010200px;}
.lsf{letter-spacing:0.010800px;}
.ls42{letter-spacing:0.011400px;}
.ls4{letter-spacing:0.019200px;}
.ls1a{letter-spacing:0.024600px;}
.ls24{letter-spacing:0.066600px;}
.ls52{letter-spacing:0.300000px;}
.ls2f{letter-spacing:0.659063px;}
.ls6{letter-spacing:2.997600px;}
.lsc{letter-spacing:2.998200px;}
.ls2c{letter-spacing:5.460000px;}
.ls7{letter-spacing:5.997000px;}
.lsd{letter-spacing:6.896400px;}
.ls4c{letter-spacing:13.194600px;}
.ls4d{letter-spacing:13.200000px;}
.ls16{letter-spacing:14.586600px;}
.ls20{letter-spacing:14.884200px;}
.ls45{letter-spacing:14.906400px;}
.ls44{letter-spacing:14.907000px;}
.ls1b{letter-spacing:15.199200px;}
.ls1c{letter-spacing:15.199800px;}
.ls12{letter-spacing:15.939000px;}
.ls15{letter-spacing:16.150800px;}
.ls26{letter-spacing:16.272000px;}
.ls23{letter-spacing:16.485000px;}
.ls9{letter-spacing:16.492800px;}
.ls5{letter-spacing:16.493400px;}
.lsa{letter-spacing:16.500000px;}
.ls3{letter-spacing:16.600800px;}
.ls14{letter-spacing:16.716000px;}
.ls13{letter-spacing:16.718400px;}
.ls21{letter-spacing:16.798200px;}
.ls18{letter-spacing:16.929600px;}
.ls1e{letter-spacing:17.135400px;}
.ls1d{letter-spacing:17.589000px;}
.ls10{letter-spacing:17.843400px;}
.ls1f{letter-spacing:18.848400px;}
.ls3d{letter-spacing:21.000000px;}
.ls19{letter-spacing:21.220800px;}
.ls41{letter-spacing:21.261600px;}
.ls0{letter-spacing:24.000000px;}
.ls3c{letter-spacing:26.154375px;}
.ls33{letter-spacing:26.605313px;}
.ls34{letter-spacing:27.645938px;}
.ls3e{letter-spacing:37.980000px;}
.ls37{letter-spacing:45.648750px;}
.ls38{letter-spacing:51.649688px;}
.ls36{letter-spacing:55.500000px;}
.ls30{letter-spacing:58.860000px;}
.ls2d{letter-spacing:60.060000px;}
.ls3a{letter-spacing:64.020000px;}
.ls3b{letter-spacing:69.652500px;}
.ls29{letter-spacing:69.960000px;}
.ls3f{letter-spacing:76.609250px;}
.ls31{letter-spacing:80.370938px;}
.ls32{letter-spacing:94.107188px;}
.ls28{letter-spacing:97.980000px;}
.ls40{letter-spacing:108.862543px;}
.ls2e{letter-spacing:114.480000px;}
.ls27{letter-spacing:116.640000px;}
.ls2b{letter-spacing:152.460000px;}
.ls2a{letter-spacing:164.460000px;}
.ls46{letter-spacing:220.636421px;}
.ls35{letter-spacing:241.560000px;}
.ls51{letter-spacing:295.772133px;}
.ls48{letter-spacing:307.874133px;}
.ls47{letter-spacing:322.771467px;}
.ls4e{letter-spacing:334.874800px;}
.ls4f{letter-spacing:436.730800px;}
.ls49{letter-spacing:463.731467px;}
.ls4b{letter-spacing:529.402800px;}
.ls43{letter-spacing:1450.060800px;}
.ls25{letter-spacing:1554.067800px;}
.lsb{letter-spacing:1669.481400px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws20{word-spacing:-94.141875px;}
.ws1d{word-spacing:-65.040000px;}
.ws19{word-spacing:-60.000000px;}
.ws1a{word-spacing:-55.560000px;}
.ws32{word-spacing:-51.984000px;}
.ws36{word-spacing:-43.320000px;}
.ws23{word-spacing:-36.000000px;}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.000000px;}
.wsf{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.375000px;}
.ws2d{word-spacing:-12.000000px;}
.ws16{word-spacing:-10.500000px;}
.ws25{word-spacing:-9.450000px;}
.ws1b{word-spacing:-9.330938px;}
.ws2c{word-spacing:-8.400000px;}
.wsa{word-spacing:-1.417200px;}
.wsb{word-spacing:-0.323400px;}
.ws9{word-spacing:-0.318600px;}
.ws17{word-spacing:-0.060000px;}
.ws11{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws37{word-spacing:0.671760px;}
.ws1c{word-spacing:1.170937px;}
.ws5{word-spacing:1.198890px;}
.ws8{word-spacing:1.236600px;}
.ws34{word-spacing:1.350000px;}
.ws35{word-spacing:1.350540px;}
.ws33{word-spacing:1.351080px;}
.ws4{word-spacing:3.052170px;}
.ws31{word-spacing:3.356400px;}
.ws7{word-spacing:3.930795px;}
.ws18{word-spacing:4.164000px;}
.ws1e{word-spacing:7.080000px;}
.ws22{word-spacing:19.216875px;}
.ws13{word-spacing:22.105440px;}
.ws21{word-spacing:31.843125px;}
.ws15{word-spacing:77.824800px;}
.ws14{word-spacing:88.894800px;}
.wse{word-spacing:96.513120px;}
.ws12{word-spacing:121.857480px;}
.wsc{word-spacing:121.858020px;}
.ws26{word-spacing:167.922720px;}
.ws29{word-spacing:169.430400px;}
.ws30{word-spacing:169.882380px;}
.ws27{word-spacing:169.882920px;}
.ws28{word-spacing:169.884000px;}
.ws1f{word-spacing:192.550312px;}
.ws10{word-spacing:354.693600px;}
.wsd{word-spacing:374.610960px;}
.ws38{word-spacing:415.612200px;}
.ws2e{word-spacing:439.266000px;}
.ws2a{word-spacing:466.265333px;}
.ws24{word-spacing:485.544780px;}
.ws2f{word-spacing:497.426400px;}
.ws2b{word-spacing:501.876000px;}
._6d{margin-left:-515.940000px;}
._74{margin-left:-253.500000px;}
._73{margin-left:-67.501875px;}
._71{margin-left:-66.000000px;}
._6f{margin-left:-32.024520px;}
._70{margin-left:-25.020000px;}
._75{margin-left:-23.040000px;}
._6a{margin-left:-20.521920px;}
._97{margin-left:-18.192000px;}
._6b{margin-left:-12.813600px;}
._92{margin-left:-3.023460px;}
._2{margin-left:-1.907820px;}
._1{width:1.008840px;}
._0{width:2.044560px;}
._3{width:3.194580px;}
._7{width:4.468620px;}
._8{width:5.614260px;}
._b{width:7.163340px;}
._9{width:8.317200px;}
._f{width:9.385200px;}
._6c{width:10.437600px;}
._a{width:12.324000px;}
._76{width:13.776000px;}
._4{width:15.115560px;}
._6{width:16.680600px;}
._5{width:18.555420px;}
._77{width:19.590900px;}
._d{width:21.595140px;}
._e{width:24.294000px;}
._95{width:25.573920px;}
._6e{width:36.000000px;}
._2b{width:41.245200px;}
._1e{width:53.747160px;}
._54{width:56.441100px;}
._51{width:60.869340px;}
._96{width:66.048000px;}
._84{width:67.480080px;}
._61{width:74.062920px;}
._52{width:77.024520px;}
._53{width:79.801440px;}
._55{width:81.968220px;}
._8b{width:88.615920px;}
._1a{width:90.284520px;}
._63{width:96.651120px;}
._2a{width:99.194520px;}
._62{width:102.179040px;}
._69{width:103.346940px;}
._38{width:109.308360px;}
._5d{width:112.729020px;}
._45{width:113.822820px;}
._60{width:115.022700px;}
._56{width:117.678180px;}
._50{width:119.257380px;}
._40{width:121.213680px;}
._23{width:123.514200px;}
._5c{width:124.730700px;}
._65{width:127.164600px;}
._57{width:135.990360px;}
._18{width:137.224800px;}
._58{width:140.596800px;}
._59{width:141.692760px;}
._1b{width:143.781360px;}
._33{width:145.134960px;}
._12{width:146.453940px;}
._28{width:152.656560px;}
._20{width:156.597300px;}
._3e{width:160.256760px;}
._31{width:166.484040px;}
._36{width:167.708760px;}
._1d{width:170.096220px;}
._13{width:173.701680px;}
._21{width:178.327680px;}
._44{width:183.597300px;}
._2e{width:185.733960px;}
._32{width:194.204520px;}
._22{width:197.100000px;}
._41{width:204.817200px;}
._3d{width:208.207680px;}
._2c{width:209.715360px;}
._3b{width:212.636760px;}
._64{width:214.110000px;}
._7f{width:215.145720px;}
._5f{width:217.128600px;}
._5e{width:220.152600px;}
._7a{width:223.313880px;}
._26{width:224.727360px;}
._5b{width:226.103940px;}
._16{width:227.252520px;}
._35{width:228.474180px;}
._68{width:232.200000px;}
._30{width:233.696760px;}
._81{width:236.812260px;}
._79{width:241.073820px;}
._78{width:242.332353px;}
._5a{width:244.139940px;}
._42{width:245.289060px;}
._67{width:247.109400px;}
._66{width:250.128000px;}
._4e{width:251.790540px;}
._7d{width:254.958660px;}
._88{width:259.001460px;}
._4d{width:261.337140px;}
._4f{width:262.472280px;}
._8a{width:265.078860px;}
._80{width:266.590860px;}
._91{width:268.097247px;}
._72{width:271.980000px;}
._90{width:276.564240px;}
._46{width:281.253600px;}
._39{width:287.247600px;}
._83{width:292.078860px;}
._49{width:299.235060px;}
._89{width:300.538620px;}
._86{width:304.066860px;}
._7e{width:314.542860px;}
._82{width:316.055400px;}
._3a{width:319.398300px;}
._43{width:322.789140px;}
._48{width:326.235600px;}
._3f{width:328.620600px;}
._87{width:331.067400px;}
._14{width:332.121060px;}
._37{width:350.212140px;}
._8e{width:360.587700px;}
._94{width:366.581160px;}
._4c{width:374.188140px;}
._47{width:382.279440px;}
._25{width:388.108800px;}
._34{width:391.920120px;}
._8d{width:393.573600px;}
._2f{width:397.130280px;}
._8f{width:405.569700px;}
._2d{width:418.082280px;}
._4b{width:420.775080px;}
._7c{width:432.570240px;}
._93{width:447.528240px;}
._c{width:449.118480px;}
._8c{width:456.548400px;}
._85{width:474.528780px;}
._27{width:481.875840px;}
._7b{width:536.912280px;}
._17{width:559.131060px;}
._10{width:578.599740px;}
._11{width:580.335840px;}
._4a{width:609.847140px;}
._15{width:720.790980px;}
._19{width:747.604140px;}
._29{width:762.695520px;}
._3c{width:795.609300px;}
._1f{width:1012.216500px;}
._1c{width:1115.735040px;}
._24{width:1142.694000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:33.600000px;}
.fsd{font-size:34.687500px;}
.fs10{font-size:37.800000px;}
.fs12{font-size:38.485455px;}
.fs8{font-size:42.000000px;}
.fsc{font-size:42.938310px;}
.fs5{font-size:48.000000px;}
.fs11{font-size:49.072358px;}
.fs6{font-size:49.500000px;}
.fs2{font-size:54.000000px;}
.fsf{font-size:55.089933px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:61.340441px;}
.fse{font-size:61.434844px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs9{font-size:120.000000px;}
.fsb{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:7.564650px;}
.yd1{bottom:8.689650px;}
.yc5{bottom:9.814650px;}
.ycc{bottom:9.814767px;}
.yc9{bottom:9.815002px;}
.yc2{bottom:10.939650px;}
.ybf{bottom:12.064655px;}
.yb8{bottom:13.189650px;}
.yb6{bottom:13.189690px;}
.ybb{bottom:13.189713px;}
.yd0{bottom:13.564650px;}
.ybd{bottom:15.814650px;}
.yb4{bottom:16.939650px;}
.yd3{bottom:18.064650px;}
.yc7{bottom:19.189650px;}
.yce{bottom:20.314673px;}
.yc4{bottom:20.689650px;}
.yc0{bottom:22.564643px;}
.yca{bottom:22.939650px;}
.yb9{bottom:24.439650px;}
.yd2{bottom:26.314650px;}
.yc3{bottom:26.689650px;}
.yd6{bottom:27.439650px;}
.yc6{bottom:27.814650px;}
.ybe{bottom:28.189650px;}
.ycb{bottom:35.314416px;}
.yb5{bottom:35.689650px;}
.yba{bottom:35.689673px;}
.yb7{bottom:37.939650px;}
.ycf{bottom:39.064650px;}
.yb3{bottom:39.439650px;}
.yc1{bottom:40.189650px;}
.yd4{bottom:40.939650px;}
.ybc{bottom:41.314650px;}
.ycd{bottom:45.814322px;}
.y14f{bottom:95.527350px;}
.y73{bottom:95.710800px;}
.y1b4{bottom:95.730600px;}
.y20{bottom:96.133050px;}
.y1d8{bottom:96.133650px;}
.yc8{bottom:97.810350px;}
.yaa{bottom:97.810500px;}
.y5b{bottom:97.810650px;}
.y4e{bottom:97.810800px;}
.yfe{bottom:97.861050px;}
.y126{bottom:97.920300px;}
.y163{bottom:98.568150px;}
.y18b{bottom:100.351950px;}
.y123{bottom:100.810800px;}
.y245{bottom:102.859620px;}
.y223{bottom:102.862590px;}
.y1fd{bottom:106.082265px;}
.y25a{bottom:107.965590px;}
.y14e{bottom:110.527200px;}
.ya9{bottom:111.010500px;}
.y1f{bottom:111.133050px;}
.y1d7{bottom:111.394050px;}
.y72{bottom:112.210800px;}
.y125{bottom:112.920150px;}
.y1b3{bottom:113.880600px;}
.y18a{bottom:115.351800px;}
.y9b{bottom:115.800900px;}
.ya8{bottom:115.960500px;}
.y5a{bottom:115.960650px;}
.y4d{bottom:115.960800px;}
.y14d{bottom:115.960950px;}
.yfd{bottom:116.011050px;}
.y162{bottom:116.718150px;}
.y189{bottom:117.460950px;}
.y122{bottom:118.960800px;}
.y244{bottom:121.009020px;}
.y222{bottom:121.011990px;}
.y1fc{bottom:124.231665px;}
.y259{bottom:126.116340px;}
.y71{bottom:128.710800px;}
.y1e{bottom:130.093050px;}
.y1b2{bottom:132.030600px;}
.y1d6{bottom:133.032450px;}
.ya7{bottom:134.110500px;}
.y59{bottom:134.110650px;}
.y4c{bottom:134.110800px;}
.y14c{bottom:134.110950px;}
.yfc{bottom:134.161050px;}
.y9a{bottom:134.548920px;}
.y161{bottom:134.868150px;}
.y188{bottom:135.610950px;}
.y121{bottom:137.110800px;}
.y243{bottom:139.159770px;}
.y221{bottom:144.264390px;}
.y70{bottom:145.210800px;}
.y1fb{bottom:147.484065px;}
.y1d5{bottom:148.292850px;}
.y258{bottom:149.368740px;}
.y1b1{bottom:150.180600px;}
.y58{bottom:152.260650px;}
.y4b{bottom:152.260800px;}
.y14b{bottom:152.260950px;}
.yfb{bottom:152.311050px;}
.y160{bottom:153.018150px;}
.y99{bottom:153.299070px;}
.y187{bottom:153.760950px;}
.y120{bottom:155.260800px;}
.y6f{bottom:161.710800px;}
.y242{bottom:162.412170px;}
.y1d{bottom:165.257400px;}
.y1fa{bottom:165.634815px;}
.y220{bottom:167.516790px;}
.y257{bottom:167.518140px;}
.y1b0{bottom:168.330600px;}
.y57{bottom:170.410650px;}
.y4a{bottom:170.410800px;}
.y14a{bottom:170.410950px;}
.yfa{bottom:170.461050px;}
.y15f{bottom:171.168150px;}
.y186{bottom:171.910950px;}
.y98{bottom:172.049220px;}
.y6e{bottom:178.210800px;}
.y1d4{bottom:180.313650px;}
.y241{bottom:180.561570px;}
.y1c{bottom:183.407400px;}
.y11f{bottom:184.450800px;}
.y21f{bottom:185.667540px;}
.y11e{bottom:188.410950px;}
.y56{bottom:188.560650px;}
.y49{bottom:188.560800px;}
.y1f9{bottom:188.887215px;}
.y15e{bottom:189.318150px;}
.y185{bottom:190.060950px;}
.y256{bottom:190.770540px;}
.y97{bottom:190.799370px;}
.y11d{bottom:192.370950px;}
.y6d{bottom:194.710800px;}
.y149{bottom:202.750950px;}
.y11c{bottom:203.410950px;}
.y240{bottom:203.813970px;}
.y1af{bottom:204.630600px;}
.y55{bottom:206.710650px;}
.y48{bottom:206.710800px;}
.y148{bottom:206.710950px;}
.yf9{bottom:206.761050px;}
.y1f8{bottom:207.036615px;}
.y15d{bottom:207.468150px;}
.y184{bottom:208.210950px;}
.y21e{bottom:208.919940px;}
.y96{bottom:209.549520px;}
.y147{bottom:210.670950px;}
.y6c{bottom:211.210800px;}
.y11b{bottom:218.410950px;}
.y1b{bottom:219.707250px;}
.yb1{bottom:219.910650px;}
.y146{bottom:221.710950px;}
.y23f{bottom:221.964720px;}
.y1ae{bottom:222.780600px;}
.y54{bottom:224.860650px;}
.y47{bottom:224.860800px;}
.yf8{bottom:224.911050px;}
.y15c{bottom:225.618150px;}
.y6b{bottom:227.710800px;}
.y95{bottom:228.299670px;}
.y1f7{bottom:230.289015px;}
.y21d{bottom:232.172340px;}
.y1d3{bottom:233.890650px;}
.y145{bottom:236.710950px;}
.y183{bottom:240.550950px;}
.y1ad{bottom:240.930600px;}
.y11a{bottom:242.410950px;}
.ya6{bottom:243.010650px;}
.y46{bottom:243.010800px;}
.yf7{bottom:243.061050px;}
.y15b{bottom:243.768150px;}
.y6a{bottom:244.210800px;}
.y182{bottom:244.510950px;}
.y23e{bottom:245.217120px;}
.y94{bottom:247.049820px;}
.y1f6{bottom:248.438415px;}
.y181{bottom:248.470950px;}
.y21c{bottom:250.321740px;}
.y1d2{bottom:252.301650px;}
.yb0{bottom:256.210650px;}
.y119{bottom:257.455395px;}
.y1ac{bottom:259.080600px;}
.y180{bottom:259.510950px;}
.y69{bottom:260.710800px;}
.y144{bottom:260.710950px;}
.y53{bottom:261.160650px;}
.y45{bottom:261.160800px;}
.yf6{bottom:261.211050px;}
.y118{bottom:261.910950px;}
.y15a{bottom:261.918150px;}
.y23d{bottom:263.366520px;}
.y93{bottom:265.799970px;}
.y1f5{bottom:266.587815px;}
.y21b{bottom:268.471140px;}
.y1a{bottom:269.509740px;}
.y1d1{bottom:270.712650px;}
.y255{bottom:273.574140px;}
.y17f{bottom:274.510950px;}
.y68{bottom:275.710560px;}
.y143{bottom:275.755800px;}
.y1ab{bottom:277.230600px;}
.ya5{bottom:279.310650px;}
.y44{bottom:279.310800px;}
.yf5{bottom:279.361050px;}
.y117{bottom:279.911250px;}
.y142{bottom:280.210950px;}
.y92{bottom:284.550120px;}
.y23c{bottom:286.618920px;}
.y1d0{bottom:289.123650px;}
.y1f4{bottom:289.840215px;}
.y21a{bottom:291.723540px;}
.y67{bottom:292.210800px;}
.y141{bottom:293.755545px;}
.y1aa{bottom:295.380600px;}
.y116{bottom:296.410950px;}
.y52{bottom:297.460650px;}
.y43{bottom:297.460800px;}
.y140{bottom:298.211400px;}
.y159{bottom:298.218150px;}
.y17e{bottom:298.510950px;}
.y19{bottom:301.159140px;}
.y91{bottom:303.300270px;}
.y23b{bottom:304.769670px;}
.y66{bottom:307.210560px;}
.y1cf{bottom:307.534650px;}
.y1f3{bottom:307.990965px;}
.y219{bottom:309.872940px;}
.y1a9{bottom:313.530600px;}
.y17d{bottom:313.555545px;}
.y115{bottom:314.410950px;}
.y254{bottom:314.975940px;}
.ya4{bottom:315.610650px;}
.y42{bottom:315.610800px;}
.yf4{bottom:315.661050px;}
.y13f{bottom:316.211250px;}
.y18{bottom:316.308840px;}
.y158{bottom:316.368150px;}
.y17c{bottom:318.010950px;}
.y90{bottom:322.050420px;}
.y65{bottom:323.710800px;}
.y1ce{bottom:325.945650px;}
.y23a{bottom:328.022070px;}
.y1f2{bottom:331.243365px;}
.y1a8{bottom:331.680600px;}
.y114{bottom:332.410950px;}
.y13e{bottom:332.710950px;}
.y218{bottom:333.125340px;}
.ya3{bottom:333.760650px;}
.y5c{bottom:333.760800px;}
.yf3{bottom:333.811050px;}
.y157{bottom:334.518150px;}
.y17b{bottom:337.511550px;}
.y64{bottom:338.710560px;}
.y8f{bottom:340.800570px;}
.y1cd{bottom:344.356650px;}
.y17{bottom:346.608240px;}
.ya2{bottom:346.960650px;}
.y1f1{bottom:349.394115px;}
.y1a7{bottom:349.830600px;}
.y113{bottom:350.410950px;}
.y13d{bottom:350.710950px;}
.y239{bottom:351.274470px;}
.y217{bottom:351.274740px;}
.ya1{bottom:351.910650px;}
.y41{bottom:351.910800px;}
.yf2{bottom:351.961050px;}
.y156{bottom:352.668150px;}
.y63{bottom:355.210800px;}
.y17a{bottom:357.010950px;}
.y8e{bottom:359.550720px;}
.y16{bottom:361.757940px;}
.y1cc{bottom:362.767650px;}
.y1a6{bottom:367.980600px;}
.y112{bottom:368.410950px;}
.y13c{bottom:368.710950px;}
.y238{bottom:369.423870px;}
.yaf{bottom:370.060650px;}
.y40{bottom:370.060800px;}
.yf1{bottom:370.111050px;}
.y62{bottom:370.210560px;}
.y155{bottom:370.818150px;}
.y1f0{bottom:372.646515px;}
.y216{bottom:374.527140px;}
.y179{bottom:376.510950px;}
.y15{bottom:376.907640px;}
.y8d{bottom:378.300870px;}
.y1cb{bottom:381.178650px;}
.y1a5{bottom:386.130600px;}
.y111{bottom:386.410950px;}
.y61{bottom:386.710800px;}
.y13b{bottom:386.710950px;}
.y3f{bottom:388.210800px;}
.y1ef{bottom:390.795915px;}
.y14{bottom:392.057610px;}
.y237{bottom:392.676270px;}
.y215{bottom:392.676540px;}
.y178{bottom:396.010950px;}
.y8c{bottom:397.050885px;}
.y1ca{bottom:399.589200px;}
.y60{bottom:401.710830px;}
.y110{bottom:404.410950px;}
.y13a{bottom:404.710950px;}
.y3e{bottom:406.360650px;}
.yf0{bottom:406.411200px;}
.y154{bottom:407.118150px;}
.y13{bottom:407.207580px;}
.y1ee{bottom:408.946125px;}
.y177{bottom:415.510950px;}
.y8b{bottom:415.800900px;}
.y236{bottom:415.928670px;}
.y214{bottom:415.928940px;}
.y1c9{bottom:417.999600px;}
.y5f{bottom:418.210800px;}
.y12{bottom:422.357550px;}
.y10f{bottom:422.410950px;}
.y1a4{bottom:422.430600px;}
.y139{bottom:422.710950px;}
.y3d{bottom:424.510800px;}
.y153{bottom:425.268150px;}
.y1ed{bottom:427.096065px;}
.y5e{bottom:433.210800px;}
.y235{bottom:434.078745px;}
.y213{bottom:434.079015px;}
.y176{bottom:435.010950px;}
.y1c8{bottom:436.410000px;}
.y11{bottom:437.507520px;}
.y10e{bottom:440.410950px;}
.y8a{bottom:440.550900px;}
.y1a3{bottom:440.580600px;}
.y138{bottom:440.710950px;}
.y3c{bottom:442.660650px;}
.y152{bottom:443.418150px;}
.ya0{bottom:448.660650px;}
.y1ec{bottom:450.348330px;}
.y234{bottom:452.228685px;}
.y212{bottom:452.228955px;}
.y10{bottom:452.657490px;}
.y175{bottom:454.510950px;}
.y1c7{bottom:454.820550px;}
.yef{bottom:456.211200px;}
.y5d{bottom:457.960800px;}
.y10d{bottom:458.410950px;}
.y137{bottom:458.710950px;}
.y1a2{bottom:458.730750px;}
.y3b{bottom:460.810800px;}
.y89{bottom:461.550900px;}
.y151{bottom:461.568150px;}
.y9f{bottom:463.360650px;}
.yf{bottom:467.807460px;}
.y9e{bottom:468.310800px;}
.y1eb{bottom:468.498540px;}
.y1c6{bottom:473.230950px;}
.y174{bottom:474.010950px;}
.yee{bottom:474.361050px;}
.y233{bottom:475.481085px;}
.y211{bottom:475.481355px;}
.y10c{bottom:476.410950px;}
.y136{bottom:476.710950px;}
.y1a1{bottom:476.880600px;}
.y3a{bottom:478.960800px;}
.y88{bottom:482.550900px;}
.ye{bottom:482.957430px;}
.y1ea{bottom:491.750805px;}
.y9d{bottom:492.160650px;}
.yed{bottom:492.511200px;}
.y173{bottom:493.510950px;}
.y232{bottom:493.631160px;}
.y210{bottom:493.631430px;}
.y10b{bottom:494.410950px;}
.y135{bottom:494.710950px;}
.y1a0{bottom:495.030750px;}
.y39{bottom:497.110800px;}
.yd{bottom:498.107400px;}
.y87{bottom:500.700900px;}
.y1e9{bottom:509.900880px;}
.y1c5{bottom:510.051900px;}
.yec{bottom:510.661200px;}
.y20f{bottom:511.781370px;}
.y10a{bottom:512.410950px;}
.y134{bottom:512.710950px;}
.y172{bottom:513.010950px;}
.y19f{bottom:513.180600px;}
.y38{bottom:515.260800px;}
.y231{bottom:516.883560px;}
.y253{bottom:516.883830px;}
.y150{bottom:517.222365px;}
.y9c{bottom:522.760800px;}
.y1e8{bottom:528.051090px;}
.yeb{bottom:528.811200px;}
.y109{bottom:530.410950px;}
.y133{bottom:530.710950px;}
.y19e{bottom:531.330750px;}
.yc{bottom:531.407550px;}
.y124{bottom:532.222350px;}
.y171{bottom:532.510950px;}
.y37{bottom:533.410800px;}
.y230{bottom:535.033635px;}
.y20e{bottom:535.033770px;}
.y252{bottom:535.033905px;}
.yae{bottom:546.610800px;}
.yea{bottom:546.961200px;}
.y108{bottom:548.410950px;}
.y132{bottom:548.710950px;}
.y19d{bottom:549.480750px;}
.y1e7{bottom:551.303355px;}
.y36{bottom:551.560800px;}
.y170{bottom:552.010950px;}
.y22f{bottom:553.183710px;}
.y20d{bottom:553.183845px;}
.y86{bottom:555.151050px;}
.y251{bottom:558.286305px;}
.yb{bottom:560.057550px;}
.y267{bottom:564.896370px;}
.ye9{bottom:565.111200px;}
.y1c4{bottom:565.283250px;}
.y107{bottom:566.410950px;}
.y131{bottom:566.710950px;}
.y19c{bottom:567.630750px;}
.y35{bottom:569.710800px;}
.y16f{bottom:571.510950px;}
.y85{bottom:573.151050px;}
.y1e6{bottom:574.555755px;}
.y22e{bottom:576.436110px;}
.y20c{bottom:576.436245px;}
.y250{bottom:576.436380px;}
.ya{bottom:578.057550px;}
.yad{bottom:582.910800px;}
.ye8{bottom:583.261200px;}
.y1c3{bottom:583.693650px;}
.y106{bottom:584.410950px;}
.y130{bottom:584.710950px;}
.y19b{bottom:585.780750px;}
.y34{bottom:587.860800px;}
.y16e{bottom:591.010950px;}
.y84{bottom:591.151050px;}
.y1e5{bottom:592.705830px;}
.y22d{bottom:594.586185px;}
.y20b{bottom:594.586320px;}
.y266{bottom:596.546445px;}
.y24f{bottom:599.688780px;}
.ye7{bottom:601.411200px;}
.y1c2{bottom:602.104200px;}
.y105{bottom:602.410950px;}
.y12f{bottom:602.710950px;}
.y19a{bottom:603.930750px;}
.y51{bottom:606.010800px;}
.y83{bottom:609.151050px;}
.y16d{bottom:610.510950px;}
.y9{bottom:610.809450px;}
.y20a{bottom:612.736395px;}
.y1e4{bottom:615.958230px;}
.y22c{bottom:617.838585px;}
.y24e{bottom:617.838720px;}
.ye6{bottom:619.561200px;}
.y104{bottom:620.410950px;}
.y1c1{bottom:620.514600px;}
.y12e{bottom:620.710950px;}
.y199{bottom:622.080750px;}
.y33{bottom:624.160800px;}
.y265{bottom:626.846385px;}
.y82{bottom:627.151050px;}
.y8{bottom:628.809450px;}
.y16c{bottom:630.010950px;}
.y1e3{bottom:634.108170px;}
.y22b{bottom:635.988660px;}
.y209{bottom:635.988795px;}
.y103{bottom:638.410950px;}
.y12d{bottom:638.710950px;}
.y1c0{bottom:638.925000px;}
.y198{bottom:640.230750px;}
.y264{bottom:641.996355px;}
.y32{bottom:642.310800px;}
.y81{bottom:645.151050px;}
.y16b{bottom:649.510950px;}
.ye5{bottom:650.911200px;}
.y7{bottom:651.061350px;}
.y1e2{bottom:652.258245px;}
.y22a{bottom:654.138735px;}
.y208{bottom:654.138870px;}
.ye3{bottom:655.861200px;}
.y102{bottom:656.410950px;}
.y12c{bottom:656.710950px;}
.y263{bottom:657.146325px;}
.y1bf{bottom:657.335550px;}
.y197{bottom:658.380750px;}
.y24d{bottom:659.241195px;}
.y31{bottom:660.460800px;}
.ye4{bottom:660.811350px;}
.y80{bottom:663.151050px;}
.y16a{bottom:669.010950px;}
.y6{bottom:669.061350px;}
.y229{bottom:672.288810px;}
.y262{bottom:672.296295px;}
.ye2{bottom:674.011200px;}
.y101{bottom:674.410950px;}
.y12b{bottom:674.710950px;}
.y1e1{bottom:675.510645px;}
.y1be{bottom:675.745950px;}
.y196{bottom:676.530750px;}
.y207{bottom:677.391270px;}
.y30{bottom:678.610950px;}
.y7f{bottom:681.151050px;}
.y24c{bottom:682.493595px;}
.ye0{bottom:687.211200px;}
.y261{bottom:687.446265px;}
.y169{bottom:688.510950px;}
.y100{bottom:689.455800px;}
.y5{bottom:691.313400px;}
.yac{bottom:691.810800px;}
.ydf{bottom:692.161200px;}
.y12a{bottom:692.710950px;}
.y1e0{bottom:693.660585px;}
.yff{bottom:693.952500px;}
.y1bd{bottom:694.156350px;}
.y195{bottom:694.680750px;}
.y228{bottom:695.541210px;}
.y206{bottom:695.541345px;}
.y2f{bottom:696.760800px;}
.ye1{bottom:697.111350px;}
.y7e{bottom:699.151050px;}
.y24b{bottom:700.643670px;}
.y260{bottom:702.596235px;}
.y168{bottom:708.010950px;}
.y4{bottom:709.313400px;}
.y129{bottom:710.710950px;}
.y194{bottom:712.830750px;}
.y227{bottom:713.691285px;}
.y2e{bottom:714.910800px;}
.y1df{bottom:716.912985px;}
.y7d{bottom:717.151050px;}
.y25f{bottom:717.746205px;}
.y205{bottom:718.793745px;}
.yde{bottom:723.511200px;}
.y24a{bottom:723.896070px;}
.y128{bottom:725.755800px;}
.y167{bottom:727.510950px;}
.ydd{bottom:728.461200px;}
.y127{bottom:730.327500px;}
.y1bc{bottom:730.977300px;}
.y193{bottom:730.980750px;}
.y226{bottom:731.841360px;}
.y25e{bottom:732.896310px;}
.yb2{bottom:733.060350px;}
.y2d{bottom:733.060950px;}
.y1de{bottom:735.063060px;}
.y7c{bottom:735.151050px;}
.y204{bottom:736.943820px;}
.y249{bottom:742.046145px;}
.y3{bottom:745.313280px;}
.y166{bottom:747.010950px;}
.y25d{bottom:748.046280px;}
.y192{bottom:749.130750px;}
.y1bb{bottom:749.387850px;}
.y2c{bottom:751.210950px;}
.y7b{bottom:753.151050px;}
.y1dd{bottom:753.213000px;}
.y225{bottom:755.093760px;}
.y203{bottom:760.196220px;}
.yab{bottom:761.860950px;}
.y165{bottom:762.055950px;}
.y25c{bottom:763.196250px;}
.ydc{bottom:764.761350px;}
.y164{bottom:766.702500px;}
.y191{bottom:767.280750px;}
.y1ba{bottom:767.798250px;}
.y2{bottom:769.313340px;}
.y2b{bottom:769.360950px;}
.y7a{bottom:771.151050px;}
.y224{bottom:773.243700px;}
.y202{bottom:778.346160px;}
.ydb{bottom:782.911350px;}
.y248{bottom:783.448620px;}
.y190{bottom:785.430900px;}
.y79{bottom:786.151080px;}
.y1b9{bottom:786.208650px;}
.y2a{bottom:787.510950px;}
.y1dc{bottom:789.513000px;}
.y1{bottom:793.313400px;}
.y201{bottom:796.496235px;}
.y25b{bottom:796.496250px;}
.yda{bottom:801.061350px;}
.y247{bottom:801.598560px;}
.y78{bottom:802.651050px;}
.y18f{bottom:803.580900px;}
.y1b8{bottom:804.619200px;}
.y29{bottom:805.660950px;}
.yd9{bottom:819.211350px;}
.y200{bottom:819.748635px;}
.y77{bottom:820.651050px;}
.y18e{bottom:821.730900px;}
.y1b7{bottom:823.029600px;}
.y28{bottom:823.810950px;}
.y1ff{bottom:837.898575px;}
.y18d{bottom:839.880900px;}
.y76{bottom:840.151050px;}
.y1b6{bottom:841.440000px;}
.y50{bottom:841.960950px;}
.y246{bottom:843.000900px;}
.y1db{bottom:850.341000px;}
.yd8{bottom:855.511350px;}
.y1b5{bottom:859.850550px;}
.y27{bottom:860.110950px;}
.y75{bottom:861.151050px;}
.y1fe{bottom:861.151110px;}
.y1da{bottom:865.341000px;}
.yd7{bottom:873.661350px;}
.y18c{bottom:876.180990px;}
.y26{bottom:878.260950px;}
.y74{bottom:879.301050px;}
.y1d9{bottom:880.341000px;}
.y23{bottom:909.242550px;}
.y24{bottom:922.792650px;}
.y4f{bottom:922.816200px;}
.y25{bottom:922.952550px;}
.y22{bottom:923.492550px;}
.y21{bottom:937.742550px;}
.y26b{bottom:1077.636450px;}
.y26a{bottom:1098.334650px;}
.y269{bottom:1119.032850px;}
.y268{bottom:1139.731050px;}
.h8{height:26.277188px;}
.h35{height:26.721835px;}
.h18{height:29.162109px;}
.h2f{height:29.482031px;}
.h16{height:29.813612px;}
.h1d{height:30.629063px;}
.h21{height:32.265472px;}
.h30{height:34.072702px;}
.h28{height:36.852539px;}
.h29{height:38.250920px;}
.h4{height:41.660156px;}
.h9{height:42.117188px;}
.h11{height:42.590873px;}
.h37{height:47.379436px;}
.h2d{height:47.380636px;}
.h6{height:47.381836px;}
.he{height:47.961914px;}
.h33{height:50.985485px;}
.h2c{height:50.986685px;}
.h2b{height:50.987285px;}
.h3{height:52.646484px;}
.h1b{height:52.980000px;}
.h5{height:53.291016px;}
.h19{height:53.660156px;}
.h22{height:55.810547px;}
.hd{height:56.651939px;}
.h17{height:56.652539px;}
.ha{height:57.911133px;}
.h36{height:57.957188px;}
.h31{height:57.957787px;}
.h1e{height:60.300000px;}
.h27{height:61.460156px;}
.h23{height:61.742018px;}
.hb{height:63.175781px;}
.hc{height:63.721181px;}
.h1a{height:63.780000px;}
.h7{height:63.949219px;}
.h34{height:65.203456px;}
.h2e{height:65.204056px;}
.h2a{height:65.781914px;}
.h32{height:65.782514px;}
.h26{height:66.765472px;}
.h3a{height:70.664062px;}
.h25{height:70.810528px;}
.h14{height:72.446484px;}
.h12{height:72.447084px;}
.h2{height:74.607422px;}
.h20{height:75.300000px;}
.hf{height:77.382076px;}
.h10{height:93.292369px;}
.h13{height:97.085714px;}
.h24{height:108.310547px;}
.h1f{height:114.300000px;}
.h1c{height:142.980000px;}
.h0{height:1020.480000px;}
.h1{height:1020.750000px;}
.h38{height:1262.835000px;}
.h39{height:1263.000000px;}
.h15{height:52800.000000px;}
.w2{width:492.003000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.w3{width:892.914000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:28.960500px;}
.x42{left:34.210500px;}
.x2b{left:35.710500px;}
.x2a{left:37.210500px;}
.x44{left:40.210922px;}
.x2e{left:43.585495px;}
.x2d{left:45.835500px;}
.x32{left:52.210500px;}
.x1{left:85.039050px;}
.x29{left:86.539500px;}
.x59{left:88.105650px;}
.xc{left:91.906500px;}
.x21{left:93.681900px;}
.x5b{left:97.793610px;}
.x33{left:99.085500px;}
.xb{left:102.321600px;}
.x10{left:104.455050px;}
.x22{left:105.637050px;}
.x2c{left:107.710500px;}
.x4{left:110.550900px;}
.x35{left:116.710481px;}
.x47{left:118.960500px;}
.x2f{left:120.835512px;}
.x30{left:122.335486px;}
.x37{left:124.585500px;}
.x38{left:126.085500px;}
.x5a{left:129.863850px;}
.x4c{left:134.014650px;}
.x58{left:136.098600px;}
.x34{left:142.960500px;}
.xa{left:148.701600px;}
.x52{left:152.235300px;}
.x11{left:153.663900px;}
.x3a{left:155.335500px;}
.x25{left:157.424850px;}
.x12{left:158.737200px;}
.x4f{left:160.717350px;}
.x26{left:165.657300px;}
.x13{left:166.969650px;}
.x50{left:169.762800px;}
.x14{left:173.646300px;}
.x51{left:177.333000px;}
.x3e{left:178.960500px;}
.x4d{left:180.695250px;}
.x15{left:181.878600px;}
.x36{left:185.710500px;}
.x4e{left:189.740700px;}
.x3b{left:195.460500px;}
.x43{left:196.585641px;}
.xd{left:199.050150px;}
.x39{left:200.335500px;}
.x41{left:204.460500px;}
.xf{left:205.538250px;}
.x48{left:206.710500px;}
.x8{left:211.442400px;}
.x3d{left:212.710500px;}
.x27{left:218.338950px;}
.x3c{left:223.210500px;}
.x28{left:224.923350px;}
.x4b{left:226.153350px;}
.x45{left:228.086227px;}
.x3f{left:231.460500px;}
.x46{left:232.961555px;}
.x54{left:237.110400px;}
.x40{left:238.585500px;}
.x49{left:247.210500px;}
.x5{left:249.840750px;}
.x4a{left:254.710500px;}
.x57{left:257.227200px;}
.xe{left:294.687150px;}
.x55{left:325.145100px;}
.x56{left:331.731150px;}
.x9{left:339.304200px;}
.x23{left:425.200500px;}
.x24{left:430.963200px;}
.x6{left:453.851790px;}
.x1d{left:459.276450px;}
.x53{left:465.941400px;}
.x1e{left:467.508750px;}
.x2{left:470.008500px;}
.x18{left:476.245800px;}
.x19{left:484.478250px;}
.x7{left:485.825430px;}
.x1f{left:489.682950px;}
.x20{left:497.915250px;}
.x3{left:500.828700px;}
.x1b{left:563.125350px;}
.x1c{left:571.357650px;}
.x16{left:607.779900px;}
.x17{left:616.012350px;}
.x1a{left:620.304000px;}
@media print{
.v4{vertical-align:-26.668800pt;}
.v9{vertical-align:-21.334400pt;}
.v5{vertical-align:-17.600000pt;}
.v14{vertical-align:-15.841600pt;}
.v1{vertical-align:-14.080000pt;}
.v6{vertical-align:-10.667200pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:9.066133pt;}
.vb{vertical-align:10.666667pt;}
.vf{vertical-align:13.333333pt;}
.v8{vertical-align:14.400000pt;}
.v13{vertical-align:15.840000pt;}
.v2{vertical-align:17.599467pt;}
.v3{vertical-align:26.666880pt;}
.v12{vertical-align:30.666667pt;}
.v7{vertical-align:32.000533pt;}
.v11{vertical-align:33.333333pt;}
.vc{vertical-align:40.000000pt;}
.v10{vertical-align:46.666667pt;}
.ve{vertical-align:48.000000pt;}
.vd{vertical-align:80.000000pt;}
.ls39{letter-spacing:-13.333333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls4a{letter-spacing:0.000593pt;}
.ls22{letter-spacing:0.002133pt;}
.ls17{letter-spacing:0.002667pt;}
.ls50{letter-spacing:0.002726pt;}
.ls11{letter-spacing:0.008000pt;}
.ls8{letter-spacing:0.008533pt;}
.lse{letter-spacing:0.009067pt;}
.lsf{letter-spacing:0.009600pt;}
.ls42{letter-spacing:0.010133pt;}
.ls4{letter-spacing:0.017067pt;}
.ls1a{letter-spacing:0.021867pt;}
.ls24{letter-spacing:0.059200pt;}
.ls52{letter-spacing:0.266667pt;}
.ls2f{letter-spacing:0.585833pt;}
.ls6{letter-spacing:2.664533pt;}
.lsc{letter-spacing:2.665067pt;}
.ls2c{letter-spacing:4.853333pt;}
.ls7{letter-spacing:5.330667pt;}
.lsd{letter-spacing:6.130133pt;}
.ls4c{letter-spacing:11.728533pt;}
.ls4d{letter-spacing:11.733333pt;}
.ls16{letter-spacing:12.965867pt;}
.ls20{letter-spacing:13.230400pt;}
.ls45{letter-spacing:13.250133pt;}
.ls44{letter-spacing:13.250667pt;}
.ls1b{letter-spacing:13.510400pt;}
.ls1c{letter-spacing:13.510933pt;}
.ls12{letter-spacing:14.168000pt;}
.ls15{letter-spacing:14.356267pt;}
.ls26{letter-spacing:14.464000pt;}
.ls23{letter-spacing:14.653333pt;}
.ls9{letter-spacing:14.660267pt;}
.ls5{letter-spacing:14.660800pt;}
.lsa{letter-spacing:14.666667pt;}
.ls3{letter-spacing:14.756267pt;}
.ls14{letter-spacing:14.858667pt;}
.ls13{letter-spacing:14.860800pt;}
.ls21{letter-spacing:14.931733pt;}
.ls18{letter-spacing:15.048533pt;}
.ls1e{letter-spacing:15.231467pt;}
.ls1d{letter-spacing:15.634667pt;}
.ls10{letter-spacing:15.860800pt;}
.ls1f{letter-spacing:16.754133pt;}
.ls3d{letter-spacing:18.666667pt;}
.ls19{letter-spacing:18.862933pt;}
.ls41{letter-spacing:18.899200pt;}
.ls0{letter-spacing:21.333333pt;}
.ls3c{letter-spacing:23.248333pt;}
.ls33{letter-spacing:23.649167pt;}
.ls34{letter-spacing:24.574167pt;}
.ls3e{letter-spacing:33.760000pt;}
.ls37{letter-spacing:40.576667pt;}
.ls38{letter-spacing:45.910833pt;}
.ls36{letter-spacing:49.333333pt;}
.ls30{letter-spacing:52.320000pt;}
.ls2d{letter-spacing:53.386667pt;}
.ls3a{letter-spacing:56.906667pt;}
.ls3b{letter-spacing:61.913333pt;}
.ls29{letter-spacing:62.186667pt;}
.ls3f{letter-spacing:68.097111pt;}
.ls31{letter-spacing:71.440833pt;}
.ls32{letter-spacing:83.650833pt;}
.ls28{letter-spacing:87.093333pt;}
.ls40{letter-spacing:96.766705pt;}
.ls2e{letter-spacing:101.760000pt;}
.ls27{letter-spacing:103.680000pt;}
.ls2b{letter-spacing:135.520000pt;}
.ls2a{letter-spacing:146.186667pt;}
.ls46{letter-spacing:196.121263pt;}
.ls35{letter-spacing:214.720000pt;}
.ls51{letter-spacing:262.908563pt;}
.ls48{letter-spacing:273.665896pt;}
.ls47{letter-spacing:286.907970pt;}
.ls4e{letter-spacing:297.666489pt;}
.ls4f{letter-spacing:388.205156pt;}
.ls49{letter-spacing:412.205748pt;}
.ls4b{letter-spacing:470.580267pt;}
.ls43{letter-spacing:1288.942933pt;}
.ls25{letter-spacing:1381.393600pt;}
.lsb{letter-spacing:1483.983467pt;}
.ws20{word-spacing:-83.681667pt;}
.ws1d{word-spacing:-57.813333pt;}
.ws19{word-spacing:-53.333333pt;}
.ws1a{word-spacing:-49.386667pt;}
.ws32{word-spacing:-46.208000pt;}
.ws36{word-spacing:-38.506667pt;}
.ws23{word-spacing:-32.000000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.wsf{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.000000pt;}
.ws2d{word-spacing:-10.666667pt;}
.ws16{word-spacing:-9.333333pt;}
.ws25{word-spacing:-8.400000pt;}
.ws1b{word-spacing:-8.294167pt;}
.ws2c{word-spacing:-7.466667pt;}
.wsa{word-spacing:-1.259733pt;}
.wsb{word-spacing:-0.287467pt;}
.ws9{word-spacing:-0.283200pt;}
.ws17{word-spacing:-0.053333pt;}
.ws11{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws37{word-spacing:0.597120pt;}
.ws1c{word-spacing:1.040833pt;}
.ws5{word-spacing:1.065680pt;}
.ws8{word-spacing:1.099200pt;}
.ws34{word-spacing:1.200000pt;}
.ws35{word-spacing:1.200480pt;}
.ws33{word-spacing:1.200960pt;}
.ws4{word-spacing:2.713040pt;}
.ws31{word-spacing:2.983467pt;}
.ws7{word-spacing:3.494040pt;}
.ws18{word-spacing:3.701333pt;}
.ws1e{word-spacing:6.293333pt;}
.ws22{word-spacing:17.081667pt;}
.ws13{word-spacing:19.649280pt;}
.ws21{word-spacing:28.305000pt;}
.ws15{word-spacing:69.177600pt;}
.ws14{word-spacing:79.017600pt;}
.wse{word-spacing:85.789440pt;}
.ws12{word-spacing:108.317760pt;}
.wsc{word-spacing:108.318240pt;}
.ws26{word-spacing:149.264640pt;}
.ws29{word-spacing:150.604800pt;}
.ws30{word-spacing:151.006560pt;}
.ws27{word-spacing:151.007040pt;}
.ws28{word-spacing:151.008000pt;}
.ws1f{word-spacing:171.155833pt;}
.ws10{word-spacing:315.283200pt;}
.wsd{word-spacing:332.987520pt;}
.ws38{word-spacing:369.433067pt;}
.ws2e{word-spacing:390.458667pt;}
.ws2a{word-spacing:414.458074pt;}
.ws24{word-spacing:431.595360pt;}
.ws2f{word-spacing:442.156800pt;}
.ws2b{word-spacing:446.112000pt;}
._6d{margin-left:-458.613333pt;}
._74{margin-left:-225.333333pt;}
._73{margin-left:-60.001667pt;}
._71{margin-left:-58.666667pt;}
._6f{margin-left:-28.466240pt;}
._70{margin-left:-22.240000pt;}
._75{margin-left:-20.480000pt;}
._6a{margin-left:-18.241707pt;}
._97{margin-left:-16.170667pt;}
._6b{margin-left:-11.389867pt;}
._92{margin-left:-2.687520pt;}
._2{margin-left:-1.695840pt;}
._1{width:0.896747pt;}
._0{width:1.817387pt;}
._3{width:2.839627pt;}
._7{width:3.972107pt;}
._8{width:4.990453pt;}
._b{width:6.367413pt;}
._9{width:7.393067pt;}
._f{width:8.342400pt;}
._6c{width:9.277867pt;}
._a{width:10.954667pt;}
._76{width:12.245333pt;}
._4{width:13.436053pt;}
._6{width:14.827200pt;}
._5{width:16.493707pt;}
._77{width:17.414133pt;}
._d{width:19.195680pt;}
._e{width:21.594667pt;}
._95{width:22.732373pt;}
._6e{width:32.000000pt;}
._2b{width:36.662400pt;}
._1e{width:47.775253pt;}
._54{width:50.169867pt;}
._51{width:54.106080pt;}
._96{width:58.709333pt;}
._84{width:59.982293pt;}
._61{width:65.833707pt;}
._52{width:68.466240pt;}
._53{width:70.934613pt;}
._55{width:72.860640pt;}
._8b{width:78.769707pt;}
._1a{width:80.252907pt;}
._63{width:85.912107pt;}
._2a{width:88.172907pt;}
._62{width:90.825813pt;}
._69{width:91.863947pt;}
._38{width:97.162987pt;}
._5d{width:100.203573pt;}
._45{width:101.175840pt;}
._60{width:102.242400pt;}
._56{width:104.602827pt;}
._50{width:106.006560pt;}
._40{width:107.745493pt;}
._23{width:109.790400pt;}
._5c{width:110.871733pt;}
._65{width:113.035200pt;}
._57{width:120.880320pt;}
._18{width:121.977600pt;}
._58{width:124.974933pt;}
._59{width:125.949120pt;}
._1b{width:127.805653pt;}
._33{width:129.008853pt;}
._12{width:130.181280pt;}
._28{width:135.694720pt;}
._20{width:139.197600pt;}
._3e{width:142.450453pt;}
._31{width:147.985813pt;}
._36{width:149.074453pt;}
._1d{width:151.196640pt;}
._13{width:154.401493pt;}
._21{width:158.513493pt;}
._44{width:163.197600pt;}
._2e{width:165.096853pt;}
._32{width:172.626240pt;}
._22{width:175.200000pt;}
._41{width:182.059733pt;}
._3d{width:185.073493pt;}
._2c{width:186.413653pt;}
._3b{width:189.010453pt;}
._64{width:190.320000pt;}
._7f{width:191.240640pt;}
._5f{width:193.003200pt;}
._5e{width:195.691200pt;}
._7a{width:198.501227pt;}
._26{width:199.757653pt;}
._5b{width:200.981280pt;}
._16{width:202.002240pt;}
._35{width:203.088160pt;}
._68{width:206.400000pt;}
._30{width:207.730453pt;}
._81{width:210.499787pt;}
._79{width:214.287840pt;}
._78{width:215.406536pt;}
._5a{width:217.013280pt;}
._42{width:218.034720pt;}
._67{width:219.652800pt;}
._66{width:222.336000pt;}
._4e{width:223.813813pt;}
._7d{width:226.629920pt;}
._88{width:230.223520pt;}
._4d{width:232.299680pt;}
._4f{width:233.308693pt;}
._8a{width:235.625653pt;}
._80{width:236.969653pt;}
._91{width:238.308664pt;}
._72{width:241.760000pt;}
._90{width:245.834880pt;}
._46{width:250.003200pt;}
._39{width:255.331200pt;}
._83{width:259.625653pt;}
._49{width:265.986720pt;}
._89{width:267.145440pt;}
._86{width:270.281653pt;}
._7e{width:279.593653pt;}
._82{width:280.938133pt;}
._3a{width:283.909600pt;}
._43{width:286.923680pt;}
._48{width:289.987200pt;}
._3f{width:292.107200pt;}
._87{width:294.282133pt;}
._14{width:295.218720pt;}
._37{width:311.299680pt;}
._8e{width:320.522400pt;}
._94{width:325.849920pt;}
._4c{width:332.611680pt;}
._47{width:339.803947pt;}
._25{width:344.985600pt;}
._34{width:348.373440pt;}
._8d{width:349.843200pt;}
._2f{width:353.004693pt;}
._8f{width:360.506400pt;}
._2d{width:371.628693pt;}
._4b{width:374.022293pt;}
._7c{width:384.506880pt;}
._93{width:397.802880pt;}
._c{width:399.216427pt;}
._8c{width:405.820800pt;}
._85{width:421.803360pt;}
._27{width:428.334080pt;}
._7b{width:477.255360pt;}
._17{width:497.005387pt;}
._10{width:514.310880pt;}
._11{width:515.854080pt;}
._4a{width:542.086347pt;}
._15{width:640.703093pt;}
._19{width:664.537013pt;}
._29{width:677.951573pt;}
._3c{width:707.208267pt;}
._1f{width:899.748000pt;}
._1c{width:991.764480pt;}
._24{width:1015.728000pt;}
.fs4{font-size:29.866667pt;}
.fsd{font-size:30.833333pt;}
.fs10{font-size:33.600000pt;}
.fs12{font-size:34.209293pt;}
.fs8{font-size:37.333333pt;}
.fsc{font-size:38.167387pt;}
.fs5{font-size:42.666667pt;}
.fs11{font-size:43.619874pt;}
.fs6{font-size:44.000000pt;}
.fs2{font-size:48.000000pt;}
.fsf{font-size:48.968829pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:54.524837pt;}
.fse{font-size:54.608750pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs9{font-size:106.666667pt;}
.fsb{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:6.724133pt;}
.yd1{bottom:7.724133pt;}
.yc5{bottom:8.724133pt;}
.ycc{bottom:8.724237pt;}
.yc9{bottom:8.724446pt;}
.yc2{bottom:9.724133pt;}
.ybf{bottom:10.724138pt;}
.yb8{bottom:11.724133pt;}
.yb6{bottom:11.724169pt;}
.ybb{bottom:11.724190pt;}
.yd0{bottom:12.057467pt;}
.ybd{bottom:14.057467pt;}
.yb4{bottom:15.057467pt;}
.yd3{bottom:16.057467pt;}
.yc7{bottom:17.057467pt;}
.yce{bottom:18.057488pt;}
.yc4{bottom:18.390800pt;}
.yc0{bottom:20.057460pt;}
.yca{bottom:20.390800pt;}
.yb9{bottom:21.724133pt;}
.yd2{bottom:23.390800pt;}
.yc3{bottom:23.724133pt;}
.yd6{bottom:24.390800pt;}
.yc6{bottom:24.724133pt;}
.ybe{bottom:25.057467pt;}
.ycb{bottom:31.390592pt;}
.yb5{bottom:31.724133pt;}
.yba{bottom:31.724154pt;}
.yb7{bottom:33.724133pt;}
.ycf{bottom:34.724133pt;}
.yb3{bottom:35.057467pt;}
.yc1{bottom:35.724133pt;}
.yd4{bottom:36.390800pt;}
.ybc{bottom:36.724133pt;}
.ycd{bottom:40.723842pt;}
.y14f{bottom:84.913200pt;}
.y73{bottom:85.076267pt;}
.y1b4{bottom:85.093867pt;}
.y20{bottom:85.451600pt;}
.y1d8{bottom:85.452133pt;}
.yc8{bottom:86.942533pt;}
.yaa{bottom:86.942667pt;}
.y5b{bottom:86.942800pt;}
.y4e{bottom:86.942933pt;}
.yfe{bottom:86.987600pt;}
.y126{bottom:87.040267pt;}
.y163{bottom:87.616133pt;}
.y18b{bottom:89.201733pt;}
.y123{bottom:89.609600pt;}
.y245{bottom:91.430773pt;}
.y223{bottom:91.433413pt;}
.y1fd{bottom:94.295347pt;}
.y25a{bottom:95.969413pt;}
.y14e{bottom:98.246400pt;}
.ya9{bottom:98.676000pt;}
.y1f{bottom:98.784933pt;}
.y1d7{bottom:99.016933pt;}
.y72{bottom:99.742933pt;}
.y125{bottom:100.373467pt;}
.y1b3{bottom:101.227200pt;}
.y18a{bottom:102.534933pt;}
.y9b{bottom:102.934133pt;}
.ya8{bottom:103.076000pt;}
.y5a{bottom:103.076133pt;}
.y4d{bottom:103.076267pt;}
.y14d{bottom:103.076400pt;}
.yfd{bottom:103.120933pt;}
.y162{bottom:103.749467pt;}
.y189{bottom:104.409733pt;}
.y122{bottom:105.742933pt;}
.y244{bottom:107.563573pt;}
.y222{bottom:107.566213pt;}
.y1fc{bottom:110.428147pt;}
.y259{bottom:112.103413pt;}
.y71{bottom:114.409600pt;}
.y1e{bottom:115.638267pt;}
.y1b2{bottom:117.360533pt;}
.y1d6{bottom:118.251067pt;}
.ya7{bottom:119.209333pt;}
.y59{bottom:119.209467pt;}
.y4c{bottom:119.209600pt;}
.y14c{bottom:119.209733pt;}
.yfc{bottom:119.254267pt;}
.y9a{bottom:119.599040pt;}
.y161{bottom:119.882800pt;}
.y188{bottom:120.543067pt;}
.y121{bottom:121.876267pt;}
.y243{bottom:123.697573pt;}
.y221{bottom:128.235013pt;}
.y70{bottom:129.076267pt;}
.y1fb{bottom:131.096947pt;}
.y1d5{bottom:131.815867pt;}
.y258{bottom:132.772213pt;}
.y1b1{bottom:133.493867pt;}
.y58{bottom:135.342800pt;}
.y4b{bottom:135.342933pt;}
.y14b{bottom:135.343067pt;}
.yfb{bottom:135.387600pt;}
.y160{bottom:136.016133pt;}
.y99{bottom:136.265840pt;}
.y187{bottom:136.676400pt;}
.y120{bottom:138.009600pt;}
.y6f{bottom:143.742933pt;}
.y242{bottom:144.366373pt;}
.y1d{bottom:146.895467pt;}
.y1fa{bottom:147.230947pt;}
.y220{bottom:148.903813pt;}
.y257{bottom:148.905013pt;}
.y1b0{bottom:149.627200pt;}
.y57{bottom:151.476133pt;}
.y4a{bottom:151.476267pt;}
.y14a{bottom:151.476400pt;}
.yfa{bottom:151.520933pt;}
.y15f{bottom:152.149467pt;}
.y186{bottom:152.809733pt;}
.y98{bottom:152.932640pt;}
.y6e{bottom:158.409600pt;}
.y1d4{bottom:160.278800pt;}
.y241{bottom:160.499173pt;}
.y1c{bottom:163.028800pt;}
.y11f{bottom:163.956267pt;}
.y21f{bottom:165.037813pt;}
.y11e{bottom:167.476400pt;}
.y56{bottom:167.609467pt;}
.y49{bottom:167.609600pt;}
.y1f9{bottom:167.899747pt;}
.y15e{bottom:168.282800pt;}
.y185{bottom:168.943067pt;}
.y256{bottom:169.573813pt;}
.y97{bottom:169.599440pt;}
.y11d{bottom:170.996400pt;}
.y6d{bottom:173.076267pt;}
.y149{bottom:180.223067pt;}
.y11c{bottom:180.809733pt;}
.y240{bottom:181.167973pt;}
.y1af{bottom:181.893867pt;}
.y55{bottom:183.742800pt;}
.y48{bottom:183.742933pt;}
.y148{bottom:183.743067pt;}
.yf9{bottom:183.787600pt;}
.y1f8{bottom:184.032547pt;}
.y15d{bottom:184.416133pt;}
.y184{bottom:185.076400pt;}
.y21e{bottom:185.706613pt;}
.y96{bottom:186.266240pt;}
.y147{bottom:187.263067pt;}
.y6c{bottom:187.742933pt;}
.y11b{bottom:194.143067pt;}
.y1b{bottom:195.295333pt;}
.yb1{bottom:195.476133pt;}
.y146{bottom:197.076400pt;}
.y23f{bottom:197.301973pt;}
.y1ae{bottom:198.027200pt;}
.y54{bottom:199.876133pt;}
.y47{bottom:199.876267pt;}
.yf8{bottom:199.920933pt;}
.y15c{bottom:200.549467pt;}
.y6b{bottom:202.409600pt;}
.y95{bottom:202.933040pt;}
.y1f7{bottom:204.701347pt;}
.y21d{bottom:206.375413pt;}
.y1d3{bottom:207.902800pt;}
.y145{bottom:210.409733pt;}
.y183{bottom:213.823067pt;}
.y1ad{bottom:214.160533pt;}
.y11a{bottom:215.476400pt;}
.ya6{bottom:216.009467pt;}
.y46{bottom:216.009600pt;}
.yf7{bottom:216.054267pt;}
.y15b{bottom:216.682800pt;}
.y6a{bottom:217.076267pt;}
.y182{bottom:217.343067pt;}
.y23e{bottom:217.970773pt;}
.y94{bottom:219.599840pt;}
.y1f6{bottom:220.834147pt;}
.y181{bottom:220.863067pt;}
.y21c{bottom:222.508213pt;}
.y1d2{bottom:224.268133pt;}
.yb0{bottom:227.742800pt;}
.y119{bottom:228.849240pt;}
.y1ac{bottom:230.293867pt;}
.y180{bottom:230.676400pt;}
.y69{bottom:231.742933pt;}
.y144{bottom:231.743067pt;}
.y53{bottom:232.142800pt;}
.y45{bottom:232.142933pt;}
.yf6{bottom:232.187600pt;}
.y118{bottom:232.809733pt;}
.y15a{bottom:232.816133pt;}
.y23d{bottom:234.103573pt;}
.y93{bottom:236.266640pt;}
.y1f5{bottom:236.966947pt;}
.y21b{bottom:238.641013pt;}
.y1a{bottom:239.564213pt;}
.y1d1{bottom:240.633467pt;}
.y255{bottom:243.177013pt;}
.y17f{bottom:244.009733pt;}
.y68{bottom:245.076053pt;}
.y143{bottom:245.116267pt;}
.y1ab{bottom:246.427200pt;}
.ya5{bottom:248.276133pt;}
.y44{bottom:248.276267pt;}
.yf5{bottom:248.320933pt;}
.y117{bottom:248.810000pt;}
.y142{bottom:249.076400pt;}
.y92{bottom:252.933440pt;}
.y23c{bottom:254.772373pt;}
.y1d0{bottom:256.998800pt;}
.y1f4{bottom:257.635747pt;}
.y21a{bottom:259.309813pt;}
.y67{bottom:259.742933pt;}
.y141{bottom:261.116040pt;}
.y1aa{bottom:262.560533pt;}
.y116{bottom:263.476400pt;}
.y52{bottom:264.409467pt;}
.y43{bottom:264.409600pt;}
.y140{bottom:265.076800pt;}
.y159{bottom:265.082800pt;}
.y17e{bottom:265.343067pt;}
.y19{bottom:267.697013pt;}
.y91{bottom:269.600240pt;}
.y23b{bottom:270.906373pt;}
.y66{bottom:273.076053pt;}
.y1cf{bottom:273.364133pt;}
.y1f3{bottom:273.769747pt;}
.y219{bottom:275.442613pt;}
.y1a9{bottom:278.693867pt;}
.y17d{bottom:278.716040pt;}
.y115{bottom:279.476400pt;}
.y254{bottom:279.978613pt;}
.ya4{bottom:280.542800pt;}
.y42{bottom:280.542933pt;}
.yf4{bottom:280.587600pt;}
.y13f{bottom:281.076667pt;}
.y18{bottom:281.163413pt;}
.y158{bottom:281.216133pt;}
.y17c{bottom:282.676400pt;}
.y90{bottom:286.267040pt;}
.y65{bottom:287.742933pt;}
.y1ce{bottom:289.729467pt;}
.y23a{bottom:291.575173pt;}
.y1f2{bottom:294.438547pt;}
.y1a8{bottom:294.827200pt;}
.y114{bottom:295.476400pt;}
.y13e{bottom:295.743067pt;}
.y218{bottom:296.111413pt;}
.ya3{bottom:296.676133pt;}
.y5c{bottom:296.676267pt;}
.yf3{bottom:296.720933pt;}
.y157{bottom:297.349467pt;}
.y17b{bottom:300.010267pt;}
.y64{bottom:301.076053pt;}
.y8f{bottom:302.933840pt;}
.y1cd{bottom:306.094800pt;}
.y17{bottom:308.096213pt;}
.ya2{bottom:308.409467pt;}
.y1f1{bottom:310.572547pt;}
.y1a7{bottom:310.960533pt;}
.y113{bottom:311.476400pt;}
.y13d{bottom:311.743067pt;}
.y239{bottom:312.243973pt;}
.y217{bottom:312.244213pt;}
.ya1{bottom:312.809467pt;}
.y41{bottom:312.809600pt;}
.yf2{bottom:312.854267pt;}
.y156{bottom:313.482800pt;}
.y63{bottom:315.742933pt;}
.y17a{bottom:317.343067pt;}
.y8e{bottom:319.600640pt;}
.y16{bottom:321.562613pt;}
.y1cc{bottom:322.460133pt;}
.y1a6{bottom:327.093867pt;}
.y112{bottom:327.476400pt;}
.y13c{bottom:327.743067pt;}
.y238{bottom:328.376773pt;}
.yaf{bottom:328.942800pt;}
.y40{bottom:328.942933pt;}
.yf1{bottom:328.987600pt;}
.y62{bottom:329.076053pt;}
.y155{bottom:329.616133pt;}
.y1f0{bottom:331.241347pt;}
.y216{bottom:332.913013pt;}
.y179{bottom:334.676400pt;}
.y15{bottom:335.029013pt;}
.y8d{bottom:336.267440pt;}
.y1cb{bottom:338.825467pt;}
.y1a5{bottom:343.227200pt;}
.y111{bottom:343.476400pt;}
.y61{bottom:343.742933pt;}
.y13b{bottom:343.743067pt;}
.y3f{bottom:345.076267pt;}
.y1ef{bottom:347.374147pt;}
.y14{bottom:348.495653pt;}
.y237{bottom:349.045573pt;}
.y215{bottom:349.045813pt;}
.y178{bottom:352.009733pt;}
.y8c{bottom:352.934120pt;}
.y1ca{bottom:355.190400pt;}
.y60{bottom:357.076293pt;}
.y110{bottom:359.476400pt;}
.y13a{bottom:359.743067pt;}
.y3e{bottom:361.209467pt;}
.yf0{bottom:361.254400pt;}
.y154{bottom:361.882800pt;}
.y13{bottom:361.962293pt;}
.y1ee{bottom:363.507667pt;}
.y177{bottom:369.343067pt;}
.y8b{bottom:369.600800pt;}
.y236{bottom:369.714373pt;}
.y214{bottom:369.714613pt;}
.y1c9{bottom:371.555200pt;}
.y5f{bottom:371.742933pt;}
.y12{bottom:375.428933pt;}
.y10f{bottom:375.476400pt;}
.y1a4{bottom:375.493867pt;}
.y139{bottom:375.743067pt;}
.y3d{bottom:377.342933pt;}
.y153{bottom:378.016133pt;}
.y1ed{bottom:379.640947pt;}
.y5e{bottom:385.076267pt;}
.y235{bottom:385.847773pt;}
.y213{bottom:385.848013pt;}
.y176{bottom:386.676400pt;}
.y1c8{bottom:387.920000pt;}
.y11{bottom:388.895573pt;}
.y10e{bottom:391.476400pt;}
.y8a{bottom:391.600800pt;}
.y1a3{bottom:391.627200pt;}
.y138{bottom:391.743067pt;}
.y3c{bottom:393.476133pt;}
.y152{bottom:394.149467pt;}
.ya0{bottom:398.809467pt;}
.y1ec{bottom:400.309627pt;}
.y234{bottom:401.981053pt;}
.y212{bottom:401.981293pt;}
.y10{bottom:402.362213pt;}
.y175{bottom:404.009733pt;}
.y1c7{bottom:404.284933pt;}
.yef{bottom:405.521067pt;}
.y5d{bottom:407.076267pt;}
.y10d{bottom:407.476400pt;}
.y137{bottom:407.743067pt;}
.y1a2{bottom:407.760667pt;}
.y3b{bottom:409.609600pt;}
.y89{bottom:410.267467pt;}
.y151{bottom:410.282800pt;}
.y9f{bottom:411.876133pt;}
.yf{bottom:415.828853pt;}
.y9e{bottom:416.276267pt;}
.y1eb{bottom:416.443147pt;}
.y1c6{bottom:420.649733pt;}
.y174{bottom:421.343067pt;}
.yee{bottom:421.654267pt;}
.y233{bottom:422.649853pt;}
.y211{bottom:422.650093pt;}
.y10c{bottom:423.476400pt;}
.y136{bottom:423.743067pt;}
.y1a1{bottom:423.893867pt;}
.y3a{bottom:425.742933pt;}
.y88{bottom:428.934133pt;}
.ye{bottom:429.295493pt;}
.y1ea{bottom:437.111827pt;}
.y9d{bottom:437.476133pt;}
.yed{bottom:437.787733pt;}
.y173{bottom:438.676400pt;}
.y232{bottom:438.783253pt;}
.y210{bottom:438.783493pt;}
.y10b{bottom:439.476400pt;}
.y135{bottom:439.743067pt;}
.y1a0{bottom:440.027333pt;}
.y39{bottom:441.876267pt;}
.yd{bottom:442.762133pt;}
.y87{bottom:445.067467pt;}
.y1e9{bottom:453.245227pt;}
.y1c5{bottom:453.379467pt;}
.yec{bottom:453.921067pt;}
.y20f{bottom:454.916773pt;}
.y10a{bottom:455.476400pt;}
.y134{bottom:455.743067pt;}
.y172{bottom:456.009733pt;}
.y19f{bottom:456.160533pt;}
.y38{bottom:458.009600pt;}
.y231{bottom:459.452053pt;}
.y253{bottom:459.452293pt;}
.y150{bottom:459.753213pt;}
.y9c{bottom:464.676267pt;}
.y1e8{bottom:469.378747pt;}
.yeb{bottom:470.054400pt;}
.y109{bottom:471.476400pt;}
.y133{bottom:471.743067pt;}
.y19e{bottom:472.294000pt;}
.yc{bottom:472.362267pt;}
.y124{bottom:473.086533pt;}
.y171{bottom:473.343067pt;}
.y37{bottom:474.142933pt;}
.y230{bottom:475.585453pt;}
.y20e{bottom:475.585573pt;}
.y252{bottom:475.585693pt;}
.yae{bottom:485.876267pt;}
.yea{bottom:486.187733pt;}
.y108{bottom:487.476400pt;}
.y132{bottom:487.743067pt;}
.y19d{bottom:488.427333pt;}
.y1e7{bottom:490.047427pt;}
.y36{bottom:490.276267pt;}
.y170{bottom:490.676400pt;}
.y22f{bottom:491.718853pt;}
.y20d{bottom:491.718973pt;}
.y86{bottom:493.467600pt;}
.y251{bottom:496.254493pt;}
.yb{bottom:497.828933pt;}
.y267{bottom:502.130107pt;}
.ye9{bottom:502.321067pt;}
.y1c4{bottom:502.474000pt;}
.y107{bottom:503.476400pt;}
.y131{bottom:503.743067pt;}
.y19c{bottom:504.560667pt;}
.y35{bottom:506.409600pt;}
.y16f{bottom:508.009733pt;}
.y85{bottom:509.467600pt;}
.y1e6{bottom:510.716227pt;}
.y22e{bottom:512.387653pt;}
.y20c{bottom:512.387773pt;}
.y250{bottom:512.387893pt;}
.ya{bottom:513.828933pt;}
.yad{bottom:518.142933pt;}
.ye8{bottom:518.454400pt;}
.y1c3{bottom:518.838800pt;}
.y106{bottom:519.476400pt;}
.y130{bottom:519.743067pt;}
.y19b{bottom:520.694000pt;}
.y34{bottom:522.542933pt;}
.y16e{bottom:525.343067pt;}
.y84{bottom:525.467600pt;}
.y1e5{bottom:526.849627pt;}
.y22d{bottom:528.521053pt;}
.y20b{bottom:528.521173pt;}
.y266{bottom:530.263507pt;}
.y24f{bottom:533.056693pt;}
.ye7{bottom:534.587733pt;}
.y1c2{bottom:535.203733pt;}
.y105{bottom:535.476400pt;}
.y12f{bottom:535.743067pt;}
.y19a{bottom:536.827333pt;}
.y51{bottom:538.676267pt;}
.y83{bottom:541.467600pt;}
.y16d{bottom:542.676400pt;}
.y9{bottom:542.941733pt;}
.y20a{bottom:544.654573pt;}
.y1e4{bottom:547.518427pt;}
.y22c{bottom:549.189853pt;}
.y24e{bottom:549.189973pt;}
.ye6{bottom:550.721067pt;}
.y104{bottom:551.476400pt;}
.y1c1{bottom:551.568533pt;}
.y12e{bottom:551.743067pt;}
.y199{bottom:552.960667pt;}
.y33{bottom:554.809600pt;}
.y265{bottom:557.196787pt;}
.y82{bottom:557.467600pt;}
.y8{bottom:558.941733pt;}
.y16c{bottom:560.009733pt;}
.y1e3{bottom:563.651707pt;}
.y22b{bottom:565.323253pt;}
.y209{bottom:565.323373pt;}
.y103{bottom:567.476400pt;}
.y12d{bottom:567.743067pt;}
.y1c0{bottom:567.933333pt;}
.y198{bottom:569.094000pt;}
.y264{bottom:570.663427pt;}
.y32{bottom:570.942933pt;}
.y81{bottom:573.467600pt;}
.y16b{bottom:577.343067pt;}
.ye5{bottom:578.587733pt;}
.y7{bottom:578.721200pt;}
.y1e2{bottom:579.785107pt;}
.y22a{bottom:581.456653pt;}
.y208{bottom:581.456773pt;}
.ye3{bottom:582.987733pt;}
.y102{bottom:583.476400pt;}
.y12c{bottom:583.743067pt;}
.y263{bottom:584.130067pt;}
.y1bf{bottom:584.298267pt;}
.y197{bottom:585.227333pt;}
.y24d{bottom:585.992173pt;}
.y31{bottom:587.076267pt;}
.ye4{bottom:587.387867pt;}
.y80{bottom:589.467600pt;}
.y16a{bottom:594.676400pt;}
.y6{bottom:594.721200pt;}
.y229{bottom:597.590053pt;}
.y262{bottom:597.596707pt;}
.ye2{bottom:599.121067pt;}
.y101{bottom:599.476400pt;}
.y12b{bottom:599.743067pt;}
.y1e1{bottom:600.453907pt;}
.y1be{bottom:600.663067pt;}
.y196{bottom:601.360667pt;}
.y207{bottom:602.125573pt;}
.y30{bottom:603.209733pt;}
.y7f{bottom:605.467600pt;}
.y24c{bottom:606.660973pt;}
.ye0{bottom:610.854400pt;}
.y261{bottom:611.063347pt;}
.y169{bottom:612.009733pt;}
.y100{bottom:612.849600pt;}
.y5{bottom:614.500800pt;}
.yac{bottom:614.942933pt;}
.ydf{bottom:615.254400pt;}
.y12a{bottom:615.743067pt;}
.y1e0{bottom:616.587187pt;}
.yff{bottom:616.846667pt;}
.y1bd{bottom:617.027867pt;}
.y195{bottom:617.494000pt;}
.y228{bottom:618.258853pt;}
.y206{bottom:618.258973pt;}
.y2f{bottom:619.342933pt;}
.ye1{bottom:619.654533pt;}
.y7e{bottom:621.467600pt;}
.y24b{bottom:622.794373pt;}
.y260{bottom:624.529987pt;}
.y168{bottom:629.343067pt;}
.y4{bottom:630.500800pt;}
.y129{bottom:631.743067pt;}
.y194{bottom:633.627333pt;}
.y227{bottom:634.392253pt;}
.y2e{bottom:635.476267pt;}
.y1df{bottom:637.255987pt;}
.y7d{bottom:637.467600pt;}
.y25f{bottom:637.996627pt;}
.y205{bottom:638.927773pt;}
.yde{bottom:643.121067pt;}
.y24a{bottom:643.463173pt;}
.y128{bottom:645.116267pt;}
.y167{bottom:646.676400pt;}
.ydd{bottom:647.521067pt;}
.y127{bottom:649.180000pt;}
.y1bc{bottom:649.757600pt;}
.y193{bottom:649.760667pt;}
.y226{bottom:650.525653pt;}
.y25e{bottom:651.463387pt;}
.yb2{bottom:651.609200pt;}
.y2d{bottom:651.609733pt;}
.y1de{bottom:653.389387pt;}
.y7c{bottom:653.467600pt;}
.y204{bottom:655.061173pt;}
.y249{bottom:659.596573pt;}
.y3{bottom:662.500693pt;}
.y166{bottom:664.009733pt;}
.y25d{bottom:664.930027pt;}
.y192{bottom:665.894000pt;}
.y1bb{bottom:666.122533pt;}
.y2c{bottom:667.743067pt;}
.y7b{bottom:669.467600pt;}
.y1dd{bottom:669.522667pt;}
.y225{bottom:671.194453pt;}
.y203{bottom:675.729973pt;}
.yab{bottom:677.209733pt;}
.y165{bottom:677.383067pt;}
.y25c{bottom:678.396667pt;}
.ydc{bottom:679.787867pt;}
.y164{bottom:681.513333pt;}
.y191{bottom:682.027333pt;}
.y1ba{bottom:682.487333pt;}
.y2{bottom:683.834080pt;}
.y2b{bottom:683.876400pt;}
.y7a{bottom:685.467600pt;}
.y224{bottom:687.327733pt;}
.y202{bottom:691.863253pt;}
.ydb{bottom:695.921200pt;}
.y248{bottom:696.398773pt;}
.y190{bottom:698.160800pt;}
.y79{bottom:698.800960pt;}
.y1b9{bottom:698.852133pt;}
.y2a{bottom:700.009733pt;}
.y1dc{bottom:701.789333pt;}
.y1{bottom:705.167467pt;}
.y201{bottom:707.996653pt;}
.y25b{bottom:707.996667pt;}
.yda{bottom:712.054533pt;}
.y247{bottom:712.532053pt;}
.y78{bottom:713.467600pt;}
.y18f{bottom:714.294133pt;}
.y1b8{bottom:715.217067pt;}
.y29{bottom:716.143067pt;}
.yd9{bottom:728.187867pt;}
.y200{bottom:728.665453pt;}
.y77{bottom:729.467600pt;}
.y18e{bottom:730.427467pt;}
.y1b7{bottom:731.581867pt;}
.y28{bottom:732.276400pt;}
.y1ff{bottom:744.798733pt;}
.y18d{bottom:746.560800pt;}
.y76{bottom:746.800933pt;}
.y1b6{bottom:747.946667pt;}
.y50{bottom:748.409733pt;}
.y246{bottom:749.334133pt;}
.y1db{bottom:755.858667pt;}
.yd8{bottom:760.454533pt;}
.y1b5{bottom:764.311600pt;}
.y27{bottom:764.543067pt;}
.y75{bottom:765.467600pt;}
.y1fe{bottom:765.467653pt;}
.y1da{bottom:769.192000pt;}
.yd7{bottom:776.587867pt;}
.y18c{bottom:778.827547pt;}
.y26{bottom:780.676400pt;}
.y74{bottom:781.600933pt;}
.y1d9{bottom:782.525333pt;}
.y23{bottom:808.215600pt;}
.y24{bottom:820.260133pt;}
.y4f{bottom:820.281067pt;}
.y25{bottom:820.402267pt;}
.y22{bottom:820.882267pt;}
.y21{bottom:833.548933pt;}
.y26b{bottom:957.899067pt;}
.y26a{bottom:976.297467pt;}
.y269{bottom:994.695867pt;}
.y268{bottom:1013.094267pt;}
.h8{height:23.357500pt;}
.h35{height:23.752742pt;}
.h18{height:25.921875pt;}
.h2f{height:26.206250pt;}
.h16{height:26.500988pt;}
.h1d{height:27.225833pt;}
.h21{height:28.680420pt;}
.h30{height:30.286846pt;}
.h28{height:32.757812pt;}
.h29{height:34.000818pt;}
.h4{height:37.031250pt;}
.h9{height:37.437500pt;}
.h11{height:37.858554pt;}
.h37{height:42.115054pt;}
.h2d{height:42.116121pt;}
.h6{height:42.117188pt;}
.he{height:42.632812pt;}
.h33{height:45.320431pt;}
.h2c{height:45.321498pt;}
.h2b{height:45.322031pt;}
.h3{height:46.796875pt;}
.h1b{height:47.093333pt;}
.h5{height:47.369792pt;}
.h19{height:47.697917pt;}
.h22{height:49.609375pt;}
.hd{height:50.357279pt;}
.h17{height:50.357813pt;}
.ha{height:51.476562pt;}
.h36{height:51.517500pt;}
.h31{height:51.518033pt;}
.h1e{height:53.600000pt;}
.h27{height:54.631250pt;}
.h23{height:54.881794pt;}
.hb{height:56.156250pt;}
.hc{height:56.641050pt;}
.h1a{height:56.693333pt;}
.h7{height:56.843750pt;}
.h34{height:57.958628pt;}
.h2e{height:57.959161pt;}
.h2a{height:58.472813pt;}
.h32{height:58.473346pt;}
.h26{height:59.347087pt;}
.h3a{height:62.812500pt;}
.h25{height:62.942692pt;}
.h14{height:64.396875pt;}
.h12{height:64.397408pt;}
.h2{height:66.317708pt;}
.h20{height:66.933333pt;}
.hf{height:68.784068pt;}
.h10{height:82.926550pt;}
.h13{height:86.298413pt;}
.h24{height:96.276042pt;}
.h1f{height:101.600000pt;}
.h1c{height:127.093333pt;}
.h0{height:907.093333pt;}
.h1{height:907.333333pt;}
.h38{height:1122.520000pt;}
.h39{height:1122.666667pt;}
.h15{height:46933.333333pt;}
.w2{width:437.336000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.w3{width:793.701333pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:25.742667pt;}
.x42{left:30.409333pt;}
.x2b{left:31.742667pt;}
.x2a{left:33.076000pt;}
.x44{left:35.743042pt;}
.x2e{left:38.742663pt;}
.x2d{left:40.742667pt;}
.x32{left:46.409333pt;}
.x1{left:75.590267pt;}
.x29{left:76.924000pt;}
.x59{left:78.316133pt;}
.xc{left:81.694667pt;}
.x21{left:83.272800pt;}
.x5b{left:86.927653pt;}
.x33{left:88.076000pt;}
.xb{left:90.952533pt;}
.x10{left:92.848933pt;}
.x22{left:93.899600pt;}
.x2c{left:95.742667pt;}
.x4{left:98.267467pt;}
.x35{left:103.742650pt;}
.x47{left:105.742667pt;}
.x2f{left:107.409344pt;}
.x30{left:108.742654pt;}
.x37{left:110.742667pt;}
.x38{left:112.076000pt;}
.x5a{left:115.434533pt;}
.x4c{left:119.124133pt;}
.x58{left:120.976533pt;}
.x34{left:127.076000pt;}
.xa{left:132.179200pt;}
.x52{left:135.320267pt;}
.x11{left:136.590133pt;}
.x3a{left:138.076000pt;}
.x25{left:139.933200pt;}
.x12{left:141.099733pt;}
.x4f{left:142.859867pt;}
.x26{left:147.250933pt;}
.x13{left:148.417467pt;}
.x50{left:150.900267pt;}
.x14{left:154.352267pt;}
.x51{left:157.629333pt;}
.x3e{left:159.076000pt;}
.x4d{left:160.618000pt;}
.x15{left:161.669867pt;}
.x36{left:165.076000pt;}
.x4e{left:168.658400pt;}
.x3b{left:173.742667pt;}
.x43{left:174.742792pt;}
.xd{left:176.933467pt;}
.x39{left:178.076000pt;}
.x41{left:181.742667pt;}
.xf{left:182.700667pt;}
.x48{left:183.742667pt;}
.x8{left:187.948800pt;}
.x3d{left:189.076000pt;}
.x27{left:194.079067pt;}
.x3c{left:198.409333pt;}
.x28{left:199.931867pt;}
.x4b{left:201.025200pt;}
.x45{left:202.743313pt;}
.x3f{left:205.742667pt;}
.x46{left:207.076938pt;}
.x54{left:210.764800pt;}
.x40{left:212.076000pt;}
.x49{left:219.742667pt;}
.x5{left:222.080667pt;}
.x4a{left:226.409333pt;}
.x57{left:228.646400pt;}
.xe{left:261.944133pt;}
.x55{left:289.017867pt;}
.x56{left:294.872133pt;}
.x9{left:301.603733pt;}
.x23{left:377.956000pt;}
.x24{left:383.078400pt;}
.x6{left:403.423813pt;}
.x1d{left:408.245733pt;}
.x53{left:414.170133pt;}
.x1e{left:415.563333pt;}
.x2{left:417.785333pt;}
.x18{left:423.329600pt;}
.x19{left:430.647333pt;}
.x7{left:431.844827pt;}
.x1f{left:435.273733pt;}
.x20{left:442.591333pt;}
.x3{left:445.181067pt;}
.x1b{left:500.555867pt;}
.x1c{left:507.873467pt;}
.x16{left:540.248800pt;}
.x17{left:547.566533pt;}
.x1a{left:551.381333pt;}
}




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