
    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_86f1777f1d2eaf0002599458.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.902000;font-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_2edc3c23a3ae68cb59e6b713.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_724772968209e952999d0156.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;font-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_d369d92993ff5f9181a21459.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;font-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_67ff16614e25ff9e7c648171.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;font-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_1e23f5d1dc798247e316ffb0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;font-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_c6f6743f7803cef903a14f36.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fab40f2a95e04795f10fd4b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.628000;font-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_96a86f9b2eba5ce2e8d72f24.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;font-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_1e964ac2457ad2c579500d63.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.715000;font-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_ed9adeecb4acfd01efb0d96b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.725000;font-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_82cc3d10ed55e8f8d4f35105.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.725000;font-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_1f82ccb6d36fb06c38fe04d6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.383000;font-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_f3d13f91f3831f8f64eb0917.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.922000;font-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_a7b1951ab3c4d9711f035206.woff2')format("woff");}.fff{font-family:fff;line-height:0.704000;font-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_6e82164d0869339f1a354914.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.799000;font-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_915d7be36e6fa43054a7f610.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-19.194000px;}
.v4{vertical-align:-16.938000px;}
.v3{vertical-align:-10.764000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:26.028000px;}
.v1{vertical-align:29.616000px;}
.v5{vertical-align:79.620000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000472px;}
.ls4d{letter-spacing:0.001311px;}
.lsb8{letter-spacing:0.001832px;}
.lsad{letter-spacing:0.001951px;}
.ls3e{letter-spacing:0.002615px;}
.ls2a{letter-spacing:0.002759px;}
.ls24{letter-spacing:0.002845px;}
.ls59{letter-spacing:0.003026px;}
.ls28{letter-spacing:0.003099px;}
.ls1f{letter-spacing:0.006891px;}
.ls85{letter-spacing:0.009769px;}
.ls9e{letter-spacing:0.011209px;}
.lsb7{letter-spacing:0.011576px;}
.ls98{letter-spacing:0.011987px;}
.ls36{letter-spacing:0.014187px;}
.lsb6{letter-spacing:0.014878px;}
.ls93{letter-spacing:0.024232px;}
.ls94{letter-spacing:0.026640px;}
.lsa4{letter-spacing:0.028383px;}
.ls31{letter-spacing:0.029825px;}
.ls55{letter-spacing:0.030217px;}
.ls71{letter-spacing:0.030338px;}
.ls7b{letter-spacing:0.033936px;}
.ls6e{letter-spacing:0.035599px;}
.ls83{letter-spacing:0.035689px;}
.ls56{letter-spacing:1.075968px;}
.ls11{letter-spacing:1.147699px;}
.ls45{letter-spacing:1.936742px;}
.ls8{letter-spacing:1.995057px;}
.ls6{letter-spacing:2.008474px;}
.ls97{letter-spacing:2.367130px;}
.ls8d{letter-spacing:2.984915px;}
.ls57{letter-spacing:2.986059px;}
.lsf{letter-spacing:2.988103px;}
.ls29{letter-spacing:2.989289px;}
.ls7{letter-spacing:2.990915px;}
.ls5a{letter-spacing:2.992059px;}
.ls66{letter-spacing:2.994103px;}
.ls65{letter-spacing:4.144965px;}
.ls1a{letter-spacing:4.160410px;}
.ls62{letter-spacing:4.171563px;}
.ls68{letter-spacing:4.182025px;}
.ls37{letter-spacing:4.232141px;}
.ls96{letter-spacing:4.265644px;}
.ls47{letter-spacing:5.092915px;}
.ls5b{letter-spacing:5.164646px;}
.ls23{letter-spacing:5.662328px;}
.ls4a{letter-spacing:5.881958px;}
.ls15{letter-spacing:5.953690px;}
.ls50{letter-spacing:11.907379px;}
.ls12{letter-spacing:11.979110px;}
.ls2d{letter-spacing:14.947289px;}
.ls48{letter-spacing:15.565670px;}
.lsa8{letter-spacing:15.924326px;}
.ls3a{letter-spacing:16.569907px;}
.ls43{letter-spacing:17.143757px;}
.ls1{letter-spacing:17.502413px;}
.lsbb{letter-spacing:18.578381px;}
.ls95{letter-spacing:18.793574px;}
.ls3{letter-spacing:18.865306px;}
.ls3c{letter-spacing:19.797811px;}
.lse{letter-spacing:19.869542px;}
.lsaa{letter-spacing:19.928127px;}
.lsa{letter-spacing:19.941274px;}
.ls9b{letter-spacing:20.084736px;}
.ls33{letter-spacing:20.156467px;}
.ls4{letter-spacing:20.802048px;}
.ls8a{letter-spacing:20.918915px;}
.ls8b{letter-spacing:20.924915px;}
.ls5{letter-spacing:21.088973px;}
.ls70{letter-spacing:21.232435px;}
.ls6b{letter-spacing:21.591091px;}
.lsae{letter-spacing:21.866915px;}
.ls69{letter-spacing:21.878016px;}
.ls6d{letter-spacing:21.949747px;}
.ls2c{letter-spacing:22.236672px;}
.ls13{letter-spacing:22.523597px;}
.ls77{letter-spacing:22.738790px;}
.ls44{letter-spacing:22.816328px;}
.ls18{letter-spacing:22.910915px;}
.ls1c{letter-spacing:22.912059px;}
.ls10{letter-spacing:22.914103px;}
.ls19{letter-spacing:22.916915px;}
.ls9d{letter-spacing:23.090915px;}
.ls8c{letter-spacing:23.097446px;}
.lsd{letter-spacing:23.384371px;}
.ls1d{letter-spacing:23.456102px;}
.ls8f{letter-spacing:23.886490px;}
.ls89{letter-spacing:23.958221px;}
.ls3d{letter-spacing:24.029952px;}
.ls49{letter-spacing:24.101683px;}
.ls14{letter-spacing:24.173414px;}
.ls6f{letter-spacing:24.206915px;}
.ls9a{letter-spacing:24.245146px;}
.ls74{letter-spacing:24.316877px;}
.ls72{letter-spacing:24.388608px;}
.ls54{letter-spacing:24.532070px;}
.ls39{letter-spacing:24.675533px;}
.ls53{letter-spacing:25.034189px;}
.ls42{letter-spacing:25.105920px;}
.ls27{letter-spacing:25.230103px;}
.ls2e{letter-spacing:25.231289px;}
.ls9c{letter-spacing:25.249382px;}
.lsb5{letter-spacing:25.392845px;}
.ls26{letter-spacing:25.588328px;}
.ls5c{letter-spacing:25.608038px;}
.ls87{letter-spacing:25.679770px;}
.ls5e{letter-spacing:25.966694px;}
.lsa0{letter-spacing:26.181888px;}
.lsc{letter-spacing:26.400103px;}
.ls9f{letter-spacing:26.404059px;}
.ls4f{letter-spacing:27.042662px;}
.ls5d{letter-spacing:27.114394px;}
.ls3b{letter-spacing:27.186125px;}
.lsac{letter-spacing:27.257856px;}
.ls4c{letter-spacing:27.544781px;}
.ls22{letter-spacing:27.616512px;}
.ls35{letter-spacing:27.736328px;}
.ls7a{letter-spacing:27.903437px;}
.ls40{letter-spacing:28.046899px;}
.ls75{letter-spacing:28.190362px;}
.ls7f{letter-spacing:28.477286px;}
.ls20{letter-spacing:28.549018px;}
.ls6a{letter-spacing:28.620749px;}
.ls1b{letter-spacing:28.692480px;}
.ls6c{letter-spacing:28.764211px;}
.ls2b{letter-spacing:28.963008px;}
.ls25{letter-spacing:29.074328px;}
.lsb4{letter-spacing:29.194598px;}
.ls32{letter-spacing:29.218328px;}
.ls34{letter-spacing:29.224328px;}
.ls5f{letter-spacing:29.266330px;}
.lsb0{letter-spacing:29.338061px;}
.lsa9{letter-spacing:29.408127px;}
.ls73{letter-spacing:29.481523px;}
.ls21{letter-spacing:29.911910px;}
.ls92{letter-spacing:29.983642px;}
.ls58{letter-spacing:30.127104px;}
.ls46{letter-spacing:30.139008px;}
.ls86{letter-spacing:30.198835px;}
.ls76{letter-spacing:30.270566px;}
.ls38{letter-spacing:30.414029px;}
.ls67{letter-spacing:30.485760px;}
.ls4e{letter-spacing:30.557491px;}
.lsaf{letter-spacing:30.710915px;}
.lsab{letter-spacing:30.716915px;}
.ls88{letter-spacing:30.844416px;}
.ls8e{letter-spacing:31.131341px;}
.ls2{letter-spacing:31.489997px;}
.ls78{letter-spacing:31.561728px;}
.ls51{letter-spacing:31.633459px;}
.lsb1{letter-spacing:31.920384px;}
.ls30{letter-spacing:32.063846px;}
.ls2f{letter-spacing:32.207309px;}
.ls90{letter-spacing:32.422502px;}
.ls52{letter-spacing:32.630915px;}
.lsb2{letter-spacing:32.709427px;}
.lsa2{letter-spacing:32.924621px;}
.ls61{letter-spacing:33.068083px;}
.ls79{letter-spacing:33.355008px;}
.ls99{letter-spacing:33.470915px;}
.ls63{letter-spacing:33.510103px;}
.ls3f{letter-spacing:33.706328px;}
.ls91{letter-spacing:33.785395px;}
.ls41{letter-spacing:33.844328px;}
.ls84{letter-spacing:33.928858px;}
.ls60{letter-spacing:34.000589px;}
.ls9{letter-spacing:34.130915px;}
.ls80{letter-spacing:34.789632px;}
.ls1e{letter-spacing:35.148288px;}
.ls64{letter-spacing:35.650406px;}
.lsa5{letter-spacing:35.912915px;}
.lsa6{letter-spacing:35.918915px;}
.ls16{letter-spacing:36.009062px;}
.ls82{letter-spacing:36.224256px;}
.ls7c{letter-spacing:36.367718px;}
.lsb3{letter-spacing:36.439450px;}
.lsba{letter-spacing:36.826328px;}
.lsa1{letter-spacing:37.085030px;}
.lsb9{letter-spacing:37.443686px;}
.lsa3{letter-spacing:38.089267px;}
.lsa7{letter-spacing:38.878310px;}
.ls81{letter-spacing:39.248915px;}
.ls7d{letter-spacing:41.532365px;}
.ls7e{letter-spacing:41.891021px;}
.lsb{letter-spacing:143.460103px;}
.ls4b{letter-spacing:152.428800px;}
.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;}
}
.ws58{word-spacing:-71.731200px;}
.ws4e{word-spacing:-59.823821px;}
.wsbd{word-spacing:-59.752090px;}
.ws7c{word-spacing:-58.747853px;}
.ws44{word-spacing:-55.806874px;}
.wsd0{word-spacing:-52.865894px;}
.ws4b{word-spacing:-51.861658px;}
.ws40{word-spacing:-51.789926px;}
.ws5f{word-spacing:-51.503002px;}
.wsac{word-spacing:-50.642227px;}
.ws89{word-spacing:-44.688538px;}
.ws9f{word-spacing:-43.684301px;}
.ws5a{word-spacing:-41.747558px;}
.ws7b{word-spacing:-41.173709px;}
.wsd1{word-spacing:-39.452160px;}
.ws65{word-spacing:-22.416000px;}
.ws57{word-spacing:-19.510886px;}
.ws29{word-spacing:-17.932800px;}
.wsf7{word-spacing:-14.111859px;}
.ws88{word-spacing:-12.050842px;}
.wsfd{word-spacing:-7.347567px;}
.wsc0{word-spacing:-4.483200px;}
.ws71{word-spacing:-3.945216px;}
.wsc1{word-spacing:-3.873485px;}
.ws2b{word-spacing:-3.443098px;}
.ws62{word-spacing:-3.407232px;}
.wsa2{word-spacing:-3.299635px;}
.ws63{word-spacing:-2.940979px;}
.ws98{word-spacing:-2.797517px;}
.ws69{word-spacing:-2.761651px;}
.ws74{word-spacing:-2.725786px;}
.ws87{word-spacing:-2.582323px;}
.wsc6{word-spacing:-2.438861px;}
.ws6b{word-spacing:-2.367130px;}
.ws8b{word-spacing:-2.223667px;}
.ws8c{word-spacing:-2.151936px;}
.ws20{word-spacing:-2.008474px;}
.ws22{word-spacing:-1.936742px;}
.ws1f{word-spacing:-1.865011px;}
.wseb{word-spacing:-1.506355px;}
.wse0{word-spacing:-1.362893px;}
.ws8e{word-spacing:-1.219430px;}
.ws72{word-spacing:-1.075968px;}
.ws107{word-spacing:-0.932506px;}
.wsc8{word-spacing:-0.717312px;}
.ws3c{word-spacing:-0.645581px;}
.wsa4{word-spacing:-0.573850px;}
.wsa3{word-spacing:-0.502118px;}
.ws3d{word-spacing:-0.430387px;}
.ws3f{word-spacing:-0.358656px;}
.wse7{word-spacing:-0.143462px;}
.ws42{word-spacing:-0.071731px;}
.wsfb{word-spacing:-0.047821px;}
.ws1b{word-spacing:0.000000px;}
.wsf9{word-spacing:0.071731px;}
.ws67{word-spacing:0.286925px;}
.ws66{word-spacing:0.322790px;}
.ws32{word-spacing:0.358656px;}
.ws2c{word-spacing:0.430387px;}
.wsdd{word-spacing:0.502118px;}
.wsa5{word-spacing:0.573850px;}
.wse1{word-spacing:0.645581px;}
.ws26{word-spacing:0.717312px;}
.wsd2{word-spacing:0.789043px;}
.ws64{word-spacing:0.860774px;}
.ws8a{word-spacing:0.932506px;}
.wse2{word-spacing:0.968371px;}
.wsd3{word-spacing:1.004237px;}
.wsf3{word-spacing:1.147699px;}
.wsb1{word-spacing:1.219430px;}
.ws97{word-spacing:1.362893px;}
.wsb0{word-spacing:1.470490px;}
.ws10f{word-spacing:1.578086px;}
.ws10d{word-spacing:1.649818px;}
.ws21{word-spacing:1.721549px;}
.ws99{word-spacing:2.080205px;}
.ws77{word-spacing:2.223667px;}
.ws14{word-spacing:2.295398px;}
.wsb8{word-spacing:2.331264px;}
.ws109{word-spacing:2.367130px;}
.ws7d{word-spacing:2.438861px;}
.ws27{word-spacing:2.510592px;}
.ws19{word-spacing:2.582323px;}
.wse5{word-spacing:2.654054px;}
.ws59{word-spacing:2.725786px;}
.ws101{word-spacing:2.797517px;}
.ws38{word-spacing:3.084442px;}
.wsd{word-spacing:3.154912px;}
.ws28{word-spacing:3.156173px;}
.wsf5{word-spacing:3.227904px;}
.ws49{word-spacing:3.299635px;}
.ws102{word-spacing:3.371366px;}
.wsdf{word-spacing:3.407232px;}
.ws104{word-spacing:3.443098px;}
.wsd4{word-spacing:3.550694px;}
.ws8f{word-spacing:3.586560px;}
.ws2{word-spacing:3.613094px;}
.ws7e{word-spacing:3.658291px;}
.ws1{word-spacing:3.678549px;}
.ws54{word-spacing:3.730022px;}
.ws91{word-spacing:3.801754px;}
.ws15{word-spacing:3.873485px;}
.ws12{word-spacing:3.945216px;}
.ws5e{word-spacing:4.016947px;}
.ws2e{word-spacing:4.088678px;}
.ws9d{word-spacing:4.160410px;}
.ws78{word-spacing:4.303872px;}
.ws1d{word-spacing:4.447334px;}
.ws11{word-spacing:4.483200px;}
.wsca{word-spacing:4.554931px;}
.wsaa{word-spacing:4.590797px;}
.ws9e{word-spacing:4.662528px;}
.wsc5{word-spacing:4.698394px;}
.wsb2{word-spacing:4.734259px;}
.ws6{word-spacing:4.791277px;}
.wsa0{word-spacing:4.805990px;}
.wsf{word-spacing:4.856731px;}
.ws61{word-spacing:4.877722px;}
.wsa8{word-spacing:4.949453px;}
.wse6{word-spacing:5.021184px;}
.wsbe{word-spacing:5.128781px;}
.wsa9{word-spacing:5.272243px;}
.ws3a{word-spacing:5.379825px;}
.ws10a{word-spacing:5.379840px;}
.wsb9{word-spacing:5.451571px;}
.wse8{word-spacing:5.523302px;}
.ws1e{word-spacing:5.595034px;}
.ws60{word-spacing:5.630899px;}
.wsec{word-spacing:5.666765px;}
.wsf2{word-spacing:5.810227px;}
.wsa6{word-spacing:5.881958px;}
.ws9b{word-spacing:5.953690px;}
.ws90{word-spacing:6.025421px;}
.ws106{word-spacing:6.097152px;}
.ws110{word-spacing:6.168883px;}
.ws3b{word-spacing:6.240614px;}
.ws81{word-spacing:6.312346px;}
.ws82{word-spacing:6.384077px;}
.ws75{word-spacing:6.455775px;}
.ws76{word-spacing:6.455808px;}
.ws3e{word-spacing:6.527539px;}
.ws25{word-spacing:6.599270px;}
.ws6a{word-spacing:6.671002px;}
.ws79{word-spacing:6.814464px;}
.wsc7{word-spacing:6.886195px;}
.ws8{word-spacing:7.016733px;}
.ws10e{word-spacing:7.101389px;}
.wsc2{word-spacing:7.137254px;}
.ws1a{word-spacing:7.173120px;}
.wsae{word-spacing:7.244851px;}
.ws5{word-spacing:7.344006px;}
.ws2f{word-spacing:7.388314px;}
.ws83{word-spacing:7.424179px;}
.wsee{word-spacing:7.460045px;}
.wsef{word-spacing:7.531776px;}
.ws10b{word-spacing:7.603507px;}
.ws9{word-spacing:7.605825px;}
.wsbf{word-spacing:7.675238px;}
.wsab{word-spacing:7.746970px;}
.ws33{word-spacing:7.818701px;}
.ws2d{word-spacing:7.890432px;}
.ws13{word-spacing:7.926298px;}
.ws24{word-spacing:7.962163px;}
.ws23{word-spacing:8.033894px;}
.ws4{word-spacing:8.064007px;}
.ws6c{word-spacing:8.105626px;}
.ws6d{word-spacing:8.177357px;}
.wscf{word-spacing:8.249088px;}
.ws5c{word-spacing:8.320819px;}
.wsad{word-spacing:8.356685px;}
.wse{word-spacing:8.391280px;}
.ws10c{word-spacing:8.464282px;}
.ws9c{word-spacing:8.607744px;}
.ws68{word-spacing:8.679475px;}
.wsd5{word-spacing:8.751206px;}
.ws7f{word-spacing:8.787072px;}
.wsf8{word-spacing:8.799141px;}
.wsea{word-spacing:8.822938px;}
.wsfc{word-spacing:8.847907px;}
.ws46{word-spacing:8.858803px;}
.ws36{word-spacing:8.894669px;}
.ws17{word-spacing:9.038131px;}
.ws35{word-spacing:9.109862px;}
.ws4f{word-spacing:9.181594px;}
.ws9a{word-spacing:9.253325px;}
.ws18{word-spacing:9.325056px;}
.wsd9{word-spacing:9.396787px;}
.wsce{word-spacing:9.432653px;}
.ws85{word-spacing:9.468518px;}
.ws5b{word-spacing:9.576115px;}
.wse4{word-spacing:9.611981px;}
.ws7{word-spacing:9.700372px;}
.wsdb{word-spacing:9.827174px;}
.wsc{word-spacing:10.027645px;}
.ws73{word-spacing:10.042368px;}
.ws7a{word-spacing:10.114099px;}
.ws10{word-spacing:10.224009px;}
.wsaf{word-spacing:10.257562px;}
.wsed{word-spacing:10.277594px;}
.wse9{word-spacing:10.329293px;}
.wsfe{word-spacing:10.436890px;}
.wsb{word-spacing:10.551282px;}
.ws4c{word-spacing:10.687949px;}
.wsd8{word-spacing:10.795546px;}
.ws4a{word-spacing:10.831411px;}
.ws4d{word-spacing:10.903142px;}
.ws93{word-spacing:10.974874px;}
.wsc9{word-spacing:11.118336px;}
.ws53{word-spacing:11.190067px;}
.ws5d{word-spacing:11.261798px;}
.wsc4{word-spacing:11.405261px;}
.wscc{word-spacing:11.476992px;}
.ws1c{word-spacing:11.548723px;}
.ws41{word-spacing:11.620454px;}
.ws2a{word-spacing:11.763917px;}
.ws47{word-spacing:11.835648px;}
.ws48{word-spacing:11.907379px;}
.ws50{word-spacing:11.979110px;}
.ws30{word-spacing:12.050842px;}
.wsde{word-spacing:12.122573px;}
.wsda{word-spacing:12.194304px;}
.wsf6{word-spacing:12.291141px;}
.ws3{word-spacing:12.318556px;}
.ws96{word-spacing:12.481229px;}
.ws94{word-spacing:12.552960px;}
.ws95{word-spacing:12.624691px;}
.ws55{word-spacing:12.839885px;}
.ws70{word-spacing:12.911616px;}
.wsd6{word-spacing:12.983347px;}
.wsf4{word-spacing:13.126810px;}
.wsc3{word-spacing:13.162675px;}
.wscb{word-spacing:13.234406px;}
.wsa{word-spacing:13.300375px;}
.wsf0{word-spacing:13.342003px;}
.wsbb{word-spacing:13.485466px;}
.ws80{word-spacing:13.736525px;}
.ws100{word-spacing:13.772390px;}
.wsff{word-spacing:13.844122px;}
.ws34{word-spacing:13.915853px;}
.ws31{word-spacing:13.987584px;}
.ws39{word-spacing:14.131046px;}
.ws103{word-spacing:14.202778px;}
.ws8d{word-spacing:14.346240px;}
.ws56{word-spacing:14.417971px;}
.wsa1{word-spacing:14.561434px;}
.ws37{word-spacing:14.776627px;}
.ws6e{word-spacing:14.848358px;}
.wsa7{word-spacing:14.991821px;}
.wsba{word-spacing:15.458074px;}
.wse3{word-spacing:15.565670px;}
.ws45{word-spacing:15.637402px;}
.wsbc{word-spacing:15.996058px;}
.wsfa{word-spacing:16.070433px;}
.ws84{word-spacing:16.426445px;}
.wsb4{word-spacing:16.569907px;}
.ws92{word-spacing:17.215488px;}
.wsf1{word-spacing:18.219725px;}
.wsdc{word-spacing:18.506650px;}
.wsb5{word-spacing:18.793574px;}
.wsb6{word-spacing:18.865306px;}
.wsb3{word-spacing:19.044634px;}
.ws6f{word-spacing:19.797811px;}
.ws43{word-spacing:19.869542px;}
.wsb7{word-spacing:21.734554px;}
.ws108{word-spacing:22.259512px;}
.ws52{word-spacing:23.312640px;}
.ws105{word-spacing:23.384371px;}
.ws86{word-spacing:28.405555px;}
.ws0{word-spacing:37.316475px;}
.wsd7{word-spacing:38.878310px;}
.ws51{word-spacing:69.937725px;}
.ws16{word-spacing:83.925075px;}
.wscd{word-spacing:152.357069px;}
._2d{margin-left:-38.058202px;}
._33{margin-left:-32.293409px;}
._1e{margin-left:-22.476317px;}
._2f{margin-left:-20.156764px;}
._27{margin-left:-11.907379px;}
._26{margin-left:-10.759680px;}
._1a{margin-left:-8.091257px;}
._2b{margin-left:-6.742733px;}
._5{margin-left:-5.432732px;}
._15{margin-left:-4.368437px;}
._1{margin-left:-3.347325px;}
._3{margin-left:-1.832729px;}
._4{width:1.832729px;}
._2{width:3.223350px;}
._21{width:4.877722px;}
._2c{width:5.891216px;}
._24{width:16.319519px;}
._11{width:17.406640px;}
._e{width:18.689561px;}
._18{width:20.693780px;}
._f{width:21.853582px;}
._2a{width:23.051896px;}
._19{width:24.101683px;}
._25{width:26.110157px;}
._a{width:27.818205px;}
._7{width:29.454570px;}
._9{width:31.100075px;}
._b{width:32.727300px;}
._8{width:33.774574px;}
._23{width:34.892629px;}
._13{width:36.041345px;}
._16{width:37.143319px;}
._10{width:38.208688px;}
._6{width:40.058215px;}
._c{width:41.962752px;}
._12{width:43.110451px;}
._1f{width:44.114688px;}
._29{width:45.230105px;}
._1c{width:46.983936px;}
._d{width:48.193658px;}
._30{width:49.269626px;}
._0{width:50.333850px;}
._1b{width:51.958505px;}
._2e{width:53.639080px;}
._28{width:55.326331px;}
._31{width:56.682058px;}
._1d{width:58.493210px;}
._14{width:60.809218px;}
._20{width:64.698110px;}
._32{width:70.957564px;}
._17{width:96.836850px;}
._22{width:116.203950px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:47.820600px;}
.fs1{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y20{bottom:63.168000px;}
.yc3{bottom:108.000000px;}
.y19a{bottom:110.299500px;}
.y1f{bottom:117.043500px;}
.y48{bottom:119.091000px;}
.yc2{bottom:129.669000px;}
.y62{bottom:130.062000px;}
.y199{bottom:131.967000px;}
.y116{bottom:136.690500px;}
.ydd{bottom:137.035500px;}
.y1e{bottom:138.712500px;}
.y47{bottom:140.760000px;}
.y94{bottom:143.997000px;}
.yfe{bottom:151.338000px;}
.y61{bottom:151.731000px;}
.y198{bottom:153.636000px;}
.y14b{bottom:156.700500px;}
.y1d{bottom:160.381500px;}
.y131{bottom:163.683000px;}
.y115{bottom:165.379500px;}
.y93{bottom:165.666000px;}
.yc1{bottom:167.112000px;}
.yfd{bottom:173.007000px;}
.ydc{bottom:173.649000px;}
.y46{bottom:174.010500px;}
.y197{bottom:175.305000px;}
.y14a{bottom:178.368000px;}
.y1c{bottom:182.049000px;}
.y1cb{bottom:182.061000px;}
.y60{bottom:183.114000px;}
.y1b4{bottom:183.828000px;}
.y130{bottom:185.352000px;}
.y92{bottom:187.335000px;}
.ydb{bottom:195.318000px;}
.y196{bottom:196.974000px;}
.ya7{bottom:197.061000px;}
.y17d{bottom:197.322000px;}
.y149{bottom:200.037000px;}
.y114{bottom:201.543000px;}
.y164{bottom:203.601000px;}
.yc0{bottom:204.555000px;}
.y5f{bottom:204.781500px;}
.y1b3{bottom:205.497000px;}
.yfc{bottom:206.256000px;}
.y1ca{bottom:216.709500px;}
.y12f{bottom:218.602500px;}
.ya6{bottom:218.730000px;}
.y1b{bottom:221.476500px;}
.y17c{bottom:223.243500px;}
.y163{bottom:225.270000px;}
.y45{bottom:226.002000px;}
.ybf{bottom:226.224000px;}
.y91{bottom:226.762500px;}
.y7b{bottom:229.987500px;}
.yda{bottom:231.930000px;}
.y195{bottom:233.586000px;}
.y148{bottom:236.650500px;}
.y113{bottom:237.705000px;}
.y5e{bottom:238.032000px;}
.ya5{bottom:240.399000px;}
.y1b2{bottom:240.735000px;}
.y162{bottom:246.939000px;}
.y44{bottom:247.671000px;}
.ybe{bottom:247.891500px;}
.y17b{bottom:249.163500px;}
.y1c9{bottom:251.359500px;}
.y7a{bottom:251.656500px;}
.y194{bottom:255.255000px;}
.yfb{bottom:257.443500px;}
.y112{bottom:259.372500px;}
.y1df{bottom:259.701000px;}
.yd9{bottom:268.543500px;}
.y43{bottom:269.340000px;}
.ybd{bottom:269.560500px;}
.y12e{bottom:270.147000px;}
.y1b1{bottom:273.225000px;}
.y147{bottom:273.262500px;}
.y79{bottom:273.325500px;}
.y17a{bottom:275.085000px;}
.ya4{bottom:277.011000px;}
.yfa{bottom:279.111000px;}
.y161{bottom:280.188000px;}
.y1de{bottom:281.370000px;}
.y1a{bottom:281.377500px;}
.y1c8{bottom:286.009500px;}
.y90{bottom:286.662000px;}
.y5d{bottom:290.025000px;}
.y42{bottom:291.009000px;}
.ybc{bottom:291.229500px;}
.y12d{bottom:291.816000px;}
.y193{bottom:291.868500px;}
.y146{bottom:294.931500px;}
.y78{bottom:294.994500px;}
.y111{bottom:295.536000px;}
.yf9{bottom:300.780000px;}
.y179{bottom:301.005000px;}
.y1dd{bottom:303.039000px;}
.y19{bottom:303.046500px;}
.yd8{bottom:305.155500px;}
.y1b0{bottom:305.715000px;}
.y8f{bottom:308.331000px;}
.y5c{bottom:311.694000px;}
.y41{bottom:312.678000px;}
.ybb{bottom:312.898500px;}
.y192{bottom:313.537500px;}
.ya3{bottom:313.624500px;}
.y1c7{bottom:316.731000px;}
.y110{bottom:317.203500px;}
.yf8{bottom:322.449000px;}
.y12c{bottom:325.830000px;}
.y145{bottom:326.314500px;}
.y178{bottom:326.926500px;}
.y1af{bottom:327.384000px;}
.y77{bottom:328.243500px;}
.y8e{bottom:330.000000px;}
.y160{bottom:331.144500px;}
.y18{bottom:333.495000px;}
.y40{bottom:334.345500px;}
.yba{bottom:334.567500px;}
.y1dc{bottom:336.289500px;}
.yd7{bottom:336.538500px;}
.yf7{bottom:344.118000px;}
.y10f{bottom:345.894000px;}
.y12b{bottom:347.499000px;}
.y144{bottom:347.982000px;}
.y1c6{bottom:349.981500px;}
.y191{bottom:350.149500px;}
.ya2{bottom:350.236500px;}
.y5b{bottom:351.295500px;}
.y15f{bottom:352.813500px;}
.y177{bottom:357.099000px;}
.yd6{bottom:358.207500px;}
.y1ae{bottom:362.622000px;}
.y8d{bottom:363.250500px;}
.yf6{bottom:365.787000px;}
.y190{bottom:371.818500px;}
.y3f{bottom:373.773000px;}
.yb9{bottom:373.993500px;}
.yd5{bottom:379.875000px;}
.y76{bottom:380.236500px;}
.y12a{bottom:380.748000px;}
.y10e{bottom:382.056000px;}
.ya1{bottom:386.850000px;}
.yf5{bottom:387.454500px;}
.y143{bottom:387.583500px;}
.y1db{bottom:388.281000px;}
.y17{bottom:390.654000px;}
.y5a{bottom:390.897000px;}
.y15e{bottom:392.241000px;}
.y1ad{bottom:395.113500px;}
.y1c5{bottom:400.960500px;}
.yd4{bottom:401.544000px;}
.y75{bottom:401.905500px;}
.y176{bottom:403.225500px;}
.y18f{bottom:405.069000px;}
.yf4{bottom:409.123500px;}
.y1da{bottom:409.950000px;}
.y16{bottom:410.979000px;}
.y8c{bottom:415.242000px;}
.y1ac{bottom:416.781000px;}
.y10d{bottom:418.218000px;}
.y1c4{bottom:422.629500px;}
.yd3{bottom:423.213000px;}
.ya0{bottom:423.462000px;}
.y59{bottom:424.147500px;}
.y175{bottom:424.894500px;}
.y142{bottom:427.185000px;}
.y15{bottom:431.302500px;}
.y1d9{bottom:431.619000px;}
.y129{bottom:432.294000px;}
.yb8{bottom:433.576500px;}
.y3e{bottom:433.674000px;}
.y8b{bottom:436.911000px;}
.y1ab{bottom:438.450000px;}
.y74{bottom:438.517500px;}
.y10c{bottom:439.887000px;}
.yf3{bottom:441.054000px;}
.y1c3{bottom:444.297000px;}
.yd2{bottom:444.882000px;}
.y15d{bottom:451.104000px;}
.y14{bottom:451.626000px;}
.y1d8{bottom:453.288000px;}
.yb7{bottom:455.244000px;}
.y3d{bottom:455.343000px;}
.y18e{bottom:457.060500px;}
.y174{bottom:458.145000px;}
.y141{bottom:460.435500px;}
.yf2{bottom:462.723000px;}
.y9f{bottom:463.063500px;}
.y1c2{bottom:465.966000px;}
.y128{bottom:466.308000px;}
.y10b{bottom:468.577500px;}
.y13{bottom:471.949500px;}
.y15c{bottom:472.773000px;}
.y73{bottom:475.131000px;}
.y58{bottom:476.139000px;}
.y8a{bottom:476.512500px;}
.y3c{bottom:477.012000px;}
.y18d{bottom:478.729500px;}
.yd1{bottom:484.483500px;}
.y1aa{bottom:484.503000px;}
.y1d7{bottom:486.538500px;}
.y1c1{bottom:487.635000px;}
.y127{bottom:487.975500px;}
.yb6{bottom:490.006500px;}
.y12{bottom:492.273000px;}
.y15b{bottom:494.442000px;}
.yf1{bottom:494.652000px;}
.y10a{bottom:497.268000px;}
.y3b{bottom:498.679500px;}
.y18c{bottom:500.398500px;}
.y9e{bottom:502.665000px;}
.y1a9{bottom:506.172000px;}
.y173{bottom:510.136500px;}
.y72{bottom:511.743000px;}
.y140{bottom:512.428500px;}
.y11{bottom:512.598000px;}
.y57{bottom:515.740500px;}
.y89{bottom:516.114000px;}
.yf0{bottom:516.321000px;}
.y3a{bottom:520.348500px;}
.y126{bottom:521.226000px;}
.yd0{bottom:524.085000px;}
.yb5{bottom:526.003500px;}
.y1c0{bottom:527.062500px;}
.y15a{bottom:527.692500px;}
.y172{bottom:531.805500px;}
.y10{bottom:532.921500px;}
.y109{bottom:533.430000px;}
.y13f{bottom:534.097500px;}
.y9d{bottom:535.915500px;}
.y56{bottom:537.409500px;}
.y1d6{bottom:538.530000px;}
.y1a8{bottom:538.662000px;}
.y18b{bottom:539.826000px;}
.y39{bottom:542.017500px;}
.y71{bottom:548.356500px;}
.y88{bottom:549.364500px;}
.yef{bottom:551.373000px;}
.yf{bottom:553.245000px;}
.y13e{bottom:555.766500px;}
.y1bf{bottom:559.939500px;}
.y1d5{bottom:560.199000px;}
.ycf{bottom:560.697000px;}
.yb4{bottom:561.999000px;}
.y38{bottom:563.686500px;}
.y171{bottom:568.419000px;}
.y108{bottom:569.592000px;}
.y55{bottom:570.660000px;}
.y18a{bottom:572.703000px;}
.y125{bottom:572.772000px;}
.yee{bottom:573.042000px;}
.ye{bottom:573.568500px;}
.y1a7{bottom:573.900000px;}
.y159{bottom:578.649000px;}
.y70{bottom:581.607000px;}
.y1d4{bottom:581.868000px;}
.yce{bottom:582.366000px;}
.y37{bottom:585.355500px;}
.y9c{bottom:587.908500px;}
.y170{bottom:590.086500px;}
.y107{bottom:591.261000px;}
.yd{bottom:593.892000px;}
.y124{bottom:594.441000px;}
.y13d{bottom:595.192500px;}
.yb3{bottom:597.994500px;}
.y87{bottom:601.357500px;}
.yed{bottom:604.971000px;}
.y36{bottom:607.023000px;}
.y1a6{bottom:609.138000px;}
.y158{bottom:609.243000px;}
.y9b{bottom:609.576000px;}
.yc{bottom:614.217000px;}
.y1d3{bottom:615.118500px;}
.y1be{bottom:618.825000px;}
.ycd{bottom:618.979500px;}
.y54{bottom:622.653000px;}
.y16f{bottom:623.337000px;}
.y106{bottom:627.423000px;}
.y123{bottom:628.453500px;}
.y35{bottom:628.692000px;}
.y189{bottom:632.602500px;}
.y6f{bottom:633.598500px;}
.yb2{bottom:633.991500px;}
.yb{bottom:634.540500px;}
.yec{bottom:636.901500px;}
.y86{bottom:637.969500px;}
.y1bd{bottom:640.494000px;}
.y1a5{bottom:641.629500px;}
.y157{bottom:641.823000px;}
.y122{bottom:650.122500px;}
.y34{bottom:650.361000px;}
.y9a{bottom:650.673000px;}
.y188{bottom:654.271500px;}
.ya{bottom:654.864000px;}
.y13c{bottom:655.093500px;}
.y6e{bottom:655.267500px;}
.ycc{bottom:655.591500px;}
.y105{bottom:656.113500px;}
.y53{bottom:659.265000px;}
.y1bc{bottom:662.163000px;}
.y1d2{bottom:667.111500px;}
.yb1{bottom:668.754000px;}
.yeb{bottom:671.953500px;}
.y33{bottom:672.030000px;}
.y156{bottom:674.403000px;}
.y85{bottom:674.583000px;}
.y9{bottom:675.187500px;}
.y16e{bottom:675.330000px;}
.y187{bottom:675.940500px;}
.y13b{bottom:676.762500px;}
.y6d{bottom:676.936500px;}
.y121{bottom:683.373000px;}
.y99{bottom:687.285000px;}
.y1a4{bottom:687.681000px;}
.y1d1{bottom:688.779000px;}
.yb0{bottom:690.421500px;}
.ycb{bottom:692.203500px;}
.y104{bottom:692.275500px;}
.y1bb{bottom:692.886000px;}
.y32{bottom:693.699000px;}
.y8{bottom:695.511000px;}
.y52{bottom:695.878500px;}
.y155{bottom:696.072000px;}
.y16d{bottom:696.999000px;}
.y186{bottom:697.609500px;}
.y13a{bottom:698.431500px;}
.y6c{bottom:698.605500px;}
.yea{bottom:703.882500px;}
.y1a3{bottom:709.350000px;}
.y84{bottom:711.195000px;}
.y1ba{bottom:714.553500px;}
.y31{bottom:715.368000px;}
.y7{bottom:715.836000px;}
.y16c{bottom:718.668000px;}
.y185{bottom:719.277000px;}
.yaf{bottom:723.672000px;}
.y98{bottom:723.898500px;}
.y1d0{bottom:725.392500px;}
.y154{bottom:729.322500px;}
.y1a2{bottom:731.019000px;}
.y103{bottom:731.568000px;}
.y139{bottom:731.680500px;}
.yca{bottom:731.805000px;}
.y83{bottom:732.864000px;}
.ye9{bottom:732.924000px;}
.y120{bottom:734.919000px;}
.y51{bottom:735.480000px;}
.y30{bottom:737.035500px;}
.y6b{bottom:738.033000px;}
.y16b{bottom:740.337000px;}
.y184{bottom:740.946000px;}
.y6{bottom:746.178000px;}
.y1b9{bottom:749.203500px;}
.ye8{bottom:754.593000px;}
.y11f{bottom:756.586500px;}
.y2f{bottom:758.704500px;}
.y97{bottom:760.510500px;}
.y1cf{bottom:762.004500px;}
.y183{bottom:762.615000px;}
.y1a1{bottom:763.509000px;}
.y102{bottom:764.818500px;}
.y82{bottom:766.114500px;}
.yc9{bottom:771.406500px;}
.y50{bottom:775.081500px;}
.yae{bottom:775.347000px;}
.ye7{bottom:776.262000px;}
.y16a{bottom:776.949000px;}
.y11e{bottom:778.255500px;}
.y153{bottom:780.279000px;}
.y2e{bottom:780.373500px;}
.y138{bottom:783.673500px;}
.y1b8{bottom:783.853500px;}
.y182{bottom:784.284000px;}
.y96{bottom:793.761000px;}
.yad{bottom:797.014500px;}
.y6a{bottom:797.932500px;}
.y169{bottom:798.618000px;}
.y1a0{bottom:798.747000px;}
.y11d{bottom:799.924500px;}
.y2d{bottom:802.042500px;}
.y137{bottom:805.342500px;}
.y181{bottom:805.953000px;}
.yc8{bottom:808.020000px;}
.ye6{bottom:808.191000px;}
.y4f{bottom:808.330500px;}
.y152{bottom:810.873000px;}
.y5{bottom:812.266500px;}
.y1b7{bottom:814.576500px;}
.y101{bottom:816.579000px;}
.y81{bottom:818.107500px;}
.y69{bottom:819.601500px;}
.y168{bottom:820.287000px;}
.y11c{bottom:821.593500px;}
.y2c{bottom:823.711500px;}
.y180{bottom:827.622000px;}
.yc7{bottom:829.689000px;}
.ye5{bottom:829.860000px;}
.yac{bottom:833.011500px;}
.y151{bottom:833.319000px;}
.y19f{bottom:833.985000px;}
.y1ce{bottom:835.230000px;}
.y68{bottom:841.270500px;}
.y136{bottom:841.954500px;}
.y150{bottom:844.078500px;}
.y2b{bottom:845.380500px;}
.y95{bottom:845.754000px;}
.y1b6{bottom:847.827000px;}
.y17f{bottom:849.289500px;}
.y167{bottom:853.536000px;}
.y100{bottom:854.602500px;}
.y80{bottom:854.719500px;}
.y4{bottom:856.740000px;}
.y1cd{bottom:856.899000px;}
.y4e{bottom:860.323500px;}
.y11b{bottom:861.021000px;}
.ye4{bottom:863.110500px;}
.y135{bottom:863.623500px;}
.yc6{bottom:866.301000px;}
.y19e{bottom:866.476500px;}
.y2a{bottom:867.048000px;}
.yab{bottom:869.007000px;}
.y14f{bottom:870.678000px;}
.y17e{bottom:870.958500px;}
.y67{bottom:882.366000px;}
.y3{bottom:887.673000px;}
.y29{bottom:888.717000px;}
.y1cc{bottom:890.149500px;}
.y7f{bottom:891.333000px;}
.y14e{bottom:892.347000px;}
.yff{bottom:892.627500px;}
.y134{bottom:896.874000px;}
.y1b5{bottom:898.804500px;}
.y4d{bottom:899.925000px;}
.yaa{bottom:902.257500px;}
.yc5{bottom:902.914500px;}
.y166{bottom:905.529000px;}
.y28{bottom:910.386000px;}
.y19d{bottom:912.528000px;}
.ye3{bottom:914.296500px;}
.y66{bottom:918.979500px;}
.y11a{bottom:920.473500px;}
.y14d{bottom:925.597500px;}
.y165{bottom:927.198000px;}
.y7e{bottom:927.945000px;}
.y27{bottom:932.055000px;}
.y19c{bottom:934.197000px;}
.ye2{bottom:935.965500px;}
.y4c{bottom:939.526500px;}
.y119{bottom:942.142500px;}
.y133{bottom:948.867000px;}
.y2{bottom:952.230000px;}
.y26{bottom:953.724000px;}
.ya9{bottom:953.931000px;}
.y65{bottom:955.591500px;}
.ye1{bottom:957.634500px;}
.y4b{bottom:961.195500px;}
.y118{bottom:963.810000px;}
.y19b{bottom:967.447500px;}
.y7d{bottom:967.546500px;}
.y132{bottom:970.536000px;}
.y25{bottom:975.393000px;}
.y14c{bottom:976.554000px;}
.yc4{bottom:979.128000px;}
.ye0{bottom:979.302000px;}
.y4a{bottom:982.864500px;}
.y117{bottom:985.479000px;}
.y1{bottom:989.589000px;}
.ya8{bottom:991.374000px;}
.y64{bottom:992.205000px;}
.y24{bottom:997.060500px;}
.ydf{bottom:1000.971000px;}
.y7c{bottom:1007.148000px;}
.y23{bottom:1018.729500px;}
.y49{bottom:1022.466000px;}
.yde{bottom:1022.640000px;}
.y63{bottom:1028.817000px;}
.y22{bottom:1040.398500px;}
.y21{bottom:1062.067500px;}
.ha{height:33.665702px;}
.h4{height:45.687311px;}
.h2{height:49.090950px;}
.h8{height:49.781453px;}
.h5{height:53.798400px;}
.h7{height:56.586818px;}
.h3{height:64.557900px;}
.h6{height:77.469300px;}
.h9{height:82.489248px;}
.h1{height:87.650325px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:108.000000px;}
.x1{left:111.624000px;}
.xe{left:129.460500px;}
.xb{left:134.338500px;}
.x8{left:151.897500px;}
.x1a{left:168.090000px;}
.x7{left:176.443500px;}
.x1b{left:190.527000px;}
.x2{left:232.323000px;}
.x1e{left:305.973000px;}
.x22{left:310.180500px;}
.x12{left:317.590500px;}
.x13{left:334.231500px;}
.x21{left:337.686000px;}
.x14{left:339.582000px;}
.x19{left:347.764500px;}
.x18{left:350.203500px;}
.xd{left:357.210000px;}
.x4{left:373.341000px;}
.x1d{left:385.938000px;}
.x10{left:390.691500px;}
.x11{left:394.804500px;}
.x15{left:396.642000px;}
.x17{left:404.817000px;}
.x16{left:410.367000px;}
.x5{left:411.591000px;}
.x3{left:415.227000px;}
.xf{left:417.625500px;}
.x6{left:422.998500px;}
.xc{left:428.647500px;}
.x1c{left:450.220500px;}
.xa{left:454.611000px;}
.x1f{left:502.774500px;}
.x20{left:538.876500px;}
@media print{
.v6{vertical-align:-17.061333pt;}
.v4{vertical-align:-15.056000pt;}
.v3{vertical-align:-9.568000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:23.136000pt;}
.v1{vertical-align:26.325333pt;}
.v5{vertical-align:70.773333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000420pt;}
.ls4d{letter-spacing:0.001166pt;}
.lsb8{letter-spacing:0.001628pt;}
.lsad{letter-spacing:0.001734pt;}
.ls3e{letter-spacing:0.002324pt;}
.ls2a{letter-spacing:0.002452pt;}
.ls24{letter-spacing:0.002529pt;}
.ls59{letter-spacing:0.002690pt;}
.ls28{letter-spacing:0.002755pt;}
.ls1f{letter-spacing:0.006125pt;}
.ls85{letter-spacing:0.008684pt;}
.ls9e{letter-spacing:0.009964pt;}
.lsb7{letter-spacing:0.010289pt;}
.ls98{letter-spacing:0.010655pt;}
.ls36{letter-spacing:0.012611pt;}
.lsb6{letter-spacing:0.013225pt;}
.ls93{letter-spacing:0.021540pt;}
.ls94{letter-spacing:0.023680pt;}
.lsa4{letter-spacing:0.025230pt;}
.ls31{letter-spacing:0.026511pt;}
.ls55{letter-spacing:0.026860pt;}
.ls71{letter-spacing:0.026967pt;}
.ls7b{letter-spacing:0.030165pt;}
.ls6e{letter-spacing:0.031643pt;}
.ls83{letter-spacing:0.031724pt;}
.ls56{letter-spacing:0.956416pt;}
.ls11{letter-spacing:1.020177pt;}
.ls45{letter-spacing:1.721549pt;}
.ls8{letter-spacing:1.773384pt;}
.ls6{letter-spacing:1.785310pt;}
.ls97{letter-spacing:2.104115pt;}
.ls8d{letter-spacing:2.653258pt;}
.ls57{letter-spacing:2.654275pt;}
.lsf{letter-spacing:2.656092pt;}
.ls29{letter-spacing:2.657146pt;}
.ls7{letter-spacing:2.658591pt;}
.ls5a{letter-spacing:2.659608pt;}
.ls66{letter-spacing:2.661425pt;}
.ls65{letter-spacing:3.684413pt;}
.ls1a{letter-spacing:3.698142pt;}
.ls62{letter-spacing:3.708056pt;}
.ls68{letter-spacing:3.717356pt;}
.ls37{letter-spacing:3.761903pt;}
.ls96{letter-spacing:3.791684pt;}
.ls47{letter-spacing:4.527036pt;}
.ls5b{letter-spacing:4.590797pt;}
.ls23{letter-spacing:5.033181pt;}
.ls4a{letter-spacing:5.228407pt;}
.ls15{letter-spacing:5.292169pt;}
.ls50{letter-spacing:10.584337pt;}
.ls12{letter-spacing:10.648098pt;}
.ls2d{letter-spacing:13.286479pt;}
.ls48{letter-spacing:13.836151pt;}
.lsa8{letter-spacing:14.154957pt;}
.ls3a{letter-spacing:14.728806pt;}
.ls43{letter-spacing:15.238895pt;}
.ls1{letter-spacing:15.557700pt;}
.lsbb{letter-spacing:16.514116pt;}
.ls95{letter-spacing:16.705399pt;}
.ls3{letter-spacing:16.769161pt;}
.ls3c{letter-spacing:17.598054pt;}
.lse{letter-spacing:17.661815pt;}
.lsaa{letter-spacing:17.713891pt;}
.lsa{letter-spacing:17.725577pt;}
.ls9b{letter-spacing:17.853099pt;}
.ls33{letter-spacing:17.916860pt;}
.ls4{letter-spacing:18.490709pt;}
.ls8a{letter-spacing:18.594591pt;}
.ls8b{letter-spacing:18.599925pt;}
.ls5{letter-spacing:18.745754pt;}
.ls70{letter-spacing:18.873276pt;}
.ls6b{letter-spacing:19.192081pt;}
.lsae{letter-spacing:19.437258pt;}
.ls69{letter-spacing:19.447125pt;}
.ls6d{letter-spacing:19.510886pt;}
.ls2c{letter-spacing:19.765931pt;}
.ls13{letter-spacing:20.020975pt;}
.ls77{letter-spacing:20.212258pt;}
.ls44{letter-spacing:20.281181pt;}
.ls18{letter-spacing:20.365258pt;}
.ls1c{letter-spacing:20.366275pt;}
.ls10{letter-spacing:20.368092pt;}
.ls19{letter-spacing:20.370591pt;}
.ls9d{letter-spacing:20.525258pt;}
.ls8c{letter-spacing:20.531063pt;}
.lsd{letter-spacing:20.786108pt;}
.ls1d{letter-spacing:20.849869pt;}
.ls8f{letter-spacing:21.232435pt;}
.ls89{letter-spacing:21.296196pt;}
.ls3d{letter-spacing:21.359957pt;}
.ls49{letter-spacing:21.423718pt;}
.ls14{letter-spacing:21.487479pt;}
.ls6f{letter-spacing:21.517258pt;}
.ls9a{letter-spacing:21.551241pt;}
.ls74{letter-spacing:21.615002pt;}
.ls72{letter-spacing:21.678763pt;}
.ls54{letter-spacing:21.806285pt;}
.ls39{letter-spacing:21.933807pt;}
.ls53{letter-spacing:22.252612pt;}
.ls42{letter-spacing:22.316373pt;}
.ls27{letter-spacing:22.426758pt;}
.ls2e{letter-spacing:22.427812pt;}
.ls9c{letter-spacing:22.443895pt;}
.lsb5{letter-spacing:22.571418pt;}
.ls26{letter-spacing:22.745181pt;}
.ls5c{letter-spacing:22.762701pt;}
.ls87{letter-spacing:22.826462pt;}
.ls5e{letter-spacing:23.081506pt;}
.lsa0{letter-spacing:23.272789pt;}
.lsc{letter-spacing:23.466758pt;}
.ls9f{letter-spacing:23.470275pt;}
.ls4f{letter-spacing:24.037922pt;}
.ls5d{letter-spacing:24.101683pt;}
.ls3b{letter-spacing:24.165444pt;}
.lsac{letter-spacing:24.229205pt;}
.ls4c{letter-spacing:24.484250pt;}
.ls22{letter-spacing:24.548011pt;}
.ls35{letter-spacing:24.654514pt;}
.ls7a{letter-spacing:24.803055pt;}
.ls40{letter-spacing:24.930577pt;}
.ls75{letter-spacing:25.058099pt;}
.ls7f{letter-spacing:25.313143pt;}
.ls20{letter-spacing:25.376905pt;}
.ls6a{letter-spacing:25.440666pt;}
.ls1b{letter-spacing:25.504427pt;}
.ls6c{letter-spacing:25.568188pt;}
.ls2b{letter-spacing:25.744896pt;}
.ls25{letter-spacing:25.843847pt;}
.lsb4{letter-spacing:25.950754pt;}
.ls32{letter-spacing:25.971847pt;}
.ls34{letter-spacing:25.977181pt;}
.ls5f{letter-spacing:26.014515pt;}
.lsb0{letter-spacing:26.078276pt;}
.lsa9{letter-spacing:26.140558pt;}
.ls73{letter-spacing:26.205798pt;}
.ls21{letter-spacing:26.588365pt;}
.ls92{letter-spacing:26.652126pt;}
.ls58{letter-spacing:26.779648pt;}
.ls46{letter-spacing:26.790229pt;}
.ls86{letter-spacing:26.843409pt;}
.ls76{letter-spacing:26.907170pt;}
.ls38{letter-spacing:27.034692pt;}
.ls67{letter-spacing:27.098453pt;}
.ls4e{letter-spacing:27.162214pt;}
.lsaf{letter-spacing:27.298591pt;}
.lsab{letter-spacing:27.303925pt;}
.ls88{letter-spacing:27.417259pt;}
.ls8e{letter-spacing:27.672303pt;}
.ls2{letter-spacing:27.991108pt;}
.ls78{letter-spacing:28.054869pt;}
.ls51{letter-spacing:28.118630pt;}
.lsb1{letter-spacing:28.373675pt;}
.ls30{letter-spacing:28.501197pt;}
.ls2f{letter-spacing:28.628719pt;}
.ls90{letter-spacing:28.820002pt;}
.ls52{letter-spacing:29.005258pt;}
.lsb2{letter-spacing:29.075046pt;}
.lsa2{letter-spacing:29.266330pt;}
.ls61{letter-spacing:29.393852pt;}
.ls79{letter-spacing:29.648896pt;}
.ls99{letter-spacing:29.751925pt;}
.ls63{letter-spacing:29.786758pt;}
.ls3f{letter-spacing:29.961181pt;}
.ls91{letter-spacing:30.031462pt;}
.ls41{letter-spacing:30.083847pt;}
.ls84{letter-spacing:30.158985pt;}
.ls60{letter-spacing:30.222746pt;}
.ls9{letter-spacing:30.338591pt;}
.ls80{letter-spacing:30.924117pt;}
.ls1e{letter-spacing:31.242923pt;}
.ls64{letter-spacing:31.689250pt;}
.lsa5{letter-spacing:31.922591pt;}
.lsa6{letter-spacing:31.927925pt;}
.ls16{letter-spacing:32.008055pt;}
.ls82{letter-spacing:32.199339pt;}
.ls7c{letter-spacing:32.326861pt;}
.lsb3{letter-spacing:32.390622pt;}
.lsba{letter-spacing:32.734514pt;}
.lsa1{letter-spacing:32.964471pt;}
.lsb9{letter-spacing:33.283277pt;}
.lsa3{letter-spacing:33.857126pt;}
.lsa7{letter-spacing:34.558498pt;}
.ls81{letter-spacing:34.887925pt;}
.ls7d{letter-spacing:36.917658pt;}
.ls7e{letter-spacing:37.236463pt;}
.lsb{letter-spacing:127.520092pt;}
.ls4b{letter-spacing:135.492267pt;}
.ws58{word-spacing:-63.761067pt;}
.ws4e{word-spacing:-53.176730pt;}
.wsbd{word-spacing:-53.112969pt;}
.ws7c{word-spacing:-52.220314pt;}
.ws44{word-spacing:-49.606110pt;}
.wsd0{word-spacing:-46.991906pt;}
.ws4b{word-spacing:-46.099251pt;}
.ws40{word-spacing:-46.035490pt;}
.ws5f{word-spacing:-45.780446pt;}
.wsac{word-spacing:-45.015313pt;}
.ws89{word-spacing:-39.723145pt;}
.ws9f{word-spacing:-38.830490pt;}
.ws5a{word-spacing:-37.108941pt;}
.ws7b{word-spacing:-36.598852pt;}
.wsd1{word-spacing:-35.068587pt;}
.ws65{word-spacing:-19.925333pt;}
.ws57{word-spacing:-17.343010pt;}
.ws29{word-spacing:-15.940267pt;}
.wsf7{word-spacing:-12.543875pt;}
.ws88{word-spacing:-10.711859pt;}
.wsfd{word-spacing:-6.531171pt;}
.wsc0{word-spacing:-3.985067pt;}
.ws71{word-spacing:-3.506859pt;}
.wsc1{word-spacing:-3.443098pt;}
.ws2b{word-spacing:-3.060531pt;}
.ws62{word-spacing:-3.028651pt;}
.wsa2{word-spacing:-2.933009pt;}
.ws63{word-spacing:-2.614204pt;}
.ws98{word-spacing:-2.486682pt;}
.ws69{word-spacing:-2.454801pt;}
.ws74{word-spacing:-2.422921pt;}
.ws87{word-spacing:-2.295398pt;}
.wsc6{word-spacing:-2.167876pt;}
.ws6b{word-spacing:-2.104115pt;}
.ws8b{word-spacing:-1.976593pt;}
.ws8c{word-spacing:-1.912832pt;}
.ws20{word-spacing:-1.785310pt;}
.ws22{word-spacing:-1.721549pt;}
.ws1f{word-spacing:-1.657788pt;}
.wseb{word-spacing:-1.338982pt;}
.wse0{word-spacing:-1.211460pt;}
.ws8e{word-spacing:-1.083938pt;}
.ws72{word-spacing:-0.956416pt;}
.ws107{word-spacing:-0.828894pt;}
.wsc8{word-spacing:-0.637611pt;}
.ws3c{word-spacing:-0.573850pt;}
.wsa4{word-spacing:-0.510089pt;}
.wsa3{word-spacing:-0.446327pt;}
.ws3d{word-spacing:-0.382566pt;}
.ws3f{word-spacing:-0.318805pt;}
.wse7{word-spacing:-0.127522pt;}
.ws42{word-spacing:-0.063761pt;}
.wsfb{word-spacing:-0.042507pt;}
.ws1b{word-spacing:0.000000pt;}
.wsf9{word-spacing:0.063761pt;}
.ws67{word-spacing:0.255044pt;}
.ws66{word-spacing:0.286925pt;}
.ws32{word-spacing:0.318805pt;}
.ws2c{word-spacing:0.382566pt;}
.wsdd{word-spacing:0.446327pt;}
.wsa5{word-spacing:0.510089pt;}
.wse1{word-spacing:0.573850pt;}
.ws26{word-spacing:0.637611pt;}
.wsd2{word-spacing:0.701372pt;}
.ws64{word-spacing:0.765133pt;}
.ws8a{word-spacing:0.828894pt;}
.wse2{word-spacing:0.860774pt;}
.wsd3{word-spacing:0.892655pt;}
.wsf3{word-spacing:1.020177pt;}
.wsb1{word-spacing:1.083938pt;}
.ws97{word-spacing:1.211460pt;}
.wsb0{word-spacing:1.307102pt;}
.ws10f{word-spacing:1.402743pt;}
.ws10d{word-spacing:1.466505pt;}
.ws21{word-spacing:1.530266pt;}
.ws99{word-spacing:1.849071pt;}
.ws77{word-spacing:1.976593pt;}
.ws14{word-spacing:2.040354pt;}
.wsb8{word-spacing:2.072235pt;}
.ws109{word-spacing:2.104115pt;}
.ws7d{word-spacing:2.167876pt;}
.ws27{word-spacing:2.231637pt;}
.ws19{word-spacing:2.295398pt;}
.wse5{word-spacing:2.359159pt;}
.ws59{word-spacing:2.422921pt;}
.ws101{word-spacing:2.486682pt;}
.ws38{word-spacing:2.741726pt;}
.wsd{word-spacing:2.804366pt;}
.ws28{word-spacing:2.805487pt;}
.wsf5{word-spacing:2.869248pt;}
.ws49{word-spacing:2.933009pt;}
.ws102{word-spacing:2.996770pt;}
.wsdf{word-spacing:3.028651pt;}
.ws104{word-spacing:3.060531pt;}
.wsd4{word-spacing:3.156173pt;}
.ws8f{word-spacing:3.188053pt;}
.ws2{word-spacing:3.211639pt;}
.ws7e{word-spacing:3.251814pt;}
.ws1{word-spacing:3.269821pt;}
.ws54{word-spacing:3.315575pt;}
.ws91{word-spacing:3.379337pt;}
.ws15{word-spacing:3.443098pt;}
.ws12{word-spacing:3.506859pt;}
.ws5e{word-spacing:3.570620pt;}
.ws2e{word-spacing:3.634381pt;}
.ws9d{word-spacing:3.698142pt;}
.ws78{word-spacing:3.825664pt;}
.ws1d{word-spacing:3.953186pt;}
.ws11{word-spacing:3.985067pt;}
.wsca{word-spacing:4.048828pt;}
.wsaa{word-spacing:4.080708pt;}
.ws9e{word-spacing:4.144469pt;}
.wsc5{word-spacing:4.176350pt;}
.wsb2{word-spacing:4.208230pt;}
.ws6{word-spacing:4.258913pt;}
.wsa0{word-spacing:4.271991pt;}
.wsf{word-spacing:4.317095pt;}
.ws61{word-spacing:4.335753pt;}
.wsa8{word-spacing:4.399514pt;}
.wse6{word-spacing:4.463275pt;}
.wsbe{word-spacing:4.558916pt;}
.wsa9{word-spacing:4.686438pt;}
.ws3a{word-spacing:4.782067pt;}
.ws10a{word-spacing:4.782080pt;}
.wsb9{word-spacing:4.845841pt;}
.wse8{word-spacing:4.909602pt;}
.ws1e{word-spacing:4.973363pt;}
.ws60{word-spacing:5.005244pt;}
.wsec{word-spacing:5.037124pt;}
.wsf2{word-spacing:5.164646pt;}
.wsa6{word-spacing:5.228407pt;}
.ws9b{word-spacing:5.292169pt;}
.ws90{word-spacing:5.355930pt;}
.ws106{word-spacing:5.419691pt;}
.ws110{word-spacing:5.483452pt;}
.ws3b{word-spacing:5.547213pt;}
.ws81{word-spacing:5.610974pt;}
.ws82{word-spacing:5.674735pt;}
.ws75{word-spacing:5.738467pt;}
.ws76{word-spacing:5.738496pt;}
.ws3e{word-spacing:5.802257pt;}
.ws25{word-spacing:5.866018pt;}
.ws6a{word-spacing:5.929779pt;}
.ws79{word-spacing:6.057301pt;}
.wsc7{word-spacing:6.121062pt;}
.ws8{word-spacing:6.237096pt;}
.ws10e{word-spacing:6.312346pt;}
.wsc2{word-spacing:6.344226pt;}
.ws1a{word-spacing:6.376107pt;}
.wsae{word-spacing:6.439868pt;}
.ws5{word-spacing:6.528005pt;}
.ws2f{word-spacing:6.567390pt;}
.ws83{word-spacing:6.599270pt;}
.wsee{word-spacing:6.631151pt;}
.wsef{word-spacing:6.694912pt;}
.ws10b{word-spacing:6.758673pt;}
.ws9{word-spacing:6.760733pt;}
.wsbf{word-spacing:6.822434pt;}
.wsab{word-spacing:6.886195pt;}
.ws33{word-spacing:6.949956pt;}
.ws2d{word-spacing:7.013717pt;}
.ws13{word-spacing:7.045598pt;}
.ws24{word-spacing:7.077478pt;}
.ws23{word-spacing:7.141239pt;}
.ws4{word-spacing:7.168006pt;}
.ws6c{word-spacing:7.205001pt;}
.ws6d{word-spacing:7.268762pt;}
.wscf{word-spacing:7.332523pt;}
.ws5c{word-spacing:7.396284pt;}
.wsad{word-spacing:7.428164pt;}
.wse{word-spacing:7.458915pt;}
.ws10c{word-spacing:7.523806pt;}
.ws9c{word-spacing:7.651328pt;}
.ws68{word-spacing:7.715089pt;}
.wsd5{word-spacing:7.778850pt;}
.ws7f{word-spacing:7.810731pt;}
.wsf8{word-spacing:7.821458pt;}
.wsea{word-spacing:7.842611pt;}
.wsfc{word-spacing:7.864806pt;}
.ws46{word-spacing:7.874492pt;}
.ws36{word-spacing:7.906372pt;}
.ws17{word-spacing:8.033894pt;}
.ws35{word-spacing:8.097655pt;}
.ws4f{word-spacing:8.161417pt;}
.ws9a{word-spacing:8.225178pt;}
.ws18{word-spacing:8.288939pt;}
.wsd9{word-spacing:8.352700pt;}
.wsce{word-spacing:8.384580pt;}
.ws85{word-spacing:8.416461pt;}
.ws5b{word-spacing:8.512102pt;}
.wse4{word-spacing:8.543983pt;}
.ws7{word-spacing:8.622553pt;}
.wsdb{word-spacing:8.735266pt;}
.wsc{word-spacing:8.913462pt;}
.ws73{word-spacing:8.926549pt;}
.ws7a{word-spacing:8.990310pt;}
.ws10{word-spacing:9.088008pt;}
.wsaf{word-spacing:9.117833pt;}
.wsed{word-spacing:9.135639pt;}
.wse9{word-spacing:9.181594pt;}
.wsfe{word-spacing:9.277235pt;}
.wsb{word-spacing:9.378917pt;}
.ws4c{word-spacing:9.500399pt;}
.wsd8{word-spacing:9.596041pt;}
.ws4a{word-spacing:9.627921pt;}
.ws4d{word-spacing:9.691682pt;}
.ws93{word-spacing:9.755443pt;}
.wsc9{word-spacing:9.882965pt;}
.ws53{word-spacing:9.946726pt;}
.ws5d{word-spacing:10.010487pt;}
.wsc4{word-spacing:10.138010pt;}
.wscc{word-spacing:10.201771pt;}
.ws1c{word-spacing:10.265532pt;}
.ws41{word-spacing:10.329293pt;}
.ws2a{word-spacing:10.456815pt;}
.ws47{word-spacing:10.520576pt;}
.ws48{word-spacing:10.584337pt;}
.ws50{word-spacing:10.648098pt;}
.ws30{word-spacing:10.711859pt;}
.wsde{word-spacing:10.775620pt;}
.wsda{word-spacing:10.839381pt;}
.wsf6{word-spacing:10.925458pt;}
.ws3{word-spacing:10.949827pt;}
.ws96{word-spacing:11.094426pt;}
.ws94{word-spacing:11.158187pt;}
.ws95{word-spacing:11.221948pt;}
.ws55{word-spacing:11.413231pt;}
.ws70{word-spacing:11.476992pt;}
.wsd6{word-spacing:11.540753pt;}
.wsf4{word-spacing:11.668275pt;}
.wsc3{word-spacing:11.700156pt;}
.wscb{word-spacing:11.763917pt;}
.wsa{word-spacing:11.822555pt;}
.wsf0{word-spacing:11.859558pt;}
.wsbb{word-spacing:11.987081pt;}
.ws80{word-spacing:12.210244pt;}
.ws100{word-spacing:12.242125pt;}
.wsff{word-spacing:12.305886pt;}
.ws34{word-spacing:12.369647pt;}
.ws31{word-spacing:12.433408pt;}
.ws39{word-spacing:12.560930pt;}
.ws103{word-spacing:12.624691pt;}
.ws8d{word-spacing:12.752213pt;}
.ws56{word-spacing:12.815974pt;}
.wsa1{word-spacing:12.943497pt;}
.ws37{word-spacing:13.134780pt;}
.ws6e{word-spacing:13.198541pt;}
.wsa7{word-spacing:13.326063pt;}
.wsba{word-spacing:13.740510pt;}
.wse3{word-spacing:13.836151pt;}
.ws45{word-spacing:13.899913pt;}
.wsbc{word-spacing:14.218718pt;}
.wsfa{word-spacing:14.284829pt;}
.ws84{word-spacing:14.601284pt;}
.wsb4{word-spacing:14.728806pt;}
.ws92{word-spacing:15.302656pt;}
.wsf1{word-spacing:16.195311pt;}
.wsdc{word-spacing:16.450355pt;}
.wsb5{word-spacing:16.705399pt;}
.wsb6{word-spacing:16.769161pt;}
.wsb3{word-spacing:16.928563pt;}
.ws6f{word-spacing:17.598054pt;}
.ws43{word-spacing:17.661815pt;}
.wsb7{word-spacing:19.319603pt;}
.ws108{word-spacing:19.786233pt;}
.ws52{word-spacing:20.722347pt;}
.ws105{word-spacing:20.786108pt;}
.ws86{word-spacing:25.249382pt;}
.ws0{word-spacing:33.170200pt;}
.wsd7{word-spacing:34.558498pt;}
.ws51{word-spacing:62.166867pt;}
.ws16{word-spacing:74.600067pt;}
.wscd{word-spacing:135.428506pt;}
._2d{margin-left:-33.829513pt;}
._33{margin-left:-28.705252pt;}
._1e{margin-left:-19.978949pt;}
._2f{margin-left:-17.917124pt;}
._27{margin-left:-10.584337pt;}
._26{margin-left:-9.564160pt;}
._1a{margin-left:-7.192228pt;}
._2b{margin-left:-5.993540pt;}
._5{margin-left:-4.829095pt;}
._15{margin-left:-3.883055pt;}
._1{margin-left:-2.975400pt;}
._3{margin-left:-1.629092pt;}
._4{width:1.629092pt;}
._2{width:2.865200pt;}
._21{width:4.335753pt;}
._2c{width:5.236637pt;}
._24{width:14.506239pt;}
._11{width:15.472569pt;}
._e{width:16.612943pt;}
._18{width:18.394471pt;}
._f{width:19.425406pt;}
._2a{width:20.490574pt;}
._19{width:21.423718pt;}
._25{width:23.209028pt;}
._a{width:24.727293pt;}
._7{width:26.181840pt;}
._9{width:27.644511pt;}
._b{width:29.090933pt;}
._8{width:30.021843pt;}
._23{width:31.015670pt;}
._13{width:32.036751pt;}
._16{width:33.016283pt;}
._10{width:33.963278pt;}
._6{width:35.607302pt;}
._c{width:37.300224pt;}
._12{width:38.320401pt;}
._1f{width:39.213056pt;}
._29{width:40.204538pt;}
._1c{width:41.763499pt;}
._d{width:42.838807pt;}
._30{width:43.795223pt;}
._0{width:44.741200pt;}
._1b{width:46.185338pt;}
._2e{width:47.679182pt;}
._28{width:49.178961pt;}
._31{width:50.384051pt;}
._1d{width:51.993965pt;}
._14{width:54.052638pt;}
._20{width:57.509431pt;}
._32{width:63.073390pt;}
._17{width:86.077200pt;}
._22{width:103.292400pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:42.507200pt;}
.fs1{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:56.149333pt;}
.yc3{bottom:96.000000pt;}
.y19a{bottom:98.044000pt;}
.y1f{bottom:104.038667pt;}
.y48{bottom:105.858667pt;}
.yc2{bottom:115.261333pt;}
.y62{bottom:115.610667pt;}
.y199{bottom:117.304000pt;}
.y116{bottom:121.502667pt;}
.ydd{bottom:121.809333pt;}
.y1e{bottom:123.300000pt;}
.y47{bottom:125.120000pt;}
.y94{bottom:127.997333pt;}
.yfe{bottom:134.522667pt;}
.y61{bottom:134.872000pt;}
.y198{bottom:136.565333pt;}
.y14b{bottom:139.289333pt;}
.y1d{bottom:142.561333pt;}
.y131{bottom:145.496000pt;}
.y115{bottom:147.004000pt;}
.y93{bottom:147.258667pt;}
.yc1{bottom:148.544000pt;}
.yfd{bottom:153.784000pt;}
.ydc{bottom:154.354667pt;}
.y46{bottom:154.676000pt;}
.y197{bottom:155.826667pt;}
.y14a{bottom:158.549333pt;}
.y1c{bottom:161.821333pt;}
.y1cb{bottom:161.832000pt;}
.y60{bottom:162.768000pt;}
.y1b4{bottom:163.402667pt;}
.y130{bottom:164.757333pt;}
.y92{bottom:166.520000pt;}
.ydb{bottom:173.616000pt;}
.y196{bottom:175.088000pt;}
.ya7{bottom:175.165333pt;}
.y17d{bottom:175.397333pt;}
.y149{bottom:177.810667pt;}
.y114{bottom:179.149333pt;}
.y164{bottom:180.978667pt;}
.yc0{bottom:181.826667pt;}
.y5f{bottom:182.028000pt;}
.y1b3{bottom:182.664000pt;}
.yfc{bottom:183.338667pt;}
.y1ca{bottom:192.630667pt;}
.y12f{bottom:194.313333pt;}
.ya6{bottom:194.426667pt;}
.y1b{bottom:196.868000pt;}
.y17c{bottom:198.438667pt;}
.y163{bottom:200.240000pt;}
.y45{bottom:200.890667pt;}
.ybf{bottom:201.088000pt;}
.y91{bottom:201.566667pt;}
.y7b{bottom:204.433333pt;}
.yda{bottom:206.160000pt;}
.y195{bottom:207.632000pt;}
.y148{bottom:210.356000pt;}
.y113{bottom:211.293333pt;}
.y5e{bottom:211.584000pt;}
.ya5{bottom:213.688000pt;}
.y1b2{bottom:213.986667pt;}
.y162{bottom:219.501333pt;}
.y44{bottom:220.152000pt;}
.ybe{bottom:220.348000pt;}
.y17b{bottom:221.478667pt;}
.y1c9{bottom:223.430667pt;}
.y7a{bottom:223.694667pt;}
.y194{bottom:226.893333pt;}
.yfb{bottom:228.838667pt;}
.y112{bottom:230.553333pt;}
.y1df{bottom:230.845333pt;}
.yd9{bottom:238.705333pt;}
.y43{bottom:239.413333pt;}
.ybd{bottom:239.609333pt;}
.y12e{bottom:240.130667pt;}
.y1b1{bottom:242.866667pt;}
.y147{bottom:242.900000pt;}
.y79{bottom:242.956000pt;}
.y17a{bottom:244.520000pt;}
.ya4{bottom:246.232000pt;}
.yfa{bottom:248.098667pt;}
.y161{bottom:249.056000pt;}
.y1de{bottom:250.106667pt;}
.y1a{bottom:250.113333pt;}
.y1c8{bottom:254.230667pt;}
.y90{bottom:254.810667pt;}
.y5d{bottom:257.800000pt;}
.y42{bottom:258.674667pt;}
.ybc{bottom:258.870667pt;}
.y12d{bottom:259.392000pt;}
.y193{bottom:259.438667pt;}
.y146{bottom:262.161333pt;}
.y78{bottom:262.217333pt;}
.y111{bottom:262.698667pt;}
.yf9{bottom:267.360000pt;}
.y179{bottom:267.560000pt;}
.y1dd{bottom:269.368000pt;}
.y19{bottom:269.374667pt;}
.yd8{bottom:271.249333pt;}
.y1b0{bottom:271.746667pt;}
.y8f{bottom:274.072000pt;}
.y5c{bottom:277.061333pt;}
.y41{bottom:277.936000pt;}
.ybb{bottom:278.132000pt;}
.y192{bottom:278.700000pt;}
.ya3{bottom:278.777333pt;}
.y1c7{bottom:281.538667pt;}
.y110{bottom:281.958667pt;}
.yf8{bottom:286.621333pt;}
.y12c{bottom:289.626667pt;}
.y145{bottom:290.057333pt;}
.y178{bottom:290.601333pt;}
.y1af{bottom:291.008000pt;}
.y77{bottom:291.772000pt;}
.y8e{bottom:293.333333pt;}
.y160{bottom:294.350667pt;}
.y18{bottom:296.440000pt;}
.y40{bottom:297.196000pt;}
.yba{bottom:297.393333pt;}
.y1dc{bottom:298.924000pt;}
.yd7{bottom:299.145333pt;}
.yf7{bottom:305.882667pt;}
.y10f{bottom:307.461333pt;}
.y12b{bottom:308.888000pt;}
.y144{bottom:309.317333pt;}
.y1c6{bottom:311.094667pt;}
.y191{bottom:311.244000pt;}
.ya2{bottom:311.321333pt;}
.y5b{bottom:312.262667pt;}
.y15f{bottom:313.612000pt;}
.y177{bottom:317.421333pt;}
.yd6{bottom:318.406667pt;}
.y1ae{bottom:322.330667pt;}
.y8d{bottom:322.889333pt;}
.yf6{bottom:325.144000pt;}
.y190{bottom:330.505333pt;}
.y3f{bottom:332.242667pt;}
.yb9{bottom:332.438667pt;}
.yd5{bottom:337.666667pt;}
.y76{bottom:337.988000pt;}
.y12a{bottom:338.442667pt;}
.y10e{bottom:339.605333pt;}
.ya1{bottom:343.866667pt;}
.yf5{bottom:344.404000pt;}
.y143{bottom:344.518667pt;}
.y1db{bottom:345.138667pt;}
.y17{bottom:347.248000pt;}
.y5a{bottom:347.464000pt;}
.y15e{bottom:348.658667pt;}
.y1ad{bottom:351.212000pt;}
.y1c5{bottom:356.409333pt;}
.yd4{bottom:356.928000pt;}
.y75{bottom:357.249333pt;}
.y176{bottom:358.422667pt;}
.y18f{bottom:360.061333pt;}
.yf4{bottom:363.665333pt;}
.y1da{bottom:364.400000pt;}
.y16{bottom:365.314667pt;}
.y8c{bottom:369.104000pt;}
.y1ac{bottom:370.472000pt;}
.y10d{bottom:371.749333pt;}
.y1c4{bottom:375.670667pt;}
.yd3{bottom:376.189333pt;}
.ya0{bottom:376.410667pt;}
.y59{bottom:377.020000pt;}
.y175{bottom:377.684000pt;}
.y142{bottom:379.720000pt;}
.y15{bottom:383.380000pt;}
.y1d9{bottom:383.661333pt;}
.y129{bottom:384.261333pt;}
.yb8{bottom:385.401333pt;}
.y3e{bottom:385.488000pt;}
.y8b{bottom:388.365333pt;}
.y1ab{bottom:389.733333pt;}
.y74{bottom:389.793333pt;}
.y10c{bottom:391.010667pt;}
.yf3{bottom:392.048000pt;}
.y1c3{bottom:394.930667pt;}
.yd2{bottom:395.450667pt;}
.y15d{bottom:400.981333pt;}
.y14{bottom:401.445333pt;}
.y1d8{bottom:402.922667pt;}
.yb7{bottom:404.661333pt;}
.y3d{bottom:404.749333pt;}
.y18e{bottom:406.276000pt;}
.y174{bottom:407.240000pt;}
.y141{bottom:409.276000pt;}
.yf2{bottom:411.309333pt;}
.y9f{bottom:411.612000pt;}
.y1c2{bottom:414.192000pt;}
.y128{bottom:414.496000pt;}
.y10b{bottom:416.513333pt;}
.y13{bottom:419.510667pt;}
.y15c{bottom:420.242667pt;}
.y73{bottom:422.338667pt;}
.y58{bottom:423.234667pt;}
.y8a{bottom:423.566667pt;}
.y3c{bottom:424.010667pt;}
.y18d{bottom:425.537333pt;}
.yd1{bottom:430.652000pt;}
.y1aa{bottom:430.669333pt;}
.y1d7{bottom:432.478667pt;}
.y1c1{bottom:433.453333pt;}
.y127{bottom:433.756000pt;}
.yb6{bottom:435.561333pt;}
.y12{bottom:437.576000pt;}
.y15b{bottom:439.504000pt;}
.yf1{bottom:439.690667pt;}
.y10a{bottom:442.016000pt;}
.y3b{bottom:443.270667pt;}
.y18c{bottom:444.798667pt;}
.y9e{bottom:446.813333pt;}
.y1a9{bottom:449.930667pt;}
.y173{bottom:453.454667pt;}
.y72{bottom:454.882667pt;}
.y140{bottom:455.492000pt;}
.y11{bottom:455.642667pt;}
.y57{bottom:458.436000pt;}
.y89{bottom:458.768000pt;}
.yf0{bottom:458.952000pt;}
.y3a{bottom:462.532000pt;}
.y126{bottom:463.312000pt;}
.yd0{bottom:465.853333pt;}
.yb5{bottom:467.558667pt;}
.y1c0{bottom:468.500000pt;}
.y15a{bottom:469.060000pt;}
.y172{bottom:472.716000pt;}
.y10{bottom:473.708000pt;}
.y109{bottom:474.160000pt;}
.y13f{bottom:474.753333pt;}
.y9d{bottom:476.369333pt;}
.y56{bottom:477.697333pt;}
.y1d6{bottom:478.693333pt;}
.y1a8{bottom:478.810667pt;}
.y18b{bottom:479.845333pt;}
.y39{bottom:481.793333pt;}
.y71{bottom:487.428000pt;}
.y88{bottom:488.324000pt;}
.yef{bottom:490.109333pt;}
.yf{bottom:491.773333pt;}
.y13e{bottom:494.014667pt;}
.y1bf{bottom:497.724000pt;}
.y1d5{bottom:497.954667pt;}
.ycf{bottom:498.397333pt;}
.yb4{bottom:499.554667pt;}
.y38{bottom:501.054667pt;}
.y171{bottom:505.261333pt;}
.y108{bottom:506.304000pt;}
.y55{bottom:507.253333pt;}
.y18a{bottom:509.069333pt;}
.y125{bottom:509.130667pt;}
.yee{bottom:509.370667pt;}
.ye{bottom:509.838667pt;}
.y1a7{bottom:510.133333pt;}
.y159{bottom:514.354667pt;}
.y70{bottom:516.984000pt;}
.y1d4{bottom:517.216000pt;}
.yce{bottom:517.658667pt;}
.y37{bottom:520.316000pt;}
.y9c{bottom:522.585333pt;}
.y170{bottom:524.521333pt;}
.y107{bottom:525.565333pt;}
.yd{bottom:527.904000pt;}
.y124{bottom:528.392000pt;}
.y13d{bottom:529.060000pt;}
.yb3{bottom:531.550667pt;}
.y87{bottom:534.540000pt;}
.yed{bottom:537.752000pt;}
.y36{bottom:539.576000pt;}
.y1a6{bottom:541.456000pt;}
.y158{bottom:541.549333pt;}
.y9b{bottom:541.845333pt;}
.yc{bottom:545.970667pt;}
.y1d3{bottom:546.772000pt;}
.y1be{bottom:550.066667pt;}
.ycd{bottom:550.204000pt;}
.y54{bottom:553.469333pt;}
.y16f{bottom:554.077333pt;}
.y106{bottom:557.709333pt;}
.y123{bottom:558.625333pt;}
.y35{bottom:558.837333pt;}
.y189{bottom:562.313333pt;}
.y6f{bottom:563.198667pt;}
.yb2{bottom:563.548000pt;}
.yb{bottom:564.036000pt;}
.yec{bottom:566.134667pt;}
.y86{bottom:567.084000pt;}
.y1bd{bottom:569.328000pt;}
.y1a5{bottom:570.337333pt;}
.y157{bottom:570.509333pt;}
.y122{bottom:577.886667pt;}
.y34{bottom:578.098667pt;}
.y9a{bottom:578.376000pt;}
.y188{bottom:581.574667pt;}
.ya{bottom:582.101333pt;}
.y13c{bottom:582.305333pt;}
.y6e{bottom:582.460000pt;}
.ycc{bottom:582.748000pt;}
.y105{bottom:583.212000pt;}
.y53{bottom:586.013333pt;}
.y1bc{bottom:588.589333pt;}
.y1d2{bottom:592.988000pt;}
.yb1{bottom:594.448000pt;}
.yeb{bottom:597.292000pt;}
.y33{bottom:597.360000pt;}
.y156{bottom:599.469333pt;}
.y85{bottom:599.629333pt;}
.y9{bottom:600.166667pt;}
.y16e{bottom:600.293333pt;}
.y187{bottom:600.836000pt;}
.y13b{bottom:601.566667pt;}
.y6d{bottom:601.721333pt;}
.y121{bottom:607.442667pt;}
.y99{bottom:610.920000pt;}
.y1a4{bottom:611.272000pt;}
.y1d1{bottom:612.248000pt;}
.yb0{bottom:613.708000pt;}
.ycb{bottom:615.292000pt;}
.y104{bottom:615.356000pt;}
.y1bb{bottom:615.898667pt;}
.y32{bottom:616.621333pt;}
.y8{bottom:618.232000pt;}
.y52{bottom:618.558667pt;}
.y155{bottom:618.730667pt;}
.y16d{bottom:619.554667pt;}
.y186{bottom:620.097333pt;}
.y13a{bottom:620.828000pt;}
.y6c{bottom:620.982667pt;}
.yea{bottom:625.673333pt;}
.y1a3{bottom:630.533333pt;}
.y84{bottom:632.173333pt;}
.y1ba{bottom:635.158667pt;}
.y31{bottom:635.882667pt;}
.y7{bottom:636.298667pt;}
.y16c{bottom:638.816000pt;}
.y185{bottom:639.357333pt;}
.yaf{bottom:643.264000pt;}
.y98{bottom:643.465333pt;}
.y1d0{bottom:644.793333pt;}
.y154{bottom:648.286667pt;}
.y1a2{bottom:649.794667pt;}
.y103{bottom:650.282667pt;}
.y139{bottom:650.382667pt;}
.yca{bottom:650.493333pt;}
.y83{bottom:651.434667pt;}
.ye9{bottom:651.488000pt;}
.y120{bottom:653.261333pt;}
.y51{bottom:653.760000pt;}
.y30{bottom:655.142667pt;}
.y6b{bottom:656.029333pt;}
.y16b{bottom:658.077333pt;}
.y184{bottom:658.618667pt;}
.y6{bottom:663.269333pt;}
.y1b9{bottom:665.958667pt;}
.ye8{bottom:670.749333pt;}
.y11f{bottom:672.521333pt;}
.y2f{bottom:674.404000pt;}
.y97{bottom:676.009333pt;}
.y1cf{bottom:677.337333pt;}
.y183{bottom:677.880000pt;}
.y1a1{bottom:678.674667pt;}
.y102{bottom:679.838667pt;}
.y82{bottom:680.990667pt;}
.yc9{bottom:685.694667pt;}
.y50{bottom:688.961333pt;}
.yae{bottom:689.197333pt;}
.ye7{bottom:690.010667pt;}
.y16a{bottom:690.621333pt;}
.y11e{bottom:691.782667pt;}
.y153{bottom:693.581333pt;}
.y2e{bottom:693.665333pt;}
.y138{bottom:696.598667pt;}
.y1b8{bottom:696.758667pt;}
.y182{bottom:697.141333pt;}
.y96{bottom:705.565333pt;}
.yad{bottom:708.457333pt;}
.y6a{bottom:709.273333pt;}
.y169{bottom:709.882667pt;}
.y1a0{bottom:709.997333pt;}
.y11d{bottom:711.044000pt;}
.y2d{bottom:712.926667pt;}
.y137{bottom:715.860000pt;}
.y181{bottom:716.402667pt;}
.yc8{bottom:718.240000pt;}
.ye6{bottom:718.392000pt;}
.y4f{bottom:718.516000pt;}
.y152{bottom:720.776000pt;}
.y5{bottom:722.014667pt;}
.y1b7{bottom:724.068000pt;}
.y101{bottom:725.848000pt;}
.y81{bottom:727.206667pt;}
.y69{bottom:728.534667pt;}
.y168{bottom:729.144000pt;}
.y11c{bottom:730.305333pt;}
.y2c{bottom:732.188000pt;}
.y180{bottom:735.664000pt;}
.yc7{bottom:737.501333pt;}
.ye5{bottom:737.653333pt;}
.yac{bottom:740.454667pt;}
.y151{bottom:740.728000pt;}
.y19f{bottom:741.320000pt;}
.y1ce{bottom:742.426667pt;}
.y68{bottom:747.796000pt;}
.y136{bottom:748.404000pt;}
.y150{bottom:750.292000pt;}
.y2b{bottom:751.449333pt;}
.y95{bottom:751.781333pt;}
.y1b6{bottom:753.624000pt;}
.y17f{bottom:754.924000pt;}
.y167{bottom:758.698667pt;}
.y100{bottom:759.646667pt;}
.y80{bottom:759.750667pt;}
.y4{bottom:761.546667pt;}
.y1cd{bottom:761.688000pt;}
.y4e{bottom:764.732000pt;}
.y11b{bottom:765.352000pt;}
.ye4{bottom:767.209333pt;}
.y135{bottom:767.665333pt;}
.yc6{bottom:770.045333pt;}
.y19e{bottom:770.201333pt;}
.y2a{bottom:770.709333pt;}
.yab{bottom:772.450667pt;}
.y14f{bottom:773.936000pt;}
.y17e{bottom:774.185333pt;}
.y67{bottom:784.325333pt;}
.y3{bottom:789.042667pt;}
.y29{bottom:789.970667pt;}
.y1cc{bottom:791.244000pt;}
.y7f{bottom:792.296000pt;}
.y14e{bottom:793.197333pt;}
.yff{bottom:793.446667pt;}
.y134{bottom:797.221333pt;}
.y1b5{bottom:798.937333pt;}
.y4d{bottom:799.933333pt;}
.yaa{bottom:802.006667pt;}
.yc5{bottom:802.590667pt;}
.y166{bottom:804.914667pt;}
.y28{bottom:809.232000pt;}
.y19d{bottom:811.136000pt;}
.ye3{bottom:812.708000pt;}
.y66{bottom:816.870667pt;}
.y11a{bottom:818.198667pt;}
.y14d{bottom:822.753333pt;}
.y165{bottom:824.176000pt;}
.y7e{bottom:824.840000pt;}
.y27{bottom:828.493333pt;}
.y19c{bottom:830.397333pt;}
.ye2{bottom:831.969333pt;}
.y4c{bottom:835.134667pt;}
.y119{bottom:837.460000pt;}
.y133{bottom:843.437333pt;}
.y2{bottom:846.426667pt;}
.y26{bottom:847.754667pt;}
.ya9{bottom:847.938667pt;}
.y65{bottom:849.414667pt;}
.ye1{bottom:851.230667pt;}
.y4b{bottom:854.396000pt;}
.y118{bottom:856.720000pt;}
.y19b{bottom:859.953333pt;}
.y7d{bottom:860.041333pt;}
.y132{bottom:862.698667pt;}
.y25{bottom:867.016000pt;}
.y14c{bottom:868.048000pt;}
.yc4{bottom:870.336000pt;}
.ye0{bottom:870.490667pt;}
.y4a{bottom:873.657333pt;}
.y117{bottom:875.981333pt;}
.y1{bottom:879.634667pt;}
.ya8{bottom:881.221333pt;}
.y64{bottom:881.960000pt;}
.y24{bottom:886.276000pt;}
.ydf{bottom:889.752000pt;}
.y7c{bottom:895.242667pt;}
.y23{bottom:905.537333pt;}
.y49{bottom:908.858667pt;}
.yde{bottom:909.013333pt;}
.y63{bottom:914.504000pt;}
.y22{bottom:924.798667pt;}
.y21{bottom:944.060000pt;}
.ha{height:29.925069pt;}
.h4{height:40.610943pt;}
.h2{height:43.636400pt;}
.h8{height:44.250180pt;}
.h5{height:47.820800pt;}
.h7{height:50.299394pt;}
.h3{height:57.384800pt;}
.h6{height:68.861600pt;}
.h9{height:73.323776pt;}
.h1{height:77.911400pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:96.000000pt;}
.x1{left:99.221333pt;}
.xe{left:115.076000pt;}
.xb{left:119.412000pt;}
.x8{left:135.020000pt;}
.x1a{left:149.413333pt;}
.x7{left:156.838667pt;}
.x1b{left:169.357333pt;}
.x2{left:206.509333pt;}
.x1e{left:271.976000pt;}
.x22{left:275.716000pt;}
.x12{left:282.302667pt;}
.x13{left:297.094667pt;}
.x21{left:300.165333pt;}
.x14{left:301.850667pt;}
.x19{left:309.124000pt;}
.x18{left:311.292000pt;}
.xd{left:317.520000pt;}
.x4{left:331.858667pt;}
.x1d{left:343.056000pt;}
.x10{left:347.281333pt;}
.x11{left:350.937333pt;}
.x15{left:352.570667pt;}
.x17{left:359.837333pt;}
.x16{left:364.770667pt;}
.x5{left:365.858667pt;}
.x3{left:369.090667pt;}
.xf{left:371.222667pt;}
.x6{left:375.998667pt;}
.xc{left:381.020000pt;}
.x1c{left:400.196000pt;}
.xa{left:404.098667pt;}
.x1f{left:446.910667pt;}
.x20{left:479.001333pt;}
}




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