
    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_0866e8c4d0edcf0c5c46e152.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;font-style:normal;font-weight: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_0a913e7d7355e133170b4f86.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;font-style:normal;font-weight: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_b07d05119cf6b4396f065989.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;font-style:normal;font-weight: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_c96a5b0bd392755f7f07106b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;font-style:normal;font-weight: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_4846b70f78d5e990884f9349.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;font-style:normal;font-weight: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_89fc49072b5fe57c7fd6f004.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.912000;font-style:normal;font-weight: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_d6728144e74af9180665085f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;font-style:normal;font-weight: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_da893f17d39dd8275928cec8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.991699;font-style:normal;font-weight: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_51085073b4c41d363dfcf0c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;font-style:normal;font-weight: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_4e01e4d0d40b689db1924fc3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.765065;font-style:normal;font-weight: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_b07d05119cf6b4396f065989.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.904000;font-style:normal;font-weight: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_71892616c25ec53444803c47.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707031;font-style:normal;font-weight: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_b816ecabdd6f3ddbcd2118b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight: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_0a913e7d7355e133170b4f86.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912000;font-style:normal;font-weight: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_b07d05119cf6b4396f065989.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;font-style:normal;font-weight: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_c96a5b0bd392755f7f07106b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;font-style:normal;font-weight: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_a43b90adb075b3a10f8bbaf3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.679000;font-style:normal;font-weight: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_803179a94b7bdd64d722284d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871053;font-style:normal;font-weight: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_0a913e7d7355e133170b4f86.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.912000;font-style:normal;font-weight: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_b07d05119cf6b4396f065989.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.904000;font-style:normal;font-weight: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_c96a5b0bd392755f7f07106b.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.912000;font-style:normal;font-weight: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_23e45c481bbd2377f0df215d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.954000;font-style:normal;font-weight: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_f00780573b4bfa2bd63ae8d2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.900000;font-style:normal;font-weight: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_730563aafaa5b406f4ddb07d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.199000;font-style:normal;font-weight: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_01e2bf5d347091f29be641ab.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.940000;font-style:normal;font-weight: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_cc9c96bfc6e12a4f446d3a20.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.954000;font-style:normal;font-weight: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_62fd3d459c8a8d6a1b03d0ee.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.518000;font-style:normal;font-weight: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_f00780573b4bfa2bd63ae8d2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.900000;font-style:normal;font-weight: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_07605cce7206e2f9b1e87d73.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940000;font-style:normal;font-weight: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_03390b0cbca7682a768f703b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.954000;font-style:normal;font-weight: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_78b2fce7c9bcb7cb2911ebc1.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.040000;font-style:normal;font-weight: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_f00780573b4bfa2bd63ae8d2.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.900000;font-style:normal;font-weight: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_1224bc36b59de8f68d518720.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.954000;font-style:normal;font-weight: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_f00780573b4bfa2bd63ae8d2.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.900000;font-style:normal;font-weight: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_78b2fce7c9bcb7cb2911ebc1.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.040000;font-style:normal;font-weight: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_07605cce7206e2f9b1e87d73.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.940000;font-style:normal;font-weight: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_63986da630c55f52ad550cae.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.954000;font-style:normal;font-weight: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_7a8371230b1e86c00db7f0b7.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.954000;font-style:normal;font-weight: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_78b2fce7c9bcb7cb2911ebc1.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.040000;font-style:normal;font-weight: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_0a913e7d7355e133170b4f86.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.912000;font-style:normal;font-weight: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_b07d05119cf6b4396f065989.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.904000;font-style:normal;font-weight: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_c96a5b0bd392755f7f07106b.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.912000;font-style:normal;font-weight: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_d45b7dcd1ee2249c849214d2.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.941000;font-style:normal;font-weight: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_571b33989ff5955fc2fac26b.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight: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_1db45753bed66392cd41edde.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-48.420180px;}
.vd{vertical-align:-27.000000px;}
.vc{vertical-align:-24.300000px;}
.ve{vertical-align:-21.600000px;}
.v9{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.580000px;}
.v8{vertical-align:21.720000px;}
.v1{vertical-align:24.144000px;}
.v2{vertical-align:27.000000px;}
.v3{vertical-align:29.700000px;}
.v7{vertical-align:43.440000px;}
.vb{vertical-align:45.480000px;}
.va{vertical-align:57.012834px;}
.v5{vertical-align:60.480600px;}
.ls7{letter-spacing:-3.540600px;}
.ls5{letter-spacing:-1.776000px;}
.ls21{letter-spacing:-1.140000px;}
.ls23{letter-spacing:-0.840600px;}
.ls22{letter-spacing:-0.755820px;}
.ls26{letter-spacing:-0.675000px;}
.ls24{letter-spacing:-0.557318px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000240px;}
.ls19{letter-spacing:0.000870px;}
.ls17{letter-spacing:0.005430px;}
.ls1a{letter-spacing:0.022080px;}
.ls15{letter-spacing:0.023844px;}
.ls11{letter-spacing:0.027078px;}
.lsd{letter-spacing:0.031272px;}
.lsf{letter-spacing:0.058026px;}
.lsa{letter-spacing:0.059778px;}
.ls13{letter-spacing:0.060870px;}
.ls1c{letter-spacing:0.595800px;}
.ls1d{letter-spacing:0.596400px;}
.ls1f{letter-spacing:0.596700px;}
.ls25{letter-spacing:0.675000px;}
.ls20{letter-spacing:0.888600px;}
.ls1b{letter-spacing:0.900000px;}
.ls16{letter-spacing:3.033600px;}
.ls0{letter-spacing:3.780000px;}
.ls9{letter-spacing:12.933600px;}
.lsc{letter-spacing:12.993600px;}
.lsb{letter-spacing:13.330494px;}
.ls8{letter-spacing:16.293600px;}
.ls18{letter-spacing:16.294200px;}
.ls1e{letter-spacing:16.618284px;}
.ls2{letter-spacing:17.200200px;}
.ls10{letter-spacing:18.513600px;}
.lse{letter-spacing:19.587840px;}
.ls12{letter-spacing:19.593600px;}
.ls14{letter-spacing:23.731866px;}
.ls3{letter-spacing:24.492000px;}
.ls6{letter-spacing:1677.980400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9e{word-spacing:-76.396284px;}
.ws9d{word-spacing:-59.778000px;}
.wsa3{word-spacing:-47.820000px;}
.ws9f{word-spacing:-46.507284px;}
.ws9a{word-spacing:-44.295498px;}
.ws9c{word-spacing:-44.235720px;}
.ws99{word-spacing:-43.159716px;}
.wsa4{word-spacing:-31.545600px;}
.wsa2{word-spacing:-31.545000px;}
.wsa0{word-spacing:-28.243200px;}
.wsa1{word-spacing:-28.185000px;}
.ws6{word-spacing:-20.460000px;}
.ws132{word-spacing:-16.680000px;}
.wsae{word-spacing:-16.618284px;}
.ws4{word-spacing:-15.600000px;}
.wsc7{word-spacing:-15.012000px;}
.wsf0{word-spacing:-14.759400px;}
.wsf1{word-spacing:-14.460000px;}
.ws0{word-spacing:-14.400000px;}
.ws7{word-spacing:-13.344000px;}
.ws1{word-spacing:-12.960000px;}
.ws12c{word-spacing:-12.510000px;}
.ws12e{word-spacing:-12.374550px;}
.ws5{word-spacing:-12.164724px;}
.ws12a{word-spacing:-11.835000px;}
.ws129{word-spacing:-11.520480px;}
.ws32{word-spacing:-11.520000px;}
.wsc6{word-spacing:-10.939500px;}
.ws3{word-spacing:-10.342800px;}
.wse8{word-spacing:-9.952956px;}
.wsef{word-spacing:-9.785482px;}
.ws12b{word-spacing:-9.675000px;}
.wsee{word-spacing:-9.586980px;}
.wsc5{word-spacing:-8.847072px;}
.ws2{word-spacing:-8.592480px;}
.wse9{word-spacing:-8.262000px;}
.wsf2{word-spacing:-7.637760px;}
.ws82{word-spacing:-5.580000px;}
.ws60{word-spacing:-4.800000px;}
.wsfa{word-spacing:-4.440600px;}
.wsb7{word-spacing:-4.380000px;}
.ws91{word-spacing:-4.140000px;}
.ws18{word-spacing:-4.020000px;}
.ws102{word-spacing:-3.959400px;}
.ws21{word-spacing:-3.720000px;}
.wsd4{word-spacing:-3.120000px;}
.ws80{word-spacing:-2.880000px;}
.wsa7{word-spacing:-2.820000px;}
.wsd9{word-spacing:-2.700000px;}
.wsa8{word-spacing:-2.520600px;}
.ws3a{word-spacing:-2.484000px;}
.ws62{word-spacing:-2.460000px;}
.ws22{word-spacing:-2.220000px;}
.ws101{word-spacing:-2.040000px;}
.ws68{word-spacing:-1.980000px;}
.wse0{word-spacing:-1.920000px;}
.ws114{word-spacing:-1.860600px;}
.wsb{word-spacing:-1.860000px;}
.ws65{word-spacing:-1.800000px;}
.ws33{word-spacing:-1.776000px;}
.ws112{word-spacing:-1.740600px;}
.wsc9{word-spacing:-1.680000px;}
.wsaf{word-spacing:-1.619400px;}
.wsde{word-spacing:-1.560000px;}
.wsfc{word-spacing:-1.499400px;}
.ws49{word-spacing:-1.320000px;}
.ws88{word-spacing:-1.020000px;}
.ws61{word-spacing:-0.900000px;}
.wsd7{word-spacing:-0.840600px;}
.wsba{word-spacing:-0.780000px;}
.ws10e{word-spacing:-0.719400px;}
.ws130{word-spacing:-0.675000px;}
.ws6f{word-spacing:-0.660000px;}
.ws13{word-spacing:-0.600000px;}
.wsa5{word-spacing:-0.540000px;}
.wsab{word-spacing:-0.480000px;}
.ws64{word-spacing:-0.300000px;}
.wsea{word-spacing:-0.240000px;}
.ws11b{word-spacing:-0.120000px;}
.ws12d{word-spacing:-0.090000px;}
.wsd2{word-spacing:-0.060600px;}
.ws9b{word-spacing:-0.059778px;}
.ws35{word-spacing:-0.054000px;}
.wsc4{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.ws71{word-spacing:0.079560px;}
.ws70{word-spacing:0.120000px;}
.ws5f{word-spacing:0.240000px;}
.ws8f{word-spacing:0.300000px;}
.ws56{word-spacing:0.420000px;}
.ws8d{word-spacing:0.540000px;}
.ws5d{word-spacing:0.660000px;}
.ws12f{word-spacing:0.675000px;}
.ws8c{word-spacing:0.719400px;}
.ws11{word-spacing:0.780000px;}
.wsb1{word-spacing:0.840600px;}
.ws1c{word-spacing:0.900000px;}
.ws4d{word-spacing:0.914542px;}
.wsff{word-spacing:1.020000px;}
.wsd1{word-spacing:1.080600px;}
.ws120{word-spacing:1.200000px;}
.ws1d{word-spacing:1.260000px;}
.wsf5{word-spacing:1.320000px;}
.ws4c{word-spacing:1.379400px;}
.wse5{word-spacing:1.440000px;}
.ws3b{word-spacing:1.458000px;}
.wsb8{word-spacing:1.560000px;}
.wse2{word-spacing:1.740600px;}
.wsa{word-spacing:1.776000px;}
.ws11a{word-spacing:1.790100px;}
.ws2e{word-spacing:1.860000px;}
.wsb3{word-spacing:1.920000px;}
.wsd5{word-spacing:1.980000px;}
.wse3{word-spacing:2.040000px;}
.ws8a{word-spacing:2.220000px;}
.wsf6{word-spacing:2.279400px;}
.wsad{word-spacing:2.340000px;}
.ws87{word-spacing:2.460000px;}
.ws7f{word-spacing:2.520600px;}
.wscb{word-spacing:2.640600px;}
.ws119{word-spacing:2.700000px;}
.ws25{word-spacing:2.760000px;}
.wseb{word-spacing:2.760600px;}
.ws8e{word-spacing:2.820000px;}
.wsf7{word-spacing:3.120000px;}
.wse6{word-spacing:3.240000px;}
.ws115{word-spacing:3.299400px;}
.wsd0{word-spacing:3.360000px;}
.ws73{word-spacing:3.420600px;}
.wsb9{word-spacing:3.480000px;}
.ws4f{word-spacing:3.540600px;}
.ws12{word-spacing:3.600000px;}
.ws52{word-spacing:3.660000px;}
.ws6e{word-spacing:3.780000px;}
.ws128{word-spacing:3.840000px;}
.wsf9{word-spacing:3.959400px;}
.ws1b{word-spacing:4.020000px;}
.ws126{word-spacing:4.079400px;}
.ws10d{word-spacing:4.097340px;}
.wsca{word-spacing:4.200600px;}
.ws10f{word-spacing:4.296240px;}
.ws66{word-spacing:4.320600px;}
.ws59{word-spacing:4.380000px;}
.ws7e{word-spacing:4.500000px;}
.ws96{word-spacing:4.534920px;}
.wsbf{word-spacing:4.560000px;}
.ws37{word-spacing:4.590000px;}
.ws19{word-spacing:4.620000px;}
.wsfb{word-spacing:4.680000px;}
.ws67{word-spacing:4.739400px;}
.ws127{word-spacing:4.979400px;}
.wsfe{word-spacing:5.040000px;}
.ws94{word-spacing:5.131620px;}
.wsb2{word-spacing:5.160000px;}
.ws45{word-spacing:5.220600px;}
.ws48{word-spacing:5.340000px;}
.ws90{word-spacing:5.400000px;}
.ws10{word-spacing:5.460000px;}
.ws24{word-spacing:5.489640px;}
.wsd{word-spacing:5.520000px;}
.ws108{word-spacing:5.639400px;}
.wsdf{word-spacing:5.759400px;}
.wsc1{word-spacing:5.820000px;}
.wsec{word-spacing:5.880600px;}
.ws10b{word-spacing:6.000600px;}
.ws121{word-spacing:6.006780px;}
.ws63{word-spacing:6.060000px;}
.ws5e{word-spacing:6.120600px;}
.ws10c{word-spacing:6.180000px;}
.ws4e{word-spacing:6.240000px;}
.ws10a{word-spacing:6.300000px;}
.wsb6{word-spacing:6.360000px;}
.ws110{word-spacing:6.480000px;}
.ws6a{word-spacing:6.539400px;}
.wsf3{word-spacing:6.600000px;}
.wse1{word-spacing:6.659400px;}
.ws79{word-spacing:6.780600px;}
.ws95{word-spacing:6.840000px;}
.ws83{word-spacing:6.960000px;}
.ws84{word-spacing:7.020000px;}
.wsed{word-spacing:7.140000px;}
.ws8b{word-spacing:7.260000px;}
.ws122{word-spacing:7.319400px;}
.ws100{word-spacing:7.380000px;}
.wsb5{word-spacing:7.439400px;}
.wsac{word-spacing:7.500000px;}
.ws20{word-spacing:7.560000px;}
.ws11e{word-spacing:7.560600px;}
.ws97{word-spacing:7.620000px;}
.ws107{word-spacing:7.680600px;}
.ws93{word-spacing:7.740000px;}
.ws40{word-spacing:7.800000px;}
.wsc2{word-spacing:7.860000px;}
.ws11f{word-spacing:7.920000px;}
.ws3f{word-spacing:8.040000px;}
.ws38{word-spacing:8.046000px;}
.ws54{word-spacing:8.099400px;}
.ws89{word-spacing:8.160000px;}
.ws109{word-spacing:8.234460px;}
.ws23{word-spacing:8.280000px;}
.ws41{word-spacing:8.340600px;}
.wsc{word-spacing:8.400000px;}
.wsa6{word-spacing:8.460600px;}
.ws58{word-spacing:8.520000px;}
.ws74{word-spacing:8.640000px;}
.ws118{word-spacing:8.760000px;}
.wsfd{word-spacing:8.820000px;}
.ws6c{word-spacing:8.940000px;}
.ws123{word-spacing:8.999400px;}
.ws14{word-spacing:9.060000px;}
.ws26{word-spacing:9.120000px;}
.ws125{word-spacing:9.420000px;}
.ws72{word-spacing:9.540000px;}
.ws6b{word-spacing:9.660000px;}
.ws51{word-spacing:9.720000px;}
.ws43{word-spacing:9.840000px;}
.wscc{word-spacing:10.020600px;}
.ws1f{word-spacing:10.140000px;}
.wsdd{word-spacing:10.140600px;}
.ws76{word-spacing:10.200000px;}
.ws42{word-spacing:10.320000px;}
.wsf8{word-spacing:10.799400px;}
.ws2d{word-spacing:10.860000px;}
.wscd{word-spacing:10.920600px;}
.ws1e{word-spacing:11.100000px;}
.ws57{word-spacing:11.280000px;}
.ws104{word-spacing:11.340000px;}
.wsaa{word-spacing:11.400000px;}
.ws111{word-spacing:11.459400px;}
.ws36{word-spacing:11.502000px;}
.ws11d{word-spacing:11.640000px;}
.ws78{word-spacing:11.700600px;}
.ws5b{word-spacing:11.880000px;}
.ws124{word-spacing:12.180000px;}
.ws47{word-spacing:12.359400px;}
.ws39{word-spacing:12.420000px;}
.ws103{word-spacing:12.479400px;}
.wsbd{word-spacing:12.600600px;}
.ws3d{word-spacing:12.660000px;}
.wsda{word-spacing:12.720600px;}
.ws1a{word-spacing:12.780000px;}
.ws4b{word-spacing:12.840000px;}
.ws4a{word-spacing:12.900000px;}
.ws3c{word-spacing:12.960000px;}
.wsf{word-spacing:13.020000px;}
.wsf4{word-spacing:13.139400px;}
.ws2b{word-spacing:13.260000px;}
.ws3e{word-spacing:13.440000px;}
.ws6d{word-spacing:13.620600px;}
.ws46{word-spacing:13.919400px;}
.ws11c{word-spacing:13.980000px;}
.ws85{word-spacing:14.159400px;}
.ws7b{word-spacing:14.340000px;}
.ws7d{word-spacing:14.400600px;}
.ws77{word-spacing:14.460000px;}
.ws81{word-spacing:14.520000px;}
.ws27{word-spacing:14.580000px;}
.ws50{word-spacing:14.640000px;}
.wsb0{word-spacing:14.700000px;}
.ws2a{word-spacing:14.940000px;}
.wsb4{word-spacing:15.000000px;}
.ws44{word-spacing:15.120000px;}
.ws116{word-spacing:15.240000px;}
.wsd6{word-spacing:15.599400px;}
.wse4{word-spacing:15.780000px;}
.wscf{word-spacing:15.840600px;}
.wsc8{word-spacing:15.960600px;}
.ws2c{word-spacing:16.020000px;}
.ws55{word-spacing:16.140000px;}
.wsce{word-spacing:16.200000px;}
.ws117{word-spacing:16.260000px;}
.ws106{word-spacing:16.379400px;}
.ws75{word-spacing:16.499400px;}
.wsdc{word-spacing:16.860600px;}
.ws5c{word-spacing:17.040000px;}
.wsd8{word-spacing:17.460000px;}
.ws7a{word-spacing:17.520600px;}
.ws7c{word-spacing:17.880000px;}
.wsd3{word-spacing:17.940000px;}
.ws105{word-spacing:18.900000px;}
.ws98{word-spacing:19.440600px;}
.ws113{word-spacing:19.500000px;}
.wsbc{word-spacing:19.680000px;}
.wsa9{word-spacing:19.920000px;}
.ws53{word-spacing:20.100600px;}
.wsc0{word-spacing:20.220600px;}
.wsbe{word-spacing:20.700000px;}
.ws92{word-spacing:21.840000px;}
.wse7{word-spacing:22.500000px;}
.ws31{word-spacing:23.629320px;}
.ws5a{word-spacing:23.879400px;}
.ws28{word-spacing:24.060000px;}
.wsdb{word-spacing:25.020600px;}
.ws86{word-spacing:25.260600px;}
.ws16{word-spacing:25.980000px;}
.ws15{word-spacing:27.360000px;}
.ws2f{word-spacing:27.900000px;}
.ws34{word-spacing:28.080000px;}
.ws29{word-spacing:30.240000px;}
.ws69{word-spacing:30.420000px;}
.wse{word-spacing:32.220000px;}
.wsbb{word-spacing:33.720000px;}
.ws30{word-spacing:35.640000px;}
.ws17{word-spacing:37.560000px;}
.wsc3{word-spacing:71.658000px;}
.ws133{word-spacing:99.982080px;}
.ws8{word-spacing:136.800000px;}
.ws131{word-spacing:1667.055600px;}
._4e{margin-left:-1853.998800px;}
._4c{margin-left:-1583.752800px;}
._4b{margin-left:-1313.694000px;}
._a{margin-left:-1293.984000px;}
._4d{margin-left:-1253.817600px;}
._9{margin-left:-1099.200000px;}
._b{margin-left:-901.680000px;}
._4f{margin-left:-550.200000px;}
._4a{margin-left:-500.280000px;}
._8{margin-left:-59.040000px;}
._6{margin-left:-47.970000px;}
._d{margin-left:-28.264200px;}
._2a{margin-left:-25.680000px;}
._2b{margin-left:-21.300000px;}
._11{margin-left:-16.980000px;}
._25{margin-left:-14.040000px;}
._42{margin-left:-11.820000px;}
._5{margin-left:-10.740000px;}
._48{margin-left:-9.675000px;}
._e{margin-left:-8.460000px;}
._10{margin-left:-7.140000px;}
._4{margin-left:-5.670000px;}
._c{margin-left:-4.450800px;}
._2{margin-left:-3.381600px;}
._0{margin-left:-1.776000px;}
._3{width:1.074600px;}
._7{width:2.477400px;}
._f{width:3.937800px;}
._12{width:7.680000px;}
._46{width:9.675450px;}
._41{width:12.960000px;}
._1{width:14.040000px;}
._14{width:15.901356px;}
._49{width:18.810000px;}
._44{width:20.610000px;}
._43{width:21.780000px;}
._45{width:30.870000px;}
._47{width:32.894100px;}
._13{width:38.016000px;}
._18{width:54.000000px;}
._16{width:71.928000px;}
._1a{width:74.790000px;}
._35{width:94.716000px;}
._21{width:99.294000px;}
._3b{width:101.142000px;}
._23{width:104.922000px;}
._26{width:113.919600px;}
._3d{width:120.150000px;}
._2f{width:132.354000px;}
._1f{width:134.946000px;}
._1b{width:139.536000px;}
._36{width:151.104000px;}
._2d{width:152.562000px;}
._1e{width:159.234000px;}
._15{width:165.132000px;}
._1d{width:169.560000px;}
._24{width:180.576000px;}
._29{width:197.574000px;}
._28{width:199.584000px;}
._34{width:207.198000px;}
._32{width:221.922000px;}
._27{width:225.384000px;}
._20{width:229.608000px;}
._1c{width:249.534000px;}
._3a{width:264.443088px;}
._31{width:281.970000px;}
._17{width:287.550000px;}
._19{width:308.556000px;}
._38{width:312.714000px;}
._22{width:328.470000px;}
._37{width:340.632000px;}
._30{width:372.978000px;}
._3c{width:388.476000px;}
._39{width:397.224000px;}
._2e{width:432.000000px;}
._33{width:452.022000px;}
._2c{width:487.728000px;}
._3f{width:714.528000px;}
._40{width:752.544000px;}
._3e{width:911.898000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc5{color:rgb(65,64,153);}
.fc0{color:rgb(65,64,153);}
.fsb{font-size:31.824000px;}
.fs3{font-size:35.802000px;}
.fs8{font-size:39.000000px;}
.fs4{font-size:39.780000px;}
.fs7{font-size:43.758000px;}
.fsc{font-size:45.000000px;}
.fsa{font-size:47.820000px;}
.fs1{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:59.778000px;}
.fs0{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fse{font-size:72.000000px;}
.fsd{font-size:90.000000px;}
.fs5{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.ye6{bottom:2.165850px;}
.ye5{bottom:2.286000px;}
.yfe{bottom:3.541800px;}
.yf6{bottom:3.573150px;}
.yed{bottom:4.035150px;}
.ye3{bottom:5.181000px;}
.y100{bottom:6.078300px;}
.y10b{bottom:6.234450px;}
.y103{bottom:6.249300px;}
.yfa{bottom:13.786800px;}
.yf2{bottom:13.818300px;}
.yf4{bottom:23.920782px;}
.yfc{bottom:30.856800px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y1d0{bottom:81.571350px;}
.yd3{bottom:81.586200px;}
.y1e9{bottom:81.586350px;}
.yb1{bottom:81.601350px;}
.y51{bottom:81.604650px;}
.y32{bottom:81.610800px;}
.y15a{bottom:81.611550px;}
.y179{bottom:81.631350px;}
.y6b{bottom:81.637800px;}
.y126{bottom:81.721350px;}
.y1a5{bottom:96.586200px;}
.y6a{bottom:96.637800px;}
.yd2{bottom:97.786200px;}
.y1cf{bottom:99.571350px;}
.yb0{bottom:99.601350px;}
.y50{bottom:99.604650px;}
.y31{bottom:99.610800px;}
.y159{bottom:99.611550px;}
.y178{bottom:99.631350px;}
.y125{bottom:99.721350px;}
.y1e8{bottom:101.986350px;}
.y1a4{bottom:111.586200px;}
.y1e7{bottom:111.586350px;}
.y69{bottom:111.637800px;}
.y299{bottom:113.999955px;}
.y22c{bottom:115.427100px;}
.y27b{bottom:115.697100px;}
.y1ce{bottom:117.571350px;}
.yaf{bottom:117.601350px;}
.y4f{bottom:117.604650px;}
.y30{bottom:117.610800px;}
.y158{bottom:117.611550px;}
.y177{bottom:117.631350px;}
.y124{bottom:117.721350px;}
.y22b{bottom:128.173350px;}
.y27a{bottom:128.443350px;}
.y29a{bottom:128.999955px;}
.y1e6{bottom:131.986350px;}
.y1cd{bottom:135.571350px;}
.yae{bottom:135.601350px;}
.y4e{bottom:135.604650px;}
.y2f{bottom:135.610800px;}
.y157{bottom:135.611550px;}
.y176{bottom:135.631350px;}
.y123{bottom:135.721350px;}
.y1a3{bottom:138.142650px;}
.y68{bottom:140.137800px;}
.y22a{bottom:140.919600px;}
.y279{bottom:141.189600px;}
.y1e5{bottom:141.586350px;}
.y1cc{bottom:153.571350px;}
.yad{bottom:153.601350px;}
.y4d{bottom:153.604650px;}
.y2e{bottom:153.610800px;}
.y175{bottom:153.631350px;}
.y229{bottom:153.665850px;}
.y122{bottom:153.721350px;}
.y278{bottom:153.935850px;}
.y1a2{bottom:154.342650px;}
.y67{bottom:155.137800px;}
.y1e4{bottom:161.986350px;}
.y297{bottom:164.999955px;}
.y228{bottom:166.412100px;}
.y277{bottom:166.682100px;}
.y1cb{bottom:171.571350px;}
.yac{bottom:171.601350px;}
.y4c{bottom:171.604650px;}
.y2d{bottom:171.610800px;}
.y174{bottom:171.631350px;}
.y121{bottom:171.721350px;}
.y1a1{bottom:174.484650px;}
.y1e3{bottom:176.986350px;}
.y227{bottom:179.158350px;}
.y276{bottom:179.428350px;}
.y298{bottom:179.999955px;}
.y156{bottom:186.221550px;}
.y1e2{bottom:186.586350px;}
.y1ca{bottom:189.571350px;}
.yab{bottom:189.601350px;}
.y4b{bottom:189.604650px;}
.y2c{bottom:189.610800px;}
.y173{bottom:189.631350px;}
.y120{bottom:189.721350px;}
.y1a0{bottom:190.684650px;}
.y226{bottom:191.904600px;}
.y275{bottom:192.174600px;}
.y155{bottom:204.221550px;}
.y225{bottom:204.650850px;}
.y274{bottom:204.920850px;}
.y1e1{bottom:206.986350px;}
.y1c9{bottom:207.571350px;}
.yaa{bottom:207.601350px;}
.y4a{bottom:207.604650px;}
.y2b{bottom:207.610800px;}
.y172{bottom:207.631350px;}
.y11f{bottom:207.721350px;}
.y19f{bottom:212.325150px;}
.y295{bottom:215.999955px;}
.y1e0{bottom:216.586350px;}
.y224{bottom:217.397100px;}
.y273{bottom:217.667100px;}
.y154{bottom:222.221550px;}
.y1c8{bottom:225.571350px;}
.ya9{bottom:225.601350px;}
.y49{bottom:225.604650px;}
.y2a{bottom:225.610800px;}
.y171{bottom:225.631350px;}
.y11e{bottom:225.721350px;}
.y19e{bottom:228.525150px;}
.y223{bottom:230.143350px;}
.y272{bottom:230.413350px;}
.y296{bottom:230.999955px;}
.y1df{bottom:236.986350px;}
.y153{bottom:240.221550px;}
.y222{bottom:242.889600px;}
.y271{bottom:243.159600px;}
.y1c7{bottom:243.571350px;}
.ya8{bottom:243.601350px;}
.y48{bottom:243.604650px;}
.y29{bottom:243.610800px;}
.y170{bottom:243.631350px;}
.y11d{bottom:243.721350px;}
.y1de{bottom:246.586350px;}
.y19d{bottom:250.165650px;}
.y221{bottom:255.635850px;}
.y270{bottom:255.905850px;}
.y152{bottom:258.221550px;}
.y1c6{bottom:261.571350px;}
.ya7{bottom:261.601350px;}
.y47{bottom:261.604650px;}
.y16f{bottom:261.631350px;}
.y11c{bottom:261.721350px;}
.y19c{bottom:266.365650px;}
.y220{bottom:268.382100px;}
.y26f{bottom:268.652100px;}
.y1dd{bottom:275.086350px;}
.y151{bottom:276.221550px;}
.y1c5{bottom:279.571350px;}
.ya6{bottom:279.601350px;}
.y46{bottom:279.604650px;}
.y16e{bottom:279.631350px;}
.y11b{bottom:279.721350px;}
.y21f{bottom:281.128350px;}
.y26e{bottom:281.398350px;}
.y19b{bottom:288.006150px;}
.y1dc{bottom:293.086350px;}
.y21e{bottom:293.874600px;}
.y26d{bottom:294.144600px;}
.y150{bottom:294.221550px;}
.y28{bottom:294.382800px;}
.y1c4{bottom:297.571350px;}
.ya5{bottom:297.601350px;}
.y45{bottom:297.604650px;}
.y16d{bottom:297.631350px;}
.y11a{bottom:297.721350px;}
.y19a{bottom:304.206150px;}
.y21d{bottom:306.620850px;}
.y26c{bottom:306.890850px;}
.y27{bottom:310.879800px;}
.y1db{bottom:311.086350px;}
.y14f{bottom:312.221550px;}
.y1c3{bottom:315.571350px;}
.ya4{bottom:315.601350px;}
.y44{bottom:315.604650px;}
.y119{bottom:315.721350px;}
.y21c{bottom:319.367100px;}
.y26b{bottom:319.637100px;}
.y199{bottom:325.846650px;}
.y26{bottom:327.376800px;}
.y1da{bottom:329.086350px;}
.y14e{bottom:330.221550px;}
.y21b{bottom:332.113350px;}
.y26a{bottom:332.383350px;}
.y1c2{bottom:333.571350px;}
.ya3{bottom:333.601350px;}
.y43{bottom:333.604650px;}
.y16c{bottom:333.616350px;}
.y118{bottom:333.721350px;}
.y25{bottom:343.873800px;}
.y21a{bottom:344.859600px;}
.y269{bottom:345.129600px;}
.y1d9{bottom:347.086350px;}
.y197{bottom:347.487150px;}
.y14d{bottom:348.221550px;}
.y1c1{bottom:351.571350px;}
.ya2{bottom:351.601350px;}
.y42{bottom:351.604650px;}
.y16b{bottom:351.616350px;}
.y117{bottom:351.721350px;}
.y219{bottom:357.605850px;}
.y268{bottom:357.875850px;}
.y24{bottom:360.370800px;}
.y196{bottom:363.682350px;}
.y198{bottom:363.687150px;}
.y1d8{bottom:365.086350px;}
.y14c{bottom:366.221550px;}
.y1c0{bottom:369.571350px;}
.ya1{bottom:369.601350px;}
.y41{bottom:369.604650px;}
.y16a{bottom:369.616350px;}
.y116{bottom:369.721350px;}
.y218{bottom:370.352100px;}
.y267{bottom:370.622100px;}
.y23{bottom:376.867800px;}
.y1d7{bottom:383.086350px;}
.y217{bottom:383.098350px;}
.y266{bottom:383.368350px;}
.y14b{bottom:384.221550px;}
.y195{bottom:385.322850px;}
.y1bf{bottom:387.571350px;}
.ya0{bottom:387.601350px;}
.y40{bottom:387.604650px;}
.y169{bottom:387.616350px;}
.y115{bottom:387.721350px;}
.y22{bottom:393.364800px;}
.y216{bottom:395.844600px;}
.y265{bottom:396.114600px;}
.y1d6{bottom:401.086350px;}
.y14a{bottom:402.221550px;}
.y194{bottom:405.464550px;}
.y1be{bottom:405.571350px;}
.y9f{bottom:405.601350px;}
.y3f{bottom:405.604650px;}
.y168{bottom:405.616350px;}
.y114{bottom:405.721350px;}
.y215{bottom:408.590850px;}
.y264{bottom:408.860850px;}
.y21{bottom:409.861800px;}
.yd9{bottom:415.276200px;}
.y1d5{bottom:419.086350px;}
.y214{bottom:421.337100px;}
.y263{bottom:421.607100px;}
.y1bd{bottom:423.571350px;}
.y9e{bottom:423.601350px;}
.y3e{bottom:423.604650px;}
.y167{bottom:423.616350px;}
.y113{bottom:423.721350px;}
.y20{bottom:426.358800px;}
.y193{bottom:430.102050px;}
.yd8{bottom:433.276200px;}
.y213{bottom:434.083350px;}
.y262{bottom:434.353350px;}
.y1d4{bottom:437.086350px;}
.y1bc{bottom:441.571350px;}
.y9d{bottom:441.601350px;}
.y3d{bottom:441.604650px;}
.y166{bottom:441.616350px;}
.y112{bottom:441.721350px;}
.y1f{bottom:442.855800px;}
.y149{bottom:445.436400px;}
.y192{bottom:446.302050px;}
.y212{bottom:446.829600px;}
.y261{bottom:447.099600px;}
.yd7{bottom:451.276200px;}
.y1d3{bottom:455.086350px;}
.y1e{bottom:459.352800px;}
.y1bb{bottom:459.571350px;}
.y211{bottom:459.575850px;}
.y9c{bottom:459.601350px;}
.y3c{bottom:459.604650px;}
.y111{bottom:459.721350px;}
.y260{bottom:459.845850px;}
.y148{bottom:460.436400px;}
.y191{bottom:462.502050px;}
.yd6{bottom:469.276200px;}
.y210{bottom:472.322100px;}
.y25f{bottom:472.592100px;}
.y1d2{bottom:473.086350px;}
.y147{bottom:475.436400px;}
.y1d{bottom:475.849800px;}
.y1ba{bottom:477.571350px;}
.y9b{bottom:477.601350px;}
.y3b{bottom:477.604650px;}
.y110{bottom:477.721350px;}
.y190{bottom:478.702050px;}
.y20f{bottom:485.068350px;}
.y25e{bottom:485.338350px;}
.yd5{bottom:487.276200px;}
.y146{bottom:490.436400px;}
.y1d1{bottom:491.086350px;}
.y1c{bottom:492.346800px;}
.y1b9{bottom:495.571350px;}
.y9a{bottom:495.601350px;}
.y3a{bottom:495.604650px;}
.y20e{bottom:497.814600px;}
.y25d{bottom:498.084600px;}
.y18f{bottom:500.342550px;}
.yd4{bottom:505.276200px;}
.y145{bottom:505.436400px;}
.y294{bottom:508.500000px;}
.y1b{bottom:508.843800px;}
.y10f{bottom:510.147450px;}
.y20d{bottom:510.560850px;}
.y25c{bottom:510.830850px;}
.y1b8{bottom:513.571350px;}
.ycf{bottom:513.586350px;}
.y99{bottom:513.601350px;}
.y39{bottom:513.604650px;}
.y144{bottom:520.436400px;}
.y18e{bottom:522.356400px;}
.y20c{bottom:523.307100px;}
.y25b{bottom:523.577100px;}
.y1a{bottom:525.346800px;}
.y10e{bottom:528.147450px;}
.y1b7{bottom:531.571350px;}
.yce{bottom:531.586350px;}
.y98{bottom:531.601350px;}
.y38{bottom:531.604650px;}
.y20b{bottom:536.053350px;}
.y25a{bottom:536.323350px;}
.y19{bottom:541.843800px;}
.y10d{bottom:546.147450px;}
.y143{bottom:547.710000px;}
.y20a{bottom:548.799600px;}
.y259{bottom:549.069600px;}
.y1b6{bottom:549.571350px;}
.ycd{bottom:549.586350px;}
.y97{bottom:549.601350px;}
.y37{bottom:549.604650px;}
.yd1{bottom:555.061200px;}
.y18{bottom:558.343800px;}
.y293{bottom:561.000000px;}
.y209{bottom:561.545850px;}
.y258{bottom:561.815850px;}
.y142{bottom:563.910000px;}
.y10c{bottom:564.147450px;}
.y1b5{bottom:567.571350px;}
.ycc{bottom:567.586350px;}
.y96{bottom:567.601350px;}
.y36{bottom:567.610800px;}
.y291{bottom:568.499955px;}
.yd0{bottom:571.261200px;}
.y1aa{bottom:572.376750px;}
.y208{bottom:574.292100px;}
.y257{bottom:574.562100px;}
.y17{bottom:574.852800px;}
.y141{bottom:580.110000px;}
.y1b4{bottom:585.571350px;}
.ycb{bottom:585.586350px;}
.y95{bottom:585.601350px;}
.y35{bottom:585.610800px;}
.y292{bottom:586.499955px;}
.y207{bottom:587.038350px;}
.y10a{bottom:587.262000px;}
.y256{bottom:587.308350px;}
.y1a9{bottom:590.376750px;}
.y1ae{bottom:590.496750px;}
.y16{bottom:591.349800px;}
.y109{bottom:591.762450px;}
.y206{bottom:599.788350px;}
.y255{bottom:600.054600px;}
.y140{bottom:600.252000px;}
.y1b3{bottom:603.571350px;}
.yca{bottom:603.586350px;}
.y94{bottom:603.601350px;}
.y34{bottom:603.610800px;}
.y15{bottom:607.846800px;}
.y1a8{bottom:608.376750px;}
.y1ad{bottom:608.616750px;}
.y254{bottom:612.800850px;}
.y13f{bottom:616.452000px;}
.y108{bottom:620.764800px;}
.y1b2{bottom:621.571350px;}
.yc9{bottom:621.586350px;}
.y93{bottom:621.601350px;}
.y33{bottom:621.610800px;}
.y14{bottom:624.343800px;}
.y253{bottom:625.547100px;}
.y1a7{bottom:626.376750px;}
.y1ac{bottom:626.736750px;}
.y66{bottom:627.934650px;}
.y13e{bottom:632.652000px;}
.y252{bottom:638.293350px;}
.y107{bottom:638.764800px;}
.y1b1{bottom:639.571350px;}
.yc8{bottom:639.586350px;}
.y92{bottom:639.601350px;}
.y13{bottom:640.843800px;}
.y65{bottom:642.934650px;}
.y1a6{bottom:644.376750px;}
.y1ab{bottom:644.856750px;}
.y13d{bottom:648.852000px;}
.y251{bottom:651.039600px;}
.y205{bottom:653.233350px;}
.y106{bottom:656.764800px;}
.y12{bottom:657.379800px;}
.y1b0{bottom:657.571350px;}
.yc7{bottom:657.586350px;}
.y64{bottom:657.934650px;}
.y28e{bottom:659.999955px;}
.y250{bottom:663.785850px;}
.y204{bottom:667.633350px;}
.y13c{bottom:670.492500px;}
.y11{bottom:673.876800px;}
.y105{bottom:674.764800px;}
.y1af{bottom:675.571350px;}
.yc6{bottom:675.586350px;}
.y24f{bottom:676.532100px;}
.y28f{bottom:677.999955px;}
.y290{bottom:680.999955px;}
.y203{bottom:682.033350px;}
.y77{bottom:682.615500px;}
.y63{bottom:686.434650px;}
.y13b{bottom:686.692500px;}
.y18d{bottom:687.186750px;}
.y24e{bottom:689.278350px;}
.y10{bottom:690.373800px;}
.y104{bottom:692.764800px;}
.y91{bottom:693.571350px;}
.yc5{bottom:693.586350px;}
.y76{bottom:699.112500px;}
.y62{bottom:701.434650px;}
.y24d{bottom:702.024600px;}
.y18c{bottom:702.186750px;}
.y202{bottom:702.433350px;}
.y13a{bottom:702.892500px;}
.y102{bottom:704.614500px;}
.yff{bottom:704.764500px;}
.yf{bottom:706.870800px;}
.y288{bottom:707.999775px;}
.y101{bottom:710.764800px;}
.y90{bottom:711.571350px;}
.yc4{bottom:711.586350px;}
.y24c{bottom:714.770850px;}
.y75{bottom:715.609500px;}
.y61{bottom:716.434650px;}
.y201{bottom:716.833350px;}
.y18b{bottom:717.186750px;}
.y289{bottom:722.999775px;}
.ye{bottom:723.367800px;}
.y139{bottom:724.533000px;}
.y24b{bottom:727.517100px;}
.y8f{bottom:729.571350px;}
.yc3{bottom:729.586350px;}
.y200{bottom:731.233350px;}
.y60{bottom:731.434650px;}
.y74{bottom:732.118500px;}
.y18a{bottom:732.186750px;}
.yf9{bottom:735.379500px;}
.y28a{bottom:737.999925px;}
.yf8{bottom:738.378300px;}
.yd{bottom:739.864800px;}
.y24a{bottom:740.263350px;}
.y1ff{bottom:745.633350px;}
.yfb{bottom:746.166300px;}
.y138{bottom:746.173500px;}
.y5f{bottom:746.434650px;}
.y8e{bottom:747.571350px;}
.yc2{bottom:747.586350px;}
.y73{bottom:748.615500px;}
.y28b{bottom:752.999925px;}
.y249{bottom:753.009600px;}
.yfd{bottom:755.031300px;}
.yc{bottom:756.361800px;}
.y189{bottom:758.731500px;}
.y1fe{bottom:760.033350px;}
.y5e{bottom:761.434650px;}
.y72{bottom:765.112500px;}
.y8d{bottom:765.571350px;}
.yc1{bottom:765.586350px;}
.y248{bottom:765.755850px;}
.y137{bottom:767.814000px;}
.y28c{bottom:767.999925px;}
.yb{bottom:772.858800px;}
.y1fd{bottom:774.433350px;}
.yf1{bottom:777.258000px;}
.y247{bottom:778.502100px;}
.y188{bottom:778.873500px;}
.y287{bottom:780.000000px;}
.yf0{bottom:780.252150px;}
.yf7{bottom:780.258300px;}
.y71{bottom:781.609500px;}
.y28d{bottom:783.000075px;}
.y8c{bottom:783.571350px;}
.yc0{bottom:783.586350px;}
.y5d{bottom:785.434650px;}
.yf3{bottom:788.256300px;}
.ya{bottom:789.355800px;}
.y136{bottom:789.454500px;}
.y246{bottom:791.248350px;}
.y1fc{bottom:794.833350px;}
.y70{bottom:798.118500px;}
.yf5{bottom:798.171150px;}
.y5c{bottom:800.434650px;}
.y187{bottom:800.514000px;}
.y8b{bottom:801.571350px;}
.ybf{bottom:801.586350px;}
.y245{bottom:803.994600px;}
.y135{bottom:805.654500px;}
.y9{bottom:805.852800px;}
.y6f{bottom:814.615500px;}
.y1fb{bottom:815.233350px;}
.y5b{bottom:815.434650px;}
.y244{bottom:816.740850px;}
.y8a{bottom:819.571350px;}
.ybe{bottom:819.586350px;}
.y285{bottom:822.000000px;}
.y186{bottom:822.154500px;}
.y8{bottom:822.349800px;}
.y286{bottom:824.999955px;}
.y134{bottom:827.295000px;}
.yef{bottom:827.322150px;}
.y243{bottom:829.487100px;}
.y5a{bottom:830.434650px;}
.y6e{bottom:831.112500px;}
.y1fa{bottom:835.633350px;}
.y89{bottom:837.571350px;}
.ybd{bottom:837.586350px;}
.y7{bottom:838.846800px;}
.y242{bottom:842.233350px;}
.y185{bottom:843.795000px;}
.y59{bottom:845.434650px;}
.y6d{bottom:847.609500px;}
.y133{bottom:848.935500px;}
.y1f9{bottom:850.033350px;}
.yec{bottom:850.587000px;}
.y284{bottom:852.000000px;}
.yee{bottom:854.937150px;}
.yeb{bottom:854.939850px;}
.y241{bottom:854.979600px;}
.y6{bottom:855.343800px;}
.y88{bottom:855.571350px;}
.ybc{bottom:855.586350px;}
.y58{bottom:860.434650px;}
.y1f8{bottom:864.433350px;}
.y184{bottom:865.435500px;}
.y240{bottom:867.725850px;}
.y132{bottom:870.576000px;}
.y5{bottom:871.840800px;}
.y87{bottom:873.571350px;}
.ybb{bottom:873.586350px;}
.y57{bottom:875.434650px;}
.y1f7{bottom:878.833350px;}
.y6c{bottom:879.340800px;}
.y23f{bottom:880.472100px;}
.yea{bottom:883.694850px;}
.y183{bottom:887.076000px;}
.y4{bottom:888.340800px;}
.y56{bottom:890.434650px;}
.y86{bottom:891.571350px;}
.yba{bottom:891.586350px;}
.y131{bottom:892.216500px;}
.y23e{bottom:893.218350px;}
.y1f6{bottom:893.233350px;}
.ye9{bottom:901.694850px;}
.y23d{bottom:905.964600px;}
.y182{bottom:908.716500px;}
.y85{bottom:909.571350px;}
.y165{bottom:909.581550px;}
.yb9{bottom:909.586350px;}
.y1f5{bottom:913.633350px;}
.y130{bottom:913.857000px;}
.y282{bottom:914.999955px;}
.y23c{bottom:918.710850px;}
.ye8{bottom:919.694850px;}
.y84{bottom:927.571350px;}
.y164{bottom:927.581550px;}
.yb8{bottom:927.586350px;}
.y283{bottom:929.999955px;}
.y181{bottom:930.357000px;}
.y23b{bottom:931.457100px;}
.y1f4{bottom:934.033350px;}
.y12f{bottom:935.497500px;}
.ye7{bottom:937.694850px;}
.y23a{bottom:944.203350px;}
.y83{bottom:945.571350px;}
.y163{bottom:945.581550px;}
.yb7{bottom:945.586350px;}
.y1f3{bottom:948.433350px;}
.y180{bottom:951.997500px;}
.y239{bottom:956.949600px;}
.y12e{bottom:957.138000px;}
.y55{bottom:957.340650px;}
.ye2{bottom:960.060000px;}
.y82{bottom:963.571350px;}
.y162{bottom:963.581550px;}
.yb6{bottom:963.586350px;}
.ye4{bottom:965.241000px;}
.ye1{bottom:965.309850px;}
.y1f2{bottom:968.833350px;}
.y238{bottom:969.695850px;}
.y17f{bottom:973.638000px;}
.y12d{bottom:978.778500px;}
.y81{bottom:981.571350px;}
.yb5{bottom:981.586350px;}
.y237{bottom:982.442100px;}
.y1f1{bottom:983.233350px;}
.y280{bottom:986.999955px;}
.y236{bottom:995.188350px;}
.y17e{bottom:995.278500px;}
.y1f0{bottom:997.633350px;}
.ye0{bottom:999.091200px;}
.y161{bottom:999.566550px;}
.y80{bottom:999.571350px;}
.yb4{bottom:999.586350px;}
.y12c{bottom:1000.419000px;}
.y281{bottom:1005.000000px;}
.y235{bottom:1007.934600px;}
.y54{bottom:1015.828650px;}
.y17d{bottom:1016.919000px;}
.ydf{bottom:1017.091200px;}
.y160{bottom:1017.566550px;}
.y7f{bottom:1017.571350px;}
.yb3{bottom:1017.586350px;}
.y1ef{bottom:1018.033350px;}
.y12b{bottom:1020.561000px;}
.y234{bottom:1020.680850px;}
.y1ee{bottom:1032.433350px;}
.y233{bottom:1033.427100px;}
.yde{bottom:1035.091200px;}
.y15f{bottom:1035.566550px;}
.y7e{bottom:1035.571350px;}
.yb2{bottom:1035.586350px;}
.y17c{bottom:1037.061000px;}
.y27f{bottom:1041.000000px;}
.y129{bottom:1045.198500px;}
.y232{bottom:1046.173350px;}
.y1ed{bottom:1046.833350px;}
.ydd{bottom:1053.091200px;}
.y15e{bottom:1053.566550px;}
.y7d{bottom:1053.571350px;}
.y53{bottom:1054.834650px;}
.y231{bottom:1058.919600px;}
.y12a{bottom:1061.398500px;}
.y17b{bottom:1061.698500px;}
.y27c{bottom:1061.999910px;}
.ydc{bottom:1071.091200px;}
.y15d{bottom:1071.566550px;}
.y7c{bottom:1071.571350px;}
.y230{bottom:1071.665850px;}
.y17a{bottom:1077.898500px;}
.y1ec{bottom:1079.233350px;}
.y128{bottom:1083.415350px;}
.y22f{bottom:1084.412100px;}
.y27d{bottom:1084.499910px;}
.ydb{bottom:1089.091200px;}
.y15c{bottom:1089.566550px;}
.y7b{bottom:1089.571350px;}
.y52{bottom:1093.840650px;}
.y1eb{bottom:1094.233350px;}
.y22e{bottom:1097.158350px;}
.y127{bottom:1099.912350px;}
.y27e{bottom:1106.999910px;}
.yda{bottom:1107.091200px;}
.y15b{bottom:1107.566550px;}
.y7a{bottom:1107.571350px;}
.y22d{bottom:1109.904600px;}
.y1ea{bottom:1114.633350px;}
.y3{bottom:1140.946200px;}
.y79{bottom:1140.946350px;}
.y78{bottom:1170.000000px;}
.h22{height:15.903000px;}
.h23{height:16.065000px;}
.h1e{height:16.140060px;}
.h19{height:16.146000px;}
.h24{height:16.389000px;}
.h13{height:21.168000px;}
.h2c{height:23.167872px;}
.h1f{height:32.613240px;}
.h2d{height:32.895000px;}
.h1b{height:34.452000px;}
.h3{height:34.944000px;}
.h27{height:35.088000px;}
.hf{height:36.000000px;}
.h20{height:38.880000px;}
.h5{height:39.312000px;}
.h11{height:39.474000px;}
.h1c{height:39.812148px;}
.h14{height:40.768596px;}
.h15{height:42.203268px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.ha{height:44.040000px;}
.h26{height:44.863344px;}
.h1a{height:48.451380px;}
.h10{height:50.062500px;}
.h6{height:50.207856px;}
.h8{height:50.315856px;}
.h9{height:50.339856px;}
.h7{height:50.351856px;}
.h29{height:50.471262px;}
.h2a{height:50.472462px;}
.h2b{height:50.490462px;}
.h1d{height:52.048596px;}
.h16{height:52.348596px;}
.hc{height:56.173920px;}
.hb{height:56.198520px;}
.h12{height:56.199120px;}
.h25{height:56.204520px;}
.h28{height:56.217720px;}
.he{height:61.687098px;}
.h30{height:62.578125px;}
.h17{height:62.871720px;}
.h31{height:75.093750px;}
.h18{height:76.053240px;}
.h2f{height:93.867188px;}
.hd{height:95.906250px;}
.h21{height:99.216102px;}
.h2e{height:1189.500000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w6{width:29.052000px;}
.w7{width:52.623000px;}
.w4{width:82.015500px;}
.w5{width:144.291000px;}
.w3{width:212.139000px;}
.w8{width:266.652000px;}
.w2{width:287.199000px;}
.w9{width:892.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x1b{left:-2.014800px;}
.x0{left:0.000000px;}
.x1d{left:45.415200px;}
.x12{left:52.250700px;}
.x20{left:58.825200px;}
.x7{left:60.750000px;}
.x1e{left:62.705987px;}
.x3{left:66.450000px;}
.x8{left:70.399950px;}
.xe{left:74.249850px;}
.x2e{left:80.470500px;}
.x14{left:82.085700px;}
.x37{left:84.667500px;}
.x25{left:96.155550px;}
.x44{left:126.000000px;}
.x40{left:127.956165px;}
.x3d{left:131.952390px;}
.x23{left:137.315550px;}
.x41{left:143.976660px;}
.x3c{left:148.962255px;}
.x3f{left:178.949985px;}
.x2f{left:186.864000px;}
.x16{left:193.250550px;}
.x30{left:194.397000px;}
.x42{left:197.994480px;}
.x31{left:201.916500px;}
.x4{left:220.379400px;}
.x2c{left:234.762000px;}
.x34{left:243.750000px;}
.x2{left:274.097550px;}
.x39{left:276.000000px;}
.x2d{left:336.673500px;}
.x3a{left:346.860030px;}
.x43{left:381.030030px;}
.x35{left:392.358000px;}
.xf{left:460.339950px;}
.x32{left:461.892750px;}
.x18{left:473.827200px;}
.x38{left:484.121250px;}
.x27{left:489.383550px;}
.x11{left:502.648500px;}
.x2a{left:512.922000px;}
.x5{left:537.516150px;}
.x19{left:540.178500px;}
.xa{left:546.518850px;}
.x6{left:551.017800px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x21{left:574.102500px;}
.x13{left:576.274200px;}
.x3b{left:600.253515px;}
.x22{left:601.828050px;}
.x1a{left:605.239500px;}
.x33{left:608.894250px;}
.x1c{left:612.794700px;}
.xd{left:617.003850px;}
.x1f{left:676.409700px;}
.x15{left:687.454200px;}
.x36{left:689.574000px;}
.x28{left:692.143500px;}
.x24{left:710.638200px;}
.x26{left:718.393200px;}
.x10{left:722.043750px;}
.x3e{left:739.499040px;}
.x29{left:744.766200px;}
.x9{left:752.065200px;}
.x2b{left:779.573700px;}
.x1{left:787.163400px;}
.x17{left:789.847200px;}
@media print{
.v6{vertical-align:-43.040160pt;}
.vd{vertical-align:-24.000000pt;}
.vc{vertical-align:-21.600000pt;}
.ve{vertical-align:-19.200000pt;}
.v9{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.293333pt;}
.v8{vertical-align:19.306667pt;}
.v1{vertical-align:21.461333pt;}
.v2{vertical-align:24.000000pt;}
.v3{vertical-align:26.400000pt;}
.v7{vertical-align:38.613333pt;}
.vb{vertical-align:40.426667pt;}
.va{vertical-align:50.678075pt;}
.v5{vertical-align:53.760533pt;}
.ls7{letter-spacing:-3.147200pt;}
.ls5{letter-spacing:-1.578667pt;}
.ls21{letter-spacing:-1.013333pt;}
.ls23{letter-spacing:-0.747200pt;}
.ls22{letter-spacing:-0.671840pt;}
.ls26{letter-spacing:-0.600000pt;}
.ls24{letter-spacing:-0.495394pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000213pt;}
.ls19{letter-spacing:0.000773pt;}
.ls17{letter-spacing:0.004827pt;}
.ls1a{letter-spacing:0.019627pt;}
.ls15{letter-spacing:0.021195pt;}
.ls11{letter-spacing:0.024069pt;}
.lsd{letter-spacing:0.027797pt;}
.lsf{letter-spacing:0.051579pt;}
.lsa{letter-spacing:0.053136pt;}
.ls13{letter-spacing:0.054107pt;}
.ls1c{letter-spacing:0.529600pt;}
.ls1d{letter-spacing:0.530133pt;}
.ls1f{letter-spacing:0.530400pt;}
.ls25{letter-spacing:0.600000pt;}
.ls20{letter-spacing:0.789867pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls16{letter-spacing:2.696533pt;}
.ls0{letter-spacing:3.360000pt;}
.ls9{letter-spacing:11.496533pt;}
.lsc{letter-spacing:11.549867pt;}
.lsb{letter-spacing:11.849328pt;}
.ls8{letter-spacing:14.483200pt;}
.ls18{letter-spacing:14.483733pt;}
.ls1e{letter-spacing:14.771808pt;}
.ls2{letter-spacing:15.289067pt;}
.ls10{letter-spacing:16.456533pt;}
.lse{letter-spacing:17.411413pt;}
.ls12{letter-spacing:17.416533pt;}
.ls14{letter-spacing:21.094992pt;}
.ls3{letter-spacing:21.770667pt;}
.ls6{letter-spacing:1491.538133pt;}
.ws9e{word-spacing:-67.907808pt;}
.ws9d{word-spacing:-53.136000pt;}
.wsa3{word-spacing:-42.506667pt;}
.ws9f{word-spacing:-41.339808pt;}
.ws9a{word-spacing:-39.373776pt;}
.ws9c{word-spacing:-39.320640pt;}
.ws99{word-spacing:-38.364192pt;}
.wsa4{word-spacing:-28.040533pt;}
.wsa2{word-spacing:-28.040000pt;}
.wsa0{word-spacing:-25.105067pt;}
.wsa1{word-spacing:-25.053333pt;}
.ws6{word-spacing:-18.186667pt;}
.ws132{word-spacing:-14.826667pt;}
.wsae{word-spacing:-14.771808pt;}
.ws4{word-spacing:-13.866667pt;}
.wsc7{word-spacing:-13.344000pt;}
.wsf0{word-spacing:-13.119467pt;}
.wsf1{word-spacing:-12.853333pt;}
.ws0{word-spacing:-12.800000pt;}
.ws7{word-spacing:-11.861333pt;}
.ws1{word-spacing:-11.520000pt;}
.ws12c{word-spacing:-11.120000pt;}
.ws12e{word-spacing:-10.999600pt;}
.ws5{word-spacing:-10.813088pt;}
.ws12a{word-spacing:-10.520000pt;}
.ws129{word-spacing:-10.240427pt;}
.ws32{word-spacing:-10.240000pt;}
.wsc6{word-spacing:-9.724000pt;}
.ws3{word-spacing:-9.193600pt;}
.wse8{word-spacing:-8.847072pt;}
.wsef{word-spacing:-8.698206pt;}
.ws12b{word-spacing:-8.600000pt;}
.wsee{word-spacing:-8.521760pt;}
.wsc5{word-spacing:-7.864064pt;}
.ws2{word-spacing:-7.637760pt;}
.wse9{word-spacing:-7.344000pt;}
.wsf2{word-spacing:-6.789120pt;}
.ws82{word-spacing:-4.960000pt;}
.ws60{word-spacing:-4.266667pt;}
.wsfa{word-spacing:-3.947200pt;}
.wsb7{word-spacing:-3.893333pt;}
.ws91{word-spacing:-3.680000pt;}
.ws18{word-spacing:-3.573333pt;}
.ws102{word-spacing:-3.519467pt;}
.ws21{word-spacing:-3.306667pt;}
.wsd4{word-spacing:-2.773333pt;}
.ws80{word-spacing:-2.560000pt;}
.wsa7{word-spacing:-2.506667pt;}
.wsd9{word-spacing:-2.400000pt;}
.wsa8{word-spacing:-2.240533pt;}
.ws3a{word-spacing:-2.208000pt;}
.ws62{word-spacing:-2.186667pt;}
.ws22{word-spacing:-1.973333pt;}
.ws101{word-spacing:-1.813333pt;}
.ws68{word-spacing:-1.760000pt;}
.wse0{word-spacing:-1.706667pt;}
.ws114{word-spacing:-1.653867pt;}
.wsb{word-spacing:-1.653333pt;}
.ws65{word-spacing:-1.600000pt;}
.ws33{word-spacing:-1.578667pt;}
.ws112{word-spacing:-1.547200pt;}
.wsc9{word-spacing:-1.493333pt;}
.wsaf{word-spacing:-1.439467pt;}
.wsde{word-spacing:-1.386667pt;}
.wsfc{word-spacing:-1.332800pt;}
.ws49{word-spacing:-1.173333pt;}
.ws88{word-spacing:-0.906667pt;}
.ws61{word-spacing:-0.800000pt;}
.wsd7{word-spacing:-0.747200pt;}
.wsba{word-spacing:-0.693333pt;}
.ws10e{word-spacing:-0.639467pt;}
.ws130{word-spacing:-0.600000pt;}
.ws6f{word-spacing:-0.586667pt;}
.ws13{word-spacing:-0.533333pt;}
.wsa5{word-spacing:-0.480000pt;}
.wsab{word-spacing:-0.426667pt;}
.ws64{word-spacing:-0.266667pt;}
.wsea{word-spacing:-0.213333pt;}
.ws11b{word-spacing:-0.106667pt;}
.ws12d{word-spacing:-0.080000pt;}
.wsd2{word-spacing:-0.053867pt;}
.ws9b{word-spacing:-0.053136pt;}
.ws35{word-spacing:-0.048000pt;}
.wsc4{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.ws71{word-spacing:0.070720pt;}
.ws70{word-spacing:0.106667pt;}
.ws5f{word-spacing:0.213333pt;}
.ws8f{word-spacing:0.266667pt;}
.ws56{word-spacing:0.373333pt;}
.ws8d{word-spacing:0.480000pt;}
.ws5d{word-spacing:0.586667pt;}
.ws12f{word-spacing:0.600000pt;}
.ws8c{word-spacing:0.639467pt;}
.ws11{word-spacing:0.693333pt;}
.wsb1{word-spacing:0.747200pt;}
.ws1c{word-spacing:0.800000pt;}
.ws4d{word-spacing:0.812926pt;}
.wsff{word-spacing:0.906667pt;}
.wsd1{word-spacing:0.960533pt;}
.ws120{word-spacing:1.066667pt;}
.ws1d{word-spacing:1.120000pt;}
.wsf5{word-spacing:1.173333pt;}
.ws4c{word-spacing:1.226133pt;}
.wse5{word-spacing:1.280000pt;}
.ws3b{word-spacing:1.296000pt;}
.wsb8{word-spacing:1.386667pt;}
.wse2{word-spacing:1.547200pt;}
.wsa{word-spacing:1.578667pt;}
.ws11a{word-spacing:1.591200pt;}
.ws2e{word-spacing:1.653333pt;}
.wsb3{word-spacing:1.706667pt;}
.wsd5{word-spacing:1.760000pt;}
.wse3{word-spacing:1.813333pt;}
.ws8a{word-spacing:1.973333pt;}
.wsf6{word-spacing:2.026133pt;}
.wsad{word-spacing:2.080000pt;}
.ws87{word-spacing:2.186667pt;}
.ws7f{word-spacing:2.240533pt;}
.wscb{word-spacing:2.347200pt;}
.ws119{word-spacing:2.400000pt;}
.ws25{word-spacing:2.453333pt;}
.wseb{word-spacing:2.453867pt;}
.ws8e{word-spacing:2.506667pt;}
.wsf7{word-spacing:2.773333pt;}
.wse6{word-spacing:2.880000pt;}
.ws115{word-spacing:2.932800pt;}
.wsd0{word-spacing:2.986667pt;}
.ws73{word-spacing:3.040533pt;}
.wsb9{word-spacing:3.093333pt;}
.ws4f{word-spacing:3.147200pt;}
.ws12{word-spacing:3.200000pt;}
.ws52{word-spacing:3.253333pt;}
.ws6e{word-spacing:3.360000pt;}
.ws128{word-spacing:3.413333pt;}
.wsf9{word-spacing:3.519467pt;}
.ws1b{word-spacing:3.573333pt;}
.ws126{word-spacing:3.626133pt;}
.ws10d{word-spacing:3.642080pt;}
.wsca{word-spacing:3.733867pt;}
.ws10f{word-spacing:3.818880pt;}
.ws66{word-spacing:3.840533pt;}
.ws59{word-spacing:3.893333pt;}
.ws7e{word-spacing:4.000000pt;}
.ws96{word-spacing:4.031040pt;}
.wsbf{word-spacing:4.053333pt;}
.ws37{word-spacing:4.080000pt;}
.ws19{word-spacing:4.106667pt;}
.wsfb{word-spacing:4.160000pt;}
.ws67{word-spacing:4.212800pt;}
.ws127{word-spacing:4.426133pt;}
.wsfe{word-spacing:4.480000pt;}
.ws94{word-spacing:4.561440pt;}
.wsb2{word-spacing:4.586667pt;}
.ws45{word-spacing:4.640533pt;}
.ws48{word-spacing:4.746667pt;}
.ws90{word-spacing:4.800000pt;}
.ws10{word-spacing:4.853333pt;}
.ws24{word-spacing:4.879680pt;}
.wsd{word-spacing:4.906667pt;}
.ws108{word-spacing:5.012800pt;}
.wsdf{word-spacing:5.119467pt;}
.wsc1{word-spacing:5.173333pt;}
.wsec{word-spacing:5.227200pt;}
.ws10b{word-spacing:5.333867pt;}
.ws121{word-spacing:5.339360pt;}
.ws63{word-spacing:5.386667pt;}
.ws5e{word-spacing:5.440533pt;}
.ws10c{word-spacing:5.493333pt;}
.ws4e{word-spacing:5.546667pt;}
.ws10a{word-spacing:5.600000pt;}
.wsb6{word-spacing:5.653333pt;}
.ws110{word-spacing:5.760000pt;}
.ws6a{word-spacing:5.812800pt;}
.wsf3{word-spacing:5.866667pt;}
.wse1{word-spacing:5.919467pt;}
.ws79{word-spacing:6.027200pt;}
.ws95{word-spacing:6.080000pt;}
.ws83{word-spacing:6.186667pt;}
.ws84{word-spacing:6.240000pt;}
.wsed{word-spacing:6.346667pt;}
.ws8b{word-spacing:6.453333pt;}
.ws122{word-spacing:6.506133pt;}
.ws100{word-spacing:6.560000pt;}
.wsb5{word-spacing:6.612800pt;}
.wsac{word-spacing:6.666667pt;}
.ws20{word-spacing:6.720000pt;}
.ws11e{word-spacing:6.720533pt;}
.ws97{word-spacing:6.773333pt;}
.ws107{word-spacing:6.827200pt;}
.ws93{word-spacing:6.880000pt;}
.ws40{word-spacing:6.933333pt;}
.wsc2{word-spacing:6.986667pt;}
.ws11f{word-spacing:7.040000pt;}
.ws3f{word-spacing:7.146667pt;}
.ws38{word-spacing:7.152000pt;}
.ws54{word-spacing:7.199467pt;}
.ws89{word-spacing:7.253333pt;}
.ws109{word-spacing:7.319520pt;}
.ws23{word-spacing:7.360000pt;}
.ws41{word-spacing:7.413867pt;}
.wsc{word-spacing:7.466667pt;}
.wsa6{word-spacing:7.520533pt;}
.ws58{word-spacing:7.573333pt;}
.ws74{word-spacing:7.680000pt;}
.ws118{word-spacing:7.786667pt;}
.wsfd{word-spacing:7.840000pt;}
.ws6c{word-spacing:7.946667pt;}
.ws123{word-spacing:7.999467pt;}
.ws14{word-spacing:8.053333pt;}
.ws26{word-spacing:8.106667pt;}
.ws125{word-spacing:8.373333pt;}
.ws72{word-spacing:8.480000pt;}
.ws6b{word-spacing:8.586667pt;}
.ws51{word-spacing:8.640000pt;}
.ws43{word-spacing:8.746667pt;}
.wscc{word-spacing:8.907200pt;}
.ws1f{word-spacing:9.013333pt;}
.wsdd{word-spacing:9.013867pt;}
.ws76{word-spacing:9.066667pt;}
.ws42{word-spacing:9.173333pt;}
.wsf8{word-spacing:9.599467pt;}
.ws2d{word-spacing:9.653333pt;}
.wscd{word-spacing:9.707200pt;}
.ws1e{word-spacing:9.866667pt;}
.ws57{word-spacing:10.026667pt;}
.ws104{word-spacing:10.080000pt;}
.wsaa{word-spacing:10.133333pt;}
.ws111{word-spacing:10.186133pt;}
.ws36{word-spacing:10.224000pt;}
.ws11d{word-spacing:10.346667pt;}
.ws78{word-spacing:10.400533pt;}
.ws5b{word-spacing:10.560000pt;}
.ws124{word-spacing:10.826667pt;}
.ws47{word-spacing:10.986133pt;}
.ws39{word-spacing:11.040000pt;}
.ws103{word-spacing:11.092800pt;}
.wsbd{word-spacing:11.200533pt;}
.ws3d{word-spacing:11.253333pt;}
.wsda{word-spacing:11.307200pt;}
.ws1a{word-spacing:11.360000pt;}
.ws4b{word-spacing:11.413333pt;}
.ws4a{word-spacing:11.466667pt;}
.ws3c{word-spacing:11.520000pt;}
.wsf{word-spacing:11.573333pt;}
.wsf4{word-spacing:11.679467pt;}
.ws2b{word-spacing:11.786667pt;}
.ws3e{word-spacing:11.946667pt;}
.ws6d{word-spacing:12.107200pt;}
.ws46{word-spacing:12.372800pt;}
.ws11c{word-spacing:12.426667pt;}
.ws85{word-spacing:12.586133pt;}
.ws7b{word-spacing:12.746667pt;}
.ws7d{word-spacing:12.800533pt;}
.ws77{word-spacing:12.853333pt;}
.ws81{word-spacing:12.906667pt;}
.ws27{word-spacing:12.960000pt;}
.ws50{word-spacing:13.013333pt;}
.wsb0{word-spacing:13.066667pt;}
.ws2a{word-spacing:13.280000pt;}
.wsb4{word-spacing:13.333333pt;}
.ws44{word-spacing:13.440000pt;}
.ws116{word-spacing:13.546667pt;}
.wsd6{word-spacing:13.866133pt;}
.wse4{word-spacing:14.026667pt;}
.wscf{word-spacing:14.080533pt;}
.wsc8{word-spacing:14.187200pt;}
.ws2c{word-spacing:14.240000pt;}
.ws55{word-spacing:14.346667pt;}
.wsce{word-spacing:14.400000pt;}
.ws117{word-spacing:14.453333pt;}
.ws106{word-spacing:14.559467pt;}
.ws75{word-spacing:14.666133pt;}
.wsdc{word-spacing:14.987200pt;}
.ws5c{word-spacing:15.146667pt;}
.wsd8{word-spacing:15.520000pt;}
.ws7a{word-spacing:15.573867pt;}
.ws7c{word-spacing:15.893333pt;}
.wsd3{word-spacing:15.946667pt;}
.ws105{word-spacing:16.800000pt;}
.ws98{word-spacing:17.280533pt;}
.ws113{word-spacing:17.333333pt;}
.wsbc{word-spacing:17.493333pt;}
.wsa9{word-spacing:17.706667pt;}
.ws53{word-spacing:17.867200pt;}
.wsc0{word-spacing:17.973867pt;}
.wsbe{word-spacing:18.400000pt;}
.ws92{word-spacing:19.413333pt;}
.wse7{word-spacing:20.000000pt;}
.ws31{word-spacing:21.003840pt;}
.ws5a{word-spacing:21.226133pt;}
.ws28{word-spacing:21.386667pt;}
.wsdb{word-spacing:22.240533pt;}
.ws86{word-spacing:22.453867pt;}
.ws16{word-spacing:23.093333pt;}
.ws15{word-spacing:24.320000pt;}
.ws2f{word-spacing:24.800000pt;}
.ws34{word-spacing:24.960000pt;}
.ws29{word-spacing:26.880000pt;}
.ws69{word-spacing:27.040000pt;}
.wse{word-spacing:28.640000pt;}
.wsbb{word-spacing:29.973333pt;}
.ws30{word-spacing:31.680000pt;}
.ws17{word-spacing:33.386667pt;}
.wsc3{word-spacing:63.696000pt;}
.ws133{word-spacing:88.872960pt;}
.ws8{word-spacing:121.600000pt;}
.ws131{word-spacing:1481.827200pt;}
._4e{margin-left:-1647.998933pt;}
._4c{margin-left:-1407.780267pt;}
._4b{margin-left:-1167.728000pt;}
._a{margin-left:-1150.208000pt;}
._4d{margin-left:-1114.504533pt;}
._9{margin-left:-977.066667pt;}
._b{margin-left:-801.493333pt;}
._4f{margin-left:-489.066667pt;}
._4a{margin-left:-444.693333pt;}
._8{margin-left:-52.480000pt;}
._6{margin-left:-42.640000pt;}
._d{margin-left:-25.123733pt;}
._2a{margin-left:-22.826667pt;}
._2b{margin-left:-18.933333pt;}
._11{margin-left:-15.093333pt;}
._25{margin-left:-12.480000pt;}
._42{margin-left:-10.506667pt;}
._5{margin-left:-9.546667pt;}
._48{margin-left:-8.600000pt;}
._e{margin-left:-7.520000pt;}
._10{margin-left:-6.346667pt;}
._4{margin-left:-5.040000pt;}
._c{margin-left:-3.956267pt;}
._2{margin-left:-3.005867pt;}
._0{margin-left:-1.578667pt;}
._3{width:0.955200pt;}
._7{width:2.202133pt;}
._f{width:3.500267pt;}
._12{width:6.826667pt;}
._46{width:8.600400pt;}
._41{width:11.520000pt;}
._1{width:12.480000pt;}
._14{width:14.134539pt;}
._49{width:16.720000pt;}
._44{width:18.320000pt;}
._43{width:19.360000pt;}
._45{width:27.440000pt;}
._47{width:29.239200pt;}
._13{width:33.792000pt;}
._18{width:48.000000pt;}
._16{width:63.936000pt;}
._1a{width:66.480000pt;}
._35{width:84.192000pt;}
._21{width:88.261333pt;}
._3b{width:89.904000pt;}
._23{width:93.264000pt;}
._26{width:101.261867pt;}
._3d{width:106.800000pt;}
._2f{width:117.648000pt;}
._1f{width:119.952000pt;}
._1b{width:124.032000pt;}
._36{width:134.314667pt;}
._2d{width:135.610667pt;}
._1e{width:141.541333pt;}
._15{width:146.784000pt;}
._1d{width:150.720000pt;}
._24{width:160.512000pt;}
._29{width:175.621333pt;}
._28{width:177.408000pt;}
._34{width:184.176000pt;}
._32{width:197.264000pt;}
._27{width:200.341333pt;}
._20{width:204.096000pt;}
._1c{width:221.808000pt;}
._3a{width:235.060523pt;}
._31{width:250.640000pt;}
._17{width:255.600000pt;}
._19{width:274.272000pt;}
._38{width:277.968000pt;}
._22{width:291.973333pt;}
._37{width:302.784000pt;}
._30{width:331.536000pt;}
._3c{width:345.312000pt;}
._39{width:353.088000pt;}
._2e{width:384.000000pt;}
._33{width:401.797333pt;}
._2c{width:433.536000pt;}
._3f{width:635.136000pt;}
._40{width:668.928000pt;}
._3e{width:810.576000pt;}
.fsb{font-size:28.288000pt;}
.fs3{font-size:31.824000pt;}
.fs8{font-size:34.666667pt;}
.fs4{font-size:35.360000pt;}
.fs7{font-size:38.896000pt;}
.fsc{font-size:40.000000pt;}
.fsa{font-size:42.506667pt;}
.fs1{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:53.136000pt;}
.fs0{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fse{font-size:64.000000pt;}
.fsd{font-size:80.000000pt;}
.fs5{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:1.925200pt;}
.ye5{bottom:2.032000pt;}
.yfe{bottom:3.148267pt;}
.yf6{bottom:3.176133pt;}
.yed{bottom:3.586800pt;}
.ye3{bottom:4.605333pt;}
.y100{bottom:5.402933pt;}
.y10b{bottom:5.541733pt;}
.y103{bottom:5.554933pt;}
.yfa{bottom:12.254933pt;}
.yf2{bottom:12.282933pt;}
.yf4{bottom:21.262917pt;}
.yfc{bottom:27.428267pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y1d0{bottom:72.507867pt;}
.yd3{bottom:72.521067pt;}
.y1e9{bottom:72.521200pt;}
.yb1{bottom:72.534533pt;}
.y51{bottom:72.537467pt;}
.y32{bottom:72.542933pt;}
.y15a{bottom:72.543600pt;}
.y179{bottom:72.561200pt;}
.y6b{bottom:72.566933pt;}
.y126{bottom:72.641200pt;}
.y1a5{bottom:85.854400pt;}
.y6a{bottom:85.900267pt;}
.yd2{bottom:86.921067pt;}
.y1cf{bottom:88.507867pt;}
.yb0{bottom:88.534533pt;}
.y50{bottom:88.537467pt;}
.y31{bottom:88.542933pt;}
.y159{bottom:88.543600pt;}
.y178{bottom:88.561200pt;}
.y125{bottom:88.641200pt;}
.y1e8{bottom:90.654533pt;}
.y1a4{bottom:99.187733pt;}
.y1e7{bottom:99.187867pt;}
.y69{bottom:99.233600pt;}
.y299{bottom:101.333293pt;}
.y22c{bottom:102.601867pt;}
.y27b{bottom:102.841867pt;}
.y1ce{bottom:104.507867pt;}
.yaf{bottom:104.534533pt;}
.y4f{bottom:104.537467pt;}
.y30{bottom:104.542933pt;}
.y158{bottom:104.543600pt;}
.y177{bottom:104.561200pt;}
.y124{bottom:104.641200pt;}
.y22b{bottom:113.931867pt;}
.y27a{bottom:114.171867pt;}
.y29a{bottom:114.666627pt;}
.y1e6{bottom:117.321200pt;}
.y1cd{bottom:120.507867pt;}
.yae{bottom:120.534533pt;}
.y4e{bottom:120.537467pt;}
.y2f{bottom:120.542933pt;}
.y157{bottom:120.543600pt;}
.y176{bottom:120.561200pt;}
.y123{bottom:120.641200pt;}
.y1a3{bottom:122.793467pt;}
.y68{bottom:124.566933pt;}
.y22a{bottom:125.261867pt;}
.y279{bottom:125.501867pt;}
.y1e5{bottom:125.854533pt;}
.y1cc{bottom:136.507867pt;}
.yad{bottom:136.534533pt;}
.y4d{bottom:136.537467pt;}
.y2e{bottom:136.542933pt;}
.y175{bottom:136.561200pt;}
.y229{bottom:136.591867pt;}
.y122{bottom:136.641200pt;}
.y278{bottom:136.831867pt;}
.y1a2{bottom:137.193467pt;}
.y67{bottom:137.900267pt;}
.y1e4{bottom:143.987867pt;}
.y297{bottom:146.666627pt;}
.y228{bottom:147.921867pt;}
.y277{bottom:148.161867pt;}
.y1cb{bottom:152.507867pt;}
.yac{bottom:152.534533pt;}
.y4c{bottom:152.537467pt;}
.y2d{bottom:152.542933pt;}
.y174{bottom:152.561200pt;}
.y121{bottom:152.641200pt;}
.y1a1{bottom:155.097467pt;}
.y1e3{bottom:157.321200pt;}
.y227{bottom:159.251867pt;}
.y276{bottom:159.491867pt;}
.y298{bottom:159.999960pt;}
.y156{bottom:165.530267pt;}
.y1e2{bottom:165.854533pt;}
.y1ca{bottom:168.507867pt;}
.yab{bottom:168.534533pt;}
.y4b{bottom:168.537467pt;}
.y2c{bottom:168.542933pt;}
.y173{bottom:168.561200pt;}
.y120{bottom:168.641200pt;}
.y1a0{bottom:169.497467pt;}
.y226{bottom:170.581867pt;}
.y275{bottom:170.821867pt;}
.y155{bottom:181.530267pt;}
.y225{bottom:181.911867pt;}
.y274{bottom:182.151867pt;}
.y1e1{bottom:183.987867pt;}
.y1c9{bottom:184.507867pt;}
.yaa{bottom:184.534533pt;}
.y4a{bottom:184.537467pt;}
.y2b{bottom:184.542933pt;}
.y172{bottom:184.561200pt;}
.y11f{bottom:184.641200pt;}
.y19f{bottom:188.733467pt;}
.y295{bottom:191.999960pt;}
.y1e0{bottom:192.521200pt;}
.y224{bottom:193.241867pt;}
.y273{bottom:193.481867pt;}
.y154{bottom:197.530267pt;}
.y1c8{bottom:200.507867pt;}
.ya9{bottom:200.534533pt;}
.y49{bottom:200.537467pt;}
.y2a{bottom:200.542933pt;}
.y171{bottom:200.561200pt;}
.y11e{bottom:200.641200pt;}
.y19e{bottom:203.133467pt;}
.y223{bottom:204.571867pt;}
.y272{bottom:204.811867pt;}
.y296{bottom:205.333293pt;}
.y1df{bottom:210.654533pt;}
.y153{bottom:213.530267pt;}
.y222{bottom:215.901867pt;}
.y271{bottom:216.141867pt;}
.y1c7{bottom:216.507867pt;}
.ya8{bottom:216.534533pt;}
.y48{bottom:216.537467pt;}
.y29{bottom:216.542933pt;}
.y170{bottom:216.561200pt;}
.y11d{bottom:216.641200pt;}
.y1de{bottom:219.187867pt;}
.y19d{bottom:222.369467pt;}
.y221{bottom:227.231867pt;}
.y270{bottom:227.471867pt;}
.y152{bottom:229.530267pt;}
.y1c6{bottom:232.507867pt;}
.ya7{bottom:232.534533pt;}
.y47{bottom:232.537467pt;}
.y16f{bottom:232.561200pt;}
.y11c{bottom:232.641200pt;}
.y19c{bottom:236.769467pt;}
.y220{bottom:238.561867pt;}
.y26f{bottom:238.801867pt;}
.y1dd{bottom:244.521200pt;}
.y151{bottom:245.530267pt;}
.y1c5{bottom:248.507867pt;}
.ya6{bottom:248.534533pt;}
.y46{bottom:248.537467pt;}
.y16e{bottom:248.561200pt;}
.y11b{bottom:248.641200pt;}
.y21f{bottom:249.891867pt;}
.y26e{bottom:250.131867pt;}
.y19b{bottom:256.005467pt;}
.y1dc{bottom:260.521200pt;}
.y21e{bottom:261.221867pt;}
.y26d{bottom:261.461867pt;}
.y150{bottom:261.530267pt;}
.y28{bottom:261.673600pt;}
.y1c4{bottom:264.507867pt;}
.ya5{bottom:264.534533pt;}
.y45{bottom:264.537467pt;}
.y16d{bottom:264.561200pt;}
.y11a{bottom:264.641200pt;}
.y19a{bottom:270.405467pt;}
.y21d{bottom:272.551867pt;}
.y26c{bottom:272.791867pt;}
.y27{bottom:276.337600pt;}
.y1db{bottom:276.521200pt;}
.y14f{bottom:277.530267pt;}
.y1c3{bottom:280.507867pt;}
.ya4{bottom:280.534533pt;}
.y44{bottom:280.537467pt;}
.y119{bottom:280.641200pt;}
.y21c{bottom:283.881867pt;}
.y26b{bottom:284.121867pt;}
.y199{bottom:289.641467pt;}
.y26{bottom:291.001600pt;}
.y1da{bottom:292.521200pt;}
.y14e{bottom:293.530267pt;}
.y21b{bottom:295.211867pt;}
.y26a{bottom:295.451867pt;}
.y1c2{bottom:296.507867pt;}
.ya3{bottom:296.534533pt;}
.y43{bottom:296.537467pt;}
.y16c{bottom:296.547867pt;}
.y118{bottom:296.641200pt;}
.y25{bottom:305.665600pt;}
.y21a{bottom:306.541867pt;}
.y269{bottom:306.781867pt;}
.y1d9{bottom:308.521200pt;}
.y197{bottom:308.877467pt;}
.y14d{bottom:309.530267pt;}
.y1c1{bottom:312.507867pt;}
.ya2{bottom:312.534533pt;}
.y42{bottom:312.537467pt;}
.y16b{bottom:312.547867pt;}
.y117{bottom:312.641200pt;}
.y219{bottom:317.871867pt;}
.y268{bottom:318.111867pt;}
.y24{bottom:320.329600pt;}
.y196{bottom:323.273200pt;}
.y198{bottom:323.277467pt;}
.y1d8{bottom:324.521200pt;}
.y14c{bottom:325.530267pt;}
.y1c0{bottom:328.507867pt;}
.ya1{bottom:328.534533pt;}
.y41{bottom:328.537467pt;}
.y16a{bottom:328.547867pt;}
.y116{bottom:328.641200pt;}
.y218{bottom:329.201867pt;}
.y267{bottom:329.441867pt;}
.y23{bottom:334.993600pt;}
.y1d7{bottom:340.521200pt;}
.y217{bottom:340.531867pt;}
.y266{bottom:340.771867pt;}
.y14b{bottom:341.530267pt;}
.y195{bottom:342.509200pt;}
.y1bf{bottom:344.507867pt;}
.ya0{bottom:344.534533pt;}
.y40{bottom:344.537467pt;}
.y169{bottom:344.547867pt;}
.y115{bottom:344.641200pt;}
.y22{bottom:349.657600pt;}
.y216{bottom:351.861867pt;}
.y265{bottom:352.101867pt;}
.y1d6{bottom:356.521200pt;}
.y14a{bottom:357.530267pt;}
.y194{bottom:360.412933pt;}
.y1be{bottom:360.507867pt;}
.y9f{bottom:360.534533pt;}
.y3f{bottom:360.537467pt;}
.y168{bottom:360.547867pt;}
.y114{bottom:360.641200pt;}
.y215{bottom:363.191867pt;}
.y264{bottom:363.431867pt;}
.y21{bottom:364.321600pt;}
.yd9{bottom:369.134400pt;}
.y1d5{bottom:372.521200pt;}
.y214{bottom:374.521867pt;}
.y263{bottom:374.761867pt;}
.y1bd{bottom:376.507867pt;}
.y9e{bottom:376.534533pt;}
.y3e{bottom:376.537467pt;}
.y167{bottom:376.547867pt;}
.y113{bottom:376.641200pt;}
.y20{bottom:378.985600pt;}
.y193{bottom:382.312933pt;}
.yd8{bottom:385.134400pt;}
.y213{bottom:385.851867pt;}
.y262{bottom:386.091867pt;}
.y1d4{bottom:388.521200pt;}
.y1bc{bottom:392.507867pt;}
.y9d{bottom:392.534533pt;}
.y3d{bottom:392.537467pt;}
.y166{bottom:392.547867pt;}
.y112{bottom:392.641200pt;}
.y1f{bottom:393.649600pt;}
.y149{bottom:395.943467pt;}
.y192{bottom:396.712933pt;}
.y212{bottom:397.181867pt;}
.y261{bottom:397.421867pt;}
.yd7{bottom:401.134400pt;}
.y1d3{bottom:404.521200pt;}
.y1e{bottom:408.313600pt;}
.y1bb{bottom:408.507867pt;}
.y211{bottom:408.511867pt;}
.y9c{bottom:408.534533pt;}
.y3c{bottom:408.537467pt;}
.y111{bottom:408.641200pt;}
.y260{bottom:408.751867pt;}
.y148{bottom:409.276800pt;}
.y191{bottom:411.112933pt;}
.yd6{bottom:417.134400pt;}
.y210{bottom:419.841867pt;}
.y25f{bottom:420.081867pt;}
.y1d2{bottom:420.521200pt;}
.y147{bottom:422.610133pt;}
.y1d{bottom:422.977600pt;}
.y1ba{bottom:424.507867pt;}
.y9b{bottom:424.534533pt;}
.y3b{bottom:424.537467pt;}
.y110{bottom:424.641200pt;}
.y190{bottom:425.512933pt;}
.y20f{bottom:431.171867pt;}
.y25e{bottom:431.411867pt;}
.yd5{bottom:433.134400pt;}
.y146{bottom:435.943467pt;}
.y1d1{bottom:436.521200pt;}
.y1c{bottom:437.641600pt;}
.y1b9{bottom:440.507867pt;}
.y9a{bottom:440.534533pt;}
.y3a{bottom:440.537467pt;}
.y20e{bottom:442.501867pt;}
.y25d{bottom:442.741867pt;}
.y18f{bottom:444.748933pt;}
.yd4{bottom:449.134400pt;}
.y145{bottom:449.276800pt;}
.y294{bottom:452.000000pt;}
.y1b{bottom:452.305600pt;}
.y10f{bottom:453.464400pt;}
.y20d{bottom:453.831867pt;}
.y25c{bottom:454.071867pt;}
.y1b8{bottom:456.507867pt;}
.ycf{bottom:456.521200pt;}
.y99{bottom:456.534533pt;}
.y39{bottom:456.537467pt;}
.y144{bottom:462.610133pt;}
.y18e{bottom:464.316800pt;}
.y20c{bottom:465.161867pt;}
.y25b{bottom:465.401867pt;}
.y1a{bottom:466.974933pt;}
.y10e{bottom:469.464400pt;}
.y1b7{bottom:472.507867pt;}
.yce{bottom:472.521200pt;}
.y98{bottom:472.534533pt;}
.y38{bottom:472.537467pt;}
.y20b{bottom:476.491867pt;}
.y25a{bottom:476.731867pt;}
.y19{bottom:481.638933pt;}
.y10d{bottom:485.464400pt;}
.y143{bottom:486.853333pt;}
.y20a{bottom:487.821867pt;}
.y259{bottom:488.061867pt;}
.y1b6{bottom:488.507867pt;}
.ycd{bottom:488.521200pt;}
.y97{bottom:488.534533pt;}
.y37{bottom:488.537467pt;}
.yd1{bottom:493.387733pt;}
.y18{bottom:496.305600pt;}
.y293{bottom:498.666667pt;}
.y209{bottom:499.151867pt;}
.y258{bottom:499.391867pt;}
.y142{bottom:501.253333pt;}
.y10c{bottom:501.464400pt;}
.y1b5{bottom:504.507867pt;}
.ycc{bottom:504.521200pt;}
.y96{bottom:504.534533pt;}
.y36{bottom:504.542933pt;}
.y291{bottom:505.333293pt;}
.yd0{bottom:507.787733pt;}
.y1aa{bottom:508.779333pt;}
.y208{bottom:510.481867pt;}
.y257{bottom:510.721867pt;}
.y17{bottom:510.980267pt;}
.y141{bottom:515.653333pt;}
.y1b4{bottom:520.507867pt;}
.ycb{bottom:520.521200pt;}
.y95{bottom:520.534533pt;}
.y35{bottom:520.542933pt;}
.y292{bottom:521.333293pt;}
.y207{bottom:521.811867pt;}
.y10a{bottom:522.010667pt;}
.y256{bottom:522.051867pt;}
.y1a9{bottom:524.779333pt;}
.y1ae{bottom:524.886000pt;}
.y16{bottom:525.644267pt;}
.y109{bottom:526.011067pt;}
.y206{bottom:533.145200pt;}
.y255{bottom:533.381867pt;}
.y140{bottom:533.557333pt;}
.y1b3{bottom:536.507867pt;}
.yca{bottom:536.521200pt;}
.y94{bottom:536.534533pt;}
.y34{bottom:536.542933pt;}
.y15{bottom:540.308267pt;}
.y1a8{bottom:540.779333pt;}
.y1ad{bottom:540.992667pt;}
.y254{bottom:544.711867pt;}
.y13f{bottom:547.957333pt;}
.y108{bottom:551.790933pt;}
.y1b2{bottom:552.507867pt;}
.yc9{bottom:552.521200pt;}
.y93{bottom:552.534533pt;}
.y33{bottom:552.542933pt;}
.y14{bottom:554.972267pt;}
.y253{bottom:556.041867pt;}
.y1a7{bottom:556.779333pt;}
.y1ac{bottom:557.099333pt;}
.y66{bottom:558.164133pt;}
.y13e{bottom:562.357333pt;}
.y252{bottom:567.371867pt;}
.y107{bottom:567.790933pt;}
.y1b1{bottom:568.507867pt;}
.yc8{bottom:568.521200pt;}
.y92{bottom:568.534533pt;}
.y13{bottom:569.638933pt;}
.y65{bottom:571.497467pt;}
.y1a6{bottom:572.779333pt;}
.y1ab{bottom:573.206000pt;}
.y13d{bottom:576.757333pt;}
.y251{bottom:578.701867pt;}
.y205{bottom:580.651867pt;}
.y106{bottom:583.790933pt;}
.y12{bottom:584.337600pt;}
.y1b0{bottom:584.507867pt;}
.yc7{bottom:584.521200pt;}
.y64{bottom:584.830800pt;}
.y28e{bottom:586.666627pt;}
.y250{bottom:590.031867pt;}
.y204{bottom:593.451867pt;}
.y13c{bottom:595.993333pt;}
.y11{bottom:599.001600pt;}
.y105{bottom:599.790933pt;}
.y1af{bottom:600.507867pt;}
.yc6{bottom:600.521200pt;}
.y24f{bottom:601.361867pt;}
.y28f{bottom:602.666627pt;}
.y290{bottom:605.333293pt;}
.y203{bottom:606.251867pt;}
.y77{bottom:606.769333pt;}
.y63{bottom:610.164133pt;}
.y13b{bottom:610.393333pt;}
.y18d{bottom:610.832667pt;}
.y24e{bottom:612.691867pt;}
.y10{bottom:613.665600pt;}
.y104{bottom:615.790933pt;}
.y91{bottom:616.507867pt;}
.yc5{bottom:616.521200pt;}
.y76{bottom:621.433333pt;}
.y62{bottom:623.497467pt;}
.y24d{bottom:624.021867pt;}
.y18c{bottom:624.166000pt;}
.y202{bottom:624.385200pt;}
.y13a{bottom:624.793333pt;}
.y102{bottom:626.324000pt;}
.yff{bottom:626.457333pt;}
.yf{bottom:628.329600pt;}
.y288{bottom:629.333133pt;}
.y101{bottom:631.790933pt;}
.y90{bottom:632.507867pt;}
.yc4{bottom:632.521200pt;}
.y24c{bottom:635.351867pt;}
.y75{bottom:636.097333pt;}
.y61{bottom:636.830800pt;}
.y201{bottom:637.185200pt;}
.y18b{bottom:637.499333pt;}
.y289{bottom:642.666467pt;}
.ye{bottom:642.993600pt;}
.y139{bottom:644.029333pt;}
.y24b{bottom:646.681867pt;}
.y8f{bottom:648.507867pt;}
.yc3{bottom:648.521200pt;}
.y200{bottom:649.985200pt;}
.y60{bottom:650.164133pt;}
.y74{bottom:650.772000pt;}
.y18a{bottom:650.832667pt;}
.yf9{bottom:653.670667pt;}
.y28a{bottom:655.999933pt;}
.yf8{bottom:656.336267pt;}
.yd{bottom:657.657600pt;}
.y24a{bottom:658.011867pt;}
.y1ff{bottom:662.785200pt;}
.yfb{bottom:663.258933pt;}
.y138{bottom:663.265333pt;}
.y5f{bottom:663.497467pt;}
.y8e{bottom:664.507867pt;}
.yc2{bottom:664.521200pt;}
.y73{bottom:665.436000pt;}
.y28b{bottom:669.333267pt;}
.y249{bottom:669.341867pt;}
.yfd{bottom:671.138933pt;}
.yc{bottom:672.321600pt;}
.y189{bottom:674.428000pt;}
.y1fe{bottom:675.585200pt;}
.y5e{bottom:676.830800pt;}
.y72{bottom:680.100000pt;}
.y8d{bottom:680.507867pt;}
.yc1{bottom:680.521200pt;}
.y248{bottom:680.671867pt;}
.y137{bottom:682.501333pt;}
.y28c{bottom:682.666600pt;}
.yb{bottom:686.985600pt;}
.y1fd{bottom:688.385200pt;}
.yf1{bottom:690.896000pt;}
.y247{bottom:692.001867pt;}
.y188{bottom:692.332000pt;}
.y287{bottom:693.333333pt;}
.yf0{bottom:693.557467pt;}
.yf7{bottom:693.562933pt;}
.y71{bottom:694.764000pt;}
.y28d{bottom:696.000067pt;}
.y8c{bottom:696.507867pt;}
.yc0{bottom:696.521200pt;}
.y5d{bottom:698.164133pt;}
.yf3{bottom:700.672267pt;}
.ya{bottom:701.649600pt;}
.y136{bottom:701.737333pt;}
.y246{bottom:703.331867pt;}
.y1fc{bottom:706.518533pt;}
.y70{bottom:709.438667pt;}
.yf5{bottom:709.485467pt;}
.y5c{bottom:711.497467pt;}
.y187{bottom:711.568000pt;}
.y8b{bottom:712.507867pt;}
.ybf{bottom:712.521200pt;}
.y245{bottom:714.661867pt;}
.y135{bottom:716.137333pt;}
.y9{bottom:716.313600pt;}
.y6f{bottom:724.102667pt;}
.y1fb{bottom:724.651867pt;}
.y5b{bottom:724.830800pt;}
.y244{bottom:725.991867pt;}
.y8a{bottom:728.507867pt;}
.ybe{bottom:728.521200pt;}
.y285{bottom:730.666667pt;}
.y186{bottom:730.804000pt;}
.y8{bottom:730.977600pt;}
.y286{bottom:733.333293pt;}
.y134{bottom:735.373333pt;}
.yef{bottom:735.397467pt;}
.y243{bottom:737.321867pt;}
.y5a{bottom:738.164133pt;}
.y6e{bottom:738.766667pt;}
.y1fa{bottom:742.785200pt;}
.y89{bottom:744.507867pt;}
.ybd{bottom:744.521200pt;}
.y7{bottom:745.641600pt;}
.y242{bottom:748.651867pt;}
.y185{bottom:750.040000pt;}
.y59{bottom:751.497467pt;}
.y6d{bottom:753.430667pt;}
.y133{bottom:754.609333pt;}
.y1f9{bottom:755.585200pt;}
.yec{bottom:756.077333pt;}
.y284{bottom:757.333333pt;}
.yee{bottom:759.944133pt;}
.yeb{bottom:759.946533pt;}
.y241{bottom:759.981867pt;}
.y6{bottom:760.305600pt;}
.y88{bottom:760.507867pt;}
.ybc{bottom:760.521200pt;}
.y58{bottom:764.830800pt;}
.y1f8{bottom:768.385200pt;}
.y184{bottom:769.276000pt;}
.y240{bottom:771.311867pt;}
.y132{bottom:773.845333pt;}
.y5{bottom:774.969600pt;}
.y87{bottom:776.507867pt;}
.ybb{bottom:776.521200pt;}
.y57{bottom:778.164133pt;}
.y1f7{bottom:781.185200pt;}
.y6c{bottom:781.636267pt;}
.y23f{bottom:782.641867pt;}
.yea{bottom:785.506533pt;}
.y183{bottom:788.512000pt;}
.y4{bottom:789.636267pt;}
.y56{bottom:791.497467pt;}
.y86{bottom:792.507867pt;}
.yba{bottom:792.521200pt;}
.y131{bottom:793.081333pt;}
.y23e{bottom:793.971867pt;}
.y1f6{bottom:793.985200pt;}
.ye9{bottom:801.506533pt;}
.y23d{bottom:805.301867pt;}
.y182{bottom:807.748000pt;}
.y85{bottom:808.507867pt;}
.y165{bottom:808.516933pt;}
.yb9{bottom:808.521200pt;}
.y1f5{bottom:812.118533pt;}
.y130{bottom:812.317333pt;}
.y282{bottom:813.333293pt;}
.y23c{bottom:816.631867pt;}
.ye8{bottom:817.506533pt;}
.y84{bottom:824.507867pt;}
.y164{bottom:824.516933pt;}
.yb8{bottom:824.521200pt;}
.y283{bottom:826.666627pt;}
.y181{bottom:826.984000pt;}
.y23b{bottom:827.961867pt;}
.y1f4{bottom:830.251867pt;}
.y12f{bottom:831.553333pt;}
.ye7{bottom:833.506533pt;}
.y23a{bottom:839.291867pt;}
.y83{bottom:840.507867pt;}
.y163{bottom:840.516933pt;}
.yb7{bottom:840.521200pt;}
.y1f3{bottom:843.051867pt;}
.y180{bottom:846.220000pt;}
.y239{bottom:850.621867pt;}
.y12e{bottom:850.789333pt;}
.y55{bottom:850.969467pt;}
.ye2{bottom:853.386667pt;}
.y82{bottom:856.507867pt;}
.y162{bottom:856.516933pt;}
.yb6{bottom:856.521200pt;}
.ye4{bottom:857.992000pt;}
.ye1{bottom:858.053200pt;}
.y1f2{bottom:861.185200pt;}
.y238{bottom:861.951867pt;}
.y17f{bottom:865.456000pt;}
.y12d{bottom:870.025333pt;}
.y81{bottom:872.507867pt;}
.yb5{bottom:872.521200pt;}
.y237{bottom:873.281867pt;}
.y1f1{bottom:873.985200pt;}
.y280{bottom:877.333293pt;}
.y236{bottom:884.611867pt;}
.y17e{bottom:884.692000pt;}
.y1f0{bottom:886.785200pt;}
.ye0{bottom:888.081067pt;}
.y161{bottom:888.503600pt;}
.y80{bottom:888.507867pt;}
.yb4{bottom:888.521200pt;}
.y12c{bottom:889.261333pt;}
.y281{bottom:893.333333pt;}
.y235{bottom:895.941867pt;}
.y54{bottom:902.958800pt;}
.y17d{bottom:903.928000pt;}
.ydf{bottom:904.081067pt;}
.y160{bottom:904.503600pt;}
.y7f{bottom:904.507867pt;}
.yb3{bottom:904.521200pt;}
.y1ef{bottom:904.918533pt;}
.y12b{bottom:907.165333pt;}
.y234{bottom:907.271867pt;}
.y1ee{bottom:917.718533pt;}
.y233{bottom:918.601867pt;}
.yde{bottom:920.081067pt;}
.y15f{bottom:920.503600pt;}
.y7e{bottom:920.507867pt;}
.yb2{bottom:920.521200pt;}
.y17c{bottom:921.832000pt;}
.y27f{bottom:925.333333pt;}
.y129{bottom:929.065333pt;}
.y232{bottom:929.931867pt;}
.y1ed{bottom:930.518533pt;}
.ydd{bottom:936.081067pt;}
.y15e{bottom:936.503600pt;}
.y7d{bottom:936.507867pt;}
.y53{bottom:937.630800pt;}
.y231{bottom:941.261867pt;}
.y12a{bottom:943.465333pt;}
.y17b{bottom:943.732000pt;}
.y27c{bottom:943.999920pt;}
.ydc{bottom:952.081067pt;}
.y15d{bottom:952.503600pt;}
.y7c{bottom:952.507867pt;}
.y230{bottom:952.591867pt;}
.y17a{bottom:958.132000pt;}
.y1ec{bottom:959.318533pt;}
.y128{bottom:963.035867pt;}
.y22f{bottom:963.921867pt;}
.y27d{bottom:963.999920pt;}
.ydb{bottom:968.081067pt;}
.y15c{bottom:968.503600pt;}
.y7b{bottom:968.507867pt;}
.y52{bottom:972.302800pt;}
.y1eb{bottom:972.651867pt;}
.y22e{bottom:975.251867pt;}
.y127{bottom:977.699867pt;}
.y27e{bottom:983.999920pt;}
.yda{bottom:984.081067pt;}
.y15b{bottom:984.503600pt;}
.y7a{bottom:984.507867pt;}
.y22d{bottom:986.581867pt;}
.y1ea{bottom:990.785200pt;}
.y3{bottom:1014.174400pt;}
.y79{bottom:1014.174533pt;}
.y78{bottom:1040.000000pt;}
.h22{height:14.136000pt;}
.h23{height:14.280000pt;}
.h1e{height:14.346720pt;}
.h19{height:14.352000pt;}
.h24{height:14.568000pt;}
.h13{height:18.816000pt;}
.h2c{height:20.593664pt;}
.h1f{height:28.989547pt;}
.h2d{height:29.240000pt;}
.h1b{height:30.624000pt;}
.h3{height:31.061333pt;}
.h27{height:31.189333pt;}
.hf{height:32.000000pt;}
.h20{height:34.560000pt;}
.h5{height:34.944000pt;}
.h11{height:35.088000pt;}
.h1c{height:35.388576pt;}
.h14{height:36.238752pt;}
.h15{height:37.514016pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.ha{height:39.146667pt;}
.h26{height:39.878528pt;}
.h1a{height:43.067893pt;}
.h10{height:44.500000pt;}
.h6{height:44.629205pt;}
.h8{height:44.725205pt;}
.h9{height:44.746539pt;}
.h7{height:44.757205pt;}
.h29{height:44.863344pt;}
.h2a{height:44.864411pt;}
.h2b{height:44.880411pt;}
.h1d{height:46.265419pt;}
.h16{height:46.532085pt;}
.hc{height:49.932373pt;}
.hb{height:49.954240pt;}
.h12{height:49.954773pt;}
.h25{height:49.959573pt;}
.h28{height:49.971307pt;}
.he{height:54.832976pt;}
.h30{height:55.625000pt;}
.h17{height:55.885973pt;}
.h31{height:66.750000pt;}
.h18{height:67.602880pt;}
.h2f{height:83.437500pt;}
.hd{height:85.250000pt;}
.h21{height:88.192091pt;}
.h2e{height:1057.333333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w6{width:25.824000pt;}
.w7{width:46.776000pt;}
.w4{width:72.902667pt;}
.w5{width:128.258667pt;}
.w3{width:188.568000pt;}
.w8{width:237.024000pt;}
.w2{width:255.288000pt;}
.w9{width:793.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1b{left:-1.790933pt;}
.x0{left:0.000000pt;}
.x1d{left:40.369067pt;}
.x12{left:46.445067pt;}
.x20{left:52.289067pt;}
.x7{left:54.000000pt;}
.x1e{left:55.738655pt;}
.x3{left:59.066667pt;}
.x8{left:62.577733pt;}
.xe{left:65.999867pt;}
.x2e{left:71.529333pt;}
.x14{left:72.965067pt;}
.x37{left:75.260000pt;}
.x25{left:85.471600pt;}
.x44{left:112.000000pt;}
.x40{left:113.738813pt;}
.x3d{left:117.291013pt;}
.x23{left:122.058267pt;}
.x41{left:127.979253pt;}
.x3c{left:132.410893pt;}
.x3f{left:159.066653pt;}
.x2f{left:166.101333pt;}
.x16{left:171.778267pt;}
.x30{left:172.797333pt;}
.x42{left:175.995093pt;}
.x31{left:179.481333pt;}
.x4{left:195.892800pt;}
.x2c{left:208.677333pt;}
.x34{left:216.666667pt;}
.x2{left:243.642267pt;}
.x39{left:245.333333pt;}
.x2d{left:299.265333pt;}
.x3a{left:308.320027pt;}
.x43{left:338.693360pt;}
.x35{left:348.762667pt;}
.xf{left:409.191067pt;}
.x32{left:410.571333pt;}
.x18{left:421.179733pt;}
.x38{left:430.330000pt;}
.x27{left:435.007600pt;}
.x11{left:446.798667pt;}
.x2a{left:455.930667pt;}
.x5{left:477.792133pt;}
.x19{left:480.158667pt;}
.xa{left:485.794533pt;}
.x6{left:489.793600pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x21{left:510.313333pt;}
.x13{left:512.243733pt;}
.x3b{left:533.558680pt;}
.x22{left:534.958267pt;}
.x1a{left:537.990667pt;}
.x33{left:541.239333pt;}
.x1c{left:544.706400pt;}
.xd{left:548.447867pt;}
.x1f{left:601.253067pt;}
.x15{left:611.070400pt;}
.x36{left:612.954667pt;}
.x28{left:615.238667pt;}
.x24{left:631.678400pt;}
.x26{left:638.571733pt;}
.x10{left:641.816667pt;}
.x3e{left:657.332480pt;}
.x29{left:662.014400pt;}
.x9{left:668.502400pt;}
.x2b{left:692.954400pt;}
.x1{left:699.700800pt;}
.x17{left:702.086400pt;}
}




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