
    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_c5cda24849a6fc2cd0adb72d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_576361e773edca9b9c1f1167.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_650262f49eb3b4792e578dbb.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f9c9ab2f7549c8fa22b3ab7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.954000;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_29aeb45bbefcb338395e5c07.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.995000;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_1fb042108475385f94453cb9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_ef2caeabe9d1c89ef3ba6bf5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;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_b6be475a80aa03db393afb80.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.890000;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_f983b2d1b2c21837dbfc4d61.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.022000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_36c59a0b7f064a518c5607a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.828000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ec6f24a547649a2c90187153.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.702000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a1dafaf03ddc322626ed8fd8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_ffa6de73ba32c2867bbced05.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.733000;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;}
.m4{transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199980,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.199981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199981,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240884,0.000000,-0.066893,0.240884,0,0);-ms-transform:matrix(0.240884,0.000000,-0.066893,0.240884,0,0);-webkit-transform:matrix(0.240884,0.000000,-0.066893,0.240884,0,0);}
.m2{transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);-ms-transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);-webkit-transform:matrix(0.240894,0.000000,-0.066860,0.240894,0,0);}
.m3{transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);-ms-transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);-webkit-transform:matrix(0.245667,0.000000,-0.046341,0.245667,0,0);}
.m6{transform:matrix(0.245671,0.000000,-0.046325,0.245671,0,0);-ms-transform:matrix(0.245671,0.000000,-0.046325,0.245671,0,0);-webkit-transform:matrix(0.245671,0.000000,-0.046325,0.245671,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-26.600437px;}
.v2{vertical-align:-25.443600px;}
.v4{vertical-align:-22.024800px;}
.v7{vertical-align:-15.290400px;}
.v3{vertical-align:-12.499800px;}
.v6{vertical-align:-2.993400px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:22.027800px;}
.v1{vertical-align:28.437000px;}
.ls1b{letter-spacing:-3.539396px;}
.ls46{letter-spacing:-1.208436px;}
.ls1a{letter-spacing:-0.004789px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.001902px;}
.ls2{letter-spacing:0.004191px;}
.ls5{letter-spacing:0.835800px;}
.ls7{letter-spacing:0.836400px;}
.ls3b{letter-spacing:0.838152px;}
.ls35{letter-spacing:0.948309px;}
.ls37{letter-spacing:0.953099px;}
.ls2e{letter-spacing:1.184485px;}
.lsa{letter-spacing:1.185386px;}
.ls6{letter-spacing:1.187904px;}
.ls4{letter-spacing:1.191373px;}
.ls38{letter-spacing:4.966649px;}
.ls25{letter-spacing:6.190351px;}
.lsf{letter-spacing:6.561533px;}
.ls34{letter-spacing:12.174756px;}
.ls2a{letter-spacing:13.147013px;}
.ls44{letter-spacing:14.440162px;}
.ls1d{letter-spacing:15.900941px;}
.ls18{letter-spacing:15.934467px;}
.ls30{letter-spacing:17.415601px;}
.ls29{letter-spacing:18.145991px;}
.ls36{letter-spacing:18.247766px;}
.ls32{letter-spacing:18.554291px;}
.ls43{letter-spacing:18.774605px;}
.ls3e{letter-spacing:18.894341px;}
.ls39{letter-spacing:19.200865px;}
.ls41{letter-spacing:19.558876px;}
.ls2f{letter-spacing:19.708546px;}
.lsb{letter-spacing:19.930057px;}
.ls3{letter-spacing:19.934024px;}
.ls1{letter-spacing:19.935974px;}
.ls10{letter-spacing:19.983938px;}
.ls2d{letter-spacing:20.337160px;}
.ls3a{letter-spacing:20.848432px;}
.ls42{letter-spacing:20.953800px;}
.ls14{letter-spacing:21.019655px;}
.ls16{letter-spacing:21.426757px;}
.lsd{letter-spacing:21.516559px;}
.ls24{letter-spacing:21.702150px;}
.ls27{letter-spacing:22.432540px;}
.ls1f{letter-spacing:22.588196px;}
.ls33{letter-spacing:22.821682px;}
.ls26{letter-spacing:22.893523px;}
.ls13{letter-spacing:23.144969px;}
.ls22{letter-spacing:23.336546px;}
.ls3c{letter-spacing:23.995094px;}
.ls20{letter-spacing:24.288448px;}
.ls23{letter-spacing:24.521933px;}
.ls1e{letter-spacing:24.695550px;}
.ls3d{letter-spacing:25.186468px;}
.ls21{letter-spacing:25.473834px;}
.ls45{letter-spacing:25.508557px;}
.ls17{letter-spacing:25.611530px;}
.ls9{letter-spacing:25.731266px;}
.ls8{letter-spacing:26.922640px;}
.ls28{letter-spacing:27.024415px;}
.ls15{letter-spacing:27.994277px;}
.ls40{letter-spacing:28.706706px;}
.ls2c{letter-spacing:29.317360px;}
.ls3f{letter-spacing:29.981894px;}
.ls1c{letter-spacing:31.652212px;}
.ls19{letter-spacing:35.866919px;}
.ls12{letter-spacing:40.698266px;}
.ls11{letter-spacing:42.385800px;}
.lse{letter-spacing:46.242043px;}
.ls31{letter-spacing:46.888618px;}
.ls2b{letter-spacing:644.568822px;}
.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;}
}
.ws4a{word-spacing:-35.986655px;}
.ws32{word-spacing:-34.950938px;}
.ws10d{word-spacing:-27.908067px;}
.ws10b{word-spacing:-26.413762px;}
.ws87{word-spacing:-25.246336px;}
.ws86{word-spacing:-24.054962px;}
.ws55{word-spacing:-16.152386px;}
.ws9{word-spacing:-14.967000px;}
.ws65{word-spacing:-13.470300px;}
.ws5f{word-spacing:-11.973600px;}
.ws10e{word-spacing:-11.968811px;}
.ws83{word-spacing:-11.315052px;}
.ws1a{word-spacing:-10.481091px;}
.ws19{word-spacing:-10.476900px;}
.ws4{word-spacing:-9.728550px;}
.ws5a{word-spacing:-8.231850px;}
.ws113{word-spacing:-7.023414px;}
.wsc{word-spacing:-0.137696px;}
.ws6{word-spacing:-0.059868px;}
.ws63{word-spacing:-0.053881px;}
.ws5e{word-spacing:-0.047894px;}
.ws3{word-spacing:-0.046098px;}
.ws66{word-spacing:-0.043105px;}
.ws5b{word-spacing:-0.032927px;}
.ws29{word-spacing:-0.017960px;}
.ws0{word-spacing:0.000000px;}
.ws7e{word-spacing:0.065855px;}
.wsea{word-spacing:0.101776px;}
.ws117{word-spacing:0.134104px;}
.wsb2{word-spacing:0.186788px;}
.wsb1{word-spacing:0.196367px;}
.wsaf{word-spacing:0.201156px;}
.ws3f{word-spacing:0.239472px;}
.ws107{word-spacing:0.459786px;}
.ws23{word-spacing:0.472957px;}
.ws127{word-spacing:0.627417px;}
.ws112{word-spacing:0.680100px;}
.wsc3{word-spacing:0.796244px;}
.wsca{word-spacing:0.850126px;}
.ws6e{word-spacing:0.933941px;}
.ws37{word-spacing:1.035716px;}
.wsb0{word-spacing:1.154255px;}
.ws11a{word-spacing:1.293149px;}
.ws3d{word-spacing:1.299136px;}
.ws3e{word-spacing:1.311109px;}
.wsd5{word-spacing:1.341043px;}
.ws1f{word-spacing:1.616436px;}
.ws28{word-spacing:1.628410px;}
.ws115{word-spacing:1.647567px;}
.wsb6{word-spacing:1.666725px;}
.ws79{word-spacing:1.766106px;}
.wseb{word-spacing:1.819987px;}
.ws20{word-spacing:1.837948px;}
.ws95{word-spacing:1.867882px;}
.ws69{word-spacing:1.987618px;}
.ws47{word-spacing:2.059459px;}
.wse8{word-spacing:2.071433px;}
.ws120{word-spacing:2.140880px;}
.ws2d{word-spacing:2.191169px;}
.ws11{word-spacing:2.227090px;}
.ws102{word-spacing:2.328865px;}
.ws9f{word-spacing:2.448601px;}
.ws10a{word-spacing:2.466562px;}
.wsa{word-spacing:2.586298px;}
.wse3{word-spacing:2.634192px;}
.wscd{word-spacing:2.652152px;}
.wsbe{word-spacing:2.735968px;}
.wsdf{word-spacing:2.753928px;}
.wsf4{word-spacing:2.855704px;}
.ws121{word-spacing:2.907190px;}
.ws103{word-spacing:2.957479px;}
.ws119{word-spacing:2.974242px;}
.ws10{word-spacing:2.987413px;}
.ws10f{word-spacing:3.007768px;}
.ws10c{word-spacing:3.113136px;}
.ws96{word-spacing:3.206101px;}
.wsa7{word-spacing:3.314292px;}
.wsa5{word-spacing:3.448397px;}
.ws122{word-spacing:3.486712px;}
.ws67{word-spacing:3.491502px;}
.ws9c{word-spacing:3.544186px;}
.ws9d{word-spacing:3.550172px;}
.wsa8{word-spacing:3.568133px;}
.ws15{word-spacing:3.741750px;}
.wse5{word-spacing:3.807605px;}
.ws42{word-spacing:3.825565px;}
.ws24{word-spacing:3.887728px;}
.ws8f{word-spacing:3.927341px;}
.ws116{word-spacing:3.941709px;}
.ws60{word-spacing:3.946499px;}
.ws106{word-spacing:3.951288px;}
.wsb8{word-spacing:3.956077px;}
.ws5c{word-spacing:3.960867px;}
.ws128{word-spacing:3.970446px;}
.ws2c{word-spacing:3.981222px;}
.wsa4{word-spacing:4.094971px;}
.wsf6{word-spacing:4.148852px;}
.ws99{word-spacing:4.178786px;}
.ws9a{word-spacing:4.184773px;}
.ws129{word-spacing:4.200339px;}
.ws62{word-spacing:4.412870px;}
.ws6f{word-spacing:4.436219px;}
.ws125{word-spacing:4.439811px;}
.ws64{word-spacing:4.450587px;}
.ws5{word-spacing:4.455975px;}
.wsd4{word-spacing:4.591876px;}
.ws61{word-spacing:4.909176px;}
.wsed{word-spacing:4.915163px;}
.wsd9{word-spacing:4.933123px;}
.wsd2{word-spacing:4.945097px;}
.wsf{word-spacing:4.951084px;}
.ws7{word-spacing:4.963057px;}
.ws11c{word-spacing:5.134280px;}
.ws11e{word-spacing:5.143859px;}
.wsc2{word-spacing:5.284237px;}
.ws5d{word-spacing:5.306700px;}
.ws105{word-spacing:5.373752px;}
.ws104{word-spacing:5.383331px;}
.wse2{word-spacing:5.591671px;}
.ws2e{word-spacing:5.607637px;}
.wsd7{word-spacing:5.795222px;}
.ws78{word-spacing:5.831143px;}
.ws101{word-spacing:5.867064px;}
.wsd{word-spacing:5.932919px;}
.ws39{word-spacing:5.986800px;}
.ws48{word-spacing:6.046668px;}
.ws49{word-spacing:6.052655px;}
.wsd0{word-spacing:6.118510px;}
.wsc0{word-spacing:6.226272px;}
.ws8e{word-spacing:6.274166px;}
.wsb3{word-spacing:6.283745px;}
.wsf2{word-spacing:6.328048px;}
.ws38{word-spacing:6.429823px;}
.ws52{word-spacing:6.459757px;}
.ws108{word-spacing:6.528007px;}
.ws17{word-spacing:6.543572px;}
.ws11f{word-spacing:6.547164px;}
.wsaa{word-spacing:6.566322px;}
.wsac{word-spacing:6.580691px;}
.wsab{word-spacing:6.590269px;}
.wsf3{word-spacing:6.633374px;}
.wsfb{word-spacing:6.699229px;}
.ws8c{word-spacing:6.729163px;}
.ws8d{word-spacing:6.735150px;}
.wsf7{word-spacing:6.765084px;}
.wsf0{word-spacing:6.884820px;}
.ws7a{word-spacing:7.040477px;}
.wscc{word-spacing:7.140946px;}
.wsb{word-spacing:7.190147px;}
.ws6a{word-spacing:7.226068px;}
.wse0{word-spacing:7.238128px;}
.ws59{word-spacing:7.381724px;}
.ws114{word-spacing:7.414053px;}
.wsa9{word-spacing:7.529000px;}
.ws1e{word-spacing:7.549355px;}
.ws92{word-spacing:7.603236px;}
.ws77{word-spacing:7.621196px;}
.wsce{word-spacing:7.675078px;}
.wscf{word-spacing:7.687051px;}
.wsc4{word-spacing:7.722972px;}
.wsbb{word-spacing:7.734946px;}
.wsfa{word-spacing:7.752906px;}
.wsde{word-spacing:7.770866px;}
.ws1d{word-spacing:7.854682px;}
.wsb4{word-spacing:7.902576px;}
.wsb5{word-spacing:7.921734px;}
.ws33{word-spacing:8.046259px;}
.wsdb{word-spacing:8.112114px;}
.wse6{word-spacing:8.148035px;}
.ws44{word-spacing:8.171982px;}
.ws45{word-spacing:8.177969px;}
.ws126{word-spacing:8.276152px;}
.wsfc{word-spacing:8.279744px;}
.ws36{word-spacing:8.333626px;}
.ws84{word-spacing:8.363560px;}
.wse{word-spacing:8.740728px;}
.ws76{word-spacing:8.806583px;}
.ws43{word-spacing:8.896385px;}
.wsee{word-spacing:8.908358px;}
.ws85{word-spacing:9.016121px;}
.ws88{word-spacing:9.022108px;}
.ws89{word-spacing:9.028094px;}
.wsf5{word-spacing:9.117896px;}
.wsf8{word-spacing:9.249606px;}
.ws82{word-spacing:9.321448px;}
.ws27{word-spacing:9.471118px;}
.ws12a{word-spacing:9.521407px;}
.ws12b{word-spacing:9.530986px;}
.ws21{word-spacing:9.590854px;}
.wsbf{word-spacing:9.635728px;}
.wsb7{word-spacing:9.641143px;}
.wsf1{word-spacing:9.644735px;}
.ws74{word-spacing:9.722563px;}
.ws75{word-spacing:9.728550px;}
.ws53{word-spacing:9.914141px;}
.wsd8{word-spacing:10.135652px;}
.ws109{word-spacing:10.440979px;}
.ws56{word-spacing:10.638544px;}
.ws57{word-spacing:10.644530px;}
.ws110{word-spacing:10.694820px;}
.ws111{word-spacing:10.704398px;}
.ws8{word-spacing:10.764266px;}
.wsae{word-spacing:10.848082px;}
.ws94{word-spacing:10.854068px;}
.wsad{word-spacing:10.857660px;}
.ws93{word-spacing:10.866042px;}
.ws123{word-spacing:10.867239px;}
.ws124{word-spacing:10.881608px;}
.ws9b{word-spacing:11.051633px;}
.ws2a{word-spacing:11.123474px;}
.wsd6{word-spacing:11.901758px;}
.ws22{word-spacing:11.937679px;}
.ws4e{word-spacing:11.991560px;}
.ws91{word-spacing:12.084928px;}
.ws8a{word-spacing:12.326821px;}
.ws9e{word-spacing:12.428597px;}
.ws40{word-spacing:12.620174px;}
.ws4c{word-spacing:12.703990px;}
.wse1{word-spacing:12.751884px;}
.ws58{word-spacing:12.787805px;}
.ws35{word-spacing:12.816928px;}
.wsba{word-spacing:12.925501px;}
.ws51{word-spacing:13.027277px;}
.ws73{word-spacing:13.075171px;}
.ws97{word-spacing:13.158986px;}
.ws98{word-spacing:13.164973px;}
.wsfd{word-spacing:13.284709px;}
.ws71{word-spacing:13.332604px;}
.ws16{word-spacing:13.386485px;}
.wsef{word-spacing:13.394728px;}
.ws118{word-spacing:13.511010px;}
.ws11b{word-spacing:13.525379px;}
.wsa6{word-spacing:13.534957px;}
.wsf9{word-spacing:13.673851px;}
.wscb{word-spacing:13.739706px;}
.ws25{word-spacing:13.811548px;}
.ws26{word-spacing:13.956328px;}
.ws4b{word-spacing:14.015099px;}
.ws14{word-spacing:14.027072px;}
.ws2b{word-spacing:14.571871px;}
.ws3c{word-spacing:14.661673px;}
.ws11d{word-spacing:14.698791px;}
.wsd3{word-spacing:14.984960px;}
.wsc8{word-spacing:15.014894px;}
.ws4d{word-spacing:15.402328px;}
.wsd1{word-spacing:15.475878px;}
.ws6d{word-spacing:15.613574px;}
.ws68{word-spacing:15.896151px;}
.wsb9{word-spacing:15.934467px;}
.wsa3{word-spacing:16.170347px;}
.ws81{word-spacing:16.242188px;}
.ws46{word-spacing:16.290083px;}
.ws7d{word-spacing:16.643304px;}
.ws7b{word-spacing:16.649291px;}
.ws6b{word-spacing:16.673238px;}
.ws6c{word-spacing:16.679225px;}
.wsc5{word-spacing:16.733106px;}
.wse7{word-spacing:16.751066px;}
.ws7f{word-spacing:17.026459px;}
.ws34{word-spacing:17.295865px;}
.ws13{word-spacing:17.439946px;}
.ws4f{word-spacing:17.553298px;}
.ws50{word-spacing:17.571258px;}
.ws3b{word-spacing:17.720928px;}
.ws72{word-spacing:17.819437px;}
.wsff{word-spacing:18.349542px;}
.wsfe{word-spacing:18.451318px;}
.ws70{word-spacing:18.636908px;}
.ws8b{word-spacing:18.738684px;}
.ws100{word-spacing:19.439140px;}
.wse4{word-spacing:19.466728px;}
.ws80{word-spacing:19.588810px;}
.ws2{word-spacing:19.870189px;}
.wsbc{word-spacing:20.558671px;}
.wsa2{word-spacing:20.657128px;}
.ws41{word-spacing:20.899919px;}
.ws7c{word-spacing:21.133528px;}
.wsec{word-spacing:21.175312px;}
.ws30{word-spacing:21.923662px;}
.wsda{word-spacing:21.953596px;}
.wse9{word-spacing:22.498394px;}
.ws2f{word-spacing:22.995299px;}
.wsbd{word-spacing:23.973928px;}
.ws3a{word-spacing:25.731266px;}
.wsdc{word-spacing:25.898897px;}
.ws31{word-spacing:26.581392px;}
.ws54{word-spacing:27.395597px;}
.ws1{word-spacing:27.826447px;}
.ws90{word-spacing:29.047954px;}
.wsdd{word-spacing:30.388237px;}
.ws18{word-spacing:31.275043px;}
.wsc9{word-spacing:31.801882px;}
.wsa1{word-spacing:31.915631px;}
.wsa0{word-spacing:31.921618px;}
.ws12{word-spacing:32.975294px;}
.ws1c{word-spacing:33.250687px;}
.ws1b{word-spacing:34.454183px;}
.wsc6{word-spacing:35.004820px;}
.wsc7{word-spacing:35.016793px;}
.wsc1{word-spacing:36.687110px;}
._15{margin-left:-1665.532549px;}
._18{margin-left:-25.200312px;}
._17{margin-left:-22.797734px;}
._11{margin-left:-21.043602px;}
._b{margin-left:-19.989925px;}
._20{margin-left:-16.454759px;}
._21{margin-left:-15.423753px;}
._1f{margin-left:-14.277959px;}
._1{margin-left:-7.744572px;}
._1d{margin-left:-6.633374px;}
._8{margin-left:-5.060212px;}
._0{margin-left:-3.333281px;}
._2{margin-left:-1.993904px;}
._9{width:1.143479px;}
._13{width:3.572922px;}
._c{width:5.370160px;}
._4{width:6.561533px;}
._22{width:12.275335px;}
._5{width:13.757666px;}
._1c{width:16.529555px;}
._d{width:17.673034px;}
._3{width:19.061971px;}
._7{width:20.444922px;}
._19{width:21.528533px;}
._10{width:22.701946px;}
._6{width:23.947200px;}
._24{width:25.077001px;}
._e{width:26.246131px;}
._1e{width:27.340480px;}
._23{width:28.625755px;}
._12{width:29.791683px;}
._16{width:31.652212px;}
._f{width:34.795282px;}
._a{width:37.962299px;}
._1a{width:109.668259px;}
._14{width:1394.018858px;}
._1b{width:1557.669571px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(220,220,220);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:32.927400px;}
.fs6{font-size:38.914200px;}
.fs5{font-size:41.907600px;}
.fsa{font-size:47.894400px;}
.fs2{font-size:48.000000px;}
.fse{font-size:48.738446px;}
.fsf{font-size:49.706829px;}
.fs7{font-size:53.881200px;}
.fs4{font-size:59.868000px;}
.fs1{font-size:60.000000px;}
.fsb{font-size:60.923836px;}
.fs8{font-size:62.131169px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.814600px;}
.fsc{font-size:170.010600px;}
.fsd{font-size:183.192000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:15.000000px;}
.yb3{bottom:23.759850px;}
.y6e{bottom:23.760000px;}
.yfa{bottom:25.306650px;}
.y143{bottom:30.869400px;}
.y1b{bottom:33.000000px;}
.yb2{bottom:37.978500px;}
.yba{bottom:37.978650px;}
.y142{bottom:39.475200px;}
.yf9{bottom:42.518700px;}
.yb1{bottom:52.197150px;}
.y6c{bottom:58.183950px;}
.y141{bottom:59.306550px;}
.yf8{bottom:59.730750px;}
.y6a{bottom:63.796500px;}
.yb9{bottom:66.415800px;}
.y6b{bottom:72.402600px;}
.y140{bottom:73.525050px;}
.yf7{bottom:76.942800px;}
.y69{bottom:78.015150px;}
.yb7{bottom:80.634450px;}
.yb8{bottom:81.229538px;}
.y13f{bottom:82.131000px;}
.yf6{bottom:94.154850px;}
.y13e{bottom:101.962350px;}
.yf5{bottom:111.366900px;}
.y55{bottom:112.921494px;}
.y13d{bottom:116.180850px;}
.yf4{bottom:128.578950px;}
.y54{bottom:130.281717px;}
.y13c{bottom:130.399350px;}
.y13b{bottom:139.005300px;}
.yf3{bottom:145.791000px;}
.y53{bottom:147.641940px;}
.y13a{bottom:158.836650px;}
.yf2{bottom:163.003050px;}
.y52{bottom:165.002164px;}
.y139{bottom:173.055150px;}
.yf1{bottom:180.215100px;}
.y138{bottom:181.661100px;}
.y51{bottom:182.362387px;}
.yf0{bottom:197.427150px;}
.y50{bottom:199.722610px;}
.y137{bottom:201.492300px;}
.yef{bottom:214.639200px;}
.y136{bottom:215.710950px;}
.y4f{bottom:217.082833px;}
.y135{bottom:224.316750px;}
.yee{bottom:231.851250px;}
.y4e{bottom:234.443057px;}
.y134{bottom:244.148100px;}
.yed{bottom:249.063300px;}
.y4d{bottom:251.803280px;}
.y133{bottom:252.754050px;}
.yec{bottom:266.274450px;}
.y4c{bottom:269.163503px;}
.y132{bottom:272.585250px;}
.yeb{bottom:283.486500px;}
.y4b{bottom:286.523727px;}
.y131{bottom:286.803900px;}
.y91{bottom:289.736814px;}
.y130{bottom:295.409550px;}
.yea{bottom:300.698550px;}
.y4a{bottom:303.885680px;}
.y8f{bottom:307.815452px;}
.y90{bottom:307.816950px;}
.y12f{bottom:309.628200px;}
.ye9{bottom:317.910600px;}
.y49{bottom:321.245903px;}
.y8d{bottom:325.895588px;}
.y8e{bottom:326.643938px;}
.y12e{bottom:329.459550px;}
.ye8{bottom:335.122650px;}
.y48{bottom:338.606127px;}
.y8c{bottom:343.209414px;}
.y12d{bottom:343.678200px;}
.y12c{bottom:352.284000px;}
.ye7{bottom:352.334700px;}
.y46{bottom:355.965957px;}
.y8b{bottom:360.421464px;}
.y47{bottom:361.472550px;}
.ye6{bottom:369.546750px;}
.y12b{bottom:372.115350px;}
.y45{bottom:373.326180px;}
.y8a{bottom:377.633514px;}
.y12a{bottom:380.721300px;}
.ye5{bottom:386.758800px;}
.y44{bottom:390.691837px;}
.y89{bottom:394.845564px;}
.y129{bottom:400.552500px;}
.ye4{bottom:403.970850px;}
.y43{bottom:408.052060px;}
.y88{bottom:412.924914px;}
.y128{bottom:414.771000px;}
.ye3{bottom:421.182900px;}
.y127{bottom:423.376950px;}
.y42{bottom:425.412283px;}
.y87{bottom:431.004450px;}
.ye2{bottom:438.394800px;}
.y41{bottom:442.772507px;}
.y126{bottom:443.208150px;}
.yad{bottom:447.859650px;}
.y86{bottom:448.216500px;}
.y125{bottom:451.814100px;}
.ye1{bottom:455.606850px;}
.y40{bottom:460.132730px;}
.yac{bottom:465.071700px;}
.y85{bottom:465.428550px;}
.y124{bottom:471.645300px;}
.ye0{bottom:472.818900px;}
.y3f{bottom:477.492953px;}
.y123{bottom:480.251250px;}
.yab{bottom:482.283750px;}
.y84{bottom:482.640600px;}
.y68{bottom:485.030830px;}
.ydf{bottom:490.030650px;}
.y3e{bottom:494.853177px;}
.yaa{bottom:499.495350px;}
.y83{bottom:499.852650px;}
.y122{bottom:500.082450px;}
.y67{bottom:502.986740px;}
.y1a{bottom:504.000000px;}
.yde{bottom:507.242700px;}
.y121{bottom:508.688400px;}
.y3d{bottom:512.214503px;}
.ya9{bottom:516.707400px;}
.y82{bottom:517.064700px;}
.y66{bottom:520.942650px;}
.ydd{bottom:524.454600px;}
.y19{bottom:528.000000px;}
.y120{bottom:528.519750px;}
.y3c{bottom:529.574727px;}
.ya8{bottom:533.919450px;}
.y81{bottom:534.276750px;}
.y65{bottom:538.898700px;}
.y64{bottom:538.899691px;}
.ydc{bottom:541.666650px;}
.y11f{bottom:542.738250px;}
.y3b{bottom:546.936680px;}
.ya7{bottom:551.131500px;}
.y80{bottom:551.488650px;}
.y18{bottom:552.000000px;}
.y63{bottom:556.855600px;}
.y11e{bottom:556.956900px;}
.ydb{bottom:558.880457px;}
.y3a{bottom:564.296903px;}
.y11d{bottom:565.562850px;}
.ya6{bottom:568.343550px;}
.y7f{bottom:568.700700px;}
.y17{bottom:570.000000px;}
.y62{bottom:574.811510px;}
.yda{bottom:576.092507px;}
.y39{bottom:581.657127px;}
.y11c{bottom:585.394050px;}
.ya5{bottom:585.555600px;}
.y7e{bottom:585.912750px;}
.y16{bottom:588.000000px;}
.y61{bottom:592.767420px;}
.yd9{bottom:593.304557px;}
.y11b{bottom:594.000000px;}
.y38{bottom:599.017350px;}
.ya3{bottom:602.767051px;}
.y7d{bottom:603.124200px;}
.y15{bottom:606.000000px;}
.ya4{bottom:609.196650px;}
.yd8{bottom:610.516607px;}
.y60{bottom:610.723330px;}
.y11a{bottom:613.831200px;}
.y37{bottom:616.378040px;}
.ya2{bottom:620.149724px;}
.y7c{bottom:620.336250px;}
.y119{bottom:622.437150px;}
.y14{bottom:624.000000px;}
.yd7{bottom:627.728657px;}
.y5f{bottom:628.679240px;}
.y36{bottom:633.738263px;}
.y7b{bottom:637.548300px;}
.y13{bottom:642.000000px;}
.y118{bottom:642.268350px;}
.yd6{bottom:644.940707px;}
.y5e{bottom:646.640224px;}
.y9d{bottom:646.792350px;}
.y117{bottom:650.874300px;}
.y35{bottom:651.248157px;}
.y7a{bottom:654.760350px;}
.ya0{bottom:655.963950px;}
.y9b{bottom:656.329650px;}
.y99{bottom:657.669000px;}
.y9a{bottom:658.417350px;}
.y12{bottom:660.000000px;}
.yd5{bottom:662.152757px;}
.y9f{bottom:664.319109px;}
.y5d{bottom:664.596134px;}
.y9c{bottom:668.592300px;}
.ya1{bottom:668.741100px;}
.y34{bottom:668.756684px;}
.y116{bottom:670.705500px;}
.y79{bottom:671.972400px;}
.y9e{bottom:674.545050px;}
.y11{bottom:678.000000px;}
.yd4{bottom:679.364807px;}
.y5c{bottom:682.701713px;}
.y115{bottom:684.924150px;}
.y33{bottom:686.266577px;}
.y78{bottom:689.184450px;}
.y114{bottom:693.529950px;}
.y10{bottom:696.000000px;}
.yd3{bottom:696.725030px;}
.y5b{bottom:700.807293px;}
.y32{bottom:703.776470px;}
.y77{bottom:706.396500px;}
.y113{bottom:707.748600px;}
.y98{bottom:709.163664px;}
.yf{bottom:714.000000px;}
.yd2{bottom:714.085253px;}
.y5a{bottom:718.912873px;}
.y31{bottom:721.286363px;}
.y76{bottom:723.607800px;}
.y97{bottom:726.375714px;}
.y112{bottom:727.579800px;}
.yd1{bottom:731.445477px;}
.ye{bottom:732.000000px;}
.y59{bottom:737.018453px;}
.y30{bottom:738.796257px;}
.y75{bottom:740.819850px;}
.y111{bottom:741.798450px;}
.y96{bottom:743.587764px;}
.yd0{bottom:748.805700px;}
.yd{bottom:750.000000px;}
.y110{bottom:750.404400px;}
.y58{bottom:755.124033px;}
.y2f{bottom:756.304427px;}
.y74{bottom:758.031900px;}
.y94{bottom:761.667750px;}
.y95{bottom:761.667900px;}
.ycf{bottom:766.168121px;}
.yc{bottom:768.000000px;}
.y10f{bottom:770.235600px;}
.y57{bottom:773.229613px;}
.y2e{bottom:773.814321px;}
.y73{bottom:775.243950px;}
.y93{bottom:778.880825px;}
.yce{bottom:783.528344px;}
.y10e{bottom:784.454250px;}
.yb{bottom:786.000000px;}
.y2d{bottom:791.324214px;}
.y56{bottom:791.335193px;}
.y72{bottom:792.456000px;}
.y10d{bottom:793.060050px;}
.y92{bottom:796.092874px;}
.ycd{bottom:800.888567px;}
.ya{bottom:804.000000px;}
.y71{bottom:809.668050px;}
.y10c{bottom:812.891400px;}
.ycc{bottom:818.248791px;}
.y10b{bottom:821.497200px;}
.y2c{bottom:824.251614px;}
.y70{bottom:826.880100px;}
.y9{bottom:828.000000px;}
.ycb{bottom:836.478203px;}
.yb6{bottom:838.726200px;}
.y10a{bottom:841.328550px;}
.y2b{bottom:842.212014px;}
.y6f{bottom:844.092150px;}
.y109{bottom:849.934500px;}
.y8{bottom:852.000000px;}
.yb5{bottom:852.944850px;}
.yca{bottom:853.838427px;}
.y2a{bottom:860.172414px;}
.yb4{bottom:867.163500px;}
.y108{bottom:869.765700px;}
.yc9{bottom:871.198650px;}
.y7{bottom:876.000000px;}
.y28{bottom:878.251614px;}
.y29{bottom:878.252550px;}
.yb0{bottom:878.324850px;}
.y107{bottom:878.371650px;}
.yc8{bottom:888.562660px;}
.yaf{bottom:892.543500px;}
.y27{bottom:896.212014px;}
.y106{bottom:898.202850px;}
.y6{bottom:900.000000px;}
.yc7{bottom:905.922883px;}
.yae{bottom:906.762150px;}
.y26{bottom:914.172414px;}
.yc6{bottom:923.283107px;}
.y5{bottom:924.000000px;}
.y105{bottom:924.772462px;}
.y25{bottom:932.252400px;}
.yc5{bottom:940.643330px;}
.y104{bottom:941.984512px;}
.y4{bottom:948.000000px;}
.yc4{bottom:958.003553px;}
.y24{bottom:959.193000px;}
.y103{bottom:959.196562px;}
.y3{bottom:972.000000px;}
.yc3{bottom:975.363777px;}
.y102{bottom:976.408612px;}
.y23{bottom:984.636900px;}
.yc2{bottom:992.725103px;}
.y101{bottom:993.620662px;}
.y2{bottom:996.000000px;}
.y22{bottom:1005.964800px;}
.yc1{bottom:1010.085327px;}
.y100{bottom:1010.832712px;}
.y1{bottom:1020.000000px;}
.y21{bottom:1020.931650px;}
.yc0{bottom:1027.446803px;}
.yff{bottom:1028.044762px;}
.y20{bottom:1035.898500px;}
.y1f{bottom:1044.504600px;}
.ybf{bottom:1044.807027px;}
.yfe{bottom:1045.256812px;}
.y1e{bottom:1060.968150px;}
.ybe{bottom:1062.168353px;}
.yfd{bottom:1062.468862px;}
.ybd{bottom:1079.528577px;}
.yfc{bottom:1079.680912px;}
.y1d{bottom:1089.405300px;}
.ybc{bottom:1096.888800px;}
.yfb{bottom:1096.892962px;}
.y6d{bottom:1134.306150px;}
.ybb{bottom:1134.311400px;}
.h33{height:22.654051px;}
.h17{height:24.991897px;}
.h8{height:26.772970px;}
.h26{height:28.622891px;}
.h14{height:28.832429px;}
.h2b{height:30.120360px;}
.h2c{height:30.718820px;}
.h29{height:32.951347px;}
.h2a{height:33.971498px;}
.h18{height:36.351850px;}
.h9{height:36.800860px;}
.h23{height:36.998424px;}
.h1a{height:37.118160px;}
.h20{height:37.650931px;}
.hd{height:38.397062px;}
.h24{height:40.889844px;}
.h19{height:40.895831px;}
.hc{height:41.189184px;}
.h1f{height:42.446412px;}
.h2{height:45.000000px;}
.ha{height:45.439812px;}
.hb{height:45.440412px;}
.h5{height:50.062500px;}
.h1d{height:50.860229px;}
.h1e{height:50.860973px;}
.h1{height:54.000000px;}
.h15{height:57.249134px;}
.h13{height:57.254281px;}
.h2e{height:57.256188px;}
.h11{height:57.262508px;}
.h30{height:57.263002px;}
.h2f{height:57.263146px;}
.h12{height:57.265015px;}
.h21{height:57.265331px;}
.h2d{height:57.265615px;}
.h16{height:57.270029px;}
.h10{height:57.270068px;}
.h31{height:57.270629px;}
.h28{height:57.271229px;}
.h1c{height:57.271829px;}
.h1b{height:57.272429px;}
.h32{height:57.273029px;}
.h22{height:57.273173px;}
.hf{height:57.274895px;}
.he{height:57.276319px;}
.h7{height:60.915390px;}
.h6{height:61.771360px;}
.h3{height:75.093750px;}
.h25{height:129.038045px;}
.h27{height:139.042728px;}
.h4{height:918.000000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:38.805000px;}
.x4{left:76.594950px;}
.x1{left:84.000000px;}
.x8{left:102.037129px;}
.x5{left:130.475850px;}
.x10{left:242.782950px;}
.x11{left:252.224850px;}
.x6{left:255.069600px;}
.x9{left:260.643900px;}
.x7{left:265.349550px;}
.xe{left:316.792800px;}
.x3{left:330.240000px;}
.xf{left:403.016413px;}
.xa{left:471.725868px;}
.x27{left:472.772100px;}
.x24{left:476.586150px;}
.x25{left:480.702000px;}
.x26{left:483.095523px;}
.xb{left:497.169768px;}
.x14{left:498.415294px;}
.xc{left:507.892350px;}
.xd{left:518.172300px;}
.x15{left:529.105500px;}
.x12{left:530.140350px;}
.x16{left:538.673250px;}
.x13{left:540.420300px;}
.x17{left:551.120100px;}
.x18{left:559.348350px;}
.x19{left:564.795900px;}
.x1a{left:575.899050px;}
.x1b{left:612.564450px;}
.x1c{left:622.772100px;}
.x1d{left:626.391450px;}
.x1e{left:646.931850px;}
.x1f{left:656.688900px;}
.x22{left:719.371950px;}
.x23{left:727.595700px;}
.x21{left:746.286027px;}
.x20{left:828.298800px;}
@media print{
.v8{vertical-align:-23.644833pt;}
.v2{vertical-align:-22.616533pt;}
.v4{vertical-align:-19.577600pt;}
.v7{vertical-align:-13.591467pt;}
.v3{vertical-align:-11.110933pt;}
.v6{vertical-align:-2.660800pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.580267pt;}
.v1{vertical-align:25.277333pt;}
.ls1b{letter-spacing:-3.146130pt;}
.ls46{letter-spacing:-1.074165pt;}
.ls1a{letter-spacing:-0.004257pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.001691pt;}
.ls2{letter-spacing:0.003725pt;}
.ls5{letter-spacing:0.742933pt;}
.ls7{letter-spacing:0.743467pt;}
.ls3b{letter-spacing:0.745024pt;}
.ls35{letter-spacing:0.842941pt;}
.ls37{letter-spacing:0.847199pt;}
.ls2e{letter-spacing:1.052876pt;}
.lsa{letter-spacing:1.053677pt;}
.ls6{letter-spacing:1.055915pt;}
.ls4{letter-spacing:1.058998pt;}
.ls38{letter-spacing:4.414799pt;}
.ls25{letter-spacing:5.502534pt;}
.lsf{letter-spacing:5.832474pt;}
.ls34{letter-spacing:10.822006pt;}
.ls2a{letter-spacing:11.686234pt;}
.ls44{letter-spacing:12.835699pt;}
.ls1d{letter-spacing:14.134170pt;}
.ls18{letter-spacing:14.163971pt;}
.ls30{letter-spacing:15.480534pt;}
.ls29{letter-spacing:16.129770pt;}
.ls36{letter-spacing:16.220237pt;}
.ls32{letter-spacing:16.492703pt;}
.ls43{letter-spacing:16.688538pt;}
.ls3e{letter-spacing:16.794970pt;}
.ls39{letter-spacing:17.067436pt;}
.ls41{letter-spacing:17.385667pt;}
.ls2f{letter-spacing:17.518707pt;}
.lsb{letter-spacing:17.715606pt;}
.ls3{letter-spacing:17.719132pt;}
.ls1{letter-spacing:17.720866pt;}
.ls10{letter-spacing:17.763501pt;}
.ls2d{letter-spacing:18.077475pt;}
.ls3a{letter-spacing:18.531940pt;}
.ls42{letter-spacing:18.625600pt;}
.ls14{letter-spacing:18.684138pt;}
.ls16{letter-spacing:19.046006pt;}
.lsd{letter-spacing:19.125830pt;}
.ls24{letter-spacing:19.290800pt;}
.ls27{letter-spacing:19.940035pt;}
.ls1f{letter-spacing:20.078397pt;}
.ls33{letter-spacing:20.285939pt;}
.ls26{letter-spacing:20.349798pt;}
.ls13{letter-spacing:20.573306pt;}
.ls22{letter-spacing:20.743597pt;}
.ls3c{letter-spacing:21.328973pt;}
.ls20{letter-spacing:21.589731pt;}
.ls23{letter-spacing:21.797274pt;}
.ls1e{letter-spacing:21.951600pt;}
.ls3d{letter-spacing:22.387971pt;}
.ls21{letter-spacing:22.643408pt;}
.ls45{letter-spacing:22.674273pt;}
.ls17{letter-spacing:22.765805pt;}
.ls9{letter-spacing:22.872237pt;}
.ls8{letter-spacing:23.931235pt;}
.ls28{letter-spacing:24.021702pt;}
.ls15{letter-spacing:24.883802pt;}
.ls40{letter-spacing:25.517072pt;}
.ls2c{letter-spacing:26.059875pt;}
.ls3f{letter-spacing:26.650573pt;}
.ls1c{letter-spacing:28.135299pt;}
.ls19{letter-spacing:31.881706pt;}
.ls12{letter-spacing:36.176237pt;}
.ls11{letter-spacing:37.676267pt;}
.lse{letter-spacing:41.104038pt;}
.ls31{letter-spacing:41.678771pt;}
.ls2b{letter-spacing:572.950064pt;}
.ws4a{word-spacing:-31.988138pt;}
.ws32{word-spacing:-31.067501pt;}
.ws10d{word-spacing:-24.807171pt;}
.ws10b{word-spacing:-23.478899pt;}
.ws87{word-spacing:-22.441187pt;}
.ws86{word-spacing:-21.382189pt;}
.ws55{word-spacing:-14.357677pt;}
.ws9{word-spacing:-13.304000pt;}
.ws65{word-spacing:-11.973600pt;}
.ws5f{word-spacing:-10.643200pt;}
.ws10e{word-spacing:-10.638943pt;}
.ws83{word-spacing:-10.057824pt;}
.ws1a{word-spacing:-9.316525pt;}
.ws19{word-spacing:-9.312800pt;}
.ws4{word-spacing:-8.647600pt;}
.ws5a{word-spacing:-7.317200pt;}
.ws113{word-spacing:-6.243035pt;}
.wsc{word-spacing:-0.122397pt;}
.ws6{word-spacing:-0.053216pt;}
.ws63{word-spacing:-0.047894pt;}
.ws5e{word-spacing:-0.042573pt;}
.ws3{word-spacing:-0.040976pt;}
.ws66{word-spacing:-0.038316pt;}
.ws5b{word-spacing:-0.029269pt;}
.ws29{word-spacing:-0.015965pt;}
.ws0{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.058538pt;}
.wsea{word-spacing:0.090467pt;}
.ws117{word-spacing:0.119204pt;}
.wsb2{word-spacing:0.166034pt;}
.wsb1{word-spacing:0.174548pt;}
.wsaf{word-spacing:0.178806pt;}
.ws3f{word-spacing:0.212864pt;}
.ws107{word-spacing:0.408699pt;}
.ws23{word-spacing:0.420406pt;}
.ws127{word-spacing:0.557704pt;}
.ws112{word-spacing:0.604534pt;}
.wsc3{word-spacing:0.707773pt;}
.wsca{word-spacing:0.755667pt;}
.ws6e{word-spacing:0.830170pt;}
.ws37{word-spacing:0.920637pt;}
.wsb0{word-spacing:1.026004pt;}
.ws11a{word-spacing:1.149466pt;}
.ws3d{word-spacing:1.154787pt;}
.ws3e{word-spacing:1.165430pt;}
.wsd5{word-spacing:1.192038pt;}
.ws1f{word-spacing:1.436832pt;}
.ws28{word-spacing:1.447475pt;}
.ws115{word-spacing:1.464504pt;}
.wsb6{word-spacing:1.481533pt;}
.ws79{word-spacing:1.569872pt;}
.wseb{word-spacing:1.617766pt;}
.ws20{word-spacing:1.633731pt;}
.ws95{word-spacing:1.660339pt;}
.ws69{word-spacing:1.766771pt;}
.ws47{word-spacing:1.830630pt;}
.wse8{word-spacing:1.841274pt;}
.ws120{word-spacing:1.903004pt;}
.ws2d{word-spacing:1.947706pt;}
.ws11{word-spacing:1.979635pt;}
.ws102{word-spacing:2.070102pt;}
.ws9f{word-spacing:2.176534pt;}
.ws10a{word-spacing:2.192499pt;}
.wsa{word-spacing:2.298931pt;}
.wse3{word-spacing:2.341504pt;}
.wscd{word-spacing:2.357469pt;}
.wsbe{word-spacing:2.431971pt;}
.wsdf{word-spacing:2.447936pt;}
.wsf4{word-spacing:2.538403pt;}
.ws121{word-spacing:2.584169pt;}
.ws103{word-spacing:2.628870pt;}
.ws119{word-spacing:2.643771pt;}
.ws10{word-spacing:2.655478pt;}
.ws10f{word-spacing:2.673572pt;}
.ws10c{word-spacing:2.767232pt;}
.ws96{word-spacing:2.849868pt;}
.wsa7{word-spacing:2.946038pt;}
.wsa5{word-spacing:3.065242pt;}
.ws122{word-spacing:3.099300pt;}
.ws67{word-spacing:3.103557pt;}
.ws9c{word-spacing:3.150387pt;}
.ws9d{word-spacing:3.155709pt;}
.wsa8{word-spacing:3.171674pt;}
.ws15{word-spacing:3.326000pt;}
.wse5{word-spacing:3.384538pt;}
.ws42{word-spacing:3.400502pt;}
.ws24{word-spacing:3.455758pt;}
.ws8f{word-spacing:3.490970pt;}
.ws116{word-spacing:3.503741pt;}
.ws60{word-spacing:3.507999pt;}
.ws106{word-spacing:3.512256pt;}
.wsb8{word-spacing:3.516513pt;}
.ws5c{word-spacing:3.520771pt;}
.ws128{word-spacing:3.529285pt;}
.ws2c{word-spacing:3.538864pt;}
.wsa4{word-spacing:3.639974pt;}
.wsf6{word-spacing:3.687869pt;}
.ws99{word-spacing:3.714477pt;}
.ws9a{word-spacing:3.719798pt;}
.ws129{word-spacing:3.733635pt;}
.ws62{word-spacing:3.922551pt;}
.ws6f{word-spacing:3.943306pt;}
.ws125{word-spacing:3.946499pt;}
.ws64{word-spacing:3.956077pt;}
.ws5{word-spacing:3.960867pt;}
.wsd4{word-spacing:4.081667pt;}
.ws61{word-spacing:4.363712pt;}
.wsed{word-spacing:4.369034pt;}
.wsd9{word-spacing:4.384998pt;}
.wsd2{word-spacing:4.395642pt;}
.wsf{word-spacing:4.400963pt;}
.ws7{word-spacing:4.411606pt;}
.ws11c{word-spacing:4.563804pt;}
.ws11e{word-spacing:4.572319pt;}
.wsc2{word-spacing:4.697100pt;}
.ws5d{word-spacing:4.717066pt;}
.ws105{word-spacing:4.776668pt;}
.ws104{word-spacing:4.785183pt;}
.wse2{word-spacing:4.970374pt;}
.ws2e{word-spacing:4.984566pt;}
.wsd7{word-spacing:5.151309pt;}
.ws78{word-spacing:5.183238pt;}
.ws101{word-spacing:5.215168pt;}
.wsd{word-spacing:5.273706pt;}
.ws39{word-spacing:5.321600pt;}
.ws48{word-spacing:5.374816pt;}
.ws49{word-spacing:5.380138pt;}
.wsd0{word-spacing:5.438675pt;}
.wsc0{word-spacing:5.534464pt;}
.ws8e{word-spacing:5.577037pt;}
.wsb3{word-spacing:5.585551pt;}
.wsf2{word-spacing:5.624931pt;}
.ws38{word-spacing:5.715398pt;}
.ws52{word-spacing:5.742006pt;}
.ws108{word-spacing:5.802673pt;}
.ws17{word-spacing:5.816509pt;}
.ws11f{word-spacing:5.819702pt;}
.wsaa{word-spacing:5.836731pt;}
.wsac{word-spacing:5.849503pt;}
.wsab{word-spacing:5.858017pt;}
.wsf3{word-spacing:5.896333pt;}
.wsfb{word-spacing:5.954870pt;}
.ws8c{word-spacing:5.981478pt;}
.ws8d{word-spacing:5.986800pt;}
.wsf7{word-spacing:6.013408pt;}
.wsf0{word-spacing:6.119840pt;}
.ws7a{word-spacing:6.258202pt;}
.wscc{word-spacing:6.347508pt;}
.wsb{word-spacing:6.391242pt;}
.ws6a{word-spacing:6.423171pt;}
.wse0{word-spacing:6.433891pt;}
.ws59{word-spacing:6.561533pt;}
.ws114{word-spacing:6.590269pt;}
.wsa9{word-spacing:6.692444pt;}
.ws1e{word-spacing:6.710538pt;}
.ws92{word-spacing:6.758432pt;}
.ws77{word-spacing:6.774397pt;}
.wsce{word-spacing:6.822291pt;}
.wscf{word-spacing:6.832934pt;}
.wsc4{word-spacing:6.864864pt;}
.wsbb{word-spacing:6.875507pt;}
.wsfa{word-spacing:6.891472pt;}
.wsde{word-spacing:6.907437pt;}
.ws1d{word-spacing:6.981939pt;}
.wsb4{word-spacing:7.024512pt;}
.wsb5{word-spacing:7.041541pt;}
.ws33{word-spacing:7.152230pt;}
.wsdb{word-spacing:7.210768pt;}
.wse6{word-spacing:7.242698pt;}
.ws44{word-spacing:7.263984pt;}
.ws45{word-spacing:7.269306pt;}
.ws126{word-spacing:7.356580pt;}
.wsfc{word-spacing:7.359773pt;}
.ws36{word-spacing:7.407667pt;}
.ws84{word-spacing:7.434275pt;}
.wse{word-spacing:7.769536pt;}
.ws76{word-spacing:7.828074pt;}
.ws43{word-spacing:7.907898pt;}
.wsee{word-spacing:7.918541pt;}
.ws85{word-spacing:8.014330pt;}
.ws88{word-spacing:8.019651pt;}
.ws89{word-spacing:8.024973pt;}
.wsf5{word-spacing:8.104797pt;}
.wsf8{word-spacing:8.221872pt;}
.ws82{word-spacing:8.285731pt;}
.ws27{word-spacing:8.418771pt;}
.ws12a{word-spacing:8.463473pt;}
.ws12b{word-spacing:8.471987pt;}
.ws21{word-spacing:8.525203pt;}
.wsbf{word-spacing:8.565091pt;}
.wsb7{word-spacing:8.569905pt;}
.wsf1{word-spacing:8.573098pt;}
.ws74{word-spacing:8.642278pt;}
.ws75{word-spacing:8.647600pt;}
.ws53{word-spacing:8.812570pt;}
.wsd8{word-spacing:9.009469pt;}
.ws109{word-spacing:9.280870pt;}
.ws56{word-spacing:9.456483pt;}
.ws57{word-spacing:9.461805pt;}
.ws110{word-spacing:9.506506pt;}
.ws111{word-spacing:9.515021pt;}
.ws8{word-spacing:9.568237pt;}
.wsae{word-spacing:9.642739pt;}
.ws94{word-spacing:9.648061pt;}
.wsad{word-spacing:9.651254pt;}
.ws93{word-spacing:9.658704pt;}
.ws123{word-spacing:9.659768pt;}
.ws124{word-spacing:9.672540pt;}
.ws9b{word-spacing:9.823674pt;}
.ws2a{word-spacing:9.887533pt;}
.wsd6{word-spacing:10.579341pt;}
.ws22{word-spacing:10.611270pt;}
.ws4e{word-spacing:10.659165pt;}
.ws91{word-spacing:10.742158pt;}
.ws8a{word-spacing:10.957174pt;}
.ws9e{word-spacing:11.047642pt;}
.ws40{word-spacing:11.217933pt;}
.ws4c{word-spacing:11.292435pt;}
.wse1{word-spacing:11.335008pt;}
.ws58{word-spacing:11.366938pt;}
.ws35{word-spacing:11.392825pt;}
.wsba{word-spacing:11.489334pt;}
.ws51{word-spacing:11.579802pt;}
.ws73{word-spacing:11.622374pt;}
.ws97{word-spacing:11.696877pt;}
.ws98{word-spacing:11.702198pt;}
.wsfd{word-spacing:11.808630pt;}
.ws71{word-spacing:11.851203pt;}
.ws16{word-spacing:11.899098pt;}
.wsef{word-spacing:11.906425pt;}
.ws118{word-spacing:12.009787pt;}
.ws11b{word-spacing:12.022559pt;}
.wsa6{word-spacing:12.031073pt;}
.wsf9{word-spacing:12.154534pt;}
.wscb{word-spacing:12.213072pt;}
.ws25{word-spacing:12.276931pt;}
.ws26{word-spacing:12.405625pt;}
.ws4b{word-spacing:12.457866pt;}
.ws14{word-spacing:12.468509pt;}
.ws2b{word-spacing:12.952774pt;}
.ws3c{word-spacing:13.032598pt;}
.ws11d{word-spacing:13.065592pt;}
.wsd3{word-spacing:13.319965pt;}
.wsc8{word-spacing:13.346573pt;}
.ws4d{word-spacing:13.690958pt;}
.wsd1{word-spacing:13.756336pt;}
.ws6d{word-spacing:13.878733pt;}
.ws68{word-spacing:14.129912pt;}
.wsb9{word-spacing:14.163971pt;}
.wsa3{word-spacing:14.373642pt;}
.ws81{word-spacing:14.437501pt;}
.ws46{word-spacing:14.480074pt;}
.ws7d{word-spacing:14.794048pt;}
.ws7b{word-spacing:14.799370pt;}
.ws6b{word-spacing:14.820656pt;}
.ws6c{word-spacing:14.825978pt;}
.wsc5{word-spacing:14.873872pt;}
.wse7{word-spacing:14.889837pt;}
.ws7f{word-spacing:15.134630pt;}
.ws34{word-spacing:15.374102pt;}
.ws13{word-spacing:15.502174pt;}
.ws4f{word-spacing:15.602931pt;}
.ws50{word-spacing:15.618896pt;}
.ws3b{word-spacing:15.751936pt;}
.ws72{word-spacing:15.839500pt;}
.wsff{word-spacing:16.310704pt;}
.wsfe{word-spacing:16.401171pt;}
.ws70{word-spacing:16.566141pt;}
.ws8b{word-spacing:16.656608pt;}
.ws100{word-spacing:17.279235pt;}
.wse4{word-spacing:17.303758pt;}
.ws80{word-spacing:17.412275pt;}
.ws2{word-spacing:17.662390pt;}
.wsbc{word-spacing:18.274374pt;}
.wsa2{word-spacing:18.361891pt;}
.ws41{word-spacing:18.577706pt;}
.ws7c{word-spacing:18.785358pt;}
.wsec{word-spacing:18.822499pt;}
.ws30{word-spacing:19.487699pt;}
.wsda{word-spacing:19.514307pt;}
.wse9{word-spacing:19.998573pt;}
.ws2f{word-spacing:20.440266pt;}
.wsbd{word-spacing:21.310158pt;}
.ws3a{word-spacing:22.872237pt;}
.wsdc{word-spacing:23.021242pt;}
.ws31{word-spacing:23.627904pt;}
.ws54{word-spacing:24.351642pt;}
.ws1{word-spacing:24.734620pt;}
.ws90{word-spacing:25.820403pt;}
.wsdd{word-spacing:27.011766pt;}
.ws18{word-spacing:27.800038pt;}
.wsc9{word-spacing:28.268339pt;}
.wsa1{word-spacing:28.369450pt;}
.wsa0{word-spacing:28.374771pt;}
.ws12{word-spacing:29.311373pt;}
.ws1c{word-spacing:29.556166pt;}
.ws1b{word-spacing:30.625941pt;}
.wsc6{word-spacing:31.115395pt;}
.wsc7{word-spacing:31.126038pt;}
.wsc1{word-spacing:32.610765pt;}
._15{margin-left:-1480.473377pt;}
._18{margin-left:-22.400277pt;}
._17{margin-left:-20.264653pt;}
._11{margin-left:-18.705424pt;}
._b{margin-left:-17.768822pt;}
._20{margin-left:-14.626453pt;}
._21{margin-left:-13.710003pt;}
._1f{margin-left:-12.691519pt;}
._1{margin-left:-6.884064pt;}
._1d{margin-left:-5.896333pt;}
._8{margin-left:-4.497967pt;}
._0{margin-left:-2.962917pt;}
._2{margin-left:-1.772359pt;}
._9{width:1.016426pt;}
._13{width:3.175931pt;}
._c{width:4.773475pt;}
._4{width:5.832474pt;}
._22{width:10.911409pt;}
._5{width:12.229037pt;}
._1c{width:14.692938pt;}
._d{width:15.709363pt;}
._3{width:16.943974pt;}
._7{width:18.173264pt;}
._19{width:19.136474pt;}
._10{width:20.179507pt;}
._6{width:21.286400pt;}
._24{width:22.290667pt;}
._e{width:23.329894pt;}
._1e{width:24.302649pt;}
._23{width:25.445115pt;}
._12{width:26.481496pt;}
._16{width:28.135299pt;}
._f{width:30.929139pt;}
._a{width:33.744266pt;}
._1a{width:97.482897pt;}
._14{width:1239.127873pt;}
._1b{width:1384.595174pt;}
.fs9{font-size:29.268800pt;}
.fs6{font-size:34.590400pt;}
.fs5{font-size:37.251200pt;}
.fsa{font-size:42.572800pt;}
.fs2{font-size:42.666667pt;}
.fse{font-size:43.323063pt;}
.fsf{font-size:44.183848pt;}
.fs7{font-size:47.894400pt;}
.fs4{font-size:53.216000pt;}
.fs1{font-size:53.333333pt;}
.fsb{font-size:54.154521pt;}
.fs8{font-size:55.227706pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.501867pt;}
.fsc{font-size:151.120533pt;}
.fsd{font-size:162.837333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:13.333333pt;}
.yb3{bottom:21.119867pt;}
.y6e{bottom:21.120000pt;}
.yfa{bottom:22.494800pt;}
.y143{bottom:27.439467pt;}
.y1b{bottom:29.333333pt;}
.yb2{bottom:33.758667pt;}
.yba{bottom:33.758800pt;}
.y142{bottom:35.089067pt;}
.yf9{bottom:37.794400pt;}
.yb1{bottom:46.397467pt;}
.y6c{bottom:51.719067pt;}
.y141{bottom:52.716933pt;}
.yf8{bottom:53.094000pt;}
.y6a{bottom:56.708000pt;}
.yb9{bottom:59.036267pt;}
.y6b{bottom:64.357867pt;}
.y140{bottom:65.355600pt;}
.yf7{bottom:68.393600pt;}
.y69{bottom:69.346800pt;}
.yb7{bottom:71.675067pt;}
.yb8{bottom:72.204034pt;}
.y13f{bottom:73.005333pt;}
.yf6{bottom:83.693200pt;}
.y13e{bottom:90.633200pt;}
.yf5{bottom:98.992800pt;}
.y55{bottom:100.374661pt;}
.y13d{bottom:103.271867pt;}
.yf4{bottom:114.292400pt;}
.y54{bottom:115.805971pt;}
.y13c{bottom:115.910533pt;}
.y13b{bottom:123.560267pt;}
.yf3{bottom:129.592000pt;}
.y53{bottom:131.237280pt;}
.y13a{bottom:141.188133pt;}
.yf2{bottom:144.891600pt;}
.y52{bottom:146.668590pt;}
.y139{bottom:153.826800pt;}
.yf1{bottom:160.191200pt;}
.y138{bottom:161.476533pt;}
.y51{bottom:162.099899pt;}
.yf0{bottom:175.490800pt;}
.y50{bottom:177.531209pt;}
.y137{bottom:179.104267pt;}
.yef{bottom:190.790400pt;}
.y136{bottom:191.743067pt;}
.y4f{bottom:192.962519pt;}
.y135{bottom:199.392667pt;}
.yee{bottom:206.090000pt;}
.y4e{bottom:208.393828pt;}
.y134{bottom:217.020533pt;}
.yed{bottom:221.389600pt;}
.y4d{bottom:223.825138pt;}
.y133{bottom:224.670267pt;}
.yec{bottom:236.688400pt;}
.y4c{bottom:239.256447pt;}
.y132{bottom:242.298000pt;}
.yeb{bottom:251.988000pt;}
.y4b{bottom:254.687757pt;}
.y131{bottom:254.936800pt;}
.y91{bottom:257.543835pt;}
.y130{bottom:262.586267pt;}
.yea{bottom:267.287600pt;}
.y4a{bottom:270.120605pt;}
.y8f{bottom:273.613735pt;}
.y90{bottom:273.615067pt;}
.y12f{bottom:275.225067pt;}
.ye9{bottom:282.587200pt;}
.y49{bottom:285.551914pt;}
.y8d{bottom:289.684967pt;}
.y8e{bottom:290.350167pt;}
.y12e{bottom:292.852933pt;}
.ye8{bottom:297.886800pt;}
.y48{bottom:300.983224pt;}
.y8c{bottom:305.075035pt;}
.y12d{bottom:305.491733pt;}
.y12c{bottom:313.141333pt;}
.ye7{bottom:313.186400pt;}
.y46{bottom:316.414184pt;}
.y8b{bottom:320.374635pt;}
.y47{bottom:321.308933pt;}
.ye6{bottom:328.486000pt;}
.y12b{bottom:330.769200pt;}
.y45{bottom:331.845493pt;}
.y8a{bottom:335.674235pt;}
.y12a{bottom:338.418933pt;}
.ye5{bottom:343.785600pt;}
.y44{bottom:347.281633pt;}
.y89{bottom:350.973835pt;}
.y129{bottom:356.046667pt;}
.ye4{bottom:359.085200pt;}
.y43{bottom:362.712942pt;}
.y88{bottom:367.044368pt;}
.y128{bottom:368.685333pt;}
.ye3{bottom:374.384800pt;}
.y127{bottom:376.335067pt;}
.y42{bottom:378.144252pt;}
.y87{bottom:383.115067pt;}
.ye2{bottom:389.684267pt;}
.y41{bottom:393.575562pt;}
.y126{bottom:393.962800pt;}
.yad{bottom:398.097467pt;}
.y86{bottom:398.414667pt;}
.y125{bottom:401.612533pt;}
.ye1{bottom:404.983867pt;}
.y40{bottom:409.006871pt;}
.yac{bottom:413.397067pt;}
.y85{bottom:413.714267pt;}
.y124{bottom:419.240267pt;}
.ye0{bottom:420.283467pt;}
.y3f{bottom:424.438181pt;}
.y123{bottom:426.890000pt;}
.yab{bottom:428.696667pt;}
.y84{bottom:429.013867pt;}
.y68{bottom:431.138516pt;}
.ydf{bottom:435.582800pt;}
.y3e{bottom:439.869490pt;}
.yaa{bottom:443.995867pt;}
.y83{bottom:444.313467pt;}
.y122{bottom:444.517733pt;}
.y67{bottom:447.099325pt;}
.y1a{bottom:448.000000pt;}
.yde{bottom:450.882400pt;}
.y121{bottom:452.167467pt;}
.y3d{bottom:455.301781pt;}
.ya9{bottom:459.295467pt;}
.y82{bottom:459.613067pt;}
.y66{bottom:463.060133pt;}
.ydd{bottom:466.181867pt;}
.y19{bottom:469.333333pt;}
.y120{bottom:469.795333pt;}
.y3c{bottom:470.733090pt;}
.ya8{bottom:474.595067pt;}
.y81{bottom:474.912667pt;}
.y65{bottom:479.021067pt;}
.y64{bottom:479.021947pt;}
.ydc{bottom:481.481467pt;}
.y11f{bottom:482.434000pt;}
.y3b{bottom:486.165938pt;}
.ya7{bottom:489.894667pt;}
.y80{bottom:490.212133pt;}
.y18{bottom:490.666667pt;}
.y63{bottom:494.982756pt;}
.y11e{bottom:495.072800pt;}
.ydb{bottom:496.782628pt;}
.y3a{bottom:501.597247pt;}
.y11d{bottom:502.722533pt;}
.ya6{bottom:505.194267pt;}
.y7f{bottom:505.511733pt;}
.y17{bottom:506.666667pt;}
.y62{bottom:510.943565pt;}
.yda{bottom:512.082228pt;}
.y39{bottom:517.028557pt;}
.y11c{bottom:520.350267pt;}
.ya5{bottom:520.493867pt;}
.y7e{bottom:520.811333pt;}
.y16{bottom:522.666667pt;}
.y61{bottom:526.904374pt;}
.yd9{bottom:527.381828pt;}
.y11b{bottom:528.000000pt;}
.y38{bottom:532.459867pt;}
.ya3{bottom:535.792934pt;}
.y7d{bottom:536.110400pt;}
.y15{bottom:538.666667pt;}
.ya4{bottom:541.508133pt;}
.yd8{bottom:542.681428pt;}
.y60{bottom:542.865182pt;}
.y11a{bottom:545.627733pt;}
.y37{bottom:547.891591pt;}
.ya2{bottom:551.244199pt;}
.y7c{bottom:551.410000pt;}
.y119{bottom:553.277467pt;}
.y14{bottom:554.666667pt;}
.yd7{bottom:557.981028pt;}
.y5f{bottom:558.825991pt;}
.y36{bottom:563.322901pt;}
.y7b{bottom:566.709600pt;}
.y13{bottom:570.666667pt;}
.y118{bottom:570.905200pt;}
.yd6{bottom:573.280628pt;}
.y5e{bottom:574.791310pt;}
.y9d{bottom:574.926533pt;}
.y117{bottom:578.554933pt;}
.y35{bottom:578.887250pt;}
.y7a{bottom:582.009200pt;}
.ya0{bottom:583.079067pt;}
.y9b{bottom:583.404133pt;}
.y99{bottom:584.594667pt;}
.y9a{bottom:585.259867pt;}
.y12{bottom:586.666667pt;}
.yd5{bottom:588.580228pt;}
.y9f{bottom:590.505875pt;}
.y5d{bottom:590.752119pt;}
.y9c{bottom:594.304267pt;}
.ya1{bottom:594.436533pt;}
.y34{bottom:594.450385pt;}
.y116{bottom:596.182667pt;}
.y79{bottom:597.308800pt;}
.y9e{bottom:599.595600pt;}
.y11{bottom:602.666667pt;}
.yd4{bottom:603.879828pt;}
.y5c{bottom:606.845967pt;}
.y115{bottom:608.821467pt;}
.y33{bottom:610.014735pt;}
.y78{bottom:612.608400pt;}
.y114{bottom:616.471067pt;}
.y10{bottom:618.666667pt;}
.yd3{bottom:619.311138pt;}
.y5b{bottom:622.939816pt;}
.y32{bottom:625.579085pt;}
.y77{bottom:627.908000pt;}
.y113{bottom:629.109867pt;}
.y98{bottom:630.367701pt;}
.yf{bottom:634.666667pt;}
.yd2{bottom:634.742447pt;}
.y5a{bottom:639.033665pt;}
.y31{bottom:641.143434pt;}
.y76{bottom:643.206933pt;}
.y97{bottom:645.667301pt;}
.y112{bottom:646.737600pt;}
.yd1{bottom:650.173757pt;}
.ye{bottom:650.666667pt;}
.y59{bottom:655.127514pt;}
.y30{bottom:656.707784pt;}
.y75{bottom:658.506533pt;}
.y111{bottom:659.376400pt;}
.y96{bottom:660.966901pt;}
.yd0{bottom:665.605067pt;}
.yd{bottom:666.666667pt;}
.y110{bottom:667.026133pt;}
.y58{bottom:671.221363pt;}
.y2f{bottom:672.270602pt;}
.y74{bottom:673.806133pt;}
.y94{bottom:677.038000pt;}
.y95{bottom:677.038133pt;}
.ycf{bottom:681.038330pt;}
.yc{bottom:682.666667pt;}
.y10f{bottom:684.653867pt;}
.y57{bottom:687.315211pt;}
.y2e{bottom:687.834952pt;}
.y73{bottom:689.105733pt;}
.y93{bottom:692.338511pt;}
.yce{bottom:696.469639pt;}
.y10e{bottom:697.292667pt;}
.yb{bottom:698.666667pt;}
.y2d{bottom:703.399301pt;}
.y56{bottom:703.409060pt;}
.y72{bottom:704.405333pt;}
.y10d{bottom:704.942267pt;}
.y92{bottom:707.638111pt;}
.ycd{bottom:711.900949pt;}
.ya{bottom:714.666667pt;}
.y71{bottom:719.704933pt;}
.y10c{bottom:722.570133pt;}
.ycc{bottom:727.332258pt;}
.y10b{bottom:730.219733pt;}
.y2c{bottom:732.668101pt;}
.y70{bottom:735.004533pt;}
.y9{bottom:736.000000pt;}
.ycb{bottom:743.536181pt;}
.yb6{bottom:745.534400pt;}
.y10a{bottom:747.847600pt;}
.y2b{bottom:748.632901pt;}
.y6f{bottom:750.304133pt;}
.y109{bottom:755.497333pt;}
.y8{bottom:757.333333pt;}
.yb5{bottom:758.173200pt;}
.yca{bottom:758.967490pt;}
.y2a{bottom:764.597701pt;}
.yb4{bottom:770.812000pt;}
.y108{bottom:773.125067pt;}
.yc9{bottom:774.398800pt;}
.y7{bottom:778.666667pt;}
.y28{bottom:780.668101pt;}
.y29{bottom:780.668933pt;}
.yb0{bottom:780.733200pt;}
.y107{bottom:780.774800pt;}
.yc8{bottom:789.833476pt;}
.yaf{bottom:793.372000pt;}
.y27{bottom:796.632901pt;}
.y106{bottom:798.402533pt;}
.y6{bottom:800.000000pt;}
.yc7{bottom:805.264785pt;}
.yae{bottom:806.010800pt;}
.y26{bottom:812.597701pt;}
.yc6{bottom:820.696095pt;}
.y5{bottom:821.333333pt;}
.y105{bottom:822.019966pt;}
.y25{bottom:828.668800pt;}
.yc5{bottom:836.127405pt;}
.y104{bottom:837.319566pt;}
.y4{bottom:842.666667pt;}
.yc4{bottom:851.558714pt;}
.y24{bottom:852.616000pt;}
.y103{bottom:852.619166pt;}
.y3{bottom:864.000000pt;}
.yc3{bottom:866.990024pt;}
.y102{bottom:867.918766pt;}
.y23{bottom:875.232800pt;}
.yc2{bottom:882.422314pt;}
.y101{bottom:883.218366pt;}
.y2{bottom:885.333333pt;}
.y22{bottom:894.190933pt;}
.yc1{bottom:897.853624pt;}
.y100{bottom:898.517966pt;}
.y1{bottom:906.666667pt;}
.y21{bottom:907.494800pt;}
.yc0{bottom:913.286047pt;}
.yff{bottom:913.817566pt;}
.y20{bottom:920.798667pt;}
.y1f{bottom:928.448533pt;}
.ybf{bottom:928.717357pt;}
.yfe{bottom:929.117166pt;}
.y1e{bottom:943.082800pt;}
.ybe{bottom:944.149647pt;}
.yfd{bottom:944.416766pt;}
.ybd{bottom:959.580957pt;}
.yfc{bottom:959.716366pt;}
.y1d{bottom:968.360267pt;}
.ybc{bottom:975.012267pt;}
.yfb{bottom:975.015966pt;}
.y6d{bottom:1008.272133pt;}
.ybb{bottom:1008.276800pt;}
.h33{height:20.136934pt;}
.h17{height:22.215019pt;}
.h8{height:23.798195pt;}
.h26{height:25.442570pt;}
.h14{height:25.628826pt;}
.h2b{height:26.773653pt;}
.h2c{height:27.305618pt;}
.h29{height:29.290086pt;}
.h2a{height:30.196887pt;}
.h18{height:32.312755pt;}
.h9{height:32.711875pt;}
.h23{height:32.887488pt;}
.h1a{height:32.993920pt;}
.h20{height:33.467494pt;}
.hd{height:34.130722pt;}
.h24{height:36.346528pt;}
.h19{height:36.351850pt;}
.hc{height:36.612608pt;}
.h1f{height:37.730144pt;}
.h2{height:40.000000pt;}
.ha{height:40.390944pt;}
.hb{height:40.391477pt;}
.h5{height:44.500000pt;}
.h1d{height:45.209092pt;}
.h1e{height:45.209754pt;}
.h1{height:48.000000pt;}
.h15{height:50.888119pt;}
.h13{height:50.892694pt;}
.h2e{height:50.894389pt;}
.h11{height:50.900007pt;}
.h30{height:50.900446pt;}
.h2f{height:50.900574pt;}
.h12{height:50.902236pt;}
.h21{height:50.902516pt;}
.h2d{height:50.902769pt;}
.h16{height:50.906692pt;}
.h10{height:50.906727pt;}
.h31{height:50.907226pt;}
.h28{height:50.907759pt;}
.h1c{height:50.908292pt;}
.h1b{height:50.908826pt;}
.h32{height:50.909359pt;}
.h22{height:50.909487pt;}
.hf{height:50.911018pt;}
.he{height:50.912284pt;}
.h7{height:54.147013pt;}
.h6{height:54.907876pt;}
.h3{height:66.750000pt;}
.h25{height:114.700485pt;}
.h27{height:123.593536pt;}
.h4{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:34.493333pt;}
.x4{left:68.084400pt;}
.x1{left:74.666667pt;}
.x8{left:90.699671pt;}
.x5{left:115.978533pt;}
.x10{left:215.807067pt;}
.x11{left:224.199867pt;}
.x6{left:226.728533pt;}
.x9{left:231.683467pt;}
.x7{left:235.866267pt;}
.xe{left:281.593600pt;}
.x3{left:293.546667pt;}
.xf{left:358.236811pt;}
.xa{left:419.311882pt;}
.x27{left:420.241867pt;}
.x24{left:423.632133pt;}
.x25{left:427.290667pt;}
.x26{left:429.418242pt;}
.xb{left:441.928682pt;}
.x14{left:443.035817pt;}
.xc{left:451.459867pt;}
.xd{left:460.597600pt;}
.x15{left:470.316000pt;}
.x12{left:471.235867pt;}
.x16{left:478.820667pt;}
.x13{left:480.373600pt;}
.x17{left:489.884533pt;}
.x18{left:497.198533pt;}
.x19{left:502.040800pt;}
.x1a{left:511.910267pt;}
.x1b{left:544.501733pt;}
.x1c{left:553.575200pt;}
.x1d{left:556.792400pt;}
.x1e{left:575.050533pt;}
.x1f{left:583.723467pt;}
.x22{left:639.441733pt;}
.x23{left:646.751733pt;}
.x21{left:663.365357pt;}
.x20{left:736.265600pt;}
}




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