
    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_3c8c8d7789fa596daf3ee7be.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_184cfca4da76b6a47d760808.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5d02c28fb6204f7e2ec7b611.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b36e145c72af683a852c092d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9b78cfdccb21bb1b6479eeb1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_e8c5c2c013910cc028831e72.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7d4e29e6286d2402072337b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.698242;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_adbf838bc91aec722a39f78a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249995,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250010,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250010,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250010,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250015,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.186707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186707,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249896,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249899,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249901,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.me{transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250010,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-83.879966px;}
.v4{vertical-align:-82.079967px;}
.vc{vertical-align:-45.359982px;}
.v2{vertical-align:-26.999989px;}
.v6{vertical-align:-8.999996px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.719996px;}
.va{vertical-align:26.999989px;}
.v3{vertical-align:33.119987px;}
.v8{vertical-align:41.399983px;}
.v5{vertical-align:66.599973px;}
.vb{vertical-align:80.639968px;}
.v7{vertical-align:82.799967px;}
.ls8{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.007386px;}
.ls7{letter-spacing:0.007740px;}
.ls1a{letter-spacing:0.012986px;}
.lsf{letter-spacing:0.013620px;}
.ls13{letter-spacing:0.013985px;}
.ls19{letter-spacing:0.014484px;}
.ls18{letter-spacing:0.014606px;}
.ls14{letter-spacing:0.014634px;}
.ls4{letter-spacing:0.014760px;}
.ls1c{letter-spacing:0.014766px;}
.ls9{letter-spacing:0.014772px;}
.ls1b{letter-spacing:0.014836px;}
.ls15{letter-spacing:0.014864px;}
.ls1e{letter-spacing:0.015307px;}
.ls17{letter-spacing:0.016285px;}
.ls3{letter-spacing:0.030900px;}
.ls21{letter-spacing:0.139804px;}
.ls1{letter-spacing:0.154080px;}
.lsb{letter-spacing:0.189917px;}
.ls2{letter-spacing:0.193440px;}
.ls11{letter-spacing:3.698187px;}
.lsa{letter-spacing:4.596807px;}
.lsd{letter-spacing:17.439353px;}
.lse{letter-spacing:17.799533px;}
.ls20{letter-spacing:29.899627px;}
.ls10{letter-spacing:35.446726px;}
.ls22{letter-spacing:36.382305px;}
.ls5{letter-spacing:70.021172px;}
.lsc{letter-spacing:109.492156px;}
.ls12{letter-spacing:198.088721px;}
.ls16{letter-spacing:344.864862px;}
.ls1d{letter-spacing:459.555416px;}
.ls1f{letter-spacing:495.570402px;}
.ls0{letter-spacing:1342.637463px;}
.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;}
}
.ws1{word-spacing:-51.188740px;}
.ws15{word-spacing:-23.279691px;}
.wsd{word-spacing:-20.056942px;}
.wsa{word-spacing:-19.169992px;}
.ws1b{word-spacing:-18.701275px;}
.ws13{word-spacing:-18.383855px;}
.ws18{word-spacing:-18.383354px;}
.ws3{word-spacing:-18.014764px;}
.ws5{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.469993px;}
.wsb{word-spacing:-14.219994px;}
.ws1e{word-spacing:-13.639799px;}
.ws16{word-spacing:-13.579795px;}
.ws1d{word-spacing:-13.499995px;}
.ws4{word-spacing:-11.969995px;}
.wsc{word-spacing:-11.699995px;}
.ws8{word-spacing:-11.182496px;}
.wse{word-spacing:-10.499756px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:179.728128px;}
.wsf{word-spacing:182.969927px;}
.ws6{word-spacing:228.272381px;}
.ws14{word-spacing:244.374993px;}
.ws17{word-spacing:254.647998px;}
.ws19{word-spacing:262.368158px;}
.ws12{word-spacing:363.050855px;}
.ws10{word-spacing:363.481655px;}
.ws1a{word-spacing:419.077281px;}
.ws1c{word-spacing:1015.933189px;}
.ws9{word-spacing:1147.897517px;}
.ws7{word-spacing:1165.361219px;}
._1e{margin-left:-347.577461px;}
._68{margin-left:-303.221100px;}
._63{margin-left:-296.792842px;}
._66{margin-left:-274.356437px;}
._1d{margin-left:-267.625093px;}
._1c{margin-left:-260.422096px;}
._2e{margin-left:-253.984698px;}
._20{margin-left:-235.864106px;}
._1f{margin-left:-218.645313px;}
._67{margin-left:-207.542317px;}
._3d{margin-left:-195.666184px;}
._3c{margin-left:-192.784985px;}
._37{margin-left:-191.735023px;}
._36{margin-left:-188.853824px;}
._38{margin-left:-183.091427px;}
._3a{margin-left:-181.208894px;}
._2c{margin-left:-173.312331px;}
._34{margin-left:-172.052931px;}
._2a{margin-left:-170.586652px;}
._25{margin-left:-167.992133px;}
._29{margin-left:-166.191534px;}
._23{margin-left:-160.789136px;}
._26{margin-left:-155.387338px;}
._24{margin-left:-152.506139px;}
._28{margin-left:-147.103741px;}
._2b{margin-left:-134.654466px;}
._45{margin-left:-131.798947px;}
._44{margin-left:-128.800628px;}
._27{margin-left:-127.295949px;}
._42{margin-left:-124.768630px;}
._43{margin-left:-119.954952px;}
._3f{margin-left:-115.357274px;}
._40{margin-left:-113.556675px;}
._41{margin-left:-111.278355px;}
._2d{margin-left:-107.921477px;}
._39{margin-left:-104.309281px;}
._3b{margin-left:-99.177680px;}
._32{margin-left:-94.709962px;}
._33{margin-left:-92.459963px;}
._35{margin-left:-86.066366px;}
._64{margin-left:-70.328691px;}
._65{margin-left:-65.160152px;}
._21{margin-left:-56.347279px;}
._22{margin-left:-50.502655px;}
._4{margin-left:-3.652561px;}
._3{margin-left:-2.491422px;}
._2{margin-left:-1.042639px;}
._0{width:1.003413px;}
._d{width:2.270431px;}
._b{width:3.570643px;}
._a{width:4.937674px;}
._9{width:6.023126px;}
._8{width:7.375739px;}
._f{width:8.466615px;}
._e{width:9.593510px;}
._5{width:10.785492px;}
._6{width:12.642680px;}
._7{width:13.947559px;}
._15{width:15.136427px;}
._16{width:16.693102px;}
._14{width:19.354213px;}
._11{width:21.293844px;}
._c{width:22.373646px;}
._30{width:23.530056px;}
._10{width:25.321995px;}
._17{width:26.542042px;}
._13{width:27.911119px;}
._12{width:28.923502px;}
._19{width:30.933745px;}
._18{width:31.985378px;}
._6a{width:43.826178px;}
._48{width:129.251348px;}
._47{width:152.038739px;}
._46{width:155.305138px;}
._4d{width:159.613924px;}
._5a{width:165.381293px;}
._1{width:170.134530px;}
._59{width:183.734434px;}
._4e{width:185.182587px;}
._4c{width:199.061073px;}
._58{width:201.381627px;}
._57{width:202.829733px;}
._56{width:208.922347px;}
._5d{width:218.653329px;}
._60{width:220.417839px;}
._54{width:221.895488px;}
._50{width:226.915481px;}
._5e{width:230.553856px;}
._55{width:231.994575px;}
._53{width:235.220522px;}
._52{width:236.301242px;}
._51{width:238.844118px;}
._5c{width:241.005557px;}
._5f{width:242.423399px;}
._5b{width:244.937452px;}
._49{width:248.358241px;}
._4b{width:255.519131px;}
._62{width:261.584826px;}
._4f{width:269.579497px;}
._61{width:280.759154px;}
._4a{width:299.650200px;}
._73{width:320.592703px;}
._74{width:329.369487px;}
._1b{width:342.277115px;}
._71{width:432.882716px;}
._2f{width:482.245007px;}
._70{width:495.187892px;}
._72{width:504.530057px;}
._6d{width:527.842649px;}
._6f{width:541.015943px;}
._6b{width:556.075218px;}
._6c{width:564.424602px;}
._1a{width:567.600253px;}
._6e{width:603.321118px;}
._3e{width:745.876502px;}
._31{width:831.585267px;}
._69{width:927.028429px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:38.799824px;}
.fs5{font-size:38.879984px;}
.fse{font-size:41.999023px;}
.fsa{font-size:44.729982px;}
.fs17{font-size:44.846682px;}
.fsc{font-size:46.799981px;}
.fs8{font-size:47.879981px;}
.fs4{font-size:53.999978px;}
.fs13{font-size:54.319178px;}
.fs7{font-size:56.879977px;}
.fs15{font-size:59.658696px;}
.fs10{font-size:59.660136px;}
.fs6{font-size:60.119976px;}
.fs1{font-size:65.879974px;}
.fs14{font-size:66.127174px;}
.fsf{font-size:66.128974px;}
.fs16{font-size:67.270773px;}
.fs0{font-size:71.999971px;}
.fsb{font-size:76.679969px;}
.fsd{font-size:80.227768px;}
.fs3{font-size:83.879966px;}
.fs12{font-size:93.118763px;}
.fs9{font-size:101.241560px;}
.fs2{font-size:107.999957px;}
.y0{bottom:0.000000px;}
.y14c{bottom:1.710488px;}
.y5{bottom:3.960424px;}
.y2{bottom:3.960426px;}
.yb2{bottom:3.960517px;}
.yb6{bottom:3.960527px;}
.y3f{bottom:4.050423px;}
.yaf{bottom:4.410490px;}
.y3d{bottom:56.640877px;}
.ya8{bottom:110.821456px;}
.ye0{bottom:112.350855px;}
.y39{bottom:116.760853px;}
.y5a{bottom:116.761453px;}
.y75{bottom:124.681450px;}
.y38{bottom:127.921449px;}
.ya7{bottom:131.521447px;}
.ydf{bottom:133.861446px;}
.y10b{bottom:136.831445px;}
.y59{bottom:137.461445px;}
.y13c{bottom:144.031442px;}
.y124{bottom:147.271441px;}
.y74{bottom:154.381438px;}
.yde{bottom:154.561438px;}
.y37{bottom:156.361437px;}
.y58{bottom:158.161437px;}
.ya6{bottom:161.221436px;}
.y10a{bottom:162.301435px;}
.y13b{bottom:164.731434px;}
.y123{bottom:172.741431px;}
.ydd{bottom:175.261430px;}
.y73{bottom:176.341429px;}
.y36{bottom:177.061429px;}
.ya5{bottom:181.921427px;}
.y13a{bottom:185.431426px;}
.y57{bottom:187.591425px;}
.y109{bottom:187.771425px;}
.ydc{bottom:195.961422px;}
.y35{bottom:197.671421px;}
.y122{bottom:198.211421px;}
.y72{bottom:198.391421px;}
.ya4{bottom:202.621419px;}
.y139{bottom:206.131418px;}
.y56{bottom:208.471417px;}
.y108{bottom:214.051414px;}
.ydb{bottom:216.661413px;}
.y34{bottom:218.371413px;}
.y71{bottom:219.001412px;}
.ya3{bottom:223.321411px;}
.y121{bottom:224.491410px;}
.y138{bottom:226.831409px;}
.y55{bottom:229.171408px;}
.y33{bottom:239.071404px;}
.yda{bottom:239.701404px;}
.y70{bottom:241.051404px;}
.y107{bottom:246.811401px;}
.y137{bottom:247.531401px;}
.ya2{bottom:253.021399px;}
.y120{bottom:257.251397px;}
.y32{bottom:259.591396px;}
.y6f{bottom:261.751395px;}
.yd9{bottom:263.551395px;}
.y106{bottom:267.511393px;}
.y136{bottom:268.231393px;}
.y54{bottom:270.391392px;}
.ya1{bottom:273.721391px;}
.y11f{bottom:277.951389px;}
.y31{bottom:280.471388px;}
.y6e{bottom:282.451387px;}
.yd8{bottom:284.251386px;}
.y105{bottom:288.301385px;}
.y135{bottom:288.931384px;}
.y53{bottom:291.181384px;}
.ya0{bottom:294.421382px;}
.y11e{bottom:298.741381px;}
.y30{bottom:301.171380px;}
.yd7{bottom:304.951378px;}
.y104{bottom:309.001376px;}
.y134{bottom:309.631376px;}
.y52{bottom:311.971375px;}
.y11d{bottom:319.441372px;}
.y2f{bottom:321.421371px;}
.y9f{bottom:324.121370px;}
.yd6{bottom:325.651370px;}
.y103{bottom:329.701368px;}
.y133{bottom:330.151368px;}
.y6d{bottom:332.671367px;}
.y51{bottom:337.621365px;}
.y9e{bottom:344.821362px;}
.yd5{bottom:346.351361px;}
.y2e{bottom:349.501360px;}
.y102{bottom:349.861360px;}
.y132{bottom:350.851360px;}
.y6c{bottom:353.371359px;}
.y11c{bottom:360.751356px;}
.y9d{bottom:365.521354px;}
.y101{bottom:368.311353px;}
.y2d{bottom:368.491353px;}
.yd4{bottom:369.481352px;}
.y131{bottom:371.551351px;}
.y6b{bottom:374.071350px;}
.y9c{bottom:386.221346px;}
.y2c{bottom:387.481345px;}
.y100{bottom:389.011344px;}
.y11b{bottom:390.361344px;}
.y130{bottom:392.431343px;}
.yd3{bottom:393.331343px;}
.y6a{bottom:394.771342px;}
.y2b{bottom:406.381337px;}
.yff{bottom:409.711336px;}
.y11a{bottom:411.061336px;}
.y12f{bottom:413.131335px;}
.yd2{bottom:414.031334px;}
.y69{bottom:415.651334px;}
.y9b{bottom:415.921334px;}
.y2a{bottom:425.371330px;}
.y119{bottom:431.761327px;}
.y12e{bottom:433.831326px;}
.yd1{bottom:434.731326px;}
.y68{bottom:436.351325px;}
.y29{bottom:444.361322px;}
.yfd{bottom:445.261322px;}
.y9a{bottom:445.441322px;}
.y118{bottom:448.501321px;}
.yf9{bottom:448.861320px;}
.yfc{bottom:451.111320px;}
.y12d{bottom:454.531318px;}
.yd0{bottom:455.431318px;}
.y67{bottom:457.051317px;}
.yfb{bottom:458.401317px;}
.yfa{bottom:458.491317px;}
.yfe{bottom:461.731315px;}
.y28{bottom:463.351315px;}
.y99{bottom:465.601314px;}
.y113{bottom:475.051310px;}
.y12c{bottom:475.231310px;}
.ycf{bottom:476.131310px;}
.y66{bottom:477.751309px;}
.y27{bottom:482.341307px;}
.y98{bottom:483.511307px;}
.yf8{bottom:495.301302px;}
.y12b{bottom:495.931302px;}
.y65{bottom:498.451301px;}
.yce{bottom:499.171300px;}
.y26{bottom:501.331299px;}
.y112{bottom:503.491299px;}
.y97{bottom:504.211298px;}
.yf7{bottom:516.001294px;}
.y12a{bottom:516.631293px;}
.y64{bottom:519.151292px;}
.y25{bottom:520.231292px;}
.ycd{bottom:523.111291px;}
.y96{bottom:524.911290px;}
.y10c{bottom:527.341289px;}
.yf6{bottom:536.701285px;}
.y129{bottom:537.331285px;}
.y24{bottom:539.581284px;}
.y63{bottom:539.671284px;}
.ycc{bottom:544.531282px;}
.y95{bottom:545.611282px;}
.y16a{bottom:549.841280px;}
.yca{bottom:554.881278px;}
.yf5{bottom:556.861277px;}
.y128{bottom:558.031277px;}
.y23{bottom:560.281276px;}
.y62{bottom:560.371276px;}
.yc7{bottom:565.231274px;}
.y94{bottom:566.311273px;}
.y169{bottom:568.831272px;}
.yc9{bottom:575.581270px;}
.y127{bottom:578.731269px;}
.y22{bottom:580.531268px;}
.y61{bottom:581.071268px;}
.yf4{bottom:584.311266px;}
.yc6{bottom:585.931266px;}
.y93{bottom:587.011265px;}
.y168{bottom:587.731265px;}
.y10d{bottom:592.411263px;}
.yc8{bottom:596.281261px;}
.y60{bottom:601.771259px;}
.yf3{bottom:605.011258px;}
.ycb{bottom:606.631257px;}
.y167{bottom:606.721257px;}
.y92{bottom:607.711257px;}
.y21{bottom:608.611257px;}
.y126{bottom:620.131252px;}
.y5f{bottom:622.651251px;}
.yf2{bottom:625.711250px;}
.y20{bottom:627.601249px;}
.y114{bottom:634.441246px;}
.yc5{bottom:636.961245px;}
.y5e{bottom:643.351243px;}
.y166{bottom:644.701242px;}
.y1f{bottom:646.591241px;}
.y8b{bottom:646.771241px;}
.y117{bottom:649.381240px;}
.y125{bottom:649.741240px;}
.yf1{bottom:651.361239px;}
.y8d{bottom:655.231238px;}
.y90{bottom:656.581237px;}
.y10e{bottom:657.481237px;}
.yc4{bottom:657.751237px;}
.y8c{bottom:658.561237px;}
.y8a{bottom:661.891235px;}
.y91{bottom:663.331235px;}
.y165{bottom:663.691235px;}
.y5d{bottom:664.051234px;}
.y1e{bottom:665.491234px;}
.yea{bottom:672.511231px;}
.y8f{bottom:675.391230px;}
.yc3{bottom:678.451229px;}
.y116{bottom:682.141227px;}
.y164{bottom:682.591227px;}
.y8e{bottom:684.031226px;}
.y1d{bottom:684.481226px;}
.y5c{bottom:684.751226px;}
.ye9{bottom:694.831222px;}
.yc2{bottom:699.151220px;}
.y163{bottom:701.581219px;}
.y1c{bottom:703.471219px;}
.y146{bottom:704.011218px;}
.y5b{bottom:705.451218px;}
.y115{bottom:714.991214px;}
.y89{bottom:715.981214px;}
.ye2{bottom:718.771212px;}
.yc1{bottom:719.851212px;}
.y162{bottom:720.571212px;}
.y10f{bottom:722.371211px;}
.y1b{bottom:722.461211px;}
.y50{bottom:726.151210px;}
.y13f{bottom:728.761208px;}
.y88{bottom:736.681205px;}
.y161{bottom:739.561204px;}
.yc0{bottom:740.551204px;}
.y1a{bottom:741.451203px;}
.y4f{bottom:746.851201px;}
.y87{bottom:757.381197px;}
.y160{bottom:758.551197px;}
.y19{bottom:760.351196px;}
.ybf{bottom:761.251195px;}
.ye3{bottom:765.481194px;}
.y4e{bottom:767.551193px;}
.y15f{bottom:777.541189px;}
.y86{bottom:778.081189px;}
.y18{bottom:779.701188px;}
.ybe{bottom:781.951187px;}
.y140{bottom:784.741186px;}
.y110{bottom:787.441185px;}
.y4d{bottom:788.251185px;}
.yf0{bottom:792.751183px;}
.y15e{bottom:796.441181px;}
.y17{bottom:800.401180px;}
.yeb{bottom:801.661179px;}
.ybd{bottom:802.651179px;}
.y85{bottom:807.601177px;}
.y4c{bottom:808.951176px;}
.ye4{bottom:812.191175px;}
.y15d{bottom:815.431174px;}
.y147{bottom:820.111172px;}
.y16{bottom:821.101172px;}
.ybc{bottom:823.351171px;}
.yef{bottom:824.791170px;}
.y84{bottom:828.481169px;}
.y4b{bottom:829.651168px;}
.y15c{bottom:834.421166px;}
.y141{bottom:841.981163px;}
.ybb{bottom:844.051162px;}
.y15{bottom:847.921161px;}
.y83{bottom:849.181160px;}
.y4a{bottom:850.351160px;}
.y111{bottom:852.421159px;}
.y15b{bottom:853.411159px;}
.yee{bottom:856.741157px;}
.ye5{bottom:858.721157px;}
.yba{bottom:864.571154px;}
.y14{bottom:865.201154px;}
.y82{bottom:869.881152px;}
.y49{bottom:871.051152px;}
.y15a{bottom:872.401151px;}
.y13{bottom:876.361149px;}
.yb9{bottom:885.451146px;}
.yed{bottom:888.691145px;}
.y81{bottom:890.491144px;}
.y159{bottom:891.301143px;}
.y48{bottom:891.751143px;}
.y11{bottom:897.781141px;}
.y142{bottom:898.051141px;}
.ye6{bottom:905.431138px;}
.yb8{bottom:906.151138px;}
.y12{bottom:907.501137px;}
.y158{bottom:910.291136px;}
.y80{bottom:911.191136px;}
.y47{bottom:912.451135px;}
.yec{bottom:920.731132px;}
.y10{bottom:922.801131px;}
.yb7{bottom:927.211129px;}
.yb5{bottom:927.750600px;}
.y157{bottom:929.281128px;}
.yb4{bottom:931.711127px;}
.y7f{bottom:931.891127px;}
.y46{bottom:933.151127px;}
.yf{bottom:943.501123px;}
.y156{bottom:948.271121px;}
.ye7{bottom:952.141119px;}
.y7e{bottom:952.591119px;}
.y45{bottom:953.851118px;}
.yb3{bottom:954.211118px;}
.yb1{bottom:954.750600px;}
.y143{bottom:955.201118px;}
.yb0{bottom:958.711117px;}
.ye{bottom:965.911114px;}
.y155{bottom:967.261113px;}
.y44{bottom:974.461110px;}
.y7d{bottom:982.291107px;}
.y148{bottom:982.651107px;}
.y154{bottom:986.161106px;}
.y149{bottom:989.401104px;}
.yaa{bottom:990.121104px;}
.y13e{bottom:991.111104px;}
.yac{bottom:995.071102px;}
.y43{bottom:995.161102px;}
.yd{bottom:996.961101px;}
.ye8{bottom:998.851100px;}
.y7c{bottom:1004.341098px;}
.y153{bottom:1005.151098px;}
.ya9{bottom:1008.211097px;}
.y144{bottom:1011.271095px;}
.y42{bottom:1015.861094px;}
.yab{bottom:1019.101092px;}
.yae{bottom:1019.730600px;}
.yad{bottom:1024.141090px;}
.y7b{bottom:1024.951090px;}
.y13d{bottom:1025.851090px;}
.yc{bottom:1028.011089px;}
.y14b{bottom:1028.640600px;}
.y14e{bottom:1029.181088px;}
.y14d{bottom:1030.351088px;}
.y41{bottom:1036.561085px;}
.ye1{bottom:1038.721085px;}
.y152{bottom:1043.131083px;}
.y7a{bottom:1047.001081px;}
.y14a{bottom:1051.591079px;}
.yb{bottom:1057.261077px;}
.y151{bottom:1062.121075px;}
.y79{bottom:1067.611073px;}
.y145{bottom:1068.421073px;}
.ya{bottom:1077.961069px;}
.y150{bottom:1081.111068px;}
.y78{bottom:1089.661064px;}
.y9{bottom:1098.661061px;}
.y14f{bottom:1100.011060px;}
.y77{bottom:1110.361056px;}
.y8{bottom:1119.361052px;}
.y76{bottom:1139.881044px;}
.y40{bottom:1140.061044px;}
.y16b{bottom:1141.411043px;}
.y7{bottom:1161.031036px;}
.y3c{bottom:1161.301035px;}
.y6{bottom:1181.011028px;}
.y3b{bottom:1181.821027px;}
.y1{bottom:1181.910600px;}
.y4{bottom:1185.870600px;}
.y3e{bottom:1189.110600px;}
.y3{bottom:1189.831024px;}
.y3a{bottom:1193.161023px;}
.h32{height:16.830000px;}
.h1{height:20.070000px;}
.hc{height:20.250000px;}
.h1d{height:21.960000px;}
.h1c{height:24.480000px;}
.h24{height:38.079906px;}
.h8{height:38.158578px;}
.h1f{height:41.219744px;}
.h16{height:41.432020px;}
.h14{height:43.878190px;}
.h11{height:43.900031px;}
.h19{height:45.931622px;}
.h31{height:46.773688px;}
.h7{height:52.998026px;}
.h27{height:53.284780px;}
.h18{height:55.824587px;}
.hb{height:58.975113px;}
.h17{height:59.004469px;}
.h2b{height:62.222156px;}
.h23{height:62.223658px;}
.h6{height:64.657591px;}
.h9{height:66.394661px;}
.h1e{height:66.691380px;}
.h2a{height:68.968576px;}
.h22{height:68.970453px;}
.h30{height:70.161314px;}
.h2{height:70.628878px;}
.h29{height:70.661634px;}
.h3{height:70.664034px;}
.h15{height:71.026319px;}
.he{height:72.562471px;}
.h1b{height:74.312537px;}
.ha{height:75.093720px;}
.h13{height:75.219755px;}
.h1a{height:78.699993px;}
.h2e{height:80.021630px;}
.h2d{height:80.024030px;}
.hf{height:80.109170px;}
.hd{height:80.111570px;}
.h2c{height:80.384030px;}
.h5{height:82.323600px;}
.h28{height:91.345505px;}
.h25{height:91.390973px;}
.h2f{height:97.161303px;}
.h4{height:108.843706px;}
.h26{height:119.884753px;}
.h12{height:142.179728px;}
.h33{height:150.801282px;}
.h20{height:153.464001px;}
.h10{height:160.376945px;}
.h21{height:194.863985px;}
.h0{height:1263.000000px;}
.w3{width:0.090000px;}
.w1{width:1.440000px;}
.w2{width:3.150000px;}
.w5{width:9.900000px;}
.w4{width:10.980000px;}
.w6{width:40.410000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:106.379207px;}
.x4a{left:109.259206px;}
.x7{left:111.958643px;}
.x8d{left:115.559204px;}
.x16{left:116.909203px;}
.x6{left:117.989203px;}
.x49{left:124.559200px;}
.x3d{left:129.328999px;}
.x19{left:133.379280px;}
.x4c{left:135.269197px;}
.x1c{left:136.889195px;}
.x1a{left:138.239195px;}
.x4b{left:139.769194px;}
.x3e{left:144.269000px;}
.x79{left:147.239191px;}
.x80{left:150.209940px;}
.x5d{left:156.149938px;}
.x21{left:159.569769px;}
.x51{left:161.099936px;}
.x5c{left:163.618657px;}
.x62{left:165.599934px;}
.x67{left:171.448760px;}
.x1{left:174.239280px;}
.x5f{left:175.859930px;}
.x2{left:179.459928px;}
.x4e{left:180.809924px;}
.x54{left:182.788510px;}
.x5e{left:184.949926px;}
.x55{left:188.277756px;}
.x4d{left:189.899924px;}
.x6f{left:190.979924px;}
.x9{left:193.049923px;}
.x7a{left:194.309922px;}
.x7b{left:199.439920px;}
.x77{left:200.969920px;}
.x40{left:203.129044px;}
.x41{left:208.349045px;}
.x3f{left:212.129038px;}
.x6d{left:221.401349px;}
.x3c{left:225.449910px;}
.x7c{left:229.229908px;}
.x70{left:232.019907px;}
.x71{left:237.329905px;}
.x6c{left:239.311308px;}
.x3b{left:241.739903px;}
.x1e{left:244.169902px;}
.x60{left:246.419901px;}
.x4f{left:249.029964px;}
.x3a{left:254.160000px;}
.x8c{left:255.509898px;}
.x72{left:263.519895px;}
.xa{left:270.539892px;}
.x81{left:272.519891px;}
.x78{left:274.319890px;}
.x23{left:279.989888px;}
.x15{left:281.609887px;}
.x27{left:286.020222px;}
.x82{left:291.959883px;}
.x43{left:294.389060px;}
.x42{left:296.369057px;}
.x6e{left:299.881157px;}
.xb{left:308.159877px;}
.x66{left:314.998923px;}
.x6a{left:316.709873px;}
.x65{left:319.139173px;}
.xc{left:320.849872px;}
.x2d{left:325.529669px;}
.x87{left:331.649867px;}
.x28{left:333.360167px;}
.x7d{left:338.759864px;}
.x29{left:341.369863px;}
.x73{left:343.709863px;}
.x2a{left:345.869865px;}
.x74{left:349.019860px;}
.x7e{left:354.869858px;}
.x2c{left:358.199684px;}
.x26{left:363.510155px;}
.x8{left:371.338707px;}
.x75{left:375.209850px;}
.x25{left:383.850075px;}
.x17{left:392.939843px;}
.xd{left:395.549842px;}
.x50{left:402.569678px;}
.x1d{left:405.180044px;}
.x38{left:407.790000px;}
.x61{left:408.869836px;}
.x76{left:416.429833px;}
.x58{left:419.039832px;}
.x7f{left:424.619830px;}
.x88{left:427.139829px;}
.xe{left:433.979826px;}
.xf{left:440.009824px;}
.x5{left:446.399106px;}
.x18{left:459.989764px;}
.x37{left:463.500000px;}
.x5a{left:465.929814px;}
.x44{left:474.479056px;}
.x89{left:482.579807px;}
.x57{left:487.169886px;}
.x59{left:492.389832px;}
.x35{left:501.389490px;}
.x33{left:516.509793px;}
.x36{left:517.770000px;}
.x56{left:518.939792px;}
.x22{left:521.999791px;}
.x10{left:524.609790px;}
.x31{left:527.039789px;}
.x5b{left:529.289788px;}
.x8a{left:532.799787px;}
.x34{left:550.799755px;}
.x32{left:561.239771px;}
.x83{left:570.599772px;}
.x39{left:574.559770px;}
.x11{left:576.899769px;}
.x12{left:582.929767px;}
.x2b{left:595.889762px;}
.x8b{left:597.959761px;}
.x84{left:606.509757px;}
.x1f{left:613.799754px;}
.x6b{left:618.299816px;}
.x24{left:623.429751px;}
.x46{left:635.308949px;}
.x2e{left:640.439744px;}
.x45{left:648.718948px;}
.x13{left:671.039732px;}
.x85{left:684.539726px;}
.x14{left:692.999723px;}
.x52{left:696.509721px;}
.x63{left:700.739720px;}
.x68{left:707.039717px;}
.x47{left:725.128972px;}
.x48{left:729.088966px;}
.x2f{left:736.469705px;}
.x86{left:741.419703px;}
.x69{left:747.809701px;}
.x20{left:759.509696px;}
.x53{left:764.459694px;}
.x1b{left:765.629694px;}
.x64{left:767.249693px;}
.x30{left:775.979690px;}
.x3{left:786.690000px;}
@media print{
.v1{vertical-align:-74.559970pt;}
.v4{vertical-align:-72.959971pt;}
.vc{vertical-align:-40.319984pt;}
.v2{vertical-align:-23.999990pt;}
.v6{vertical-align:-7.999997pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.639997pt;}
.va{vertical-align:23.999990pt;}
.v3{vertical-align:29.439988pt;}
.v8{vertical-align:36.799985pt;}
.v5{vertical-align:59.199976pt;}
.vb{vertical-align:71.679971pt;}
.v7{vertical-align:73.599971pt;}
.ls8{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.006565pt;}
.ls7{letter-spacing:0.006880pt;}
.ls1a{letter-spacing:0.011543pt;}
.lsf{letter-spacing:0.012107pt;}
.ls13{letter-spacing:0.012431pt;}
.ls19{letter-spacing:0.012875pt;}
.ls18{letter-spacing:0.012983pt;}
.ls14{letter-spacing:0.013008pt;}
.ls4{letter-spacing:0.013120pt;}
.ls1c{letter-spacing:0.013125pt;}
.ls9{letter-spacing:0.013130pt;}
.ls1b{letter-spacing:0.013187pt;}
.ls15{letter-spacing:0.013212pt;}
.ls1e{letter-spacing:0.013606pt;}
.ls17{letter-spacing:0.014476pt;}
.ls3{letter-spacing:0.027467pt;}
.ls21{letter-spacing:0.124271pt;}
.ls1{letter-spacing:0.136960pt;}
.lsb{letter-spacing:0.168815pt;}
.ls2{letter-spacing:0.171947pt;}
.ls11{letter-spacing:3.287277pt;}
.lsa{letter-spacing:4.086051pt;}
.lsd{letter-spacing:15.501647pt;}
.lse{letter-spacing:15.821807pt;}
.ls20{letter-spacing:26.577446pt;}
.ls10{letter-spacing:31.508201pt;}
.ls22{letter-spacing:32.339827pt;}
.ls5{letter-spacing:62.241042pt;}
.lsc{letter-spacing:97.326361pt;}
.ls12{letter-spacing:176.078863pt;}
.ls16{letter-spacing:306.546544pt;}
.ls1d{letter-spacing:408.493703pt;}
.ls1f{letter-spacing:440.507024pt;}
.ls0{letter-spacing:1193.455523pt;}
.ws1{word-spacing:-45.501102pt;}
.ws15{word-spacing:-20.693058pt;}
.wsd{word-spacing:-17.828393pt;}
.wsa{word-spacing:-17.039993pt;}
.ws1b{word-spacing:-16.623355pt;}
.ws13{word-spacing:-16.341204pt;}
.ws18{word-spacing:-16.340759pt;}
.ws3{word-spacing:-16.013124pt;}
.ws5{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.639994pt;}
.wsb{word-spacing:-12.639995pt;}
.ws1e{word-spacing:-12.124266pt;}
.ws16{word-spacing:-12.070929pt;}
.ws1d{word-spacing:-11.999995pt;}
.ws4{word-spacing:-10.639996pt;}
.wsc{word-spacing:-10.399996pt;}
.ws8{word-spacing:-9.939996pt;}
.wse{word-spacing:-9.333116pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:159.758336pt;}
.wsf{word-spacing:162.639935pt;}
.ws6{word-spacing:202.908784pt;}
.ws14{word-spacing:217.222216pt;}
.ws17{word-spacing:226.353776pt;}
.ws19{word-spacing:233.216140pt;}
.ws12{word-spacing:322.711871pt;}
.ws10{word-spacing:323.094804pt;}
.ws1a{word-spacing:372.513139pt;}
.ws1c{word-spacing:903.051724pt;}
.ws9{word-spacing:1020.353348pt;}
.ws7{word-spacing:1035.876639pt;}
._1e{margin-left:-308.957743pt;}
._68{margin-left:-269.529867pt;}
._63{margin-left:-263.815859pt;}
._66{margin-left:-243.872389pt;}
._1d{margin-left:-237.888972pt;}
._1c{margin-left:-231.486307pt;}
._2e{margin-left:-225.764176pt;}
._20{margin-left:-209.656983pt;}
._1f{margin-left:-194.351389pt;}
._67{margin-left:-184.482060pt;}
._3d{margin-left:-173.925497pt;}
._3c{margin-left:-171.364431pt;}
._37{margin-left:-170.431132pt;}
._36{margin-left:-167.870066pt;}
._38{margin-left:-162.747935pt;}
._3a{margin-left:-161.074572pt;}
._2c{margin-left:-154.055405pt;}
._34{margin-left:-152.935939pt;}
._2a{margin-left:-151.632579pt;}
._25{margin-left:-149.326340pt;}
._29{margin-left:-147.725808pt;}
._23{margin-left:-142.923676pt;}
._26{margin-left:-138.122078pt;}
._24{margin-left:-135.561012pt;}
._28{margin-left:-130.758881pt;}
._2b{margin-left:-119.692859pt;}
._45{margin-left:-117.154620pt;}
._44{margin-left:-114.489448pt;}
._27{margin-left:-113.151955pt;}
._42{margin-left:-110.905449pt;}
._43{margin-left:-106.626624pt;}
._3f{margin-left:-102.539799pt;}
._40{margin-left:-100.939266pt;}
._41{margin-left:-98.914094pt;}
._2d{margin-left:-95.930202pt;}
._39{margin-left:-92.719361pt;}
._3b{margin-left:-88.157938pt;}
._32{margin-left:-84.186633pt;}
._33{margin-left:-82.186634pt;}
._35{margin-left:-76.503436pt;}
._64{margin-left:-62.514392pt;}
._65{margin-left:-57.920135pt;}
._21{margin-left:-50.086470pt;}
._22{margin-left:-44.891249pt;}
._4{margin-left:-3.246721pt;}
._3{margin-left:-2.214598pt;}
._2{margin-left:-0.926790pt;}
._0{width:0.891923pt;}
._d{width:2.018161pt;}
._b{width:3.173905pt;}
._a{width:4.389043pt;}
._9{width:5.353890pt;}
._8{width:6.556212pt;}
._f{width:7.525880pt;}
._e{width:8.527564pt;}
._5{width:9.587104pt;}
._6{width:11.237938pt;}
._7{width:12.397830pt;}
._15{width:13.454602pt;}
._16{width:14.838313pt;}
._14{width:17.203745pt;}
._11{width:18.927861pt;}
._c{width:19.887685pt;}
._30{width:20.915606pt;}
._10{width:22.508440pt;}
._17{width:23.592926pt;}
._13{width:24.809883pt;}
._12{width:25.709779pt;}
._19{width:27.496662pt;}
._18{width:28.431447pt;}
._6a{width:38.956602pt;}
._48{width:114.890087pt;}
._47{width:135.145546pt;}
._46{width:138.049011pt;}
._4d{width:141.879043pt;}
._5a{width:147.005594pt;}
._1{width:151.230694pt;}
._59{width:163.319497pt;}
._4e{width:164.606744pt;}
._4c{width:176.943176pt;}
._58{width:179.005891pt;}
._57{width:180.293096pt;}
._56{width:185.708753pt;}
._5d{width:194.358515pt;}
._60{width:195.926968pt;}
._54{width:197.240433pt;}
._50{width:201.702650pt;}
._5e{width:204.936761pt;}
._55{width:206.217400pt;}
._53{width:209.084909pt;}
._52{width:210.045548pt;}
._51{width:212.305883pt;}
._5c{width:214.227162pt;}
._5f{width:215.487466pt;}
._5b{width:217.722180pt;}
._49{width:220.762881pt;}
._4b{width:227.128117pt;}
._62{width:232.519845pt;}
._4f{width:239.626219pt;}
._61{width:249.563692pt;}
._4a{width:266.355733pt;}
._73{width:284.971292pt;}
._74{width:292.772877pt;}
._1b{width:304.246325pt;}
._71{width:384.784637pt;}
._2f{width:428.662229pt;}
._70{width:440.167015pt;}
._72{width:448.471162pt;}
._6d{width:469.193466pt;}
._6f{width:480.903061pt;}
._6b{width:494.289082pt;}
._6c{width:501.710758pt;}
._1a{width:504.533558pt;}
._6e{width:536.285438pt;}
._3e{width:663.001335pt;}
._31{width:739.186904pt;}
._69{width:824.025270pt;}
.fs11{font-size:34.488733pt;}
.fs5{font-size:34.559986pt;}
.fse{font-size:37.332465pt;}
.fsa{font-size:39.759984pt;}
.fs17{font-size:39.863717pt;}
.fsc{font-size:41.599983pt;}
.fs8{font-size:42.559983pt;}
.fs4{font-size:47.999981pt;}
.fs13{font-size:48.283714pt;}
.fs7{font-size:50.559980pt;}
.fs15{font-size:53.029952pt;}
.fs10{font-size:53.031232pt;}
.fs6{font-size:53.439979pt;}
.fs1{font-size:58.559977pt;}
.fs14{font-size:58.779710pt;}
.fsf{font-size:58.781310pt;}
.fs16{font-size:59.796243pt;}
.fs0{font-size:63.999974pt;}
.fsb{font-size:68.159973pt;}
.fsd{font-size:71.313571pt;}
.fs3{font-size:74.559970pt;}
.fs12{font-size:82.772234pt;}
.fs9{font-size:89.992497pt;}
.fs2{font-size:95.999962pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:1.520434pt;}
.y5{bottom:3.520377pt;}
.y2{bottom:3.520378pt;}
.yb2{bottom:3.520459pt;}
.yb6{bottom:3.520469pt;}
.y3f{bottom:3.600376pt;}
.yaf{bottom:3.920436pt;}
.y3d{bottom:50.347447pt;}
.ya8{bottom:98.507961pt;}
.ye0{bottom:99.867427pt;}
.y39{bottom:103.787425pt;}
.y5a{bottom:103.787958pt;}
.y75{bottom:110.827956pt;}
.y38{bottom:113.707955pt;}
.ya7{bottom:116.907953pt;}
.ydf{bottom:118.987952pt;}
.y10b{bottom:121.627951pt;}
.y59{bottom:122.187951pt;}
.y13c{bottom:128.027949pt;}
.y124{bottom:130.907948pt;}
.y74{bottom:137.227945pt;}
.yde{bottom:137.387945pt;}
.y37{bottom:138.987944pt;}
.y58{bottom:140.587944pt;}
.ya6{bottom:143.307943pt;}
.y10a{bottom:144.267942pt;}
.y13b{bottom:146.427941pt;}
.y123{bottom:153.547939pt;}
.ydd{bottom:155.787938pt;}
.y73{bottom:156.747937pt;}
.y36{bottom:157.387937pt;}
.ya5{bottom:161.707935pt;}
.y13a{bottom:164.827934pt;}
.y57{bottom:166.747933pt;}
.y109{bottom:166.907933pt;}
.ydc{bottom:174.187930pt;}
.y35{bottom:175.707930pt;}
.y122{bottom:176.187930pt;}
.y72{bottom:176.347929pt;}
.ya4{bottom:180.107928pt;}
.y139{bottom:183.227927pt;}
.y56{bottom:185.307926pt;}
.y108{bottom:190.267924pt;}
.ydb{bottom:192.587923pt;}
.y34{bottom:194.107922pt;}
.y71{bottom:194.667922pt;}
.ya3{bottom:198.507921pt;}
.y121{bottom:199.547920pt;}
.y138{bottom:201.627919pt;}
.y55{bottom:203.707919pt;}
.y33{bottom:212.507915pt;}
.yda{bottom:213.067915pt;}
.y70{bottom:214.267914pt;}
.y107{bottom:219.387912pt;}
.y137{bottom:220.027912pt;}
.ya2{bottom:224.907910pt;}
.y120{bottom:228.667909pt;}
.y32{bottom:230.747908pt;}
.y6f{bottom:232.667907pt;}
.yd9{bottom:234.267906pt;}
.y106{bottom:237.787905pt;}
.y136{bottom:238.427905pt;}
.y54{bottom:240.347904pt;}
.ya1{bottom:243.307903pt;}
.y11f{bottom:247.067901pt;}
.y31{bottom:249.307900pt;}
.y6e{bottom:251.067900pt;}
.yd8{bottom:252.667899pt;}
.y105{bottom:256.267897pt;}
.y135{bottom:256.827897pt;}
.y53{bottom:258.827896pt;}
.ya0{bottom:261.707895pt;}
.y11e{bottom:265.547894pt;}
.y30{bottom:267.707893pt;}
.yd7{bottom:271.067892pt;}
.y104{bottom:274.667890pt;}
.y134{bottom:275.227890pt;}
.y52{bottom:277.307889pt;}
.y11d{bottom:283.947886pt;}
.y2f{bottom:285.707886pt;}
.y9f{bottom:288.107885pt;}
.yd6{bottom:289.467884pt;}
.y103{bottom:293.067883pt;}
.y133{bottom:293.467883pt;}
.y6d{bottom:295.707882pt;}
.y51{bottom:300.107880pt;}
.y9e{bottom:306.507877pt;}
.yd5{bottom:307.867877pt;}
.y2e{bottom:310.667876pt;}
.y102{bottom:310.987876pt;}
.y132{bottom:311.867875pt;}
.y6c{bottom:314.107874pt;}
.y11c{bottom:320.667872pt;}
.y9d{bottom:324.907870pt;}
.y101{bottom:327.387869pt;}
.y2d{bottom:327.547869pt;}
.yd4{bottom:328.427869pt;}
.y131{bottom:330.267868pt;}
.y6b{bottom:332.507867pt;}
.y9c{bottom:343.307863pt;}
.y2c{bottom:344.427862pt;}
.y100{bottom:345.787862pt;}
.y11b{bottom:346.987861pt;}
.y130{bottom:348.827860pt;}
.yd3{bottom:349.627860pt;}
.y6a{bottom:350.907860pt;}
.y2b{bottom:361.227856pt;}
.yff{bottom:364.187854pt;}
.y11a{bottom:365.387854pt;}
.y12f{bottom:367.227853pt;}
.yd2{bottom:368.027853pt;}
.y69{bottom:369.467852pt;}
.y9b{bottom:369.707852pt;}
.y2a{bottom:378.107849pt;}
.y119{bottom:383.787846pt;}
.y12e{bottom:385.627846pt;}
.yd1{bottom:386.427845pt;}
.y68{bottom:387.867845pt;}
.y29{bottom:394.987842pt;}
.yfd{bottom:395.787842pt;}
.y9a{bottom:395.947842pt;}
.y118{bottom:398.667841pt;}
.yf9{bottom:398.987840pt;}
.yfc{bottom:400.987840pt;}
.y12d{bottom:404.027838pt;}
.yd0{bottom:404.827838pt;}
.y67{bottom:406.267837pt;}
.yfb{bottom:407.467837pt;}
.yfa{bottom:407.547837pt;}
.yfe{bottom:410.427836pt;}
.y28{bottom:411.867835pt;}
.y99{bottom:413.867834pt;}
.y113{bottom:422.267831pt;}
.y12c{bottom:422.427831pt;}
.ycf{bottom:423.227831pt;}
.y66{bottom:424.667830pt;}
.y27{bottom:428.747829pt;}
.y98{bottom:429.787828pt;}
.yf8{bottom:440.267824pt;}
.y12b{bottom:440.827824pt;}
.y65{bottom:443.067823pt;}
.yce{bottom:443.707823pt;}
.y26{bottom:445.627822pt;}
.y112{bottom:447.547821pt;}
.y97{bottom:448.187821pt;}
.yf7{bottom:458.667817pt;}
.y12a{bottom:459.227816pt;}
.y64{bottom:461.467815pt;}
.y25{bottom:462.427815pt;}
.ycd{bottom:464.987814pt;}
.y96{bottom:466.587813pt;}
.y10c{bottom:468.747813pt;}
.yf6{bottom:477.067809pt;}
.y129{bottom:477.627809pt;}
.y24{bottom:479.627808pt;}
.y63{bottom:479.707808pt;}
.ycc{bottom:484.027806pt;}
.y95{bottom:484.987806pt;}
.y16a{bottom:488.747805pt;}
.yca{bottom:493.227803pt;}
.yf5{bottom:494.987802pt;}
.y128{bottom:496.027802pt;}
.y23{bottom:498.027801pt;}
.y62{bottom:498.107801pt;}
.yc7{bottom:502.427799pt;}
.y94{bottom:503.387799pt;}
.y169{bottom:505.627798pt;}
.yc9{bottom:511.627795pt;}
.y127{bottom:514.427794pt;}
.y22{bottom:516.027794pt;}
.y61{bottom:516.507793pt;}
.yf4{bottom:519.387792pt;}
.yc6{bottom:520.827792pt;}
.y93{bottom:521.787791pt;}
.y168{bottom:522.427791pt;}
.y10d{bottom:526.587789pt;}
.yc8{bottom:530.027788pt;}
.y60{bottom:534.907786pt;}
.yf3{bottom:537.787785pt;}
.ycb{bottom:539.227784pt;}
.y167{bottom:539.307784pt;}
.y92{bottom:540.187784pt;}
.y21{bottom:540.987784pt;}
.y126{bottom:551.227780pt;}
.y5f{bottom:553.467779pt;}
.yf2{bottom:556.187778pt;}
.y20{bottom:557.867777pt;}
.y114{bottom:563.947774pt;}
.yc5{bottom:566.187774pt;}
.y5e{bottom:571.867771pt;}
.y166{bottom:573.067771pt;}
.y1f{bottom:574.747770pt;}
.y8b{bottom:574.907770pt;}
.y117{bottom:577.227769pt;}
.y125{bottom:577.547769pt;}
.yf1{bottom:578.987768pt;}
.y8d{bottom:582.427767pt;}
.y90{bottom:583.627767pt;}
.y10e{bottom:584.427766pt;}
.yc4{bottom:584.667766pt;}
.y8c{bottom:585.387766pt;}
.y8a{bottom:588.347765pt;}
.y91{bottom:589.627764pt;}
.y165{bottom:589.947764pt;}
.y5d{bottom:590.267764pt;}
.y1e{bottom:591.547763pt;}
.yea{bottom:597.787761pt;}
.y8f{bottom:600.347760pt;}
.yc3{bottom:603.067759pt;}
.y116{bottom:606.347757pt;}
.y164{bottom:606.747757pt;}
.y8e{bottom:608.027757pt;}
.y1d{bottom:608.427757pt;}
.y5c{bottom:608.667757pt;}
.ye9{bottom:617.627753pt;}
.yc2{bottom:621.467751pt;}
.y163{bottom:623.627751pt;}
.y1c{bottom:625.307750pt;}
.y146{bottom:625.787750pt;}
.y5b{bottom:627.067749pt;}
.y115{bottom:635.547746pt;}
.y89{bottom:636.427745pt;}
.ye2{bottom:638.907744pt;}
.yc1{bottom:639.867744pt;}
.y162{bottom:640.507744pt;}
.y10f{bottom:642.107743pt;}
.y1b{bottom:642.187743pt;}
.y50{bottom:645.467742pt;}
.y13f{bottom:647.787741pt;}
.y88{bottom:654.827738pt;}
.y161{bottom:657.387737pt;}
.yc0{bottom:658.267737pt;}
.y1a{bottom:659.067736pt;}
.y4f{bottom:663.867734pt;}
.y87{bottom:673.227731pt;}
.y160{bottom:674.267730pt;}
.y19{bottom:675.867730pt;}
.ybf{bottom:676.667729pt;}
.ye3{bottom:680.427728pt;}
.y4e{bottom:682.267727pt;}
.y15f{bottom:691.147724pt;}
.y86{bottom:691.627723pt;}
.y18{bottom:693.067723pt;}
.ybe{bottom:695.067722pt;}
.y140{bottom:697.547721pt;}
.y110{bottom:699.947720pt;}
.y4d{bottom:700.667720pt;}
.yf0{bottom:704.667718pt;}
.y15e{bottom:707.947717pt;}
.y17{bottom:711.467715pt;}
.yeb{bottom:712.587715pt;}
.ybd{bottom:713.467715pt;}
.y85{bottom:717.867713pt;}
.y4c{bottom:719.067712pt;}
.ye4{bottom:721.947711pt;}
.y15d{bottom:724.827710pt;}
.y147{bottom:728.987708pt;}
.y16{bottom:729.867708pt;}
.ybc{bottom:731.867707pt;}
.yef{bottom:733.147707pt;}
.y84{bottom:736.427705pt;}
.y4b{bottom:737.467705pt;}
.y15c{bottom:741.707703pt;}
.y141{bottom:748.427701pt;}
.ybb{bottom:750.267700pt;}
.y15{bottom:753.707699pt;}
.y83{bottom:754.827698pt;}
.y4a{bottom:755.867698pt;}
.y111{bottom:757.707697pt;}
.y15b{bottom:758.587697pt;}
.yee{bottom:761.547695pt;}
.ye5{bottom:763.307695pt;}
.yba{bottom:768.507693pt;}
.y14{bottom:769.067692pt;}
.y82{bottom:773.227691pt;}
.y49{bottom:774.267690pt;}
.y15a{bottom:775.467690pt;}
.y13{bottom:778.987688pt;}
.yb9{bottom:787.067685pt;}
.yed{bottom:789.947684pt;}
.y81{bottom:791.547683pt;}
.y159{bottom:792.267683pt;}
.y48{bottom:792.667683pt;}
.y11{bottom:798.027681pt;}
.y142{bottom:798.267681pt;}
.ye6{bottom:804.827678pt;}
.yb8{bottom:805.467678pt;}
.y12{bottom:806.667677pt;}
.y158{bottom:809.147676pt;}
.y80{bottom:809.947676pt;}
.y47{bottom:811.067676pt;}
.yec{bottom:818.427673pt;}
.y10{bottom:820.267672pt;}
.yb7{bottom:824.187670pt;}
.yb5{bottom:824.667200pt;}
.y157{bottom:826.027670pt;}
.yb4{bottom:828.187669pt;}
.y7f{bottom:828.347669pt;}
.y46{bottom:829.467668pt;}
.yf{bottom:838.667665pt;}
.y156{bottom:842.907663pt;}
.ye7{bottom:846.347661pt;}
.y7e{bottom:846.747661pt;}
.y45{bottom:847.867661pt;}
.yb3{bottom:848.187661pt;}
.yb1{bottom:848.667200pt;}
.y143{bottom:849.067660pt;}
.yb0{bottom:852.187659pt;}
.ye{bottom:858.587657pt;}
.y155{bottom:859.787656pt;}
.y44{bottom:866.187654pt;}
.y7d{bottom:873.147651pt;}
.y148{bottom:873.467651pt;}
.y154{bottom:876.587649pt;}
.y149{bottom:879.467648pt;}
.yaa{bottom:880.107648pt;}
.y13e{bottom:880.987648pt;}
.yac{bottom:884.507646pt;}
.y43{bottom:884.587646pt;}
.yd{bottom:886.187646pt;}
.ye8{bottom:887.867645pt;}
.y7c{bottom:892.747643pt;}
.y153{bottom:893.467643pt;}
.ya9{bottom:896.187642pt;}
.y144{bottom:898.907640pt;}
.y42{bottom:902.987639pt;}
.yab{bottom:905.867638pt;}
.yae{bottom:906.427200pt;}
.yad{bottom:910.347636pt;}
.y7b{bottom:911.067636pt;}
.y13d{bottom:911.867635pt;}
.yc{bottom:913.787634pt;}
.y14b{bottom:914.347200pt;}
.y14e{bottom:914.827634pt;}
.y14d{bottom:915.867634pt;}
.y41{bottom:921.387631pt;}
.ye1{bottom:923.307631pt;}
.y152{bottom:927.227629pt;}
.y7a{bottom:930.667628pt;}
.y14a{bottom:934.747626pt;}
.yb{bottom:939.787624pt;}
.y151{bottom:944.107622pt;}
.y79{bottom:948.987620pt;}
.y145{bottom:949.707620pt;}
.ya{bottom:958.187617pt;}
.y150{bottom:960.987616pt;}
.y78{bottom:968.587613pt;}
.y9{bottom:976.587609pt;}
.y14f{bottom:977.787609pt;}
.y77{bottom:986.987605pt;}
.y8{bottom:994.987602pt;}
.y76{bottom:1013.227595pt;}
.y40{bottom:1013.387595pt;}
.y16b{bottom:1014.587594pt;}
.y7{bottom:1032.027587pt;}
.y3c{bottom:1032.267587pt;}
.y6{bottom:1049.787580pt;}
.y3b{bottom:1050.507580pt;}
.y1{bottom:1050.587200pt;}
.y4{bottom:1054.107200pt;}
.y3e{bottom:1056.987200pt;}
.y3{bottom:1057.627577pt;}
.y3a{bottom:1060.587576pt;}
.h32{height:14.960000pt;}
.h1{height:17.840000pt;}
.hc{height:18.000000pt;}
.h1d{height:19.520000pt;}
.h1c{height:21.760000pt;}
.h24{height:33.848805pt;}
.h8{height:33.918736pt;}
.h1f{height:36.639773pt;}
.h16{height:36.828462pt;}
.h14{height:39.002836pt;}
.h11{height:39.022250pt;}
.h19{height:40.828109pt;}
.h31{height:41.576611pt;}
.h7{height:47.109356pt;}
.h27{height:47.364249pt;}
.h18{height:49.621855pt;}
.hb{height:52.422323pt;}
.h17{height:52.448417pt;}
.h2b{height:55.308583pt;}
.h23{height:55.309918pt;}
.h6{height:57.473415pt;}
.h9{height:59.017476pt;}
.h1e{height:59.281226pt;}
.h2a{height:61.305400pt;}
.h22{height:61.307069pt;}
.h30{height:62.365613pt;}
.h2{height:62.781225pt;}
.h29{height:62.810342pt;}
.h3{height:62.812475pt;}
.h15{height:63.134506pt;}
.he{height:64.499974pt;}
.h1b{height:66.055588pt;}
.ha{height:66.749973pt;}
.h13{height:66.862005pt;}
.h1a{height:69.955549pt;}
.h2e{height:71.130338pt;}
.h2d{height:71.132472pt;}
.hf{height:71.208151pt;}
.hd{height:71.210284pt;}
.h2c{height:71.452471pt;}
.h5{height:73.176533pt;}
.h28{height:81.196005pt;}
.h25{height:81.236421pt;}
.h2f{height:86.365603pt;}
.h4{height:96.749961pt;}
.h26{height:106.564225pt;}
.h12{height:126.381981pt;}
.h33{height:134.045584pt;}
.h20{height:136.412445pt;}
.h10{height:142.557285pt;}
.h21{height:173.212431pt;}
.h0{height:1122.666667pt;}
.w3{width:0.080000pt;}
.w1{width:1.280000pt;}
.w2{width:2.800000pt;}
.w5{width:8.800000pt;}
.w4{width:9.760000pt;}
.w6{width:35.920000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:94.559296pt;}
.x4a{left:97.119294pt;}
.x7{left:99.518793pt;}
.x8d{left:102.719292pt;}
.x16{left:103.919292pt;}
.x6{left:104.879291pt;}
.x49{left:110.719289pt;}
.x3d{left:114.959110pt;}
.x19{left:118.559360pt;}
.x4c{left:120.239286pt;}
.x1c{left:121.679285pt;}
.x1a{left:122.879284pt;}
.x4b{left:124.239284pt;}
.x3e{left:128.239111pt;}
.x79{left:130.879281pt;}
.x80{left:133.519947pt;}
.x5d{left:138.799944pt;}
.x21{left:141.839794pt;}
.x51{left:143.199943pt;}
.x5c{left:145.438806pt;}
.x62{left:147.199941pt;}
.x67{left:152.398898pt;}
.x1{left:154.879360pt;}
.x5f{left:156.319937pt;}
.x2{left:159.519936pt;}
.x4e{left:160.719932pt;}
.x54{left:162.478676pt;}
.x5e{left:164.399934pt;}
.x55{left:167.358006pt;}
.x4d{left:168.799932pt;}
.x6f{left:169.759932pt;}
.x9{left:171.599931pt;}
.x7a{left:172.719931pt;}
.x7b{left:177.279929pt;}
.x77{left:178.639929pt;}
.x40{left:180.559150pt;}
.x41{left:185.199151pt;}
.x3f{left:188.559145pt;}
.x6d{left:196.801199pt;}
.x3c{left:200.399920pt;}
.x7c{left:203.759918pt;}
.x70{left:206.239918pt;}
.x71{left:210.959916pt;}
.x6c{left:212.721163pt;}
.x3b{left:214.879914pt;}
.x1e{left:217.039913pt;}
.x60{left:219.039912pt;}
.x4f{left:221.359968pt;}
.x3a{left:225.920000pt;}
.x8c{left:227.119909pt;}
.x72{left:234.239906pt;}
.xa{left:240.479904pt;}
.x81{left:242.239903pt;}
.x78{left:243.839902pt;}
.x23{left:248.879900pt;}
.x15{left:250.319900pt;}
.x27{left:254.240197pt;}
.x82{left:259.519896pt;}
.x43{left:261.679165pt;}
.x42{left:263.439162pt;}
.x6e{left:266.561028pt;}
.xb{left:273.919890pt;}
.x66{left:279.999043pt;}
.x6a{left:281.519887pt;}
.x65{left:283.679265pt;}
.xc{left:285.199886pt;}
.x2d{left:289.359706pt;}
.x87{left:294.799882pt;}
.x28{left:296.320148pt;}
.x7d{left:301.119880pt;}
.x29{left:303.439879pt;}
.x73{left:305.519878pt;}
.x2a{left:307.439880pt;}
.x74{left:310.239876pt;}
.x7e{left:315.439874pt;}
.x2c{left:318.399720pt;}
.x26{left:323.120138pt;}
.x8{left:330.078851pt;}
.x75{left:333.519867pt;}
.x25{left:341.200066pt;}
.x17{left:349.279860pt;}
.xd{left:351.599859pt;}
.x50{left:357.839714pt;}
.x1d{left:360.160039pt;}
.x38{left:362.480000pt;}
.x61{left:363.439855pt;}
.x76{left:370.159852pt;}
.x58{left:372.479851pt;}
.x7f{left:377.439849pt;}
.x88{left:379.679848pt;}
.xe{left:385.759846pt;}
.xf{left:391.119844pt;}
.x5{left:396.799205pt;}
.x18{left:408.879790pt;}
.x37{left:412.000000pt;}
.x5a{left:414.159834pt;}
.x44{left:421.759161pt;}
.x89{left:428.959828pt;}
.x57{left:433.039899pt;}
.x59{left:437.679851pt;}
.x35{left:445.679547pt;}
.x33{left:459.119816pt;}
.x36{left:460.240000pt;}
.x56{left:461.279815pt;}
.x22{left:463.999814pt;}
.x10{left:466.319813pt;}
.x31{left:468.479813pt;}
.x5b{left:470.479812pt;}
.x8a{left:473.599811pt;}
.x34{left:489.599782pt;}
.x32{left:498.879797pt;}
.x83{left:507.199797pt;}
.x39{left:510.719796pt;}
.x11{left:512.799795pt;}
.x12{left:518.159793pt;}
.x2b{left:529.679788pt;}
.x8b{left:531.519787pt;}
.x84{left:539.119784pt;}
.x1f{left:545.599782pt;}
.x6b{left:549.599836pt;}
.x24{left:554.159778pt;}
.x46{left:564.719066pt;}
.x2e{left:569.279772pt;}
.x45{left:576.639065pt;}
.x13{left:596.479761pt;}
.x85{left:608.479757pt;}
.x14{left:615.999754pt;}
.x52{left:619.119752pt;}
.x63{left:622.879751pt;}
.x68{left:628.479749pt;}
.x47{left:644.559086pt;}
.x48{left:648.079081pt;}
.x2f{left:654.639738pt;}
.x86{left:659.039736pt;}
.x69{left:664.719734pt;}
.x20{left:675.119730pt;}
.x53{left:679.519728pt;}
.x1b{left:680.559728pt;}
.x64{left:681.999727pt;}
.x30{left:689.759724pt;}
.x3{left:699.280000pt;}
}




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