
    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_2bdf181fd03fe1ce62bc5528.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7cfa76641541632a10bdfe84.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_18c453e8316565fb6c0ef961.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_001bf8fe9998a53143cdbfba.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959961;font-style:normal;font-weight: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_8087391d7eb008aeb6a234a5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7ded8c23800dc988f92f5f08.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dc38864101aef0aa3c89a95e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.949219;font-style:normal;font-weight: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_5a48db17766209c8fffe6072.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.762207;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.281250;font-style:normal;font-weight: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_aaf5bef3a310a420709dffa6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107422;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.281250;font-style:normal;font-weight: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_b6f061f9aa26bb0e2ff670fd.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.fff{font-family:fff;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.281250;font-style:normal;font-weight: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_0ea6e8e764445938f68efa03.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.281250;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.281250;font-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);}
.v3{vertical-align:-90.000000px;}
.v7{vertical-align:-82.800000px;}
.v4{vertical-align:-23.760000px;}
.v2{vertical-align:-18.000000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v8{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.ls3c{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.864000px;}
.ls36{letter-spacing:-0.792000px;}
.lsf{letter-spacing:-0.720000px;}
.ls2{letter-spacing:-0.576000px;}
.ls3f{letter-spacing:-0.468000px;}
.ls6{letter-spacing:-0.432000px;}
.ls24{letter-spacing:-0.370200px;}
.ls25{letter-spacing:-0.355200px;}
.lsc{letter-spacing:-0.350400px;}
.ls22{letter-spacing:-0.349800px;}
.ls19{letter-spacing:-0.315600px;}
.ls4{letter-spacing:-0.305400px;}
.ls37{letter-spacing:-0.288000px;}
.ls2f{letter-spacing:-0.259800px;}
.ls3d{letter-spacing:-0.252000px;}
.ls1a{letter-spacing:-0.226200px;}
.ls8{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.178800px;}
.lsb{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.106800px;}
.ls32{letter-spacing:-0.100200px;}
.ls9{letter-spacing:-0.078156px;}
.ls12{letter-spacing:-0.072000px;}
.ls3a{letter-spacing:-0.028080px;}
.ls21{letter-spacing:-0.020160px;}
.ls20{letter-spacing:-0.015120px;}
.ls1{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.053280px;}
.ls2b{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.089400px;}
.ls41{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.150000px;}
.ls31{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.226200px;}
.ls2d{letter-spacing:0.259920px;}
.lse{letter-spacing:0.264000px;}
.ls3{letter-spacing:0.288000px;}
.ls3e{letter-spacing:0.324000px;}
.ls13{letter-spacing:0.408000px;}
.ls2e{letter-spacing:0.439920px;}
.ls40{letter-spacing:0.469440px;}
.ls11{letter-spacing:0.504000px;}
.ls1c{letter-spacing:0.541200px;}
.ls1f{letter-spacing:0.648000px;}
.ls34{letter-spacing:1.584000px;}
.ls2c{letter-spacing:2.304000px;}
.ls35{letter-spacing:3.024000px;}
.ls27{letter-spacing:5.184000px;}
.ls15{letter-spacing:7.344000px;}
.ls3b{letter-spacing:7.524000px;}
.ls10{letter-spacing:8.064000px;}
.ls14{letter-spacing:8.784000px;}
.ls29{letter-spacing:8.964000px;}
.ls2a{letter-spacing:9.504000px;}
.ls38{letter-spacing:10.944000px;}
.ls1d{letter-spacing:12.384000px;}
.ls26{letter-spacing:13.104000px;}
.lsa{letter-spacing:13.824000px;}
.ls16{letter-spacing:15.264000px;}
.ls1e{letter-spacing:19.584000px;}
.ls28{letter-spacing:24.624000px;}
.ls0{letter-spacing:87.984000px;}
.ls39{letter-spacing:231.960000px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.wsd{word-spacing:-23.068320px;}
.ws25{word-spacing:-20.664000px;}
.wsf{word-spacing:-20.520000px;}
.ws6{word-spacing:-20.304000px;}
.ws11{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.160000px;}
.ws8{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.944000px;}
.wsa{word-spacing:-19.872000px;}
.ws12{word-spacing:-19.800000px;}
.ws24{word-spacing:-19.728000px;}
.wsb{word-spacing:-19.584000px;}
.wsc{word-spacing:-19.440000px;}
.wse{word-spacing:-19.296000px;}
.ws23{word-spacing:-19.224000px;}
.ws7{word-spacing:-19.152000px;}
.ws4{word-spacing:-18.109320px;}
.ws20{word-spacing:-16.819680px;}
.ws1f{word-spacing:-16.666560px;}
.ws2{word-spacing:-16.613280px;}
.ws21{word-spacing:-16.513080px;}
.ws22{word-spacing:-16.506480px;}
.ws1e{word-spacing:-16.353480px;}
.ws0{word-spacing:-13.410720px;}
.ws1b{word-spacing:-12.760080px;}
.ws19{word-spacing:-12.594960px;}
.ws1c{word-spacing:-12.589920px;}
.ws1a{word-spacing:-12.260280px;}
.ws1d{word-spacing:-12.254880px;}
.ws17{word-spacing:-12.150480px;}
.ws13{word-spacing:-11.835480px;}
.ws14{word-spacing:-11.698680px;}
.ws18{word-spacing:-11.430480px;}
.ws16{word-spacing:-11.383080px;}
.ws15{word-spacing:-11.293680px;}
.ws1{word-spacing:-10.808640px;}
.ws2a{word-spacing:-10.332000px;}
.ws26{word-spacing:-10.152000px;}
.ws28{word-spacing:-9.936000px;}
.ws29{word-spacing:-9.756000px;}
.ws2b{word-spacing:-9.540000px;}
.ws27{word-spacing:-6.605280px;}
.ws5{word-spacing:0.000000px;}
._12{margin-left:-5.172000px;}
._a{margin-left:-4.032000px;}
._9{margin-left:-2.376000px;}
._0{margin-left:-1.188000px;}
._1{width:1.296000px;}
._5{width:2.661840px;}
._c{width:4.414560px;}
._7{width:5.665440px;}
._3{width:7.232880px;}
._2{width:8.352000px;}
._10{width:10.344000px;}
._f{width:11.736000px;}
._11{width:12.840000px;}
._4{width:13.905840px;}
._6{width:15.054960px;}
._17{width:16.104000px;}
._18{width:17.364000px;}
._15{width:18.540000px;}
._e{width:21.732000px;}
._d{width:23.472000px;}
._1a{width:24.492000px;}
._19{width:25.536000px;}
._23{width:26.604000px;}
._b{width:27.648000px;}
._20{width:28.800000px;}
._22{width:29.904000px;}
._21{width:30.960000px;}
._16{width:32.616000px;}
._27{width:33.912000px;}
._26{width:37.020000px;}
._3f{width:38.304000px;}
._1c{width:39.864000px;}
._1b{width:40.968000px;}
._1f{width:42.012000px;}
._1d{width:43.020000px;}
._25{width:45.576000px;}
._24{width:46.656000px;}
._1e{width:52.680000px;}
._58{width:54.720000px;}
._57{width:55.896000px;}
._8{width:59.114880px;}
._37{width:60.552000px;}
._28{width:64.008000px;}
._35{width:65.448000px;}
._36{width:66.636000px;}
._34{width:69.732000px;}
._33{width:70.992000px;}
._4f{width:73.692000px;}
._4e{width:74.880000px;}
._2d{width:92.628000px;}
._2c{width:93.672000px;}
._4b{width:101.520000px;}
._4a{width:102.672000px;}
._3b{width:106.848000px;}
._29{width:109.080000px;}
._44{width:111.168000px;}
._52{width:113.040000px;}
._2e{width:114.300000px;}
._2f{width:115.824000px;}
._38{width:119.736000px;}
._49{width:122.040000px;}
._48{width:123.336000px;}
._43{width:140.868000px;}
._42{width:142.128000px;}
._46{width:161.064000px;}
._45{width:162.144000px;}
._2b{width:165.168000px;}
._47{width:166.824000px;}
._3a{width:179.568000px;}
._59{width:228.204000px;}
._3e{width:229.824000px;}
._3d{width:230.904000px;}
._32{width:242.568000px;}
._31{width:244.296000px;}
._4d{width:303.552000px;}
._51{width:349.056000px;}
._50{width:350.640000px;}
._56{width:363.096000px;}
._40{width:364.248000px;}
._54{width:391.824000px;}
._55{width:424.152000px;}
._4c{width:425.160000px;}
._39{width:458.784000px;}
._2a{width:470.376000px;}
._53{width:483.480000px;}
._3c{width:666.108000px;}
._30{width:703.296000px;}
._41{width:744.048000px;}
._13{width:843.828000px;}
._14{width:1951.380000px;}
.fc1{color:rgb(0,51,153);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:2.880000px;}
.fsd{font-size:23.760000px;}
.fsc{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs7{font-size:60.000000px;}
.fs8{font-size:60.120000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2cb{bottom:1.965000px;}
.y2b8{bottom:1.980000px;}
.y308{bottom:2.010000px;}
.y2ce{bottom:2.145000px;}
.y2bb{bottom:2.160000px;}
.y28b{bottom:4.140000px;}
.y2ab{bottom:5.040000px;}
.y2b1{bottom:5.205000px;}
.y2a7{bottom:5.220000px;}
.y18b{bottom:5.925000px;}
.y135{bottom:5.940000px;}
.y180{bottom:5.955000px;}
.y2a6{bottom:6.840000px;}
.y1ca{bottom:8.625000px;}
.y1c0{bottom:8.640000px;}
.y131{bottom:9.360000px;}
.y2a4{bottom:10.260000px;}
.y191{bottom:12.765000px;}
.y139{bottom:12.780000px;}
.y2b9{bottom:13.140000px;}
.y2b6{bottom:13.320000px;}
.y2e3{bottom:13.500000px;}
.y133{bottom:13.680000px;}
.y18d{bottom:13.845000px;}
.y17e{bottom:13.860000px;}
.y137{bottom:20.520000px;}
.y13f{bottom:20.565000px;}
.y18f{bottom:20.685000px;}
.y184{bottom:20.700000px;}
.y134{bottom:21.600000px;}
.y189{bottom:21.765000px;}
.y182{bottom:21.780000px;}
.y2a5{bottom:26.100000px;}
.y2a3{bottom:26.280000px;}
.y190{bottom:28.425000px;}
.y138{bottom:28.440000px;}
.y140{bottom:28.485000px;}
.y18c{bottom:29.505000px;}
.y193{bottom:29.520000px;}
.y7c{bottom:33.783000px;}
.y194{bottom:37.260000px;}
.y18a{bottom:37.470000px;}
.y7b{bottom:50.702250px;}
.y2{bottom:57.996000px;}
.y7a{bottom:67.711650px;}
.y12f{bottom:82.296000px;}
.y1e3{bottom:82.476000px;}
.y286{bottom:83.736000px;}
.y79{bottom:84.721200px;}
.y212{bottom:86.256000px;}
.y239{bottom:86.436000px;}
.y11b{bottom:91.116000px;}
.yc9{bottom:91.476000px;}
.y256{bottom:92.736000px;}
.y277{bottom:95.436000px;}
.ya2{bottom:95.796000px;}
.y1f6{bottom:97.236000px;}
.y1cf{bottom:98.856000px;}
.y14c{bottom:99.576000px;}
.y1db{bottom:101.016000px;}
.y78{bottom:101.730600px;}
.y1d5{bottom:102.996000px;}
.y104{bottom:103.176000px;}
.y32d{bottom:103.356000px;}
.y26a{bottom:104.436000px;}
.y126{bottom:104.796000px;}
.y211{bottom:107.136000px;}
.y12e{bottom:109.296000px;}
.y276{bottom:116.136000px;}
.y11a{bottom:118.116000px;}
.yc8{bottom:118.296000px;}
.y77{bottom:118.740000px;}
.y255{bottom:122.436000px;}
.ye1{bottom:122.616000px;}
.ya1{bottom:122.796000px;}
.y269{bottom:125.136000px;}
.y1ce{bottom:125.676000px;}
.y14b{bottom:126.576000px;}
.y210{bottom:127.656000px;}
.y238{bottom:127.836000px;}
.y1da{bottom:128.016000px;}
.y1d4{bottom:129.816000px;}
.y103{bottom:129.996000px;}
.y125{bottom:131.616000px;}
.y1f5{bottom:133.236000px;}
.y285{bottom:134.136000px;}
.y76{bottom:135.659250px;}
.y1e2{bottom:136.296000px;}
.y281{bottom:136.836000px;}
.y32c{bottom:139.356000px;}
.y254{bottom:143.136000px;}
.y17c{bottom:144.396000px;}
.y12d{bottom:145.116000px;}
.yc7{bottom:145.296000px;}
.y275{bottom:145.836000px;}
.ya0{bottom:149.616000px;}
.y75{bottom:152.668800px;}
.y1cd{bottom:152.670000px;}
.y14a{bottom:153.390000px;}
.y119{bottom:153.930000px;}
.y268{bottom:154.830000px;}
.y1d3{bottom:156.810000px;}
.y102{bottom:156.990000px;}
.y20f{bottom:157.350000px;}
.y237{bottom:157.530000px;}
.y124{bottom:158.610000px;}
.y1f4{bottom:160.050000px;}
.y1e1{bottom:163.110000px;}
.y1d9{bottom:163.830000px;}
.y32b{bottom:165.825000px;}
.y274{bottom:166.530000px;}
.y74{bottom:169.678200px;}
.y17b{bottom:171.210000px;}
.yc6{bottom:172.110000px;}
.y267{bottom:175.530000px;}
.ye0{bottom:176.430000px;}
.y9f{bottom:176.610000px;}
.y32a{bottom:176.985000px;}
.y20e{bottom:178.050000px;}
.y236{bottom:178.230000px;}
.y149{bottom:180.390000px;}
.y1d2{bottom:183.630000px;}
.y101{bottom:183.810000px;}
.y253{bottom:184.530000px;}
.y123{bottom:185.430000px;}
.y73{bottom:186.687750px;}
.y1f3{bottom:187.050000px;}
.y273{bottom:187.230000px;}
.y329{bottom:187.965000px;}
.y1cc{bottom:188.490000px;}
.y1d8{bottom:191.010000px;}
.y284{bottom:196.230000px;}
.y17a{bottom:198.210000px;}
.y118{bottom:198.930000px;}
.yc5{bottom:199.110000px;}
.y328{bottom:199.125000px;}
.ydf{bottom:203.430000px;}
.y72{bottom:203.697150px;}
.y266{bottom:205.230000px;}
.y148{bottom:207.210000px;}
.y15c{bottom:207.390000px;}
.y235{bottom:207.930000px;}
.y327{bottom:210.105000px;}
.y1b2{bottom:210.630000px;}
.y100{bottom:210.810000px;}
.y9e{bottom:212.430000px;}
.y1f2{bottom:213.870000px;}
.y252{bottom:214.230000px;}
.y272{bottom:216.930000px;}
.y1d7{bottom:217.650000px;}
.y20d{bottom:219.450000px;}
.y1d1{bottom:219.630000px;}
.y2b4{bottom:219.810000px;}
.y71{bottom:220.616400px;}
.y326{bottom:221.265000px;}
.y179{bottom:225.030000px;}
.y117{bottom:225.750000px;}
.y12c{bottom:225.930000px;}
.y234{bottom:228.630000px;}
.yde{bottom:230.250000px;}
.y325{bottom:232.425000px;}
.y1cb{bottom:233.490000px;}
.y147{bottom:234.210000px;}
.y15b{bottom:234.390000px;}
.yc4{bottom:234.930000px;}
.y2b3{bottom:237.105000px;}
.y70{bottom:237.625800px;}
.yff{bottom:237.630000px;}
.y122{bottom:239.250000px;}
.y9d{bottom:239.430000px;}
.y1f1{bottom:240.870000px;}
.y324{bottom:243.405000px;}
.y265{bottom:246.630000px;}
.y20c{bottom:249.150000px;}
.y233{bottom:249.330000px;}
.y1d6{bottom:249.690000px;}
.y2b2{bottom:251.325000px;}
.y178{bottom:252.030000px;}
.y116{bottom:252.750000px;}
.y1e0{bottom:252.930000px;}
.y323{bottom:254.565000px;}
.y6f{bottom:254.635350px;}
.y251{bottom:255.630000px;}
.ydd{bottom:257.250000px;}
.y271{bottom:258.330000px;}
.y1c9{bottom:259.965000px;}
.y146{bottom:261.030000px;}
.y15a{bottom:261.210000px;}
.yc3{bottom:261.930000px;}
.y1b1{bottom:264.450000px;}
.yfe{bottom:264.630000px;}
.y2b0{bottom:265.545000px;}
.y322{bottom:265.725000px;}
.y9c{bottom:266.250000px;}
.y264{bottom:267.330000px;}
.y1f0{bottom:267.690000px;}
.y289{bottom:270.030000px;}
.y6e{bottom:271.644750px;}
.y250{bottom:276.375000px;}
.y321{bottom:276.735000px;}
.y177{bottom:278.895000px;}
.y232{bottom:279.075000px;}
.y12b{bottom:279.795000px;}
.y1c8{bottom:282.495000px;}
.ydc{bottom:284.115000px;}
.y320{bottom:287.895000px;}
.y159{bottom:288.075000px;}
.y115{bottom:288.615000px;}
.y6d{bottom:288.654150px;}
.yc2{bottom:288.795000px;}
.yfd{bottom:291.495000px;}
.y121{bottom:293.115000px;}
.y9b{bottom:293.295000px;}
.y2af{bottom:294.015000px;}
.y1ef{bottom:294.735000px;}
.y145{bottom:297.075000px;}
.y31f{bottom:299.055000px;}
.y231{bottom:299.775000px;}
.y20{bottom:300.675000px;}
.y1c7{bottom:304.995000px;}
.y6c{bottom:305.573400px;}
.y176{bottom:305.895000px;}
.y24f{bottom:306.075000px;}
.y12a{bottom:306.615000px;}
.y1df{bottom:306.795000px;}
.y2ae{bottom:308.235000px;}
.y20b{bottom:308.595000px;}
.y270{bottom:308.775000px;}
.y31e{bottom:310.035000px;}
.y1a2{bottom:312.735000px;}
.y158{bottom:315.075000px;}
.yed{bottom:315.615000px;}
.yc1{bottom:315.975000px;}
.y263{bottom:317.775000px;}
.y1b0{bottom:318.315000px;}
.yfc{bottom:318.495000px;}
.y9a{bottom:320.115000px;}
.y230{bottom:320.475000px;}
.y31d{bottom:321.195000px;}
.y1ee{bottom:321.555000px;}
.y2ad{bottom:322.455000px;}
.y6b{bottom:322.582950px;}
.y144{bottom:323.895000px;}
.y24e{bottom:326.775000px;}
.y1c6{bottom:327.495000px;}
.y120{bottom:329.115000px;}
.y20a{bottom:329.295000px;}
.y26f{bottom:329.475000px;}
.y31c{bottom:332.355000px;}
.y175{bottom:332.715000px;}
.y1f{bottom:333.255000px;}
.y114{bottom:333.615000px;}
.y2ac{bottom:336.675000px;}
.y262{bottom:338.655000px;}
.y1a1{bottom:339.555000px;}
.y6a{bottom:339.592350px;}
.y288{bottom:341.175000px;}
.y157{bottom:341.895000px;}
.yc0{bottom:342.615000px;}
.y31b{bottom:343.335000px;}
.y1af{bottom:345.315000px;}
.ydb{bottom:346.935000px;}
.y99{bottom:347.115000px;}
.y24d{bottom:347.475000px;}
.y1ed{bottom:348.555000px;}
.y1c5{bottom:349.995000px;}
.y22f{bottom:350.175000px;}
.y2aa{bottom:350.895000px;}
.yfb{bottom:354.315000px;}
.y31a{bottom:354.495000px;}
.y143{bottom:355.935000px;}
.y69{bottom:356.601750px;}
.y261{bottom:359.175000px;}
.y174{bottom:359.715000px;}
.y3b{bottom:360.435000px;}
.y1de{bottom:360.615000px;}
.y1e{bottom:363.495000px;}
.y2a9{bottom:364.935000px;}
.y319{bottom:365.655000px;}
.y1a0{bottom:366.375000px;}
.y24c{bottom:368.175000px;}
.y156{bottom:368.895000px;}
.yec{bottom:369.435000px;}
.ybf{bottom:369.615000px;}
.y280{bottom:370.875000px;}
.y1ae{bottom:372.135000px;}
.y1c4{bottom:372.495000px;}
.y68{bottom:373.611300px;}
.y98{bottom:373.935000px;}
.y1ec{bottom:375.375000px;}
.y11f{bottom:375.735000px;}
.y318{bottom:376.635000px;}
.y2a8{bottom:379.155000px;}
.y209{bottom:379.695000px;}
.y22e{bottom:379.875000px;}
.y283{bottom:380.055000px;}
.y1d0{bottom:381.135000px;}
.yfa{bottom:381.315000px;}
.y173{bottom:386.535000px;}
.y3a{bottom:387.255000px;}
.y113{bottom:387.435000px;}
.y317{bottom:387.795000px;}
.y24b{bottom:388.875000px;}
.y1d{bottom:390.315000px;}
.y67{bottom:390.620700px;}
.y27f{bottom:391.575000px;}
.y19f{bottom:393.375000px;}
.y1c3{bottom:394.995000px;}
.y155{bottom:395.715000px;}
.ybe{bottom:396.435000px;}
.y316{bottom:398.955000px;}
.y208{bottom:400.395000px;}
.y22d{bottom:400.575000px;}
.yda{bottom:400.755000px;}
.y97{bottom:400.935000px;}
.y1eb{bottom:402.195000px;}
.y66{bottom:407.539950px;}
.y2a2{bottom:407.595000px;}
.yf9{bottom:408.135000px;}
.y260{bottom:409.575000px;}
.y315{bottom:409.935000px;}
.y112{bottom:414.255000px;}
.y11e{bottom:414.435000px;}
.y1c2{bottom:417.495000px;}
.y24a{bottom:418.575000px;}
.y19e{bottom:420.195000px;}
.y314{bottom:421.095000px;}
.y22c{bottom:421.275000px;}
.y172{bottom:422.535000px;}
.yeb{bottom:423.255000px;}
.ybd{bottom:423.435000px;}
.y65{bottom:424.549500px;}
.y39{bottom:425.055000px;}
.y96{bottom:427.755000px;}
.y1c{bottom:428.115000px;}
.y1ea{bottom:429.195000px;}
.y207{bottom:430.095000px;}
.y25f{bottom:430.275000px;}
.y154{bottom:431.715000px;}
.y313{bottom:432.255000px;}
.y1ad{bottom:434.955000px;}
.yf8{bottom:435.135000px;}
.y249{bottom:439.275000px;}
.y1c1{bottom:439.995000px;}
.y111{bottom:441.255000px;}
.y64{bottom:441.558900px;}
.y22b{bottom:441.975000px;}
.y312{bottom:443.235000px;}
.y19d{bottom:447.195000px;}
.ybc{bottom:450.255000px;}
.y206{bottom:450.795000px;}
.y282{bottom:450.975000px;}
.y26e{bottom:451.155000px;}
.y311{bottom:454.395000px;}
.yd9{bottom:454.575000px;}
.y95{bottom:454.755000px;}
.y1e9{bottom:456.015000px;}
.y153{bottom:458.535000px;}
.y63{bottom:458.568300px;}
.y248{bottom:459.975000px;}
.yf7{bottom:461.955000px;}
.y27e{bottom:462.675000px;}
.y1bf{bottom:463.215000px;}
.y1b{bottom:463.395000px;}
.y38{bottom:463.575000px;}
.y310{bottom:465.555000px;}
.y2a1{bottom:466.095000px;}
.y171{bottom:467.355000px;}
.y110{bottom:468.075000px;}
.y11d{bottom:468.255000px;}
.y205{bottom:471.675000px;}
.y26d{bottom:471.855000px;}
.y19c{bottom:474.015000px;}
.y62{bottom:475.577850px;}
.y30f{bottom:476.535000px;}
.yea{bottom:477.075000px;}
.y1dd{bottom:477.255000px;}
.ybb{bottom:477.435000px;}
.y247{bottom:480.675000px;}
.y94{bottom:481.575000px;}
.y27d{bottom:483.375000px;}
.y152{bottom:485.535000px;}
.y30e{bottom:487.695000px;}
.y1ac{bottom:488.775000px;}
.yf6{bottom:488.955000px;}
.y1a{bottom:490.395000px;}
.y204{bottom:492.195000px;}
.y22a{bottom:492.375000px;}
.y61{bottom:492.497100px;}
.y1e8{bottom:493.815000px;}
.y10f{bottom:495.075000px;}
.y2a0{bottom:497.235000px;}
.y30d{bottom:498.855000px;}
.y37{bottom:499.575000px;}
.y19b{bottom:501.015000px;}
.y25e{bottom:501.375000px;}
.ye9{bottom:504.075000px;}
.yba{bottom:504.255000px;}
.y1be{bottom:505.695000px;}
.yd8{bottom:508.395000px;}
.y93{bottom:508.575000px;}
.y60{bottom:509.506500px;}
.y30c{bottom:509.835000px;}
.y246{bottom:510.375000px;}
.y2e1{bottom:512.175000px;}
.y151{bottom:512.355000px;}
.y27c{bottom:513.075000px;}
.yf5{bottom:515.775000px;}
.y19{bottom:518.835000px;}
.y30b{bottom:520.995000px;}
.y10e{bottom:521.895000px;}
.y11c{bottom:522.075000px;}
.y36{bottom:526.395000px;}
.y5f{bottom:526.516050px;}
.y19a{bottom:527.835000px;}
.ye8{bottom:530.895000px;}
.yb9{bottom:531.075000px;}
.y30a{bottom:532.155000px;}
.y1e7{bottom:532.335000px;}
.y1bd{bottom:532.515000px;}
.y27b{bottom:533.595000px;}
.y92{bottom:535.395000px;}
.y170{bottom:539.175000px;}
.y150{bottom:539.355000px;}
.y18{bottom:541.335000px;}
.y1ab{bottom:542.595000px;}
.yf4{bottom:542.775000px;}
.y309{bottom:543.135000px;}
.y5e{bottom:543.525450px;}
.y29f{bottom:546.195000px;}
.y2e0{bottom:547.815000px;}
.y10d{bottom:548.895000px;}
.y203{bottom:551.595000px;}
.y35{bottom:553.395000px;}
.y307{bottom:554.295000px;}
.y199{bottom:554.835000px;}
.yb8{bottom:557.925000px;}
.y1e6{bottom:559.545000px;}
.y5d{bottom:560.534850px;}
.yd7{bottom:562.245000px;}
.y229{bottom:563.325000px;}
.y17{bottom:563.865000px;}
.y306{bottom:565.485000px;}
.y16f{bottom:566.205000px;}
.ye7{bottom:566.925000px;}
.y1bc{bottom:568.545000px;}
.y1aa{bottom:569.445000px;}
.yf3{bottom:569.625000px;}
.y91{bottom:571.425000px;}
.y202{bottom:572.325000px;}
.y14f{bottom:575.205000px;}
.y10c{bottom:575.745000px;}
.y129{bottom:575.925000px;}
.y305{bottom:576.465000px;}
.y5c{bottom:577.454100px;}
.y34{bottom:580.245000px;}
.y198{bottom:581.685000px;}
.y2df{bottom:583.845000px;}
.y228{bottom:584.025000px;}
.y27a{bottom:584.205000px;}
.yb7{bottom:584.925000px;}
.y1e5{bottom:586.185000px;}
.y304{bottom:587.625000px;}
.y16e{bottom:593.025000px;}
.y5b{bottom:594.463650px;}
.y16{bottom:595.185000px;}
.y1bb{bottom:595.365000px;}
.y1a9{bottom:596.445000px;}
.y90{bottom:598.245000px;}
.y303{bottom:598.785000px;}
.y245{bottom:602.025000px;}
.y14e{bottom:602.205000px;}
.y29e{bottom:602.385000px;}
.y10b{bottom:602.565000px;}
.y128{bottom:602.745000px;}
.y279{bottom:604.725000px;}
.yf2{bottom:605.625000px;}
.y33{bottom:607.245000px;}
.y197{bottom:608.685000px;}
.y302{bottom:609.765000px;}
.y2de{bottom:610.305000px;}
.y5a{bottom:611.473050px;}
.yb6{bottom:611.745000px;}
.y227{bottom:613.725000px;}
.y1e4{bottom:618.225000px;}
.y301{bottom:620.925000px;}
.y2dd{bottom:621.465000px;}
.y1ba{bottom:622.365000px;}
.y201{bottom:622.725000px;}
.y244{bottom:622.905000px;}
.y29d{bottom:623.085000px;}
.y1a8{bottom:623.265000px;}
.yd6{bottom:625.065000px;}
.y8f{bottom:625.245000px;}
.y15{bottom:626.685000px;}
.y59{bottom:628.482450px;}
.y14d{bottom:629.025000px;}
.y127{bottom:629.565000px;}
.y300{bottom:632.085000px;}
.yf1{bottom:632.445000px;}
.y32{bottom:634.065000px;}
.y226{bottom:634.425000px;}
.yb5{bottom:638.565000px;}
.y2ff{bottom:643.065000px;}
.y200{bottom:643.425000px;}
.y2dc{bottom:643.605000px;}
.y29c{bottom:643.785000px;}
.y196{bottom:644.505000px;}
.y58{bottom:645.492000px;}
.y1b9{bottom:649.185000px;}
.y1a7{bottom:650.265000px;}
.y8e{bottom:652.065000px;}
.y2fe{bottom:654.225000px;}
.y2db{bottom:654.765000px;}
.y26c{bottom:655.125000px;}
.y225{bottom:655.305000px;}
.y16d{bottom:655.845000px;}
.yf0{bottom:659.445000px;}
.y14{bottom:659.625000px;}
.y31{bottom:661.065000px;}
.y57{bottom:662.411250px;}
.y1ff{bottom:664.125000px;}
.y29b{bottom:664.485000px;}
.y10a{bottom:665.385000px;}
.yb4{bottom:665.565000px;}
.y2da{bottom:665.745000px;}
.y195{bottom:671.145000px;}
.y224{bottom:675.825000px;}
.y1b8{bottom:676.185000px;}
.y2fd{bottom:676.365000px;}
.y2d9{bottom:676.905000px;}
.y1a6{bottom:677.085000px;}
.yd5{bottom:678.885000px;}
.y8d{bottom:679.065000px;}
.y56{bottom:679.420650px;}
.y16c{bottom:682.845000px;}
.y26b{bottom:684.825000px;}
.y29a{bottom:685.185000px;}
.y2fc{bottom:687.525000px;}
.y30{bottom:687.885000px;}
.y2d8{bottom:688.065000px;}
.yb3{bottom:692.385000px;}
.y1fe{bottom:693.825000px;}
.y13{bottom:694.725000px;}
.y55{bottom:696.430050px;}
.y2fb{bottom:698.685000px;}
.y2d7{bottom:699.045000px;}
.y1b7{bottom:703.005000px;}
.y223{bottom:705.525000px;}
.y287{bottom:705.705000px;}
.y8c{bottom:705.885000px;}
.y16b{bottom:709.665000px;}
.y2d6{bottom:710.205000px;}
.y1a5{bottom:713.085000px;}
.y54{bottom:713.439600px;}
.y1fd{bottom:714.525000px;}
.y2f{bottom:714.885000px;}
.y192{bottom:716.145000px;}
.yef{bottom:717.405000px;}
.y109{bottom:719.205000px;}
.yb2{bottom:719.385000px;}
.y2fa{bottom:720.825000px;}
.y2d5{bottom:721.365000px;}
.y222{bottom:726.225000px;}
.y299{bottom:726.585000px;}
.y1dc{bottom:728.385000px;}
.y12{bottom:729.645000px;}
.y53{bottom:730.449000px;}
.y2f9{bottom:731.985000px;}
.y2d4{bottom:732.345000px;}
.yd4{bottom:732.705000px;}
.y8b{bottom:732.885000px;}
.y1fc{bottom:735.225000px;}
.y16a{bottom:736.665000px;}
.y1b6{bottom:739.005000px;}
.y1a4{bottom:739.905000px;}
.y2e{bottom:741.705000px;}
.y2f8{bottom:742.965000px;}
.y2d3{bottom:743.505000px;}
.ye6{bottom:746.205000px;}
.y221{bottom:746.925000px;}
.y298{bottom:747.285000px;}
.y52{bottom:747.369750px;}
.y142{bottom:751.785000px;}
.y2f7{bottom:754.125000px;}
.y2d2{bottom:754.665000px;}
.yb1{bottom:755.205000px;}
.y243{bottom:755.925000px;}
.yee{bottom:758.265000px;}
.yd3{bottom:759.525000px;}
.y8a{bottom:759.705000px;}
.y18e{bottom:763.140000px;}
.y169{bottom:763.485000px;}
.y51{bottom:764.379300px;}
.y11{bottom:764.385000px;}
.y1fb{bottom:764.925000px;}
.y2f6{bottom:765.285000px;}
.y2d1{bottom:765.645000px;}
.y1b5{bottom:765.825000px;}
.y297{bottom:767.985000px;}
.y2d{bottom:768.525000px;}
.y1a3{bottom:771.945000px;}
.y108{bottom:773.025000px;}
.ye5{bottom:773.205000px;}
.y2f5{bottom:776.280000px;}
.y220{bottom:776.625000px;}
.y2d0{bottom:776.820000px;}
.y141{bottom:778.425000px;}
.y50{bottom:781.388700px;}
.yb0{bottom:782.205000px;}
.y242{bottom:785.625000px;}
.y89{bottom:786.525000px;}
.y2f4{bottom:787.425000px;}
.y2cf{bottom:787.965000px;}
.y296{bottom:788.685000px;}
.y168{bottom:790.485000px;}
.y1b4{bottom:792.825000px;}
.y1fa{bottom:794.625000px;}
.y2c{bottom:795.525000px;}
.y21f{bottom:797.325000px;}
.y10{bottom:798.225000px;}
.y4f{bottom:798.398100px;}
.y2f3{bottom:798.585000px;}
.y2cd{bottom:798.960000px;}
.ye4{bottom:800.025000px;}
.y241{bottom:806.325000px;}
.y188{bottom:808.140000px;}
.yaf{bottom:809.025000px;}
.y295{bottom:809.385000px;}
.y2f2{bottom:809.565000px;}
.y2cc{bottom:810.105000px;}
.y88{bottom:813.525000px;}
.y1f9{bottom:815.325000px;}
.y4e{bottom:815.407650px;}
.y167{bottom:817.305000px;}
.y2f1{bottom:820.740000px;}
.y2ca{bottom:821.280000px;}
.y13e{bottom:823.425000px;}
.y1b3{bottom:824.685000px;}
.y107{bottom:826.845000px;}
.ye3{bottom:827.025000px;}
.y294{bottom:830.085000px;}
.yf{bottom:831.345000px;}
.y2f0{bottom:831.885000px;}
.y2c9{bottom:832.245000px;}
.y4d{bottom:832.326900px;}
.yae{bottom:836.025000px;}
.y87{bottom:840.390000px;}
.yd2{bottom:842.190000px;}
.y2ef{bottom:842.910000px;}
.y2c8{bottom:843.450000px;}
.y166{bottom:844.350000px;}
.y21e{bottom:847.770000px;}
.y4c{bottom:849.336300px;}
.y293{bottom:850.830000px;}
.ye2{bottom:853.890000px;}
.y2ee{bottom:854.070000px;}
.y2c7{bottom:854.610000px;}
.y187{bottom:855.330000px;}
.y240{bottom:856.770000px;}
.y2b{bottom:858.390000px;}
.yad{bottom:862.890000px;}
.y2ed{bottom:865.230000px;}
.y2c6{bottom:865.590000px;}
.ye{bottom:865.770000px;}
.y4b{bottom:866.345700px;}
.y13d{bottom:868.470000px;}
.y165{bottom:870.810000px;}
.y292{bottom:871.530000px;}
.y1f8{bottom:873.510000px;}
.y2ec{bottom:876.210000px;}
.y86{bottom:876.390000px;}
.y2c5{bottom:876.750000px;}
.y25d{bottom:877.470000px;}
.y23f{bottom:877.650000px;}
.y106{bottom:880.710000px;}
.yd1{bottom:880.890000px;}
.y4a{bottom:883.355250px;}
.y2a{bottom:885.210000px;}
.y2eb{bottom:887.370000px;}
.y2c4{bottom:887.910000px;}
.yd{bottom:888.090000px;}
.y278{bottom:889.170000px;}
.yac{bottom:889.890000px;}
.y291{bottom:892.230000px;}
.yc{bottom:892.590000px;}
.y164{bottom:893.310000px;}
.y21d{bottom:898.170000px;}
.y23e{bottom:898.350000px;}
.y2ea{bottom:898.530000px;}
.y2c3{bottom:898.890000px;}
.y186{bottom:900.330000px;}
.y49{bottom:900.364650px;}
.y85{bottom:903.210000px;}
.y25c{bottom:907.170000px;}
.yd0{bottom:907.710000px;}
.y2e9{bottom:909.510000px;}
.y2c2{bottom:910.050000px;}
.y29{bottom:912.210000px;}
.y290{bottom:912.930000px;}
.y13c{bottom:913.470000px;}
.y163{bottom:915.810000px;}
.yab{bottom:916.710000px;}
.y48{bottom:917.285400px;}
.y21c{bottom:918.870000px;}
.yb{bottom:919.590000px;}
.y2e8{bottom:920.670000px;}
.y2c1{bottom:921.210000px;}
.ya{bottom:924.090000px;}
.y25b{bottom:927.870000px;}
.y84{bottom:930.210000px;}
.y185{bottom:931.650000px;}
.y2e7{bottom:931.830000px;}
.y2c0{bottom:932.190000px;}
.y28f{bottom:933.630000px;}
.y47{bottom:934.294950px;}
.ycf{bottom:934.710000px;}
.y162{bottom:938.310000px;}
.y21b{bottom:939.570000px;}
.y2e6{bottom:942.810000px;}
.y2bf{bottom:943.350000px;}
.yaa{bottom:943.710000px;}
.y28{bottom:948.030000px;}
.y23d{bottom:948.570000px;}
.y9{bottom:950.910000px;}
.y46{bottom:951.304350px;}
.y2e5{bottom:953.970000px;}
.y28e{bottom:954.330000px;}
.y2be{bottom:954.510000px;}
.y83{bottom:957.030000px;}
.y13b{bottom:958.470000px;}
.y21a{bottom:960.450000px;}
.y161{bottom:960.810000px;}
.yce{bottom:961.530000px;}
.y2e2{bottom:964.950000px;}
.y2bd{bottom:965.490000px;}
.y45{bottom:968.313750px;}
.y23c{bottom:969.270000px;}
.ya9{bottom:970.530000px;}
.y8{bottom:973.410000px;}
.y27{bottom:975.030000px;}
.y2e4{bottom:976.110000px;}
.y183{bottom:976.650000px;}
.y7{bottom:977.910000px;}
.y160{bottom:983.310000px;}
.y82{bottom:984.030000px;}
.y44{bottom:985.323300px;}
.y1f7{bottom:985.830000px;}
.y2bc{bottom:987.810000px;}
.ycd{bottom:988.530000px;}
.y219{bottom:989.970000px;}
.y23b{bottom:990.150000px;}
.y28d{bottom:995.730000px;}
.ya8{bottom:997.530000px;}
.y2ba{bottom:998.790000px;}
.y25a{bottom:998.970000px;}
.y26{bottom:1001.850000px;}
.y43{bottom:1002.244050px;}
.y13a{bottom:1003.470000px;}
.y15f{bottom:1005.810000px;}
.y6{bottom:1006.350000px;}
.y2b5{bottom:1009.950000px;}
.y218{bottom:1010.670000px;}
.y81{bottom:1010.850000px;}
.ycc{bottom:1015.350000px;}
.y28c{bottom:1016.430000px;}
.y42{bottom:1019.253450px;}
.y259{bottom:1019.670000px;}
.y2b7{bottom:1021.110000px;}
.y181{bottom:1021.650000px;}
.ya7{bottom:1024.350000px;}
.y15e{bottom:1028.310000px;}
.y25{bottom:1028.850000px;}
.y217{bottom:1031.370000px;}
.y5{bottom:1033.350000px;}
.y41{bottom:1036.262850px;}
.y80{bottom:1037.850000px;}
.y23a{bottom:1040.370000px;}
.ycb{bottom:1042.350000px;}
.y136{bottom:1048.470000px;}
.ya6{bottom:1051.350000px;}
.y15d{bottom:1051.530000px;}
.y28a{bottom:1052.070000px;}
.y40{bottom:1053.272400px;}
.y17f{bottom:1053.855000px;}
.y17d{bottom:1053.870000px;}
.y24{bottom:1055.670000px;}
.y216{bottom:1061.070000px;}
.y7f{bottom:1064.670000px;}
.yca{bottom:1069.170000px;}
.y3f{bottom:1070.281800px;}
.y4{bottom:1074.570000px;}
.ya5{bottom:1078.170000px;}
.y215{bottom:1081.770000px;}
.y23{bottom:1082.670000px;}
.y3e{bottom:1087.201050px;}
.y258{bottom:1090.770000px;}
.y7e{bottom:1091.670000px;}
.y132{bottom:1093.470000px;}
.y105{bottom:1096.170000px;}
.y214{bottom:1102.470000px;}
.y3d{bottom:1104.210600px;}
.ya4{bottom:1105.170000px;}
.y257{bottom:1111.470000px;}
.y3{bottom:1114.890000px;}
.y22{bottom:1120.290000px;}
.y3c{bottom:1121.220000px;}
.y130{bottom:1125.540000px;}
.y7d{bottom:1129.320000px;}
.ya3{bottom:1132.020000px;}
.y213{bottom:1132.200000px;}
.y1{bottom:1192.320000px;}
.y21{bottom:1244.880000px;}
.h2b{height:10.245000px;}
.h2f{height:10.260000px;}
.h33{height:10.281000px;}
.h31{height:10.282500px;}
.h32{height:10.290000px;}
.h2c{height:10.425000px;}
.h2e{height:10.440000px;}
.h2d{height:10.462500px;}
.h27{height:13.304850px;}
.h28{height:13.305000px;}
.h25{height:13.485000px;}
.h29{height:13.521000px;}
.h24{height:15.105000px;}
.h23{height:18.525000px;}
.h1e{height:20.685000px;}
.h20{height:20.700000px;}
.h1f{height:20.722500px;}
.h2a{height:21.405000px;}
.h30{height:21.585000px;}
.h15{height:22.485000px;}
.hd{height:22.500000px;}
.h1c{height:22.521000px;}
.h16{height:31.305000px;}
.h17{height:31.311000px;}
.h18{height:31.320000px;}
.hf{height:31.350000px;}
.h19{height:31.485000px;}
.h21{height:34.365000px;}
.h11{height:37.457578px;}
.h22{height:37.546875px;}
.h26{height:39.900938px;}
.he{height:43.554375px;}
.h5{height:44.327813px;}
.h10{height:44.985000px;}
.ha{height:45.000000px;}
.h12{height:45.022500px;}
.h1b{height:46.980000px;}
.h1a{height:47.181000px;}
.h14{height:47.309062px;}
.h8{height:50.312812px;}
.hc{height:58.975137px;}
.h13{height:60.645000px;}
.h6{height:62.327813px;}
.h1d{height:64.582031px;}
.h7{height:69.086250px;}
.h2{height:75.093750px;}
.h9{height:87.859687px;}
.h3{height:112.640625px;}
.hb{height:1188.000000px;}
.h4{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w43{width:34.200000px;}
.w33{width:40.305000px;}
.w3e{width:40.341000px;}
.w13{width:40.851000px;}
.w34{width:42.645000px;}
.w42{width:45.180000px;}
.w3{width:51.696000px;}
.w28{width:52.401000px;}
.w22{width:52.402500px;}
.wa{width:53.085000px;}
.w6{width:53.121000px;}
.w26{width:53.301000px;}
.w15{width:53.302500px;}
.w9{width:53.316000px;}
.w27{width:53.985000px;}
.w20{width:53.995500px;}
.w21{width:54.000000px;}
.w3d{width:54.165000px;}
.w18{width:56.155500px;}
.w19{width:56.160000px;}
.w1a{width:56.335500px;}
.w1b{width:56.340000px;}
.w29{width:57.225000px;}
.w23{width:57.231000px;}
.w24{width:57.240000px;}
.w36{width:58.140000px;}
.w16{width:60.655500px;}
.w17{width:60.660000px;}
.w1c{width:60.696000px;}
.w1d{width:60.705000px;}
.w5{width:63.705000px;}
.w1e{width:63.715500px;}
.w1f{width:63.720000px;}
.wd{width:63.741000px;}
.w7{width:63.900000px;}
.w2b{width:65.865000px;}
.w2a{width:65.871000px;}
.w2d{width:65.880000px;}
.w2c{width:65.901000px;}
.w2e{width:65.916000px;}
.w2f{width:66.045000px;}
.we{width:66.420000px;}
.wb{width:67.485000px;}
.w12{width:68.601000px;}
.w3b{width:71.445000px;}
.w38{width:71.481000px;}
.w45{width:71.625000px;}
.w3a{width:71.805000px;}
.w25{width:72.345000px;}
.w39{width:72.396000px;}
.w46{width:72.525000px;}
.w3c{width:72.705000px;}
.w8{width:74.340000px;}
.w40{width:80.805000px;}
.wc{width:81.381000px;}
.w11{width:84.945000px;}
.w4{width:85.131000px;}
.w14{width:86.745000px;}
.w10{width:95.796000px;}
.w30{width:97.761000px;}
.wf{width:103.680000px;}
.w3f{width:107.460000px;}
.w35{width:108.381000px;}
.w41{width:110.541000px;}
.w32{width:137.145000px;}
.w31{width:137.196000px;}
.w44{width:216.390000px;}
.w37{width:216.570000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.500000px;}
.x20{left:8.640000px;}
.x22{left:10.431000px;}
.x1f{left:11.685000px;}
.xe{left:13.500000px;}
.x1e{left:14.751000px;}
.x21{left:16.005000px;}
.x10{left:17.091000px;}
.x3a{left:18.180000px;}
.x18{left:19.260000px;}
.x14{left:20.865000px;}
.x1d{left:22.860000px;}
.x2c{left:24.120000px;}
.x12{left:25.725000px;}
.x8{left:27.000000px;}
.x2d{left:28.830000px;}
.x17{left:30.960000px;}
.x24{left:33.645000px;}
.x2e{left:35.820000px;}
.x23{left:37.080000px;}
.x5b{left:40.305000px;}
.x47{left:44.460000px;}
.x52{left:48.450000px;}
.x49{left:49.485000px;}
.x4c{left:54.210000px;}
.x5c{left:55.290000px;}
.x4f{left:68.790000px;}
.xd{left:75.960000px;}
.x9{left:91.597500px;}
.x5{left:101.713500px;}
.x3{left:111.793500px;}
.x4{left:121.896000px;}
.xf{left:127.665000px;}
.x1{left:148.896000px;}
.x2f{left:162.045000px;}
.x6{left:175.890000px;}
.x43{left:184.890000px;}
.x5a{left:199.125000px;}
.x53{left:203.985000px;}
.x4a{left:209.745000px;}
.x11{left:212.805000px;}
.xb{left:214.590000px;}
.x26{left:236.925000px;}
.x30{left:248.805000px;}
.x4b{left:250.065000px;}
.x54{left:258.165000px;}
.x13{left:276.525000px;}
.x3b{left:280.665000px;}
.x45{left:292.365000px;}
.x44{left:296.130000px;}
.x55{left:298.515000px;}
.x27{left:300.675000px;}
.x31{left:302.115000px;}
.x15{left:329.655000px;}
.x3c{left:346.575000px;}
.x32{left:362.775000px;}
.x28{left:367.095000px;}
.x46{left:390.135000px;}
.x16{left:393.555000px;}
.x4d{left:401.115000px;}
.x56{left:405.975000px;}
.x3d{left:412.455000px;}
.x33{left:418.935000px;}
.x5d{left:435.675000px;}
.x4e{left:459.255000px;}
.x57{left:464.115000px;}
.xc{left:468.435000px;}
.x29{left:470.775000px;}
.x2{left:473.295000px;}
.x34{left:475.275000px;}
.x3e{left:478.335000px;}
.x19{left:521.220000px;}
.x48{left:527.340000px;}
.x50{left:531.660000px;}
.x35{left:535.980000px;}
.x5f{left:542.280000px;}
.x3f{left:544.260000px;}
.x2a{left:566.580000px;}
.x1a{left:574.320000px;}
.x36{left:599.700000px;}
.x51{left:604.020000px;}
.x59{left:608.340000px;}
.x40{left:610.320000px;}
.x60{left:614.640000px;}
.x1b{left:627.420000px;}
.x2b{left:651.540000px;}
.x37{left:653.700000px;}
.xa{left:676.365000px;}
.x58{left:680.700000px;}
.x5e{left:686.280000px;}
.x1c{left:694.920000px;}
.x38{left:706.110000px;}
.x42{left:737.790000px;}
.x41{left:742.110000px;}
.x39{left:763.350000px;}
.x25{left:808.170000px;}
@media print{
.v3{vertical-align:-80.000000pt;}
.v7{vertical-align:-73.600000pt;}
.v4{vertical-align:-21.120000pt;}
.v2{vertical-align:-16.000000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v8{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.ls3c{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.768000pt;}
.ls36{letter-spacing:-0.704000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls3f{letter-spacing:-0.416000pt;}
.ls6{letter-spacing:-0.384000pt;}
.ls24{letter-spacing:-0.329067pt;}
.ls25{letter-spacing:-0.315733pt;}
.lsc{letter-spacing:-0.311467pt;}
.ls22{letter-spacing:-0.310933pt;}
.ls19{letter-spacing:-0.280533pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls37{letter-spacing:-0.256000pt;}
.ls2f{letter-spacing:-0.230933pt;}
.ls3d{letter-spacing:-0.224000pt;}
.ls1a{letter-spacing:-0.201067pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.158933pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.094933pt;}
.ls32{letter-spacing:-0.089067pt;}
.ls9{letter-spacing:-0.069472pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls3a{letter-spacing:-0.024960pt;}
.ls21{letter-spacing:-0.017920pt;}
.ls20{letter-spacing:-0.013440pt;}
.ls1{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.047360pt;}
.ls2b{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.079467pt;}
.ls41{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.133333pt;}
.ls31{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.201067pt;}
.ls2d{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.234667pt;}
.ls3{letter-spacing:0.256000pt;}
.ls3e{letter-spacing:0.288000pt;}
.ls13{letter-spacing:0.362667pt;}
.ls2e{letter-spacing:0.391040pt;}
.ls40{letter-spacing:0.417280pt;}
.ls11{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:0.481067pt;}
.ls1f{letter-spacing:0.576000pt;}
.ls34{letter-spacing:1.408000pt;}
.ls2c{letter-spacing:2.048000pt;}
.ls35{letter-spacing:2.688000pt;}
.ls27{letter-spacing:4.608000pt;}
.ls15{letter-spacing:6.528000pt;}
.ls3b{letter-spacing:6.688000pt;}
.ls10{letter-spacing:7.168000pt;}
.ls14{letter-spacing:7.808000pt;}
.ls29{letter-spacing:7.968000pt;}
.ls2a{letter-spacing:8.448000pt;}
.ls38{letter-spacing:9.728000pt;}
.ls1d{letter-spacing:11.008000pt;}
.ls26{letter-spacing:11.648000pt;}
.lsa{letter-spacing:12.288000pt;}
.ls16{letter-spacing:13.568000pt;}
.ls1e{letter-spacing:17.408000pt;}
.ls28{letter-spacing:21.888000pt;}
.ls0{letter-spacing:78.208000pt;}
.ls39{letter-spacing:206.186667pt;}
.ws3{word-spacing:-58.880000pt;}
.wsd{word-spacing:-20.505173pt;}
.ws25{word-spacing:-18.368000pt;}
.wsf{word-spacing:-18.240000pt;}
.ws6{word-spacing:-18.048000pt;}
.ws11{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws8{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.728000pt;}
.wsa{word-spacing:-17.664000pt;}
.ws12{word-spacing:-17.600000pt;}
.ws24{word-spacing:-17.536000pt;}
.wsb{word-spacing:-17.408000pt;}
.wsc{word-spacing:-17.280000pt;}
.wse{word-spacing:-17.152000pt;}
.ws23{word-spacing:-17.088000pt;}
.ws7{word-spacing:-17.024000pt;}
.ws4{word-spacing:-16.097173pt;}
.ws20{word-spacing:-14.950827pt;}
.ws1f{word-spacing:-14.814720pt;}
.ws2{word-spacing:-14.767360pt;}
.ws21{word-spacing:-14.678293pt;}
.ws22{word-spacing:-14.672427pt;}
.ws1e{word-spacing:-14.536427pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1b{word-spacing:-11.342293pt;}
.ws19{word-spacing:-11.195520pt;}
.ws1c{word-spacing:-11.191040pt;}
.ws1a{word-spacing:-10.898027pt;}
.ws1d{word-spacing:-10.893227pt;}
.ws17{word-spacing:-10.800427pt;}
.ws13{word-spacing:-10.520427pt;}
.ws14{word-spacing:-10.398827pt;}
.ws18{word-spacing:-10.160427pt;}
.ws16{word-spacing:-10.118293pt;}
.ws15{word-spacing:-10.038827pt;}
.ws1{word-spacing:-9.607680pt;}
.ws2a{word-spacing:-9.184000pt;}
.ws26{word-spacing:-9.024000pt;}
.ws28{word-spacing:-8.832000pt;}
.ws29{word-spacing:-8.672000pt;}
.ws2b{word-spacing:-8.480000pt;}
.ws27{word-spacing:-5.871360pt;}
.ws5{word-spacing:0.000000pt;}
._12{margin-left:-4.597333pt;}
._a{margin-left:-3.584000pt;}
._9{margin-left:-2.112000pt;}
._0{margin-left:-1.056000pt;}
._1{width:1.152000pt;}
._5{width:2.366080pt;}
._c{width:3.924053pt;}
._7{width:5.035947pt;}
._3{width:6.429227pt;}
._2{width:7.424000pt;}
._10{width:9.194667pt;}
._f{width:10.432000pt;}
._11{width:11.413333pt;}
._4{width:12.360747pt;}
._6{width:13.382187pt;}
._17{width:14.314667pt;}
._18{width:15.434667pt;}
._15{width:16.480000pt;}
._e{width:19.317333pt;}
._d{width:20.864000pt;}
._1a{width:21.770667pt;}
._19{width:22.698667pt;}
._23{width:23.648000pt;}
._b{width:24.576000pt;}
._20{width:25.600000pt;}
._22{width:26.581333pt;}
._21{width:27.520000pt;}
._16{width:28.992000pt;}
._27{width:30.144000pt;}
._26{width:32.906667pt;}
._3f{width:34.048000pt;}
._1c{width:35.434667pt;}
._1b{width:36.416000pt;}
._1f{width:37.344000pt;}
._1d{width:38.240000pt;}
._25{width:40.512000pt;}
._24{width:41.472000pt;}
._1e{width:46.826667pt;}
._58{width:48.640000pt;}
._57{width:49.685333pt;}
._8{width:52.546560pt;}
._37{width:53.824000pt;}
._28{width:56.896000pt;}
._35{width:58.176000pt;}
._36{width:59.232000pt;}
._34{width:61.984000pt;}
._33{width:63.104000pt;}
._4f{width:65.504000pt;}
._4e{width:66.560000pt;}
._2d{width:82.336000pt;}
._2c{width:83.264000pt;}
._4b{width:90.240000pt;}
._4a{width:91.264000pt;}
._3b{width:94.976000pt;}
._29{width:96.960000pt;}
._44{width:98.816000pt;}
._52{width:100.480000pt;}
._2e{width:101.600000pt;}
._2f{width:102.954667pt;}
._38{width:106.432000pt;}
._49{width:108.480000pt;}
._48{width:109.632000pt;}
._43{width:125.216000pt;}
._42{width:126.336000pt;}
._46{width:143.168000pt;}
._45{width:144.128000pt;}
._2b{width:146.816000pt;}
._47{width:148.288000pt;}
._3a{width:159.616000pt;}
._59{width:202.848000pt;}
._3e{width:204.288000pt;}
._3d{width:205.248000pt;}
._32{width:215.616000pt;}
._31{width:217.152000pt;}
._4d{width:269.824000pt;}
._51{width:310.272000pt;}
._50{width:311.680000pt;}
._56{width:322.752000pt;}
._40{width:323.776000pt;}
._54{width:348.288000pt;}
._55{width:377.024000pt;}
._4c{width:377.920000pt;}
._39{width:407.808000pt;}
._2a{width:418.112000pt;}
._53{width:429.760000pt;}
._3c{width:592.096000pt;}
._30{width:625.152000pt;}
._41{width:661.376000pt;}
._13{width:750.069333pt;}
._14{width:1734.560000pt;}
.fsa{font-size:2.560000pt;}
.fsd{font-size:21.120000pt;}
.fsc{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs7{font-size:53.333333pt;}
.fs8{font-size:53.440000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2cb{bottom:1.746667pt;}
.y2b8{bottom:1.760000pt;}
.y308{bottom:1.786667pt;}
.y2ce{bottom:1.906667pt;}
.y2bb{bottom:1.920000pt;}
.y28b{bottom:3.680000pt;}
.y2ab{bottom:4.480000pt;}
.y2b1{bottom:4.626667pt;}
.y2a7{bottom:4.640000pt;}
.y18b{bottom:5.266667pt;}
.y135{bottom:5.280000pt;}
.y180{bottom:5.293333pt;}
.y2a6{bottom:6.080000pt;}
.y1ca{bottom:7.666667pt;}
.y1c0{bottom:7.680000pt;}
.y131{bottom:8.320000pt;}
.y2a4{bottom:9.120000pt;}
.y191{bottom:11.346667pt;}
.y139{bottom:11.360000pt;}
.y2b9{bottom:11.680000pt;}
.y2b6{bottom:11.840000pt;}
.y2e3{bottom:12.000000pt;}
.y133{bottom:12.160000pt;}
.y18d{bottom:12.306667pt;}
.y17e{bottom:12.320000pt;}
.y137{bottom:18.240000pt;}
.y13f{bottom:18.280000pt;}
.y18f{bottom:18.386667pt;}
.y184{bottom:18.400000pt;}
.y134{bottom:19.200000pt;}
.y189{bottom:19.346667pt;}
.y182{bottom:19.360000pt;}
.y2a5{bottom:23.200000pt;}
.y2a3{bottom:23.360000pt;}
.y190{bottom:25.266667pt;}
.y138{bottom:25.280000pt;}
.y140{bottom:25.320000pt;}
.y18c{bottom:26.226667pt;}
.y193{bottom:26.240000pt;}
.y7c{bottom:30.029333pt;}
.y194{bottom:33.120000pt;}
.y18a{bottom:33.306667pt;}
.y7b{bottom:45.068667pt;}
.y2{bottom:51.552000pt;}
.y7a{bottom:60.188133pt;}
.y12f{bottom:73.152000pt;}
.y1e3{bottom:73.312000pt;}
.y286{bottom:74.432000pt;}
.y79{bottom:75.307733pt;}
.y212{bottom:76.672000pt;}
.y239{bottom:76.832000pt;}
.y11b{bottom:80.992000pt;}
.yc9{bottom:81.312000pt;}
.y256{bottom:82.432000pt;}
.y277{bottom:84.832000pt;}
.ya2{bottom:85.152000pt;}
.y1f6{bottom:86.432000pt;}
.y1cf{bottom:87.872000pt;}
.y14c{bottom:88.512000pt;}
.y1db{bottom:89.792000pt;}
.y78{bottom:90.427200pt;}
.y1d5{bottom:91.552000pt;}
.y104{bottom:91.712000pt;}
.y32d{bottom:91.872000pt;}
.y26a{bottom:92.832000pt;}
.y126{bottom:93.152000pt;}
.y211{bottom:95.232000pt;}
.y12e{bottom:97.152000pt;}
.y276{bottom:103.232000pt;}
.y11a{bottom:104.992000pt;}
.yc8{bottom:105.152000pt;}
.y77{bottom:105.546667pt;}
.y255{bottom:108.832000pt;}
.ye1{bottom:108.992000pt;}
.ya1{bottom:109.152000pt;}
.y269{bottom:111.232000pt;}
.y1ce{bottom:111.712000pt;}
.y14b{bottom:112.512000pt;}
.y210{bottom:113.472000pt;}
.y238{bottom:113.632000pt;}
.y1da{bottom:113.792000pt;}
.y1d4{bottom:115.392000pt;}
.y103{bottom:115.552000pt;}
.y125{bottom:116.992000pt;}
.y1f5{bottom:118.432000pt;}
.y285{bottom:119.232000pt;}
.y76{bottom:120.586000pt;}
.y1e2{bottom:121.152000pt;}
.y281{bottom:121.632000pt;}
.y32c{bottom:123.872000pt;}
.y254{bottom:127.232000pt;}
.y17c{bottom:128.352000pt;}
.y12d{bottom:128.992000pt;}
.yc7{bottom:129.152000pt;}
.y275{bottom:129.632000pt;}
.ya0{bottom:132.992000pt;}
.y75{bottom:135.705600pt;}
.y1cd{bottom:135.706667pt;}
.y14a{bottom:136.346667pt;}
.y119{bottom:136.826667pt;}
.y268{bottom:137.626667pt;}
.y1d3{bottom:139.386667pt;}
.y102{bottom:139.546667pt;}
.y20f{bottom:139.866667pt;}
.y237{bottom:140.026667pt;}
.y124{bottom:140.986667pt;}
.y1f4{bottom:142.266667pt;}
.y1e1{bottom:144.986667pt;}
.y1d9{bottom:145.626667pt;}
.y32b{bottom:147.400000pt;}
.y274{bottom:148.026667pt;}
.y74{bottom:150.825067pt;}
.y17b{bottom:152.186667pt;}
.yc6{bottom:152.986667pt;}
.y267{bottom:156.026667pt;}
.ye0{bottom:156.826667pt;}
.y9f{bottom:156.986667pt;}
.y32a{bottom:157.320000pt;}
.y20e{bottom:158.266667pt;}
.y236{bottom:158.426667pt;}
.y149{bottom:160.346667pt;}
.y1d2{bottom:163.226667pt;}
.y101{bottom:163.386667pt;}
.y253{bottom:164.026667pt;}
.y123{bottom:164.826667pt;}
.y73{bottom:165.944667pt;}
.y1f3{bottom:166.266667pt;}
.y273{bottom:166.426667pt;}
.y329{bottom:167.080000pt;}
.y1cc{bottom:167.546667pt;}
.y1d8{bottom:169.786667pt;}
.y284{bottom:174.426667pt;}
.y17a{bottom:176.186667pt;}
.y118{bottom:176.826667pt;}
.yc5{bottom:176.986667pt;}
.y328{bottom:177.000000pt;}
.ydf{bottom:180.826667pt;}
.y72{bottom:181.064133pt;}
.y266{bottom:182.426667pt;}
.y148{bottom:184.186667pt;}
.y15c{bottom:184.346667pt;}
.y235{bottom:184.826667pt;}
.y327{bottom:186.760000pt;}
.y1b2{bottom:187.226667pt;}
.y100{bottom:187.386667pt;}
.y9e{bottom:188.826667pt;}
.y1f2{bottom:190.106667pt;}
.y252{bottom:190.426667pt;}
.y272{bottom:192.826667pt;}
.y1d7{bottom:193.466667pt;}
.y20d{bottom:195.066667pt;}
.y1d1{bottom:195.226667pt;}
.y2b4{bottom:195.386667pt;}
.y71{bottom:196.103467pt;}
.y326{bottom:196.680000pt;}
.y179{bottom:200.026667pt;}
.y117{bottom:200.666667pt;}
.y12c{bottom:200.826667pt;}
.y234{bottom:203.226667pt;}
.yde{bottom:204.666667pt;}
.y325{bottom:206.600000pt;}
.y1cb{bottom:207.546667pt;}
.y147{bottom:208.186667pt;}
.y15b{bottom:208.346667pt;}
.yc4{bottom:208.826667pt;}
.y2b3{bottom:210.760000pt;}
.y70{bottom:211.222933pt;}
.yff{bottom:211.226667pt;}
.y122{bottom:212.666667pt;}
.y9d{bottom:212.826667pt;}
.y1f1{bottom:214.106667pt;}
.y324{bottom:216.360000pt;}
.y265{bottom:219.226667pt;}
.y20c{bottom:221.466667pt;}
.y233{bottom:221.626667pt;}
.y1d6{bottom:221.946667pt;}
.y2b2{bottom:223.400000pt;}
.y178{bottom:224.026667pt;}
.y116{bottom:224.666667pt;}
.y1e0{bottom:224.826667pt;}
.y323{bottom:226.280000pt;}
.y6f{bottom:226.342533pt;}
.y251{bottom:227.226667pt;}
.ydd{bottom:228.666667pt;}
.y271{bottom:229.626667pt;}
.y1c9{bottom:231.080000pt;}
.y146{bottom:232.026667pt;}
.y15a{bottom:232.186667pt;}
.yc3{bottom:232.826667pt;}
.y1b1{bottom:235.066667pt;}
.yfe{bottom:235.226667pt;}
.y2b0{bottom:236.040000pt;}
.y322{bottom:236.200000pt;}
.y9c{bottom:236.666667pt;}
.y264{bottom:237.626667pt;}
.y1f0{bottom:237.946667pt;}
.y289{bottom:240.026667pt;}
.y6e{bottom:241.462000pt;}
.y250{bottom:245.666667pt;}
.y321{bottom:245.986667pt;}
.y177{bottom:247.906667pt;}
.y232{bottom:248.066667pt;}
.y12b{bottom:248.706667pt;}
.y1c8{bottom:251.106667pt;}
.ydc{bottom:252.546667pt;}
.y320{bottom:255.906667pt;}
.y159{bottom:256.066667pt;}
.y115{bottom:256.546667pt;}
.y6d{bottom:256.581467pt;}
.yc2{bottom:256.706667pt;}
.yfd{bottom:259.106667pt;}
.y121{bottom:260.546667pt;}
.y9b{bottom:260.706667pt;}
.y2af{bottom:261.346667pt;}
.y1ef{bottom:261.986667pt;}
.y145{bottom:264.066667pt;}
.y31f{bottom:265.826667pt;}
.y231{bottom:266.466667pt;}
.y20{bottom:267.266667pt;}
.y1c7{bottom:271.106667pt;}
.y6c{bottom:271.620800pt;}
.y176{bottom:271.906667pt;}
.y24f{bottom:272.066667pt;}
.y12a{bottom:272.546667pt;}
.y1df{bottom:272.706667pt;}
.y2ae{bottom:273.986667pt;}
.y20b{bottom:274.306667pt;}
.y270{bottom:274.466667pt;}
.y31e{bottom:275.586667pt;}
.y1a2{bottom:277.986667pt;}
.y158{bottom:280.066667pt;}
.yed{bottom:280.546667pt;}
.yc1{bottom:280.866667pt;}
.y263{bottom:282.466667pt;}
.y1b0{bottom:282.946667pt;}
.yfc{bottom:283.106667pt;}
.y9a{bottom:284.546667pt;}
.y230{bottom:284.866667pt;}
.y31d{bottom:285.506667pt;}
.y1ee{bottom:285.826667pt;}
.y2ad{bottom:286.626667pt;}
.y6b{bottom:286.740400pt;}
.y144{bottom:287.906667pt;}
.y24e{bottom:290.466667pt;}
.y1c6{bottom:291.106667pt;}
.y120{bottom:292.546667pt;}
.y20a{bottom:292.706667pt;}
.y26f{bottom:292.866667pt;}
.y31c{bottom:295.426667pt;}
.y175{bottom:295.746667pt;}
.y1f{bottom:296.226667pt;}
.y114{bottom:296.546667pt;}
.y2ac{bottom:299.266667pt;}
.y262{bottom:301.026667pt;}
.y1a1{bottom:301.826667pt;}
.y6a{bottom:301.859867pt;}
.y288{bottom:303.266667pt;}
.y157{bottom:303.906667pt;}
.yc0{bottom:304.546667pt;}
.y31b{bottom:305.186667pt;}
.y1af{bottom:306.946667pt;}
.ydb{bottom:308.386667pt;}
.y99{bottom:308.546667pt;}
.y24d{bottom:308.866667pt;}
.y1ed{bottom:309.826667pt;}
.y1c5{bottom:311.106667pt;}
.y22f{bottom:311.266667pt;}
.y2aa{bottom:311.906667pt;}
.yfb{bottom:314.946667pt;}
.y31a{bottom:315.106667pt;}
.y143{bottom:316.386667pt;}
.y69{bottom:316.979333pt;}
.y261{bottom:319.266667pt;}
.y174{bottom:319.746667pt;}
.y3b{bottom:320.386667pt;}
.y1de{bottom:320.546667pt;}
.y1e{bottom:323.106667pt;}
.y2a9{bottom:324.386667pt;}
.y319{bottom:325.026667pt;}
.y1a0{bottom:325.666667pt;}
.y24c{bottom:327.266667pt;}
.y156{bottom:327.906667pt;}
.yec{bottom:328.386667pt;}
.ybf{bottom:328.546667pt;}
.y280{bottom:329.666667pt;}
.y1ae{bottom:330.786667pt;}
.y1c4{bottom:331.106667pt;}
.y68{bottom:332.098933pt;}
.y98{bottom:332.386667pt;}
.y1ec{bottom:333.666667pt;}
.y11f{bottom:333.986667pt;}
.y318{bottom:334.786667pt;}
.y2a8{bottom:337.026667pt;}
.y209{bottom:337.506667pt;}
.y22e{bottom:337.666667pt;}
.y283{bottom:337.826667pt;}
.y1d0{bottom:338.786667pt;}
.yfa{bottom:338.946667pt;}
.y173{bottom:343.586667pt;}
.y3a{bottom:344.226667pt;}
.y113{bottom:344.386667pt;}
.y317{bottom:344.706667pt;}
.y24b{bottom:345.666667pt;}
.y1d{bottom:346.946667pt;}
.y67{bottom:347.218400pt;}
.y27f{bottom:348.066667pt;}
.y19f{bottom:349.666667pt;}
.y1c3{bottom:351.106667pt;}
.y155{bottom:351.746667pt;}
.ybe{bottom:352.386667pt;}
.y316{bottom:354.626667pt;}
.y208{bottom:355.906667pt;}
.y22d{bottom:356.066667pt;}
.yda{bottom:356.226667pt;}
.y97{bottom:356.386667pt;}
.y1eb{bottom:357.506667pt;}
.y66{bottom:362.257733pt;}
.y2a2{bottom:362.306667pt;}
.yf9{bottom:362.786667pt;}
.y260{bottom:364.066667pt;}
.y315{bottom:364.386667pt;}
.y112{bottom:368.226667pt;}
.y11e{bottom:368.386667pt;}
.y1c2{bottom:371.106667pt;}
.y24a{bottom:372.066667pt;}
.y19e{bottom:373.506667pt;}
.y314{bottom:374.306667pt;}
.y22c{bottom:374.466667pt;}
.y172{bottom:375.586667pt;}
.yeb{bottom:376.226667pt;}
.ybd{bottom:376.386667pt;}
.y65{bottom:377.377333pt;}
.y39{bottom:377.826667pt;}
.y96{bottom:380.226667pt;}
.y1c{bottom:380.546667pt;}
.y1ea{bottom:381.506667pt;}
.y207{bottom:382.306667pt;}
.y25f{bottom:382.466667pt;}
.y154{bottom:383.746667pt;}
.y313{bottom:384.226667pt;}
.y1ad{bottom:386.626667pt;}
.yf8{bottom:386.786667pt;}
.y249{bottom:390.466667pt;}
.y1c1{bottom:391.106667pt;}
.y111{bottom:392.226667pt;}
.y64{bottom:392.496800pt;}
.y22b{bottom:392.866667pt;}
.y312{bottom:393.986667pt;}
.y19d{bottom:397.506667pt;}
.ybc{bottom:400.226667pt;}
.y206{bottom:400.706667pt;}
.y282{bottom:400.866667pt;}
.y26e{bottom:401.026667pt;}
.y311{bottom:403.906667pt;}
.yd9{bottom:404.066667pt;}
.y95{bottom:404.226667pt;}
.y1e9{bottom:405.346667pt;}
.y153{bottom:407.586667pt;}
.y63{bottom:407.616267pt;}
.y248{bottom:408.866667pt;}
.yf7{bottom:410.626667pt;}
.y27e{bottom:411.266667pt;}
.y1bf{bottom:411.746667pt;}
.y1b{bottom:411.906667pt;}
.y38{bottom:412.066667pt;}
.y310{bottom:413.826667pt;}
.y2a1{bottom:414.306667pt;}
.y171{bottom:415.426667pt;}
.y110{bottom:416.066667pt;}
.y11d{bottom:416.226667pt;}
.y205{bottom:419.266667pt;}
.y26d{bottom:419.426667pt;}
.y19c{bottom:421.346667pt;}
.y62{bottom:422.735867pt;}
.y30f{bottom:423.586667pt;}
.yea{bottom:424.066667pt;}
.y1dd{bottom:424.226667pt;}
.ybb{bottom:424.386667pt;}
.y247{bottom:427.266667pt;}
.y94{bottom:428.066667pt;}
.y27d{bottom:429.666667pt;}
.y152{bottom:431.586667pt;}
.y30e{bottom:433.506667pt;}
.y1ac{bottom:434.466667pt;}
.yf6{bottom:434.626667pt;}
.y1a{bottom:435.906667pt;}
.y204{bottom:437.506667pt;}
.y22a{bottom:437.666667pt;}
.y61{bottom:437.775200pt;}
.y1e8{bottom:438.946667pt;}
.y10f{bottom:440.066667pt;}
.y2a0{bottom:441.986667pt;}
.y30d{bottom:443.426667pt;}
.y37{bottom:444.066667pt;}
.y19b{bottom:445.346667pt;}
.y25e{bottom:445.666667pt;}
.ye9{bottom:448.066667pt;}
.yba{bottom:448.226667pt;}
.y1be{bottom:449.506667pt;}
.yd8{bottom:451.906667pt;}
.y93{bottom:452.066667pt;}
.y60{bottom:452.894667pt;}
.y30c{bottom:453.186667pt;}
.y246{bottom:453.666667pt;}
.y2e1{bottom:455.266667pt;}
.y151{bottom:455.426667pt;}
.y27c{bottom:456.066667pt;}
.yf5{bottom:458.466667pt;}
.y19{bottom:461.186667pt;}
.y30b{bottom:463.106667pt;}
.y10e{bottom:463.906667pt;}
.y11c{bottom:464.066667pt;}
.y36{bottom:467.906667pt;}
.y5f{bottom:468.014267pt;}
.y19a{bottom:469.186667pt;}
.ye8{bottom:471.906667pt;}
.yb9{bottom:472.066667pt;}
.y30a{bottom:473.026667pt;}
.y1e7{bottom:473.186667pt;}
.y1bd{bottom:473.346667pt;}
.y27b{bottom:474.306667pt;}
.y92{bottom:475.906667pt;}
.y170{bottom:479.266667pt;}
.y150{bottom:479.426667pt;}
.y18{bottom:481.186667pt;}
.y1ab{bottom:482.306667pt;}
.yf4{bottom:482.466667pt;}
.y309{bottom:482.786667pt;}
.y5e{bottom:483.133733pt;}
.y29f{bottom:485.506667pt;}
.y2e0{bottom:486.946667pt;}
.y10d{bottom:487.906667pt;}
.y203{bottom:490.306667pt;}
.y35{bottom:491.906667pt;}
.y307{bottom:492.706667pt;}
.y199{bottom:493.186667pt;}
.yb8{bottom:495.933333pt;}
.y1e6{bottom:497.373333pt;}
.y5d{bottom:498.253200pt;}
.yd7{bottom:499.773333pt;}
.y229{bottom:500.733333pt;}
.y17{bottom:501.213333pt;}
.y306{bottom:502.653333pt;}
.y16f{bottom:503.293333pt;}
.ye7{bottom:503.933333pt;}
.y1bc{bottom:505.373333pt;}
.y1aa{bottom:506.173333pt;}
.yf3{bottom:506.333333pt;}
.y91{bottom:507.933333pt;}
.y202{bottom:508.733333pt;}
.y14f{bottom:511.293333pt;}
.y10c{bottom:511.773333pt;}
.y129{bottom:511.933333pt;}
.y305{bottom:512.413333pt;}
.y5c{bottom:513.292533pt;}
.y34{bottom:515.773333pt;}
.y198{bottom:517.053333pt;}
.y2df{bottom:518.973333pt;}
.y228{bottom:519.133333pt;}
.y27a{bottom:519.293333pt;}
.yb7{bottom:519.933333pt;}
.y1e5{bottom:521.053333pt;}
.y304{bottom:522.333333pt;}
.y16e{bottom:527.133333pt;}
.y5b{bottom:528.412133pt;}
.y16{bottom:529.053333pt;}
.y1bb{bottom:529.213333pt;}
.y1a9{bottom:530.173333pt;}
.y90{bottom:531.773333pt;}
.y303{bottom:532.253333pt;}
.y245{bottom:535.133333pt;}
.y14e{bottom:535.293333pt;}
.y29e{bottom:535.453333pt;}
.y10b{bottom:535.613333pt;}
.y128{bottom:535.773333pt;}
.y279{bottom:537.533333pt;}
.yf2{bottom:538.333333pt;}
.y33{bottom:539.773333pt;}
.y197{bottom:541.053333pt;}
.y302{bottom:542.013333pt;}
.y2de{bottom:542.493333pt;}
.y5a{bottom:543.531600pt;}
.yb6{bottom:543.773333pt;}
.y227{bottom:545.533333pt;}
.y1e4{bottom:549.533333pt;}
.y301{bottom:551.933333pt;}
.y2dd{bottom:552.413333pt;}
.y1ba{bottom:553.213333pt;}
.y201{bottom:553.533333pt;}
.y244{bottom:553.693333pt;}
.y29d{bottom:553.853333pt;}
.y1a8{bottom:554.013333pt;}
.yd6{bottom:555.613333pt;}
.y8f{bottom:555.773333pt;}
.y15{bottom:557.053333pt;}
.y59{bottom:558.651067pt;}
.y14d{bottom:559.133333pt;}
.y127{bottom:559.613333pt;}
.y300{bottom:561.853333pt;}
.yf1{bottom:562.173333pt;}
.y32{bottom:563.613333pt;}
.y226{bottom:563.933333pt;}
.yb5{bottom:567.613333pt;}
.y2ff{bottom:571.613333pt;}
.y200{bottom:571.933333pt;}
.y2dc{bottom:572.093333pt;}
.y29c{bottom:572.253333pt;}
.y196{bottom:572.893333pt;}
.y58{bottom:573.770667pt;}
.y1b9{bottom:577.053333pt;}
.y1a7{bottom:578.013333pt;}
.y8e{bottom:579.613333pt;}
.y2fe{bottom:581.533333pt;}
.y2db{bottom:582.013333pt;}
.y26c{bottom:582.333333pt;}
.y225{bottom:582.493333pt;}
.y16d{bottom:582.973333pt;}
.yf0{bottom:586.173333pt;}
.y14{bottom:586.333333pt;}
.y31{bottom:587.613333pt;}
.y57{bottom:588.810000pt;}
.y1ff{bottom:590.333333pt;}
.y29b{bottom:590.653333pt;}
.y10a{bottom:591.453333pt;}
.yb4{bottom:591.613333pt;}
.y2da{bottom:591.773333pt;}
.y195{bottom:596.573333pt;}
.y224{bottom:600.733333pt;}
.y1b8{bottom:601.053333pt;}
.y2fd{bottom:601.213333pt;}
.y2d9{bottom:601.693333pt;}
.y1a6{bottom:601.853333pt;}
.yd5{bottom:603.453333pt;}
.y8d{bottom:603.613333pt;}
.y56{bottom:603.929467pt;}
.y16c{bottom:606.973333pt;}
.y26b{bottom:608.733333pt;}
.y29a{bottom:609.053333pt;}
.y2fc{bottom:611.133333pt;}
.y30{bottom:611.453333pt;}
.y2d8{bottom:611.613333pt;}
.yb3{bottom:615.453333pt;}
.y1fe{bottom:616.733333pt;}
.y13{bottom:617.533333pt;}
.y55{bottom:619.048933pt;}
.y2fb{bottom:621.053333pt;}
.y2d7{bottom:621.373333pt;}
.y1b7{bottom:624.893333pt;}
.y223{bottom:627.133333pt;}
.y287{bottom:627.293333pt;}
.y8c{bottom:627.453333pt;}
.y16b{bottom:630.813333pt;}
.y2d6{bottom:631.293333pt;}
.y1a5{bottom:633.853333pt;}
.y54{bottom:634.168533pt;}
.y1fd{bottom:635.133333pt;}
.y2f{bottom:635.453333pt;}
.y192{bottom:636.573333pt;}
.yef{bottom:637.693333pt;}
.y109{bottom:639.293333pt;}
.yb2{bottom:639.453333pt;}
.y2fa{bottom:640.733333pt;}
.y2d5{bottom:641.213333pt;}
.y222{bottom:645.533333pt;}
.y299{bottom:645.853333pt;}
.y1dc{bottom:647.453333pt;}
.y12{bottom:648.573333pt;}
.y53{bottom:649.288000pt;}
.y2f9{bottom:650.653333pt;}
.y2d4{bottom:650.973333pt;}
.yd4{bottom:651.293333pt;}
.y8b{bottom:651.453333pt;}
.y1fc{bottom:653.533333pt;}
.y16a{bottom:654.813333pt;}
.y1b6{bottom:656.893333pt;}
.y1a4{bottom:657.693333pt;}
.y2e{bottom:659.293333pt;}
.y2f8{bottom:660.413333pt;}
.y2d3{bottom:660.893333pt;}
.ye6{bottom:663.293333pt;}
.y221{bottom:663.933333pt;}
.y298{bottom:664.253333pt;}
.y52{bottom:664.328667pt;}
.y142{bottom:668.253333pt;}
.y2f7{bottom:670.333333pt;}
.y2d2{bottom:670.813333pt;}
.yb1{bottom:671.293333pt;}
.y243{bottom:671.933333pt;}
.yee{bottom:674.013333pt;}
.yd3{bottom:675.133333pt;}
.y8a{bottom:675.293333pt;}
.y18e{bottom:678.346667pt;}
.y169{bottom:678.653333pt;}
.y51{bottom:679.448267pt;}
.y11{bottom:679.453333pt;}
.y1fb{bottom:679.933333pt;}
.y2f6{bottom:680.253333pt;}
.y2d1{bottom:680.573333pt;}
.y1b5{bottom:680.733333pt;}
.y297{bottom:682.653333pt;}
.y2d{bottom:683.133333pt;}
.y1a3{bottom:686.173333pt;}
.y108{bottom:687.133333pt;}
.ye5{bottom:687.293333pt;}
.y2f5{bottom:690.026667pt;}
.y220{bottom:690.333333pt;}
.y2d0{bottom:690.506667pt;}
.y141{bottom:691.933333pt;}
.y50{bottom:694.567733pt;}
.yb0{bottom:695.293333pt;}
.y242{bottom:698.333333pt;}
.y89{bottom:699.133333pt;}
.y2f4{bottom:699.933333pt;}
.y2cf{bottom:700.413333pt;}
.y296{bottom:701.053333pt;}
.y168{bottom:702.653333pt;}
.y1b4{bottom:704.733333pt;}
.y1fa{bottom:706.333333pt;}
.y2c{bottom:707.133333pt;}
.y21f{bottom:708.733333pt;}
.y10{bottom:709.533333pt;}
.y4f{bottom:709.687200pt;}
.y2f3{bottom:709.853333pt;}
.y2cd{bottom:710.186667pt;}
.ye4{bottom:711.133333pt;}
.y241{bottom:716.733333pt;}
.y188{bottom:718.346667pt;}
.yaf{bottom:719.133333pt;}
.y295{bottom:719.453333pt;}
.y2f2{bottom:719.613333pt;}
.y2cc{bottom:720.093333pt;}
.y88{bottom:723.133333pt;}
.y1f9{bottom:724.733333pt;}
.y4e{bottom:724.806800pt;}
.y167{bottom:726.493333pt;}
.y2f1{bottom:729.546667pt;}
.y2ca{bottom:730.026667pt;}
.y13e{bottom:731.933333pt;}
.y1b3{bottom:733.053333pt;}
.y107{bottom:734.973333pt;}
.ye3{bottom:735.133333pt;}
.y294{bottom:737.853333pt;}
.yf{bottom:738.973333pt;}
.y2f0{bottom:739.453333pt;}
.y2c9{bottom:739.773333pt;}
.y4d{bottom:739.846133pt;}
.yae{bottom:743.133333pt;}
.y87{bottom:747.013333pt;}
.yd2{bottom:748.613333pt;}
.y2ef{bottom:749.253333pt;}
.y2c8{bottom:749.733333pt;}
.y166{bottom:750.533333pt;}
.y21e{bottom:753.573333pt;}
.y4c{bottom:754.965600pt;}
.y293{bottom:756.293333pt;}
.ye2{bottom:759.013333pt;}
.y2ee{bottom:759.173333pt;}
.y2c7{bottom:759.653333pt;}
.y187{bottom:760.293333pt;}
.y240{bottom:761.573333pt;}
.y2b{bottom:763.013333pt;}
.yad{bottom:767.013333pt;}
.y2ed{bottom:769.093333pt;}
.y2c6{bottom:769.413333pt;}
.ye{bottom:769.573333pt;}
.y4b{bottom:770.085067pt;}
.y13d{bottom:771.973333pt;}
.y165{bottom:774.053333pt;}
.y292{bottom:774.693333pt;}
.y1f8{bottom:776.453333pt;}
.y2ec{bottom:778.853333pt;}
.y86{bottom:779.013333pt;}
.y2c5{bottom:779.333333pt;}
.y25d{bottom:779.973333pt;}
.y23f{bottom:780.133333pt;}
.y106{bottom:782.853333pt;}
.yd1{bottom:783.013333pt;}
.y4a{bottom:785.204667pt;}
.y2a{bottom:786.853333pt;}
.y2eb{bottom:788.773333pt;}
.y2c4{bottom:789.253333pt;}
.yd{bottom:789.413333pt;}
.y278{bottom:790.373333pt;}
.yac{bottom:791.013333pt;}
.y291{bottom:793.093333pt;}
.yc{bottom:793.413333pt;}
.y164{bottom:794.053333pt;}
.y21d{bottom:798.373333pt;}
.y23e{bottom:798.533333pt;}
.y2ea{bottom:798.693333pt;}
.y2c3{bottom:799.013333pt;}
.y186{bottom:800.293333pt;}
.y49{bottom:800.324133pt;}
.y85{bottom:802.853333pt;}
.y25c{bottom:806.373333pt;}
.yd0{bottom:806.853333pt;}
.y2e9{bottom:808.453333pt;}
.y2c2{bottom:808.933333pt;}
.y29{bottom:810.853333pt;}
.y290{bottom:811.493333pt;}
.y13c{bottom:811.973333pt;}
.y163{bottom:814.053333pt;}
.yab{bottom:814.853333pt;}
.y48{bottom:815.364800pt;}
.y21c{bottom:816.773333pt;}
.yb{bottom:817.413333pt;}
.y2e8{bottom:818.373333pt;}
.y2c1{bottom:818.853333pt;}
.ya{bottom:821.413333pt;}
.y25b{bottom:824.773333pt;}
.y84{bottom:826.853333pt;}
.y185{bottom:828.133333pt;}
.y2e7{bottom:828.293333pt;}
.y2c0{bottom:828.613333pt;}
.y28f{bottom:829.893333pt;}
.y47{bottom:830.484400pt;}
.ycf{bottom:830.853333pt;}
.y162{bottom:834.053333pt;}
.y21b{bottom:835.173333pt;}
.y2e6{bottom:838.053333pt;}
.y2bf{bottom:838.533333pt;}
.yaa{bottom:838.853333pt;}
.y28{bottom:842.693333pt;}
.y23d{bottom:843.173333pt;}
.y9{bottom:845.253333pt;}
.y46{bottom:845.603867pt;}
.y2e5{bottom:847.973333pt;}
.y28e{bottom:848.293333pt;}
.y2be{bottom:848.453333pt;}
.y83{bottom:850.693333pt;}
.y13b{bottom:851.973333pt;}
.y21a{bottom:853.733333pt;}
.y161{bottom:854.053333pt;}
.yce{bottom:854.693333pt;}
.y2e2{bottom:857.733333pt;}
.y2bd{bottom:858.213333pt;}
.y45{bottom:860.723333pt;}
.y23c{bottom:861.573333pt;}
.ya9{bottom:862.693333pt;}
.y8{bottom:865.253333pt;}
.y27{bottom:866.693333pt;}
.y2e4{bottom:867.653333pt;}
.y183{bottom:868.133333pt;}
.y7{bottom:869.253333pt;}
.y160{bottom:874.053333pt;}
.y82{bottom:874.693333pt;}
.y44{bottom:875.842933pt;}
.y1f7{bottom:876.293333pt;}
.y2bc{bottom:878.053333pt;}
.ycd{bottom:878.693333pt;}
.y219{bottom:879.973333pt;}
.y23b{bottom:880.133333pt;}
.y28d{bottom:885.093333pt;}
.ya8{bottom:886.693333pt;}
.y2ba{bottom:887.813333pt;}
.y25a{bottom:887.973333pt;}
.y26{bottom:890.533333pt;}
.y43{bottom:890.883600pt;}
.y13a{bottom:891.973333pt;}
.y15f{bottom:894.053333pt;}
.y6{bottom:894.533333pt;}
.y2b5{bottom:897.733333pt;}
.y218{bottom:898.373333pt;}
.y81{bottom:898.533333pt;}
.ycc{bottom:902.533333pt;}
.y28c{bottom:903.493333pt;}
.y42{bottom:906.003067pt;}
.y259{bottom:906.373333pt;}
.y2b7{bottom:907.653333pt;}
.y181{bottom:908.133333pt;}
.ya7{bottom:910.533333pt;}
.y15e{bottom:914.053333pt;}
.y25{bottom:914.533333pt;}
.y217{bottom:916.773333pt;}
.y5{bottom:918.533333pt;}
.y41{bottom:921.122533pt;}
.y80{bottom:922.533333pt;}
.y23a{bottom:924.773333pt;}
.ycb{bottom:926.533333pt;}
.y136{bottom:931.973333pt;}
.ya6{bottom:934.533333pt;}
.y15d{bottom:934.693333pt;}
.y28a{bottom:935.173333pt;}
.y40{bottom:936.242133pt;}
.y17f{bottom:936.760000pt;}
.y17d{bottom:936.773333pt;}
.y24{bottom:938.373333pt;}
.y216{bottom:943.173333pt;}
.y7f{bottom:946.373333pt;}
.yca{bottom:950.373333pt;}
.y3f{bottom:951.361600pt;}
.y4{bottom:955.173333pt;}
.ya5{bottom:958.373333pt;}
.y215{bottom:961.573333pt;}
.y23{bottom:962.373333pt;}
.y3e{bottom:966.400933pt;}
.y258{bottom:969.573333pt;}
.y7e{bottom:970.373333pt;}
.y132{bottom:971.973333pt;}
.y105{bottom:974.373333pt;}
.y214{bottom:979.973333pt;}
.y3d{bottom:981.520533pt;}
.ya4{bottom:982.373333pt;}
.y257{bottom:987.973333pt;}
.y3{bottom:991.013333pt;}
.y22{bottom:995.813333pt;}
.y3c{bottom:996.640000pt;}
.y130{bottom:1000.480000pt;}
.y7d{bottom:1003.840000pt;}
.ya3{bottom:1006.240000pt;}
.y213{bottom:1006.400000pt;}
.y1{bottom:1059.840000pt;}
.y21{bottom:1106.560000pt;}
.h2b{height:9.106667pt;}
.h2f{height:9.120000pt;}
.h33{height:9.138667pt;}
.h31{height:9.140000pt;}
.h32{height:9.146667pt;}
.h2c{height:9.266667pt;}
.h2e{height:9.280000pt;}
.h2d{height:9.300000pt;}
.h27{height:11.826533pt;}
.h28{height:11.826667pt;}
.h25{height:11.986667pt;}
.h29{height:12.018667pt;}
.h24{height:13.426667pt;}
.h23{height:16.466667pt;}
.h1e{height:18.386667pt;}
.h20{height:18.400000pt;}
.h1f{height:18.420000pt;}
.h2a{height:19.026667pt;}
.h30{height:19.186667pt;}
.h15{height:19.986667pt;}
.hd{height:20.000000pt;}
.h1c{height:20.018667pt;}
.h16{height:27.826667pt;}
.h17{height:27.832000pt;}
.h18{height:27.840000pt;}
.hf{height:27.866667pt;}
.h19{height:27.986667pt;}
.h21{height:30.546667pt;}
.h11{height:33.295625pt;}
.h22{height:33.375000pt;}
.h26{height:35.467500pt;}
.he{height:38.715000pt;}
.h5{height:39.402500pt;}
.h10{height:39.986667pt;}
.ha{height:40.000000pt;}
.h12{height:40.020000pt;}
.h1b{height:41.760000pt;}
.h1a{height:41.938667pt;}
.h14{height:42.052500pt;}
.h8{height:44.722500pt;}
.hc{height:52.422344pt;}
.h13{height:53.906667pt;}
.h6{height:55.402500pt;}
.h1d{height:57.406250pt;}
.h7{height:61.410000pt;}
.h2{height:66.750000pt;}
.h9{height:78.097500pt;}
.h3{height:100.125000pt;}
.hb{height:1056.000000pt;}
.h4{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w43{width:30.400000pt;}
.w33{width:35.826667pt;}
.w3e{width:35.858667pt;}
.w13{width:36.312000pt;}
.w34{width:37.906667pt;}
.w42{width:40.160000pt;}
.w3{width:45.952000pt;}
.w28{width:46.578667pt;}
.w22{width:46.580000pt;}
.wa{width:47.186667pt;}
.w6{width:47.218667pt;}
.w26{width:47.378667pt;}
.w15{width:47.380000pt;}
.w9{width:47.392000pt;}
.w27{width:47.986667pt;}
.w20{width:47.996000pt;}
.w21{width:48.000000pt;}
.w3d{width:48.146667pt;}
.w18{width:49.916000pt;}
.w19{width:49.920000pt;}
.w1a{width:50.076000pt;}
.w1b{width:50.080000pt;}
.w29{width:50.866667pt;}
.w23{width:50.872000pt;}
.w24{width:50.880000pt;}
.w36{width:51.680000pt;}
.w16{width:53.916000pt;}
.w17{width:53.920000pt;}
.w1c{width:53.952000pt;}
.w1d{width:53.960000pt;}
.w5{width:56.626667pt;}
.w1e{width:56.636000pt;}
.w1f{width:56.640000pt;}
.wd{width:56.658667pt;}
.w7{width:56.800000pt;}
.w2b{width:58.546667pt;}
.w2a{width:58.552000pt;}
.w2d{width:58.560000pt;}
.w2c{width:58.578667pt;}
.w2e{width:58.592000pt;}
.w2f{width:58.706667pt;}
.we{width:59.040000pt;}
.wb{width:59.986667pt;}
.w12{width:60.978667pt;}
.w3b{width:63.506667pt;}
.w38{width:63.538667pt;}
.w45{width:63.666667pt;}
.w3a{width:63.826667pt;}
.w25{width:64.306667pt;}
.w39{width:64.352000pt;}
.w46{width:64.466667pt;}
.w3c{width:64.626667pt;}
.w8{width:66.080000pt;}
.w40{width:71.826667pt;}
.wc{width:72.338667pt;}
.w11{width:75.506667pt;}
.w4{width:75.672000pt;}
.w14{width:77.106667pt;}
.w10{width:85.152000pt;}
.w30{width:86.898667pt;}
.wf{width:92.160000pt;}
.w3f{width:95.520000pt;}
.w35{width:96.338667pt;}
.w41{width:98.258667pt;}
.w32{width:121.906667pt;}
.w31{width:121.952000pt;}
.w44{width:192.346667pt;}
.w37{width:192.506667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.666667pt;}
.x20{left:7.680000pt;}
.x22{left:9.272000pt;}
.x1f{left:10.386667pt;}
.xe{left:12.000000pt;}
.x1e{left:13.112000pt;}
.x21{left:14.226667pt;}
.x10{left:15.192000pt;}
.x3a{left:16.160000pt;}
.x18{left:17.120000pt;}
.x14{left:18.546667pt;}
.x1d{left:20.320000pt;}
.x2c{left:21.440000pt;}
.x12{left:22.866667pt;}
.x8{left:24.000000pt;}
.x2d{left:25.626667pt;}
.x17{left:27.520000pt;}
.x24{left:29.906667pt;}
.x2e{left:31.840000pt;}
.x23{left:32.960000pt;}
.x5b{left:35.826667pt;}
.x47{left:39.520000pt;}
.x52{left:43.066667pt;}
.x49{left:43.986667pt;}
.x4c{left:48.186667pt;}
.x5c{left:49.146667pt;}
.x4f{left:61.146667pt;}
.xd{left:67.520000pt;}
.x9{left:81.420000pt;}
.x5{left:90.412000pt;}
.x3{left:99.372000pt;}
.x4{left:108.352000pt;}
.xf{left:113.480000pt;}
.x1{left:132.352000pt;}
.x2f{left:144.040000pt;}
.x6{left:156.346667pt;}
.x43{left:164.346667pt;}
.x5a{left:177.000000pt;}
.x53{left:181.320000pt;}
.x4a{left:186.440000pt;}
.x11{left:189.160000pt;}
.xb{left:190.746667pt;}
.x26{left:210.600000pt;}
.x30{left:221.160000pt;}
.x4b{left:222.280000pt;}
.x54{left:229.480000pt;}
.x13{left:245.800000pt;}
.x3b{left:249.480000pt;}
.x45{left:259.880000pt;}
.x44{left:263.226667pt;}
.x55{left:265.346667pt;}
.x27{left:267.266667pt;}
.x31{left:268.546667pt;}
.x15{left:293.026667pt;}
.x3c{left:308.066667pt;}
.x32{left:322.466667pt;}
.x28{left:326.306667pt;}
.x46{left:346.786667pt;}
.x16{left:349.826667pt;}
.x4d{left:356.546667pt;}
.x56{left:360.866667pt;}
.x3d{left:366.626667pt;}
.x33{left:372.386667pt;}
.x5d{left:387.266667pt;}
.x4e{left:408.226667pt;}
.x57{left:412.546667pt;}
.xc{left:416.386667pt;}
.x29{left:418.466667pt;}
.x2{left:420.706667pt;}
.x34{left:422.466667pt;}
.x3e{left:425.186667pt;}
.x19{left:463.306667pt;}
.x48{left:468.746667pt;}
.x50{left:472.586667pt;}
.x35{left:476.426667pt;}
.x5f{left:482.026667pt;}
.x3f{left:483.786667pt;}
.x2a{left:503.626667pt;}
.x1a{left:510.506667pt;}
.x36{left:533.066667pt;}
.x51{left:536.906667pt;}
.x59{left:540.746667pt;}
.x40{left:542.506667pt;}
.x60{left:546.346667pt;}
.x1b{left:557.706667pt;}
.x2b{left:579.146667pt;}
.x37{left:581.066667pt;}
.xa{left:601.213333pt;}
.x58{left:605.066667pt;}
.x5e{left:610.026667pt;}
.x1c{left:617.706667pt;}
.x38{left:627.653333pt;}
.x42{left:655.813333pt;}
.x41{left:659.653333pt;}
.x39{left:678.533333pt;}
.x25{left:718.373333pt;}
}




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