
    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_2b55f419856ecc4507f6b77c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_ccb34bb4f1fb1f69920c6a32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cd9a0a5f134f4cf352dc5afc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d7a8de932e46180a36ad99db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706000;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_d118ce11054760bb519f9104.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_baba3163ffdf3291309951b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cea33d37252ef17e523265bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682000;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_6067d3400e91e19be86d8212.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8cbe139ebf8734bb44f9dbbf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_05c25285aa12809c7a1866ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_64e45043b547e71bbb973d93.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.920000;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_aebc971466be1ef49a3de1f2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ee5729a4d1c4f393fe5d04f4.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_66b587611b69a1a64d4fbe5d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7160c69511bf17cf64025fd5.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2c64c82ad225d2e5c9777718.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_faf9652071185fb74c1e863c.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1615b6bab719568647a2b9ed.woff2')format("woff");}.ff12{font-family:ff12;line-height:2.999000;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:ff13;src:url('chunks/assets/font_78cfc964fae3f88a7c35f9fc.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.725000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_cd470cd3806f7988e2082b08.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.919000;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:ff15;src:url('chunks/assets/font_f60cf0b360d87eca4163c9a5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_469657840dc5220b92d1c276.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.686000;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:ff17;src:url('chunks/assets/font_2cb3296888e1cda0f276fab1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.918000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-101.142000px;}
.v2{vertical-align:-12.906000px;}
.v1{vertical-align:-9.816000px;}
.v12{vertical-align:-7.890000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:9.216000px;}
.v3{vertical-align:10.758000px;}
.vb{vertical-align:19.980000px;}
.vc{vertical-align:34.002000px;}
.v4{vertical-align:49.200000px;}
.v10{vertical-align:62.520000px;}
.v5{vertical-align:68.142000px;}
.v8{vertical-align:73.854000px;}
.v11{vertical-align:79.620000px;}
.v9{vertical-align:84.618000px;}
.v14{vertical-align:88.302000px;}
.ve{vertical-align:101.142000px;}
.v13{vertical-align:104.358000px;}
.va{vertical-align:118.620000px;}
.vf{vertical-align:122.658000px;}
.v6{vertical-align:185.760000px;}
.ls9{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.001114px;}
.ls1b{letter-spacing:0.001473px;}
.ls38{letter-spacing:0.002127px;}
.ls30{letter-spacing:0.002400px;}
.ls1{letter-spacing:0.002706px;}
.ls15{letter-spacing:0.002759px;}
.ls36{letter-spacing:0.003056px;}
.ls3{letter-spacing:0.003239px;}
.lsa{letter-spacing:0.003471px;}
.ls1c{letter-spacing:0.003744px;}
.ls1d{letter-spacing:0.003848px;}
.ls1a{letter-spacing:0.004310px;}
.ls37{letter-spacing:0.004328px;}
.ls2b{letter-spacing:0.004664px;}
.ls3f{letter-spacing:0.457809px;}
.ls27{letter-spacing:1.946534px;}
.ls29{letter-spacing:1.952534px;}
.ls12{letter-spacing:2.569240px;}
.ls20{letter-spacing:2.575240px;}
.ls35{letter-spacing:2.674328px;}
.ls3b{letter-spacing:2.984915px;}
.ls0{letter-spacing:3.771239px;}
.ls40{letter-spacing:3.972993px;}
.ls13{letter-spacing:4.173471px;}
.lsd{letter-spacing:4.179471px;}
.ls2c{letter-spacing:4.265644px;}
.ls28{letter-spacing:5.542477px;}
.ls34{letter-spacing:7.172127px;}
.ls2f{letter-spacing:7.174404px;}
.ls11{letter-spacing:7.487566px;}
.ls19{letter-spacing:7.493566px;}
.ls31{letter-spacing:11.956664px;}
.ls5{letter-spacing:14.543412px;}
.ls33{letter-spacing:14.942915px;}
.ls2{letter-spacing:15.464706px;}
.ls18{letter-spacing:15.935518px;}
.ls26{letter-spacing:15.937473px;}
.ls25{letter-spacing:15.943114px;}
.ls4{letter-spacing:18.179412px;}
.ls4c{letter-spacing:18.773518px;}
.ls17{letter-spacing:19.919518px;}
.ls22{letter-spacing:19.921473px;}
.lse{letter-spacing:19.922759px;}
.lsf{letter-spacing:19.927473px;}
.ls2d{letter-spacing:20.201644px;}
.lsb{letter-spacing:21.631139px;}
.ls41{letter-spacing:22.190759px;}
.ls16{letter-spacing:22.238759px;}
.ls2e{letter-spacing:23.113473px;}
.ls23{letter-spacing:23.402287px;}
.ls1e{letter-spacing:23.402759px;}
.ls3e{letter-spacing:23.408287px;}
.ls14{letter-spacing:23.408759px;}
.ls48{letter-spacing:24.080759px;}
.ls10{letter-spacing:25.907518px;}
.ls44{letter-spacing:25.975240px;}
.ls4b{letter-spacing:27.005518px;}
.ls49{letter-spacing:28.700287px;}
.ls7{letter-spacing:29.726156px;}
.ls3d{letter-spacing:30.271473px;}
.ls3c{letter-spacing:30.272759px;}
.ls43{letter-spacing:30.893566px;}
.ls42{letter-spacing:30.899566px;}
.ls46{letter-spacing:31.214287px;}
.ls47{letter-spacing:32.558287px;}
.ls21{letter-spacing:34.423240px;}
.ls6{letter-spacing:34.515229px;}
.ls3a{letter-spacing:35.111578px;}
.lsc{letter-spacing:35.117578px;}
.ls8{letter-spacing:35.865600px;}
.ls45{letter-spacing:36.116915px;}
.ls4a{letter-spacing:39.536287px;}
.ls1f{letter-spacing:40.985566px;}
.ls4d{letter-spacing:45.104287px;}
.ls2a{letter-spacing:51.167644px;}
.ls39{letter-spacing:70.219114px;}
.ls32{letter-spacing:489.259114px;}
.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;}
}
.ws84{word-spacing:-71.731200px;}
.ws23{word-spacing:-56.990438px;}
.ws86{word-spacing:-56.789591px;}
.ws21{word-spacing:-55.726250px;}
.ws33{word-spacing:-53.619072px;}
.ws25{word-spacing:-52.543104px;}
.ws2f{word-spacing:-46.948070px;}
.ws49{word-spacing:-45.664082px;}
.ws32{word-spacing:-45.226522px;}
.ws5{word-spacing:-42.637126px;}
.ws6f{word-spacing:-40.341627px;}
.ws31{word-spacing:-40.277069px;}
.ws30{word-spacing:-39.631488px;}
.ws2d{word-spacing:-39.416294px;}
.ws2c{word-spacing:-37.192627px;}
.ws2e{word-spacing:-36.044928px;}
.wsf7{word-spacing:-35.858427px;}
.ws71{word-spacing:-35.112422px;}
.ws24{word-spacing:-35.040691px;}
.ws81{word-spacing:-33.756703px;}
.ws4d{word-spacing:-33.684972px;}
.wsd{word-spacing:-31.771663px;}
.ws9b{word-spacing:-30.026680px;}
.ws88{word-spacing:-25.722808px;}
.wsc3{word-spacing:-24.118775px;}
.ws69{word-spacing:-23.126490px;}
.ws64{word-spacing:-22.207094px;}
.wsaf{word-spacing:-22.050171px;}
.ws85{word-spacing:-21.777592px;}
.wsb7{word-spacing:-21.332859px;}
.ws93{word-spacing:-21.117665px;}
.ws9{word-spacing:-20.975024px;}
.ws9e{word-spacing:-20.185160px;}
.ws54{word-spacing:-19.813094px;}
.wsbd{word-spacing:-19.546752px;}
.ws51{word-spacing:-19.510886px;}
.ws79{word-spacing:-19.475021px;}
.wsd7{word-spacing:-19.369094px;}
.wsd2{word-spacing:-19.252654px;}
.wsb0{word-spacing:-19.188096px;}
.ws65{word-spacing:-18.685978px;}
.ws5e{word-spacing:-18.644278px;}
.wsb8{word-spacing:-18.614246px;}
.wsce{word-spacing:-18.540986px;}
.ws94{word-spacing:-18.399053px;}
.wsc6{word-spacing:-18.248417px;}
.wsea{word-spacing:-17.818030px;}
.wsf3{word-spacing:-17.681741px;}
.ws9f{word-spacing:-17.610010px;}
.ws4{word-spacing:-17.096742px;}
.ws5f{word-spacing:-16.892698px;}
.wsd1{word-spacing:-16.820966px;}
.wsd4{word-spacing:-16.749235px;}
.wsf4{word-spacing:-16.275809px;}
.wsc7{word-spacing:-15.888461px;}
.wscc{word-spacing:-15.881288px;}
.ws7{word-spacing:-15.853104px;}
.ws57{word-spacing:-15.829597px;}
.ws78{word-spacing:-15.743520px;}
.wsb4{word-spacing:-15.594363px;}
.wseb{word-spacing:-15.529805px;}
.wse5{word-spacing:-15.522632px;}
.wsd8{word-spacing:-15.497065px;}
.ws43{word-spacing:-15.450900px;}
.ws7e{word-spacing:-15.314611px;}
.ws5b{word-spacing:-15.027686px;}
.ws3c{word-spacing:-14.955955px;}
.ws8f{word-spacing:-14.805320px;}
.ws11{word-spacing:-14.674921px;}
.ws5d{word-spacing:-14.166912px;}
.ws7b{word-spacing:-14.095181px;}
.wse6{word-spacing:-14.088008px;}
.wsaa{word-spacing:-13.944545px;}
.wscd{word-spacing:-13.808256px;}
.ws5a{word-spacing:-13.664794px;}
.ws3b{word-spacing:-13.593062px;}
.wsb5{word-spacing:-13.532072px;}
.wsb6{word-spacing:-13.521331px;}
.wsa3{word-spacing:-13.514158px;}
.ws6d{word-spacing:-13.459229px;}
.ws44{word-spacing:-13.449600px;}
.ws27{word-spacing:-13.442427px;}
.ws98{word-spacing:-13.440578px;}
.wsc4{word-spacing:-13.370696px;}
.ws40{word-spacing:-13.162675px;}
.ws80{word-spacing:-13.139069px;}
.ws14{word-spacing:-13.104011px;}
.wsd0{word-spacing:-13.090944px;}
.ws7f{word-spacing:-12.947482px;}
.ws61{word-spacing:-12.875750px;}
.wsee{word-spacing:-12.732288px;}
.ws99{word-spacing:-12.653384px;}
.ws60{word-spacing:-12.637048px;}
.wsed{word-spacing:-12.517094px;}
.wse{word-spacing:-12.514920px;}
.wsc{word-spacing:-12.449465px;}
.ws1d{word-spacing:-12.384010px;}
.wse7{word-spacing:-12.301901px;}
.wsab{word-spacing:-12.158438px;}
.ws106{word-spacing:-12.014976px;}
.ws7c{word-spacing:-11.943245px;}
.ws12{word-spacing:-11.860374px;}
.ws5c{word-spacing:-11.799782px;}
.wsa7{word-spacing:-11.732861px;}
.ws29{word-spacing:-11.728051px;}
.ws9c{word-spacing:-11.720878px;}
.ws90{word-spacing:-11.714544px;}
.wsa2{word-spacing:-11.708913px;}
.ws6c{word-spacing:-11.708365px;}
.ws82{word-spacing:-11.703698px;}
.ws87{word-spacing:-11.702938px;}
.wsa4{word-spacing:-11.702390px;}
.ws50{word-spacing:-11.701286px;}
.wsba{word-spacing:-11.701058px;}
.wsa6{word-spacing:-11.699848px;}
.wsa1{word-spacing:-11.699437px;}
.ws97{word-spacing:-11.699000px;}
.wsac{word-spacing:-11.698214px;}
.ws95{word-spacing:-11.697698px;}
.ws10{word-spacing:-11.664010px;}
.ws3a{word-spacing:-11.656320px;}
.wsc5{word-spacing:-11.584589px;}
.wsbe{word-spacing:-11.577416px;}
.ws9a{word-spacing:-11.010739px;}
.ws2{word-spacing:-10.878555px;}
.ws15{word-spacing:-10.813100px;}
.wsf8{word-spacing:-10.795546px;}
.wsad{word-spacing:-10.788372px;}
.wsef{word-spacing:-10.752507px;}
.ws91{word-spacing:-10.716641px;}
.ws3e{word-spacing:-10.652083px;}
.ws1e{word-spacing:-10.616736px;}
.wsf9{word-spacing:-10.436890px;}
.ws73{word-spacing:-10.357985px;}
.ws66{word-spacing:-10.293427px;}
.ws9d{word-spacing:-10.221696px;}
.ws20{word-spacing:-10.158554px;}
.wsc0{word-spacing:-10.078234px;}
.wsbf{word-spacing:-10.016508px;}
.ws39{word-spacing:-9.934771px;}
.wsb3{word-spacing:-9.927598px;}
.ws8a{word-spacing:-9.855867px;}
.wscf{word-spacing:-9.576115px;}
.wsae{word-spacing:-9.432653px;}
.ws92{word-spacing:-9.360922px;}
.ws41{word-spacing:-9.217459px;}
.ws74{word-spacing:-9.002266px;}
.ws8b{word-spacing:-8.643610px;}
.wsd5{word-spacing:-8.636436px;}
.ws100{word-spacing:-8.571878px;}
.ws4c{word-spacing:-8.356685px;}
.wsfa{word-spacing:-8.313646px;}
.wsf1{word-spacing:-8.284954px;}
.wsbb{word-spacing:-8.277780px;}
.ws52{word-spacing:-8.213222px;}
.wse0{word-spacing:-8.010578px;}
.wsec{word-spacing:-7.926298px;}
.ws101{word-spacing:-7.883259px;}
.ws13{word-spacing:-7.736734px;}
.ws75{word-spacing:-7.703931px;}
.ws105{word-spacing:-7.639373px;}
.wsf2{word-spacing:-7.596334px;}
.ws6a{word-spacing:-7.585897px;}
.ws6b{word-spacing:-7.559368px;}
.wsd9{word-spacing:-7.495910px;}
.wsdc{word-spacing:-7.273544px;}
.ws19{word-spacing:-7.213097px;}
.wsbc{word-spacing:-7.208986px;}
.wse4{word-spacing:-7.201812px;}
.wse8{word-spacing:-7.058350px;}
.wse1{word-spacing:-6.993792px;}
.ws67{word-spacing:-6.922061px;}
.ws1f{word-spacing:-6.820369px;}
.ws4a{word-spacing:-6.771425px;}
.ws76{word-spacing:-6.635136px;}
.wsda{word-spacing:-6.556232px;}
.ws8d{word-spacing:-6.484500px;}
.wsdd{word-spacing:-6.348211px;}
.ws55{word-spacing:-6.276480px;}
.wse9{word-spacing:-6.133018px;}
.wsf{word-spacing:-6.100369px;}
.ws36{word-spacing:-6.061286px;}
.wsb1{word-spacing:-6.054113px;}
.ws4b{word-spacing:-5.846093px;}
.wsdb{word-spacing:-5.702630px;}
.ws8e{word-spacing:-5.630899px;}
.ws17{word-spacing:-5.576732px;}
.ws38{word-spacing:-5.559168px;}
.ws8c{word-spacing:-5.487437px;}
.wse2{word-spacing:-5.480264px;}
.wsfd{word-spacing:-5.372667px;}
.wsb2{word-spacing:-5.343974px;}
.ws4f{word-spacing:-5.272243px;}
.wsb{word-spacing:-5.184004px;}
.wsa{word-spacing:-5.179257px;}
.ws2b{word-spacing:-5.128781px;}
.ws48{word-spacing:-5.057050px;}
.ws4e{word-spacing:-4.985318px;}
.wsff{word-spacing:-4.841856px;}
.wse3{word-spacing:-4.770125px;}
.ws1a{word-spacing:-4.464004px;}
.ws104{word-spacing:-4.440161px;}
.wsfe{word-spacing:-4.411469px;}
.wsca{word-spacing:-4.045640px;}
.wsa9{word-spacing:-3.909350px;}
.wsa0{word-spacing:-3.905063px;}
.ws107{word-spacing:-3.899766px;}
.wsf0{word-spacing:-3.899443px;}
.wscb{word-spacing:-3.550694px;}
.ws56{word-spacing:-3.478963px;}
.ws58{word-spacing:-3.407232px;}
.ws3{word-spacing:-3.285821px;}
.ws7a{word-spacing:-3.263770px;}
.ws46{word-spacing:-3.256596px;}
.ws7d{word-spacing:-3.120307px;}
.ws47{word-spacing:-2.833382px;}
.ws18{word-spacing:-2.827639px;}
.wsa8{word-spacing:-2.826209px;}
.wsfb{word-spacing:-2.761651px;}
.wsfc{word-spacing:-2.503419px;}
.ws37{word-spacing:-2.474726px;}
.ws1c{word-spacing:-2.173093px;}
.ws16{word-spacing:-2.042184px;}
.ws96{word-spacing:-1.972608px;}
.wsc8{word-spacing:-1.750241px;}
.ws45{word-spacing:-1.613952px;}
.wsc9{word-spacing:-1.470490px;}
.ws102{word-spacing:-1.183565px;}
.ws103{word-spacing:-1.140526px;}
.ws3f{word-spacing:-0.824909px;}
.ws6e{word-spacing:-0.817736px;}
.ws70{word-spacing:-0.753178px;}
.wsf6{word-spacing:-0.638408px;}
.wsf5{word-spacing:-0.609715px;}
.wsc2{word-spacing:-0.322790px;}
.wsc1{word-spacing:-0.315617px;}
.ws3d{word-spacing:-0.251059px;}
.ws6{word-spacing:-0.047821px;}
.ws26{word-spacing:0.000000px;}
.ws42{word-spacing:0.001442px;}
.ws72{word-spacing:0.007442px;}
.wsdf{word-spacing:0.179328px;}
.wsde{word-spacing:0.186501px;}
.ws68{word-spacing:0.390117px;}
.ws83{word-spacing:0.394472px;}
.ws1b{word-spacing:0.706910px;}
.ws28{word-spacing:0.753178px;}
.wsb9{word-spacing:19.477797px;}
.ws8{word-spacing:21.115797px;}
.wsd3{word-spacing:21.319797px;}
.ws63{word-spacing:22.867797px;}
.ws22{word-spacing:24.646840px;}
.ws62{word-spacing:25.177797px;}
.wsa5{word-spacing:26.341797px;}
.ws77{word-spacing:26.347797px;}
.ws1{word-spacing:27.200395px;}
.ws53{word-spacing:28.843797px;}
.wsd6{word-spacing:29.953797px;}
.ws2a{word-spacing:30.769797px;}
.ws59{word-spacing:34.651797px;}
.ws0{word-spacing:43.763175px;}
.ws35{word-spacing:47.351068px;}
.ws34{word-spacing:55.726250px;}
.ws89{word-spacing:75.599426px;}
._28{margin-left:-43.684301px;}
._26{margin-left:-41.419520px;}
._15{margin-left:-39.810816px;}
._13{margin-left:-38.002227px;}
._12{margin-left:-35.865600px;}
._18{margin-left:-33.400935px;}
._16{margin-left:-31.992115px;}
._33{margin-left:-15.143935px;}
._17{margin-left:-12.609382px;}
._3{margin-left:-10.909800px;}
._23{margin-left:-9.811865px;}
._36{margin-left:-8.139916px;}
._4{margin-left:-6.800099px;}
._9{margin-left:-5.432732px;}
._0{margin-left:-3.595275px;}
._5{margin-left:-1.832729px;}
._6{width:1.898183px;}
._1{width:3.471300px;}
._3a{width:5.250709px;}
._3f{width:16.882805px;}
._3d{width:18.067405px;}
._31{width:19.777686px;}
._1b{width:22.854961px;}
._8{width:23.913781px;}
._2b{width:25.610214px;}
._20{width:27.247874px;}
._7{width:28.853641px;}
._2d{width:30.129279px;}
._d{width:31.483663px;}
._b{width:32.727300px;}
._35{width:34.359245px;}
._f{width:36.065485px;}
._a{width:38.160032px;}
._e{width:39.730942px;}
._39{width:41.038961px;}
._3e{width:42.127807px;}
._38{width:43.659079px;}
._41{width:45.627320px;}
._1d{width:47.369883px;}
._24{width:48.705485px;}
._34{width:49.715998px;}
._37{width:51.273466px;}
._c{width:52.882589px;}
._40{width:54.014404px;}
._42{width:56.595917px;}
._2{width:58.516200px;}
._29{width:61.258463px;}
._10{width:63.556417px;}
._14{width:65.849242px;}
._2e{width:67.421429px;}
._21{width:68.861952px;}
._1a{width:71.802931px;}
._3b{width:94.684920px;}
._1f{width:100.706067px;}
._1c{width:102.345014px;}
._3c{width:111.452500px;}
._30{width:709.160244px;}
._27{width:971.894744px;}
._22{width:1136.326848px;}
._2c{width:1214.202737px;}
._2a{width:1260.494445px;}
._25{width:1296.334961px;}
._32{width:1481.623645px;}
._2f{width:1605.272525px;}
._19{width:1758.054331px;}
._1e{width:1905.969715px;}
._11{width:2131.570616px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y28{bottom:61.467000px;}
.y27{bottom:106.299000px;}
.y52{bottom:109.746000px;}
.y148{bottom:111.172500px;}
.y183{bottom:118.368000px;}
.y26{bottom:127.968000px;}
.y51{bottom:131.413500px;}
.y147{bottom:132.841500px;}
.y8f{bottom:135.129000px;}
.yfb{bottom:137.211000px;}
.y182{bottom:140.035500px;}
.y71{bottom:145.960500px;}
.y25{bottom:149.637000px;}
.y50{bottom:153.082500px;}
.y146{bottom:154.510500px;}
.y114{bottom:162.070500px;}
.y12b{bottom:166.095000px;}
.y8e{bottom:166.510500px;}
.y70{bottom:167.629500px;}
.y24{bottom:171.306000px;}
.yfa{bottom:173.823000px;}
.yab{bottom:174.127500px;}
.y4f{bottom:174.751500px;}
.y145{bottom:176.179500px;}
.y181{bottom:176.649000px;}
.yc6{bottom:180.147000px;}
.yc8{bottom:189.000000px;}
.y23{bottom:192.975000px;}
.y113{bottom:195.318000px;}
.yaa{bottom:195.796500px;}
.yc7{bottom:196.306500px;}
.y180{bottom:198.318000px;}
.y162{bottom:198.468000px;}
.yc5{bottom:201.301500px;}
.y12a{bottom:202.707000px;}
.y6f{bottom:204.241500px;}
.y8d{bottom:209.848500px;}
.yf9{bottom:210.436500px;}
.y4e{bottom:213.975000px;}
.y144{bottom:215.601000px;}
.y161{bottom:220.137000px;}
.y129{bottom:224.376000px;}
.ye3{bottom:224.545500px;}
.y6e{bottom:225.910500px;}
.y22{bottom:232.396500px;}
.ya9{bottom:232.408500px;}
.y17f{bottom:234.930000px;}
.y4d{bottom:235.644000px;}
.y112{bottom:239.971500px;}
.y8c{bottom:241.231500px;}
.ye2{bottom:246.214500px;}
.yf8{bottom:247.048500px;}
.y6d{bottom:247.579500px;}
.yc4{bottom:251.214000px;}
.y17e{bottom:256.599000px;}
.y160{bottom:256.749000px;}
.y4c{bottom:257.313000px;}
.y128{bottom:257.623500px;}
.ya8{bottom:269.022000px;}
.y143{bottom:275.496000px;}
.y15f{bottom:278.418000px;}
.y4b{bottom:278.982000px;}
.yf7{bottom:280.296000px;}
.ye1{bottom:282.828000px;}
.y6c{bottom:284.191500px;}
.y8b{bottom:284.568000px;}
.yc3{bottom:287.826000px;}
.y21{bottom:291.288000px;}
.y17d{bottom:293.211000px;}
.y142{bottom:297.163500px;}
.y111{bottom:298.569000px;}
.y127{bottom:302.277000px;}
.ye0{bottom:304.495500px;}
.ya7{bottom:305.634000px;}
.y6b{bottom:305.860500px;}
.y8a{bottom:306.237000px;}
.y20{bottom:311.611500px;}
.y17c{bottom:314.880000px;}
.y15e{bottom:315.030000px;}
.y4a{bottom:318.205500px;}
.y110{bottom:320.238000px;}
.yc2{bottom:324.439500px;}
.y6a{bottom:327.529500px;}
.y1f{bottom:331.935000px;}
.yf6{bottom:332.283000px;}
.y141{bottom:333.777000px;}
.y15d{bottom:336.699000px;}
.ya6{bottom:338.881500px;}
.y89{bottom:339.484500px;}
.y49{bottom:339.874500px;}
.ydf{bottom:341.109000px;}
.y17b{bottom:351.493500px;}
.y1e{bottom:352.260000px;}
.yf5{bottom:353.950500px;}
.y10f{bottom:354.342000px;}
.y140{bottom:355.446000px;}
.yc1{bottom:361.051500px;}
.y48{bottom:361.542000px;}
.y126{bottom:362.170500px;}
.y69{bottom:364.141500px;}
.y1d{bottom:372.583500px;}
.y17a{bottom:373.162500px;}
.y15c{bottom:373.312500px;}
.yde{bottom:374.356500px;}
.y47{bottom:383.211000px;}
.y125{bottom:383.839500px;}
.y88{bottom:384.138000px;}
.y68{bottom:385.810500px;}
.y10e{bottom:388.444500px;}
.yf4{bottom:390.564000px;}
.ya5{bottom:390.868500px;}
.y13f{bottom:392.058000px;}
.yc0{bottom:392.830500px;}
.y1c{bottom:392.907000px;}
.y67{bottom:407.479500px;}
.y179{bottom:409.774500px;}
.y15b{bottom:409.924500px;}
.yf3{bottom:412.233000px;}
.y1b{bottom:413.230500px;}
.y13e{bottom:413.727000px;}
.ybf{bottom:417.262500px;}
.ydd{bottom:419.010000px;}
.y124{bottom:420.451500px;}
.y46{bottom:422.434500px;}
.y10d{bottom:422.548500px;}
.ya4{bottom:427.480500px;}
.y178{bottom:431.443500px;}
.y15a{bottom:431.593500px;}
.y1a{bottom:433.554000px;}
.y123{bottom:442.120500px;}
.y87{bottom:444.031500px;}
.y66{bottom:444.093000px;}
.y45{bottom:444.103500px;}
.yf2{bottom:445.480500px;}
.y13d{bottom:446.974500px;}
.ya3{bottom:449.149500px;}
.ybe{bottom:452.629500px;}
.y19{bottom:453.879000px;}
.y10c{bottom:455.796000px;}
.y159{bottom:464.841000px;}
.y65{bottom:465.760500px;}
.y44{bottom:465.772500px;}
.y177{bottom:468.055500px;}
.y18{bottom:474.202500px;}
.ybd{bottom:474.297000px;}
.y122{bottom:475.368000px;}
.ydc{bottom:478.903500px;}
.y86{bottom:480.645000px;}
.ya2{bottom:485.763000px;}
.y43{bottom:487.441500px;}
.y176{bottom:489.724500px;}
.y17{bottom:494.526000px;}
.yf1{bottom:497.466000px;}
.y13c{bottom:498.961500px;}
.y64{bottom:499.008000px;}
.ydb{bottom:500.572500px;}
.y85{bottom:502.312500px;}
.y10b{bottom:506.485500px;}
.ya1{bottom:507.430500px;}
.ybc{bottom:507.544500px;}
.y16{bottom:514.849500px;}
.y158{bottom:516.828000px;}
.y13b{bottom:520.629000px;}
.y175{bottom:526.338000px;}
.y42{bottom:526.665000px;}
.y121{bottom:527.355000px;}
.y10a{bottom:528.154500px;}
.yf0{bottom:534.079500px;}
.y15{bottom:535.173000px;}
.yda{bottom:537.184500px;}
.y157{bottom:538.495500px;}
.y84{bottom:538.926000px;}
.ya0{bottom:540.678000px;}
.y174{bottom:548.005500px;}
.y41{bottom:548.334000px;}
.y120{bottom:549.024000px;}
.y63{bottom:550.995000px;}
.ybb{bottom:552.198000px;}
.y14{bottom:555.498000px;}
.y13a{bottom:557.242500px;}
.y109{bottom:562.258500px;}
.y40{bottom:570.001500px;}
.yef{bottom:570.691500px;}
.y62{bottom:572.664000px;}
.yd9{bottom:573.798000px;}
.y156{bottom:575.109000px;}
.y83{bottom:575.538000px;}
.y13{bottom:575.821500px;}
.y139{bottom:578.911500px;}
.y173{bottom:584.619000px;}
.y11f{bottom:585.636000px;}
.y3f{bottom:591.670500px;}
.y9f{bottom:592.665000px;}
.y61{bottom:594.333000px;}
.y12{bottom:596.145000px;}
.y108{bottom:596.361000px;}
.yee{bottom:603.939000px;}
.y172{bottom:606.288000px;}
.yd8{bottom:607.045500px;}
.y155{bottom:611.721000px;}
.yba{bottom:612.091500px;}
.y82{bottom:612.151500px;}
.y138{bottom:612.159000px;}
.y3e{bottom:613.339500px;}
.y9e{bottom:614.334000px;}
.y60{bottom:616.000500px;}
.y11{bottom:616.468500px;}
.y11e{bottom:618.883500px;}
.y107{bottom:629.608500px;}
.y154{bottom:633.390000px;}
.yb9{bottom:633.760500px;}
.y10{bottom:636.792000px;}
.y5f{bottom:637.669500px;}
.y171{bottom:642.900000px;}
.yed{bottom:648.592500px;}
.y81{bottom:648.763500px;}
.y9d{bottom:650.946000px;}
.y3d{bottom:652.563000px;}
.yf{bottom:657.115500px;}
.yd7{bottom:659.031000px;}
.y5e{bottom:659.338500px;}
.y137{bottom:664.144500px;}
.y170{bottom:664.569000px;}
.y153{bottom:670.003500px;}
.yb8{bottom:670.374000px;}
.y80{bottom:670.432500px;}
.y11d{bottom:670.870500px;}
.y9c{bottom:672.615000px;}
.y3c{bottom:674.232000px;}
.ye{bottom:677.440500px;}
.y106{bottom:680.299500px;}
.yd6{bottom:680.700000px;}
.y136{bottom:685.813500px;}
.y152{bottom:691.671000px;}
.y11c{bottom:692.538000px;}
.y3b{bottom:695.901000px;}
.y5d{bottom:695.952000px;}
.yd{bottom:697.764000px;}
.y16f{bottom:701.182500px;}
.yb7{bottom:706.986000px;}
.y7f{bottom:707.046000px;}
.yec{bottom:708.486000px;}
.y9b{bottom:709.228500px;}
.y105{bottom:714.402000px;}
.yd5{bottom:717.312000px;}
.y3a{bottom:717.570000px;}
.y5c{bottom:717.619500px;}
.yc{bottom:718.087500px;}
.y135{bottom:722.427000px;}
.y16e{bottom:722.850000px;}
.y151{bottom:724.918500px;}
.y7e{bottom:728.713500px;}
.y11b{bottom:729.151500px;}
.yeb{bottom:730.155000px;}
.y9a{bottom:730.896000px;}
.yb{bottom:738.411000px;}
.yd4{bottom:738.981000px;}
.y39{bottom:739.239000px;}
.yb6{bottom:743.599500px;}
.y104{bottom:748.506000px;}
.y11a{bottom:750.820500px;}
.y99{bottom:752.565000px;}
.y5b{bottom:754.233000px;}
.y134{bottom:755.674500px;}
.ya{bottom:758.734500px;}
.y16d{bottom:759.463500px;}
.y7d{bottom:765.327000px;}
.yea{bottom:766.768500px;}
.y18b{bottom:767.245500px;}
.yd3{bottom:772.228500px;}
.yb5{bottom:776.847000px;}
.y150{bottom:776.905500px;}
.y38{bottom:778.462500px;}
.y16c{bottom:781.132500px;}
.y103{bottom:781.753500px;}
.y119{bottom:784.068000px;}
.y9{bottom:785.860500px;}
.y18a{bottom:788.914500px;}
.y98{bottom:789.178500px;}
.y5a{bottom:790.845000px;}
.y7c{bottom:798.574500px;}
.y37{bottom:800.130000px;}
.y133{bottom:800.326500px;}
.ye9{bottom:803.380500px;}
.y16b{bottom:817.744500px;}
.y36{bottom:821.799000px;}
.yd2{bottom:824.215500px;}
.y189{bottom:825.526500px;}
.y8{bottom:826.507500px;}
.y59{bottom:827.458500px;}
.y118{bottom:828.720000px;}
.yb4{bottom:828.832500px;}
.y102{bottom:832.443000px;}
.y14f{bottom:835.186500px;}
.y97{bottom:835.933500px;}
.ye8{bottom:836.628000px;}
.y16a{bottom:839.413500px;}
.y35{bottom:843.468000px;}
.y7{bottom:846.831000px;}
.y188{bottom:847.195500px;}
.y58{bottom:849.127500px;}
.yb3{bottom:850.501500px;}
.y7b{bottom:850.560000px;}
.y14e{bottom:856.855500px;}
.y132{bottom:860.221500px;}
.yd1{bottom:860.827500px;}
.y34{bottom:865.137000px;}
.y101{bottom:866.547000px;}
.y6{bottom:867.156000px;}
.y57{bottom:870.796500px;}
.y7a{bottom:872.229000px;}
.y96{bottom:875.535000px;}
.y169{bottom:876.025500px;}
.y131{bottom:881.889000px;}
.y187{bottom:883.807500px;}
.yb2{bottom:887.115000px;}
.ye7{bottom:888.615000px;}
.y5{bottom:889.792500px;}
.y56{bottom:892.464000px;}
.y14d{bottom:893.469000px;}
.yd0{bottom:897.441000px;}
.y168{bottom:897.694500px;}
.y100{bottom:900.649500px;}
.y33{bottom:904.360500px;}
.y186{bottom:905.476500px;}
.y79{bottom:908.842500px;}
.y117{bottom:910.282500px;}
.y55{bottom:914.133000px;}
.y95{bottom:915.136500px;}
.y130{bottom:918.502500px;}
.ycf{bottom:919.110000px;}
.yb1{bottom:923.727000px;}
.ye6{bottom:925.227000px;}
.y32{bottom:926.029500px;}
.y78{bottom:930.511500px;}
.yff{bottom:933.897000px;}
.y167{bottom:937.117500px;}
.y12f{bottom:940.171500px;}
.y185{bottom:942.090000px;}
.y116{bottom:946.896000px;}
.y54{bottom:947.380500px;}
.y31{bottom:947.698500px;}
.y94{bottom:948.384000px;}
.y4{bottom:948.642000px;}
.y14c{bottom:951.750000px;}
.ye5{bottom:958.474500px;}
.yb0{bottom:960.340500px;}
.y184{bottom:963.759000px;}
.yce{bottom:965.865000px;}
.y77{bottom:967.123500px;}
.y30{bottom:969.366000px;}
.y12e{bottom:973.419000px;}
.y3{bottom:975.541500px;}
.yfe{bottom:978.550500px;}
.y115{bottom:980.143500px;}
.y76{bottom:988.792500px;}
.y2f{bottom:991.035000px;}
.y53{bottom:992.034000px;}
.y166{bottom:997.011000px;}
.y93{bottom:1000.371000px;}
.ycd{bottom:1002.478500px;}
.yaf{bottom:1007.095500px;}
.y14b{bottom:1010.031000px;}
.y75{bottom:1010.461500px;}
.y165{bottom:1018.680000px;}
.y92{bottom:1022.040000px;}
.y12d{bottom:1025.404500px;}
.yae{bottom:1028.764500px;}
.y2{bottom:1028.773500px;}
.y2e{bottom:1030.258500px;}
.y14a{bottom:1031.700000px;}
.ye4{bottom:1032.130500px;}
.yfd{bottom:1037.148000px;}
.ycc{bottom:1039.090500px;}
.y164{bottom:1040.349000px;}
.y74{bottom:1047.073500px;}
.y2d{bottom:1051.927500px;}
.y91{bottom:1058.652000px;}
.y163{bottom:1062.018000px;}
.y149{bottom:1064.947500px;}
.yad{bottom:1065.378000px;}
.y1{bottom:1066.132500px;}
.ycb{bottom:1068.121500px;}
.y73{bottom:1068.742500px;}
.yfc{bottom:1071.252000px;}
.y2c{bottom:1073.596500px;}
.yca{bottom:1074.306000px;}
.y90{bottom:1080.321000px;}
.y12c{bottom:1083.687000px;}
.yc9{bottom:1087.515000px;}
.y2b{bottom:1095.265500px;}
.yac{bottom:1101.990000px;}
.y72{bottom:1105.354500px;}
.y2a{bottom:1116.934500px;}
.y29{bottom:1138.602000px;}
.h5{height:45.883675px;}
.h6{height:49.090950px;}
.h4{height:49.156405px;}
.hb{height:50.570496px;}
.ha{height:53.798400px;}
.h8{height:53.870131px;}
.h3{height:59.823654px;}
.h9{height:64.643977px;}
.hd{height:71.011248px;}
.h7{height:72.511265px;}
.h13{height:82.489248px;}
.h2{height:87.030450px;}
.hc{height:102.998400px;}
.h10{height:116.873702px;}
.h14{height:121.967702px;}
.hf{height:122.300400px;}
.h11{height:123.991248px;}
.h12{height:125.527248px;}
.he{height:188.629248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:83.866500px;}
.x8{left:106.299000px;}
.x1{left:115.702500px;}
.x1c{left:118.986000px;}
.xb{left:127.764000px;}
.x9{left:132.631500px;}
.x7{left:150.196500px;}
.x6{left:174.603000px;}
.x2{left:247.686000px;}
.x16{left:289.393500px;}
.x11{left:328.231500px;}
.xe{left:331.320000px;}
.xf{left:348.948000px;}
.x10{left:350.307000px;}
.x17{left:358.428000px;}
.x3{left:379.032000px;}
.xd{left:382.504500px;}
.x4{left:385.777500px;}
.x12{left:395.215500px;}
.xc{left:400.839000px;}
.x18{left:406.495500px;}
.x5{left:410.724000px;}
.x1b{left:437.679000px;}
.xa{left:442.068000px;}
.x13{left:468.451500px;}
.x19{left:471.969000px;}
.x14{left:499.842000px;}
.x15{left:551.239500px;}
@media print{
.v7{vertical-align:-89.904000pt;}
.v2{vertical-align:-11.472000pt;}
.v1{vertical-align:-8.725333pt;}
.v12{vertical-align:-7.013333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:8.192000pt;}
.v3{vertical-align:9.562667pt;}
.vb{vertical-align:17.760000pt;}
.vc{vertical-align:30.224000pt;}
.v4{vertical-align:43.733333pt;}
.v10{vertical-align:55.573333pt;}
.v5{vertical-align:60.570667pt;}
.v8{vertical-align:65.648000pt;}
.v11{vertical-align:70.773333pt;}
.v9{vertical-align:75.216000pt;}
.v14{vertical-align:78.490667pt;}
.ve{vertical-align:89.904000pt;}
.v13{vertical-align:92.762667pt;}
.va{vertical-align:105.440000pt;}
.vf{vertical-align:109.029333pt;}
.v6{vertical-align:165.120000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.000990pt;}
.ls1b{letter-spacing:0.001309pt;}
.ls38{letter-spacing:0.001891pt;}
.ls30{letter-spacing:0.002133pt;}
.ls1{letter-spacing:0.002405pt;}
.ls15{letter-spacing:0.002452pt;}
.ls36{letter-spacing:0.002717pt;}
.ls3{letter-spacing:0.002879pt;}
.lsa{letter-spacing:0.003086pt;}
.ls1c{letter-spacing:0.003328pt;}
.ls1d{letter-spacing:0.003420pt;}
.ls1a{letter-spacing:0.003831pt;}
.ls37{letter-spacing:0.003847pt;}
.ls2b{letter-spacing:0.004145pt;}
.ls3f{letter-spacing:0.406941pt;}
.ls27{letter-spacing:1.730253pt;}
.ls29{letter-spacing:1.735586pt;}
.ls12{letter-spacing:2.283769pt;}
.ls20{letter-spacing:2.289103pt;}
.ls35{letter-spacing:2.377181pt;}
.ls3b{letter-spacing:2.653258pt;}
.ls0{letter-spacing:3.352213pt;}
.ls40{letter-spacing:3.531549pt;}
.ls13{letter-spacing:3.709752pt;}
.lsd{letter-spacing:3.715086pt;}
.ls2c{letter-spacing:3.791684pt;}
.ls28{letter-spacing:4.926647pt;}
.ls34{letter-spacing:6.375224pt;}
.ls2f{letter-spacing:6.377248pt;}
.ls11{letter-spacing:6.655614pt;}
.ls19{letter-spacing:6.660948pt;}
.ls31{letter-spacing:10.628145pt;}
.ls5{letter-spacing:12.927477pt;}
.ls33{letter-spacing:13.282591pt;}
.ls2{letter-spacing:13.746405pt;}
.ls18{letter-spacing:14.164905pt;}
.ls26{letter-spacing:14.166642pt;}
.ls25{letter-spacing:14.171657pt;}
.ls4{letter-spacing:16.159477pt;}
.ls4c{letter-spacing:16.687572pt;}
.ls17{letter-spacing:17.706238pt;}
.ls22{letter-spacing:17.707976pt;}
.lse{letter-spacing:17.709119pt;}
.lsf{letter-spacing:17.713309pt;}
.ls2d{letter-spacing:17.957017pt;}
.lsb{letter-spacing:19.227679pt;}
.ls41{letter-spacing:19.725119pt;}
.ls16{letter-spacing:19.767786pt;}
.ls2e{letter-spacing:20.545309pt;}
.ls23{letter-spacing:20.802033pt;}
.ls1e{letter-spacing:20.802452pt;}
.ls3e{letter-spacing:20.807366pt;}
.ls14{letter-spacing:20.807786pt;}
.ls48{letter-spacing:21.405119pt;}
.ls10{letter-spacing:23.028905pt;}
.ls44{letter-spacing:23.089103pt;}
.ls4b{letter-spacing:24.004905pt;}
.ls49{letter-spacing:25.511366pt;}
.ls7{letter-spacing:26.423250pt;}
.ls3d{letter-spacing:26.907976pt;}
.ls3c{letter-spacing:26.909119pt;}
.ls43{letter-spacing:27.460948pt;}
.ls42{letter-spacing:27.466281pt;}
.ls46{letter-spacing:27.746033pt;}
.ls47{letter-spacing:28.940699pt;}
.ls21{letter-spacing:30.598436pt;}
.ls6{letter-spacing:30.680203pt;}
.ls3a{letter-spacing:31.210291pt;}
.lsc{letter-spacing:31.215625pt;}
.ls8{letter-spacing:31.880533pt;}
.ls45{letter-spacing:32.103925pt;}
.ls4a{letter-spacing:35.143366pt;}
.ls1f{letter-spacing:36.431614pt;}
.ls4d{letter-spacing:40.092699pt;}
.ls2a{letter-spacing:45.482350pt;}
.ls39{letter-spacing:62.416990pt;}
.ls32{letter-spacing:434.896990pt;}
.ws84{word-spacing:-63.761067pt;}
.ws23{word-spacing:-50.658167pt;}
.ws86{word-spacing:-50.479636pt;}
.ws21{word-spacing:-49.534444pt;}
.ws33{word-spacing:-47.661397pt;}
.ws25{word-spacing:-46.704981pt;}
.ws2f{word-spacing:-41.731618pt;}
.ws49{word-spacing:-40.590295pt;}
.ws32{word-spacing:-40.201353pt;}
.ws5{word-spacing:-37.899668pt;}
.ws6f{word-spacing:-35.859224pt;}
.ws31{word-spacing:-35.801839pt;}
.ws30{word-spacing:-35.227989pt;}
.ws2d{word-spacing:-35.036706pt;}
.ws2c{word-spacing:-33.060113pt;}
.ws2e{word-spacing:-32.039936pt;}
.wsf7{word-spacing:-31.874157pt;}
.ws71{word-spacing:-31.211042pt;}
.ws24{word-spacing:-31.147281pt;}
.ws81{word-spacing:-30.005958pt;}
.ws4d{word-spacing:-29.942197pt;}
.wsd{word-spacing:-28.241478pt;}
.ws9b{word-spacing:-26.690383pt;}
.ws88{word-spacing:-22.864719pt;}
.wsc3{word-spacing:-21.438911pt;}
.ws69{word-spacing:-20.556880pt;}
.ws64{word-spacing:-19.739639pt;}
.wsaf{word-spacing:-19.600152pt;}
.ws85{word-spacing:-19.357860pt;}
.wsb7{word-spacing:-18.962541pt;}
.ws93{word-spacing:-18.771258pt;}
.ws9{word-spacing:-18.644465pt;}
.ws9e{word-spacing:-17.942364pt;}
.ws54{word-spacing:-17.611639pt;}
.wsbd{word-spacing:-17.374891pt;}
.ws51{word-spacing:-17.343010pt;}
.ws79{word-spacing:-17.311130pt;}
.wsd7{word-spacing:-17.216973pt;}
.wsd2{word-spacing:-17.113470pt;}
.wsb0{word-spacing:-17.056085pt;}
.ws65{word-spacing:-16.609758pt;}
.ws5e{word-spacing:-16.572692pt;}
.wsb8{word-spacing:-16.545997pt;}
.wsce{word-spacing:-16.480876pt;}
.ws94{word-spacing:-16.354714pt;}
.wsc6{word-spacing:-16.220815pt;}
.wsea{word-spacing:-15.838249pt;}
.wsf3{word-spacing:-15.717103pt;}
.ws9f{word-spacing:-15.653342pt;}
.ws4{word-spacing:-15.197104pt;}
.ws5f{word-spacing:-15.015731pt;}
.wsd1{word-spacing:-14.951970pt;}
.wsd4{word-spacing:-14.888209pt;}
.wsf4{word-spacing:-14.467386pt;}
.wsc7{word-spacing:-14.123076pt;}
.wscc{word-spacing:-14.116700pt;}
.ws7{word-spacing:-14.091648pt;}
.ws57{word-spacing:-14.070753pt;}
.ws78{word-spacing:-13.994240pt;}
.wsb4{word-spacing:-13.861656pt;}
.wseb{word-spacing:-13.804271pt;}
.wse5{word-spacing:-13.797895pt;}
.wsd8{word-spacing:-13.775169pt;}
.ws43{word-spacing:-13.734134pt;}
.ws7e{word-spacing:-13.612988pt;}
.ws5b{word-spacing:-13.357943pt;}
.ws3c{word-spacing:-13.294182pt;}
.ws8f{word-spacing:-13.160284pt;}
.ws11{word-spacing:-13.044375pt;}
.ws5d{word-spacing:-12.592811pt;}
.ws7b{word-spacing:-12.529050pt;}
.wse6{word-spacing:-12.522673pt;}
.wsaa{word-spacing:-12.395151pt;}
.wscd{word-spacing:-12.274005pt;}
.ws5a{word-spacing:-12.146483pt;}
.ws3b{word-spacing:-12.082722pt;}
.wsb5{word-spacing:-12.028508pt;}
.wsb6{word-spacing:-12.018961pt;}
.wsa3{word-spacing:-12.012585pt;}
.ws6d{word-spacing:-11.963759pt;}
.ws44{word-spacing:-11.955200pt;}
.ws27{word-spacing:-11.948824pt;}
.ws98{word-spacing:-11.947180pt;}
.wsc4{word-spacing:-11.885063pt;}
.ws40{word-spacing:-11.700156pt;}
.ws80{word-spacing:-11.679172pt;}
.ws14{word-spacing:-11.648010pt;}
.wsd0{word-spacing:-11.636395pt;}
.ws7f{word-spacing:-11.508873pt;}
.ws61{word-spacing:-11.445111pt;}
.wsee{word-spacing:-11.317589pt;}
.ws99{word-spacing:-11.247452pt;}
.ws60{word-spacing:-11.232932pt;}
.wsed{word-spacing:-11.126306pt;}
.wse{word-spacing:-11.124373pt;}
.wsc{word-spacing:-11.066191pt;}
.ws1d{word-spacing:-11.008009pt;}
.wse7{word-spacing:-10.935023pt;}
.wsab{word-spacing:-10.807501pt;}
.ws106{word-spacing:-10.679979pt;}
.ws7c{word-spacing:-10.616218pt;}
.ws12{word-spacing:-10.542554pt;}
.ws5c{word-spacing:-10.488695pt;}
.wsa7{word-spacing:-10.429210pt;}
.ws29{word-spacing:-10.424934pt;}
.ws9c{word-spacing:-10.418558pt;}
.ws90{word-spacing:-10.412928pt;}
.wsa2{word-spacing:-10.407922pt;}
.ws6c{word-spacing:-10.407436pt;}
.ws82{word-spacing:-10.403287pt;}
.ws87{word-spacing:-10.402611pt;}
.wsa4{word-spacing:-10.402125pt;}
.ws50{word-spacing:-10.401143pt;}
.wsba{word-spacing:-10.400940pt;}
.wsa6{word-spacing:-10.399865pt;}
.wsa1{word-spacing:-10.399500pt;}
.ws97{word-spacing:-10.399111pt;}
.wsac{word-spacing:-10.398413pt;}
.ws95{word-spacing:-10.397954pt;}
.ws10{word-spacing:-10.368009pt;}
.ws3a{word-spacing:-10.361173pt;}
.wsc5{word-spacing:-10.297412pt;}
.wsbe{word-spacing:-10.291036pt;}
.ws9a{word-spacing:-9.787324pt;}
.ws2{word-spacing:-9.669826pt;}
.ws15{word-spacing:-9.611644pt;}
.wsf8{word-spacing:-9.596041pt;}
.wsad{word-spacing:-9.589664pt;}
.wsef{word-spacing:-9.557784pt;}
.ws91{word-spacing:-9.525903pt;}
.ws3e{word-spacing:-9.468518pt;}
.ws1e{word-spacing:-9.437099pt;}
.wsf9{word-spacing:-9.277235pt;}
.ws73{word-spacing:-9.207098pt;}
.ws66{word-spacing:-9.149713pt;}
.ws9d{word-spacing:-9.085952pt;}
.ws20{word-spacing:-9.029826pt;}
.wsc0{word-spacing:-8.958430pt;}
.wsbf{word-spacing:-8.903562pt;}
.ws39{word-spacing:-8.830908pt;}
.wsb3{word-spacing:-8.824532pt;}
.ws8a{word-spacing:-8.760771pt;}
.wscf{word-spacing:-8.512102pt;}
.wsae{word-spacing:-8.384580pt;}
.ws92{word-spacing:-8.320819pt;}
.ws41{word-spacing:-8.193297pt;}
.ws74{word-spacing:-8.002014pt;}
.ws8b{word-spacing:-7.683209pt;}
.wsd5{word-spacing:-7.676832pt;}
.ws100{word-spacing:-7.619447pt;}
.ws4c{word-spacing:-7.428164pt;}
.wsfa{word-spacing:-7.389908pt;}
.wsf1{word-spacing:-7.364403pt;}
.wsbb{word-spacing:-7.358027pt;}
.ws52{word-spacing:-7.300642pt;}
.wse0{word-spacing:-7.120514pt;}
.wsec{word-spacing:-7.045598pt;}
.ws101{word-spacing:-7.007341pt;}
.ws13{word-spacing:-6.877097pt;}
.ws75{word-spacing:-6.847939pt;}
.ws105{word-spacing:-6.790554pt;}
.wsf2{word-spacing:-6.752297pt;}
.ws6a{word-spacing:-6.743020pt;}
.ws6b{word-spacing:-6.719439pt;}
.wsd9{word-spacing:-6.663031pt;}
.wsdc{word-spacing:-6.465372pt;}
.ws19{word-spacing:-6.411642pt;}
.wsbc{word-spacing:-6.407987pt;}
.wse4{word-spacing:-6.401611pt;}
.wse8{word-spacing:-6.274089pt;}
.wse1{word-spacing:-6.216704pt;}
.ws67{word-spacing:-6.152943pt;}
.ws1f{word-spacing:-6.062551pt;}
.ws4a{word-spacing:-6.019045pt;}
.ws76{word-spacing:-5.897899pt;}
.wsda{word-spacing:-5.827761pt;}
.ws8d{word-spacing:-5.764000pt;}
.wsdd{word-spacing:-5.642854pt;}
.ws55{word-spacing:-5.579093pt;}
.wse9{word-spacing:-5.451571pt;}
.wsf{word-spacing:-5.422550pt;}
.ws36{word-spacing:-5.387810pt;}
.wsb1{word-spacing:-5.381434pt;}
.ws4b{word-spacing:-5.196527pt;}
.wsdb{word-spacing:-5.069005pt;}
.ws8e{word-spacing:-5.005244pt;}
.ws17{word-spacing:-4.957095pt;}
.ws38{word-spacing:-4.941483pt;}
.ws8c{word-spacing:-4.877722pt;}
.wse2{word-spacing:-4.871345pt;}
.wsfd{word-spacing:-4.775704pt;}
.wsb2{word-spacing:-4.750199pt;}
.ws4f{word-spacing:-4.686438pt;}
.wsb{word-spacing:-4.608004pt;}
.wsa{word-spacing:-4.603784pt;}
.ws2b{word-spacing:-4.558916pt;}
.ws48{word-spacing:-4.495155pt;}
.ws4e{word-spacing:-4.431394pt;}
.wsff{word-spacing:-4.303872pt;}
.wse3{word-spacing:-4.240111pt;}
.ws1a{word-spacing:-3.968003pt;}
.ws104{word-spacing:-3.946810pt;}
.wsfe{word-spacing:-3.921306pt;}
.wsca{word-spacing:-3.596124pt;}
.wsa9{word-spacing:-3.474978pt;}
.wsa0{word-spacing:-3.471167pt;}
.ws107{word-spacing:-3.466458pt;}
.wsf0{word-spacing:-3.466172pt;}
.wscb{word-spacing:-3.156173pt;}
.ws56{word-spacing:-3.092412pt;}
.ws58{word-spacing:-3.028651pt;}
.ws3{word-spacing:-2.920730pt;}
.ws7a{word-spacing:-2.901129pt;}
.ws46{word-spacing:-2.894752pt;}
.ws7d{word-spacing:-2.773606pt;}
.ws47{word-spacing:-2.518562pt;}
.ws18{word-spacing:-2.513457pt;}
.wsa8{word-spacing:-2.512186pt;}
.wsfb{word-spacing:-2.454801pt;}
.wsfc{word-spacing:-2.225261pt;}
.ws37{word-spacing:-2.199757pt;}
.ws1c{word-spacing:-1.931638pt;}
.ws16{word-spacing:-1.815274pt;}
.ws96{word-spacing:-1.753429pt;}
.wsc8{word-spacing:-1.555770pt;}
.ws45{word-spacing:-1.434624pt;}
.wsc9{word-spacing:-1.307102pt;}
.ws102{word-spacing:-1.052058pt;}
.ws103{word-spacing:-1.013801pt;}
.ws3f{word-spacing:-0.733252pt;}
.ws6e{word-spacing:-0.726876pt;}
.ws70{word-spacing:-0.669491pt;}
.wsf6{word-spacing:-0.567473pt;}
.wsf5{word-spacing:-0.541969pt;}
.wsc2{word-spacing:-0.286925pt;}
.wsc1{word-spacing:-0.280549pt;}
.ws3d{word-spacing:-0.223164pt;}
.ws6{word-spacing:-0.042507pt;}
.ws26{word-spacing:0.000000pt;}
.ws42{word-spacing:0.001282pt;}
.ws72{word-spacing:0.006615pt;}
.wsdf{word-spacing:0.159403pt;}
.wsde{word-spacing:0.165779pt;}
.ws68{word-spacing:0.346771pt;}
.ws83{word-spacing:0.350641pt;}
.ws1b{word-spacing:0.628364pt;}
.ws28{word-spacing:0.669491pt;}
.wsb9{word-spacing:17.313597pt;}
.ws8{word-spacing:18.769597pt;}
.wsd3{word-spacing:18.950931pt;}
.ws63{word-spacing:20.326931pt;}
.ws22{word-spacing:21.908303pt;}
.ws62{word-spacing:22.380264pt;}
.wsa5{word-spacing:23.414931pt;}
.ws77{word-spacing:23.420264pt;}
.ws1{word-spacing:24.178129pt;}
.ws53{word-spacing:25.638931pt;}
.wsd6{word-spacing:26.625597pt;}
.ws2a{word-spacing:27.350931pt;}
.ws59{word-spacing:30.801597pt;}
.ws0{word-spacing:38.900600pt;}
.ws35{word-spacing:42.089838pt;}
.ws34{word-spacing:49.534444pt;}
.ws89{word-spacing:67.199490pt;}
._28{margin-left:-38.830490pt;}
._26{margin-left:-36.817351pt;}
._15{margin-left:-35.387392pt;}
._13{margin-left:-33.779757pt;}
._12{margin-left:-31.880533pt;}
._18{margin-left:-29.689720pt;}
._16{margin-left:-28.437436pt;}
._33{margin-left:-13.461275pt;}
._17{margin-left:-11.208340pt;}
._3{margin-left:-9.697600pt;}
._23{margin-left:-8.721658pt;}
._36{margin-left:-7.235481pt;}
._4{margin-left:-6.044532pt;}
._9{margin-left:-4.829095pt;}
._0{margin-left:-3.195800pt;}
._5{margin-left:-1.629092pt;}
._6{width:1.687274pt;}
._1{width:3.085600pt;}
._3a{width:4.667297pt;}
._3f{width:15.006938pt;}
._3d{width:16.059916pt;}
._31{width:17.580166pt;}
._1b{width:20.315521pt;}
._8{width:21.256694pt;}
._2b{width:22.764634pt;}
._20{width:24.220332pt;}
._7{width:25.647681pt;}
._2d{width:26.781582pt;}
._d{width:27.985478pt;}
._b{width:29.090933pt;}
._35{width:30.541551pt;}
._f{width:32.058209pt;}
._a{width:33.920028pt;}
._e{width:35.316393pt;}
._39{width:36.479077pt;}
._3e{width:37.446940pt;}
._38{width:38.808070pt;}
._41{width:40.557618pt;}
._1d{width:42.106563pt;}
._24{width:43.293764pt;}
._34{width:44.191998pt;}
._37{width:45.576414pt;}
._c{width:47.006746pt;}
._40{width:48.012803pt;}
._42{width:50.307482pt;}
._2{width:52.014400pt;}
._29{width:54.451967pt;}
._10{width:56.494593pt;}
._14{width:58.532659pt;}
._2e{width:59.930159pt;}
._21{width:61.210624pt;}
._1a{width:63.824828pt;}
._3b{width:84.164373pt;}
._1f{width:89.516504pt;}
._1c{width:90.973345pt;}
._3c{width:99.068889pt;}
._30{width:630.364661pt;}
._27{width:863.906439pt;}
._22{width:1010.068309pt;}
._2c{width:1079.291322pt;}
._2a{width:1120.439507pt;}
._25{width:1152.297743pt;}
._32{width:1316.998796pt;}
._2f{width:1426.908911pt;}
._19{width:1562.714961pt;}
._1e{width:1694.195302pt;}
._11{width:1894.729436pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:54.637333pt;}
.y27{bottom:94.488000pt;}
.y52{bottom:97.552000pt;}
.y148{bottom:98.820000pt;}
.y183{bottom:105.216000pt;}
.y26{bottom:113.749333pt;}
.y51{bottom:116.812000pt;}
.y147{bottom:118.081333pt;}
.y8f{bottom:120.114667pt;}
.yfb{bottom:121.965333pt;}
.y182{bottom:124.476000pt;}
.y71{bottom:129.742667pt;}
.y25{bottom:133.010667pt;}
.y50{bottom:136.073333pt;}
.y146{bottom:137.342667pt;}
.y114{bottom:144.062667pt;}
.y12b{bottom:147.640000pt;}
.y8e{bottom:148.009333pt;}
.y70{bottom:149.004000pt;}
.y24{bottom:152.272000pt;}
.yfa{bottom:154.509333pt;}
.yab{bottom:154.780000pt;}
.y4f{bottom:155.334667pt;}
.y145{bottom:156.604000pt;}
.y181{bottom:157.021333pt;}
.yc6{bottom:160.130667pt;}
.yc8{bottom:168.000000pt;}
.y23{bottom:171.533333pt;}
.y113{bottom:173.616000pt;}
.yaa{bottom:174.041333pt;}
.yc7{bottom:174.494667pt;}
.y180{bottom:176.282667pt;}
.y162{bottom:176.416000pt;}
.yc5{bottom:178.934667pt;}
.y12a{bottom:180.184000pt;}
.y6f{bottom:181.548000pt;}
.y8d{bottom:186.532000pt;}
.yf9{bottom:187.054667pt;}
.y4e{bottom:190.200000pt;}
.y144{bottom:191.645333pt;}
.y161{bottom:195.677333pt;}
.y129{bottom:199.445333pt;}
.ye3{bottom:199.596000pt;}
.y6e{bottom:200.809333pt;}
.y22{bottom:206.574667pt;}
.ya9{bottom:206.585333pt;}
.y17f{bottom:208.826667pt;}
.y4d{bottom:209.461333pt;}
.y112{bottom:213.308000pt;}
.y8c{bottom:214.428000pt;}
.ye2{bottom:218.857333pt;}
.yf8{bottom:219.598667pt;}
.y6d{bottom:220.070667pt;}
.yc4{bottom:223.301333pt;}
.y17e{bottom:228.088000pt;}
.y160{bottom:228.221333pt;}
.y4c{bottom:228.722667pt;}
.y128{bottom:228.998667pt;}
.ya8{bottom:239.130667pt;}
.y143{bottom:244.885333pt;}
.y15f{bottom:247.482667pt;}
.y4b{bottom:247.984000pt;}
.yf7{bottom:249.152000pt;}
.ye1{bottom:251.402667pt;}
.y6c{bottom:252.614667pt;}
.y8b{bottom:252.949333pt;}
.yc3{bottom:255.845333pt;}
.y21{bottom:258.922667pt;}
.y17d{bottom:260.632000pt;}
.y142{bottom:264.145333pt;}
.y111{bottom:265.394667pt;}
.y127{bottom:268.690667pt;}
.ye0{bottom:270.662667pt;}
.ya7{bottom:271.674667pt;}
.y6b{bottom:271.876000pt;}
.y8a{bottom:272.210667pt;}
.y20{bottom:276.988000pt;}
.y17c{bottom:279.893333pt;}
.y15e{bottom:280.026667pt;}
.y4a{bottom:282.849333pt;}
.y110{bottom:284.656000pt;}
.yc2{bottom:288.390667pt;}
.y6a{bottom:291.137333pt;}
.y1f{bottom:295.053333pt;}
.yf6{bottom:295.362667pt;}
.y141{bottom:296.690667pt;}
.y15d{bottom:299.288000pt;}
.ya6{bottom:301.228000pt;}
.y89{bottom:301.764000pt;}
.y49{bottom:302.110667pt;}
.ydf{bottom:303.208000pt;}
.y17b{bottom:312.438667pt;}
.y1e{bottom:313.120000pt;}
.yf5{bottom:314.622667pt;}
.y10f{bottom:314.970667pt;}
.y140{bottom:315.952000pt;}
.yc1{bottom:320.934667pt;}
.y48{bottom:321.370667pt;}
.y126{bottom:321.929333pt;}
.y69{bottom:323.681333pt;}
.y1d{bottom:331.185333pt;}
.y17a{bottom:331.700000pt;}
.y15c{bottom:331.833333pt;}
.yde{bottom:332.761333pt;}
.y47{bottom:340.632000pt;}
.y125{bottom:341.190667pt;}
.y88{bottom:341.456000pt;}
.y68{bottom:342.942667pt;}
.y10e{bottom:345.284000pt;}
.yf4{bottom:347.168000pt;}
.ya5{bottom:347.438667pt;}
.y13f{bottom:348.496000pt;}
.yc0{bottom:349.182667pt;}
.y1c{bottom:349.250667pt;}
.y67{bottom:362.204000pt;}
.y179{bottom:364.244000pt;}
.y15b{bottom:364.377333pt;}
.yf3{bottom:366.429333pt;}
.y1b{bottom:367.316000pt;}
.y13e{bottom:367.757333pt;}
.ybf{bottom:370.900000pt;}
.ydd{bottom:372.453333pt;}
.y124{bottom:373.734667pt;}
.y46{bottom:375.497333pt;}
.y10d{bottom:375.598667pt;}
.ya4{bottom:379.982667pt;}
.y178{bottom:383.505333pt;}
.y15a{bottom:383.638667pt;}
.y1a{bottom:385.381333pt;}
.y123{bottom:392.996000pt;}
.y87{bottom:394.694667pt;}
.y66{bottom:394.749333pt;}
.y45{bottom:394.758667pt;}
.yf2{bottom:395.982667pt;}
.y13d{bottom:397.310667pt;}
.ya3{bottom:399.244000pt;}
.ybe{bottom:402.337333pt;}
.y19{bottom:403.448000pt;}
.y10c{bottom:405.152000pt;}
.y159{bottom:413.192000pt;}
.y65{bottom:414.009333pt;}
.y44{bottom:414.020000pt;}
.y177{bottom:416.049333pt;}
.y18{bottom:421.513333pt;}
.ybd{bottom:421.597333pt;}
.y122{bottom:422.549333pt;}
.ydc{bottom:425.692000pt;}
.y86{bottom:427.240000pt;}
.ya2{bottom:431.789333pt;}
.y43{bottom:433.281333pt;}
.y176{bottom:435.310667pt;}
.y17{bottom:439.578667pt;}
.yf1{bottom:442.192000pt;}
.y13c{bottom:443.521333pt;}
.y64{bottom:443.562667pt;}
.ydb{bottom:444.953333pt;}
.y85{bottom:446.500000pt;}
.y10b{bottom:450.209333pt;}
.ya1{bottom:451.049333pt;}
.ybc{bottom:451.150667pt;}
.y16{bottom:457.644000pt;}
.y158{bottom:459.402667pt;}
.y13b{bottom:462.781333pt;}
.y175{bottom:467.856000pt;}
.y42{bottom:468.146667pt;}
.y121{bottom:468.760000pt;}
.y10a{bottom:469.470667pt;}
.yf0{bottom:474.737333pt;}
.y15{bottom:475.709333pt;}
.yda{bottom:477.497333pt;}
.y157{bottom:478.662667pt;}
.y84{bottom:479.045333pt;}
.ya0{bottom:480.602667pt;}
.y174{bottom:487.116000pt;}
.y41{bottom:487.408000pt;}
.y120{bottom:488.021333pt;}
.y63{bottom:489.773333pt;}
.ybb{bottom:490.842667pt;}
.y14{bottom:493.776000pt;}
.y13a{bottom:495.326667pt;}
.y109{bottom:499.785333pt;}
.y40{bottom:506.668000pt;}
.yef{bottom:507.281333pt;}
.y62{bottom:509.034667pt;}
.yd9{bottom:510.042667pt;}
.y156{bottom:511.208000pt;}
.y83{bottom:511.589333pt;}
.y13{bottom:511.841333pt;}
.y139{bottom:514.588000pt;}
.y173{bottom:519.661333pt;}
.y11f{bottom:520.565333pt;}
.y3f{bottom:525.929333pt;}
.y9f{bottom:526.813333pt;}
.y61{bottom:528.296000pt;}
.y12{bottom:529.906667pt;}
.y108{bottom:530.098667pt;}
.yee{bottom:536.834667pt;}
.y172{bottom:538.922667pt;}
.yd8{bottom:539.596000pt;}
.y155{bottom:543.752000pt;}
.yba{bottom:544.081333pt;}
.y82{bottom:544.134667pt;}
.y138{bottom:544.141333pt;}
.y3e{bottom:545.190667pt;}
.y9e{bottom:546.074667pt;}
.y60{bottom:547.556000pt;}
.y11{bottom:547.972000pt;}
.y11e{bottom:550.118667pt;}
.y107{bottom:559.652000pt;}
.y154{bottom:563.013333pt;}
.yb9{bottom:563.342667pt;}
.y10{bottom:566.037333pt;}
.y5f{bottom:566.817333pt;}
.y171{bottom:571.466667pt;}
.yed{bottom:576.526667pt;}
.y81{bottom:576.678667pt;}
.y9d{bottom:578.618667pt;}
.y3d{bottom:580.056000pt;}
.yf{bottom:584.102667pt;}
.yd7{bottom:585.805333pt;}
.y5e{bottom:586.078667pt;}
.y137{bottom:590.350667pt;}
.y170{bottom:590.728000pt;}
.y153{bottom:595.558667pt;}
.yb8{bottom:595.888000pt;}
.y80{bottom:595.940000pt;}
.y11d{bottom:596.329333pt;}
.y9c{bottom:597.880000pt;}
.y3c{bottom:599.317333pt;}
.ye{bottom:602.169333pt;}
.y106{bottom:604.710667pt;}
.yd6{bottom:605.066667pt;}
.y136{bottom:609.612000pt;}
.y152{bottom:614.818667pt;}
.y11c{bottom:615.589333pt;}
.y3b{bottom:618.578667pt;}
.y5d{bottom:618.624000pt;}
.yd{bottom:620.234667pt;}
.y16f{bottom:623.273333pt;}
.yb7{bottom:628.432000pt;}
.y7f{bottom:628.485333pt;}
.yec{bottom:629.765333pt;}
.y9b{bottom:630.425333pt;}
.y105{bottom:635.024000pt;}
.yd5{bottom:637.610667pt;}
.y3a{bottom:637.840000pt;}
.y5c{bottom:637.884000pt;}
.yc{bottom:638.300000pt;}
.y135{bottom:642.157333pt;}
.y16e{bottom:642.533333pt;}
.y151{bottom:644.372000pt;}
.y7e{bottom:647.745333pt;}
.y11b{bottom:648.134667pt;}
.yeb{bottom:649.026667pt;}
.y9a{bottom:649.685333pt;}
.yb{bottom:656.365333pt;}
.yd4{bottom:656.872000pt;}
.y39{bottom:657.101333pt;}
.yb6{bottom:660.977333pt;}
.y104{bottom:665.338667pt;}
.y11a{bottom:667.396000pt;}
.y99{bottom:668.946667pt;}
.y5b{bottom:670.429333pt;}
.y134{bottom:671.710667pt;}
.ya{bottom:674.430667pt;}
.y16d{bottom:675.078667pt;}
.y7d{bottom:680.290667pt;}
.yea{bottom:681.572000pt;}
.y18b{bottom:681.996000pt;}
.yd3{bottom:686.425333pt;}
.yb5{bottom:690.530667pt;}
.y150{bottom:690.582667pt;}
.y38{bottom:691.966667pt;}
.y16c{bottom:694.340000pt;}
.y103{bottom:694.892000pt;}
.y119{bottom:696.949333pt;}
.y9{bottom:698.542667pt;}
.y18a{bottom:701.257333pt;}
.y98{bottom:701.492000pt;}
.y5a{bottom:702.973333pt;}
.y7c{bottom:709.844000pt;}
.y37{bottom:711.226667pt;}
.y133{bottom:711.401333pt;}
.ye9{bottom:714.116000pt;}
.y16b{bottom:726.884000pt;}
.y36{bottom:730.488000pt;}
.yd2{bottom:732.636000pt;}
.y189{bottom:733.801333pt;}
.y8{bottom:734.673333pt;}
.y59{bottom:735.518667pt;}
.y118{bottom:736.640000pt;}
.yb4{bottom:736.740000pt;}
.y102{bottom:739.949333pt;}
.y14f{bottom:742.388000pt;}
.y97{bottom:743.052000pt;}
.ye8{bottom:743.669333pt;}
.y16a{bottom:746.145333pt;}
.y35{bottom:749.749333pt;}
.y7{bottom:752.738667pt;}
.y188{bottom:753.062667pt;}
.y58{bottom:754.780000pt;}
.yb3{bottom:756.001333pt;}
.y7b{bottom:756.053333pt;}
.y14e{bottom:761.649333pt;}
.y132{bottom:764.641333pt;}
.yd1{bottom:765.180000pt;}
.y34{bottom:769.010667pt;}
.y101{bottom:770.264000pt;}
.y6{bottom:770.805333pt;}
.y57{bottom:774.041333pt;}
.y7a{bottom:775.314667pt;}
.y96{bottom:778.253333pt;}
.y169{bottom:778.689333pt;}
.y131{bottom:783.901333pt;}
.y187{bottom:785.606667pt;}
.yb2{bottom:788.546667pt;}
.ye7{bottom:789.880000pt;}
.y5{bottom:790.926667pt;}
.y56{bottom:793.301333pt;}
.y14d{bottom:794.194667pt;}
.yd0{bottom:797.725333pt;}
.y168{bottom:797.950667pt;}
.y100{bottom:800.577333pt;}
.y33{bottom:803.876000pt;}
.y186{bottom:804.868000pt;}
.y79{bottom:807.860000pt;}
.y117{bottom:809.140000pt;}
.y55{bottom:812.562667pt;}
.y95{bottom:813.454667pt;}
.y130{bottom:816.446667pt;}
.ycf{bottom:816.986667pt;}
.yb1{bottom:821.090667pt;}
.ye6{bottom:822.424000pt;}
.y32{bottom:823.137333pt;}
.y78{bottom:827.121333pt;}
.yff{bottom:830.130667pt;}
.y167{bottom:832.993333pt;}
.y12f{bottom:835.708000pt;}
.y185{bottom:837.413333pt;}
.y116{bottom:841.685333pt;}
.y54{bottom:842.116000pt;}
.y31{bottom:842.398667pt;}
.y94{bottom:843.008000pt;}
.y4{bottom:843.237333pt;}
.y14c{bottom:846.000000pt;}
.ye5{bottom:851.977333pt;}
.yb0{bottom:853.636000pt;}
.y184{bottom:856.674667pt;}
.yce{bottom:858.546667pt;}
.y77{bottom:859.665333pt;}
.y30{bottom:861.658667pt;}
.y12e{bottom:865.261333pt;}
.y3{bottom:867.148000pt;}
.yfe{bottom:869.822667pt;}
.y115{bottom:871.238667pt;}
.y76{bottom:878.926667pt;}
.y2f{bottom:880.920000pt;}
.y53{bottom:881.808000pt;}
.y166{bottom:886.232000pt;}
.y93{bottom:889.218667pt;}
.ycd{bottom:891.092000pt;}
.yaf{bottom:895.196000pt;}
.y14b{bottom:897.805333pt;}
.y75{bottom:898.188000pt;}
.y165{bottom:905.493333pt;}
.y92{bottom:908.480000pt;}
.y12d{bottom:911.470667pt;}
.yae{bottom:914.457333pt;}
.y2{bottom:914.465333pt;}
.y2e{bottom:915.785333pt;}
.y14a{bottom:917.066667pt;}
.ye4{bottom:917.449333pt;}
.yfd{bottom:921.909333pt;}
.ycc{bottom:923.636000pt;}
.y164{bottom:924.754667pt;}
.y74{bottom:930.732000pt;}
.y2d{bottom:935.046667pt;}
.y91{bottom:941.024000pt;}
.y163{bottom:944.016000pt;}
.y149{bottom:946.620000pt;}
.yad{bottom:947.002667pt;}
.y1{bottom:947.673333pt;}
.ycb{bottom:949.441333pt;}
.y73{bottom:949.993333pt;}
.yfc{bottom:952.224000pt;}
.y2c{bottom:954.308000pt;}
.yca{bottom:954.938667pt;}
.y90{bottom:960.285333pt;}
.y12c{bottom:963.277333pt;}
.yc9{bottom:966.680000pt;}
.y2b{bottom:973.569333pt;}
.yac{bottom:979.546667pt;}
.y72{bottom:982.537333pt;}
.y2a{bottom:992.830667pt;}
.y29{bottom:1012.090667pt;}
.h5{height:40.785489pt;}
.h6{height:43.636400pt;}
.h4{height:43.694582pt;}
.hb{height:44.951552pt;}
.ha{height:47.820800pt;}
.h8{height:47.884561pt;}
.h3{height:53.176581pt;}
.h9{height:57.461313pt;}
.hd{height:63.121109pt;}
.h7{height:64.454458pt;}
.h13{height:73.323776pt;}
.h2{height:77.360400pt;}
.hc{height:91.554133pt;}
.h10{height:103.887735pt;}
.h14{height:108.415735pt;}
.hf{height:108.711467pt;}
.h11{height:110.214443pt;}
.h12{height:111.579776pt;}
.he{height:167.670443pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:74.548000pt;}
.x8{left:94.488000pt;}
.x1{left:102.846667pt;}
.x1c{left:105.765333pt;}
.xb{left:113.568000pt;}
.x9{left:117.894667pt;}
.x7{left:133.508000pt;}
.x6{left:155.202667pt;}
.x2{left:220.165333pt;}
.x16{left:257.238667pt;}
.x11{left:291.761333pt;}
.xe{left:294.506667pt;}
.xf{left:310.176000pt;}
.x10{left:311.384000pt;}
.x17{left:318.602667pt;}
.x3{left:336.917333pt;}
.xd{left:340.004000pt;}
.x4{left:342.913333pt;}
.x12{left:351.302667pt;}
.xc{left:356.301333pt;}
.x18{left:361.329333pt;}
.x5{left:365.088000pt;}
.x1b{left:389.048000pt;}
.xa{left:392.949333pt;}
.x13{left:416.401333pt;}
.x19{left:419.528000pt;}
.x14{left:444.304000pt;}
.x15{left:489.990667pt;}
}




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