
    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_a360ebd6a6d00b6ca312cefe.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_1425457e09a95d1f3ad02b00.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_f896323a52bc029a0f11f303.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6a8d510342e2bec580f56b4e.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_e46c4483d467eadd56bdeed2.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_d11852f124792025905536e6.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_89c6ef3e37fe48e12b7b7024.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_a0ae1dc88a9a8302810a8659.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002000;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_ea2b1c1628ab2f54363b2b5f.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_9cbe2c22131299f5457368cd.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_cf7bdffd492c12fd61b4dc5a.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_c989928f9fef9d29dab1f6bb.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_d4aaeeb16563f8c1f311416f.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_fdb5100e4593d5e1b57dd2c6.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_fe31f8e5f1b3b263afaa81a2.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_f0e7776cc35aee66787037c0.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_bc0bafd0c3580591d8566014.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_e3eff293ba9df5c1fe988586.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_e9e5156ce0d5bfb2f73f64ce.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_f68289de803bb006b2a2d274.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_94175d5682d1c67ad3cad39a.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_d71274df0ba998cac6a0046c.woff2')format("woff");}.ff16{font-family:ff16;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);}
.v8{vertical-align:-79.620000px;}
.v4{vertical-align:-12.912000px;}
.v1{vertical-align:-9.822000px;}
.v12{vertical-align:-7.884000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:9.216000px;}
.v3{vertical-align:10.758000px;}
.v15{vertical-align:13.974000px;}
.vc{vertical-align:19.980000px;}
.vd{vertical-align:24.738000px;}
.ve{vertical-align:34.002000px;}
.v5{vertical-align:49.206000px;}
.v11{vertical-align:58.098000px;}
.v14{vertical-align:66.780000px;}
.v6{vertical-align:68.142000px;}
.v9{vertical-align:73.854000px;}
.v2{vertical-align:79.620000px;}
.v13{vertical-align:82.836000px;}
.va{vertical-align:84.618000px;}
.vb{vertical-align:118.620000px;}
.v10{vertical-align:122.658000px;}
.v7{vertical-align:164.238000px;}
.lsa{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.001114px;}
.lsc{letter-spacing:0.001139px;}
.ls30{letter-spacing:0.002127px;}
.ls37{letter-spacing:0.002675px;}
.ls1{letter-spacing:0.002706px;}
.lse{letter-spacing:0.002759px;}
.ls3e{letter-spacing:0.003056px;}
.ls3{letter-spacing:0.003239px;}
.ls9{letter-spacing:0.003471px;}
.ls15{letter-spacing:0.003744px;}
.ls16{letter-spacing:0.003848px;}
.ls1b{letter-spacing:0.004310px;}
.ls3f{letter-spacing:0.004328px;}
.ls14{letter-spacing:0.004527px;}
.ls21{letter-spacing:0.004773px;}
.ls2d{letter-spacing:1.946534px;}
.ls29{letter-spacing:1.952534px;}
.ls47{letter-spacing:2.569240px;}
.ls20{letter-spacing:2.575240px;}
.ls3d{letter-spacing:2.674328px;}
.ls3b{letter-spacing:2.984915px;}
.ls48{letter-spacing:2.990915px;}
.ls40{letter-spacing:2.992059px;}
.ls0{letter-spacing:3.771239px;}
.lsd{letter-spacing:4.173471px;}
.ls12{letter-spacing:4.179471px;}
.ls38{letter-spacing:4.259644px;}
.ls36{letter-spacing:4.265644px;}
.ls34{letter-spacing:7.172915px;}
.ls3c{letter-spacing:7.175591px;}
.ls1d{letter-spacing:7.493566px;}
.ls13{letter-spacing:11.953473px;}
.ls35{letter-spacing:11.954400px;}
.ls28{letter-spacing:11.954759px;}
.ls25{letter-spacing:11.957779px;}
.ls5{letter-spacing:12.167412px;}
.ls1c{letter-spacing:15.935518px;}
.ls31{letter-spacing:16.223644px;}
.ls4{letter-spacing:18.179412px;}
.ls42{letter-spacing:19.921473px;}
.ls49{letter-spacing:19.922759px;}
.ls17{letter-spacing:19.925518px;}
.ls4a{letter-spacing:19.927473px;}
.ls3a{letter-spacing:19.928759px;}
.ls2e{letter-spacing:20.251114px;}
.ls2c{letter-spacing:20.252759px;}
.ls4b{letter-spacing:20.546759px;}
.lsf{letter-spacing:22.064759px;}
.ls44{letter-spacing:22.495114px;}
.ls7{letter-spacing:22.862156px;}
.ls1f{letter-spacing:23.402759px;}
.ls50{letter-spacing:23.404800px;}
.ls4e{letter-spacing:23.408759px;}
.ls4c{letter-spacing:23.828759px;}
.ls43{letter-spacing:25.478915px;}
.ls4d{letter-spacing:25.567139px;}
.ls2b{letter-spacing:25.798477px;}
.ls23{letter-spacing:25.975240px;}
.ls6{letter-spacing:27.651229px;}
.ls46{letter-spacing:28.034759px;}
.ls2{letter-spacing:29.030706px;}
.ls22{letter-spacing:30.899566px;}
.ls4f{letter-spacing:31.214287px;}
.ls51{letter-spacing:33.311566px;}
.ls45{letter-spacing:35.111578px;}
.lsb{letter-spacing:35.117578px;}
.ls18{letter-spacing:35.861518px;}
.ls27{letter-spacing:35.863473px;}
.ls8{letter-spacing:35.865600px;}
.ls26{letter-spacing:35.869114px;}
.ls1a{letter-spacing:36.253240px;}
.ls1e{letter-spacing:36.263566px;}
.ls2f{letter-spacing:39.215644px;}
.ls10{letter-spacing:39.848759px;}
.ls24{letter-spacing:39.851518px;}
.ls11{letter-spacing:39.853473px;}
.ls32{letter-spacing:40.133644px;}
.ls19{letter-spacing:41.171566px;}
.ls33{letter-spacing:43.033473px;}
.ls41{letter-spacing:70.219114px;}
.ls39{letter-spacing:445.429114px;}
.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;}
}
.ws85{word-spacing:-71.731200px;}
.ws17{word-spacing:-56.990438px;}
.ws67{word-spacing:-56.789591px;}
.ws27{word-spacing:-53.619072px;}
.ws19{word-spacing:-52.543104px;}
.ws22{word-spacing:-46.948070px;}
.ws2c{word-spacing:-45.664082px;}
.ws24{word-spacing:-45.226522px;}
.ws6{word-spacing:-42.637126px;}
.ws73{word-spacing:-40.341627px;}
.ws26{word-spacing:-40.277069px;}
.ws23{word-spacing:-39.631488px;}
.ws20{word-spacing:-39.416294px;}
.ws21{word-spacing:-36.044928px;}
.wsc3{word-spacing:-35.858427px;}
.ws41{word-spacing:-35.112422px;}
.ws18{word-spacing:-35.040691px;}
.ws97{word-spacing:-33.756703px;}
.ws6e{word-spacing:-33.684972px;}
.ws6a{word-spacing:-33.254584px;}
.wsd{word-spacing:-31.771663px;}
.ws6b{word-spacing:-29.739756px;}
.ws88{word-spacing:-25.722808px;}
.wsa{word-spacing:-23.357024px;}
.ws6f{word-spacing:-22.207094px;}
.ws84{word-spacing:-21.777592px;}
.ws76{word-spacing:-21.548052px;}
.ws98{word-spacing:-21.404590px;}
.wsa1{word-spacing:-20.615547px;}
.ws7d{word-spacing:-20.400353px;}
.wsae{word-spacing:-20.041697px;}
.ws64{word-spacing:-19.510886px;}
.ws43{word-spacing:-19.180923px;}
.ws77{word-spacing:-18.685978px;}
.ws99{word-spacing:-18.628044px;}
.ws7f{word-spacing:-18.607073px;}
.ws59{word-spacing:-18.470784px;}
.ws10{word-spacing:-18.078561px;}
.wsa2{word-spacing:-17.968666px;}
.ws7e{word-spacing:-17.753472px;}
.wsbf{word-spacing:-17.681741px;}
.wsaf{word-spacing:-17.470810px;}
.wsb0{word-spacing:-17.466547px;}
.ws9a{word-spacing:-17.251354px;}
.ws9f{word-spacing:-16.933788px;}
.ws93{word-spacing:-16.742062px;}
.ws44{word-spacing:-16.677504px;}
.ws11{word-spacing:-16.638559px;}
.wsc0{word-spacing:-16.275809px;}
.ws80{word-spacing:-16.247117px;}
.ws3{word-spacing:-16.114923px;}
.ws50{word-spacing:-16.096481px;}
.ws49{word-spacing:-15.960192px;}
.ws5e{word-spacing:-15.829597px;}
.ws62{word-spacing:-15.743520px;}
.ws54{word-spacing:-15.386342px;}
.ws55{word-spacing:-15.027686px;}
.ws58{word-spacing:-14.884224px;}
.ws57{word-spacing:-14.861985px;}
.ws82{word-spacing:-14.858365px;}
.wsa5{word-spacing:-14.597299px;}
.ws94{word-spacing:-14.546845px;}
.ws95{word-spacing:-14.525568px;}
.ws45{word-spacing:-14.518395px;}
.ws8e{word-spacing:-14.446664px;}
.ws42{word-spacing:-14.310374px;}
.ws51{word-spacing:-14.023450px;}
.ws4a{word-spacing:-13.593062px;}
.ws25{word-spacing:-13.514158px;}
.ws5a{word-spacing:-13.449600px;}
.ws1a{word-spacing:-13.442427px;}
.ws40{word-spacing:-13.162675px;}
.ws56{word-spacing:-13.019213px;}
.ws96{word-spacing:-13.012040px;}
.ws12{word-spacing:-12.842193px;}
.wsba{word-spacing:-12.732288px;}
.ws8b{word-spacing:-12.660557px;}
.ws8a{word-spacing:-12.614365px;}
.ws46{word-spacing:-12.588826px;}
.ws4e{word-spacing:-12.581652px;}
.ws2f{word-spacing:-12.517094px;}
.ws3e{word-spacing:-12.445363px;}
.ws92{word-spacing:-12.301901px;}
.ws4b{word-spacing:-12.158438px;}
.ws4c{word-spacing:-12.086707px;}
.ws8{word-spacing:-12.056737px;}
.wsb{word-spacing:-12.028016px;}
.ws5b{word-spacing:-12.014976px;}
.ws5f{word-spacing:-11.943245px;}
.ws7b{word-spacing:-11.740268px;}
.ws8d{word-spacing:-11.738037px;}
.wsab{word-spacing:-11.737668px;}
.wsa4{word-spacing:-11.732678px;}
.wsf{word-spacing:-11.729464px;}
.ws1c{word-spacing:-11.728051px;}
.wsa9{word-spacing:-11.719978px;}
.wsa0{word-spacing:-11.718712px;}
.ws9e{word-spacing:-11.709652px;}
.ws9d{word-spacing:-11.707605px;}
.ws7c{word-spacing:-11.703698px;}
.ws87{word-spacing:-11.702938px;}
.ws78{word-spacing:-11.656320px;}
.wsc9{word-spacing:-11.584589px;}
.ws2a{word-spacing:-11.297664px;}
.wsb6{word-spacing:-11.225933px;}
.ws4f{word-spacing:-10.939008px;}
.ws9b{word-spacing:-10.931835px;}
.ws2{word-spacing:-10.878555px;}
.ws3f{word-spacing:-10.795546px;}
.wsbb{word-spacing:-10.752507px;}
.ws3d{word-spacing:-10.723814px;}
.wsb1{word-spacing:-10.644910px;}
.ws39{word-spacing:-10.508621px;}
.wsc4{word-spacing:-10.436890px;}
.wsb9{word-spacing:-10.221696px;}
.wsb5{word-spacing:-10.078234px;}
.ws79{word-spacing:-10.071060px;}
.ws9c{word-spacing:-9.576115px;}
.wsa6{word-spacing:-9.504384px;}
.ws47{word-spacing:-9.497211px;}
.wsb2{word-spacing:-9.289190px;}
.ws53{word-spacing:-9.210286px;}
.ws52{word-spacing:-9.145728px;}
.ws14{word-spacing:-9.045826px;}
.wsc5{word-spacing:-9.002266px;}
.wsca{word-spacing:-8.930534px;}
.ws31{word-spacing:-8.858803px;}
.ws7a{word-spacing:-8.787072px;}
.wsb8{word-spacing:-8.571878px;}
.ws32{word-spacing:-8.500147px;}
.wsc6{word-spacing:-8.313646px;}
.wsbd{word-spacing:-8.284954px;}
.ws48{word-spacing:-8.213222px;}
.ws5d{word-spacing:-8.141491px;}
.ws2b{word-spacing:-7.998029px;}
.ws8f{word-spacing:-7.990856px;}
.ws2e{word-spacing:-7.926298px;}
.wscf{word-spacing:-7.883259px;}
.wsd4{word-spacing:-7.639373px;}
.wsbe{word-spacing:-7.596334px;}
.ws66{word-spacing:-7.535276px;}
.ws4{word-spacing:-7.409461px;}
.ws72{word-spacing:-7.273544px;}
.ws8c{word-spacing:-7.077652px;}
.ws63{word-spacing:-7.065523px;}
.wsb3{word-spacing:-7.058350px;}
.ws91{word-spacing:-6.993792px;}
.ws90{word-spacing:-6.955855px;}
.wsc{word-spacing:-6.951279px;}
.wse{word-spacing:-6.754915px;}
.ws74{word-spacing:-6.350755px;}
.ws75{word-spacing:-6.348211px;}
.wsb7{word-spacing:-6.280504px;}
.wsb4{word-spacing:-6.204749px;}
.ws30{word-spacing:-6.061286px;}
.wscb{word-spacing:-5.846093px;}
.wscc{word-spacing:-5.372667px;}
.ws1e{word-spacing:-5.128781px;}
.ws34{word-spacing:-4.985318px;}
.wsce{word-spacing:-4.841856px;}
.wsd2{word-spacing:-4.770125px;}
.wsa8{word-spacing:-4.483200px;}
.wsd3{word-spacing:-4.440161px;}
.wscd{word-spacing:-4.411469px;}
.ws38{word-spacing:-4.339738px;}
.ws70{word-spacing:-4.196275px;}
.ws33{word-spacing:-4.052813px;}
.wsd6{word-spacing:-3.899766px;}
.wsbc{word-spacing:-3.899443px;}
.ws37{word-spacing:-3.550694px;}
.ws5{word-spacing:-3.547639px;}
.ws5c{word-spacing:-3.263770px;}
.wsc7{word-spacing:-2.761651px;}
.wsc8{word-spacing:-2.503419px;}
.ws13{word-spacing:-1.714911px;}
.ws71{word-spacing:-1.542221px;}
.ws6d{word-spacing:-1.470490px;}
.ws6c{word-spacing:-1.430365px;}
.ws35{word-spacing:-1.255296px;}
.wsd0{word-spacing:-1.183565px;}
.wsd1{word-spacing:-1.140526px;}
.wsac{word-spacing:-0.817736px;}
.wsad{word-spacing:-0.681446px;}
.wsc2{word-spacing:-0.638408px;}
.wsc1{word-spacing:-0.609715px;}
.wsd5{word-spacing:-0.322790px;}
.ws60{word-spacing:-0.179328px;}
.ws15{word-spacing:-0.103292px;}
.ws7{word-spacing:-0.047821px;}
.ws1f{word-spacing:0.000000px;}
.ws4d{word-spacing:0.001442px;}
.ws86{word-spacing:0.390117px;}
.ws83{word-spacing:0.394472px;}
.ws65{word-spacing:0.396117px;}
.ws1b{word-spacing:0.753178px;}
.ws36{word-spacing:1.327027px;}
.ws81{word-spacing:6.786931px;}
.ws29{word-spacing:11.297664px;}
.ws9{word-spacing:21.115797px;}
.ws69{word-spacing:22.861797px;}
.wsa7{word-spacing:24.583591px;}
.ws16{word-spacing:24.646840px;}
.wsa3{word-spacing:26.341797px;}
.wsaa{word-spacing:26.347797px;}
.ws1{word-spacing:27.200395px;}
.ws1d{word-spacing:30.769797px;}
.ws3a{word-spacing:35.112422px;}
.ws68{word-spacing:36.539873px;}
.ws61{word-spacing:36.978679px;}
.ws28{word-spacing:37.081972px;}
.ws0{word-spacing:43.763175px;}
.ws3c{word-spacing:47.351068px;}
.ws89{word-spacing:75.599426px;}
.ws2d{word-spacing:100.315797px;}
.ws3b{word-spacing:111.349207px;}
._28{margin-left:-43.684301px;}
._25{margin-left:-41.675827px;}
._14{margin-left:-39.810816px;}
._12{margin-left:-37.874074px;}
._10{margin-left:-35.865600px;}
._17{margin-left:-33.785395px;}
._15{margin-left:-31.992115px;}
._34{margin-left:-13.700659px;}
._16{margin-left:-12.481229px;}
._3{margin-left:-10.909800px;}
._22{margin-left:-9.683712px;}
._48{margin-left:-8.125300px;}
._4{margin-left:-6.800099px;}
._b{margin-left:-5.432732px;}
._0{margin-left:-3.595275px;}
._5{margin-left:-1.832729px;}
._6{width:1.832729px;}
._1{width:3.471300px;}
._46{width:4.846988px;}
._4b{width:6.105596px;}
._a{width:15.840013px;}
._c{width:17.149105px;}
._4c{width:18.855398px;}
._32{width:19.909024px;}
._8{width:21.645428px;}
._1a{width:23.176344px;}
._29{width:24.198498px;}
._2d{width:25.704886px;}
._d{width:26.901841px;}
._9{width:28.335664px;}
._1f{width:29.969309px;}
._47{width:31.203072px;}
._26{width:32.232425px;}
._1c{width:33.595318px;}
._4e{width:34.717901px;}
._11{width:35.937331px;}
._20{width:37.794286px;}
._7{width:39.141851px;}
._4a{width:40.602422px;}
._3c{width:42.479236px;}
._39{width:44.258150px;}
._45{width:46.222636px;}
._1d{width:47.464555px;}
._23{width:49.121539px;}
._3d{width:50.706792px;}
._3e{width:52.571803px;}
._3a{width:54.152835px;}
._e{width:56.421865px;}
._2{width:58.516200px;}
._2b{width:60.775825px;}
._30{width:62.305747px;}
._3f{width:63.396016px;}
._4d{width:64.636431px;}
._13{width:65.849242px;}
._35{width:67.049865px;}
._44{width:68.072909px;}
._36{width:70.224845px;}
._19{width:71.802931px;}
._41{width:74.241792px;}
._43{width:81.988762px;}
._38{width:93.092732px;}
._37{width:94.756915px;}
._3b{width:96.955466px;}
._2a{width:100.717771px;}
._1b{width:102.095973px;}
._40{width:103.977958px;}
._42{width:106.664294px;}
._49{width:111.452500px;}
._31{width:725.327977px;}
._27{width:971.894744px;}
._21{width:1134.559574px;}
._2e{width:1254.515672px;}
._2c{width:1260.494445px;}
._24{width:1296.334961px;}
._33{width:1481.338928px;}
._2f{width:1645.657190px;}
._18{width:1758.054331px;}
._1e{width:1905.969715px;}
._f{width:2131.636070px;}
.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;}
.y23{bottom:61.467000px;}
.yad{bottom:106.299000px;}
.y156{bottom:115.206000px;}
.yac{bottom:127.968000px;}
.y6c{bottom:131.070000px;}
.y155{bottom:136.875000px;}
.ye6{bottom:140.892000px;}
.yff{bottom:141.796500px;}
.y116{bottom:147.486000px;}
.y6b{bottom:152.739000px;}
.y49{bottom:157.996500px;}
.yab{bottom:161.883000px;}
.y132{bottom:163.512000px;}
.y115{bottom:169.155000px;}
.y154{bottom:170.857500px;}
.ycc{bottom:170.967000px;}
.y22{bottom:171.294000px;}
.ye5{bottom:174.139500px;}
.yfe{bottom:175.044000px;}
.y48{bottom:179.665500px;}
.yaa{bottom:183.552000px;}
.y131{bottom:185.181000px;}
.y6a{bottom:189.351000px;}
.y8c{bottom:190.302000px;}
.y153{bottom:192.526500px;}
.ycb{bottom:192.634500px;}
.y21{bottom:192.961500px;}
.y114{bottom:202.402500px;}
.y69{bottom:211.020000px;}
.y8b{bottom:211.971000px;}
.y20{bottom:214.630500px;}
.ya9{bottom:217.467000px;}
.y47{bottom:219.088500px;}
.y130{bottom:220.725000px;}
.ye4{bottom:225.082500px;}
.yfd{bottom:226.455000px;}
.y152{bottom:226.509000px;}
.yca{bottom:229.248000px;}
.y1f{bottom:236.299500px;}
.ya8{bottom:239.136000px;}
.y12f{bottom:242.394000px;}
.ye3{bottom:246.751500px;}
.y68{bottom:247.632000px;}
.y151{bottom:248.178000px;}
.y8a{bottom:248.583000px;}
.y113{bottom:254.389500px;}
.yfc{bottom:261.952500px;}
.yc9{bottom:262.495500px;}
.y67{bottom:269.301000px;}
.ya7{bottom:272.383500px;}
.y1e{bottom:275.523000px;}
.y46{bottom:278.982000px;}
.ye2{bottom:281.344500px;}
.y12e{bottom:281.817000px;}
.y150{bottom:282.160500px;}
.y89{bottom:285.196500px;}
.y112{bottom:287.637000px;}
.yfb{bottom:295.200000px;}
.y1d{bottom:297.192000px;}
.y45{bottom:300.651000px;}
.ye1{bottom:303.013500px;}
.y14f{bottom:303.829500px;}
.y66{bottom:305.914500px;}
.y88{bottom:306.864000px;}
.yc8{bottom:307.149000px;}
.y1c{bottom:318.861000px;}
.y44{bottom:322.318500px;}
.ya6{bottom:322.975500px;}
.y65{bottom:327.583500px;}
.ye0{bottom:336.261000px;}
.y14e{bottom:337.812000px;}
.y111{bottom:339.622500px;}
.y1b{bottom:340.530000px;}
.y12d{bottom:341.158500px;}
.y87{bottom:343.477500px;}
.y43{bottom:343.987500px;}
.ya5{bottom:344.644500px;}
.yfa{bottom:346.611000px;}
.y14d{bottom:359.481000px;}
.y1a{bottom:362.197500px;}
.y12c{bottom:362.827500px;}
.y64{bottom:364.195500px;}
.y86{bottom:365.146500px;}
.y42{bottom:365.656500px;}
.ya4{bottom:366.313500px;}
.yc7{bottom:367.042500px;}
.y110{bottom:372.870000px;}
.yf9{bottom:382.108500px;}
.y12b{bottom:384.496500px;}
.ydf{bottom:387.204000px;}
.yc6{bottom:388.711500px;}
.y14c{bottom:393.463500px;}
.ya3{bottom:393.649500px;}
.y63{bottom:400.809000px;}
.y19{bottom:401.421000px;}
.y85{bottom:401.758500px;}
.y41{bottom:404.880000px;}
.y12a{bottom:406.165500px;}
.y14b{bottom:415.132500px;}
.yf8{bottom:415.356000px;}
.y10f{bottom:417.523500px;}
.yde{bottom:421.797000px;}
.y18{bottom:423.090000px;}
.yc5{bottom:425.323500px;}
.y40{bottom:426.549000px;}
.ya2{bottom:426.897000px;}
.y129{bottom:427.833000px;}
.y62{bottom:437.421000px;}
.y84{bottom:438.372000px;}
.y17{bottom:444.759000px;}
.y3f{bottom:448.218000px;}
.y14a{bottom:449.115000px;}
.y128{bottom:449.502000px;}
.ydd{bottom:455.044500px;}
.yc4{bottom:458.571000px;}
.y61{bottom:459.090000px;}
.yf7{bottom:460.009500px;}
.y83{bottom:460.041000px;}
.y16{bottom:466.428000px;}
.y3e{bottom:469.887000px;}
.y149{bottom:470.784000px;}
.y10e{bottom:477.417000px;}
.ya1{bottom:477.490500px;}
.y60{bottom:480.759000px;}
.y127{bottom:482.749500px;}
.y15{bottom:488.097000px;}
.y82{bottom:493.288500px;}
.ya0{bottom:499.158000px;}
.y5f{bottom:502.426500px;}
.y148{bottom:504.766500px;}
.ydc{bottom:505.989000px;}
.y3d{bottom:509.110500px;}
.yc3{bottom:510.558000px;}
.y10d{bottom:514.030500px;}
.yf6{bottom:519.328500px;}
.y147{bottom:526.435500px;}
.y14{bottom:527.520000px;}
.y9f{bottom:530.430000px;}
.y3c{bottom:530.778000px;}
.yc2{bottom:532.225500px;}
.y126{bottom:534.184500px;}
.y5e{bottom:535.674000px;}
.y10c{bottom:535.699500px;}
.ydb{bottom:540.582000px;}
.y81{bottom:545.274000px;}
.y3b{bottom:552.447000px;}
.yf5{bottom:554.826000px;}
.y125{bottom:555.853500px;}
.y9e{bottom:556.033500px;}
.yc1{bottom:559.575000px;}
.y146{bottom:560.419500px;}
.yc0{bottom:565.759500px;}
.y80{bottom:566.943000px;}
.y10b{bottom:568.947000px;}
.y3a{bottom:574.116000px;}
.yda{bottom:575.175000px;}
.ybf{bottom:579.300000px;}
.y5d{bottom:580.327500px;}
.y145{bottom:582.087000px;}
.y9d{bottom:586.194000px;}
.y13{bottom:587.413500px;}
.y7f{bottom:588.612000px;}
.yf4{bottom:590.323500px;}
.y124{bottom:591.397500px;}
.y12{bottom:607.737000px;}
.yd9{bottom:608.422500px;}
.y7e{bottom:610.281000px;}
.y123{bottom:613.066500px;}
.y39{bottom:613.339500px;}
.y144{bottom:616.071000px;}
.y9c{bottom:616.353000px;}
.y10a{bottom:620.932500px;}
.yf3{bottom:623.571000px;}
.ybe{bottom:627.939000px;}
.y11{bottom:628.060500px;}
.y7d{bottom:631.948500px;}
.y38{bottom:635.008500px;}
.y143{bottom:637.738500px;}
.y9b{bottom:638.022000px;}
.y5c{bottom:640.221000px;}
.y10{bottom:648.384000px;}
.y122{bottom:648.610500px;}
.yd8{bottom:653.076000px;}
.y7c{bottom:653.617500px;}
.y109{bottom:654.180000px;}
.y37{bottom:656.677500px;}
.y5b{bottom:661.890000px;}
.yf{bottom:668.709000px;}
.y121{bottom:670.279500px;}
.ybb{bottom:671.164500px;}
.y9a{bottom:671.269500px;}
.y142{bottom:671.722500px;}
.yf2{bottom:674.982000px;}
.y5a{bottom:683.559000px;}
.ybd{bottom:686.134500px;}
.ybc{bottom:687.324000px;}
.ye{bottom:689.032500px;}
.y7b{bottom:690.231000px;}
.yba{bottom:692.319000px;}
.y141{bottom:693.390000px;}
.y36{bottom:695.901000px;}
.y59{bottom:705.228000px;}
.y120{bottom:705.823500px;}
.y108{bottom:706.167000px;}
.yd{bottom:709.356000px;}
.yf1{bottom:711.618000px;}
.y7a{bottom:711.900000px;}
.yd7{bottom:711.925500px;}
.yb9{bottom:713.988000px;}
.y99{bottom:715.923000px;}
.y35{bottom:717.570000px;}
.y58{bottom:726.897000px;}
.y140{bottom:727.374000px;}
.y11f{bottom:727.492500px;}
.yc{bottom:729.679500px;}
.y79{bottom:733.567500px;}
.yd6{bottom:733.594500px;}
.yb8{bottom:735.655500px;}
.y34{bottom:739.239000px;}
.y107{bottom:742.779000px;}
.yf0{bottom:747.117000px;}
.y57{bottom:748.566000px;}
.y13f{bottom:749.041500px;}
.yb{bottom:750.003000px;}
.y11e{bottom:760.740000px;}
.y33{bottom:760.906500px;}
.yd5{bottom:768.187500px;}
.yb7{bottom:768.532500px;}
.y78{bottom:770.181000px;}
.y56{bottom:770.233500px;}
.ya{bottom:770.328000px;}
.y98{bottom:774.423000px;}
.y106{bottom:776.026500px;}
.yef{bottom:780.364500px;}
.y13e{bottom:783.025500px;}
.y9{bottom:790.651500px;}
.y77{bottom:791.850000px;}
.y55{bottom:791.902500px;}
.yb6{bottom:792.966000px;}
.y32{bottom:800.130000px;}
.yd4{bottom:801.435000px;}
.y13d{bottom:804.693000px;}
.y97{bottom:808.338000px;}
.y8{bottom:810.975000px;}
.y11d{bottom:812.173500px;}
.y76{bottom:813.517500px;}
.y54{bottom:813.571500px;}
.y105{bottom:820.680000px;}
.y31{bottom:821.799000px;}
.yb5{bottom:829.329000px;}
.y96{bottom:830.007000px;}
.y7{bottom:831.298500px;}
.yee{bottom:831.774000px;}
.y53{bottom:835.240500px;}
.y13c{bottom:838.677000px;}
.y30{bottom:843.468000px;}
.y11c{bottom:847.719000px;}
.y75{bottom:850.131000px;}
.y6{bottom:851.622000px;}
.yd3{bottom:852.378000px;}
.y52{bottom:856.909500px;}
.y13b{bottom:860.344500px;}
.yb4{bottom:862.576500px;}
.y95{bottom:863.922000px;}
.y2f{bottom:865.137000px;}
.yed{bottom:868.411500px;}
.y74{bottom:871.800000px;}
.yd2{bottom:874.047000px;}
.y51{bottom:878.578500px;}
.y104{bottom:880.573500px;}
.y5{bottom:882.027000px;}
.y11b{bottom:883.263000px;}
.y2e{bottom:886.806000px;}
.y13a{bottom:894.328500px;}
.y94{bottom:897.837000px;}
.y50{bottom:900.246000px;}
.yec{bottom:903.909000px;}
.yb3{bottom:907.230000px;}
.y73{bottom:908.412000px;}
.yd1{bottom:908.640000px;}
.y139{bottom:915.996000px;}
.y11a{bottom:916.510500px;}
.y103{bottom:917.187000px;}
.y93{bottom:919.506000px;}
.y4f{bottom:921.915000px;}
.y2d{bottom:926.029500px;}
.y72{bottom:930.081000px;}
.yeb{bottom:937.156500px;}
.y102{bottom:938.856000px;}
.yd0{bottom:941.887500px;}
.y4e{bottom:943.584000px;}
.y2c{bottom:947.698500px;}
.y4{bottom:948.642000px;}
.y138{bottom:949.980000px;}
.y92{bottom:953.421000px;}
.y71{bottom:963.328500px;}
.y4d{bottom:965.253000px;}
.yb2{bottom:967.123500px;}
.y119{bottom:967.944000px;}
.y2b{bottom:969.366000px;}
.y137{bottom:971.647500px;}
.y101{bottom:972.103500px;}
.y3{bottom:975.541500px;}
.y4c{bottom:986.922000px;}
.y91{bottom:987.336000px;}
.yea{bottom:988.567500px;}
.yb1{bottom:988.792500px;}
.y118{bottom:989.613000px;}
.y2a{bottom:991.035000px;}
.ycf{bottom:992.832000px;}
.y136{bottom:1005.631500px;}
.y4b{bottom:1008.591000px;}
.y29{bottom:1012.704000px;}
.y70{bottom:1015.315500px;}
.y90{bottom:1021.251000px;}
.y100{bottom:1024.089000px;}
.y117{bottom:1025.157000px;}
.ye9{bottom:1025.203500px;}
.yb0{bottom:1025.404500px;}
.y135{bottom:1027.299000px;}
.yce{bottom:1027.425000px;}
.y2{bottom:1028.773500px;}
.y4a{bottom:1030.258500px;}
.y6f{bottom:1036.983000px;}
.yaf{bottom:1047.073500px;}
.ycd{bottom:1049.094000px;}
.y28{bottom:1051.927500px;}
.y8f{bottom:1055.166000px;}
.y6e{bottom:1058.652000px;}
.ye8{bottom:1060.702500px;}
.y134{bottom:1061.283000px;}
.y1{bottom:1066.132500px;}
.y27{bottom:1073.596500px;}
.y8e{bottom:1076.835000px;}
.y6d{bottom:1080.321000px;}
.y133{bottom:1082.950500px;}
.yae{bottom:1083.687000px;}
.ye7{bottom:1093.950000px;}
.y26{bottom:1095.265500px;}
.y8d{bottom:1105.354500px;}
.y25{bottom:1116.934500px;}
.y24{bottom:1138.602000px;}
.h5{height:45.883675px;}
.h4{height:46.210948px;}
.h6{height:49.090950px;}
.hc{height:50.570496px;}
.ha{height:53.798400px;}
.h8{height:53.870131px;}
.h3{height:59.823654px;}
.h9{height:64.643977px;}
.h14{height:70.053450px;}
.he{height:71.011248px;}
.h7{height:77.675885px;}
.hb{height:82.489248px;}
.h10{height:84.087450px;}
.h2{height:87.030450px;}
.h11{height:92.405702px;}
.h15{height:100.445702px;}
.h12{height:102.469248px;}
.hd{height:103.004400px;}
.h13{height:125.527248px;}
.hf{height:167.107248px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:106.299000px;}
.x1{left:115.702500px;}
.x19{left:118.986000px;}
.xb{left:127.762500px;}
.x9{left:132.631500px;}
.x7{left:150.196500px;}
.x6{left:174.603000px;}
.x2{left:247.686000px;}
.x15{left:294.873000px;}
.x10{left:303.513000px;}
.xe{left:334.503000px;}
.xf{left:335.860500px;}
.x16{left:363.907500px;}
.x11{left:370.495500px;}
.x3{left:379.032000px;}
.xd{left:382.504500px;}
.x4{left:385.777500px;}
.xc{left:395.859000px;}
.x17{left:406.495500px;}
.x5{left:410.724000px;}
.x18{left:437.679000px;}
.xa{left:442.068000px;}
.x12{left:444.229500px;}
.x13{left:485.583000px;}
.x14{left:517.629000px;}
@media print{
.v8{vertical-align:-70.773333pt;}
.v4{vertical-align:-11.477333pt;}
.v1{vertical-align:-8.730667pt;}
.v12{vertical-align:-7.008000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:8.192000pt;}
.v3{vertical-align:9.562667pt;}
.v15{vertical-align:12.421333pt;}
.vc{vertical-align:17.760000pt;}
.vd{vertical-align:21.989333pt;}
.ve{vertical-align:30.224000pt;}
.v5{vertical-align:43.738667pt;}
.v11{vertical-align:51.642667pt;}
.v14{vertical-align:59.360000pt;}
.v6{vertical-align:60.570667pt;}
.v9{vertical-align:65.648000pt;}
.v2{vertical-align:70.773333pt;}
.v13{vertical-align:73.632000pt;}
.va{vertical-align:75.216000pt;}
.vb{vertical-align:105.440000pt;}
.v10{vertical-align:109.029333pt;}
.v7{vertical-align:145.989333pt;}
.lsa{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000990pt;}
.lsc{letter-spacing:0.001012pt;}
.ls30{letter-spacing:0.001891pt;}
.ls37{letter-spacing:0.002377pt;}
.ls1{letter-spacing:0.002405pt;}
.lse{letter-spacing:0.002452pt;}
.ls3e{letter-spacing:0.002717pt;}
.ls3{letter-spacing:0.002879pt;}
.ls9{letter-spacing:0.003086pt;}
.ls15{letter-spacing:0.003328pt;}
.ls16{letter-spacing:0.003420pt;}
.ls1b{letter-spacing:0.003831pt;}
.ls3f{letter-spacing:0.003847pt;}
.ls14{letter-spacing:0.004024pt;}
.ls21{letter-spacing:0.004243pt;}
.ls2d{letter-spacing:1.730253pt;}
.ls29{letter-spacing:1.735586pt;}
.ls47{letter-spacing:2.283769pt;}
.ls20{letter-spacing:2.289103pt;}
.ls3d{letter-spacing:2.377181pt;}
.ls3b{letter-spacing:2.653258pt;}
.ls48{letter-spacing:2.658591pt;}
.ls40{letter-spacing:2.659608pt;}
.ls0{letter-spacing:3.352213pt;}
.lsd{letter-spacing:3.709752pt;}
.ls12{letter-spacing:3.715086pt;}
.ls38{letter-spacing:3.786350pt;}
.ls36{letter-spacing:3.791684pt;}
.ls34{letter-spacing:6.375925pt;}
.ls3c{letter-spacing:6.378303pt;}
.ls1d{letter-spacing:6.660948pt;}
.ls13{letter-spacing:10.625309pt;}
.ls35{letter-spacing:10.626133pt;}
.ls28{letter-spacing:10.626452pt;}
.ls25{letter-spacing:10.629137pt;}
.ls5{letter-spacing:10.815477pt;}
.ls1c{letter-spacing:14.164905pt;}
.ls31{letter-spacing:14.421017pt;}
.ls4{letter-spacing:16.159477pt;}
.ls42{letter-spacing:17.707976pt;}
.ls49{letter-spacing:17.709119pt;}
.ls17{letter-spacing:17.711572pt;}
.ls4a{letter-spacing:17.713309pt;}
.ls3a{letter-spacing:17.714452pt;}
.ls2e{letter-spacing:18.000990pt;}
.ls2c{letter-spacing:18.002452pt;}
.ls4b{letter-spacing:18.263786pt;}
.lsf{letter-spacing:19.613119pt;}
.ls44{letter-spacing:19.995657pt;}
.ls7{letter-spacing:20.321916pt;}
.ls1f{letter-spacing:20.802452pt;}
.ls50{letter-spacing:20.804267pt;}
.ls4e{letter-spacing:20.807786pt;}
.ls4c{letter-spacing:21.181119pt;}
.ls43{letter-spacing:22.647925pt;}
.ls4d{letter-spacing:22.726345pt;}
.ls2b{letter-spacing:22.931980pt;}
.ls23{letter-spacing:23.089103pt;}
.ls6{letter-spacing:24.578870pt;}
.ls46{letter-spacing:24.919786pt;}
.ls2{letter-spacing:25.805072pt;}
.ls22{letter-spacing:27.466281pt;}
.ls4f{letter-spacing:27.746033pt;}
.ls51{letter-spacing:29.610281pt;}
.ls45{letter-spacing:31.210291pt;}
.lsb{letter-spacing:31.215625pt;}
.ls18{letter-spacing:31.876905pt;}
.ls27{letter-spacing:31.878642pt;}
.ls8{letter-spacing:31.880533pt;}
.ls26{letter-spacing:31.883657pt;}
.ls1a{letter-spacing:32.225103pt;}
.ls1e{letter-spacing:32.234281pt;}
.ls2f{letter-spacing:34.858350pt;}
.ls10{letter-spacing:35.421119pt;}
.ls24{letter-spacing:35.423572pt;}
.ls11{letter-spacing:35.425309pt;}
.ls32{letter-spacing:35.674350pt;}
.ls19{letter-spacing:36.596948pt;}
.ls33{letter-spacing:38.251976pt;}
.ls41{letter-spacing:62.416990pt;}
.ls39{letter-spacing:395.936990pt;}
.ws85{word-spacing:-63.761067pt;}
.ws17{word-spacing:-50.658167pt;}
.ws67{word-spacing:-50.479636pt;}
.ws27{word-spacing:-47.661397pt;}
.ws19{word-spacing:-46.704981pt;}
.ws22{word-spacing:-41.731618pt;}
.ws2c{word-spacing:-40.590295pt;}
.ws24{word-spacing:-40.201353pt;}
.ws6{word-spacing:-37.899668pt;}
.ws73{word-spacing:-35.859224pt;}
.ws26{word-spacing:-35.801839pt;}
.ws23{word-spacing:-35.227989pt;}
.ws20{word-spacing:-35.036706pt;}
.ws21{word-spacing:-32.039936pt;}
.wsc3{word-spacing:-31.874157pt;}
.ws41{word-spacing:-31.211042pt;}
.ws18{word-spacing:-31.147281pt;}
.ws97{word-spacing:-30.005958pt;}
.ws6e{word-spacing:-29.942197pt;}
.ws6a{word-spacing:-29.559631pt;}
.wsd{word-spacing:-28.241478pt;}
.ws6b{word-spacing:-26.435338pt;}
.ws88{word-spacing:-22.864719pt;}
.wsa{word-spacing:-20.761799pt;}
.ws6f{word-spacing:-19.739639pt;}
.ws84{word-spacing:-19.357860pt;}
.ws76{word-spacing:-19.153824pt;}
.ws98{word-spacing:-19.026302pt;}
.wsa1{word-spacing:-18.324931pt;}
.ws7d{word-spacing:-18.133647pt;}
.wsae{word-spacing:-17.814842pt;}
.ws64{word-spacing:-17.343010pt;}
.ws43{word-spacing:-17.049709pt;}
.ws77{word-spacing:-16.609758pt;}
.ws99{word-spacing:-16.558261pt;}
.ws7f{word-spacing:-16.539621pt;}
.ws59{word-spacing:-16.418475pt;}
.ws10{word-spacing:-16.069832pt;}
.wsa2{word-spacing:-15.972147pt;}
.ws7e{word-spacing:-15.780864pt;}
.wsbf{word-spacing:-15.717103pt;}
.wsaf{word-spacing:-15.529609pt;}
.wsb0{word-spacing:-15.525820pt;}
.ws9a{word-spacing:-15.334537pt;}
.ws9f{word-spacing:-15.052256pt;}
.ws93{word-spacing:-14.881833pt;}
.ws44{word-spacing:-14.824448pt;}
.ws11{word-spacing:-14.789831pt;}
.wsc0{word-spacing:-14.467386pt;}
.ws80{word-spacing:-14.441882pt;}
.ws3{word-spacing:-14.324376pt;}
.ws50{word-spacing:-14.307983pt;}
.ws49{word-spacing:-14.186837pt;}
.ws5e{word-spacing:-14.070753pt;}
.ws62{word-spacing:-13.994240pt;}
.ws54{word-spacing:-13.676749pt;}
.ws55{word-spacing:-13.357943pt;}
.ws58{word-spacing:-13.230421pt;}
.ws57{word-spacing:-13.210653pt;}
.ws82{word-spacing:-13.207436pt;}
.wsa5{word-spacing:-12.975377pt;}
.ws94{word-spacing:-12.930529pt;}
.ws95{word-spacing:-12.911616pt;}
.ws45{word-spacing:-12.905240pt;}
.ws8e{word-spacing:-12.841479pt;}
.ws42{word-spacing:-12.720333pt;}
.ws51{word-spacing:-12.465289pt;}
.ws4a{word-spacing:-12.082722pt;}
.ws25{word-spacing:-12.012585pt;}
.ws5a{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-11.948824pt;}
.ws40{word-spacing:-11.700156pt;}
.ws56{word-spacing:-11.572634pt;}
.ws96{word-spacing:-11.566257pt;}
.ws12{word-spacing:-11.415282pt;}
.wsba{word-spacing:-11.317589pt;}
.ws8b{word-spacing:-11.253828pt;}
.ws8a{word-spacing:-11.212769pt;}
.ws46{word-spacing:-11.190067pt;}
.ws4e{word-spacing:-11.183691pt;}
.ws2f{word-spacing:-11.126306pt;}
.ws3e{word-spacing:-11.062545pt;}
.ws92{word-spacing:-10.935023pt;}
.ws4b{word-spacing:-10.807501pt;}
.ws4c{word-spacing:-10.743740pt;}
.ws8{word-spacing:-10.717100pt;}
.wsb{word-spacing:-10.691570pt;}
.ws5b{word-spacing:-10.679979pt;}
.ws5f{word-spacing:-10.616218pt;}
.ws7b{word-spacing:-10.435794pt;}
.ws8d{word-spacing:-10.433811pt;}
.wsab{word-spacing:-10.433483pt;}
.wsa4{word-spacing:-10.429047pt;}
.wsf{word-spacing:-10.426191pt;}
.ws1c{word-spacing:-10.424934pt;}
.wsa9{word-spacing:-10.417758pt;}
.wsa0{word-spacing:-10.416633pt;}
.ws9e{word-spacing:-10.408579pt;}
.ws9d{word-spacing:-10.406760pt;}
.ws7c{word-spacing:-10.403287pt;}
.ws87{word-spacing:-10.402611pt;}
.ws78{word-spacing:-10.361173pt;}
.wsc9{word-spacing:-10.297412pt;}
.ws2a{word-spacing:-10.042368pt;}
.wsb6{word-spacing:-9.978607pt;}
.ws4f{word-spacing:-9.723563pt;}
.ws9b{word-spacing:-9.717187pt;}
.ws2{word-spacing:-9.669826pt;}
.ws3f{word-spacing:-9.596041pt;}
.wsbb{word-spacing:-9.557784pt;}
.ws3d{word-spacing:-9.532279pt;}
.wsb1{word-spacing:-9.462142pt;}
.ws39{word-spacing:-9.340996pt;}
.wsc4{word-spacing:-9.277235pt;}
.wsb9{word-spacing:-9.085952pt;}
.wsb5{word-spacing:-8.958430pt;}
.ws79{word-spacing:-8.952054pt;}
.ws9c{word-spacing:-8.512102pt;}
.wsa6{word-spacing:-8.448341pt;}
.ws47{word-spacing:-8.441965pt;}
.wsb2{word-spacing:-8.257058pt;}
.ws53{word-spacing:-8.186921pt;}
.ws52{word-spacing:-8.129536pt;}
.ws14{word-spacing:-8.040734pt;}
.wsc5{word-spacing:-8.002014pt;}
.wsca{word-spacing:-7.938253pt;}
.ws31{word-spacing:-7.874492pt;}
.ws7a{word-spacing:-7.810731pt;}
.wsb8{word-spacing:-7.619447pt;}
.ws32{word-spacing:-7.555686pt;}
.wsc6{word-spacing:-7.389908pt;}
.wsbd{word-spacing:-7.364403pt;}
.ws48{word-spacing:-7.300642pt;}
.ws5d{word-spacing:-7.236881pt;}
.ws2b{word-spacing:-7.109359pt;}
.ws8f{word-spacing:-7.102983pt;}
.ws2e{word-spacing:-7.045598pt;}
.wscf{word-spacing:-7.007341pt;}
.wsd4{word-spacing:-6.790554pt;}
.wsbe{word-spacing:-6.752297pt;}
.ws66{word-spacing:-6.698023pt;}
.ws4{word-spacing:-6.586187pt;}
.ws72{word-spacing:-6.465372pt;}
.ws8c{word-spacing:-6.291246pt;}
.ws63{word-spacing:-6.280465pt;}
.wsb3{word-spacing:-6.274089pt;}
.ws91{word-spacing:-6.216704pt;}
.ws90{word-spacing:-6.182982pt;}
.wsc{word-spacing:-6.178914pt;}
.wse{word-spacing:-6.004369pt;}
.ws74{word-spacing:-5.645116pt;}
.ws75{word-spacing:-5.642854pt;}
.wsb7{word-spacing:-5.582671pt;}
.wsb4{word-spacing:-5.515332pt;}
.ws30{word-spacing:-5.387810pt;}
.wscb{word-spacing:-5.196527pt;}
.wscc{word-spacing:-4.775704pt;}
.ws1e{word-spacing:-4.558916pt;}
.ws34{word-spacing:-4.431394pt;}
.wsce{word-spacing:-4.303872pt;}
.wsd2{word-spacing:-4.240111pt;}
.wsa8{word-spacing:-3.985067pt;}
.wsd3{word-spacing:-3.946810pt;}
.wscd{word-spacing:-3.921306pt;}
.ws38{word-spacing:-3.857545pt;}
.ws70{word-spacing:-3.730022pt;}
.ws33{word-spacing:-3.602500pt;}
.wsd6{word-spacing:-3.466458pt;}
.wsbc{word-spacing:-3.466172pt;}
.ws37{word-spacing:-3.156173pt;}
.ws5{word-spacing:-3.153457pt;}
.ws5c{word-spacing:-2.901129pt;}
.wsc7{word-spacing:-2.454801pt;}
.wsc8{word-spacing:-2.225261pt;}
.ws13{word-spacing:-1.524365pt;}
.ws71{word-spacing:-1.370863pt;}
.ws6d{word-spacing:-1.307102pt;}
.ws6c{word-spacing:-1.271436pt;}
.ws35{word-spacing:-1.115819pt;}
.wsd0{word-spacing:-1.052058pt;}
.wsd1{word-spacing:-1.013801pt;}
.wsac{word-spacing:-0.726876pt;}
.wsad{word-spacing:-0.605730pt;}
.wsc2{word-spacing:-0.567473pt;}
.wsc1{word-spacing:-0.541969pt;}
.wsd5{word-spacing:-0.286925pt;}
.ws60{word-spacing:-0.159403pt;}
.ws15{word-spacing:-0.091815pt;}
.ws7{word-spacing:-0.042507pt;}
.ws1f{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.001282pt;}
.ws86{word-spacing:0.346771pt;}
.ws83{word-spacing:0.350641pt;}
.ws65{word-spacing:0.352104pt;}
.ws1b{word-spacing:0.669491pt;}
.ws36{word-spacing:1.179580pt;}
.ws81{word-spacing:6.032828pt;}
.ws29{word-spacing:10.042368pt;}
.ws9{word-spacing:18.769597pt;}
.ws69{word-spacing:20.321597pt;}
.wsa7{word-spacing:21.852081pt;}
.ws16{word-spacing:21.908303pt;}
.wsa3{word-spacing:23.414931pt;}
.wsaa{word-spacing:23.420264pt;}
.ws1{word-spacing:24.178129pt;}
.ws1d{word-spacing:27.350931pt;}
.ws3a{word-spacing:31.211042pt;}
.ws68{word-spacing:32.479887pt;}
.ws61{word-spacing:32.869937pt;}
.ws28{word-spacing:32.961753pt;}
.ws0{word-spacing:38.900600pt;}
.ws3c{word-spacing:42.089838pt;}
.ws89{word-spacing:67.199490pt;}
.ws2d{word-spacing:89.169597pt;}
.ws3b{word-spacing:98.977073pt;}
._28{margin-left:-38.830490pt;}
._25{margin-left:-37.045180pt;}
._14{margin-left:-35.387392pt;}
._12{margin-left:-33.665843pt;}
._10{margin-left:-31.880533pt;}
._17{margin-left:-30.031462pt;}
._15{margin-left:-28.437436pt;}
._34{margin-left:-12.178364pt;}
._16{margin-left:-11.094426pt;}
._3{margin-left:-9.697600pt;}
._22{margin-left:-8.607744pt;}
._48{margin-left:-7.222489pt;}
._4{margin-left:-6.044532pt;}
._b{margin-left:-4.829095pt;}
._0{margin-left:-3.195800pt;}
._5{margin-left:-1.629092pt;}
._6{width:1.629092pt;}
._1{width:3.085600pt;}
._46{width:4.308434pt;}
._4b{width:5.427196pt;}
._a{width:14.080012pt;}
._c{width:15.243649pt;}
._4c{width:16.760354pt;}
._32{width:17.696910pt;}
._8{width:19.240380pt;}
._1a{width:20.601195pt;}
._29{width:21.509776pt;}
._2d{width:22.848787pt;}
._d{width:23.912747pt;}
._9{width:25.187257pt;}
._1f{width:26.639386pt;}
._47{width:27.736064pt;}
._26{width:28.651044pt;}
._1c{width:29.862505pt;}
._4e{width:30.860356pt;}
._11{width:31.944294pt;}
._20{width:33.594921pt;}
._7{width:34.792756pt;}
._4a{width:36.091042pt;}
._3c{width:37.759321pt;}
._39{width:39.340578pt;}
._45{width:41.086788pt;}
._1d{width:42.190716pt;}
._23{width:43.663590pt;}
._3d{width:45.072704pt;}
._3e{width:46.730492pt;}
._3a{width:48.135853pt;}
._e{width:50.152769pt;}
._2{width:52.014400pt;}
._2b{width:54.022955pt;}
._30{width:55.382886pt;}
._3f{width:56.352014pt;}
._4d{width:57.454605pt;}
._13{width:58.532659pt;}
._35{width:59.599880pt;}
._44{width:60.509252pt;}
._36{width:62.422084pt;}
._19{width:63.824828pt;}
._41{width:65.992704pt;}
._43{width:72.878899pt;}
._38{width:82.749095pt;}
._37{width:84.228369pt;}
._3b{width:86.182637pt;}
._2a{width:89.526908pt;}
._1b{width:90.751976pt;}
._40{width:92.424851pt;}
._42{width:94.812706pt;}
._49{width:99.068889pt;}
._31{width:644.735980pt;}
._27{width:863.906439pt;}
._21{width:1008.497399pt;}
._2e{width:1115.125042pt;}
._2c{width:1120.439507pt;}
._24{width:1152.297743pt;}
._33{width:1316.745714pt;}
._2f{width:1462.806391pt;}
._18{width:1562.714961pt;}
._1e{width:1694.195302pt;}
._f{width:1894.787618pt;}
.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;}
.y23{bottom:54.637333pt;}
.yad{bottom:94.488000pt;}
.y156{bottom:102.405333pt;}
.yac{bottom:113.749333pt;}
.y6c{bottom:116.506667pt;}
.y155{bottom:121.666667pt;}
.ye6{bottom:125.237333pt;}
.yff{bottom:126.041333pt;}
.y116{bottom:131.098667pt;}
.y6b{bottom:135.768000pt;}
.y49{bottom:140.441333pt;}
.yab{bottom:143.896000pt;}
.y132{bottom:145.344000pt;}
.y115{bottom:150.360000pt;}
.y154{bottom:151.873333pt;}
.ycc{bottom:151.970667pt;}
.y22{bottom:152.261333pt;}
.ye5{bottom:154.790667pt;}
.yfe{bottom:155.594667pt;}
.y48{bottom:159.702667pt;}
.yaa{bottom:163.157333pt;}
.y131{bottom:164.605333pt;}
.y6a{bottom:168.312000pt;}
.y8c{bottom:169.157333pt;}
.y153{bottom:171.134667pt;}
.ycb{bottom:171.230667pt;}
.y21{bottom:171.521333pt;}
.y114{bottom:179.913333pt;}
.y69{bottom:187.573333pt;}
.y8b{bottom:188.418667pt;}
.y20{bottom:190.782667pt;}
.ya9{bottom:193.304000pt;}
.y47{bottom:194.745333pt;}
.y130{bottom:196.200000pt;}
.ye4{bottom:200.073333pt;}
.yfd{bottom:201.293333pt;}
.y152{bottom:201.341333pt;}
.yca{bottom:203.776000pt;}
.y1f{bottom:210.044000pt;}
.ya8{bottom:212.565333pt;}
.y12f{bottom:215.461333pt;}
.ye3{bottom:219.334667pt;}
.y68{bottom:220.117333pt;}
.y151{bottom:220.602667pt;}
.y8a{bottom:220.962667pt;}
.y113{bottom:226.124000pt;}
.yfc{bottom:232.846667pt;}
.yc9{bottom:233.329333pt;}
.y67{bottom:239.378667pt;}
.ya7{bottom:242.118667pt;}
.y1e{bottom:244.909333pt;}
.y46{bottom:247.984000pt;}
.ye2{bottom:250.084000pt;}
.y12e{bottom:250.504000pt;}
.y150{bottom:250.809333pt;}
.y89{bottom:253.508000pt;}
.y112{bottom:255.677333pt;}
.yfb{bottom:262.400000pt;}
.y1d{bottom:264.170667pt;}
.y45{bottom:267.245333pt;}
.ye1{bottom:269.345333pt;}
.y14f{bottom:270.070667pt;}
.y66{bottom:271.924000pt;}
.y88{bottom:272.768000pt;}
.yc8{bottom:273.021333pt;}
.y1c{bottom:283.432000pt;}
.y44{bottom:286.505333pt;}
.ya6{bottom:287.089333pt;}
.y65{bottom:291.185333pt;}
.ye0{bottom:298.898667pt;}
.y14e{bottom:300.277333pt;}
.y111{bottom:301.886667pt;}
.y1b{bottom:302.693333pt;}
.y12d{bottom:303.252000pt;}
.y87{bottom:305.313333pt;}
.y43{bottom:305.766667pt;}
.ya5{bottom:306.350667pt;}
.yfa{bottom:308.098667pt;}
.y14d{bottom:319.538667pt;}
.y1a{bottom:321.953333pt;}
.y12c{bottom:322.513333pt;}
.y64{bottom:323.729333pt;}
.y86{bottom:324.574667pt;}
.y42{bottom:325.028000pt;}
.ya4{bottom:325.612000pt;}
.yc7{bottom:326.260000pt;}
.y110{bottom:331.440000pt;}
.yf9{bottom:339.652000pt;}
.y12b{bottom:341.774667pt;}
.ydf{bottom:344.181333pt;}
.yc6{bottom:345.521333pt;}
.y14c{bottom:349.745333pt;}
.ya3{bottom:349.910667pt;}
.y63{bottom:356.274667pt;}
.y19{bottom:356.818667pt;}
.y85{bottom:357.118667pt;}
.y41{bottom:359.893333pt;}
.y12a{bottom:361.036000pt;}
.y14b{bottom:369.006667pt;}
.yf8{bottom:369.205333pt;}
.y10f{bottom:371.132000pt;}
.yde{bottom:374.930667pt;}
.y18{bottom:376.080000pt;}
.yc5{bottom:378.065333pt;}
.y40{bottom:379.154667pt;}
.ya2{bottom:379.464000pt;}
.y129{bottom:380.296000pt;}
.y62{bottom:388.818667pt;}
.y84{bottom:389.664000pt;}
.y17{bottom:395.341333pt;}
.y3f{bottom:398.416000pt;}
.y14a{bottom:399.213333pt;}
.y128{bottom:399.557333pt;}
.ydd{bottom:404.484000pt;}
.yc4{bottom:407.618667pt;}
.y61{bottom:408.080000pt;}
.yf7{bottom:408.897333pt;}
.y83{bottom:408.925333pt;}
.y16{bottom:414.602667pt;}
.y3e{bottom:417.677333pt;}
.y149{bottom:418.474667pt;}
.y10e{bottom:424.370667pt;}
.ya1{bottom:424.436000pt;}
.y60{bottom:427.341333pt;}
.y127{bottom:429.110667pt;}
.y15{bottom:433.864000pt;}
.y82{bottom:438.478667pt;}
.ya0{bottom:443.696000pt;}
.y5f{bottom:446.601333pt;}
.y148{bottom:448.681333pt;}
.ydc{bottom:449.768000pt;}
.y3d{bottom:452.542667pt;}
.yc3{bottom:453.829333pt;}
.y10d{bottom:456.916000pt;}
.yf6{bottom:461.625333pt;}
.y147{bottom:467.942667pt;}
.y14{bottom:468.906667pt;}
.y9f{bottom:471.493333pt;}
.y3c{bottom:471.802667pt;}
.yc2{bottom:473.089333pt;}
.y126{bottom:474.830667pt;}
.y5e{bottom:476.154667pt;}
.y10c{bottom:476.177333pt;}
.ydb{bottom:480.517333pt;}
.y81{bottom:484.688000pt;}
.y3b{bottom:491.064000pt;}
.yf5{bottom:493.178667pt;}
.y125{bottom:494.092000pt;}
.y9e{bottom:494.252000pt;}
.yc1{bottom:497.400000pt;}
.y146{bottom:498.150667pt;}
.yc0{bottom:502.897333pt;}
.y80{bottom:503.949333pt;}
.y10b{bottom:505.730667pt;}
.y3a{bottom:510.325333pt;}
.yda{bottom:511.266667pt;}
.ybf{bottom:514.933333pt;}
.y5d{bottom:515.846667pt;}
.y145{bottom:517.410667pt;}
.y9d{bottom:521.061333pt;}
.y13{bottom:522.145333pt;}
.y7f{bottom:523.210667pt;}
.yf4{bottom:524.732000pt;}
.y124{bottom:525.686667pt;}
.y12{bottom:540.210667pt;}
.yd9{bottom:540.820000pt;}
.y7e{bottom:542.472000pt;}
.y123{bottom:544.948000pt;}
.y39{bottom:545.190667pt;}
.y144{bottom:547.618667pt;}
.y9c{bottom:547.869333pt;}
.y10a{bottom:551.940000pt;}
.yf3{bottom:554.285333pt;}
.ybe{bottom:558.168000pt;}
.y11{bottom:558.276000pt;}
.y7d{bottom:561.732000pt;}
.y38{bottom:564.452000pt;}
.y143{bottom:566.878667pt;}
.y9b{bottom:567.130667pt;}
.y5c{bottom:569.085333pt;}
.y10{bottom:576.341333pt;}
.y122{bottom:576.542667pt;}
.yd8{bottom:580.512000pt;}
.y7c{bottom:580.993333pt;}
.y109{bottom:581.493333pt;}
.y37{bottom:583.713333pt;}
.y5b{bottom:588.346667pt;}
.yf{bottom:594.408000pt;}
.y121{bottom:595.804000pt;}
.ybb{bottom:596.590667pt;}
.y9a{bottom:596.684000pt;}
.y142{bottom:597.086667pt;}
.yf2{bottom:599.984000pt;}
.y5a{bottom:607.608000pt;}
.ybd{bottom:609.897333pt;}
.ybc{bottom:610.954667pt;}
.ye{bottom:612.473333pt;}
.y7b{bottom:613.538667pt;}
.yba{bottom:615.394667pt;}
.y141{bottom:616.346667pt;}
.y36{bottom:618.578667pt;}
.y59{bottom:626.869333pt;}
.y120{bottom:627.398667pt;}
.y108{bottom:627.704000pt;}
.yd{bottom:630.538667pt;}
.yf1{bottom:632.549333pt;}
.y7a{bottom:632.800000pt;}
.yd7{bottom:632.822667pt;}
.yb9{bottom:634.656000pt;}
.y99{bottom:636.376000pt;}
.y35{bottom:637.840000pt;}
.y58{bottom:646.130667pt;}
.y140{bottom:646.554667pt;}
.y11f{bottom:646.660000pt;}
.yc{bottom:648.604000pt;}
.y79{bottom:652.060000pt;}
.yd6{bottom:652.084000pt;}
.yb8{bottom:653.916000pt;}
.y34{bottom:657.101333pt;}
.y107{bottom:660.248000pt;}
.yf0{bottom:664.104000pt;}
.y57{bottom:665.392000pt;}
.y13f{bottom:665.814667pt;}
.yb{bottom:666.669333pt;}
.y11e{bottom:676.213333pt;}
.y33{bottom:676.361333pt;}
.yd5{bottom:682.833333pt;}
.yb7{bottom:683.140000pt;}
.y78{bottom:684.605333pt;}
.y56{bottom:684.652000pt;}
.ya{bottom:684.736000pt;}
.y98{bottom:688.376000pt;}
.y106{bottom:689.801333pt;}
.yef{bottom:693.657333pt;}
.y13e{bottom:696.022667pt;}
.y9{bottom:702.801333pt;}
.y77{bottom:703.866667pt;}
.y55{bottom:703.913333pt;}
.yb6{bottom:704.858667pt;}
.y32{bottom:711.226667pt;}
.yd4{bottom:712.386667pt;}
.y13d{bottom:715.282667pt;}
.y97{bottom:718.522667pt;}
.y8{bottom:720.866667pt;}
.y11d{bottom:721.932000pt;}
.y76{bottom:723.126667pt;}
.y54{bottom:723.174667pt;}
.y105{bottom:729.493333pt;}
.y31{bottom:730.488000pt;}
.yb5{bottom:737.181333pt;}
.y96{bottom:737.784000pt;}
.y7{bottom:738.932000pt;}
.yee{bottom:739.354667pt;}
.y53{bottom:742.436000pt;}
.y13c{bottom:745.490667pt;}
.y30{bottom:749.749333pt;}
.y11c{bottom:753.528000pt;}
.y75{bottom:755.672000pt;}
.y6{bottom:756.997333pt;}
.yd3{bottom:757.669333pt;}
.y52{bottom:761.697333pt;}
.y13b{bottom:764.750667pt;}
.yb4{bottom:766.734667pt;}
.y95{bottom:767.930667pt;}
.y2f{bottom:769.010667pt;}
.yed{bottom:771.921333pt;}
.y74{bottom:774.933333pt;}
.yd2{bottom:776.930667pt;}
.y51{bottom:780.958667pt;}
.y104{bottom:782.732000pt;}
.y5{bottom:784.024000pt;}
.y11b{bottom:785.122667pt;}
.y2e{bottom:788.272000pt;}
.y13a{bottom:794.958667pt;}
.y94{bottom:798.077333pt;}
.y50{bottom:800.218667pt;}
.yec{bottom:803.474667pt;}
.yb3{bottom:806.426667pt;}
.y73{bottom:807.477333pt;}
.yd1{bottom:807.680000pt;}
.y139{bottom:814.218667pt;}
.y11a{bottom:814.676000pt;}
.y103{bottom:815.277333pt;}
.y93{bottom:817.338667pt;}
.y4f{bottom:819.480000pt;}
.y2d{bottom:823.137333pt;}
.y72{bottom:826.738667pt;}
.yeb{bottom:833.028000pt;}
.y102{bottom:834.538667pt;}
.yd0{bottom:837.233333pt;}
.y4e{bottom:838.741333pt;}
.y2c{bottom:842.398667pt;}
.y4{bottom:843.237333pt;}
.y138{bottom:844.426667pt;}
.y92{bottom:847.485333pt;}
.y71{bottom:856.292000pt;}
.y4d{bottom:858.002667pt;}
.yb2{bottom:859.665333pt;}
.y119{bottom:860.394667pt;}
.y2b{bottom:861.658667pt;}
.y137{bottom:863.686667pt;}
.y101{bottom:864.092000pt;}
.y3{bottom:867.148000pt;}
.y4c{bottom:877.264000pt;}
.y91{bottom:877.632000pt;}
.yea{bottom:878.726667pt;}
.yb1{bottom:878.926667pt;}
.y118{bottom:879.656000pt;}
.y2a{bottom:880.920000pt;}
.ycf{bottom:882.517333pt;}
.y136{bottom:893.894667pt;}
.y4b{bottom:896.525333pt;}
.y29{bottom:900.181333pt;}
.y70{bottom:902.502667pt;}
.y90{bottom:907.778667pt;}
.y100{bottom:910.301333pt;}
.y117{bottom:911.250667pt;}
.ye9{bottom:911.292000pt;}
.yb0{bottom:911.470667pt;}
.y135{bottom:913.154667pt;}
.yce{bottom:913.266667pt;}
.y2{bottom:914.465333pt;}
.y4a{bottom:915.785333pt;}
.y6f{bottom:921.762667pt;}
.yaf{bottom:930.732000pt;}
.ycd{bottom:932.528000pt;}
.y28{bottom:935.046667pt;}
.y8f{bottom:937.925333pt;}
.y6e{bottom:941.024000pt;}
.ye8{bottom:942.846667pt;}
.y134{bottom:943.362667pt;}
.y1{bottom:947.673333pt;}
.y27{bottom:954.308000pt;}
.y8e{bottom:957.186667pt;}
.y6d{bottom:960.285333pt;}
.y133{bottom:962.622667pt;}
.yae{bottom:963.277333pt;}
.ye7{bottom:972.400000pt;}
.y26{bottom:973.569333pt;}
.y8d{bottom:982.537333pt;}
.y25{bottom:992.830667pt;}
.y24{bottom:1012.090667pt;}
.h5{height:40.785489pt;}
.h4{height:41.076398pt;}
.h6{height:43.636400pt;}
.hc{height:44.951552pt;}
.ha{height:47.820800pt;}
.h8{height:47.884561pt;}
.h3{height:53.176581pt;}
.h9{height:57.461313pt;}
.h14{height:62.269733pt;}
.he{height:63.121109pt;}
.h7{height:69.045231pt;}
.hb{height:73.323776pt;}
.h10{height:74.744400pt;}
.h2{height:77.360400pt;}
.h11{height:82.138402pt;}
.h15{height:89.285069pt;}
.h12{height:91.083776pt;}
.hd{height:91.559467pt;}
.h13{height:111.579776pt;}
.hf{height:148.539776pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:94.488000pt;}
.x1{left:102.846667pt;}
.x19{left:105.765333pt;}
.xb{left:113.566667pt;}
.x9{left:117.894667pt;}
.x7{left:133.508000pt;}
.x6{left:155.202667pt;}
.x2{left:220.165333pt;}
.x15{left:262.109333pt;}
.x10{left:269.789333pt;}
.xe{left:297.336000pt;}
.xf{left:298.542667pt;}
.x16{left:323.473333pt;}
.x11{left:329.329333pt;}
.x3{left:336.917333pt;}
.xd{left:340.004000pt;}
.x4{left:342.913333pt;}
.xc{left:351.874667pt;}
.x17{left:361.329333pt;}
.x5{left:365.088000pt;}
.x18{left:389.048000pt;}
.xa{left:392.949333pt;}
.x12{left:394.870667pt;}
.x13{left:431.629333pt;}
.x14{left:460.114667pt;}
}




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