
    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_0ba0d36d63b5bd0756bad6fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919434;font-style:normal;font-weight: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_ed7a6d47748da5e348a00b16.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917480;font-style:normal;font-weight: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_13db4da3a702bb0e63386a51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919434;font-style:normal;font-weight: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_ce7fecd6d497db265bc401e0.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_fdc82d3745e305f86fc12375.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919922;font-style:normal;font-weight: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_5bdb80c42bdb06126b76e6d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922363;font-style:normal;font-weight: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_8937855f62e8540dd5c98049.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.125488;font-style:normal;font-weight: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_9d0beee004227499bb3d4b8b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_15ae819b7520eaa603087eb1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.831000;font-style:normal;font-weight: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_a2ebf926ff32ecaded7e89fa.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d6304ab1118b47e46659478a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;font-style:normal;font-weight: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_011badc0da6fd8b476687a68.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_979c6c385a4b95632b7ea2d8.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_84494307529f25d94ffb938d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.867676;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9807a25070bf8f43eb4b4f8d.woff2')format("woff");}.fff{font-family:fff;line-height:0.839355;font-style:normal;font-weight: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_af2c756d980cce6e3fb496dd.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m12{transform:matrix(-0.004356,-0.249581,0.249962,-0.004363,0,0);-ms-transform:matrix(-0.004356,-0.249581,0.249962,-0.004363,0,0);-webkit-transform:matrix(-0.004356,-0.249581,0.249962,-0.004363,0,0);}
.m10{transform:matrix(0.000000,-0.249883,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249883,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249883,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249884,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.000000,-0.249887,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249887,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249887,0.250000,0.000000,0,0);}
.m14{transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250014,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.235955,0.000000,-0.078644,0.237308,0,0);-ms-transform:matrix(0.235955,0.000000,-0.078644,0.237308,0,0);-webkit-transform:matrix(0.235955,0.000000,-0.078644,0.237308,0,0);}
.ma{transform:matrix(0.240432,0.000000,-0.080136,0.236808,0,0);-ms-transform:matrix(0.240432,0.000000,-0.080136,0.236808,0,0);-webkit-transform:matrix(0.240432,0.000000,-0.080136,0.236808,0,0);}
.m6{transform:matrix(0.240730,0.000000,-0.080235,0.236775,0,0);-ms-transform:matrix(0.240730,0.000000,-0.080235,0.236775,0,0);-webkit-transform:matrix(0.240730,0.000000,-0.080235,0.236775,0,0);}
.m2{transform:matrix(0.241079,0.000000,-0.080351,0.236735,0,0);-ms-transform:matrix(0.241079,0.000000,-0.080351,0.236735,0,0);-webkit-transform:matrix(0.241079,0.000000,-0.080351,0.236735,0,0);}
.m7{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250118,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250344,-0.004370,0.004363,0.249962,0,0);-ms-transform:matrix(0.250344,-0.004370,0.004363,0.249962,0,0);-webkit-transform:matrix(0.250344,-0.004370,0.004363,0.249962,0,0);}
.m9{transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253825,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254176,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254587,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255890,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.vf{vertical-align:-86.425102px;}
.ve{vertical-align:-84.267172px;}
.vd{vertical-align:-81.569760px;}
.vb{vertical-align:-70.560000px;}
.v9{vertical-align:-69.120000px;}
.v6{vertical-align:-52.504899px;}
.v3{vertical-align:-18.000000px;}
.v7{vertical-align:-15.041260px;}
.v4{vertical-align:-12.240000px;}
.vc{vertical-align:-8.092238px;}
.va{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:18.000000px;}
.v8{vertical-align:84.977776px;}
.ls16{letter-spacing:-0.708000px;}
.ls3d{letter-spacing:-0.463800px;}
.ls29{letter-spacing:-0.363000px;}
.lsd{letter-spacing:-0.270000px;}
.ls28{letter-spacing:-0.191230px;}
.ls26{letter-spacing:-0.187200px;}
.ls27{letter-spacing:-0.181139px;}
.ls3b{letter-spacing:-0.097800px;}
.ls3f{letter-spacing:-0.094800px;}
.lsc{letter-spacing:-0.072000px;}
.ls39{letter-spacing:-0.053280px;}
.ls1a{letter-spacing:-0.052560px;}
.ls22{letter-spacing:-0.038880px;}
.ls19{letter-spacing:-0.036000px;}
.ls21{letter-spacing:-0.010800px;}
.ls8{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012578px;}
.ls13{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.013281px;}
.ls1f{letter-spacing:0.031680px;}
.lsf{letter-spacing:0.061548px;}
.ls0{letter-spacing:0.076320px;}
.ls1e{letter-spacing:0.097800px;}
.ls12{letter-spacing:0.155400px;}
.ls32{letter-spacing:0.166393px;}
.lsb{letter-spacing:0.190800px;}
.ls1d{letter-spacing:0.197280px;}
.ls2b{letter-spacing:0.202306px;}
.ls2f{letter-spacing:0.203546px;}
.ls34{letter-spacing:0.209969px;}
.ls11{letter-spacing:0.211800px;}
.ls23{letter-spacing:0.223200px;}
.ls1b{letter-spacing:0.234000px;}
.ls3c{letter-spacing:0.256200px;}
.ls41{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.266400px;}
.ls2d{letter-spacing:0.269741px;}
.ls31{letter-spacing:0.271395px;}
.ls3e{letter-spacing:0.274569px;}
.ls18{letter-spacing:0.274800px;}
.lsa{letter-spacing:0.292200px;}
.ls5{letter-spacing:0.292320px;}
.ls2{letter-spacing:0.300240px;}
.ls3{letter-spacing:0.312480px;}
.ls24{letter-spacing:0.323400px;}
.ls4{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.431400px;}
.ls38{letter-spacing:0.532800px;}
.ls40{letter-spacing:0.708000px;}
.ls25{letter-spacing:0.720000px;}
.ls36{letter-spacing:0.743231px;}
.ls20{letter-spacing:0.751680px;}
.ls17{letter-spacing:0.930000px;}
.ls1{letter-spacing:0.974880px;}
.ls10{letter-spacing:1.143042px;}
.lse{letter-spacing:2.508831px;}
.ls37{letter-spacing:26.452800px;}
.ls1c{letter-spacing:132.292800px;}
.ls7{letter-spacing:181.346827px;}
.ls35{letter-spacing:249.130835px;}
.ls2e{letter-spacing:272.915224px;}
.ls33{letter-spacing:273.331555px;}
.ls2c{letter-spacing:282.535996px;}
.ls30{letter-spacing:284.268036px;}
.ls6{letter-spacing:614.734372px;}
.ls2a{letter-spacing:1345.416000px;}
.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;}
}
.wsf{word-spacing:-64.455842px;}
.ws1d{word-spacing:-44.212126px;}
.ws13{word-spacing:-42.420354px;}
.ws1e{word-spacing:-41.879220px;}
.wse{word-spacing:-37.369000px;}
.wsa{word-spacing:-35.386257px;}
.ws30{word-spacing:-22.634332px;}
.ws38{word-spacing:-22.528622px;}
.ws25{word-spacing:-22.496422px;}
.ws14{word-spacing:-19.329679px;}
.ws12{word-spacing:-19.317101px;}
.ws2e{word-spacing:-19.133338px;}
.ws23{word-spacing:-19.016759px;}
.ws36{word-spacing:-18.988821px;}
.ws2a{word-spacing:-18.861944px;}
.ws31{word-spacing:-18.778851px;}
.ws1f{word-spacing:-18.747018px;}
.wsc{word-spacing:-17.257002px;}
.ws6{word-spacing:-16.200000px;}
.wsd{word-spacing:-16.113960px;}
.ws46{word-spacing:-15.300000px;}
.ws3e{word-spacing:-15.226440px;}
.ws45{word-spacing:-15.199800px;}
.ws3f{word-spacing:-14.970240px;}
.ws40{word-spacing:-14.506440px;}
.ws42{word-spacing:-14.319377px;}
.ws3b{word-spacing:-13.578600px;}
.ws44{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.422000px;}
.ws19{word-spacing:-13.370400px;}
.ws10{word-spacing:-13.359000px;}
.ws17{word-spacing:-13.302600px;}
.ws1a{word-spacing:-13.245000px;}
.ws1b{word-spacing:-13.160160px;}
.ws1{word-spacing:-13.147200px;}
.ws1c{word-spacing:-13.136400px;}
.ws16{word-spacing:-13.111200px;}
.ws18{word-spacing:-13.108320px;}
.ws3c{word-spacing:-13.094640px;}
.ws3a{word-spacing:-13.093920px;}
.ws3d{word-spacing:-13.049400px;}
.ws8{word-spacing:-11.880000px;}
.wsb{word-spacing:-11.280212px;}
.ws5{word-spacing:-10.905120px;}
.ws2{word-spacing:-10.905000px;}
.ws3{word-spacing:-10.803600px;}
.ws4{word-spacing:-10.612800px;}
.ws0{word-spacing:-8.820000px;}
.ws43{word-spacing:-8.458800px;}
.ws7{word-spacing:-7.920000px;}
.ws37{word-spacing:-0.244272px;}
.ws2f{word-spacing:-0.134312px;}
.ws24{word-spacing:-0.133493px;}
.ws11{word-spacing:0.000000px;}
.ws26{word-spacing:11.733745px;}
.ws32{word-spacing:12.843369px;}
.ws33{word-spacing:24.803069px;}
.ws27{word-spacing:25.220809px;}
.ws20{word-spacing:28.547618px;}
.ws2b{word-spacing:28.722624px;}
.ws41{word-spacing:131.288872px;}
.ws9{word-spacing:159.672911px;}
.ws39{word-spacing:227.942899px;}
.ws34{word-spacing:261.128542px;}
.ws28{word-spacing:261.208453px;}
.ws21{word-spacing:270.784268px;}
.ws2c{word-spacing:272.444266px;}
.ws35{word-spacing:605.486975px;}
.ws29{word-spacing:605.488226px;}
.ws22{word-spacing:625.467063px;}
.ws2d{word-spacing:629.301383px;}
._e{margin-left:-676.998135px;}
._12{margin-left:-576.666439px;}
._1a{margin-left:-440.337199px;}
._18{margin-left:-275.574070px;}
._1b{margin-left:-270.414033px;}
._1d{margin-left:-236.058445px;}
._22{margin-left:-223.275456px;}
._16{margin-left:-195.101291px;}
._33{margin-left:-187.805252px;}
._31{margin-left:-186.660958px;}
._32{margin-left:-183.513976px;}
._19{margin-left:-179.320161px;}
._10{margin-left:-173.489170px;}
._11{margin-left:-166.529791px;}
._23{margin-left:-161.912376px;}
._26{margin-left:-144.163784px;}
._2e{margin-left:-127.649864px;}
._25{margin-left:-118.267892px;}
._2c{margin-left:-114.288863px;}
._14{margin-left:-112.460344px;}
._1c{margin-left:-104.609633px;}
._17{margin-left:-101.264395px;}
._1e{margin-left:-92.226884px;}
._15{margin-left:-74.340071px;}
._24{margin-left:-56.133001px;}
._13{margin-left:-54.337898px;}
._2b{margin-left:-12.459727px;}
._38{margin-left:-3.092285px;}
._1{margin-left:-1.261440px;}
._0{width:1.314720px;}
._2{width:2.808000px;}
._3{width:3.918000px;}
._5{width:5.886000px;}
._4{width:7.398000px;}
._21{width:8.545680px;}
._8{width:9.860400px;}
._7{width:11.115360px;}
._b{width:14.999760px;}
._a{width:16.730640px;}
._6{width:18.360000px;}
._9{width:19.959840px;}
._36{width:21.035520px;}
._c{width:22.111200px;}
._d{width:23.306400px;}
._35{width:25.477200px;}
._29{width:27.489600px;}
._2a{width:28.505520px;}
._39{width:30.119040px;}
._3a{width:31.194720px;}
._2d{width:55.785600px;}
._2f{width:70.185600px;}
._3b{width:75.357360px;}
._27{width:83.325600px;}
._30{width:146.398080px;}
._37{width:148.042624px;}
._20{width:154.732800px;}
._28{width:199.252800px;}
._34{width:240.007397px;}
._f{width:370.544113px;}
._1f{width:1192.432800px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(89,89,89);}
.fs3{font-size:36.000000px;}
.fs1{font-size:38.880000px;}
.fs20{font-size:40.340750px;}
.fs21{font-size:44.579708px;}
.fs22{font-size:44.647836px;}
.fsf{font-size:44.689761px;}
.fsd{font-size:45.109049px;}
.fs9{font-size:45.120848px;}
.fs5{font-size:48.240000px;}
.fs25{font-size:51.505765px;}
.fs24{font-size:51.508551px;}
.fs14{font-size:53.948254px;}
.fs6{font-size:54.000000px;}
.fs1d{font-size:54.061441px;}
.fs18{font-size:54.278974px;}
.fs26{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs15{font-size:63.148099px;}
.fs1c{font-size:63.263265px;}
.fs19{font-size:63.535778px;}
.fsa{font-size:64.455842px;}
.fs7{font-size:66.240000px;}
.fs13{font-size:67.435317px;}
.fs1b{font-size:67.549825px;}
.fs17{font-size:67.848718px;}
.fs1f{font-size:67.964626px;}
.fsb{font-size:68.067395px;}
.fs23{font-size:70.891187px;}
.fs4{font-size:72.000000px;}
.fs11{font-size:76.612677px;}
.fsc{font-size:77.268405px;}
.fs10{font-size:80.557234px;}
.fs12{font-size:80.880429px;}
.fs16{font-size:80.922381px;}
.fs1e{font-size:81.038209px;}
.fs1a{font-size:81.418462px;}
.fse{font-size:81.584273px;}
.fs2{font-size:84.240000px;}
.fs8{font-size:116.168231px;}
.y0{bottom:0.000000px;}
.y1ad{bottom:1.840052px;}
.y1ed{bottom:2.441570px;}
.y34{bottom:3.424436px;}
.y4a{bottom:3.635295px;}
.y89{bottom:4.588720px;}
.y1ab{bottom:6.932932px;}
.y1eb{bottom:7.255103px;}
.y1f0{bottom:7.260457px;}
.yef{bottom:7.548056px;}
.y1d6{bottom:7.920000px;}
.y154{bottom:8.225086px;}
.y199{bottom:8.226340px;}
.y180{bottom:8.275734px;}
.y1dc{bottom:8.856044px;}
.y8a{bottom:9.077580px;}
.y19c{bottom:10.138358px;}
.y39{bottom:10.138782px;}
.y37{bottom:12.086056px;}
.yd0{bottom:12.240000px;}
.yda{bottom:12.405000px;}
.ye1{bottom:12.411000px;}
.yce{bottom:12.420000px;}
.yd8{bottom:12.450000px;}
.yee{bottom:15.594244px;}
.y32{bottom:16.550661px;}
.y4c{bottom:17.743374px;}
.y35{bottom:20.076506px;}
.y1d4{bottom:21.240000px;}
.y33{bottom:23.836821px;}
.y153{bottom:24.948820px;}
.y195{bottom:25.087269px;}
.y17f{bottom:25.101764px;}
.y36{bottom:25.212867px;}
.y152{bottom:25.623173px;}
.y196{bottom:25.761689px;}
.y17e{bottom:25.780251px;}
.y1a9{bottom:26.688664px;}
.y4b{bottom:29.082654px;}
.y86{bottom:29.382550px;}
.ycc{bottom:29.880000px;}
.y1ef{bottom:30.605289px;}
.y1e9{bottom:32.199805px;}
.y38{bottom:33.337258px;}
.y19e{bottom:41.902322px;}
.y168{bottom:46.015613px;}
.y194{bottom:46.021241px;}
.ycd{bottom:47.520000px;}
.y1de{bottom:50.725750px;}
.y151{bottom:55.186816px;}
.y17d{bottom:55.525129px;}
.y165{bottom:56.940134px;}
.y191{bottom:56.946831px;}
.y14e{bottom:57.075005px;}
.y17a{bottom:57.424893px;}
.y19f{bottom:59.420680px;}
.y14d{bottom:62.469830px;}
.y179{bottom:62.852791px;}
.y15f{bottom:70.696939px;}
.y18b{bottom:70.704983px;}
.y1df{bottom:74.873730px;}
.y1a0{bottom:76.940450px;}
.y148{bottom:79.463530px;}
.y174{bottom:79.950668px;}
.y14f{bottom:88.769604px;}
.y17b{bottom:89.313791px;}
.y83{bottom:91.836000px;}
.y164{bottom:93.759817px;}
.y190{bottom:93.770119px;}
.y15d{bottom:94.164429px;}
.y189{bottom:94.174770px;}
.y1a1{bottom:94.458808px;}
.y1e0{bottom:99.824858px;}
.y1d2{bottom:101.736000px;}
.y146{bottom:106.194890px;}
.yca{bottom:106.596000px;}
.y172{bottom:106.845900px;}
.y82{bottom:109.296000px;}
.y1a2{bottom:111.977166px;}
.y13e{bottom:114.156000px;}
.yb4{bottom:115.416000px;}
.y15e{bottom:115.910071px;}
.y18a{bottom:115.921417px;}
.y1d1{bottom:119.556000px;}
.y150{bottom:120.225931px;}
.y17c{bottom:120.962956px;}
.ye0{bottom:122.985000px;}
.y10c{bottom:123.516000px;}
.y1e1{bottom:123.973909px;}
.y42{bottom:124.956000px;}
.y81{bottom:126.936000px;}
.y1a3{bottom:128.965735px;}
.y166{bottom:130.476100px;}
.y192{bottom:130.488871px;}
.y13d{bottom:132.156000px;}
.y147{bottom:132.499159px;}
.y169{bottom:132.768900px;}
.y198{bottom:132.781896px;}
.yb3{bottom:132.876000px;}
.y173{bottom:133.311423px;}
.y1d0{bottom:136.836000px;}
.y155{bottom:139.512432px;}
.y15a{bottom:140.321656px;}
.y186{bottom:140.335391px;}
.y181{bottom:140.367690px;}
.y10b{bottom:140.796000px;}
.y41{bottom:142.596000px;}
.y80{bottom:144.576000px;}
.y1a4{bottom:146.498220px;}
.y1e2{bottom:148.143306px;}
.y13c{bottom:149.076000px;}
.y167{bottom:151.381048px;}
.y193{bottom:151.395866px;}
.y14c{bottom:151.650789px;}
.ydf{bottom:151.785000px;}
.y178{bottom:152.580459px;}
.y1cf{bottom:153.750000px;}
.y10a{bottom:158.070000px;}
.y40{bottom:160.050000px;}
.y143{bottom:161.114212px;}
.y7f{bottom:162.030000px;}
.y16f{bottom:162.079279px;}
.y19d{bottom:162.995799px;}
.yb2{bottom:164.010000px;}
.y1a5{bottom:164.016578px;}
.y13b{bottom:166.530000px;}
.y187{bottom:166.907507px;}
.y15b{bottom:166.913649px;}
.y1aa{bottom:168.463766px;}
.y1e3{bottom:172.291286px;}
.y109{bottom:175.350000px;}
.y3f{bottom:177.690000px;}
.yde{bottom:179.505000px;}
.y7e{bottom:179.670000px;}
.y1ce{bottom:180.570000px;}
.y1a6{bottom:181.534936px;}
.y13a{bottom:184.170000px;}
.y163{bottom:187.144244px;}
.y18f{bottom:187.162563px;}
.y14a{bottom:188.492951px;}
.y176{bottom:189.648475px;}
.y144{bottom:190.381140px;}
.yb1{bottom:190.650000px;}
.y15c{bottom:191.190363px;}
.y188{bottom:191.209078px;}
.y170{bottom:191.548239px;}
.y108{bottom:192.090000px;}
.y3e{bottom:195.330000px;}
.y1e4{bottom:197.242414px;}
.y7d{bottom:197.310000px;}
.y1a7{bottom:199.053293px;}
.y139{bottom:201.810000px;}
.y1cd{bottom:204.150000px;}
.ydd{bottom:207.225000px;}
.y107{bottom:209.730000px;}
.y3d{bottom:212.970000px;}
.y7c{bottom:214.770000px;}
.y1a8{bottom:216.479034px;}
.yb0{bottom:217.290000px;}
.y145{bottom:217.894749px;}
.y158{bottom:218.029620px;}
.y184{bottom:218.050961px;}
.y171{bottom:219.230516px;}
.y138{bottom:219.450000px;}
.y1e5{bottom:221.422519px;}
.y1cc{bottom:221.790000px;}
.y106{bottom:227.370000px;}
.y3c{bottom:230.430000px;}
.y14b{bottom:230.595067px;}
.y177{bottom:231.986075px;}
.y7b{bottom:232.410000px;}
.ydc{bottom:234.945000px;}
.y137{bottom:236.910000px;}
.y16a{bottom:237.878081px;}
.y19a{bottom:237.878885px;}
.y1cb{bottom:239.250000px;}
.y161{bottom:239.496529px;}
.y18d{bottom:239.497491px;}
.yaf{bottom:243.750000px;}
.y159{bottom:244.621613px;}
.y185{bottom:244.623077px;}
.y105{bottom:244.830000px;}
.y141{bottom:244.891354px;}
.y1e6{bottom:245.570499px;}
.y16d{bottom:246.392620px;}
.y3b{bottom:248.070000px;}
.y7a{bottom:250.050000px;}
.y156{bottom:251.365145px;}
.y182{bottom:252.906097px;}
.y136{bottom:254.550000px;}
.y1ca{bottom:256.890000px;}
.y104{bottom:262.470000px;}
.y31{bottom:262.515000px;}
.ydb{bottom:262.665000px;}
.y79{bottom:267.510000px;}
.yae{bottom:270.390000px;}
.y1e7{bottom:270.521627px;}
.y157{bottom:271.325999px;}
.y183{bottom:271.352557px;}
.y142{bottom:271.460869px;}
.y135{bottom:272.190000px;}
.y16e{bottom:273.125015px;}
.y1c9{bottom:274.530000px;}
.y162{bottom:276.181342px;}
.y18e{bottom:276.208375px;}
.y149{bottom:276.855695px;}
.y175{bottom:278.552912px;}
.y103{bottom:280.110000px;}
.y18c{bottom:282.143264px;}
.y160{bottom:282.520261px;}
.y1ac{bottom:284.117829px;}
.y78{bottom:285.150000px;}
.y3a{bottom:286.410000px;}
.y134{bottom:289.650000px;}
.yd9{bottom:290.385000px;}
.y1c8{bottom:291.990000px;}
.y1e8{bottom:294.691024px;}
.y197{bottom:295.631647px;}
.y140{bottom:295.636431px;}
.yad{bottom:297.030000px;}
.y16c{bottom:297.414856px;}
.y102{bottom:297.570000px;}
.y77{bottom:302.790000px;}
.y133{bottom:307.290000px;}
.y1c7{bottom:309.630000px;}
.y101{bottom:315.210000px;}
.y19b{bottom:315.728951px;}
.y30{bottom:318.090000px;}
.yd7{bottom:318.105000px;}
.y76{bottom:320.250000px;}
.yac{bottom:323.490000px;}
.y132{bottom:324.930000px;}
.y1c6{bottom:327.270000px;}
.y100{bottom:332.895000px;}
.y2f{bottom:335.775000px;}
.y75{bottom:337.935000px;}
.y131{bottom:342.435000px;}
.y1c5{bottom:344.775000px;}
.yd6{bottom:345.855000px;}
.yab{bottom:350.175000px;}
.yff{bottom:350.355000px;}
.y2e{bottom:353.415000px;}
.y74{bottom:355.575000px;}
.y130{bottom:360.075000px;}
.y1c4{bottom:362.415000px;}
.yfe{bottom:367.995000px;}
.y2d{bottom:370.875000px;}
.y73{bottom:373.035000px;}
.yd5{bottom:373.575000px;}
.yaa{bottom:376.815000px;}
.y12f{bottom:377.715000px;}
.y1c3{bottom:380.055000px;}
.yfd{bottom:385.635000px;}
.y2c{bottom:388.515000px;}
.y72{bottom:390.675000px;}
.y12e{bottom:395.355000px;}
.y1c2{bottom:397.695000px;}
.yd4{bottom:401.295000px;}
.yfc{bottom:403.095000px;}
.ya9{bottom:403.275000px;}
.y2b{bottom:406.155000px;}
.y71{bottom:408.315000px;}
.y12d{bottom:412.815000px;}
.y1c1{bottom:415.155000px;}
.yfb{bottom:420.735000px;}
.y2a{bottom:423.615000px;}
.y70{bottom:425.775000px;}
.yd3{bottom:429.015000px;}
.ya8{bottom:429.915000px;}
.y12c{bottom:430.455000px;}
.y1c0{bottom:432.795000px;}
.yfa{bottom:438.375000px;}
.y29{bottom:441.255000px;}
.y16b{bottom:442.065000px;}
.y6f{bottom:443.415000px;}
.y210{bottom:443.775000px;}
.y12b{bottom:448.095000px;}
.y1bf{bottom:450.615000px;}
.yf9{bottom:455.835000px;}
.ya7{bottom:456.555000px;}
.yd2{bottom:456.735000px;}
.y28{bottom:458.895000px;}
.y6e{bottom:461.055000px;}
.y12a{bottom:465.375000px;}
.y1be{bottom:469.695000px;}
.yf8{bottom:473.475000px;}
.y27{bottom:476.535000px;}
.y6d{bottom:478.515000px;}
.y129{bottom:482.475000px;}
.ya6{bottom:483.195000px;}
.yd1{bottom:484.455000px;}
.y20f{bottom:486.975000px;}
.y1bd{bottom:487.335000px;}
.y26{bottom:493.995000px;}
.y6c{bottom:496.155000px;}
.y128{bottom:499.755000px;}
.yf7{bottom:500.475000px;}
.ya5{bottom:500.655000px;}
.y20e{bottom:504.615000px;}
.y1bc{bottom:504.795000px;}
.y25{bottom:511.635000px;}
.ycf{bottom:512.175000px;}
.y6b{bottom:513.795000px;}
.y127{bottom:517.035000px;}
.ya4{bottom:518.295000px;}
.y1bb{bottom:522.435000px;}
.y1dd{bottom:524.340000px;}
.y1ea{bottom:528.349314px;}
.yf6{bottom:528.735000px;}
.y24{bottom:529.275000px;}
.y20d{bottom:531.075000px;}
.y6a{bottom:531.255000px;}
.y126{bottom:534.315000px;}
.ya3{bottom:536.295000px;}
.y1ba{bottom:540.075000px;}
.ycb{bottom:540.975000px;}
.y23{bottom:546.735000px;}
.y20c{bottom:548.715000px;}
.y69{bottom:548.895000px;}
.y125{bottom:551.595000px;}
.ya2{bottom:553.035000px;}
.yf5{bottom:556.815000px;}
.y1b9{bottom:557.535000px;}
.y22{bottom:564.375000px;}
.y68{bottom:566.535000px;}
.y124{bottom:568.875000px;}
.ya1{bottom:570.675000px;}
.yf4{bottom:574.275000px;}
.y1b8{bottom:575.175000px;}
.y20b{bottom:575.355000px;}
.y21{bottom:582.015000px;}
.y67{bottom:583.995000px;}
.y123{bottom:585.975000px;}
.ya0{bottom:588.315000px;}
.yf3{bottom:591.915000px;}
.y1b7{bottom:592.815000px;}
.y20{bottom:599.505000px;}
.y66{bottom:601.665000px;}
.y20a{bottom:601.845000px;}
.y122{bottom:603.285000px;}
.yf2{bottom:609.585000px;}
.y1b6{bottom:610.305000px;}
.y9f{bottom:615.165000px;}
.y1f{bottom:617.145000px;}
.y65{bottom:619.305000px;}
.y209{bottom:620.205000px;}
.y121{bottom:620.565000px;}
.yc9{bottom:624.165000px;}
.yf1{bottom:627.225000px;}
.y1b5{bottom:627.945000px;}
.y1e{bottom:634.785000px;}
.y64{bottom:636.765000px;}
.y120{bottom:637.845000px;}
.y9e{bottom:643.245000px;}
.y1b4{bottom:645.585000px;}
.y1ee{bottom:652.351065px;}
.y1d{bottom:652.605000px;}
.yf0{bottom:653.685000px;}
.y63{bottom:654.405000px;}
.y208{bottom:654.585000px;}
.y11f{bottom:655.125000px;}
.yc8{bottom:659.085000px;}
.y9d{bottom:660.885000px;}
.y1b3{bottom:663.225000px;}
.yed{bottom:667.890000px;}
.y207{bottom:671.145000px;}
.y62{bottom:672.045000px;}
.y11e{bottom:672.405000px;}
.yec{bottom:675.465000px;}
.y1c{bottom:676.545000px;}
.y9c{bottom:678.345000px;}
.y1ec{bottom:679.711637px;}
.y1b2{bottom:680.685000px;}
.y61{bottom:689.505000px;}
.yc7{bottom:694.185000px;}
.y9b{bottom:695.985000px;}
.y206{bottom:697.785000px;}
.yeb{bottom:698.325000px;}
.y11d{bottom:706.785000px;}
.y60{bottom:707.145000px;}
.y1db{bottom:707.907482px;}
.y1b{bottom:708.405000px;}
.yc6{bottom:711.825000px;}
.y9a{bottom:713.625000px;}
.y205{bottom:715.425000px;}
.yea{bottom:715.965000px;}
.y5f{bottom:724.785000px;}
.yc5{bottom:729.285000px;}
.y99{bottom:731.085000px;}
.y1a{bottom:731.445000px;}
.y204{bottom:732.885000px;}
.ye9{bottom:733.425000px;}
.y11c{bottom:741.705000px;}
.y5e{bottom:742.245000px;}
.yc4{bottom:746.925000px;}
.y203{bottom:750.525000px;}
.ye8{bottom:751.065000px;}
.y19{bottom:755.205000px;}
.y98{bottom:757.725000px;}
.y11b{bottom:758.985000px;}
.y5d{bottom:759.885000px;}
.yc3{bottom:764.565000px;}
.y202{bottom:768.165000px;}
.ye7{bottom:768.705000px;}
.y5c{bottom:777.525000px;}
.y18{bottom:781.665000px;}
.yc2{bottom:782.205000px;}
.y97{bottom:784.365000px;}
.y11a{bottom:784.725000px;}
.y201{bottom:785.625000px;}
.ye6{bottom:786.165000px;}
.y5b{bottom:794.985000px;}
.y17{bottom:797.505000px;}
.yc1{bottom:799.665000px;}
.ye5{bottom:803.805000px;}
.y96{bottom:811.005000px;}
.y119{bottom:811.365000px;}
.y200{bottom:812.265000px;}
.y5a{bottom:812.625000px;}
.y16{bottom:813.345000px;}
.yc0{bottom:817.305000px;}
.y1b1{bottom:821.445000px;}
.y13f{bottom:825.390000px;}
.y15{bottom:829.005000px;}
.y1ff{bottom:829.905000px;}
.y59{bottom:830.265000px;}
.ye4{bottom:830.445000px;}
.ybf{bottom:834.945000px;}
.y95{bottom:837.465000px;}
.y118{bottom:838.185000px;}
.y1b0{bottom:839.085000px;}
.y14{bottom:844.845000px;}
.y1fe{bottom:847.545000px;}
.y58{bottom:847.725000px;}
.y1af{bottom:856.545000px;}
.ye3{bottom:856.905000px;}
.y13{bottom:860.685000px;}
.ybe{bottom:861.405000px;}
.y94{bottom:864.150000px;}
.y57{bottom:865.410000px;}
.y117{bottom:866.670000px;}
.y1da{bottom:873.150000px;}
.y1fd{bottom:874.050000px;}
.y12{bottom:876.570000px;}
.ybd{bottom:879.090000px;}
.y56{bottom:883.050000px;}
.ye2{bottom:883.590000px;}
.y93{bottom:890.790000px;}
.y1fc{bottom:891.690000px;}
.y11{bottom:892.410000px;}
.y116{bottom:894.930000px;}
.y55{bottom:900.510000px;}
.y1d9{bottom:901.950000px;}
.y10{bottom:908.250000px;}
.y1fb{bottom:909.330000px;}
.ybc{bottom:910.230000px;}
.y92{bottom:917.250000px;}
.y54{bottom:918.150000px;}
.y115{bottom:923.370000px;}
.yf{bottom:924.090000px;}
.y1d8{bottom:929.670000px;}
.y53{bottom:935.790000px;}
.ybb{bottom:936.690000px;}
.ye{bottom:939.930000px;}
.y91{bottom:943.890000px;}
.y114{bottom:951.630000px;}
.y52{bottom:953.250000px;}
.y1fa{bottom:953.430000px;}
.y1d7{bottom:957.390000px;}
.y90{bottom:961.530000px;}
.yba{bottom:963.330000px;}
.yd{bottom:969.450000px;}
.y51{bottom:970.890000px;}
.y1f9{bottom:971.070000px;}
.y8f{bottom:978.990000px;}
.y113{bottom:980.070000px;}
.y1d5{bottom:985.110000px;}
.yc{bottom:986.910000px;}
.y50{bottom:988.530000px;}
.yb9{bottom:989.970000px;}
.y8e{bottom:996.630000px;}
.y1f8{bottom:997.530000px;}
.yb{bottom:1002.750000px;}
.y4f{bottom:1005.990000px;}
.y112{bottom:1008.330000px;}
.y1d3{bottom:1013.910000px;}
.y8d{bottom:1014.270000px;}
.y1f7{bottom:1015.170000px;}
.yb8{bottom:1016.610000px;}
.ya{bottom:1021.470000px;}
.y4e{bottom:1023.630000px;}
.y8c{bottom:1031.730000px;}
.y9{bottom:1034.250000px;}
.y111{bottom:1036.770000px;}
.y49{bottom:1037.790000px;}
.y1f6{bottom:1041.810000px;}
.yb7{bottom:1043.070000px;}
.y8b{bottom:1049.370000px;}
.y8{bottom:1053.150000px;}
.y4d{bottom:1055.850000px;}
.y1f5{bottom:1059.450000px;}
.y88{bottom:1063.515000px;}
.y110{bottom:1065.030000px;}
.y7{bottom:1065.930000px;}
.yb6{bottom:1069.710000px;}
.y1ae{bottom:1070.070000px;}
.y87{bottom:1072.590000px;}
.y1f4{bottom:1076.910000px;}
.y6{bottom:1082.490000px;}
.y48{bottom:1087.710000px;}
.y85{bottom:1090.515000px;}
.y10f{bottom:1093.470000px;}
.y1f3{bottom:1094.550000px;}
.yb5{bottom:1096.350000px;}
.y5{bottom:1101.750000px;}
.y47{bottom:1105.350000px;}
.y84{bottom:1108.590000px;}
.y1f2{bottom:1112.190000px;}
.y4{bottom:1115.070000px;}
.y10e{bottom:1121.730000px;}
.y46{bottom:1122.810000px;}
.y1f1{bottom:1139.040000px;}
.y3{bottom:1139.760000px;}
.y45{bottom:1140.480000px;}
.y10d{bottom:1141.200000px;}
.y44{bottom:1157.940000px;}
.y2{bottom:1172.160000px;}
.y43{bottom:1173.420000px;}
.y1{bottom:1189.080000px;}
.h40{height:21.932009px;}
.h42{height:23.187335px;}
.h4a{height:23.344832px;}
.h5{height:25.347656px;}
.h8{height:25.781484px;}
.h21{height:26.445000px;}
.h22{height:26.625000px;}
.h24{height:26.631000px;}
.h23{height:26.661000px;}
.h1d{height:26.999640px;}
.h3f{height:27.556987px;}
.h46{height:30.599935px;}
.h41{height:30.996828px;}
.h43{height:31.044199px;}
.h3c{height:33.323807px;}
.hb{height:33.965859px;}
.h7{height:38.021484px;}
.h4f{height:40.049297px;}
.h25{height:41.785313px;}
.ha{height:41.902031px;}
.h9{height:42.077109px;}
.h2{height:42.381563px;}
.h4e{height:42.495469px;}
.h26{height:43.838735px;}
.h1e{height:43.860556px;}
.h44{height:44.085000px;}
.h11{height:44.261613px;}
.h4b{height:45.110140px;}
.h45{height:45.248906px;}
.h2a{height:46.316250px;}
.h17{height:46.425681px;}
.hc{height:46.445625px;}
.hd{height:46.639687px;}
.h4d{height:46.689664px;}
.h3d{height:47.256654px;}
.h14{height:49.050896px;}
.h6{height:51.965859px;}
.he{height:52.574067px;}
.h16{height:52.998047px;}
.h4c{height:53.718903px;}
.h49{height:53.721810px;}
.h2f{height:56.266343px;}
.h3a{height:56.384394px;}
.h34{height:56.611274px;}
.h2b{height:58.621992px;}
.h10{height:58.633415px;}
.h3{height:58.651172px;}
.h4{height:59.066719px;}
.h2c{height:60.226875px;}
.h20{height:61.770000px;}
.h13{height:61.918729px;}
.h15{height:63.259884px;}
.h30{height:65.861515px;}
.h39{height:65.981630px;}
.h35{height:66.265853px;}
.h29{height:69.692098px;}
.h1a{height:70.288593px;}
.h2e{height:70.332928px;}
.h38{height:70.452357px;}
.h33{height:70.764093px;}
.h1f{height:73.280336px;}
.h28{height:73.574335px;}
.h47{height:73.937293px;}
.h1c{height:74.214600px;}
.h27{height:75.153744px;}
.h18{height:75.796985px;}
.h19{height:75.834714px;}
.h12{height:78.269671px;}
.h31{height:84.399514px;}
.h3b{height:84.520319px;}
.h36{height:84.916911px;}
.hf{height:105.674519px;}
.h1b{height:129.249841px;}
.h3e{height:242.176384px;}
.h2d{height:315.597284px;}
.h48{height:319.642152px;}
.h32{height:337.886616px;}
.h37{height:356.093327px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w15{width:21.657570px;}
.w5{width:22.500376px;}
.w20{width:23.343569px;}
.w14{width:40.766754px;}
.wb{width:55.065000px;}
.w8{width:55.260000px;}
.w7{width:62.841000px;}
.w9{width:63.216000px;}
.wa{width:63.525000px;}
.w17{width:63.720000px;}
.w1f{width:65.961644px;}
.we{width:68.925302px;}
.w4{width:73.422992px;}
.w1c{width:74.550000px;}
.w18{width:74.556000px;}
.w6{width:82.971000px;}
.w12{width:84.532155px;}
.w16{width:84.621000px;}
.w1b{width:84.945000px;}
.w21{width:94.123840px;}
.w1a{width:95.781000px;}
.wc{width:125.481000px;}
.w19{width:127.425000px;}
.w3{width:131.998081px;}
.wd{width:132.870000px;}
.w1d{width:160.888589px;}
.wf{width:281.479052px;}
.w11{width:281.916027px;}
.w10{width:283.207110px;}
.w2{width:294.002682px;}
.w13{width:341.578075px;}
.w1e{width:467.396074px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:1.304837px;}
.x59{left:2.502150px;}
.x1e{left:4.223855px;}
.x2c{left:8.091000px;}
.x1b{left:9.977155px;}
.x16{left:11.414336px;}
.x61{left:12.420000px;}
.x1a{left:13.472796px;}
.x5e{left:14.732045px;}
.x2e{left:16.725000px;}
.x3a{left:17.805000px;}
.x38{left:19.620000px;}
.x30{left:20.880000px;}
.x3b{left:21.945000px;}
.x2d{left:23.385000px;}
.x34{left:25.005000px;}
.x46{left:26.608558px;}
.x5c{left:27.754043px;}
.x5b{left:28.977396px;}
.x22{left:30.056862px;}
.x44{left:32.410627px;}
.x6d{left:33.805343px;}
.x68{left:36.193240px;}
.x15{left:40.004720px;}
.x45{left:41.720923px;}
.x14{left:44.380213px;}
.x39{left:48.630000px;}
.x1f{left:52.398096px;}
.x4b{left:53.594925px;}
.x53{left:59.666857px;}
.x3e{left:60.858572px;}
.x10{left:72.643331px;}
.x52{left:78.314437px;}
.x69{left:80.444294px;}
.x1c{left:87.646559px;}
.x13{left:94.559596px;}
.x18{left:96.931411px;}
.x2b{left:98.325000px;}
.x4d{left:102.332304px;}
.x4c{left:103.681622px;}
.x49{left:104.896009px;}
.xa{left:106.416000px;}
.x19{left:108.402249px;}
.x1{left:111.816000px;}
.x2{left:117.036000px;}
.x21{left:118.740000px;}
.x1d{left:121.619491px;}
.x12{left:125.667082px;}
.xf{left:130.479826px;}
.x4e{left:133.638738px;}
.x54{left:137.304387px;}
.x3c{left:148.356000px;}
.x50{left:151.067434px;}
.x24{left:152.715000px;}
.x43{left:154.665000px;}
.x55{left:163.065000px;}
.x5f{left:167.070000px;}
.x7{left:170.130000px;}
.xb{left:172.632000px;}
.x26{left:175.170000px;}
.x3{left:178.230000px;}
.x11{left:180.481622px;}
.x42{left:185.250000px;}
.x3f{left:188.490000px;}
.x23{left:192.090000px;}
.x47{left:196.134667px;}
.x56{left:197.338778px;}
.x9{left:212.610000px;}
.x6b{left:216.880522px;}
.x48{left:220.591062px;}
.x4a{left:221.940380px;}
.x51{left:223.019835px;}
.xc{left:226.758579px;}
.x57{left:228.054525px;}
.x6{left:233.490000px;}
.xe{left:236.995919px;}
.x20{left:238.350000px;}
.x2f{left:244.155000px;}
.x41{left:246.855000px;}
.x2a{left:261.975000px;}
.x60{left:265.935000px;}
.xd{left:270.185197px;}
.x5a{left:275.775614px;}
.x5d{left:280.041310px;}
.x29{left:291.495000px;}
.x31{left:299.415000px;}
.x67{left:301.367109px;}
.x62{left:329.655000px;}
.x27{left:348.735000px;}
.x4{left:351.795000px;}
.x32{left:354.675000px;}
.x3d{left:358.095000px;}
.x28{left:363.675000px;}
.x17{left:400.395000px;}
.x63{left:404.220000px;}
.x8{left:409.245000px;}
.x33{left:417.900000px;}
.x6a{left:437.338044px;}
.x4f{left:440.190000px;}
.x40{left:446.505000px;}
.x58{left:448.140000px;}
.x35{left:481.440000px;}
.x6c{left:527.414238px;}
.x64{left:531.660000px;}
.x36{left:536.520000px;}
.x65{left:627.450000px;}
.x37{left:662.010000px;}
.x66{left:712.410000px;}
.x5{left:723.060000px;}
@media print{
.vf{vertical-align:-76.822313pt;}
.ve{vertical-align:-74.904153pt;}
.vd{vertical-align:-72.506453pt;}
.vb{vertical-align:-62.720000pt;}
.v9{vertical-align:-61.440000pt;}
.v6{vertical-align:-46.671021pt;}
.v3{vertical-align:-16.000000pt;}
.v7{vertical-align:-13.370008pt;}
.v4{vertical-align:-10.880000pt;}
.vc{vertical-align:-7.193100pt;}
.va{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:16.000000pt;}
.v8{vertical-align:75.535801pt;}
.ls16{letter-spacing:-0.629333pt;}
.ls3d{letter-spacing:-0.412267pt;}
.ls29{letter-spacing:-0.322667pt;}
.lsd{letter-spacing:-0.240000pt;}
.ls28{letter-spacing:-0.169982pt;}
.ls26{letter-spacing:-0.166400pt;}
.ls27{letter-spacing:-0.161013pt;}
.ls3b{letter-spacing:-0.086933pt;}
.ls3f{letter-spacing:-0.084267pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls39{letter-spacing:-0.047360pt;}
.ls1a{letter-spacing:-0.046720pt;}
.ls22{letter-spacing:-0.034560pt;}
.ls19{letter-spacing:-0.032000pt;}
.ls21{letter-spacing:-0.009600pt;}
.ls8{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011181pt;}
.ls13{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.011805pt;}
.ls1f{letter-spacing:0.028160pt;}
.lsf{letter-spacing:0.054710pt;}
.ls0{letter-spacing:0.067840pt;}
.ls1e{letter-spacing:0.086933pt;}
.ls12{letter-spacing:0.138133pt;}
.ls32{letter-spacing:0.147905pt;}
.lsb{letter-spacing:0.169600pt;}
.ls1d{letter-spacing:0.175360pt;}
.ls2b{letter-spacing:0.179828pt;}
.ls2f{letter-spacing:0.180930pt;}
.ls34{letter-spacing:0.186639pt;}
.ls11{letter-spacing:0.188267pt;}
.ls23{letter-spacing:0.198400pt;}
.ls1b{letter-spacing:0.208000pt;}
.ls3c{letter-spacing:0.227733pt;}
.ls41{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.236800pt;}
.ls2d{letter-spacing:0.239770pt;}
.ls31{letter-spacing:0.241240pt;}
.ls3e{letter-spacing:0.244062pt;}
.ls18{letter-spacing:0.244267pt;}
.lsa{letter-spacing:0.259733pt;}
.ls5{letter-spacing:0.259840pt;}
.ls2{letter-spacing:0.266880pt;}
.ls3{letter-spacing:0.277760pt;}
.ls24{letter-spacing:0.287467pt;}
.ls4{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.383467pt;}
.ls38{letter-spacing:0.473600pt;}
.ls40{letter-spacing:0.629333pt;}
.ls25{letter-spacing:0.640000pt;}
.ls36{letter-spacing:0.660649pt;}
.ls20{letter-spacing:0.668160pt;}
.ls17{letter-spacing:0.826667pt;}
.ls1{letter-spacing:0.866560pt;}
.ls10{letter-spacing:1.016037pt;}
.lse{letter-spacing:2.230072pt;}
.ls37{letter-spacing:23.513600pt;}
.ls1c{letter-spacing:117.593600pt;}
.ls7{letter-spacing:161.197180pt;}
.ls35{letter-spacing:221.449631pt;}
.ls2e{letter-spacing:242.591311pt;}
.ls33{letter-spacing:242.961382pt;}
.ls2c{letter-spacing:251.143108pt;}
.ls30{letter-spacing:252.682698pt;}
.ls6{letter-spacing:546.430553pt;}
.ls2a{letter-spacing:1195.925333pt;}
.wsf{word-spacing:-57.294082pt;}
.ws1d{word-spacing:-39.299667pt;}
.ws13{word-spacing:-37.706982pt;}
.ws1e{word-spacing:-37.225974pt;}
.wse{word-spacing:-33.216889pt;}
.wsa{word-spacing:-31.454451pt;}
.ws30{word-spacing:-20.119407pt;}
.ws38{word-spacing:-20.025442pt;}
.ws25{word-spacing:-19.996819pt;}
.ws14{word-spacing:-17.181937pt;}
.ws12{word-spacing:-17.170757pt;}
.ws2e{word-spacing:-17.007412pt;}
.ws23{word-spacing:-16.903786pt;}
.ws36{word-spacing:-16.878952pt;}
.ws2a{word-spacing:-16.766172pt;}
.ws31{word-spacing:-16.692312pt;}
.ws1f{word-spacing:-16.664016pt;}
.wsc{word-spacing:-15.339558pt;}
.ws6{word-spacing:-14.400000pt;}
.wsd{word-spacing:-14.323520pt;}
.ws46{word-spacing:-13.600000pt;}
.ws3e{word-spacing:-13.534613pt;}
.ws45{word-spacing:-13.510933pt;}
.ws3f{word-spacing:-13.306880pt;}
.ws40{word-spacing:-12.894613pt;}
.ws42{word-spacing:-12.728335pt;}
.ws3b{word-spacing:-12.069867pt;}
.ws44{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.930667pt;}
.ws19{word-spacing:-11.884800pt;}
.ws10{word-spacing:-11.874667pt;}
.ws17{word-spacing:-11.824533pt;}
.ws1a{word-spacing:-11.773333pt;}
.ws1b{word-spacing:-11.697920pt;}
.ws1{word-spacing:-11.686400pt;}
.ws1c{word-spacing:-11.676800pt;}
.ws16{word-spacing:-11.654400pt;}
.ws18{word-spacing:-11.651840pt;}
.ws3c{word-spacing:-11.639680pt;}
.ws3a{word-spacing:-11.639040pt;}
.ws3d{word-spacing:-11.599467pt;}
.ws8{word-spacing:-10.560000pt;}
.wsb{word-spacing:-10.026855pt;}
.ws5{word-spacing:-9.693440pt;}
.ws2{word-spacing:-9.693333pt;}
.ws3{word-spacing:-9.603200pt;}
.ws4{word-spacing:-9.433600pt;}
.ws0{word-spacing:-7.840000pt;}
.ws43{word-spacing:-7.518933pt;}
.ws7{word-spacing:-7.040000pt;}
.ws37{word-spacing:-0.217131pt;}
.ws2f{word-spacing:-0.119389pt;}
.ws24{word-spacing:-0.118660pt;}
.ws11{word-spacing:0.000000pt;}
.ws26{word-spacing:10.429996pt;}
.ws32{word-spacing:11.416328pt;}
.ws33{word-spacing:22.047173pt;}
.ws27{word-spacing:22.418497pt;}
.ws20{word-spacing:25.375660pt;}
.ws2b{word-spacing:25.531221pt;}
.ws41{word-spacing:116.701220pt;}
.ws9{word-spacing:141.931477pt;}
.ws39{word-spacing:202.615910pt;}
.ws34{word-spacing:232.114260pt;}
.ws28{word-spacing:232.185292pt;}
.ws21{word-spacing:240.697127pt;}
.ws2c{word-spacing:242.172681pt;}
.ws35{word-spacing:538.210645pt;}
.ws29{word-spacing:538.211756pt;}
.ws22{word-spacing:555.970722pt;}
.ws2d{word-spacing:559.379007pt;}
._e{margin-left:-601.776120pt;}
._12{margin-left:-512.592390pt;}
._1a{margin-left:-391.410843pt;}
._18{margin-left:-244.954728pt;}
._1b{margin-left:-240.368030pt;}
._1d{margin-left:-209.829729pt;}
._22{margin-left:-198.467072pt;}
._16{margin-left:-173.423370pt;}
._33{margin-left:-166.938001pt;}
._31{margin-left:-165.920852pt;}
._32{margin-left:-163.123535pt;}
._19{margin-left:-159.395699pt;}
._10{margin-left:-154.212596pt;}
._11{margin-left:-148.026481pt;}
._23{margin-left:-143.922112pt;}
._26{margin-left:-128.145586pt;}
._2e{margin-left:-113.466546pt;}
._25{margin-left:-105.127015pt;}
._2c{margin-left:-101.590101pt;}
._14{margin-left:-99.964750pt;}
._1c{margin-left:-92.986340pt;}
._17{margin-left:-90.012795pt;}
._1e{margin-left:-81.979452pt;}
._15{margin-left:-66.080063pt;}
._24{margin-left:-49.896001pt;}
._13{margin-left:-48.300354pt;}
._2b{margin-left:-11.075313pt;}
._38{margin-left:-2.748697pt;}
._1{margin-left:-1.121280pt;}
._0{width:1.168640pt;}
._2{width:2.496000pt;}
._3{width:3.482667pt;}
._5{width:5.232000pt;}
._4{width:6.576000pt;}
._21{width:7.596160pt;}
._8{width:8.764800pt;}
._7{width:9.880320pt;}
._b{width:13.333120pt;}
._a{width:14.871680pt;}
._6{width:16.320000pt;}
._9{width:17.742080pt;}
._36{width:18.698240pt;}
._c{width:19.654400pt;}
._d{width:20.716800pt;}
._35{width:22.646400pt;}
._29{width:24.435200pt;}
._2a{width:25.338240pt;}
._39{width:26.772480pt;}
._3a{width:27.728640pt;}
._2d{width:49.587200pt;}
._2f{width:62.387200pt;}
._3b{width:66.984320pt;}
._27{width:74.067200pt;}
._30{width:130.131627pt;}
._37{width:131.593444pt;}
._20{width:137.540267pt;}
._28{width:177.113600pt;}
._34{width:213.339908pt;}
._f{width:329.372545pt;}
._1f{width:1059.940267pt;}
.fs3{font-size:32.000000pt;}
.fs1{font-size:34.560000pt;}
.fs20{font-size:35.858444pt;}
.fs21{font-size:39.626407pt;}
.fs22{font-size:39.686966pt;}
.fsf{font-size:39.724232pt;}
.fsd{font-size:40.096933pt;}
.fs9{font-size:40.107420pt;}
.fs5{font-size:42.880000pt;}
.fs25{font-size:45.782902pt;}
.fs24{font-size:45.785379pt;}
.fs14{font-size:47.954003pt;}
.fs6{font-size:48.000000pt;}
.fs1d{font-size:48.054615pt;}
.fs18{font-size:48.247977pt;}
.fs26{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs15{font-size:56.131643pt;}
.fs1c{font-size:56.234014pt;}
.fs19{font-size:56.476247pt;}
.fsa{font-size:57.294082pt;}
.fs7{font-size:58.880000pt;}
.fs13{font-size:59.942504pt;}
.fs1b{font-size:60.044289pt;}
.fs17{font-size:60.309972pt;}
.fs1f{font-size:60.413001pt;}
.fsb{font-size:60.504351pt;}
.fs23{font-size:63.014389pt;}
.fs4{font-size:64.000000pt;}
.fs11{font-size:68.100157pt;}
.fsc{font-size:68.683027pt;}
.fs10{font-size:71.606431pt;}
.fs12{font-size:71.893714pt;}
.fs16{font-size:71.931005pt;}
.fs1e{font-size:72.033963pt;}
.fs1a{font-size:72.371966pt;}
.fse{font-size:72.519354pt;}
.fs2{font-size:74.880000pt;}
.fs8{font-size:103.260650pt;}
.y0{bottom:0.000000pt;}
.y1ad{bottom:1.635602pt;}
.y1ed{bottom:2.170284pt;}
.y34{bottom:3.043943pt;}
.y4a{bottom:3.231374pt;}
.y89{bottom:4.078862pt;}
.y1ab{bottom:6.162606pt;}
.y1eb{bottom:6.448980pt;}
.y1f0{bottom:6.453740pt;}
.yef{bottom:6.709383pt;}
.y1d6{bottom:7.040000pt;}
.y154{bottom:7.311187pt;}
.y199{bottom:7.312303pt;}
.y180{bottom:7.356208pt;}
.y1dc{bottom:7.872039pt;}
.y8a{bottom:8.068960pt;}
.y19c{bottom:9.011874pt;}
.y39{bottom:9.012251pt;}
.y37{bottom:10.743161pt;}
.yd0{bottom:10.880000pt;}
.yda{bottom:11.026667pt;}
.ye1{bottom:11.032000pt;}
.yce{bottom:11.040000pt;}
.yd8{bottom:11.066667pt;}
.yee{bottom:13.861551pt;}
.y32{bottom:14.711699pt;}
.y4c{bottom:15.771888pt;}
.y35{bottom:17.845783pt;}
.y1d4{bottom:18.880000pt;}
.y33{bottom:21.188285pt;}
.y153{bottom:22.176728pt;}
.y195{bottom:22.299795pt;}
.y17f{bottom:22.312679pt;}
.y36{bottom:22.411438pt;}
.y152{bottom:22.776153pt;}
.y196{bottom:22.899279pt;}
.y17e{bottom:22.915779pt;}
.y1a9{bottom:23.723257pt;}
.y4b{bottom:25.851248pt;}
.y86{bottom:26.117822pt;}
.ycc{bottom:26.560000pt;}
.y1ef{bottom:27.204701pt;}
.y1e9{bottom:28.622049pt;}
.y38{bottom:29.633118pt;}
.y19e{bottom:37.246508pt;}
.y168{bottom:40.902767pt;}
.y194{bottom:40.907770pt;}
.ycd{bottom:42.240000pt;}
.y1de{bottom:45.089556pt;}
.y151{bottom:49.054947pt;}
.y17d{bottom:49.355670pt;}
.y165{bottom:50.613452pt;}
.y191{bottom:50.619406pt;}
.y14e{bottom:50.733337pt;}
.y17a{bottom:51.044350pt;}
.y19f{bottom:52.818382pt;}
.y14d{bottom:55.528738pt;}
.y179{bottom:55.869147pt;}
.y15f{bottom:62.841723pt;}
.y18b{bottom:62.848874pt;}
.y1df{bottom:66.554427pt;}
.y1a0{bottom:68.391511pt;}
.y148{bottom:70.634249pt;}
.y174{bottom:71.067260pt;}
.y14f{bottom:78.906314pt;}
.y17b{bottom:79.390036pt;}
.y83{bottom:81.632000pt;}
.y164{bottom:83.342060pt;}
.y190{bottom:83.351217pt;}
.y15d{bottom:83.701715pt;}
.y189{bottom:83.710907pt;}
.y1a1{bottom:83.963385pt;}
.y1e0{bottom:88.733207pt;}
.y1d2{bottom:90.432000pt;}
.y146{bottom:94.395457pt;}
.yca{bottom:94.752000pt;}
.y172{bottom:94.974133pt;}
.y82{bottom:97.152000pt;}
.y1a2{bottom:99.535259pt;}
.y13e{bottom:101.472000pt;}
.yb4{bottom:102.592000pt;}
.y15e{bottom:103.031174pt;}
.y18a{bottom:103.041259pt;}
.y1d1{bottom:106.272000pt;}
.y150{bottom:106.867494pt;}
.y17c{bottom:107.522628pt;}
.ye0{bottom:109.320000pt;}
.y10c{bottom:109.792000pt;}
.y1e1{bottom:110.199030pt;}
.y42{bottom:111.072000pt;}
.y81{bottom:112.832000pt;}
.y1a3{bottom:114.636209pt;}
.y166{bottom:115.978755pt;}
.y192{bottom:115.990107pt;}
.y13d{bottom:117.472000pt;}
.y147{bottom:117.777030pt;}
.y169{bottom:118.016800pt;}
.y198{bottom:118.028352pt;}
.yb3{bottom:118.112000pt;}
.y173{bottom:118.499043pt;}
.y1d0{bottom:121.632000pt;}
.y155{bottom:124.011051pt;}
.y15a{bottom:124.730361pt;}
.y186{bottom:124.742570pt;}
.y181{bottom:124.771280pt;}
.y10b{bottom:125.152000pt;}
.y41{bottom:126.752000pt;}
.y80{bottom:128.512000pt;}
.y1a4{bottom:130.220640pt;}
.y1e2{bottom:131.682938pt;}
.y13c{bottom:132.512000pt;}
.y167{bottom:134.560931pt;}
.y193{bottom:134.574103pt;}
.y14c{bottom:134.800701pt;}
.ydf{bottom:134.920000pt;}
.y178{bottom:135.627074pt;}
.y1cf{bottom:136.666667pt;}
.y10a{bottom:140.506667pt;}
.y40{bottom:142.266667pt;}
.y143{bottom:143.212633pt;}
.y7f{bottom:144.026667pt;}
.y16f{bottom:144.070470pt;}
.y19d{bottom:144.885155pt;}
.yb2{bottom:145.786667pt;}
.y1a5{bottom:145.792514pt;}
.y13b{bottom:148.026667pt;}
.y187{bottom:148.362228pt;}
.y15b{bottom:148.367688pt;}
.y1aa{bottom:149.745570pt;}
.y1e3{bottom:153.147810pt;}
.y109{bottom:155.866667pt;}
.y3f{bottom:157.946667pt;}
.yde{bottom:159.560000pt;}
.y7e{bottom:159.706667pt;}
.y1ce{bottom:160.506667pt;}
.y1a6{bottom:161.364387pt;}
.y13a{bottom:163.706667pt;}
.y163{bottom:166.350439pt;}
.y18f{bottom:166.366722pt;}
.y14a{bottom:167.549290pt;}
.y176{bottom:168.576422pt;}
.y144{bottom:169.227680pt;}
.yb1{bottom:169.466667pt;}
.y15c{bottom:169.946990pt;}
.y188{bottom:169.963625pt;}
.y170{bottom:170.265101pt;}
.y108{bottom:170.746667pt;}
.y3e{bottom:173.626667pt;}
.y1e4{bottom:175.326590pt;}
.y7d{bottom:175.386667pt;}
.y1a7{bottom:176.936261pt;}
.y139{bottom:179.386667pt;}
.y1cd{bottom:181.466667pt;}
.ydd{bottom:184.200000pt;}
.y107{bottom:186.426667pt;}
.y3d{bottom:189.306667pt;}
.y7c{bottom:190.906667pt;}
.y1a8{bottom:192.425808pt;}
.yb0{bottom:193.146667pt;}
.y145{bottom:193.684221pt;}
.y158{bottom:193.804106pt;}
.y184{bottom:193.823077pt;}
.y171{bottom:194.871570pt;}
.y138{bottom:195.066667pt;}
.y1e5{bottom:196.820017pt;}
.y1cc{bottom:197.146667pt;}
.y106{bottom:202.106667pt;}
.y3c{bottom:204.826667pt;}
.y14b{bottom:204.973393pt;}
.y177{bottom:206.209845pt;}
.y7b{bottom:206.586667pt;}
.ydc{bottom:208.840000pt;}
.y137{bottom:210.586667pt;}
.y16a{bottom:211.447183pt;}
.y19a{bottom:211.447898pt;}
.y1cb{bottom:212.666667pt;}
.y161{bottom:212.885804pt;}
.y18d{bottom:212.886659pt;}
.yaf{bottom:216.666667pt;}
.y159{bottom:217.441434pt;}
.y185{bottom:217.442735pt;}
.y105{bottom:217.626667pt;}
.y141{bottom:217.681204pt;}
.y1e6{bottom:218.284888pt;}
.y16d{bottom:219.015662pt;}
.y3b{bottom:220.506667pt;}
.y7a{bottom:222.266667pt;}
.y156{bottom:223.435684pt;}
.y182{bottom:224.805419pt;}
.y136{bottom:226.266667pt;}
.y1ca{bottom:228.346667pt;}
.y104{bottom:233.306667pt;}
.y31{bottom:233.346667pt;}
.ydb{bottom:233.480000pt;}
.y79{bottom:237.786667pt;}
.yae{bottom:240.346667pt;}
.y1e7{bottom:240.463669pt;}
.y157{bottom:241.178665pt;}
.y183{bottom:241.202273pt;}
.y142{bottom:241.298550pt;}
.y135{bottom:241.946667pt;}
.y16e{bottom:242.777791pt;}
.y1c9{bottom:244.026667pt;}
.y162{bottom:245.494526pt;}
.y18e{bottom:245.518556pt;}
.y149{bottom:246.093951pt;}
.y175{bottom:247.602588pt;}
.y103{bottom:248.986667pt;}
.y18c{bottom:250.794012pt;}
.y160{bottom:251.129121pt;}
.y1ac{bottom:252.549181pt;}
.y78{bottom:253.466667pt;}
.y3a{bottom:254.586667pt;}
.y134{bottom:257.466667pt;}
.yd9{bottom:258.120000pt;}
.y1c8{bottom:259.546667pt;}
.y1e8{bottom:261.947577pt;}
.y197{bottom:262.783687pt;}
.y140{bottom:262.787938pt;}
.yad{bottom:264.026667pt;}
.y16c{bottom:264.368761pt;}
.y102{bottom:264.506667pt;}
.y77{bottom:269.146667pt;}
.y133{bottom:273.146667pt;}
.y1c7{bottom:275.226667pt;}
.y101{bottom:280.186667pt;}
.y19b{bottom:280.647956pt;}
.y30{bottom:282.746667pt;}
.yd7{bottom:282.760000pt;}
.y76{bottom:284.666667pt;}
.yac{bottom:287.546667pt;}
.y132{bottom:288.826667pt;}
.y1c6{bottom:290.906667pt;}
.y100{bottom:295.906667pt;}
.y2f{bottom:298.466667pt;}
.y75{bottom:300.386667pt;}
.y131{bottom:304.386667pt;}
.y1c5{bottom:306.466667pt;}
.yd6{bottom:307.426667pt;}
.yab{bottom:311.266667pt;}
.yff{bottom:311.426667pt;}
.y2e{bottom:314.146667pt;}
.y74{bottom:316.066667pt;}
.y130{bottom:320.066667pt;}
.y1c4{bottom:322.146667pt;}
.yfe{bottom:327.106667pt;}
.y2d{bottom:329.666667pt;}
.y73{bottom:331.586667pt;}
.yd5{bottom:332.066667pt;}
.yaa{bottom:334.946667pt;}
.y12f{bottom:335.746667pt;}
.y1c3{bottom:337.826667pt;}
.yfd{bottom:342.786667pt;}
.y2c{bottom:345.346667pt;}
.y72{bottom:347.266667pt;}
.y12e{bottom:351.426667pt;}
.y1c2{bottom:353.506667pt;}
.yd4{bottom:356.706667pt;}
.yfc{bottom:358.306667pt;}
.ya9{bottom:358.466667pt;}
.y2b{bottom:361.026667pt;}
.y71{bottom:362.946667pt;}
.y12d{bottom:366.946667pt;}
.y1c1{bottom:369.026667pt;}
.yfb{bottom:373.986667pt;}
.y2a{bottom:376.546667pt;}
.y70{bottom:378.466667pt;}
.yd3{bottom:381.346667pt;}
.ya8{bottom:382.146667pt;}
.y12c{bottom:382.626667pt;}
.y1c0{bottom:384.706667pt;}
.yfa{bottom:389.666667pt;}
.y29{bottom:392.226667pt;}
.y16b{bottom:392.946667pt;}
.y6f{bottom:394.146667pt;}
.y210{bottom:394.466667pt;}
.y12b{bottom:398.306667pt;}
.y1bf{bottom:400.546667pt;}
.yf9{bottom:405.186667pt;}
.ya7{bottom:405.826667pt;}
.yd2{bottom:405.986667pt;}
.y28{bottom:407.906667pt;}
.y6e{bottom:409.826667pt;}
.y12a{bottom:413.666667pt;}
.y1be{bottom:417.506667pt;}
.yf8{bottom:420.866667pt;}
.y27{bottom:423.586667pt;}
.y6d{bottom:425.346667pt;}
.y129{bottom:428.866667pt;}
.ya6{bottom:429.506667pt;}
.yd1{bottom:430.626667pt;}
.y20f{bottom:432.866667pt;}
.y1bd{bottom:433.186667pt;}
.y26{bottom:439.106667pt;}
.y6c{bottom:441.026667pt;}
.y128{bottom:444.226667pt;}
.yf7{bottom:444.866667pt;}
.ya5{bottom:445.026667pt;}
.y20e{bottom:448.546667pt;}
.y1bc{bottom:448.706667pt;}
.y25{bottom:454.786667pt;}
.ycf{bottom:455.266667pt;}
.y6b{bottom:456.706667pt;}
.y127{bottom:459.586667pt;}
.ya4{bottom:460.706667pt;}
.y1bb{bottom:464.386667pt;}
.y1dd{bottom:466.080000pt;}
.y1ea{bottom:469.643835pt;}
.yf6{bottom:469.986667pt;}
.y24{bottom:470.466667pt;}
.y20d{bottom:472.066667pt;}
.y6a{bottom:472.226667pt;}
.y126{bottom:474.946667pt;}
.ya3{bottom:476.706667pt;}
.y1ba{bottom:480.066667pt;}
.ycb{bottom:480.866667pt;}
.y23{bottom:485.986667pt;}
.y20c{bottom:487.746667pt;}
.y69{bottom:487.906667pt;}
.y125{bottom:490.306667pt;}
.ya2{bottom:491.586667pt;}
.yf5{bottom:494.946667pt;}
.y1b9{bottom:495.586667pt;}
.y22{bottom:501.666667pt;}
.y68{bottom:503.586667pt;}
.y124{bottom:505.666667pt;}
.ya1{bottom:507.266667pt;}
.yf4{bottom:510.466667pt;}
.y1b8{bottom:511.266667pt;}
.y20b{bottom:511.426667pt;}
.y21{bottom:517.346667pt;}
.y67{bottom:519.106667pt;}
.y123{bottom:520.866667pt;}
.ya0{bottom:522.946667pt;}
.yf3{bottom:526.146667pt;}
.y1b7{bottom:526.946667pt;}
.y20{bottom:532.893333pt;}
.y66{bottom:534.813333pt;}
.y20a{bottom:534.973333pt;}
.y122{bottom:536.253333pt;}
.yf2{bottom:541.853333pt;}
.y1b6{bottom:542.493333pt;}
.y9f{bottom:546.813333pt;}
.y1f{bottom:548.573333pt;}
.y65{bottom:550.493333pt;}
.y209{bottom:551.293333pt;}
.y121{bottom:551.613333pt;}
.yc9{bottom:554.813333pt;}
.yf1{bottom:557.533333pt;}
.y1b5{bottom:558.173333pt;}
.y1e{bottom:564.253333pt;}
.y64{bottom:566.013333pt;}
.y120{bottom:566.973333pt;}
.y9e{bottom:571.773333pt;}
.y1b4{bottom:573.853333pt;}
.y1ee{bottom:579.867614pt;}
.y1d{bottom:580.093333pt;}
.yf0{bottom:581.053333pt;}
.y63{bottom:581.693333pt;}
.y208{bottom:581.853333pt;}
.y11f{bottom:582.333333pt;}
.yc8{bottom:585.853333pt;}
.y9d{bottom:587.453333pt;}
.y1b3{bottom:589.533333pt;}
.yed{bottom:593.680000pt;}
.y207{bottom:596.573333pt;}
.y62{bottom:597.373333pt;}
.y11e{bottom:597.693333pt;}
.yec{bottom:600.413333pt;}
.y1c{bottom:601.373333pt;}
.y9c{bottom:602.973333pt;}
.y1ec{bottom:604.188122pt;}
.y1b2{bottom:605.053333pt;}
.y61{bottom:612.893333pt;}
.yc7{bottom:617.053333pt;}
.y9b{bottom:618.653333pt;}
.y206{bottom:620.253333pt;}
.yeb{bottom:620.733333pt;}
.y11d{bottom:628.253333pt;}
.y60{bottom:628.573333pt;}
.y1db{bottom:629.251095pt;}
.y1b{bottom:629.693333pt;}
.yc6{bottom:632.733333pt;}
.y9a{bottom:634.333333pt;}
.y205{bottom:635.933333pt;}
.yea{bottom:636.413333pt;}
.y5f{bottom:644.253333pt;}
.yc5{bottom:648.253333pt;}
.y99{bottom:649.853333pt;}
.y1a{bottom:650.173333pt;}
.y204{bottom:651.453333pt;}
.ye9{bottom:651.933333pt;}
.y11c{bottom:659.293333pt;}
.y5e{bottom:659.773333pt;}
.yc4{bottom:663.933333pt;}
.y203{bottom:667.133333pt;}
.ye8{bottom:667.613333pt;}
.y19{bottom:671.293333pt;}
.y98{bottom:673.533333pt;}
.y11b{bottom:674.653333pt;}
.y5d{bottom:675.453333pt;}
.yc3{bottom:679.613333pt;}
.y202{bottom:682.813333pt;}
.ye7{bottom:683.293333pt;}
.y5c{bottom:691.133333pt;}
.y18{bottom:694.813333pt;}
.yc2{bottom:695.293333pt;}
.y97{bottom:697.213333pt;}
.y11a{bottom:697.533333pt;}
.y201{bottom:698.333333pt;}
.ye6{bottom:698.813333pt;}
.y5b{bottom:706.653333pt;}
.y17{bottom:708.893333pt;}
.yc1{bottom:710.813333pt;}
.ye5{bottom:714.493333pt;}
.y96{bottom:720.893333pt;}
.y119{bottom:721.213333pt;}
.y200{bottom:722.013333pt;}
.y5a{bottom:722.333333pt;}
.y16{bottom:722.973333pt;}
.yc0{bottom:726.493333pt;}
.y1b1{bottom:730.173333pt;}
.y13f{bottom:733.680000pt;}
.y15{bottom:736.893333pt;}
.y1ff{bottom:737.693333pt;}
.y59{bottom:738.013333pt;}
.ye4{bottom:738.173333pt;}
.ybf{bottom:742.173333pt;}
.y95{bottom:744.413333pt;}
.y118{bottom:745.053333pt;}
.y1b0{bottom:745.853333pt;}
.y14{bottom:750.973333pt;}
.y1fe{bottom:753.373333pt;}
.y58{bottom:753.533333pt;}
.y1af{bottom:761.373333pt;}
.ye3{bottom:761.693333pt;}
.y13{bottom:765.053333pt;}
.ybe{bottom:765.693333pt;}
.y94{bottom:768.133333pt;}
.y57{bottom:769.253333pt;}
.y117{bottom:770.373333pt;}
.y1da{bottom:776.133333pt;}
.y1fd{bottom:776.933333pt;}
.y12{bottom:779.173333pt;}
.ybd{bottom:781.413333pt;}
.y56{bottom:784.933333pt;}
.ye2{bottom:785.413333pt;}
.y93{bottom:791.813333pt;}
.y1fc{bottom:792.613333pt;}
.y11{bottom:793.253333pt;}
.y116{bottom:795.493333pt;}
.y55{bottom:800.453333pt;}
.y1d9{bottom:801.733333pt;}
.y10{bottom:807.333333pt;}
.y1fb{bottom:808.293333pt;}
.ybc{bottom:809.093333pt;}
.y92{bottom:815.333333pt;}
.y54{bottom:816.133333pt;}
.y115{bottom:820.773333pt;}
.yf{bottom:821.413333pt;}
.y1d8{bottom:826.373333pt;}
.y53{bottom:831.813333pt;}
.ybb{bottom:832.613333pt;}
.ye{bottom:835.493333pt;}
.y91{bottom:839.013333pt;}
.y114{bottom:845.893333pt;}
.y52{bottom:847.333333pt;}
.y1fa{bottom:847.493333pt;}
.y1d7{bottom:851.013333pt;}
.y90{bottom:854.693333pt;}
.yba{bottom:856.293333pt;}
.yd{bottom:861.733333pt;}
.y51{bottom:863.013333pt;}
.y1f9{bottom:863.173333pt;}
.y8f{bottom:870.213333pt;}
.y113{bottom:871.173333pt;}
.y1d5{bottom:875.653333pt;}
.yc{bottom:877.253333pt;}
.y50{bottom:878.693333pt;}
.yb9{bottom:879.973333pt;}
.y8e{bottom:885.893333pt;}
.y1f8{bottom:886.693333pt;}
.yb{bottom:891.333333pt;}
.y4f{bottom:894.213333pt;}
.y112{bottom:896.293333pt;}
.y1d3{bottom:901.253333pt;}
.y8d{bottom:901.573333pt;}
.y1f7{bottom:902.373333pt;}
.yb8{bottom:903.653333pt;}
.ya{bottom:907.973333pt;}
.y4e{bottom:909.893333pt;}
.y8c{bottom:917.093333pt;}
.y9{bottom:919.333333pt;}
.y111{bottom:921.573333pt;}
.y49{bottom:922.480000pt;}
.y1f6{bottom:926.053333pt;}
.yb7{bottom:927.173333pt;}
.y8b{bottom:932.773333pt;}
.y8{bottom:936.133333pt;}
.y4d{bottom:938.533333pt;}
.y1f5{bottom:941.733333pt;}
.y88{bottom:945.346667pt;}
.y110{bottom:946.693333pt;}
.y7{bottom:947.493333pt;}
.yb6{bottom:950.853333pt;}
.y1ae{bottom:951.173333pt;}
.y87{bottom:953.413333pt;}
.y1f4{bottom:957.253333pt;}
.y6{bottom:962.213333pt;}
.y48{bottom:966.853333pt;}
.y85{bottom:969.346667pt;}
.y10f{bottom:971.973333pt;}
.y1f3{bottom:972.933333pt;}
.yb5{bottom:974.533333pt;}
.y5{bottom:979.333333pt;}
.y47{bottom:982.533333pt;}
.y84{bottom:985.413333pt;}
.y1f2{bottom:988.613333pt;}
.y4{bottom:991.173333pt;}
.y10e{bottom:997.093333pt;}
.y46{bottom:998.053333pt;}
.y1f1{bottom:1012.480000pt;}
.y3{bottom:1013.120000pt;}
.y45{bottom:1013.760000pt;}
.y10d{bottom:1014.400000pt;}
.y44{bottom:1029.280000pt;}
.y2{bottom:1041.920000pt;}
.y43{bottom:1043.040000pt;}
.y1{bottom:1056.960000pt;}
.h40{height:19.495119pt;}
.h42{height:20.610965pt;}
.h4a{height:20.750962pt;}
.h5{height:22.531250pt;}
.h8{height:22.916875pt;}
.h21{height:23.506667pt;}
.h22{height:23.666667pt;}
.h24{height:23.672000pt;}
.h23{height:23.698667pt;}
.h1d{height:23.999680pt;}
.h3f{height:24.495099pt;}
.h46{height:27.199942pt;}
.h41{height:27.552736pt;}
.h43{height:27.594843pt;}
.h3c{height:29.621162pt;}
.hb{height:30.191875pt;}
.h7{height:33.796875pt;}
.h4f{height:35.599375pt;}
.h25{height:37.142500pt;}
.ha{height:37.246250pt;}
.h9{height:37.401875pt;}
.h2{height:37.672500pt;}
.h4e{height:37.773750pt;}
.h26{height:38.967764pt;}
.h1e{height:38.987161pt;}
.h44{height:39.186667pt;}
.h11{height:39.343656pt;}
.h4b{height:40.097902pt;}
.h45{height:40.221250pt;}
.h2a{height:41.170000pt;}
.h17{height:41.267272pt;}
.hc{height:41.285000pt;}
.hd{height:41.457500pt;}
.h4d{height:41.501924pt;}
.h3d{height:42.005915pt;}
.h14{height:43.600796pt;}
.h6{height:46.191875pt;}
.he{height:46.732504pt;}
.h16{height:47.109375pt;}
.h4c{height:47.750136pt;}
.h49{height:47.752720pt;}
.h2f{height:50.014527pt;}
.h3a{height:50.119461pt;}
.h34{height:50.321133pt;}
.h2b{height:52.108438pt;}
.h10{height:52.118591pt;}
.h3{height:52.134375pt;}
.h4{height:52.503750pt;}
.h2c{height:53.535000pt;}
.h20{height:54.906667pt;}
.h13{height:55.038871pt;}
.h15{height:56.231008pt;}
.h30{height:58.543569pt;}
.h39{height:58.650338pt;}
.h35{height:58.902980pt;}
.h29{height:61.948532pt;}
.h1a{height:62.478749pt;}
.h2e{height:62.518159pt;}
.h38{height:62.624317pt;}
.h33{height:62.901416pt;}
.h1f{height:65.138076pt;}
.h28{height:65.399409pt;}
.h47{height:65.722038pt;}
.h1c{height:65.968534pt;}
.h27{height:66.803328pt;}
.h18{height:67.375098pt;}
.h19{height:67.408635pt;}
.h12{height:69.573041pt;}
.h31{height:75.021790pt;}
.h3b{height:75.129173pt;}
.h36{height:75.481699pt;}
.hf{height:93.932906pt;}
.h1b{height:114.888747pt;}
.h3e{height:215.267897pt;}
.h2d{height:280.530919pt;}
.h48{height:284.126358pt;}
.h32{height:300.343659pt;}
.h37{height:316.527402pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w15{width:19.251173pt;}
.w5{width:20.000334pt;}
.w20{width:20.749839pt;}
.w14{width:36.237115pt;}
.wb{width:48.946667pt;}
.w8{width:49.120000pt;}
.w7{width:55.858667pt;}
.w9{width:56.192000pt;}
.wa{width:56.466667pt;}
.w17{width:56.640000pt;}
.w1f{width:58.632573pt;}
.we{width:61.266935pt;}
.w4{width:65.264882pt;}
.w1c{width:66.266667pt;}
.w18{width:66.272000pt;}
.w6{width:73.752000pt;}
.w12{width:75.139693pt;}
.w16{width:75.218667pt;}
.w1b{width:75.506667pt;}
.w21{width:83.665635pt;}
.w1a{width:85.138667pt;}
.wc{width:111.538667pt;}
.w19{width:113.266667pt;}
.w3{width:117.331628pt;}
.wd{width:118.106667pt;}
.w1d{width:143.012079pt;}
.wf{width:250.203602pt;}
.w11{width:250.592024pt;}
.w10{width:251.739654pt;}
.w2{width:261.335718pt;}
.w13{width:303.624955pt;}
.w1e{width:415.463177pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:1.159855pt;}
.x59{left:2.224133pt;}
.x1e{left:3.754538pt;}
.x2c{left:7.192000pt;}
.x1b{left:8.868583pt;}
.x16{left:10.146076pt;}
.x61{left:11.040000pt;}
.x1a{left:11.975818pt;}
.x5e{left:13.095151pt;}
.x2e{left:14.866667pt;}
.x3a{left:15.826667pt;}
.x38{left:17.440000pt;}
.x30{left:18.560000pt;}
.x3b{left:19.506667pt;}
.x2d{left:20.786667pt;}
.x34{left:22.226667pt;}
.x46{left:23.652051pt;}
.x5c{left:24.670261pt;}
.x5b{left:25.757686pt;}
.x22{left:26.717211pt;}
.x44{left:28.809446pt;}
.x6d{left:30.049194pt;}
.x68{left:32.171769pt;}
.x15{left:35.559751pt;}
.x45{left:37.085265pt;}
.x14{left:39.449078pt;}
.x39{left:43.226667pt;}
.x1f{left:46.576085pt;}
.x4b{left:47.639933pt;}
.x53{left:53.037207pt;}
.x3e{left:54.096508pt;}
.x10{left:64.571849pt;}
.x52{left:69.612833pt;}
.x69{left:71.506039pt;}
.x1c{left:77.908052pt;}
.x13{left:84.052974pt;}
.x18{left:86.161254pt;}
.x2b{left:87.400000pt;}
.x4d{left:90.962048pt;}
.x4c{left:92.161442pt;}
.x49{left:93.240897pt;}
.xa{left:94.592000pt;}
.x19{left:96.357554pt;}
.x1{left:99.392000pt;}
.x2{left:104.032000pt;}
.x21{left:105.546667pt;}
.x1d{left:108.106214pt;}
.x12{left:111.704073pt;}
.xf{left:115.982068pt;}
.x4e{left:118.789990pt;}
.x54{left:122.048344pt;}
.x3c{left:131.872000pt;}
.x50{left:134.282163pt;}
.x24{left:135.746667pt;}
.x43{left:137.480000pt;}
.x55{left:144.946667pt;}
.x5f{left:148.506667pt;}
.x7{left:151.226667pt;}
.xb{left:153.450667pt;}
.x26{left:155.706667pt;}
.x3{left:158.426667pt;}
.x11{left:160.428109pt;}
.x42{left:164.666667pt;}
.x3f{left:167.546667pt;}
.x23{left:170.746667pt;}
.x47{left:174.341926pt;}
.x56{left:175.412247pt;}
.x9{left:188.986667pt;}
.x6b{left:192.782686pt;}
.x48{left:196.080944pt;}
.x4a{left:197.280338pt;}
.x51{left:198.239853pt;}
.xc{left:201.563181pt;}
.x57{left:202.715134pt;}
.x6{left:207.546667pt;}
.xe{left:210.663039pt;}
.x20{left:211.866667pt;}
.x2f{left:217.026667pt;}
.x41{left:219.426667pt;}
.x2a{left:232.866667pt;}
.x60{left:236.386667pt;}
.xd{left:240.164620pt;}
.x5a{left:245.133879pt;}
.x5d{left:248.925609pt;}
.x29{left:259.106667pt;}
.x31{left:266.146667pt;}
.x67{left:267.881875pt;}
.x62{left:293.026667pt;}
.x27{left:309.986667pt;}
.x4{left:312.706667pt;}
.x32{left:315.266667pt;}
.x3d{left:318.306667pt;}
.x28{left:323.266667pt;}
.x17{left:355.906667pt;}
.x63{left:359.306667pt;}
.x8{left:363.773333pt;}
.x33{left:371.466667pt;}
.x6a{left:388.744928pt;}
.x4f{left:391.280000pt;}
.x40{left:396.893333pt;}
.x58{left:398.346667pt;}
.x35{left:427.946667pt;}
.x6c{left:468.812656pt;}
.x64{left:472.586667pt;}
.x36{left:476.906667pt;}
.x65{left:557.733333pt;}
.x37{left:588.453333pt;}
.x66{left:633.253333pt;}
.x5{left:642.720000pt;}
}




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