
    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_5e338b2beb8b2743acbe41d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d69936c8fa89ea5802065c12.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_c3108bbe3982e98036ace9d4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_35330d153ff6dfc8ce6f9a6e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3d17d21cbcf1083e0a15491c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b68e063b73825b5f97cddea9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_75cc296119e3cf691ea374c1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_3c2f7db98ea945aa005a3549.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893066;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_4f0b6cf3c646605994fd89c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_45fff756db1d00405f0dc84b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.159892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159892,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160360,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);}
.m4{transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250558,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252330,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254540,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:-84.555672px;}
.va{vertical-align:-71.217656px;}
.v1{vertical-align:-58.032000px;}
.v9{vertical-align:-48.612765px;}
.v8{vertical-align:-43.489710px;}
.v2{vertical-align:-23.040000px;}
.v3{vertical-align:-17.280000px;}
.v7{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:3.060000px;}
.v5{vertical-align:43.080000px;}
.ls58{letter-spacing:-3.692606px;}
.ls5e{letter-spacing:-3.612934px;}
.ls7a{letter-spacing:-3.384000px;}
.ls50{letter-spacing:-0.864000px;}
.ls66{letter-spacing:-0.828000px;}
.ls6e{letter-spacing:-0.774000px;}
.ls39{letter-spacing:-0.684000px;}
.ls4c{letter-spacing:-0.576000px;}
.ls4b{letter-spacing:-0.432000px;}
.ls57{letter-spacing:-0.431098px;}
.ls46{letter-spacing:-0.341400px;}
.ls4a{letter-spacing:-0.306600px;}
.ls21{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.273000px;}
.ls70{letter-spacing:-0.259800px;}
.ls38{letter-spacing:-0.256200px;}
.ls4f{letter-spacing:-0.223800px;}
.ls25{letter-spacing:-0.216000px;}
.ls3d{letter-spacing:-0.208200px;}
.ls2d{letter-spacing:-0.205800px;}
.ls1d{letter-spacing:-0.189600px;}
.ls2e{letter-spacing:-0.154800px;}
.ls30{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.106800px;}
.ls78{letter-spacing:-0.100200px;}
.ls26{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.053400px;}
.ls10{letter-spacing:-0.042600px;}
.ls28{letter-spacing:-0.037200px;}
.ls29{letter-spacing:-0.028200px;}
.lse{letter-spacing:-0.021600px;}
.ls3c{letter-spacing:-0.018600px;}
.ls1{letter-spacing:0.000000px;}
.ls59{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.018600px;}
.ls9{letter-spacing:0.037200px;}
.ls69{letter-spacing:0.053400px;}
.ls6d{letter-spacing:0.105600px;}
.ls2{letter-spacing:0.108000px;}
.ls5d{letter-spacing:0.113724px;}
.ls24{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.186000px;}
.ls67{letter-spacing:0.206400px;}
.ls34{letter-spacing:0.208200px;}
.ls2a{letter-spacing:0.211968px;}
.ls53{letter-spacing:0.212553px;}
.ls0{letter-spacing:0.216000px;}
.ls2b{letter-spacing:0.223920px;}
.ls2f{letter-spacing:0.236400px;}
.ls64{letter-spacing:0.259800px;}
.ls1c{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.309600px;}
.ls27{letter-spacing:0.334800px;}
.ls14{letter-spacing:0.341400px;}
.ls3f{letter-spacing:0.360000px;}
.ls55{letter-spacing:0.394895px;}
.ls68{letter-spacing:0.413400px;}
.ls51{letter-spacing:0.504000px;}
.ls6f{letter-spacing:0.612000px;}
.ls56{letter-spacing:0.648000px;}
.ls71{letter-spacing:0.666720px;}
.ls72{letter-spacing:0.667200px;}
.ls11{letter-spacing:0.678000px;}
.ls12{letter-spacing:0.696000px;}
.ls22{letter-spacing:0.698688px;}
.ls13{letter-spacing:0.738000px;}
.ls37{letter-spacing:0.738720px;}
.ls16{letter-spacing:0.756000px;}
.ls3{letter-spacing:0.792000px;}
.ls3b{letter-spacing:0.864000px;}
.ls65{letter-spacing:0.924000px;}
.ls15{letter-spacing:1.418688px;}
.ls79{letter-spacing:1.449553px;}
.ls1b{letter-spacing:1.458720px;}
.ls4d{letter-spacing:1.584000px;}
.ls77{letter-spacing:1.908000px;}
.ls52{letter-spacing:1.984999px;}
.ls76{letter-spacing:2.106720px;}
.ls1e{letter-spacing:2.178720px;}
.ls54{letter-spacing:2.475857px;}
.ls75{letter-spacing:2.826720px;}
.ls62{letter-spacing:3.546960px;}
.ls1a{letter-spacing:3.618720px;}
.ls60{letter-spacing:4.266720px;}
.ls61{letter-spacing:4.986720px;}
.lsa{letter-spacing:5.716800px;}
.ls5a{letter-spacing:5.904000px;}
.ls63{letter-spacing:8.587440px;}
.ls74{letter-spacing:9.306720px;}
.ls48{letter-spacing:9.504000px;}
.ls49{letter-spacing:10.344000px;}
.ls6a{letter-spacing:10.746720px;}
.ls6b{letter-spacing:10.747440px;}
.ls44{letter-spacing:10.778688px;}
.ls45{letter-spacing:10.818720px;}
.ls6c{letter-spacing:12.186720px;}
.ls3e{letter-spacing:12.258720px;}
.ls40{letter-spacing:20.917200px;}
.ls73{letter-spacing:22.284000px;}
.ls2c{letter-spacing:23.058240px;}
.lsb{letter-spacing:24.498720px;}
.lsc{letter-spacing:25.237680px;}
.ls23{letter-spacing:27.504000px;}
.ls31{letter-spacing:50.724000px;}
.ls42{letter-spacing:58.338720px;}
.ls47{letter-spacing:60.480000px;}
.ls5f{letter-spacing:64.764000px;}
.ls3a{letter-spacing:66.978720px;}
.ls35{letter-spacing:70.578720px;}
.ls33{letter-spacing:76.338720px;}
.ls32{letter-spacing:82.818720px;}
.ls36{letter-spacing:87.176520px;}
.ls41{letter-spacing:107.298720px;}
.ls6{letter-spacing:113.208000px;}
.ls7{letter-spacing:135.633600px;}
.ls5{letter-spacing:135.684000px;}
.ls19{letter-spacing:138.657600px;}
.ls18{letter-spacing:138.708000px;}
.ls5c{letter-spacing:149.884053px;}
.ls4e{letter-spacing:174.929138px;}
.ls43{letter-spacing:236.178720px;}
.ls5b{letter-spacing:397.974639px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(51,51,204),0 0.015em rgb(51,51,204),0.015em 0 rgb(51,51,204),0 -0.015em  rgb(51,51,204);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(51,51,204);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws40{word-spacing:-59.592434px;}
.ws3d{word-spacing:-59.450015px;}
.ws50{word-spacing:-49.597118px;}
.ws45{word-spacing:-49.492801px;}
.ws23{word-spacing:-39.888000px;}
.ws37{word-spacing:-39.528000px;}
.ws4b{word-spacing:-29.646000px;}
.ws10{word-spacing:-27.377280px;}
.wsd{word-spacing:-27.339312px;}
.ws2a{word-spacing:-26.981280px;}
.ws12{word-spacing:-26.970912px;}
.ws26{word-spacing:-26.962680px;}
.ws24{word-spacing:-26.829480px;}
.ws13{word-spacing:-26.661312px;}
.wsa{word-spacing:-26.658480px;}
.wse{word-spacing:-26.639880px;}
.wsc{word-spacing:-26.639712px;}
.ws9{word-spacing:-26.621280px;}
.wsb{word-spacing:-26.618712px;}
.ws28{word-spacing:-26.602680px;}
.ws60{word-spacing:-26.431680px;}
.ws29{word-spacing:-26.413080px;}
.ws25{word-spacing:-26.405112px;}
.ws2b{word-spacing:-26.279880px;}
.ws27{word-spacing:-25.937280px;}
.ws1b{word-spacing:-23.760120px;}
.ws1a{word-spacing:-23.753520px;}
.ws57{word-spacing:-23.458752px;}
.ws1d{word-spacing:-23.437320px;}
.ws58{word-spacing:-23.418720px;}
.ws1e{word-spacing:-23.390520px;}
.ws1c{word-spacing:-23.381520px;}
.ws42{word-spacing:-20.664000px;}
.ws36{word-spacing:-20.520000px;}
.ws14{word-spacing:-20.304000px;}
.ws17{word-spacing:-20.160000px;}
.ws33{word-spacing:-20.016000px;}
.ws32{word-spacing:-19.984032px;}
.ws19{word-spacing:-19.944000px;}
.ws2f{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.800000px;}
.ws30{word-spacing:-19.584000px;}
.ws31{word-spacing:-19.440000px;}
.ws35{word-spacing:-19.152000px;}
.ws5e{word-spacing:-18.521280px;}
.ws15{word-spacing:-18.000240px;}
.ws16{word-spacing:-17.541240px;}
.ws51{word-spacing:-17.537280px;}
.ws5b{word-spacing:-17.225280px;}
.ws54{word-spacing:-17.026680px;}
.ws55{word-spacing:-16.973280px;}
.ws56{word-spacing:-16.873080px;}
.ws53{word-spacing:-16.819680px;}
.ws59{word-spacing:-16.718880px;}
.ws5d{word-spacing:-16.666680px;}
.ws1f{word-spacing:-16.653312px;}
.ws1{word-spacing:-16.613280px;}
.ws11{word-spacing:-16.559880px;}
.ws5f{word-spacing:-16.513080px;}
.wsf{word-spacing:-16.506480px;}
.ws5c{word-spacing:-16.353480px;}
.ws2e{word-spacing:-16.306680px;}
.ws5a{word-spacing:-15.839280px;}
.ws52{word-spacing:-15.785280px;}
.ws2d{word-spacing:-15.228000px;}
.ws4a{word-spacing:-15.030000px;}
.ws2c{word-spacing:-15.012000px;}
.ws20{word-spacing:-13.410720px;}
.ws34{word-spacing:-13.186920px;}
.ws39{word-spacing:-2.048255px;}
.ws2{word-spacing:-1.974000px;}
.ws5{word-spacing:-1.554000px;}
.ws6{word-spacing:-0.894000px;}
.ws64{word-spacing:-0.720000px;}
.ws3e{word-spacing:-0.458158px;}
.ws62{word-spacing:-0.288000px;}
.ws3a{word-spacing:-0.275809px;}
.ws4d{word-spacing:-0.159004px;}
.ws41{word-spacing:-0.108547px;}
.ws3c{word-spacing:-0.108288px;}
.ws4{word-spacing:-0.108000px;}
.ws4f{word-spacing:-0.090341px;}
.ws44{word-spacing:-0.090151px;}
.ws3f{word-spacing:-0.063263px;}
.ws3b{word-spacing:-0.063256px;}
.ws47{word-spacing:-0.045080px;}
.ws0{word-spacing:0.000000px;}
.ws63{word-spacing:0.216000px;}
.ws43{word-spacing:0.340948px;}
.ws7{word-spacing:0.666000px;}
.ws65{word-spacing:1.056000px;}
.ws3{word-spacing:1.506000px;}
.ws61{word-spacing:2.088000px;}
.ws48{word-spacing:3.647526px;}
.ws22{word-spacing:55.403280px;}
.ws21{word-spacing:55.482552px;}
.ws8{word-spacing:109.062692px;}
.ws4c{word-spacing:255.508208px;}
.ws46{word-spacing:298.932048px;}
.ws38{word-spacing:313.315631px;}
.ws49{word-spacing:482.308327px;}
.ws4e{word-spacing:499.368102px;}
._58{margin-left:-438.828477px;}
._61{margin-left:-254.112176px;}
._64{margin-left:-233.136792px;}
._55{margin-left:-226.533241px;}
._50{margin-left:-223.369896px;}
._51{margin-left:-221.591865px;}
._4e{margin-left:-218.817695px;}
._62{margin-left:-215.129609px;}
._52{margin-left:-213.410286px;}
._63{margin-left:-212.115416px;}
._53{margin-left:-208.104400px;}
._56{margin-left:-194.788778px;}
._54{margin-left:-181.521668px;}
._4f{margin-left:-179.164185px;}
._67{margin-left:-176.128641px;}
._6b{margin-left:-174.597486px;}
._6a{margin-left:-169.935668px;}
._66{margin-left:-160.148424px;}
._60{margin-left:-129.594495px;}
._65{margin-left:-120.426073px;}
._5e{margin-left:-111.506097px;}
._57{margin-left:-90.839167px;}
._5f{margin-left:-67.397114px;}
._4a{margin-left:-12.582000px;}
._f{margin-left:-10.911072px;}
._2c{margin-left:-9.743597px;}
._10{margin-left:-7.373424px;}
._7{margin-left:-5.567371px;}
._34{margin-left:-4.411872px;}
._4{margin-left:-3.381601px;}
._0{margin-left:-2.304000px;}
._2{margin-left:-1.152000px;}
._5{width:1.060185px;}
._3{width:2.232000px;}
._1{width:3.960000px;}
._8{width:5.016000px;}
._c{width:7.055664px;}
._b{width:8.058036px;}
._2f{width:9.073803px;}
._9{width:10.332000px;}
._a{width:11.868024px;}
._12{width:13.013871px;}
._30{width:14.059815px;}
._31{width:15.240024px;}
._d{width:16.836036px;}
._45{width:18.130720px;}
._41{width:20.490927px;}
._e{width:21.959952px;}
._19{width:23.058720px;}
._11{width:24.357600px;}
._5c{width:25.536024px;}
._33{width:27.072000px;}
._32{width:28.152000px;}
._2e{width:29.808000px;}
._20{width:32.346119px;}
._70{width:33.437905px;}
._6d{width:37.003839px;}
._37{width:38.261695px;}
._68{width:47.123976px;}
._5b{width:49.044024px;}
._3a{width:50.723976px;}
._49{width:51.957148px;}
._42{width:55.459212px;}
._4d{width:57.600000px;}
._46{width:59.114880px;}
._40{width:60.157440px;}
._22{width:62.698295px;}
._6c{width:63.729544px;}
._4b{width:65.664000px;}
._3d{width:67.792143px;}
._44{width:69.017852px;}
._3b{width:70.578567px;}
._69{width:73.027872px;}
._38{width:75.940491px;}
._5d{width:80.587815px;}
._36{width:83.638375px;}
._3f{width:84.749561px;}
._1a{width:87.138394px;}
._25{width:88.539852px;}
._28{width:90.857854px;}
._2b{width:95.439524px;}
._48{width:103.971011px;}
._43{width:106.293600px;}
._1e{width:117.478560px;}
._15{width:118.837440px;}
._3c{width:128.253570px;}
._13{width:138.563954px;}
._17{width:145.458720px;}
._1b{width:185.779092px;}
._39{width:204.365342px;}
._3e{width:214.405682px;}
._27{width:223.964158px;}
._47{width:237.155113px;}
._6f{width:241.926135px;}
._29{width:274.852354px;}
._24{width:308.998560px;}
._23{width:313.301030px;}
._2a{width:338.112463px;}
._71{width:378.877026px;}
._26{width:398.713314px;}
._1f{width:405.559440px;}
._21{width:412.104000px;}
._16{width:478.818720px;}
._6{width:494.592000px;}
._2d{width:610.524000px;}
._18{width:746.367108px;}
._59{width:887.447040px;}
._5a{width:888.897360px;}
._14{width:931.648043px;}
._4c{width:934.698135px;}
._1c{width:1007.769406px;}
._6e{width:1169.035095px;}
._35{width:1226.833095px;}
._1d{width:1809.378720px;}
.fc8{color:transparent;}
.fc6{color:rgb(51,51,204);}
.fc5{color:rgb(0,128,0);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(204,0,153);}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:23.760000px;}
.fs1a{font-size:31.680000px;}
.fsd{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs1c{font-size:45.079827px;}
.fs1e{font-size:45.279768px;}
.fsa{font-size:48.240000px;}
.fs14{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs12{font-size:59.904000px;}
.fs16{font-size:63.256461px;}
.fs18{font-size:63.263020px;}
.fsf{font-size:64.080000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.144000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:84.240000px;}
.fs11{font-size:84.384000px;}
.fs1b{font-size:90.150821px;}
.fs1f{font-size:90.340835px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:95.904000px;}
.fs2{font-size:108.000000px;}
.fs17{font-size:108.287824px;}
.fs19{font-size:108.547238px;}
.fs5{font-size:120.240000px;}
.fsc{font-size:120.384000px;}
.fs1d{font-size:141.175597px;}
.fs13{font-size:144.000000px;}
.fs10{font-size:144.144000px;}
.fs9{font-size:167.760000px;}
.fs15{font-size:169.831565px;}
.y0{bottom:0.000000px;}
.y144{bottom:2.445860px;}
.y11d{bottom:3.415329px;}
.y114{bottom:3.416833px;}
.y139{bottom:4.868166px;}
.y143{bottom:8.415073px;}
.y117{bottom:10.160119px;}
.y121{bottom:10.175128px;}
.y113{bottom:10.587421px;}
.ya{bottom:12.636000px;}
.yc{bottom:14.508000px;}
.y146{bottom:20.195599px;}
.y11c{bottom:24.559944px;}
.y148{bottom:25.846822px;}
.y167{bottom:28.728000px;}
.y9{bottom:30.636000px;}
.y11a{bottom:31.299037px;}
.y120{bottom:31.317524px;}
.yb{bottom:32.508000px;}
.y145{bottom:35.014750px;}
.y13b{bottom:35.281370px;}
.y147{bottom:40.611298px;}
.y13d{bottom:40.879908px;}
.y115{bottom:41.628056px;}
.y116{bottom:44.091738px;}
.y11e{bottom:44.133854px;}
.y166{bottom:46.728000px;}
.y118{bottom:48.426238px;}
.y119{bottom:50.887724px;}
.y122{bottom:50.893653px;}
.y13a{bottom:58.645053px;}
.y6{bottom:61.488000px;}
.y165{bottom:64.728000px;}
.y16c{bottom:68.076000px;}
.y13c{bottom:69.517480px;}
.y10d{bottom:73.044000px;}
.y104{bottom:73.080000px;}
.ya9{bottom:74.232000px;}
.y63{bottom:74.772000px;}
.y13e{bottom:75.169022px;}
.ye4{bottom:75.456000px;}
.y152{bottom:76.032000px;}
.y178{bottom:77.076000px;}
.yfe{bottom:78.480000px;}
.y12d{bottom:79.596000px;}
.ydc{bottom:81.288000px;}
.y6a{bottom:82.332000px;}
.y74{bottom:82.404000px;}
.y164{bottom:82.728000px;}
.yfd{bottom:84.024000px;}
.yaf{bottom:84.852000px;}
.y9a{bottom:86.652000px;}
.y54{bottom:87.660000px;}
.y71{bottom:88.596000px;}
.y11f{bottom:88.634938px;}
.yb8{bottom:89.280000px;}
.y12c{bottom:89.316000px;}
.ya8{bottom:89.352000px;}
.yb9{bottom:89.532000px;}
.y103{bottom:90.360000px;}
.yad{bottom:91.044000px;}
.yb2{bottom:92.808000px;}
.y187{bottom:93.168000px;}
.y62{bottom:94.212000px;}
.y5{bottom:95.148000px;}
.y123{bottom:95.394737px;}
.y15a{bottom:96.480000px;}
.y68{bottom:99.144000px;}
.y163{bottom:100.728000px;}
.y12b{bottom:104.472000px;}
.yb7{bottom:107.280000px;}
.yac{bottom:109.044000px;}
.y75{bottom:109.080000px;}
.yca{bottom:109.512000px;}
.y61{bottom:112.608000px;}
.yfc{bottom:112.824000px;}
.y53{bottom:113.760000px;}
.y159{bottom:114.480000px;}
.y162{bottom:118.728000px;}
.y2a{bottom:120.276000px;}
.y67{bottom:120.744000px;}
.y12a{bottom:122.472000px;}
.ya5{bottom:123.660000px;}
.yab{bottom:127.044000px;}
.y52{bottom:130.860000px;}
.y158{bottom:132.480000px;}
.y7c{bottom:134.496000px;}
.y87{bottom:135.216000px;}
.y161{bottom:136.728000px;}
.ybd{bottom:139.536000px;}
.yfb{bottom:141.624000px;}
.y66{bottom:142.344000px;}
.y96{bottom:143.100000px;}
.ye8{bottom:144.720000px;}
.y60{bottom:145.008000px;}
.y176{bottom:146.556000px;}
.y29{bottom:152.130000px;}
.y160{bottom:154.770000px;}
.y7b{bottom:156.090000px;}
.y51{bottom:159.660000px;}
.y40{bottom:165.525000px;}
.yda{bottom:166.320000px;}
.yfa{bottom:170.430000px;}
.y15f{bottom:172.770000px;}
.y5f{bottom:173.085000px;}
.y155{bottom:175.290000px;}
.y7a{bottom:177.690000px;}
.ye7{bottom:179.280000px;}
.ye9{bottom:179.310000px;}
.y95{bottom:180.540000px;}
.y28{bottom:183.990000px;}
.y3f{bottom:187.125000px;}
.y8{bottom:187.615500px;}
.y50{bottom:188.490000px;}
.y15e{bottom:190.770000px;}
.ya3{bottom:191.055000px;}
.y149{bottom:195.450000px;}
.yf9{bottom:199.230000px;}
.y79{bottom:199.290000px;}
.yd9{bottom:200.880000px;}
.y5e{bottom:207.645000px;}
.y15d{bottom:208.770000px;}
.ycb{bottom:210.240000px;}
.yba{bottom:210.930000px;}
.y3e{bottom:211.965000px;}
.ya2{bottom:212.655000px;}
.ye6{bottom:213.870000px;}
.yc9{bottom:214.230000px;}
.y27{bottom:216.075000px;}
.y133{bottom:216.900000px;}
.y141{bottom:217.050000px;}
.y4f{bottom:217.290000px;}
.y94{bottom:218.010000px;}
.y15c{bottom:226.770000px;}
.y93{bottom:228.030000px;}
.yf8{bottom:228.060000px;}
.ya1{bottom:234.255000px;}
.yd8{bottom:235.440000px;}
.y132{bottom:235.620000px;}
.y137{bottom:238.650000px;}
.y183{bottom:243.075000px;}
.y5d{bottom:244.365000px;}
.y15b{bottom:244.770000px;}
.y4e{bottom:246.090000px;}
.y3d{bottom:246.525000px;}
.y26{bottom:247.935000px;}
.yc8{bottom:248.835000px;}
.y92{bottom:249.630000px;}
.yf7{bottom:256.860000px;}
.y131{bottom:257.220000px;}
.y136{bottom:260.250000px;}
.ycc{bottom:268.560000px;}
.yd7{bottom:270.000000px;}
.ybc{bottom:270.465000px;}
.y91{bottom:271.230000px;}
.y4d{bottom:274.890000px;}
.ybb{bottom:276.585000px;}
.y182{bottom:277.635000px;}
.y3c{bottom:277.890000px;}
.y25{bottom:279.795000px;}
.ye5{bottom:281.775000px;}
.y135{bottom:281.850000px;}
.yc7{bottom:283.395000px;}
.y1b{bottom:285.130500px;}
.y5c{bottom:285.450000px;}
.yf6{bottom:285.660000px;}
.y16d{bottom:289.185000px;}
.y90{bottom:292.830000px;}
.y154{bottom:296.640000px;}
.y88{bottom:298.410000px;}
.y3b{bottom:299.490000px;}
.y130{bottom:301.035000px;}
.y105{bottom:302.760000px;}
.y134{bottom:303.450000px;}
.y4c{bottom:303.690000px;}
.yd6{bottom:304.590000px;}
.ye3{bottom:310.575000px;}
.y24{bottom:311.835000px;}
.y181{bottom:312.195000px;}
.y8f{bottom:314.460000px;}
.y1a{bottom:316.630500px;}
.y72{bottom:316.770000px;}
.y10c{bottom:317.850000px;}
.yc6{bottom:317.955000px;}
.y5b{bottom:320.010000px;}
.y3a{bottom:321.090000px;}
.y186{bottom:321.120000px;}
.y4b{bottom:332.535000px;}
.y8e{bottom:336.780000px;}
.y16b{bottom:337.500000px;}
.y7{bottom:338.805000px;}
.yd5{bottom:339.150000px;}
.y10b{bottom:339.480000px;}
.y39{bottom:342.690000px;}
.yf5{bottom:343.260000px;}
.y23{bottom:343.695000px;}
.ye2{bottom:345.135000px;}
.y180{bottom:346.785000px;}
.y19{bottom:348.130500px;}
.y5a{bottom:352.410000px;}
.yc5{bottom:352.515000px;}
.y16a{bottom:355.500000px;}
.y4a{bottom:361.335000px;}
.y140{bottom:363.600000px;}
.y38{bottom:364.290000px;}
.yf4{bottom:372.090000px;}
.yd4{bottom:373.710000px;}
.y22{bottom:375.585000px;}
.y175{bottom:375.915000px;}
.y124{bottom:376.305000px;}
.y18{bottom:379.630500px;}
.ye1{bottom:379.725000px;}
.y13f{bottom:379.800000px;}
.y9f{bottom:379.830000px;}
.y59{bottom:380.490000px;}
.y17f{bottom:381.345000px;}
.yc4{bottom:387.105000px;}
.y78{bottom:388.440000px;}
.y37{bottom:389.130000px;}
.y49{bottom:390.135000px;}
.y185{bottom:390.630000px;}
.y11b{bottom:394.553779px;}
.y65{bottom:397.800000px;}
.y9e{bottom:397.830000px;}
.y82{bottom:399.885000px;}
.yf3{bottom:400.890000px;}
.y8c{bottom:403.590000px;}
.y138{bottom:404.848791px;}
.y21{bottom:407.625000px;}
.yd3{bottom:408.270000px;}
.y17{bottom:411.130500px;}
.y58{bottom:412.920000px;}
.ye0{bottom:414.285000px;}
.y17e{bottom:415.905000px;}
.y77{bottom:417.240000px;}
.y153{bottom:417.960000px;}
.y48{bottom:418.935000px;}
.y81{bottom:420.090000px;}
.y32{bottom:420.480000px;}
.yc3{bottom:421.665000px;}
.y36{bottom:423.720000px;}
.yf2{bottom:429.690000px;}
.y64{bottom:432.360000px;}
.y10a{bottom:438.480000px;}
.y20{bottom:439.485000px;}
.y168{bottom:440.820000px;}
.y57{bottom:441.000000px;}
.y80{bottom:441.690000px;}
.y16{bottom:442.630500px;}
.yd2{bottom:442.830000px;}
.y129{bottom:444.165000px;}
.y98{bottom:444.450000px;}
.y47{bottom:447.735000px;}
.ydf{bottom:448.845000px;}
.y17d{bottom:450.465000px;}
.yc2{bottom:456.225000px;}
.y35{bottom:458.280000px;}
.yf1{bottom:458.490000px;}
.y109{bottom:460.080000px;}
.y2b{bottom:460.830000px;}
.y7f{bottom:461.130000px;}
.y4{bottom:461.850000px;}
.y128{bottom:462.165000px;}
.y9d{bottom:463.605000px;}
.y97{bottom:466.050000px;}
.yb0{bottom:466.665000px;}
.y31{bottom:466.920000px;}
.y1f{bottom:471.345000px;}
.y56{bottom:473.400000px;}
.y7e{bottom:474.090000px;}
.y15{bottom:474.130500px;}
.y8b{bottom:474.870000px;}
.y46{bottom:476.565000px;}
.y151{bottom:477.390000px;}
.yd1{bottom:477.435000px;}
.y108{bottom:481.710000px;}
.yde{bottom:483.405000px;}
.y17c{bottom:485.070000px;}
.yf0{bottom:487.290000px;}
.y34{bottom:489.600000px;}
.yae{bottom:489.930000px;}
.yc1{bottom:490.785000px;}
.y174{bottom:490.830000px;}
.y150{bottom:495.390000px;}
.y7d{bottom:495.690000px;}
.y30{bottom:501.480000px;}
.y107{bottom:503.310000px;}
.y1e{bottom:503.430000px;}
.y8a{bottom:503.715000px;}
.y45{bottom:505.365000px;}
.y14{bottom:505.630500px;}
.y33{bottom:511.200000px;}
.yd0{bottom:511.995000px;}
.y173{bottom:512.430000px;}
.y14f{bottom:513.390000px;}
.yef{bottom:516.135000px;}
.ydd{bottom:517.965000px;}
.y17b{bottom:519.630000px;}
.y127{bottom:520.920000px;}
.y106{bottom:524.910000px;}
.yc0{bottom:525.345000px;}
.y86{bottom:528.510000px;}
.y14e{bottom:531.390000px;}
.y89{bottom:532.515000px;}
.y172{bottom:534.030000px;}
.y44{bottom:534.165000px;}
.y1d{bottom:535.290000px;}
.y8d{bottom:536.010000px;}
.y2f{bottom:536.040000px;}
.y13{bottom:537.130500px;}
.y111{bottom:541.905000px;}
.yee{bottom:544.935000px;}
.y102{bottom:546.510000px;}
.ycf{bottom:546.555000px;}
.y14d{bottom:549.390000px;}
.y17a{bottom:554.190000px;}
.y6f{bottom:554.430000px;}
.y171{bottom:555.630000px;}
.ya6{bottom:558.210000px;}
.y73{bottom:558.690000px;}
.ybf{bottom:559.950000px;}
.y112{bottom:560.576182px;}
.y76{bottom:560.625000px;}
.y12f{bottom:561.525000px;}
.yb3{bottom:561.810000px;}
.y43{bottom:562.965000px;}
.y110{bottom:563.505000px;}
.y142{bottom:564.694153px;}
.y1c{bottom:567.150000px;}
.y14c{bottom:567.390000px;}
.y101{bottom:568.110000px;}
.y12{bottom:568.630500px;}
.y2e{bottom:570.630000px;}
.y1{bottom:571.755000px;}
.y9b{bottom:573.150000px;}
.yed{bottom:573.735000px;}
.y170{bottom:577.230000px;}
.yce{bottom:581.115000px;}
.y184{bottom:581.940000px;}
.y10f{bottom:585.105000px;}
.y14b{bottom:585.390000px;}
.y179{bottom:588.750000px;}
.y169{bottom:588.960000px;}
.y6e{bottom:588.990000px;}
.y100{bottom:589.710000px;}
.ydb{bottom:590.475000px;}
.y42{bottom:591.765000px;}
.ybe{bottom:594.510000px;}
.ya0{bottom:597.090000px;}
.yb5{bottom:598.755000px;}
.y16f{bottom:598.830000px;}
.y84{bottom:600.630000px;}
.y12e{bottom:602.385000px;}
.yec{bottom:602.535000px;}
.y2d{bottom:605.190000px;}
.y14a{bottom:605.370000px;}
.y10e{bottom:606.705000px;}
.y9c{bottom:606.885000px;}
.y156{bottom:607.830000px;}
.y157{bottom:611.280000px;}
.yff{bottom:611.355000px;}
.y10{bottom:614.775000px;}
.y125{bottom:615.210000px;}
.ycd{bottom:615.705000px;}
.ya4{bottom:616.065000px;}
.y6d{bottom:617.070000px;}
.y41{bottom:620.610000px;}
.y85{bottom:625.890000px;}
.yb1{bottom:629.100000px;}
.yaa{bottom:630.720000px;}
.yeb{bottom:631.335000px;}
.y6c{bottom:632.190000px;}
.y83{bottom:635.190000px;}
.y16e{bottom:637.275000px;}
.ya7{bottom:638.385000px;}
.yb4{bottom:640.335000px;}
.yb6{bottom:643.110000px;}
.y126{bottom:644.250000px;}
.y69{bottom:646.095000px;}
.y3{bottom:656.670000px;}
.y177{bottom:658.545000px;}
.y99{bottom:661.890000px;}
.y2c{bottom:662.550000px;}
.yea{bottom:670.785000px;}
.y6b{bottom:681.300000px;}
.y55{bottom:682.410000px;}
.y2{bottom:683.670000px;}
.y70{bottom:684.465000px;}
.y11{bottom:685.050000px;}
.yf{bottom:737.025000px;}
.ye{bottom:758.085000px;}
.yd{bottom:783.645000px;}
.h12{height:17.321133px;}
.h13{height:26.208984px;}
.h10{height:26.244141px;}
.h6{height:30.443203px;}
.h2c{height:31.300544px;}
.h30{height:31.439370px;}
.he{height:35.120039px;}
.h17{height:35.167148px;}
.h2d{height:39.313477px;}
.h1e{height:39.366211px;}
.h16{height:43.506914px;}
.h2{height:43.565273px;}
.h29{height:43.611750px;}
.h1b{height:43.670250px;}
.h23{height:43.921234px;}
.h26{height:43.925788px;}
.h11{height:48.761719px;}
.h1{height:52.417969px;}
.h4{height:52.488281px;}
.h28{height:52.522805px;}
.h1f{height:52.593258px;}
.h14{height:55.548281px;}
.h20{height:55.944281px;}
.h2e{height:56.285349px;}
.h8{height:61.236328px;}
.h15{height:61.329023px;}
.h19{height:61.411289px;}
.h32{height:61.433859px;}
.h1a{height:61.516266px;}
.h2b{height:62.594955px;}
.h31{height:62.726888px;}
.h21{height:69.675604px;}
.hd{height:69.715898px;}
.h9{height:69.809414px;}
.hc{height:69.820734px;}
.ha{height:69.914391px;}
.h24{height:75.188128px;}
.h27{height:75.368248px;}
.h1c{height:78.247148px;}
.h3{height:78.626953px;}
.h5{height:78.732422px;}
.h7{height:87.538008px;}
.hf{height:87.760406px;}
.h2a{height:90.810256px;}
.h2f{height:98.023291px;}
.h1d{height:104.835938px;}
.h18{height:104.940773px;}
.h25{height:114.227665px;}
.h22{height:117.920159px;}
.hb{height:122.133867px;}
.h0{height:810.000000px;}
.w2{width:164.432488px;}
.w4{width:185.734702px;}
.w3{width:214.665949px;}
.w1{width:253.169578px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x5a{left:3.680537px;}
.x6f{left:7.264794px;}
.x59{left:8.969237px;}
.x12{left:21.492000px;}
.x6d{left:34.749347px;}
.x6c{left:38.503117px;}
.x62{left:39.735077px;}
.x6e{left:41.115598px;}
.x5e{left:44.357516px;}
.x56{left:48.719353px;}
.x65{left:49.940776px;}
.x55{left:53.791412px;}
.x61{left:54.881313px;}
.x8{left:62.172000px;}
.x1{left:72.504000px;}
.x5{left:73.951500px;}
.x4{left:75.528000px;}
.x50{left:77.760000px;}
.x5c{left:82.961896px;}
.x16{left:84.312000px;}
.x71{left:90.841922px;}
.x51{left:95.040000px;}
.x2b{left:96.696000px;}
.x63{left:101.402847px;}
.x1d{left:105.660000px;}
.x74{left:108.998638px;}
.x64{left:111.552959px;}
.xc{left:114.084000px;}
.xf{left:116.856000px;}
.x73{left:126.449483px;}
.x3e{left:130.248000px;}
.x4b{left:137.772000px;}
.x5d{left:145.014779px;}
.x60{left:149.987755px;}
.xe{left:158.250000px;}
.x5b{left:160.664238px;}
.x10{left:161.670000px;}
.x7d{left:167.580000px;}
.x72{left:171.409289px;}
.x69{left:174.345000px;}
.x58{left:181.437124px;}
.x4f{left:183.345000px;}
.x38{left:188.280000px;}
.x6b{left:192.135749px;}
.x54{left:193.598006px;}
.x2a{left:199.830000px;}
.x57{left:223.049898px;}
.x53{left:235.266615px;}
.x17{left:253.005000px;}
.x1c{left:256.830000px;}
.x42{left:287.925000px;}
.x13{left:289.290000px;}
.x1a{left:304.770000px;}
.x3d{left:323.430000px;}
.x32{left:348.765000px;}
.x37{left:351.000000px;}
.x36{left:361.950000px;}
.x77{left:366.585000px;}
.x78{left:387.540000px;}
.x18{left:403.485000px;}
.x6{left:407.595000px;}
.x1b{left:411.690000px;}
.xd{left:417.750000px;}
.x7{left:433.335000px;}
.x7f{left:435.060000px;}
.x39{left:436.680000px;}
.x22{left:437.790000px;}
.x46{left:476.925000px;}
.x28{left:491.790000px;}
.x47{left:497.985000px;}
.x11{left:505.875000px;}
.x4e{left:519.375000px;}
.x52{left:525.780000px;}
.x3c{left:542.625000px;}
.x26{left:549.000000px;}
.x68{left:554.940000px;}
.x30{left:561.960000px;}
.x7c{left:571.065000px;}
.x35{left:575.745000px;}
.x2{left:591.090000px;}
.x7b{left:597.855000px;}
.x79{left:606.450000px;}
.x41{left:617.685000px;}
.x2e{left:622.590000px;}
.x1f{left:662.655000px;}
.x20{left:676.155000px;}
.xa{left:698.040000px;}
.x7e{left:717.810000px;}
.x23{left:718.920000px;}
.x45{left:740.310000px;}
.x4c{left:746.670000px;}
.x2f{left:753.630000px;}
.x66{left:766.080000px;}
.x4d{left:767.730000px;}
.x3{left:772.020000px;}
.x3f{left:773.310000px;}
.x1e{left:783.000000px;}
.x3a{left:786.780000px;}
.x33{left:793.290000px;}
.x40{left:794.370000px;}
.x34{left:797.115000px;}
.x75{left:799.050000px;}
.x67{left:810.510000px;}
.x49{left:811.545000px;}
.x43{left:818.130000px;}
.x3b{left:826.740000px;}
.x4a{left:832.605000px;}
.x44{left:839.190000px;}
.x21{left:846.075000px;}
.xb{left:847.650000px;}
.x19{left:850.935000px;}
.x15{left:852.150000px;}
.x70{left:855.150000px;}
.x9{left:860.284500px;}
.x24{left:867.810000px;}
.x7a{left:872.565000px;}
.x5f{left:878.746387px;}
.x29{left:899.280000px;}
.x6a{left:904.290000px;}
.x2c{left:910.590000px;}
.x76{left:922.470000px;}
.x31{left:943.455000px;}
.x14{left:946.410000px;}
.x27{left:966.450000px;}
.x2d{left:974.190000px;}
.x25{left:979.950000px;}
.x48{left:1011.450000px;}
@media print{
.v6{vertical-align:-75.160597pt;}
.va{vertical-align:-63.304583pt;}
.v1{vertical-align:-51.584000pt;}
.v9{vertical-align:-43.211346pt;}
.v8{vertical-align:-38.657520pt;}
.v2{vertical-align:-20.480000pt;}
.v3{vertical-align:-15.360000pt;}
.v7{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.720000pt;}
.v5{vertical-align:38.293333pt;}
.ls58{letter-spacing:-3.282316pt;}
.ls5e{letter-spacing:-3.211496pt;}
.ls7a{letter-spacing:-3.008000pt;}
.ls50{letter-spacing:-0.768000pt;}
.ls66{letter-spacing:-0.736000pt;}
.ls6e{letter-spacing:-0.688000pt;}
.ls39{letter-spacing:-0.608000pt;}
.ls4c{letter-spacing:-0.512000pt;}
.ls4b{letter-spacing:-0.384000pt;}
.ls57{letter-spacing:-0.383199pt;}
.ls46{letter-spacing:-0.303467pt;}
.ls4a{letter-spacing:-0.272533pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.242667pt;}
.ls70{letter-spacing:-0.230933pt;}
.ls38{letter-spacing:-0.227733pt;}
.ls4f{letter-spacing:-0.198933pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls3d{letter-spacing:-0.185067pt;}
.ls2d{letter-spacing:-0.182933pt;}
.ls1d{letter-spacing:-0.168533pt;}
.ls2e{letter-spacing:-0.137600pt;}
.ls30{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls78{letter-spacing:-0.089067pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.047467pt;}
.ls10{letter-spacing:-0.037867pt;}
.ls28{letter-spacing:-0.033067pt;}
.ls29{letter-spacing:-0.025067pt;}
.lse{letter-spacing:-0.019200pt;}
.ls3c{letter-spacing:-0.016533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls59{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.016533pt;}
.ls9{letter-spacing:0.033067pt;}
.ls69{letter-spacing:0.047467pt;}
.ls6d{letter-spacing:0.093867pt;}
.ls2{letter-spacing:0.096000pt;}
.ls5d{letter-spacing:0.101088pt;}
.ls24{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.165333pt;}
.ls67{letter-spacing:0.183467pt;}
.ls34{letter-spacing:0.185067pt;}
.ls2a{letter-spacing:0.188416pt;}
.ls53{letter-spacing:0.188936pt;}
.ls0{letter-spacing:0.192000pt;}
.ls2b{letter-spacing:0.199040pt;}
.ls2f{letter-spacing:0.210133pt;}
.ls64{letter-spacing:0.230933pt;}
.ls1c{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.275200pt;}
.ls27{letter-spacing:0.297600pt;}
.ls14{letter-spacing:0.303467pt;}
.ls3f{letter-spacing:0.320000pt;}
.ls55{letter-spacing:0.351018pt;}
.ls68{letter-spacing:0.367467pt;}
.ls51{letter-spacing:0.448000pt;}
.ls6f{letter-spacing:0.544000pt;}
.ls56{letter-spacing:0.576000pt;}
.ls71{letter-spacing:0.592640pt;}
.ls72{letter-spacing:0.593067pt;}
.ls11{letter-spacing:0.602667pt;}
.ls12{letter-spacing:0.618667pt;}
.ls22{letter-spacing:0.621056pt;}
.ls13{letter-spacing:0.656000pt;}
.ls37{letter-spacing:0.656640pt;}
.ls16{letter-spacing:0.672000pt;}
.ls3{letter-spacing:0.704000pt;}
.ls3b{letter-spacing:0.768000pt;}
.ls65{letter-spacing:0.821333pt;}
.ls15{letter-spacing:1.261056pt;}
.ls79{letter-spacing:1.288491pt;}
.ls1b{letter-spacing:1.296640pt;}
.ls4d{letter-spacing:1.408000pt;}
.ls77{letter-spacing:1.696000pt;}
.ls52{letter-spacing:1.764443pt;}
.ls76{letter-spacing:1.872640pt;}
.ls1e{letter-spacing:1.936640pt;}
.ls54{letter-spacing:2.200762pt;}
.ls75{letter-spacing:2.512640pt;}
.ls62{letter-spacing:3.152853pt;}
.ls1a{letter-spacing:3.216640pt;}
.ls60{letter-spacing:3.792640pt;}
.ls61{letter-spacing:4.432640pt;}
.lsa{letter-spacing:5.081600pt;}
.ls5a{letter-spacing:5.248000pt;}
.ls63{letter-spacing:7.633280pt;}
.ls74{letter-spacing:8.272640pt;}
.ls48{letter-spacing:8.448000pt;}
.ls49{letter-spacing:9.194667pt;}
.ls6a{letter-spacing:9.552640pt;}
.ls6b{letter-spacing:9.553280pt;}
.ls44{letter-spacing:9.581056pt;}
.ls45{letter-spacing:9.616640pt;}
.ls6c{letter-spacing:10.832640pt;}
.ls3e{letter-spacing:10.896640pt;}
.ls40{letter-spacing:18.593067pt;}
.ls73{letter-spacing:19.808000pt;}
.ls2c{letter-spacing:20.496213pt;}
.lsb{letter-spacing:21.776640pt;}
.lsc{letter-spacing:22.433493pt;}
.ls23{letter-spacing:24.448000pt;}
.ls31{letter-spacing:45.088000pt;}
.ls42{letter-spacing:51.856640pt;}
.ls47{letter-spacing:53.760000pt;}
.ls5f{letter-spacing:57.568000pt;}
.ls3a{letter-spacing:59.536640pt;}
.ls35{letter-spacing:62.736640pt;}
.ls33{letter-spacing:67.856640pt;}
.ls32{letter-spacing:73.616640pt;}
.ls36{letter-spacing:77.490240pt;}
.ls41{letter-spacing:95.376640pt;}
.ls6{letter-spacing:100.629333pt;}
.ls7{letter-spacing:120.563200pt;}
.ls5{letter-spacing:120.608000pt;}
.ls19{letter-spacing:123.251200pt;}
.ls18{letter-spacing:123.296000pt;}
.ls5c{letter-spacing:133.230269pt;}
.ls4e{letter-spacing:155.492567pt;}
.ls43{letter-spacing:209.936640pt;}
.ls5b{letter-spacing:353.755234pt;}
.ws40{word-spacing:-52.971052pt;}
.ws3d{word-spacing:-52.844458pt;}
.ws50{word-spacing:-44.086327pt;}
.ws45{word-spacing:-43.993601pt;}
.ws23{word-spacing:-35.456000pt;}
.ws37{word-spacing:-35.136000pt;}
.ws4b{word-spacing:-26.352000pt;}
.ws10{word-spacing:-24.335360pt;}
.wsd{word-spacing:-24.301611pt;}
.ws2a{word-spacing:-23.983360pt;}
.ws12{word-spacing:-23.974144pt;}
.ws26{word-spacing:-23.966827pt;}
.ws24{word-spacing:-23.848427pt;}
.ws13{word-spacing:-23.698944pt;}
.wsa{word-spacing:-23.696427pt;}
.wse{word-spacing:-23.679893pt;}
.wsc{word-spacing:-23.679744pt;}
.ws9{word-spacing:-23.663360pt;}
.wsb{word-spacing:-23.661077pt;}
.ws28{word-spacing:-23.646827pt;}
.ws60{word-spacing:-23.494827pt;}
.ws29{word-spacing:-23.478293pt;}
.ws25{word-spacing:-23.471211pt;}
.ws2b{word-spacing:-23.359893pt;}
.ws27{word-spacing:-23.055360pt;}
.ws1b{word-spacing:-21.120107pt;}
.ws1a{word-spacing:-21.114240pt;}
.ws57{word-spacing:-20.852224pt;}
.ws1d{word-spacing:-20.833173pt;}
.ws58{word-spacing:-20.816640pt;}
.ws1e{word-spacing:-20.791573pt;}
.ws1c{word-spacing:-20.783573pt;}
.ws42{word-spacing:-18.368000pt;}
.ws36{word-spacing:-18.240000pt;}
.ws14{word-spacing:-18.048000pt;}
.ws17{word-spacing:-17.920000pt;}
.ws33{word-spacing:-17.792000pt;}
.ws32{word-spacing:-17.763584pt;}
.ws19{word-spacing:-17.728000pt;}
.ws2f{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.600000pt;}
.ws30{word-spacing:-17.408000pt;}
.ws31{word-spacing:-17.280000pt;}
.ws35{word-spacing:-17.024000pt;}
.ws5e{word-spacing:-16.463360pt;}
.ws15{word-spacing:-16.000213pt;}
.ws16{word-spacing:-15.592213pt;}
.ws51{word-spacing:-15.588693pt;}
.ws5b{word-spacing:-15.311360pt;}
.ws54{word-spacing:-15.134827pt;}
.ws55{word-spacing:-15.087360pt;}
.ws56{word-spacing:-14.998293pt;}
.ws53{word-spacing:-14.950827pt;}
.ws59{word-spacing:-14.861227pt;}
.ws5d{word-spacing:-14.814827pt;}
.ws1f{word-spacing:-14.802944pt;}
.ws1{word-spacing:-14.767360pt;}
.ws11{word-spacing:-14.719893pt;}
.ws5f{word-spacing:-14.678293pt;}
.wsf{word-spacing:-14.672427pt;}
.ws5c{word-spacing:-14.536427pt;}
.ws2e{word-spacing:-14.494827pt;}
.ws5a{word-spacing:-14.079360pt;}
.ws52{word-spacing:-14.031360pt;}
.ws2d{word-spacing:-13.536000pt;}
.ws4a{word-spacing:-13.360000pt;}
.ws2c{word-spacing:-13.344000pt;}
.ws20{word-spacing:-11.920640pt;}
.ws34{word-spacing:-11.721707pt;}
.ws39{word-spacing:-1.820671pt;}
.ws2{word-spacing:-1.754667pt;}
.ws5{word-spacing:-1.381333pt;}
.ws6{word-spacing:-0.794667pt;}
.ws64{word-spacing:-0.640000pt;}
.ws3e{word-spacing:-0.407251pt;}
.ws62{word-spacing:-0.256000pt;}
.ws3a{word-spacing:-0.245164pt;}
.ws4d{word-spacing:-0.141337pt;}
.ws41{word-spacing:-0.096486pt;}
.ws3c{word-spacing:-0.096256pt;}
.ws4{word-spacing:-0.096000pt;}
.ws4f{word-spacing:-0.080303pt;}
.ws44{word-spacing:-0.080134pt;}
.ws3f{word-spacing:-0.056234pt;}
.ws3b{word-spacing:-0.056228pt;}
.ws47{word-spacing:-0.040071pt;}
.ws0{word-spacing:0.000000pt;}
.ws63{word-spacing:0.192000pt;}
.ws43{word-spacing:0.303065pt;}
.ws7{word-spacing:0.592000pt;}
.ws65{word-spacing:0.938667pt;}
.ws3{word-spacing:1.338667pt;}
.ws61{word-spacing:1.856000pt;}
.ws48{word-spacing:3.242245pt;}
.ws22{word-spacing:49.247360pt;}
.ws21{word-spacing:49.317824pt;}
.ws8{word-spacing:96.944615pt;}
.ws4c{word-spacing:227.118407pt;}
.ws46{word-spacing:265.717376pt;}
.ws38{word-spacing:278.502783pt;}
.ws49{word-spacing:428.718513pt;}
.ws4e{word-spacing:443.882757pt;}
._58{margin-left:-390.069757pt;}
._61{margin-left:-225.877490pt;}
._64{margin-left:-207.232704pt;}
._55{margin-left:-201.362881pt;}
._50{margin-left:-198.551019pt;}
._51{margin-left:-196.970546pt;}
._4e{margin-left:-194.504618pt;}
._62{margin-left:-191.226319pt;}
._52{margin-left:-189.698032pt;}
._63{margin-left:-188.547036pt;}
._53{margin-left:-184.981689pt;}
._56{margin-left:-173.145580pt;}
._54{margin-left:-161.352594pt;}
._4f{margin-left:-159.257054pt;}
._67{margin-left:-156.558792pt;}
._6b{margin-left:-155.197765pt;}
._6a{margin-left:-151.053927pt;}
._66{margin-left:-142.354155pt;}
._60{margin-left:-115.195107pt;}
._65{margin-left:-107.045398pt;}
._5e{margin-left:-99.116531pt;}
._57{margin-left:-80.745926pt;}
._5f{margin-left:-59.908546pt;}
._4a{margin-left:-11.184000pt;}
._f{margin-left:-9.698730pt;}
._2c{margin-left:-8.660975pt;}
._10{margin-left:-6.554155pt;}
._7{margin-left:-4.948774pt;}
._34{margin-left:-3.921664pt;}
._4{margin-left:-3.005868pt;}
._0{margin-left:-2.048000pt;}
._2{margin-left:-1.024000pt;}
._5{width:0.942387pt;}
._3{width:1.984000pt;}
._1{width:3.520000pt;}
._8{width:4.458667pt;}
._c{width:6.271701pt;}
._b{width:7.162699pt;}
._2f{width:8.065603pt;}
._9{width:9.184000pt;}
._a{width:10.549355pt;}
._12{width:11.567885pt;}
._30{width:12.497613pt;}
._31{width:13.546688pt;}
._d{width:14.965365pt;}
._45{width:16.116195pt;}
._41{width:18.214157pt;}
._e{width:19.519957pt;}
._19{width:20.496640pt;}
._11{width:21.651200pt;}
._5c{width:22.698688pt;}
._33{width:24.064000pt;}
._32{width:25.024000pt;}
._2e{width:26.496000pt;}
._20{width:28.752105pt;}
._70{width:29.722583pt;}
._6d{width:32.892301pt;}
._37{width:34.010395pt;}
._68{width:41.887979pt;}
._5b{width:43.594688pt;}
._3a{width:45.087979pt;}
._49{width:46.184131pt;}
._42{width:49.297078pt;}
._4d{width:51.200000pt;}
._46{width:52.546560pt;}
._40{width:53.473280pt;}
._22{width:55.731818pt;}
._6c{width:56.648484pt;}
._4b{width:58.368000pt;}
._3d{width:60.259683pt;}
._44{width:61.349202pt;}
._3b{width:62.736504pt;}
._69{width:64.913664pt;}
._38{width:67.502659pt;}
._5d{width:71.633613pt;}
._36{width:74.345222pt;}
._3f{width:75.332943pt;}
._1a{width:77.456350pt;}
._25{width:78.702091pt;}
._28{width:80.762537pt;}
._2b{width:84.835132pt;}
._48{width:92.418676pt;}
._43{width:94.483200pt;}
._1e{width:104.425386pt;}
._15{width:105.633280pt;}
._3c{width:114.003174pt;}
._13{width:123.167959pt;}
._17{width:129.296640pt;}
._1b{width:165.136971pt;}
._39{width:181.658082pt;}
._3e{width:190.582829pt;}
._27{width:199.079252pt;}
._47{width:210.804545pt;}
._6f{width:215.045453pt;}
._29{width:244.313204pt;}
._24{width:274.665386pt;}
._23{width:278.489805pt;}
._2a{width:300.544411pt;}
._71{width:336.779578pt;}
._26{width:354.411835pt;}
._1f{width:360.497280pt;}
._21{width:366.314667pt;}
._16{width:425.616640pt;}
._6{width:439.637333pt;}
._2d{width:542.688000pt;}
._18{width:663.437430pt;}
._59{width:788.841813pt;}
._5a{width:790.130987pt;}
._14{width:828.131593pt;}
._4c{width:830.842787pt;}
._1c{width:895.795028pt;}
._6e{width:1039.142307pt;}
._35{width:1090.518307pt;}
._1d{width:1608.336640pt;}
.fse{font-size:21.120000pt;}
.fs1a{font-size:28.160000pt;}
.fsd{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs1c{font-size:40.070958pt;}
.fs1e{font-size:40.248682pt;}
.fsa{font-size:42.880000pt;}
.fs14{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs12{font-size:53.248000pt;}
.fs16{font-size:56.227965pt;}
.fs18{font-size:56.233795pt;}
.fsf{font-size:56.960000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.128000pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:74.880000pt;}
.fs11{font-size:75.008000pt;}
.fs1b{font-size:80.134063pt;}
.fs1f{font-size:80.302964pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:85.248000pt;}
.fs2{font-size:96.000000pt;}
.fs17{font-size:96.255843pt;}
.fs19{font-size:96.486434pt;}
.fs5{font-size:106.880000pt;}
.fsc{font-size:107.008000pt;}
.fs1d{font-size:125.489420pt;}
.fs13{font-size:128.000000pt;}
.fs10{font-size:128.128000pt;}
.fs9{font-size:149.120000pt;}
.fs15{font-size:150.961391pt;}
.y0{bottom:0.000000pt;}
.y144{bottom:2.174098pt;}
.y11d{bottom:3.035848pt;}
.y114{bottom:3.037185pt;}
.y139{bottom:4.327259pt;}
.y143{bottom:7.480065pt;}
.y117{bottom:9.031217pt;}
.y121{bottom:9.044558pt;}
.y113{bottom:9.411041pt;}
.ya{bottom:11.232000pt;}
.yc{bottom:12.896000pt;}
.y146{bottom:17.951643pt;}
.y11c{bottom:21.831061pt;}
.y148{bottom:22.974953pt;}
.y167{bottom:25.536000pt;}
.y9{bottom:27.232000pt;}
.y11a{bottom:27.821366pt;}
.y120{bottom:27.837799pt;}
.yb{bottom:28.896000pt;}
.y145{bottom:31.124222pt;}
.y13b{bottom:31.361217pt;}
.y147{bottom:36.098931pt;}
.y13d{bottom:36.337696pt;}
.y115{bottom:37.002717pt;}
.y116{bottom:39.192656pt;}
.y11e{bottom:39.230093pt;}
.y166{bottom:41.536000pt;}
.y118{bottom:43.045544pt;}
.y119{bottom:45.233532pt;}
.y122{bottom:45.238803pt;}
.y13a{bottom:52.128936pt;}
.y6{bottom:54.656000pt;}
.y165{bottom:57.536000pt;}
.y16c{bottom:60.512000pt;}
.y13c{bottom:61.793316pt;}
.y10d{bottom:64.928000pt;}
.y104{bottom:64.960000pt;}
.ya9{bottom:65.984000pt;}
.y63{bottom:66.464000pt;}
.y13e{bottom:66.816909pt;}
.ye4{bottom:67.072000pt;}
.y152{bottom:67.584000pt;}
.y178{bottom:68.512000pt;}
.yfe{bottom:69.760000pt;}
.y12d{bottom:70.752000pt;}
.ydc{bottom:72.256000pt;}
.y6a{bottom:73.184000pt;}
.y74{bottom:73.248000pt;}
.y164{bottom:73.536000pt;}
.yfd{bottom:74.688000pt;}
.yaf{bottom:75.424000pt;}
.y9a{bottom:77.024000pt;}
.y54{bottom:77.920000pt;}
.y71{bottom:78.752000pt;}
.y11f{bottom:78.786612pt;}
.yb8{bottom:79.360000pt;}
.y12c{bottom:79.392000pt;}
.ya8{bottom:79.424000pt;}
.yb9{bottom:79.584000pt;}
.y103{bottom:80.320000pt;}
.yad{bottom:80.928000pt;}
.yb2{bottom:82.496000pt;}
.y187{bottom:82.816000pt;}
.y62{bottom:83.744000pt;}
.y5{bottom:84.576000pt;}
.y123{bottom:84.795322pt;}
.y15a{bottom:85.760000pt;}
.y68{bottom:88.128000pt;}
.y163{bottom:89.536000pt;}
.y12b{bottom:92.864000pt;}
.yb7{bottom:95.360000pt;}
.yac{bottom:96.928000pt;}
.y75{bottom:96.960000pt;}
.yca{bottom:97.344000pt;}
.y61{bottom:100.096000pt;}
.yfc{bottom:100.288000pt;}
.y53{bottom:101.120000pt;}
.y159{bottom:101.760000pt;}
.y162{bottom:105.536000pt;}
.y2a{bottom:106.912000pt;}
.y67{bottom:107.328000pt;}
.y12a{bottom:108.864000pt;}
.ya5{bottom:109.920000pt;}
.yab{bottom:112.928000pt;}
.y52{bottom:116.320000pt;}
.y158{bottom:117.760000pt;}
.y7c{bottom:119.552000pt;}
.y87{bottom:120.192000pt;}
.y161{bottom:121.536000pt;}
.ybd{bottom:124.032000pt;}
.yfb{bottom:125.888000pt;}
.y66{bottom:126.528000pt;}
.y96{bottom:127.200000pt;}
.ye8{bottom:128.640000pt;}
.y60{bottom:128.896000pt;}
.y176{bottom:130.272000pt;}
.y29{bottom:135.226667pt;}
.y160{bottom:137.573333pt;}
.y7b{bottom:138.746667pt;}
.y51{bottom:141.920000pt;}
.y40{bottom:147.133333pt;}
.yda{bottom:147.840000pt;}
.yfa{bottom:151.493333pt;}
.y15f{bottom:153.573333pt;}
.y5f{bottom:153.853333pt;}
.y155{bottom:155.813333pt;}
.y7a{bottom:157.946667pt;}
.ye7{bottom:159.360000pt;}
.ye9{bottom:159.386667pt;}
.y95{bottom:160.480000pt;}
.y28{bottom:163.546667pt;}
.y3f{bottom:166.333333pt;}
.y8{bottom:166.769333pt;}
.y50{bottom:167.546667pt;}
.y15e{bottom:169.573333pt;}
.ya3{bottom:169.826667pt;}
.y149{bottom:173.733333pt;}
.yf9{bottom:177.093333pt;}
.y79{bottom:177.146667pt;}
.yd9{bottom:178.560000pt;}
.y5e{bottom:184.573333pt;}
.y15d{bottom:185.573333pt;}
.ycb{bottom:186.880000pt;}
.yba{bottom:187.493333pt;}
.y3e{bottom:188.413333pt;}
.ya2{bottom:189.026667pt;}
.ye6{bottom:190.106667pt;}
.yc9{bottom:190.426667pt;}
.y27{bottom:192.066667pt;}
.y133{bottom:192.800000pt;}
.y141{bottom:192.933333pt;}
.y4f{bottom:193.146667pt;}
.y94{bottom:193.786667pt;}
.y15c{bottom:201.573333pt;}
.y93{bottom:202.693333pt;}
.yf8{bottom:202.720000pt;}
.ya1{bottom:208.226667pt;}
.yd8{bottom:209.280000pt;}
.y132{bottom:209.440000pt;}
.y137{bottom:212.133333pt;}
.y183{bottom:216.066667pt;}
.y5d{bottom:217.213333pt;}
.y15b{bottom:217.573333pt;}
.y4e{bottom:218.746667pt;}
.y3d{bottom:219.133333pt;}
.y26{bottom:220.386667pt;}
.yc8{bottom:221.186667pt;}
.y92{bottom:221.893333pt;}
.yf7{bottom:228.320000pt;}
.y131{bottom:228.640000pt;}
.y136{bottom:231.333333pt;}
.ycc{bottom:238.720000pt;}
.yd7{bottom:240.000000pt;}
.ybc{bottom:240.413333pt;}
.y91{bottom:241.093333pt;}
.y4d{bottom:244.346667pt;}
.ybb{bottom:245.853333pt;}
.y182{bottom:246.786667pt;}
.y3c{bottom:247.013333pt;}
.y25{bottom:248.706667pt;}
.ye5{bottom:250.466667pt;}
.y135{bottom:250.533333pt;}
.yc7{bottom:251.906667pt;}
.y1b{bottom:253.449333pt;}
.y5c{bottom:253.733333pt;}
.yf6{bottom:253.920000pt;}
.y16d{bottom:257.053333pt;}
.y90{bottom:260.293333pt;}
.y154{bottom:263.680000pt;}
.y88{bottom:265.253333pt;}
.y3b{bottom:266.213333pt;}
.y130{bottom:267.586667pt;}
.y105{bottom:269.120000pt;}
.y134{bottom:269.733333pt;}
.y4c{bottom:269.946667pt;}
.yd6{bottom:270.746667pt;}
.ye3{bottom:276.066667pt;}
.y24{bottom:277.186667pt;}
.y181{bottom:277.506667pt;}
.y8f{bottom:279.520000pt;}
.y1a{bottom:281.449333pt;}
.y72{bottom:281.573333pt;}
.y10c{bottom:282.533333pt;}
.yc6{bottom:282.626667pt;}
.y5b{bottom:284.453333pt;}
.y3a{bottom:285.413333pt;}
.y186{bottom:285.440000pt;}
.y4b{bottom:295.586667pt;}
.y8e{bottom:299.360000pt;}
.y16b{bottom:300.000000pt;}
.y7{bottom:301.160000pt;}
.yd5{bottom:301.466667pt;}
.y10b{bottom:301.760000pt;}
.y39{bottom:304.613333pt;}
.yf5{bottom:305.120000pt;}
.y23{bottom:305.506667pt;}
.ye2{bottom:306.786667pt;}
.y180{bottom:308.253333pt;}
.y19{bottom:309.449333pt;}
.y5a{bottom:313.253333pt;}
.yc5{bottom:313.346667pt;}
.y16a{bottom:316.000000pt;}
.y4a{bottom:321.186667pt;}
.y140{bottom:323.200000pt;}
.y38{bottom:323.813333pt;}
.yf4{bottom:330.746667pt;}
.yd4{bottom:332.186667pt;}
.y22{bottom:333.853333pt;}
.y175{bottom:334.146667pt;}
.y124{bottom:334.493333pt;}
.y18{bottom:337.449333pt;}
.ye1{bottom:337.533333pt;}
.y13f{bottom:337.600000pt;}
.y9f{bottom:337.626667pt;}
.y59{bottom:338.213333pt;}
.y17f{bottom:338.973333pt;}
.yc4{bottom:344.093333pt;}
.y78{bottom:345.280000pt;}
.y37{bottom:345.893333pt;}
.y49{bottom:346.786667pt;}
.y185{bottom:347.226667pt;}
.y11b{bottom:350.714470pt;}
.y65{bottom:353.600000pt;}
.y9e{bottom:353.626667pt;}
.y82{bottom:355.453333pt;}
.yf3{bottom:356.346667pt;}
.y8c{bottom:358.746667pt;}
.y138{bottom:359.865592pt;}
.y21{bottom:362.333333pt;}
.yd3{bottom:362.906667pt;}
.y17{bottom:365.449333pt;}
.y58{bottom:367.040000pt;}
.ye0{bottom:368.253333pt;}
.y17e{bottom:369.693333pt;}
.y77{bottom:370.880000pt;}
.y153{bottom:371.520000pt;}
.y48{bottom:372.386667pt;}
.y81{bottom:373.413333pt;}
.y32{bottom:373.760000pt;}
.yc3{bottom:374.813333pt;}
.y36{bottom:376.640000pt;}
.yf2{bottom:381.946667pt;}
.y64{bottom:384.320000pt;}
.y10a{bottom:389.760000pt;}
.y20{bottom:390.653333pt;}
.y168{bottom:391.840000pt;}
.y57{bottom:392.000000pt;}
.y80{bottom:392.613333pt;}
.y16{bottom:393.449333pt;}
.yd2{bottom:393.626667pt;}
.y129{bottom:394.813333pt;}
.y98{bottom:395.066667pt;}
.y47{bottom:397.986667pt;}
.ydf{bottom:398.973333pt;}
.y17d{bottom:400.413333pt;}
.yc2{bottom:405.533333pt;}
.y35{bottom:407.360000pt;}
.yf1{bottom:407.546667pt;}
.y109{bottom:408.960000pt;}
.y2b{bottom:409.626667pt;}
.y7f{bottom:409.893333pt;}
.y4{bottom:410.533333pt;}
.y128{bottom:410.813333pt;}
.y9d{bottom:412.093333pt;}
.y97{bottom:414.266667pt;}
.yb0{bottom:414.813333pt;}
.y31{bottom:415.040000pt;}
.y1f{bottom:418.973333pt;}
.y56{bottom:420.800000pt;}
.y7e{bottom:421.413333pt;}
.y15{bottom:421.449333pt;}
.y8b{bottom:422.106667pt;}
.y46{bottom:423.613333pt;}
.y151{bottom:424.346667pt;}
.yd1{bottom:424.386667pt;}
.y108{bottom:428.186667pt;}
.yde{bottom:429.693333pt;}
.y17c{bottom:431.173333pt;}
.yf0{bottom:433.146667pt;}
.y34{bottom:435.200000pt;}
.yae{bottom:435.493333pt;}
.yc1{bottom:436.253333pt;}
.y174{bottom:436.293333pt;}
.y150{bottom:440.346667pt;}
.y7d{bottom:440.613333pt;}
.y30{bottom:445.760000pt;}
.y107{bottom:447.386667pt;}
.y1e{bottom:447.493333pt;}
.y8a{bottom:447.746667pt;}
.y45{bottom:449.213333pt;}
.y14{bottom:449.449333pt;}
.y33{bottom:454.400000pt;}
.yd0{bottom:455.106667pt;}
.y173{bottom:455.493333pt;}
.y14f{bottom:456.346667pt;}
.yef{bottom:458.786667pt;}
.ydd{bottom:460.413333pt;}
.y17b{bottom:461.893333pt;}
.y127{bottom:463.040000pt;}
.y106{bottom:466.586667pt;}
.yc0{bottom:466.973333pt;}
.y86{bottom:469.786667pt;}
.y14e{bottom:472.346667pt;}
.y89{bottom:473.346667pt;}
.y172{bottom:474.693333pt;}
.y44{bottom:474.813333pt;}
.y1d{bottom:475.813333pt;}
.y8d{bottom:476.453333pt;}
.y2f{bottom:476.480000pt;}
.y13{bottom:477.449333pt;}
.y111{bottom:481.693333pt;}
.yee{bottom:484.386667pt;}
.y102{bottom:485.786667pt;}
.ycf{bottom:485.826667pt;}
.y14d{bottom:488.346667pt;}
.y17a{bottom:492.613333pt;}
.y6f{bottom:492.826667pt;}
.y171{bottom:493.893333pt;}
.ya6{bottom:496.186667pt;}
.y73{bottom:496.613333pt;}
.ybf{bottom:497.733333pt;}
.y112{bottom:498.289939pt;}
.y76{bottom:498.333333pt;}
.y12f{bottom:499.133333pt;}
.yb3{bottom:499.386667pt;}
.y43{bottom:500.413333pt;}
.y110{bottom:500.893333pt;}
.y142{bottom:501.950358pt;}
.y1c{bottom:504.133333pt;}
.y14c{bottom:504.346667pt;}
.y101{bottom:504.986667pt;}
.y12{bottom:505.449333pt;}
.y2e{bottom:507.226667pt;}
.y1{bottom:508.226667pt;}
.y9b{bottom:509.466667pt;}
.yed{bottom:509.986667pt;}
.y170{bottom:513.093333pt;}
.yce{bottom:516.546667pt;}
.y184{bottom:517.280000pt;}
.y10f{bottom:520.093333pt;}
.y14b{bottom:520.346667pt;}
.y179{bottom:523.333333pt;}
.y169{bottom:523.520000pt;}
.y6e{bottom:523.546667pt;}
.y100{bottom:524.186667pt;}
.ydb{bottom:524.866667pt;}
.y42{bottom:526.013333pt;}
.ybe{bottom:528.453333pt;}
.ya0{bottom:530.746667pt;}
.yb5{bottom:532.226667pt;}
.y16f{bottom:532.293333pt;}
.y84{bottom:533.893333pt;}
.y12e{bottom:535.453333pt;}
.yec{bottom:535.586667pt;}
.y2d{bottom:537.946667pt;}
.y14a{bottom:538.106667pt;}
.y10e{bottom:539.293333pt;}
.y9c{bottom:539.453333pt;}
.y156{bottom:540.293333pt;}
.y157{bottom:543.360000pt;}
.yff{bottom:543.426667pt;}
.y10{bottom:546.466667pt;}
.y125{bottom:546.853333pt;}
.ycd{bottom:547.293333pt;}
.ya4{bottom:547.613333pt;}
.y6d{bottom:548.506667pt;}
.y41{bottom:551.653333pt;}
.y85{bottom:556.346667pt;}
.yb1{bottom:559.200000pt;}
.yaa{bottom:560.640000pt;}
.yeb{bottom:561.186667pt;}
.y6c{bottom:561.946667pt;}
.y83{bottom:564.613333pt;}
.y16e{bottom:566.466667pt;}
.ya7{bottom:567.453333pt;}
.yb4{bottom:569.186667pt;}
.yb6{bottom:571.653333pt;}
.y126{bottom:572.666667pt;}
.y69{bottom:574.306667pt;}
.y3{bottom:583.706667pt;}
.y177{bottom:585.373333pt;}
.y99{bottom:588.346667pt;}
.y2c{bottom:588.933333pt;}
.yea{bottom:596.253333pt;}
.y6b{bottom:605.600000pt;}
.y55{bottom:606.586667pt;}
.y2{bottom:607.706667pt;}
.y70{bottom:608.413333pt;}
.y11{bottom:608.933333pt;}
.yf{bottom:655.133333pt;}
.ye{bottom:673.853333pt;}
.yd{bottom:696.573333pt;}
.h12{height:15.396562pt;}
.h13{height:23.296875pt;}
.h10{height:23.328125pt;}
.h6{height:27.060625pt;}
.h2c{height:27.822706pt;}
.h30{height:27.946107pt;}
.he{height:31.217812pt;}
.h17{height:31.259687pt;}
.h2d{height:34.945312pt;}
.h1e{height:34.992188pt;}
.h16{height:38.672812pt;}
.h2{height:38.724688pt;}
.h29{height:38.766000pt;}
.h1b{height:38.818000pt;}
.h23{height:39.041097pt;}
.h26{height:39.045145pt;}
.h11{height:43.343750pt;}
.h1{height:46.593750pt;}
.h4{height:46.656250pt;}
.h28{height:46.686937pt;}
.h1f{height:46.749562pt;}
.h14{height:49.376250pt;}
.h20{height:49.728250pt;}
.h2e{height:50.031422pt;}
.h8{height:54.432292pt;}
.h15{height:54.514687pt;}
.h19{height:54.587812pt;}
.h32{height:54.607875pt;}
.h1a{height:54.681125pt;}
.h2b{height:55.639960pt;}
.h31{height:55.757234pt;}
.h21{height:61.933870pt;}
.hd{height:61.969687pt;}
.h9{height:62.052813pt;}
.hc{height:62.062875pt;}
.ha{height:62.146125pt;}
.h24{height:66.833891pt;}
.h27{height:66.993998pt;}
.h1c{height:69.553021pt;}
.h3{height:69.890625pt;}
.h5{height:69.984375pt;}
.h7{height:77.811562pt;}
.hf{height:78.009250pt;}
.h2a{height:80.720227pt;}
.h2f{height:87.131814pt;}
.h1d{height:93.187500pt;}
.h18{height:93.280687pt;}
.h25{height:101.535702pt;}
.h22{height:104.817919pt;}
.hb{height:108.563437pt;}
.h0{height:720.000000pt;}
.w2{width:146.162211pt;}
.w4{width:165.097513pt;}
.w3{width:190.814177pt;}
.w1{width:225.039625pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:3.271589pt;}
.x6f{left:6.457594pt;}
.x59{left:7.972655pt;}
.x12{left:19.104000pt;}
.x6d{left:30.888308pt;}
.x6c{left:34.224993pt;}
.x62{left:35.320069pt;}
.x6e{left:36.547198pt;}
.x5e{left:39.428903pt;}
.x56{left:43.306091pt;}
.x65{left:44.391801pt;}
.x55{left:47.814589pt;}
.x61{left:48.783389pt;}
.x8{left:55.264000pt;}
.x1{left:64.448000pt;}
.x5{left:65.734667pt;}
.x4{left:67.136000pt;}
.x50{left:69.120000pt;}
.x5c{left:73.743907pt;}
.x16{left:74.944000pt;}
.x71{left:80.748375pt;}
.x51{left:84.480000pt;}
.x2b{left:85.952000pt;}
.x63{left:90.135864pt;}
.x1d{left:93.920000pt;}
.x74{left:96.887679pt;}
.x64{left:99.158186pt;}
.xc{left:101.408000pt;}
.xf{left:103.872000pt;}
.x73{left:112.399540pt;}
.x3e{left:115.776000pt;}
.x4b{left:122.464000pt;}
.x5d{left:128.902026pt;}
.x60{left:133.322449pt;}
.xe{left:140.666667pt;}
.x5b{left:142.812656pt;}
.x10{left:143.706667pt;}
.x7d{left:148.960000pt;}
.x72{left:152.363813pt;}
.x69{left:154.973333pt;}
.x58{left:161.277443pt;}
.x4f{left:162.973333pt;}
.x38{left:167.360000pt;}
.x6b{left:170.787332pt;}
.x54{left:172.087116pt;}
.x2a{left:177.626667pt;}
.x57{left:198.266576pt;}
.x53{left:209.125880pt;}
.x17{left:224.893333pt;}
.x1c{left:228.293333pt;}
.x42{left:255.933333pt;}
.x13{left:257.146667pt;}
.x1a{left:270.906667pt;}
.x3d{left:287.493333pt;}
.x32{left:310.013333pt;}
.x37{left:312.000000pt;}
.x36{left:321.733333pt;}
.x77{left:325.853333pt;}
.x78{left:344.480000pt;}
.x18{left:358.653333pt;}
.x6{left:362.306667pt;}
.x1b{left:365.946667pt;}
.xd{left:371.333333pt;}
.x7{left:385.186667pt;}
.x7f{left:386.720000pt;}
.x39{left:388.160000pt;}
.x22{left:389.146667pt;}
.x46{left:423.933333pt;}
.x28{left:437.146667pt;}
.x47{left:442.653333pt;}
.x11{left:449.666667pt;}
.x4e{left:461.666667pt;}
.x52{left:467.360000pt;}
.x3c{left:482.333333pt;}
.x26{left:488.000000pt;}
.x68{left:493.280000pt;}
.x30{left:499.520000pt;}
.x7c{left:507.613333pt;}
.x35{left:511.773333pt;}
.x2{left:525.413333pt;}
.x7b{left:531.426667pt;}
.x79{left:539.066667pt;}
.x41{left:549.053333pt;}
.x2e{left:553.413333pt;}
.x1f{left:589.026667pt;}
.x20{left:601.026667pt;}
.xa{left:620.480000pt;}
.x7e{left:638.053333pt;}
.x23{left:639.040000pt;}
.x45{left:658.053333pt;}
.x4c{left:663.706667pt;}
.x2f{left:669.893333pt;}
.x66{left:680.960000pt;}
.x4d{left:682.426667pt;}
.x3{left:686.240000pt;}
.x3f{left:687.386667pt;}
.x1e{left:696.000000pt;}
.x3a{left:699.360000pt;}
.x33{left:705.146667pt;}
.x40{left:706.106667pt;}
.x34{left:708.546667pt;}
.x75{left:710.266667pt;}
.x67{left:720.453333pt;}
.x49{left:721.373333pt;}
.x43{left:727.226667pt;}
.x3b{left:734.880000pt;}
.x4a{left:740.093333pt;}
.x44{left:745.946667pt;}
.x21{left:752.066667pt;}
.xb{left:753.466667pt;}
.x19{left:756.386667pt;}
.x15{left:757.466667pt;}
.x70{left:760.133333pt;}
.x9{left:764.697333pt;}
.x24{left:771.386667pt;}
.x7a{left:775.613333pt;}
.x5f{left:781.107900pt;}
.x29{left:799.360000pt;}
.x6a{left:803.813333pt;}
.x2c{left:809.413333pt;}
.x76{left:819.973333pt;}
.x31{left:838.626667pt;}
.x14{left:841.253333pt;}
.x27{left:859.066667pt;}
.x2d{left:865.946667pt;}
.x25{left:871.066667pt;}
.x48{left:899.066667pt;}
}




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