
    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_9ef022ab8bfecce8fd378a99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight: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_18c453e8316565fb6c0ef961.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_499b803c9c5236cfbdcca46e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8b0b21ddfdf8e61778c008d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_75730ea15bbd71ed5c639b1d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2a4af447a71f0346b07b5f47.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eeba95c5eebbf7a7dc8e1beb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.884277;font-style:normal;font-weight: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_8226e45d3cd8aea937f3b0d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight: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_8052bf9f73d984ae92b82046.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight: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_24b6e60ffc016b33bb7cef01.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5f726fb190e9650d154350bc.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4e20a52a3fb2f72f4e3ebf51.woff2')format("woff");}.ffc{font-family:ffc;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: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_17ebafca4c7d8425c9617f94.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight: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_18c453e8316565fb6c0ef961.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b0ff28c77650fd3bb234f453.woff2')format("woff");}.ff11{font-family:ff11;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: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_2c9f4a6809f0cfda2b8b4fda.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.435059;font-style:normal;font-weight: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_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_609d926fe9ea0004fa24c8c3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.372070;font-style:normal;font-weight: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_82344b2d475fa8cb49926460.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.112305;font-style:normal;font-weight: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_c4c404ce736b428d968f9fdc.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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_d1e30b7da6409b82214537a2.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.776855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_e128cd0229480611cb1b036d.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff32{font-family:ff32;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:ff33;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_8104038e8284c4f1a2f7783f.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_62f9bcbc58badfe9649869de.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_ca2077cc2bb01d5105659002.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_6858f59e84338e3a9801def5.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.131836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_44a8e00ea9b361afc8ea8277.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_e079c589a65d8db3ca32987f.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_54203f5f84b20191161e06f7.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_f4eb4c815799036156de35ef.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_10a6ba2e4dda3bbbcb1e6cda.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_7ee1b647323b4e96059edf60.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_47af5edefb27b3350d22abaa.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_70e5e86c6abd8184f49836c0.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_ece25ae086a0790085422a05.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_54993955c6dcd95dca4279c9.woff2')format("woff");}.ff43{font-family:ff43;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:ff44;src:url('chunks/assets/font_ccc2cde88d115a0e980eb5f7.woff2')format("woff");}.ff44{font-family:ff44;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:ff45;src:url('chunks/assets/font_cfe5978e2d5c7205c629239b.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_4493d069d09e87797262f395.woff2')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_8713863cc008b239f8a37e5c.woff2')format("woff");}.ff47{font-family:ff47;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:ff48;src:url('chunks/assets/font_a72bc521ae8a55b432ee7825.woff2')format("woff");}.ff48{font-family:ff48;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_001fb0a968da6001ad30d06b.woff2')format("woff");}.ff49{font-family:ff49;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:ff4a;src:url('chunks/assets/font_067f0e614eadb617c053604d.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_e86fc433ca3eec20072777cb.woff2')format("woff");}.ff4b{font-family:ff4b;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:ff4c;src:url('chunks/assets/font_5a2abab5c0e4f7e8e832c410.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_1f0aef40b332eaee3e0b8a95.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_4915018dabeb338d08ae3784.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:0.767578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_45b7f7aa78a144916fa17d68.woff2')format("woff");}.ff4f{font-family:ff4f;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.360000px;}
.v5{vertical-align:-12.960000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v6{vertical-align:14.400000px;}
.v2{vertical-align:27.360000px;}
.ls1e{letter-spacing:-1.656000px;}
.ls16{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls23{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.576000px;}
.ls12{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.253200px;}
.lsc{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.078156px;}
.ls1f{letter-spacing:-0.072000px;}
.ls2d{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.147000px;}
.ls24{letter-spacing:0.149760px;}
.ls25{letter-spacing:0.150000px;}
.lse{letter-spacing:0.152640px;}
.ls13{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181440px;}
.ls2a{letter-spacing:0.198720px;}
.ls8{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.234000px;}
.ls4{letter-spacing:0.256200px;}
.ls29{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.269280px;}
.ls1d{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.291000px;}
.ls26{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.450720px;}
.ls28{letter-spacing:0.466800px;}
.ls10{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.629280px;}
.lsd{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.864000px;}
.ls15{letter-spacing:0.936000px;}
.lsa{letter-spacing:1.440000px;}
.ls17{letter-spacing:21.780000px;}
.ls21{letter-spacing:32.976000px;}
.lsb{letter-spacing:54.120000px;}
.ls0{letter-spacing:54.864000px;}
.ls1{letter-spacing:59.345280px;}
.ls22{letter-spacing:149.760000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws1f{word-spacing:-66.384000px;}
.ws1{word-spacing:-66.240000px;}
.ws8{word-spacing:-19.440000px;}
.wsc{word-spacing:-18.936000px;}
.ws13{word-spacing:-18.864000px;}
.wsa{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.432000px;}
.ws10{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.424000px;}
.wsf{word-spacing:-17.064000px;}
.ws11{word-spacing:-16.344000px;}
.ws1c{word-spacing:-16.272000px;}
.ws16{word-spacing:-15.406800px;}
.ws1a{word-spacing:-15.261240px;}
.ws19{word-spacing:-15.246600px;}
.wse{word-spacing:-15.226440px;}
.ws17{word-spacing:-15.199800px;}
.ws1e{word-spacing:-15.117240px;}
.ws15{word-spacing:-14.993280px;}
.ws18{word-spacing:-14.940000px;}
.ws1b{word-spacing:-14.717040px;}
.ws1d{word-spacing:-12.438000px;}
.ws2{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
.ws27{word-spacing:50.040000px;}
.ws23{word-spacing:78.108000px;}
.ws24{word-spacing:167.472000px;}
.ws25{word-spacing:178.848000px;}
.ws20{word-spacing:181.860000px;}
.ws21{word-spacing:207.345600px;}
.ws28{word-spacing:248.400000px;}
.ws26{word-spacing:268.416000px;}
.ws22{word-spacing:384.012000px;}
._c{margin-left:-8.988000px;}
._9{margin-left:-2.868000px;}
._4{margin-left:-1.008000px;}
._1{width:1.008000px;}
._6{width:2.136000px;}
._f{width:3.192000px;}
._e{width:4.272000px;}
._0{width:9.648000px;}
._2{width:11.016000px;}
._14{width:16.200000px;}
._d{width:21.936000px;}
._a{width:30.672000px;}
._3{width:31.752000px;}
._10{width:35.040000px;}
._11{width:36.144000px;}
._5{width:42.768000px;}
._b{width:44.100000px;}
._13{width:62.004000px;}
._12{width:63.720000px;}
._23{width:90.251640px;}
._22{width:110.016000px;}
._16{width:148.896000px;}
._15{width:149.976000px;}
._17{width:151.356000px;}
._1d{width:199.368000px;}
._1f{width:210.168000px;}
._1e{width:211.392000px;}
._18{width:215.160000px;}
._19{width:249.420000px;}
._1a{width:266.880000px;}
._24{width:292.319640px;}
._20{width:300.312000px;}
._21{width:312.358104px;}
._1b{width:445.020000px;}
._1c{width:466.068000px;}
._7{width:846.156000px;}
._8{width:1431.840000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,51,153);}
.fc4{color:rgb(77,77,77);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:52.800000px;}
.fs7{font-size:54.000000px;}
.fse{font-size:57.600000px;}
.fs6{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:60.120000px;}
.fs5{font-size:63.360000px;}
.fsb{font-size:66.000000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:84.000000px;}
.fsf{font-size:86.400000px;}
.fs10{font-size:108.000000px;}
.fsd{font-size:136.573230px;}
.y1e2{bottom:-53.790000px;}
.y1c0{bottom:-16.245000px;}
.y1ba{bottom:-16.200000px;}
.y0{bottom:0.000000px;}
.y181{bottom:3.420000px;}
.y17f{bottom:3.780000px;}
.y1b7{bottom:4.140000px;}
.y224{bottom:4.318359px;}
.y16c{bottom:4.500000px;}
.y172{bottom:4.545000px;}
.y20b{bottom:11.847656px;}
.y16a{bottom:14.940000px;}
.y16b{bottom:25.200000px;}
.y1e9{bottom:28.740000px;}
.y20a{bottom:30.738281px;}
.y69{bottom:33.783000px;}
.y169{bottom:35.640000px;}
.y22e{bottom:36.720704px;}
.y21f{bottom:45.360000px;}
.y168{bottom:45.900000px;}
.y20f{bottom:47.590500px;}
.y68{bottom:50.702250px;}
.y210{bottom:54.503250px;}
.yd{bottom:57.636000px;}
.y1dc{bottom:59.160000px;}
.y67{bottom:67.711650px;}
.y213{bottom:71.280000px;}
.y206{bottom:71.777343px;}
.yc{bottom:77.796000px;}
.y66{bottom:84.721200px;}
.y1e0{bottom:91.440000px;}
.y230{bottom:93.105468px;}
.y227{bottom:93.796875px;}
.y20c{bottom:98.443359px;}
.y65{bottom:101.730600px;}
.y207{bottom:102.023440px;}
.y226{bottom:106.347656px;}
.y13c{bottom:110.736000px;}
.yad{bottom:115.596000px;}
.y9d{bottom:116.496000px;}
.yda{bottom:117.576000px;}
.ybd{bottom:118.656000px;}
.y64{bottom:118.740000px;}
.y22b{bottom:125.660156px;}
.yec{bottom:131.616000px;}
.y208{bottom:132.275398px;}
.yc5{bottom:132.696000px;}
.y1dd{bottom:132.885000px;}
.y154{bottom:133.236000px;}
.yeb{bottom:133.596000px;}
.y150{bottom:134.676000px;}
.y63{bottom:135.659250px;}
.y223{bottom:135.955079px;}
.y21d{bottom:140.130000px;}
.y1a6{bottom:140.976000px;}
.y13b{bottom:141.696000px;}
.y14e{bottom:142.596000px;}
.yac{bottom:146.556000px;}
.y9c{bottom:147.636000px;}
.yd9{bottom:148.716000px;}
.ybc{bottom:149.796000px;}
.y62{bottom:152.668800px;}
.y1b5{bottom:154.650000px;}
.y209{bottom:162.521495px;}
.y89{bottom:162.570000px;}
.yc4{bottom:163.650000px;}
.yea{bottom:164.730000px;}
.y14f{bottom:165.810000px;}
.y127{bottom:166.710000px;}
.y61{bottom:169.678200px;}
.y1a5{bottom:171.930000px;}
.y13a{bottom:172.830000px;}
.y14d{bottom:173.730000px;}
.yab{bottom:177.690000px;}
.y9b{bottom:178.590000px;}
.yd8{bottom:179.670000px;}
.y109{bottom:180.390000px;}
.ybb{bottom:180.750000px;}
.y214{bottom:182.655000px;}
.y60{bottom:186.687750px;}
.y166{bottom:187.770000px;}
.y20e{bottom:189.328125px;}
.y20d{bottom:192.919922px;}
.ya9{bottom:193.710000px;}
.y228{bottom:194.373046px;}
.yc3{bottom:194.790000px;}
.ye9{bottom:195.690000px;}
.y118{bottom:196.770000px;}
.y126{bottom:197.850000px;}
.y1b4{bottom:200.550000px;}
.y1e8{bottom:203.055000px;}
.y1a4{bottom:203.070000px;}
.y5f{bottom:203.697150px;}
.y139{bottom:203.790000px;}
.y14c{bottom:204.690000px;}
.y22a{bottom:205.394531px;}
.y1de{bottom:207.960000px;}
.y88{bottom:208.650000px;}
.y9a{bottom:209.730000px;}
.yd7{bottom:210.810000px;}
.y108{bottom:211.530000px;}
.yba{bottom:211.710000px;}
.y225{bottom:220.400391px;}
.y5e{bottom:220.616400px;}
.y202{bottom:223.722655px;}
.ya8{bottom:224.670000px;}
.yc2{bottom:225.750000px;}
.ye8{bottom:226.830000px;}
.y117{bottom:227.910000px;}
.y1e7{bottom:232.980000px;}
.y165{bottom:233.850000px;}
.y1a3{bottom:234.030000px;}
.y5d{bottom:237.625800px;}
.y87{bottom:239.790000px;}
.y99{bottom:240.690000px;}
.y153{bottom:241.770000px;}
.y107{bottom:242.490000px;}
.y201{bottom:242.613280px;}
.yb9{bottom:242.850000px;}
.y125{bottom:243.930000px;}
.y1e1{bottom:245.370000px;}
.y1b3{bottom:246.630000px;}
.y22c{bottom:246.644531px;}
.y14b{bottom:250.770000px;}
.y5c{bottom:254.635350px;}
.ya7{bottom:255.810000px;}
.yc1{bottom:256.710000px;}
.ye7{bottom:257.790000px;}
.y116{bottom:258.870000px;}
.y21c{bottom:259.110000px;}
.y1d3{bottom:262.185000px;}
.y1a2{bottom:265.170000px;}
.y86{bottom:270.750000px;}
.y5b{bottom:271.644750px;}
.y98{bottom:271.830000px;}
.y152{bottom:272.955000px;}
.y106{bottom:273.315000px;}
.yb8{bottom:273.855000px;}
.y124{bottom:274.935000px;}
.y164{bottom:279.795000px;}
.y14a{bottom:281.955000px;}
.y1df{bottom:283.020000px;}
.y1fd{bottom:283.652343px;}
.y218{bottom:285.210000px;}
.y220{bottom:285.540000px;}
.ya6{bottom:286.815000px;}
.y138{bottom:286.995000px;}
.yc0{bottom:287.895000px;}
.y5a{bottom:288.654150px;}
.ye6{bottom:288.975000px;}
.y115{bottom:290.055000px;}
.y1b2{bottom:292.755000px;}
.y85{bottom:301.755000px;}
.y97{bottom:302.835000px;}
.y151{bottom:303.915000px;}
.yb7{bottom:304.995000px;}
.y59{bottom:305.573400px;}
.y123{bottom:306.075000px;}
.y219{bottom:307.905000px;}
.y215{bottom:309.180000px;}
.y1cd{bottom:310.065000px;}
.y203{bottom:310.318359px;}
.y1a1{bottom:311.115000px;}
.y149{bottom:312.915000px;}
.y1fe{bottom:313.898440px;}
.y1d2{bottom:314.715000px;}
.ya5{bottom:317.955000px;}
.yd6{bottom:318.855000px;}
.y12d{bottom:319.935000px;}
.y58{bottom:322.582950px;}
.y163{bottom:325.875000px;}
.y21b{bottom:326.220000px;}
.y232{bottom:331.476562px;}
.y84{bottom:332.895000px;}
.y96{bottom:333.975000px;}
.ye5{bottom:335.055000px;}
.yb6{bottom:335.955000px;}
.y1b1{bottom:338.835000px;}
.y57{bottom:339.592350px;}
.y105{bottom:340.635000px;}
.y1a0{bottom:342.255000px;}
.y1ff{bottom:344.150398px;}
.y217{bottom:344.205000px;}
.ya4{bottom:348.915000px;}
.y137{bottom:349.095000px;}
.yd5{bottom:349.995000px;}
.y12c{bottom:351.075000px;}
.y122{bottom:352.155000px;}
.y56{bottom:356.601750px;}
.y148{bottom:358.995000px;}
.y83{bottom:363.855000px;}
.yed{bottom:364.575000px;}
.y95{bottom:364.935000px;}
.ye4{bottom:366.015000px;}
.y114{bottom:367.095000px;}
.y104{bottom:370.875000px;}
.y162{bottom:371.955000px;}
.y19f{bottom:373.215000px;}
.y55{bottom:373.611300px;}
.y200{bottom:374.396495px;}
.y229{bottom:374.519530px;}
.y233{bottom:376.500000px;}
.y22f{bottom:376.998046px;}
.ya3{bottom:380.055000px;}
.yd4{bottom:380.955000px;}
.yb5{bottom:382.035000px;}
.y1ca{bottom:382.065000px;}
.y1e3{bottom:382.650000px;}
.y121{bottom:383.115000px;}
.y1b0{bottom:384.915000px;}
.y147{bottom:389.955000px;}
.y54{bottom:390.620700px;}
.y1e5{bottom:390.945000px;}
.y82{bottom:394.995000px;}
.y94{bottom:396.075000px;}
.ye3{bottom:397.155000px;}
.y113{bottom:398.055000px;}
.y136{bottom:401.115000px;}
.y205{bottom:401.203125px;}
.y103{bottom:402.015000px;}
.y19e{bottom:404.355000px;}
.y204{bottom:404.794922px;}
.y53{bottom:407.539950px;}
.ya2{bottom:411.015000px;}
.yd3{bottom:412.095000px;}
.y12b{bottom:413.175000px;}
.y22d{bottom:417.000000px;}
.y161{bottom:418.035000px;}
.y146{bottom:421.095000px;}
.y52{bottom:424.549500px;}
.y81{bottom:425.955000px;}
.y93{bottom:427.035000px;}
.y28{bottom:427.755000px;}
.yb4{bottom:428.115000px;}
.y120{bottom:429.195000px;}
.y1af{bottom:430.995000px;}
.y135{bottom:432.255000px;}
.y102{bottom:432.975000px;}
.y1e4{bottom:434.160000px;}
.y19d{bottom:435.315000px;}
.y1f9{bottom:435.597655px;}
.y216{bottom:435.705000px;}
.y51{bottom:441.558900px;}
.ya1{bottom:442.155000px;}
.yd2{bottom:443.055000px;}
.y1cc{bottom:443.415000px;}
.y21a{bottom:444.030000px;}
.y112{bottom:444.135000px;}
.y1d1{bottom:445.860000px;}
.y145{bottom:452.055000px;}
.y1f8{bottom:454.488280px;}
.y80{bottom:457.095000px;}
.y92{bottom:458.175000px;}
.y50{bottom:458.568300px;}
.yb3{bottom:459.255000px;}
.y11f{bottom:460.155000px;}
.y134{bottom:463.215000px;}
.y101{bottom:464.115000px;}
.y19c{bottom:466.455000px;}
.y1d9{bottom:471.810000px;}
.ya0{bottom:473.115000px;}
.y27{bottom:474.195000px;}
.y111{bottom:475.275000px;}
.y4f{bottom:475.577850px;}
.y1ae{bottom:476.895000px;}
.y21e{bottom:477.780000px;}
.y7f{bottom:488.055000px;}
.y91{bottom:489.135000px;}
.yb2{bottom:490.215000px;}
.y11e{bottom:491.295000px;}
.y4e{bottom:492.497100px;}
.y1d5{bottom:493.320000px;}
.y133{bottom:494.355000px;}
.y100{bottom:495.075000px;}
.y1f4{bottom:495.527343px;}
.y144{bottom:498.135000px;}
.y9f{bottom:504.255000px;}
.yd1{bottom:505.155000px;}
.y110{bottom:506.235000px;}
.y1ce{bottom:508.890000px;}
.y4d{bottom:509.506500px;}
.y160{bottom:510.015000px;}
.y1cb{bottom:511.590000px;}
.y19b{bottom:512.535000px;}
.y7e{bottom:519.195000px;}
.y26{bottom:520.275000px;}
.yb1{bottom:521.355000px;}
.y1fa{bottom:522.193359px;}
.y1ad{bottom:522.975000px;}
.y132{bottom:525.315000px;}
.y1e6{bottom:525.600000px;}
.y1f5{bottom:525.773440px;}
.yff{bottom:526.215000px;}
.y4c{bottom:526.516050px;}
.y143{bottom:529.275000px;}
.y9e{bottom:535.215000px;}
.yd0{bottom:536.295000px;}
.y11d{bottom:537.375000px;}
.y19a{bottom:543.495000px;}
.y4b{bottom:543.525450px;}
.y7d{bottom:550.155000px;}
.y90{bottom:551.235000px;}
.yb0{bottom:552.315000px;}
.y1f6{bottom:556.025398px;}
.y15f{bottom:556.125000px;}
.yfe{bottom:556.845000px;}
.y142{bottom:560.265000px;}
.y4a{bottom:560.534850px;}
.y25{bottom:566.385000px;}
.y1d6{bottom:567.045000px;}
.ycf{bottom:567.285000px;}
.y11c{bottom:568.365000px;}
.y1ac{bottom:569.085000px;}
.y199{bottom:574.665000px;}
.y131{bottom:577.365000px;}
.y49{bottom:577.454100px;}
.y7c{bottom:581.325000px;}
.ybf{bottom:582.405000px;}
.ye2{bottom:583.305000px;}
.y1c9{bottom:583.485000px;}
.y1d0{bottom:584.175000px;}
.y1f7{bottom:586.271495px;}
.y141{bottom:591.405000px;}
.y48{bottom:594.463650px;}
.y24{bottom:597.345000px;}
.yaf{bottom:598.425000px;}
.y11b{bottom:599.505000px;}
.y15e{bottom:602.205000px;}
.yfd{bottom:603.105000px;}
.y23{bottom:604.185000px;}
.y198{bottom:605.625000px;}
.y130{bottom:608.505000px;}
.y1da{bottom:608.685000px;}
.y1c8{bottom:610.890000px;}
.y47{bottom:611.473050px;}
.y7b{bottom:612.285000px;}
.y1c4{bottom:612.870000px;}
.y1fc{bottom:613.078125px;}
.ybe{bottom:613.365000px;}
.ye1{bottom:614.445000px;}
.y1ab{bottom:615.165000px;}
.y1fb{bottom:616.669921px;}
.y17c{bottom:619.125000px;}
.y140{bottom:622.365000px;}
.y22{bottom:628.305000px;}
.y46{bottom:628.482450px;}
.y1c7{bottom:629.070000px;}
.yce{bottom:629.385000px;}
.y221{bottom:634.500000px;}
.y197{bottom:636.765000px;}
.y1c5{bottom:637.635000px;}
.y1cf{bottom:638.205000px;}
.y12f{bottom:639.465000px;}
.y17b{bottom:640.905000px;}
.y1d7{bottom:642.120000px;}
.y7a{bottom:643.425000px;}
.yae{bottom:644.505000px;}
.y11a{bottom:645.405000px;}
.y45{bottom:645.492000px;}
.y1f0{bottom:647.472655px;}
.y15d{bottom:648.285000px;}
.yfc{bottom:648.465000px;}
.y13f{bottom:653.505000px;}
.y21{bottom:659.445000px;}
.ye0{bottom:660.165000px;}
.y10f{bottom:660.525000px;}
.y1aa{bottom:661.245000px;}
.y44{bottom:662.411250px;}
.y17a{bottom:662.505000px;}
.y1c6{bottom:665.430000px;}
.y20{bottom:666.285000px;}
.y1ef{bottom:666.363280px;}
.y12e{bottom:670.605000px;}
.y79{bottom:674.385000px;}
.yc6{bottom:675.465000px;}
.y119{bottom:676.545000px;}
.yfb{bottom:679.245000px;}
.y43{bottom:679.420650px;}
.y196{bottom:682.665000px;}
.y179{bottom:684.285000px;}
.y13e{bottom:684.465000px;}
.y1f{bottom:690.405000px;}
.y10e{bottom:691.485000px;}
.y15c{bottom:694.365000px;}
.y42{bottom:696.430050px;}
.y78{bottom:705.525000px;}
.y178{bottom:706.065000px;}
.ycd{bottom:706.605000px;}
.y1a9{bottom:707.145000px;}
.y1eb{bottom:707.402343px;}
.y12a{bottom:707.505000px;}
.y231{bottom:709.318359px;}
.y41{bottom:713.439600px;}
.y195{bottom:713.805000px;}
.y13d{bottom:715.605000px;}
.y1d8{bottom:717.180000px;}
.y1e{bottom:721.545000px;}
.y10d{bottom:722.625000px;}
.y8c{bottom:724.425000px;}
.y177{bottom:727.845000px;}
.y1d{bottom:728.385000px;}
.y40{bottom:730.449000px;}
.y1f1{bottom:734.068359px;}
.y77{bottom:736.485000px;}
.ycc{bottom:737.565000px;}
.y1ec{bottom:737.648440px;}
.y129{bottom:738.645000px;}
.y15b{bottom:740.445000px;}
.y234{bottom:741.000000px;}
.y194{bottom:744.765000px;}
.yfa{bottom:746.565000px;}
.y3f{bottom:747.369750px;}
.y176{bottom:749.625000px;}
.y1c{bottom:752.505000px;}
.y1a8{bottom:753.225000px;}
.y10c{bottom:753.585000px;}
.y8b{bottom:755.745000px;}
.y188{bottom:761.505000px;}
.y3e{bottom:764.379300px;}
.y76{bottom:767.625000px;}
.y1ed{bottom:767.900398px;}
.ycb{bottom:768.705000px;}
.y1db{bottom:769.665000px;}
.y175{bottom:771.405000px;}
.y193{bottom:775.905000px;}
.yf9{bottom:777.705000px;}
.y187{bottom:778.785000px;}
.y1c3{bottom:781.125000px;}
.y3d{bottom:781.388700px;}
.y1b{bottom:783.645000px;}
.y10b{bottom:784.725000px;}
.y15a{bottom:786.345000px;}
.y8a{bottom:786.525000px;}
.y1a{bottom:790.485000px;}
.y1d4{bottom:792.000000px;}
.y174{bottom:793.005000px;}
.y186{bottom:796.785000px;}
.y1ee{bottom:798.146495px;}
.y3c{bottom:798.398100px;}
.y1c2{bottom:798.405000px;}
.y75{bottom:798.585000px;}
.y1a7{bottom:799.305000px;}
.yca{bottom:799.665000px;}
.y192{bottom:806.865000px;}
.yf8{bottom:808.665000px;}
.y19{bottom:814.605000px;}
.y173{bottom:814.785000px;}
.y3b{bottom:815.407650px;}
.y128{bottom:815.685000px;}
.y1c1{bottom:820.005000px;}
.y1f3{bottom:824.953125px;}
.ya{bottom:825.765000px;}
.y1f2{bottom:828.544921px;}
.y211{bottom:829.500000px;}
.y74{bottom:829.725000px;}
.yc9{bottom:830.805000px;}
.y3a{bottom:832.326900px;}
.y159{bottom:832.425000px;}
.y185{bottom:832.785000px;}
.y171{bottom:836.565000px;}
.y191{bottom:838.005000px;}
.yf7{bottom:839.850000px;}
.y1bf{bottom:841.830000px;}
.y18{bottom:845.790000px;}
.y1ea{bottom:849.000000px;}
.y39{bottom:849.336300px;}
.y184{bottom:850.830000px;}
.y17{bottom:852.630000px;}
.y170{bottom:858.390000px;}
.y73{bottom:860.730000px;}
.ydf{bottom:861.810000px;}
.y1be{bottom:863.610000px;}
.y38{bottom:866.345700px;}
.y183{bottom:868.110000px;}
.y190{bottom:869.010000px;}
.yf6{bottom:870.810000px;}
.y9{bottom:871.170000px;}
.y212{bottom:874.500000px;}
.y16{bottom:876.390000px;}
.y8f{bottom:876.750000px;}
.y158{bottom:878.550000px;}
.y16f{bottom:880.170000px;}
.y37{bottom:883.355250px;}
.y1bd{bottom:885.390000px;}
.y182{bottom:886.110000px;}
.y72{bottom:891.870000px;}
.yde{bottom:892.950000px;}
.y18f{bottom:900.150000px;}
.y36{bottom:900.364650px;}
.yf5{bottom:901.950000px;}
.y8{bottom:902.130000px;}
.y180{bottom:904.110000px;}
.y1bc{bottom:907.170000px;}
.y15{bottom:907.890000px;}
.y35{bottom:917.285400px;}
.y17e{bottom:922.110000px;}
.y71{bottom:922.830000px;}
.y16e{bottom:923.550000px;}
.ydd{bottom:923.910000px;}
.y157{bottom:924.630000px;}
.y1bb{bottom:928.950000px;}
.y18e{bottom:931.110000px;}
.yf4{bottom:932.910000px;}
.y34{bottom:934.294950px;}
.y7{bottom:934.710000px;}
.yc8{bottom:938.490000px;}
.y14{bottom:938.850000px;}
.y16d{bottom:945.330000px;}
.y1b9{bottom:950.550000px;}
.y33{bottom:951.304350px;}
.y70{bottom:953.970000px;}
.ydc{bottom:954.870000px;}
.y18d{bottom:962.250000px;}
.yf3{bottom:963.870000px;}
.y6{bottom:966.030000px;}
.y167{bottom:967.830000px;}
.y32{bottom:968.313750px;}
.yc7{bottom:969.630000px;}
.y13{bottom:969.990000px;}
.y156{bottom:970.710000px;}
.y1b8{bottom:972.330000px;}
.y6f{bottom:984.930000px;}
.y31{bottom:985.323300px;}
.ydb{bottom:986.010000px;}
.y18c{bottom:993.210000px;}
.y1b6{bottom:994.830000px;}
.yf2{bottom:995.010000px;}
.y5{bottom:998.430000px;}
.y17d{bottom:1000.590000px;}
.y12{bottom:1000.950000px;}
.y30{bottom:1002.244050px;}
.y6e{bottom:1016.070000px;}
.y155{bottom:1016.610000px;}
.y2f{bottom:1019.253450px;}
.yf1{bottom:1025.970000px;}
.y4{bottom:1029.570000px;}
.y11{bottom:1032.090000px;}
.y2e{bottom:1036.262850px;}
.y18b{bottom:1039.290000px;}
.yaa{bottom:1046.670000px;}
.y6d{bottom:1047.030000px;}
.y2d{bottom:1053.272400px;}
.yf0{bottom:1057.110000px;}
.y3{bottom:1061.790000px;}
.y10{bottom:1062.690000px;}
.y8e{bottom:1063.050000px;}
.y2c{bottom:1070.281800px;}
.y18a{bottom:1070.430000px;}
.y6c{bottom:1078.170000px;}
.y2b{bottom:1087.201050px;}
.yef{bottom:1088.070000px;}
.y2{bottom:1092.930000px;}
.yf{bottom:1093.830000px;}
.y8d{bottom:1094.190000px;}
.y189{bottom:1101.390000px;}
.y2a{bottom:1104.210600px;}
.y6b{bottom:1109.130000px;}
.yee{bottom:1118.850000px;}
.y29{bottom:1121.220000px;}
.ye{bottom:1125.000000px;}
.y10a{bottom:1139.760000px;}
.y1{bottom:1139.940000px;}
.y6a{bottom:1140.300000px;}
.yb{bottom:1244.880000px;}
.y222{bottom:1246.500000px;}
.h16{height:17.265000px;}
.h1b{height:17.280000px;}
.h1a{height:17.302500px;}
.h12{height:21.585000px;}
.h15{height:21.600000px;}
.h11{height:21.765000px;}
.h14{height:21.780000px;}
.h13{height:21.802500px;}
.h29{height:38.439844px;}
.h35{height:41.934375px;}
.h2b{height:43.681641px;}
.h6{height:45.000000px;}
.ha{height:47.344922px;}
.h2a{height:48.049805px;}
.h5{height:50.229844px;}
.h34{height:52.417969px;}
.h22{height:54.386719px;}
.h1e{height:55.291992px;}
.h18{height:58.621992px;}
.h17{height:58.651172px;}
.hc{height:58.975137px;}
.h19{height:60.226875px;}
.h2c{height:61.154297px;}
.h10{height:62.085000px;}
.h24{height:62.578125px;}
.h36{height:62.901563px;}
.hf{height:64.546875px;}
.h20{height:65.884219px;}
.h21{height:66.027445px;}
.h1f{height:67.824844px;}
.h1d{height:68.084282px;}
.h8{height:70.628906px;}
.h4{height:70.664062px;}
.he{height:71.824219px;}
.h2{height:72.562500px;}
.h3{height:74.004654px;}
.h9{height:74.704922px;}
.hd{height:74.953125px;}
.h25{height:75.093750px;}
.h38{height:78.626953px;}
.h31{height:89.493750px;}
.h2e{height:99.429046px;}
.h2d{height:133.810500px;}
.h26{height:269.220000px;}
.h27{height:432.840000px;}
.h33{height:435.000000px;}
.h30{height:652.500000px;}
.h37{height:759.000000px;}
.h1c{height:810.000000px;}
.h28{height:847.500000px;}
.h23{height:867.000000px;}
.h2f{height:892.500000px;}
.hb{height:1188.000000px;}
.h7{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.h32{height:1264.500000px;}
.w16{width:54.720000px;}
.w4{width:73.821000px;}
.w11{width:76.536000px;}
.w10{width:76.680000px;}
.we{width:76.701000px;}
.wf{width:76.860000px;}
.w13{width:77.061000px;}
.wd{width:79.185000px;}
.w9{width:79.545000px;}
.w17{width:82.116000px;}
.w12{width:84.405000px;}
.w18{width:106.365000px;}
.w8{width:109.461000px;}
.w5{width:112.500000px;}
.w3{width:114.825000px;}
.w14{width:116.445000px;}
.w6{width:118.476000px;}
.w7{width:120.261000px;}
.w1e{width:161.625000px;}
.w15{width:172.275000px;}
.wb{width:230.595000px;}
.wc{width:238.035000px;}
.w1b{width:439.650000px;}
.wa{width:469.350000px;}
.w1c{width:550.200000px;}
.w20{width:697.500000px;}
.w22{width:739.500000px;}
.w1d{width:867.000000px;}
.w21{width:892.500000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w23{width:1063.500000px;}
.w19{width:1080.000000px;}
.w1a{width:1101.000000px;}
.w1f{width:1263.000000px;}
.x4c{left:-43.020000px;}
.x0{left:0.000000px;}
.x7f{left:6.480469px;}
.x4{left:7.500000px;}
.x14{left:10.260000px;}
.x46{left:13.680000px;}
.x12{left:14.970000px;}
.x28{left:17.670000px;}
.x16{left:19.260000px;}
.x11{left:21.270000px;}
.x15{left:24.120000px;}
.x2b{left:25.545000px;}
.x9{left:27.000000px;}
.x24{left:28.965000px;}
.x18{left:31.350000px;}
.x26{left:32.580000px;}
.x1b{left:35.640000px;}
.x73{left:36.720000px;}
.x19{left:38.190000px;}
.x1e{left:40.665000px;}
.x1d{left:43.725000px;}
.x1c{left:45.750000px;}
.x43{left:47.235000px;}
.x80{left:49.681641px;}
.x32{left:50.925000px;}
.x4e{left:54.180000px;}
.xf{left:57.225000px;}
.x74{left:60.480470px;}
.x45{left:73.500000px;}
.xb{left:75.217500px;}
.x42{left:77.745000px;}
.x7e{left:81.691407px;}
.x8{left:83.677500px;}
.x22{left:85.530000px;}
.x68{left:87.691407px;}
.x6{left:92.137500px;}
.x7{left:100.656000px;}
.x4f{left:125.425782px;}
.x1{left:127.656000px;}
.x76{left:129.017579px;}
.x6a{left:140.250000px;}
.xa{left:148.896000px;}
.x2d{left:152.865000px;}
.x2{left:154.650000px;}
.xd{left:159.690000px;}
.x1f{left:172.125000px;}
.xe{left:176.625000px;}
.x3{left:181.650000px;}
.x77{left:193.863282px;}
.x2c{left:198.570000px;}
.x21{left:202.350000px;}
.x75{left:203.970704px;}
.x62{left:227.238282px;}
.x54{left:230.156250px;}
.x44{left:236.805000px;}
.x50{left:244.517579px;}
.x51{left:248.912109px;}
.x20{left:251.685000px;}
.x3f{left:261.690000px;}
.x40{left:265.245000px;}
.x2e{left:269.325000px;}
.x10{left:291.465000px;}
.x52{left:302.232422px;}
.x63{left:304.441407px;}
.x53{left:308.613282px;}
.x72{left:314.385000px;}
.x25{left:328.755000px;}
.x3d{left:342.075000px;}
.x37{left:344.880000px;}
.x13{left:365.295000px;}
.x38{left:381.390000px;}
.x39{left:382.605000px;}
.x71{left:385.515000px;}
.x7a{left:387.029296px;}
.x7d{left:397.828125px;}
.x27{left:405.615000px;}
.x78{left:430.230469px;}
.x2f{left:441.615000px;}
.x65{left:443.408204px;}
.x5a{left:446.332032px;}
.x58{left:453.527345px;}
.x7c{left:456.152345px;}
.x55{left:461.267578px;}
.x56{left:465.662109px;}
.x17{left:477.795000px;}
.x23{left:483.015000px;}
.x6f{left:489.480000px;}
.x6e{left:491.115000px;}
.x4b{left:494.280000px;}
.x30{left:496.335000px;}
.x41{left:515.055000px;}
.x57{left:518.982421px;}
.x64{left:521.191407px;}
.x34{left:523.155000px;}
.x35{left:524.310000px;}
.x59{left:525.363282px;}
.x6d{left:527.205000px;}
.x70{left:529.515000px;}
.x82{left:538.230469px;}
.x6b{left:546.510000px;}
.x85{left:549.029296px;}
.x4d{left:550.800000px;}
.x29{left:559.560000px;}
.x7b{left:563.613282px;}
.x3e{left:569.985000px;}
.x79{left:573.720703px;}
.x31{left:578.460000px;}
.x83{left:581.431641px;}
.x6c{left:583.500000px;}
.x48{left:589.275000px;}
.x1a{left:596.280000px;}
.x49{left:598.035000px;}
.x86{left:606.117187px;}
.x84{left:607.347657px;}
.x81{left:608.437500px;}
.x33{left:609.480000px;}
.x4a{left:624.300000px;}
.x47{left:628.545000px;}
.x2a{left:643.980000px;}
.x61{left:663.656250px;}
.x67{left:666.580078px;}
.x5f{left:670.277345px;}
.x5b{left:678.017578px;}
.x5c{left:682.412109px;}
.x69{left:697.155000px;}
.x3a{left:700.305000px;}
.x36{left:721.905000px;}
.x5d{left:735.732421px;}
.x66{left:737.941407px;}
.x60{left:742.113282px;}
.xc{left:748.770000px;}
.x5{left:757.230000px;}
.x5e{left:775.675782px;}
.x3b{left:797.865000px;}
.x3c{left:799.920000px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v5{vertical-align:-11.520000pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v6{vertical-align:12.800000pt;}
.v2{vertical-align:24.320000pt;}
.ls1e{letter-spacing:-1.472000pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.225067pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.069472pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls2d{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.130667pt;}
.ls24{letter-spacing:0.133120pt;}
.ls25{letter-spacing:0.133333pt;}
.lse{letter-spacing:0.135680pt;}
.ls13{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161280pt;}
.ls2a{letter-spacing:0.176640pt;}
.ls8{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.208000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls29{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.239360pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.258667pt;}
.ls26{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.400640pt;}
.ls28{letter-spacing:0.414933pt;}
.ls10{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.559360pt;}
.lsd{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.768000pt;}
.ls15{letter-spacing:0.832000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls17{letter-spacing:19.360000pt;}
.ls21{letter-spacing:29.312000pt;}
.lsb{letter-spacing:48.106667pt;}
.ls0{letter-spacing:48.768000pt;}
.ls1{letter-spacing:52.751360pt;}
.ls22{letter-spacing:133.120000pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1f{word-spacing:-59.008000pt;}
.ws1{word-spacing:-58.880000pt;}
.ws8{word-spacing:-17.280000pt;}
.wsc{word-spacing:-16.832000pt;}
.ws13{word-spacing:-16.768000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.384000pt;}
.ws10{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.488000pt;}
.wsf{word-spacing:-15.168000pt;}
.ws11{word-spacing:-14.528000pt;}
.ws1c{word-spacing:-14.464000pt;}
.ws16{word-spacing:-13.694933pt;}
.ws1a{word-spacing:-13.565547pt;}
.ws19{word-spacing:-13.552533pt;}
.wse{word-spacing:-13.534613pt;}
.ws17{word-spacing:-13.510933pt;}
.ws1e{word-spacing:-13.437547pt;}
.ws15{word-spacing:-13.327360pt;}
.ws18{word-spacing:-13.280000pt;}
.ws1b{word-spacing:-13.081813pt;}
.ws1d{word-spacing:-11.056000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
.ws27{word-spacing:44.480000pt;}
.ws23{word-spacing:69.429333pt;}
.ws24{word-spacing:148.864000pt;}
.ws25{word-spacing:158.976000pt;}
.ws20{word-spacing:161.653333pt;}
.ws21{word-spacing:184.307200pt;}
.ws28{word-spacing:220.800000pt;}
.ws26{word-spacing:238.592000pt;}
.ws22{word-spacing:341.344000pt;}
._c{margin-left:-7.989333pt;}
._9{margin-left:-2.549333pt;}
._4{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._6{width:1.898667pt;}
._f{width:2.837333pt;}
._e{width:3.797333pt;}
._0{width:8.576000pt;}
._2{width:9.792000pt;}
._14{width:14.400000pt;}
._d{width:19.498667pt;}
._a{width:27.264000pt;}
._3{width:28.224000pt;}
._10{width:31.146667pt;}
._11{width:32.128000pt;}
._5{width:38.016000pt;}
._b{width:39.200000pt;}
._13{width:55.114667pt;}
._12{width:56.640000pt;}
._23{width:80.223680pt;}
._22{width:97.792000pt;}
._16{width:132.352000pt;}
._15{width:133.312000pt;}
._17{width:134.538667pt;}
._1d{width:177.216000pt;}
._1f{width:186.816000pt;}
._1e{width:187.904000pt;}
._18{width:191.253333pt;}
._19{width:221.706667pt;}
._1a{width:237.226667pt;}
._24{width:259.839680pt;}
._20{width:266.944000pt;}
._21{width:277.651648pt;}
._1b{width:395.573333pt;}
._1c{width:414.282667pt;}
._7{width:752.138667pt;}
._8{width:1272.746667pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:46.933333pt;}
.fs7{font-size:48.000000pt;}
.fse{font-size:51.200000pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:53.440000pt;}
.fs5{font-size:56.320000pt;}
.fsb{font-size:58.666667pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:74.666667pt;}
.fsf{font-size:76.800000pt;}
.fs10{font-size:96.000000pt;}
.fsd{font-size:121.398427pt;}
.y1e2{bottom:-47.813333pt;}
.y1c0{bottom:-14.440000pt;}
.y1ba{bottom:-14.400000pt;}
.y0{bottom:0.000000pt;}
.y181{bottom:3.040000pt;}
.y17f{bottom:3.360000pt;}
.y1b7{bottom:3.680000pt;}
.y224{bottom:3.838541pt;}
.y16c{bottom:4.000000pt;}
.y172{bottom:4.040000pt;}
.y20b{bottom:10.531249pt;}
.y16a{bottom:13.280000pt;}
.y16b{bottom:22.400000pt;}
.y1e9{bottom:25.546667pt;}
.y20a{bottom:27.322916pt;}
.y69{bottom:30.029333pt;}
.y169{bottom:31.680000pt;}
.y22e{bottom:32.640625pt;}
.y21f{bottom:40.320000pt;}
.y168{bottom:40.800000pt;}
.y20f{bottom:42.302667pt;}
.y68{bottom:45.068667pt;}
.y210{bottom:48.447333pt;}
.yd{bottom:51.232000pt;}
.y1dc{bottom:52.586667pt;}
.y67{bottom:60.188133pt;}
.y213{bottom:63.360000pt;}
.y206{bottom:63.802083pt;}
.yc{bottom:69.152000pt;}
.y66{bottom:75.307733pt;}
.y1e0{bottom:81.280000pt;}
.y230{bottom:82.760416pt;}
.y227{bottom:83.375000pt;}
.y20c{bottom:87.505208pt;}
.y65{bottom:90.427200pt;}
.y207{bottom:90.687502pt;}
.y226{bottom:94.531249pt;}
.y13c{bottom:98.432000pt;}
.yad{bottom:102.752000pt;}
.y9d{bottom:103.552000pt;}
.yda{bottom:104.512000pt;}
.ybd{bottom:105.472000pt;}
.y64{bottom:105.546667pt;}
.y22b{bottom:111.697916pt;}
.yec{bottom:116.992000pt;}
.y208{bottom:117.578132pt;}
.yc5{bottom:117.952000pt;}
.y1dd{bottom:118.120000pt;}
.y154{bottom:118.432000pt;}
.yeb{bottom:118.752000pt;}
.y150{bottom:119.712000pt;}
.y63{bottom:120.586000pt;}
.y223{bottom:120.848959pt;}
.y21d{bottom:124.560000pt;}
.y1a6{bottom:125.312000pt;}
.y13b{bottom:125.952000pt;}
.y14e{bottom:126.752000pt;}
.yac{bottom:130.272000pt;}
.y9c{bottom:131.232000pt;}
.yd9{bottom:132.192000pt;}
.ybc{bottom:133.152000pt;}
.y62{bottom:135.705600pt;}
.y1b5{bottom:137.466667pt;}
.y209{bottom:144.463551pt;}
.y89{bottom:144.506667pt;}
.yc4{bottom:145.466667pt;}
.yea{bottom:146.426667pt;}
.y14f{bottom:147.386667pt;}
.y127{bottom:148.186667pt;}
.y61{bottom:150.825067pt;}
.y1a5{bottom:152.826667pt;}
.y13a{bottom:153.626667pt;}
.y14d{bottom:154.426667pt;}
.yab{bottom:157.946667pt;}
.y9b{bottom:158.746667pt;}
.yd8{bottom:159.706667pt;}
.y109{bottom:160.346667pt;}
.ybb{bottom:160.666667pt;}
.y214{bottom:162.360000pt;}
.y60{bottom:165.944667pt;}
.y166{bottom:166.906667pt;}
.y20e{bottom:168.291667pt;}
.y20d{bottom:171.484375pt;}
.ya9{bottom:172.186667pt;}
.y228{bottom:172.776041pt;}
.yc3{bottom:173.146667pt;}
.ye9{bottom:173.946667pt;}
.y118{bottom:174.906667pt;}
.y126{bottom:175.866667pt;}
.y1b4{bottom:178.266667pt;}
.y1e8{bottom:180.493333pt;}
.y1a4{bottom:180.506667pt;}
.y5f{bottom:181.064133pt;}
.y139{bottom:181.146667pt;}
.y14c{bottom:181.946667pt;}
.y22a{bottom:182.572916pt;}
.y1de{bottom:184.853333pt;}
.y88{bottom:185.466667pt;}
.y9a{bottom:186.426667pt;}
.yd7{bottom:187.386667pt;}
.y108{bottom:188.026667pt;}
.yba{bottom:188.186667pt;}
.y225{bottom:195.911459pt;}
.y5e{bottom:196.103467pt;}
.y202{bottom:198.864583pt;}
.ya8{bottom:199.706667pt;}
.yc2{bottom:200.666667pt;}
.ye8{bottom:201.626667pt;}
.y117{bottom:202.586667pt;}
.y1e7{bottom:207.093333pt;}
.y165{bottom:207.866667pt;}
.y1a3{bottom:208.026667pt;}
.y5d{bottom:211.222933pt;}
.y87{bottom:213.146667pt;}
.y99{bottom:213.946667pt;}
.y153{bottom:214.906667pt;}
.y107{bottom:215.546667pt;}
.y201{bottom:215.656249pt;}
.yb9{bottom:215.866667pt;}
.y125{bottom:216.826667pt;}
.y1e1{bottom:218.106667pt;}
.y1b3{bottom:219.226667pt;}
.y22c{bottom:219.239583pt;}
.y14b{bottom:222.906667pt;}
.y5c{bottom:226.342533pt;}
.ya7{bottom:227.386667pt;}
.yc1{bottom:228.186667pt;}
.ye7{bottom:229.146667pt;}
.y116{bottom:230.106667pt;}
.y21c{bottom:230.320000pt;}
.y1d3{bottom:233.053333pt;}
.y1a2{bottom:235.706667pt;}
.y86{bottom:240.666667pt;}
.y5b{bottom:241.462000pt;}
.y98{bottom:241.626667pt;}
.y152{bottom:242.626667pt;}
.y106{bottom:242.946667pt;}
.yb8{bottom:243.426667pt;}
.y124{bottom:244.386667pt;}
.y164{bottom:248.706667pt;}
.y14a{bottom:250.626667pt;}
.y1df{bottom:251.573333pt;}
.y1fd{bottom:252.135416pt;}
.y218{bottom:253.520000pt;}
.y220{bottom:253.813333pt;}
.ya6{bottom:254.946667pt;}
.y138{bottom:255.106667pt;}
.yc0{bottom:255.906667pt;}
.y5a{bottom:256.581467pt;}
.ye6{bottom:256.866667pt;}
.y115{bottom:257.826667pt;}
.y1b2{bottom:260.226667pt;}
.y85{bottom:268.226667pt;}
.y97{bottom:269.186667pt;}
.y151{bottom:270.146667pt;}
.yb7{bottom:271.106667pt;}
.y59{bottom:271.620800pt;}
.y123{bottom:272.066667pt;}
.y219{bottom:273.693333pt;}
.y215{bottom:274.826667pt;}
.y1cd{bottom:275.613333pt;}
.y203{bottom:275.838541pt;}
.y1a1{bottom:276.546667pt;}
.y149{bottom:278.146667pt;}
.y1fe{bottom:279.020836pt;}
.y1d2{bottom:279.746667pt;}
.ya5{bottom:282.626667pt;}
.yd6{bottom:283.426667pt;}
.y12d{bottom:284.386667pt;}
.y58{bottom:286.740400pt;}
.y163{bottom:289.666667pt;}
.y21b{bottom:289.973333pt;}
.y232{bottom:294.645833pt;}
.y84{bottom:295.906667pt;}
.y96{bottom:296.866667pt;}
.ye5{bottom:297.826667pt;}
.yb6{bottom:298.626667pt;}
.y1b1{bottom:301.186667pt;}
.y57{bottom:301.859867pt;}
.y105{bottom:302.786667pt;}
.y1a0{bottom:304.226667pt;}
.y1ff{bottom:305.911465pt;}
.y217{bottom:305.960000pt;}
.ya4{bottom:310.146667pt;}
.y137{bottom:310.306667pt;}
.yd5{bottom:311.106667pt;}
.y12c{bottom:312.066667pt;}
.y122{bottom:313.026667pt;}
.y56{bottom:316.979333pt;}
.y148{bottom:319.106667pt;}
.y83{bottom:323.426667pt;}
.yed{bottom:324.066667pt;}
.y95{bottom:324.386667pt;}
.ye4{bottom:325.346667pt;}
.y114{bottom:326.306667pt;}
.y104{bottom:329.666667pt;}
.y162{bottom:330.626667pt;}
.y19f{bottom:331.746667pt;}
.y55{bottom:332.098933pt;}
.y200{bottom:332.796885pt;}
.y229{bottom:332.906249pt;}
.y233{bottom:334.666667pt;}
.y22f{bottom:335.109375pt;}
.ya3{bottom:337.826667pt;}
.yd4{bottom:338.626667pt;}
.yb5{bottom:339.586667pt;}
.y1ca{bottom:339.613333pt;}
.y1e3{bottom:340.133333pt;}
.y121{bottom:340.546667pt;}
.y1b0{bottom:342.146667pt;}
.y147{bottom:346.626667pt;}
.y54{bottom:347.218400pt;}
.y1e5{bottom:347.506667pt;}
.y82{bottom:351.106667pt;}
.y94{bottom:352.066667pt;}
.ye3{bottom:353.026667pt;}
.y113{bottom:353.826667pt;}
.y136{bottom:356.546667pt;}
.y205{bottom:356.625000pt;}
.y103{bottom:357.346667pt;}
.y19e{bottom:359.426667pt;}
.y204{bottom:359.817708pt;}
.y53{bottom:362.257733pt;}
.ya2{bottom:365.346667pt;}
.yd3{bottom:366.306667pt;}
.y12b{bottom:367.266667pt;}
.y22d{bottom:370.666667pt;}
.y161{bottom:371.586667pt;}
.y146{bottom:374.306667pt;}
.y52{bottom:377.377333pt;}
.y81{bottom:378.626667pt;}
.y93{bottom:379.586667pt;}
.y28{bottom:380.226667pt;}
.yb4{bottom:380.546667pt;}
.y120{bottom:381.506667pt;}
.y1af{bottom:383.106667pt;}
.y135{bottom:384.226667pt;}
.y102{bottom:384.866667pt;}
.y1e4{bottom:385.920000pt;}
.y19d{bottom:386.946667pt;}
.y1f9{bottom:387.197916pt;}
.y216{bottom:387.293333pt;}
.y51{bottom:392.496800pt;}
.ya1{bottom:393.026667pt;}
.yd2{bottom:393.826667pt;}
.y1cc{bottom:394.146667pt;}
.y21a{bottom:394.693333pt;}
.y112{bottom:394.786667pt;}
.y1d1{bottom:396.320000pt;}
.y145{bottom:401.826667pt;}
.y1f8{bottom:403.989583pt;}
.y80{bottom:406.306667pt;}
.y92{bottom:407.266667pt;}
.y50{bottom:407.616267pt;}
.yb3{bottom:408.226667pt;}
.y11f{bottom:409.026667pt;}
.y134{bottom:411.746667pt;}
.y101{bottom:412.546667pt;}
.y19c{bottom:414.626667pt;}
.y1d9{bottom:419.386667pt;}
.ya0{bottom:420.546667pt;}
.y27{bottom:421.506667pt;}
.y111{bottom:422.466667pt;}
.y4f{bottom:422.735867pt;}
.y1ae{bottom:423.906667pt;}
.y21e{bottom:424.693333pt;}
.y7f{bottom:433.826667pt;}
.y91{bottom:434.786667pt;}
.yb2{bottom:435.746667pt;}
.y11e{bottom:436.706667pt;}
.y4e{bottom:437.775200pt;}
.y1d5{bottom:438.506667pt;}
.y133{bottom:439.426667pt;}
.y100{bottom:440.066667pt;}
.y1f4{bottom:440.468749pt;}
.y144{bottom:442.786667pt;}
.y9f{bottom:448.226667pt;}
.yd1{bottom:449.026667pt;}
.y110{bottom:449.986667pt;}
.y1ce{bottom:452.346667pt;}
.y4d{bottom:452.894667pt;}
.y160{bottom:453.346667pt;}
.y1cb{bottom:454.746667pt;}
.y19b{bottom:455.586667pt;}
.y7e{bottom:461.506667pt;}
.y26{bottom:462.466667pt;}
.yb1{bottom:463.426667pt;}
.y1fa{bottom:464.171875pt;}
.y1ad{bottom:464.866667pt;}
.y132{bottom:466.946667pt;}
.y1e6{bottom:467.200000pt;}
.y1f5{bottom:467.354169pt;}
.yff{bottom:467.746667pt;}
.y4c{bottom:468.014267pt;}
.y143{bottom:470.466667pt;}
.y9e{bottom:475.746667pt;}
.yd0{bottom:476.706667pt;}
.y11d{bottom:477.666667pt;}
.y19a{bottom:483.106667pt;}
.y4b{bottom:483.133733pt;}
.y7d{bottom:489.026667pt;}
.y90{bottom:489.986667pt;}
.yb0{bottom:490.946667pt;}
.y1f6{bottom:494.244798pt;}
.y15f{bottom:494.333333pt;}
.yfe{bottom:494.973333pt;}
.y142{bottom:498.013333pt;}
.y4a{bottom:498.253200pt;}
.y25{bottom:503.453333pt;}
.y1d6{bottom:504.040000pt;}
.ycf{bottom:504.253333pt;}
.y11c{bottom:505.213333pt;}
.y1ac{bottom:505.853333pt;}
.y199{bottom:510.813333pt;}
.y131{bottom:513.213333pt;}
.y49{bottom:513.292533pt;}
.y7c{bottom:516.733333pt;}
.ybf{bottom:517.693333pt;}
.ye2{bottom:518.493333pt;}
.y1c9{bottom:518.653333pt;}
.y1d0{bottom:519.266667pt;}
.y1f7{bottom:521.130218pt;}
.y141{bottom:525.693333pt;}
.y48{bottom:528.412133pt;}
.y24{bottom:530.973333pt;}
.yaf{bottom:531.933333pt;}
.y11b{bottom:532.893333pt;}
.y15e{bottom:535.293333pt;}
.yfd{bottom:536.093333pt;}
.y23{bottom:537.053333pt;}
.y198{bottom:538.333333pt;}
.y130{bottom:540.893333pt;}
.y1da{bottom:541.053333pt;}
.y1c8{bottom:543.013333pt;}
.y47{bottom:543.531600pt;}
.y7b{bottom:544.253333pt;}
.y1c4{bottom:544.773333pt;}
.y1fc{bottom:544.958333pt;}
.ybe{bottom:545.213333pt;}
.ye1{bottom:546.173333pt;}
.y1ab{bottom:546.813333pt;}
.y1fb{bottom:548.151041pt;}
.y17c{bottom:550.333333pt;}
.y140{bottom:553.213333pt;}
.y22{bottom:558.493333pt;}
.y46{bottom:558.651067pt;}
.y1c7{bottom:559.173333pt;}
.yce{bottom:559.453333pt;}
.y221{bottom:564.000000pt;}
.y197{bottom:566.013333pt;}
.y1c5{bottom:566.786667pt;}
.y1cf{bottom:567.293333pt;}
.y12f{bottom:568.413333pt;}
.y17b{bottom:569.693333pt;}
.y1d7{bottom:570.773333pt;}
.y7a{bottom:571.933333pt;}
.yae{bottom:572.893333pt;}
.y11a{bottom:573.693333pt;}
.y45{bottom:573.770667pt;}
.y1f0{bottom:575.531249pt;}
.y15d{bottom:576.253333pt;}
.yfc{bottom:576.413333pt;}
.y13f{bottom:580.893333pt;}
.y21{bottom:586.173333pt;}
.ye0{bottom:586.813333pt;}
.y10f{bottom:587.133333pt;}
.y1aa{bottom:587.773333pt;}
.y44{bottom:588.810000pt;}
.y17a{bottom:588.893333pt;}
.y1c6{bottom:591.493333pt;}
.y20{bottom:592.253333pt;}
.y1ef{bottom:592.322916pt;}
.y12e{bottom:596.093333pt;}
.y79{bottom:599.453333pt;}
.yc6{bottom:600.413333pt;}
.y119{bottom:601.373333pt;}
.yfb{bottom:603.773333pt;}
.y43{bottom:603.929467pt;}
.y196{bottom:606.813333pt;}
.y179{bottom:608.253333pt;}
.y13e{bottom:608.413333pt;}
.y1f{bottom:613.693333pt;}
.y10e{bottom:614.653333pt;}
.y15c{bottom:617.213333pt;}
.y42{bottom:619.048933pt;}
.y78{bottom:627.133333pt;}
.y178{bottom:627.613333pt;}
.ycd{bottom:628.093333pt;}
.y1a9{bottom:628.573333pt;}
.y1eb{bottom:628.802083pt;}
.y12a{bottom:628.893333pt;}
.y231{bottom:630.505208pt;}
.y41{bottom:634.168533pt;}
.y195{bottom:634.493333pt;}
.y13d{bottom:636.093333pt;}
.y1d8{bottom:637.493333pt;}
.y1e{bottom:641.373333pt;}
.y10d{bottom:642.333333pt;}
.y8c{bottom:643.933333pt;}
.y177{bottom:646.973333pt;}
.y1d{bottom:647.453333pt;}
.y40{bottom:649.288000pt;}
.y1f1{bottom:652.505208pt;}
.y77{bottom:654.653333pt;}
.ycc{bottom:655.613333pt;}
.y1ec{bottom:655.687502pt;}
.y129{bottom:656.573333pt;}
.y15b{bottom:658.173333pt;}
.y234{bottom:658.666667pt;}
.y194{bottom:662.013333pt;}
.yfa{bottom:663.613333pt;}
.y3f{bottom:664.328667pt;}
.y176{bottom:666.333333pt;}
.y1c{bottom:668.893333pt;}
.y1a8{bottom:669.533333pt;}
.y10c{bottom:669.853333pt;}
.y8b{bottom:671.773333pt;}
.y188{bottom:676.893333pt;}
.y3e{bottom:679.448267pt;}
.y76{bottom:682.333333pt;}
.y1ed{bottom:682.578132pt;}
.ycb{bottom:683.293333pt;}
.y1db{bottom:684.146667pt;}
.y175{bottom:685.693333pt;}
.y193{bottom:689.693333pt;}
.yf9{bottom:691.293333pt;}
.y187{bottom:692.253333pt;}
.y1c3{bottom:694.333333pt;}
.y3d{bottom:694.567733pt;}
.y1b{bottom:696.573333pt;}
.y10b{bottom:697.533333pt;}
.y15a{bottom:698.973333pt;}
.y8a{bottom:699.133333pt;}
.y1a{bottom:702.653333pt;}
.y1d4{bottom:704.000000pt;}
.y174{bottom:704.893333pt;}
.y186{bottom:708.253333pt;}
.y1ee{bottom:709.463551pt;}
.y3c{bottom:709.687200pt;}
.y1c2{bottom:709.693333pt;}
.y75{bottom:709.853333pt;}
.y1a7{bottom:710.493333pt;}
.yca{bottom:710.813333pt;}
.y192{bottom:717.213333pt;}
.yf8{bottom:718.813333pt;}
.y19{bottom:724.093333pt;}
.y173{bottom:724.253333pt;}
.y3b{bottom:724.806800pt;}
.y128{bottom:725.053333pt;}
.y1c1{bottom:728.893333pt;}
.y1f3{bottom:733.291667pt;}
.ya{bottom:734.013333pt;}
.y1f2{bottom:736.484375pt;}
.y211{bottom:737.333333pt;}
.y74{bottom:737.533333pt;}
.yc9{bottom:738.493333pt;}
.y3a{bottom:739.846133pt;}
.y159{bottom:739.933333pt;}
.y185{bottom:740.253333pt;}
.y171{bottom:743.613333pt;}
.y191{bottom:744.893333pt;}
.yf7{bottom:746.533333pt;}
.y1bf{bottom:748.293333pt;}
.y18{bottom:751.813333pt;}
.y1ea{bottom:754.666667pt;}
.y39{bottom:754.965600pt;}
.y184{bottom:756.293333pt;}
.y17{bottom:757.893333pt;}
.y170{bottom:763.013333pt;}
.y73{bottom:765.093333pt;}
.ydf{bottom:766.053333pt;}
.y1be{bottom:767.653333pt;}
.y38{bottom:770.085067pt;}
.y183{bottom:771.653333pt;}
.y190{bottom:772.453333pt;}
.yf6{bottom:774.053333pt;}
.y9{bottom:774.373333pt;}
.y212{bottom:777.333333pt;}
.y16{bottom:779.013333pt;}
.y8f{bottom:779.333333pt;}
.y158{bottom:780.933333pt;}
.y16f{bottom:782.373333pt;}
.y37{bottom:785.204667pt;}
.y1bd{bottom:787.013333pt;}
.y182{bottom:787.653333pt;}
.y72{bottom:792.773333pt;}
.yde{bottom:793.733333pt;}
.y18f{bottom:800.133333pt;}
.y36{bottom:800.324133pt;}
.yf5{bottom:801.733333pt;}
.y8{bottom:801.893333pt;}
.y180{bottom:803.653333pt;}
.y1bc{bottom:806.373333pt;}
.y15{bottom:807.013333pt;}
.y35{bottom:815.364800pt;}
.y17e{bottom:819.653333pt;}
.y71{bottom:820.293333pt;}
.y16e{bottom:820.933333pt;}
.ydd{bottom:821.253333pt;}
.y157{bottom:821.893333pt;}
.y1bb{bottom:825.733333pt;}
.y18e{bottom:827.653333pt;}
.yf4{bottom:829.253333pt;}
.y34{bottom:830.484400pt;}
.y7{bottom:830.853333pt;}
.yc8{bottom:834.213333pt;}
.y14{bottom:834.533333pt;}
.y16d{bottom:840.293333pt;}
.y1b9{bottom:844.933333pt;}
.y33{bottom:845.603867pt;}
.y70{bottom:847.973333pt;}
.ydc{bottom:848.773333pt;}
.y18d{bottom:855.333333pt;}
.yf3{bottom:856.773333pt;}
.y6{bottom:858.693333pt;}
.y167{bottom:860.293333pt;}
.y32{bottom:860.723333pt;}
.yc7{bottom:861.893333pt;}
.y13{bottom:862.213333pt;}
.y156{bottom:862.853333pt;}
.y1b8{bottom:864.293333pt;}
.y6f{bottom:875.493333pt;}
.y31{bottom:875.842933pt;}
.ydb{bottom:876.453333pt;}
.y18c{bottom:882.853333pt;}
.y1b6{bottom:884.293333pt;}
.yf2{bottom:884.453333pt;}
.y5{bottom:887.493333pt;}
.y17d{bottom:889.413333pt;}
.y12{bottom:889.733333pt;}
.y30{bottom:890.883600pt;}
.y6e{bottom:903.173333pt;}
.y155{bottom:903.653333pt;}
.y2f{bottom:906.003067pt;}
.yf1{bottom:911.973333pt;}
.y4{bottom:915.173333pt;}
.y11{bottom:917.413333pt;}
.y2e{bottom:921.122533pt;}
.y18b{bottom:923.813333pt;}
.yaa{bottom:930.373333pt;}
.y6d{bottom:930.693333pt;}
.y2d{bottom:936.242133pt;}
.yf0{bottom:939.653333pt;}
.y3{bottom:943.813333pt;}
.y10{bottom:944.613333pt;}
.y8e{bottom:944.933333pt;}
.y2c{bottom:951.361600pt;}
.y18a{bottom:951.493333pt;}
.y6c{bottom:958.373333pt;}
.y2b{bottom:966.400933pt;}
.yef{bottom:967.173333pt;}
.y2{bottom:971.493333pt;}
.yf{bottom:972.293333pt;}
.y8d{bottom:972.613333pt;}
.y189{bottom:979.013333pt;}
.y2a{bottom:981.520533pt;}
.y6b{bottom:985.893333pt;}
.yee{bottom:994.533333pt;}
.y29{bottom:996.640000pt;}
.ye{bottom:1000.000000pt;}
.y10a{bottom:1013.120000pt;}
.y1{bottom:1013.280000pt;}
.y6a{bottom:1013.600000pt;}
.yb{bottom:1106.560000pt;}
.y222{bottom:1108.000000pt;}
.h16{height:15.346667pt;}
.h1b{height:15.360000pt;}
.h1a{height:15.380000pt;}
.h12{height:19.186667pt;}
.h15{height:19.200000pt;}
.h11{height:19.346667pt;}
.h14{height:19.360000pt;}
.h13{height:19.380000pt;}
.h29{height:34.168750pt;}
.h35{height:37.275000pt;}
.h2b{height:38.828125pt;}
.h6{height:40.000000pt;}
.ha{height:42.084375pt;}
.h2a{height:42.710938pt;}
.h5{height:44.648750pt;}
.h34{height:46.593750pt;}
.h22{height:48.343750pt;}
.h1e{height:49.148438pt;}
.h18{height:52.108438pt;}
.h17{height:52.134375pt;}
.hc{height:52.422344pt;}
.h19{height:53.535000pt;}
.h2c{height:54.359375pt;}
.h10{height:55.186667pt;}
.h24{height:55.625000pt;}
.h36{height:55.912500pt;}
.hf{height:57.375000pt;}
.h20{height:58.563750pt;}
.h21{height:58.691063pt;}
.h1f{height:60.288750pt;}
.h1d{height:60.519362pt;}
.h8{height:62.781250pt;}
.h4{height:62.812500pt;}
.he{height:63.843750pt;}
.h2{height:64.500000pt;}
.h3{height:65.781915pt;}
.h9{height:66.404375pt;}
.hd{height:66.625000pt;}
.h25{height:66.750000pt;}
.h38{height:69.890625pt;}
.h31{height:79.550000pt;}
.h2e{height:88.381374pt;}
.h2d{height:118.942667pt;}
.h26{height:239.306667pt;}
.h27{height:384.746667pt;}
.h33{height:386.666667pt;}
.h30{height:580.000000pt;}
.h37{height:674.666667pt;}
.h1c{height:720.000000pt;}
.h28{height:753.333333pt;}
.h23{height:770.666667pt;}
.h2f{height:793.333333pt;}
.hb{height:1056.000000pt;}
.h7{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h32{height:1124.000000pt;}
.w16{width:48.640000pt;}
.w4{width:65.618667pt;}
.w11{width:68.032000pt;}
.w10{width:68.160000pt;}
.we{width:68.178667pt;}
.wf{width:68.320000pt;}
.w13{width:68.498667pt;}
.wd{width:70.386667pt;}
.w9{width:70.706667pt;}
.w17{width:72.992000pt;}
.w12{width:75.026667pt;}
.w18{width:94.546667pt;}
.w8{width:97.298667pt;}
.w5{width:100.000000pt;}
.w3{width:102.066667pt;}
.w14{width:103.506667pt;}
.w6{width:105.312000pt;}
.w7{width:106.898667pt;}
.w1e{width:143.666667pt;}
.w15{width:153.133333pt;}
.wb{width:204.973333pt;}
.wc{width:211.586667pt;}
.w1b{width:390.800000pt;}
.wa{width:417.200000pt;}
.w1c{width:489.066667pt;}
.w20{width:620.000000pt;}
.w22{width:657.333333pt;}
.w1d{width:770.666667pt;}
.w21{width:793.333333pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w23{width:945.333333pt;}
.w19{width:960.000000pt;}
.w1a{width:978.666667pt;}
.w1f{width:1122.666667pt;}
.x4c{left:-38.240000pt;}
.x0{left:0.000000pt;}
.x7f{left:5.760417pt;}
.x4{left:6.666667pt;}
.x14{left:9.120000pt;}
.x46{left:12.160000pt;}
.x12{left:13.306667pt;}
.x28{left:15.706667pt;}
.x16{left:17.120000pt;}
.x11{left:18.906667pt;}
.x15{left:21.440000pt;}
.x2b{left:22.706667pt;}
.x9{left:24.000000pt;}
.x24{left:25.746667pt;}
.x18{left:27.866667pt;}
.x26{left:28.960000pt;}
.x1b{left:31.680000pt;}
.x73{left:32.640000pt;}
.x19{left:33.946667pt;}
.x1e{left:36.146667pt;}
.x1d{left:38.866667pt;}
.x1c{left:40.666667pt;}
.x43{left:41.986667pt;}
.x80{left:44.161459pt;}
.x32{left:45.266667pt;}
.x4e{left:48.160000pt;}
.xf{left:50.866667pt;}
.x74{left:53.760417pt;}
.x45{left:65.333333pt;}
.xb{left:66.860000pt;}
.x42{left:69.106667pt;}
.x7e{left:72.614584pt;}
.x8{left:74.380000pt;}
.x22{left:76.026667pt;}
.x68{left:77.947917pt;}
.x6{left:81.900000pt;}
.x7{left:89.472000pt;}
.x4f{left:111.489584pt;}
.x1{left:113.472000pt;}
.x76{left:114.682292pt;}
.x6a{left:124.666667pt;}
.xa{left:132.352000pt;}
.x2d{left:135.880000pt;}
.x2{left:137.466667pt;}
.xd{left:141.946667pt;}
.x1f{left:153.000000pt;}
.xe{left:157.000000pt;}
.x3{left:161.466667pt;}
.x77{left:172.322917pt;}
.x2c{left:176.506667pt;}
.x21{left:179.866667pt;}
.x75{left:181.307292pt;}
.x62{left:201.989584pt;}
.x54{left:204.583333pt;}
.x44{left:210.493333pt;}
.x50{left:217.348959pt;}
.x51{left:221.255208pt;}
.x20{left:223.720000pt;}
.x3f{left:232.613333pt;}
.x40{left:235.773333pt;}
.x2e{left:239.400000pt;}
.x10{left:259.080000pt;}
.x52{left:268.651041pt;}
.x63{left:270.614584pt;}
.x53{left:274.322917pt;}
.x72{left:279.453333pt;}
.x25{left:292.226667pt;}
.x3d{left:304.066667pt;}
.x37{left:306.560000pt;}
.x13{left:324.706667pt;}
.x38{left:339.013333pt;}
.x39{left:340.093333pt;}
.x71{left:342.680000pt;}
.x7a{left:344.026041pt;}
.x7d{left:353.625000pt;}
.x27{left:360.546667pt;}
.x78{left:382.427084pt;}
.x2f{left:392.546667pt;}
.x65{left:394.140625pt;}
.x5a{left:396.739584pt;}
.x58{left:403.135417pt;}
.x7c{left:405.468751pt;}
.x55{left:410.015625pt;}
.x56{left:413.921875pt;}
.x17{left:424.706667pt;}
.x23{left:429.346667pt;}
.x6f{left:435.093333pt;}
.x6e{left:436.546667pt;}
.x4b{left:439.360000pt;}
.x30{left:441.186667pt;}
.x41{left:457.826667pt;}
.x57{left:461.317708pt;}
.x64{left:463.281251pt;}
.x34{left:465.026667pt;}
.x35{left:466.053333pt;}
.x59{left:466.989584pt;}
.x6d{left:468.626667pt;}
.x70{left:470.680000pt;}
.x82{left:478.427084pt;}
.x6b{left:485.786667pt;}
.x85{left:488.026041pt;}
.x4d{left:489.600000pt;}
.x29{left:497.386667pt;}
.x7b{left:500.989584pt;}
.x3e{left:506.653333pt;}
.x79{left:509.973959pt;}
.x31{left:514.186667pt;}
.x83{left:516.828125pt;}
.x6c{left:518.666667pt;}
.x48{left:523.800000pt;}
.x1a{left:530.026667pt;}
.x49{left:531.586667pt;}
.x86{left:538.770833pt;}
.x84{left:539.864584pt;}
.x81{left:540.833333pt;}
.x33{left:541.760000pt;}
.x4a{left:554.933333pt;}
.x47{left:558.706667pt;}
.x2a{left:572.426667pt;}
.x61{left:589.916667pt;}
.x67{left:592.515625pt;}
.x5f{left:595.802084pt;}
.x5b{left:602.682292pt;}
.x5c{left:606.588542pt;}
.x69{left:619.693333pt;}
.x3a{left:622.493333pt;}
.x36{left:641.693333pt;}
.x5d{left:653.984375pt;}
.x66{left:655.947917pt;}
.x60{left:659.656251pt;}
.xc{left:665.573333pt;}
.x5{left:673.093333pt;}
.x5e{left:689.489584pt;}
.x3b{left:709.213333pt;}
.x3c{left:711.040000pt;}
}




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