
    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_a767d750cc83eddd43771d50.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_db216343c9a8600f69353c6b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.871094;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a4ce216d87667ecc8caf73b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.821777;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_11789097a791a1cf5a123822.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_d834db8fd21dd00fd91b2ce4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_11911f2cb0a900941ae4b0f8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.059000;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_cf284611f7b27cf398657c8b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.059000;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_337885c66dbc1255a471b476.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.955000;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_55b641ce8d165458c9a552b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.082000;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_f8f22270a5a1bc4147f33b47.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.059000;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_11482035c640c7deeb1f4d78.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_15da8e356ac4c4806860b9de.woff2')format("woff");}.fff{font-family:fff;line-height:0.952000;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_9b029fceba12eb327c0110da.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;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_63e2718e742b4d951cb73441.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895996;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_0c01857fe21a58ce8f72e654.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v1{vertical-align:-54.000000px;}
.v3{vertical-align:-19.979400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v4{vertical-align:36.018000px;}
.ls20{letter-spacing:-5.520000px;}
.ls31{letter-spacing:-3.420000px;}
.ls2f{letter-spacing:-3.024000px;}
.ls45{letter-spacing:-2.784000px;}
.ls1c{letter-spacing:-2.112000px;}
.ls1e{letter-spacing:-1.680000px;}
.ls28{letter-spacing:-1.350000px;}
.lsc{letter-spacing:-1.095120px;}
.ls1b{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.842400px;}
.ls8{letter-spacing:-0.463680px;}
.lsa{letter-spacing:-0.421200px;}
.ls16{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.336960px;}
.ls7{letter-spacing:-0.264960px;}
.ls9{letter-spacing:-0.252720px;}
.ls5{letter-spacing:-0.168480px;}
.ls38{letter-spacing:-0.135383px;}
.ls3d{letter-spacing:-0.135059px;}
.ls3c{letter-spacing:-0.113328px;}
.ls41{letter-spacing:-0.113057px;}
.ls3b{letter-spacing:-0.056664px;}
.ls40{letter-spacing:-0.056528px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.037500px;}
.ls36{letter-spacing:0.045020px;}
.ls35{letter-spacing:0.045128px;}
.ls47{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.084240px;}
.ls3f{letter-spacing:0.090040px;}
.ls3a{letter-spacing:0.090256px;}
.ls3e{letter-spacing:0.113057px;}
.ls39{letter-spacing:0.113328px;}
.ls32{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.168480px;}
.ls19{letter-spacing:0.174600px;}
.ls42{letter-spacing:0.175200px;}
.ls10{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.315000px;}
.ls6{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.336960px;}
.ls21{letter-spacing:0.360000px;}
.ls33{letter-spacing:0.420000px;}
.ls2e{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.486000px;}
.lse{letter-spacing:0.525000px;}
.ls15{letter-spacing:0.540000px;}
.ls24{letter-spacing:0.594000px;}
.ls1f{letter-spacing:0.600000px;}
.ls37{letter-spacing:0.637500px;}
.ls25{letter-spacing:0.648000px;}
.ls43{letter-spacing:0.675000px;}
.ls2a{letter-spacing:0.702000px;}
.ls1d{letter-spacing:0.712500px;}
.ls18{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.756000px;}
.ls17{letter-spacing:0.780000px;}
.ls2d{letter-spacing:0.810000px;}
.ls23{letter-spacing:0.864000px;}
.ls29{letter-spacing:0.918000px;}
.ls30{letter-spacing:0.960000px;}
.ls34{letter-spacing:1.008000px;}
.ls46{letter-spacing:1.104000px;}
.ls22{letter-spacing:1.152000px;}
.ls44{letter-spacing:1.248000px;}
.ls1a{letter-spacing:3.750000px;}
.lsf{letter-spacing:4.687500px;}
.ls11{letter-spacing:5.040000px;}
.ls1{letter-spacing:373.212000px;}
.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;}
}
.ws7{word-spacing:-19.375200px;}
.wsc{word-spacing:-19.206720px;}
.wsb{word-spacing:-19.122480px;}
.ws6{word-spacing:-19.038240px;}
.ws8{word-spacing:-18.785520px;}
.wsa{word-spacing:-18.701280px;}
.ws5{word-spacing:-18.617040px;}
.ws1{word-spacing:-18.195840px;}
.ws9{word-spacing:-17.943120px;}
.ws4{word-spacing:-14.970240px;}
.ws2{word-spacing:-14.705280px;}
.ws3{word-spacing:-14.506560px;}
.ws18{word-spacing:-14.460000px;}
.wsad{word-spacing:-14.220000px;}
.ws17{word-spacing:-14.160000px;}
.ws19{word-spacing:-13.920000px;}
.ws8b{word-spacing:-13.800000px;}
.wsbe{word-spacing:-13.740000px;}
.ws16{word-spacing:-13.320000px;}
.ws75{word-spacing:-13.122000px;}
.ws70{word-spacing:-13.068000px;}
.ws6f{word-spacing:-13.014000px;}
.ws71{word-spacing:-12.960000px;}
.ws72{word-spacing:-12.906000px;}
.ws35{word-spacing:-12.780000px;}
.ws77{word-spacing:-12.744000px;}
.wsbd{word-spacing:-12.192000px;}
.ws53{word-spacing:-12.096000px;}
.ws52{word-spacing:-12.000000px;}
.ws6e{word-spacing:-10.962000px;}
.ws9f{word-spacing:-10.198883px;}
.wsa1{word-spacing:-10.174475px;}
.ws78{word-spacing:-9.288000px;}
.wsbc{word-spacing:-9.225000px;}
.ws9d{word-spacing:-9.187500px;}
.ws34{word-spacing:-9.075000px;}
.ws36{word-spacing:-8.832000px;}
.ws6d{word-spacing:-8.587500px;}
.ws47{word-spacing:-3.960000px;}
.ws56{word-spacing:-3.900000px;}
.ws4b{word-spacing:-3.840000px;}
.wsc1{word-spacing:-3.780000px;}
.wsc0{word-spacing:-3.720000px;}
.ws91{word-spacing:-3.660000px;}
.ws3b{word-spacing:-3.600000px;}
.ws3a{word-spacing:-3.540000px;}
.ws68{word-spacing:-3.480000px;}
.ws41{word-spacing:-3.420000px;}
.ws37{word-spacing:-3.300000px;}
.wsc7{word-spacing:-3.240000px;}
.ws2f{word-spacing:-3.120000px;}
.wsb8{word-spacing:-3.000000px;}
.ws90{word-spacing:-2.940000px;}
.ws48{word-spacing:-2.880000px;}
.ws93{word-spacing:-2.820000px;}
.ws5e{word-spacing:-2.760000px;}
.ws96{word-spacing:-2.700000px;}
.ws46{word-spacing:-2.640000px;}
.ws5b{word-spacing:-2.520000px;}
.ws66{word-spacing:-2.460000px;}
.ws65{word-spacing:-2.400000px;}
.ws7f{word-spacing:-2.340000px;}
.wsb4{word-spacing:-2.280000px;}
.ws7c{word-spacing:-2.160000px;}
.ws67{word-spacing:-2.040000px;}
.ws7b{word-spacing:-1.980000px;}
.ws2d{word-spacing:-1.920000px;}
.ws82{word-spacing:-1.890000px;}
.ws2c{word-spacing:-1.800000px;}
.ws6b{word-spacing:-1.776000px;}
.ws87{word-spacing:-1.728000px;}
.ws9c{word-spacing:-1.632000px;}
.ws20{word-spacing:-1.620000px;}
.ws88{word-spacing:-1.584000px;}
.ws81{word-spacing:-1.566000px;}
.ws1f{word-spacing:-1.560000px;}
.ws86{word-spacing:-1.512000px;}
.ws63{word-spacing:-1.500000px;}
.ws6c{word-spacing:-1.488000px;}
.ws59{word-spacing:-1.440000px;}
.ws1e{word-spacing:-1.380000px;}
.ws1b{word-spacing:-1.320000px;}
.ws8d{word-spacing:-1.260000px;}
.ws84{word-spacing:-1.242000px;}
.ws55{word-spacing:-1.200000px;}
.ws5a{word-spacing:-1.140000px;}
.ws50{word-spacing:-1.104000px;}
.ws4f{word-spacing:-1.080000px;}
.wsb5{word-spacing:-1.020000px;}
.ws1a{word-spacing:-0.937500px;}
.ws44{word-spacing:-0.900000px;}
.wsb6{word-spacing:-0.720000px;}
.ws73{word-spacing:-0.648000px;}
.ws33{word-spacing:-0.600000px;}
.ws83{word-spacing:-0.594000px;}
.ws80{word-spacing:-0.540000px;}
.ws85{word-spacing:-0.486000px;}
.ws7a{word-spacing:-0.480000px;}
.ws14{word-spacing:-0.421200px;}
.ws98{word-spacing:-0.360000px;}
.ws1c{word-spacing:-0.315000px;}
.wsbf{word-spacing:-0.300000px;}
.wse{word-spacing:-0.216000px;}
.ws4e{word-spacing:-0.180000px;}
.ws11{word-spacing:-0.168480px;}
.wsa3{word-spacing:-0.090256px;}
.wsa8{word-spacing:-0.090040px;}
.ws13{word-spacing:-0.084240px;}
.ws27{word-spacing:-0.060000px;}
.wsa4{word-spacing:-0.045128px;}
.wsa9{word-spacing:-0.045020px;}
.ws0{word-spacing:0.000000px;}
.wsaa{word-spacing:0.056528px;}
.wsa5{word-spacing:0.056664px;}
.ws31{word-spacing:0.060000px;}
.wsab{word-spacing:0.113057px;}
.wsa6{word-spacing:0.113328px;}
.wsb7{word-spacing:0.120000px;}
.wsa7{word-spacing:0.135059px;}
.wsa2{word-spacing:0.135383px;}
.wsd{word-spacing:0.168480px;}
.ws58{word-spacing:0.240000px;}
.ws10{word-spacing:0.252720px;}
.ws28{word-spacing:0.300000px;}
.ws12{word-spacing:0.336960px;}
.ws57{word-spacing:0.360000px;}
.ws21{word-spacing:0.420000px;}
.wsf{word-spacing:0.463680px;}
.ws22{word-spacing:0.660000px;}
.wsc9{word-spacing:0.720000px;}
.ws4d{word-spacing:0.780000px;}
.wsc5{word-spacing:0.900000px;}
.ws97{word-spacing:1.020000px;}
.ws64{word-spacing:1.080000px;}
.ws25{word-spacing:1.140000px;}
.wsbb{word-spacing:1.260000px;}
.wsc3{word-spacing:1.500000px;}
.ws3f{word-spacing:1.620000px;}
.ws2e{word-spacing:1.680000px;}
.ws32{word-spacing:1.740000px;}
.ws62{word-spacing:1.800000px;}
.ws3c{word-spacing:1.980000px;}
.ws29{word-spacing:2.100000px;}
.wsc6{word-spacing:2.160000px;}
.wsaf{word-spacing:2.220000px;}
.ws8f{word-spacing:2.280000px;}
.ws49{word-spacing:2.340000px;}
.wsb1{word-spacing:2.400000px;}
.ws61{word-spacing:2.520000px;}
.ws40{word-spacing:2.640000px;}
.wsc8{word-spacing:2.760000px;}
.ws2b{word-spacing:3.000000px;}
.ws26{word-spacing:3.060000px;}
.ws6a{word-spacing:3.300000px;}
.ws99{word-spacing:3.600000px;}
.ws45{word-spacing:3.780000px;}
.ws79{word-spacing:3.900000px;}
.wsc4{word-spacing:4.020000px;}
.wsb3{word-spacing:4.200000px;}
.ws3e{word-spacing:4.260000px;}
.ws92{word-spacing:4.320000px;}
.ws39{word-spacing:4.380000px;}
.ws3d{word-spacing:4.500000px;}
.ws23{word-spacing:4.620000px;}
.ws8c{word-spacing:4.680000px;}
.ws94{word-spacing:4.800000px;}
.ws95{word-spacing:4.920000px;}
.ws69{word-spacing:5.160000px;}
.ws43{word-spacing:5.220000px;}
.wsc2{word-spacing:5.280000px;}
.ws9b{word-spacing:5.340000px;}
.wsb2{word-spacing:5.520000px;}
.ws8e{word-spacing:5.700000px;}
.ws5c{word-spacing:5.760000px;}
.ws89{word-spacing:5.940000px;}
.ws5f{word-spacing:6.000000px;}
.ws7e{word-spacing:6.180000px;}
.ws30{word-spacing:6.240000px;}
.ws42{word-spacing:6.360000px;}
.ws54{word-spacing:6.420000px;}
.ws24{word-spacing:6.660000px;}
.wsae{word-spacing:6.720000px;}
.ws2a{word-spacing:7.200000px;}
.wsb9{word-spacing:7.560000px;}
.ws4a{word-spacing:7.800000px;}
.ws60{word-spacing:8.460000px;}
.ws9a{word-spacing:8.580000px;}
.wsba{word-spacing:10.020000px;}
.ws5d{word-spacing:10.440000px;}
.ws7d{word-spacing:10.620000px;}
.ws4c{word-spacing:12.240000px;}
.wsb0{word-spacing:13.680000px;}
.ws38{word-spacing:106.596000px;}
.ws1d{word-spacing:108.780000px;}
.wsa0{word-spacing:124.888194px;}
.ws9e{word-spacing:153.009799px;}
.wsac{word-spacing:536.295450px;}
.ws51{word-spacing:536.584200px;}
.ws8a{word-spacing:536.940450px;}
.ws15{word-spacing:537.859200px;}
.ws74{word-spacing:583.135200px;}
.ws76{word-spacing:589.507200px;}
._b{margin-left:-2041.293600px;}
._c{margin-left:-21.957984px;}
._1d{margin-left:-20.015160px;}
._5{margin-left:-12.300000px;}
._6{margin-left:-6.372000px;}
._4{margin-left:-4.366440px;}
._3{margin-left:-2.475000px;}
._1{margin-left:-1.398384px;}
._2{width:1.046592px;}
._0{width:2.122848px;}
._a{width:3.185376px;}
._11{width:4.802208px;}
._10{width:6.017448px;}
._e{width:7.718400px;}
._f{width:15.177600px;}
._d{width:106.596000px;}
._7{width:110.160000px;}
._15{width:121.482000px;}
._13{width:123.261768px;}
._19{width:132.312024px;}
._1c{width:138.411000px;}
._9{width:140.460000px;}
._1b{width:152.332732px;}
._1a{width:166.210455px;}
._16{width:174.141000px;}
._18{width:180.520171px;}
._14{width:182.698848px;}
._12{width:184.294800px;}
._17{width:194.771167px;}
._8{width:204.048048px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:5.760000px;}
.fs5{font-size:18.000000px;}
.fs12{font-size:34.980000px;}
.fs11{font-size:37.500000px;}
.fs4{font-size:42.000000px;}
.fs16{font-size:45.019800px;}
.fs14{font-size:45.127800px;}
.fsf{font-size:45.360000px;}
.fs13{font-size:48.000000px;}
.fs10{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs6{font-size:54.000000px;}
.fs17{font-size:56.528400px;}
.fs15{font-size:56.664000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:66.240000px;}
.fsc{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fse{font-size:87.120000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y51{bottom:37.260000px;}
.y8d{bottom:63.764400px;}
.y81{bottom:63.776400px;}
.yf1{bottom:63.779400px;}
.y78{bottom:63.779550px;}
.yb8{bottom:68.031300px;}
.y8c{bottom:78.392400px;}
.y80{bottom:78.404400px;}
.y77{bottom:81.779550px;}
.yb7{bottom:82.659300px;}
.yef{bottom:85.151550px;}
.y8b{bottom:93.020400px;}
.y7f{bottom:93.032400px;}
.y4{bottom:97.125005px;}
.y76{bottom:99.779550px;}
.yb6{bottom:103.659300px;}
.y8a{bottom:107.648400px;}
.y7e{bottom:114.032400px;}
.y75{bottom:117.779550px;}
.y89{bottom:122.276400px;}
.y74{bottom:135.779550px;}
.y88{bottom:136.904400px;}
.yeb{bottom:137.437500px;}
.y20{bottom:139.264499px;}
.yee{bottom:147.048000px;}
.y73{bottom:153.779550px;}
.y87{bottom:157.904400px;}
.y50{bottom:168.660000px;}
.y72{bottom:171.779550px;}
.y86{bottom:172.532400px;}
.yb5{bottom:175.151550px;}
.ye6{bottom:176.750700px;}
.y71{bottom:189.779550px;}
.y17{bottom:196.933500px;}
.yd4{bottom:207.469050px;}
.y70{bottom:207.779550px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.yda{bottom:217.215837px;}
.ye7{bottom:217.877700px;}
.y4f{bottom:220.500000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y85{bottom:225.779550px;}
.ye0{bottom:226.962623px;}
.yb3{bottom:227.629050px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y4e{bottom:235.243980px;}
.y6f{bottom:243.779550px;}
.yb2{bottom:245.624550px;}
.yd1{bottom:249.520800px;}
.yd5{bottom:251.307080px;}
.y4d{bottom:253.605240px;}
.yec{bottom:255.777900px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.ydb{bottom:261.053867px;}
.ye8{bottom:261.715730px;}
.yf0{bottom:261.777300px;}
.y84{bottom:261.779550px;}
.yb1{bottom:263.620050px;}
.ye1{bottom:270.879438px;}
.y4c{bottom:271.787220px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y83{bottom:279.779550px;}
.yb0{bottom:281.615550px;}
.yb4{bottom:281.629050px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y4b{bottom:290.148480px;}
.yd6{bottom:295.145110px;}
.y6e{bottom:297.779550px;}
.yaf{bottom:299.611050px;}
.ydc{bottom:304.970682px;}
.ye9{bottom:305.553761px;}
.y4a{bottom:308.509740px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.ye2{bottom:314.717469px;}
.y6d{bottom:315.779550px;}
.yae{bottom:317.606550px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y49{bottom:326.871000px;}
.y7d{bottom:333.779550px;}
.yad{bottom:335.602050px;}
.yd7{bottom:339.061925px;}
.y48{bottom:345.052980px;}
.ye{bottom:348.133500px;}
.ydd{bottom:348.808712px;}
.yea{bottom:349.391791px;}
.y6c{bottom:351.779550px;}
.ye3{bottom:358.555499px;}
.yac{bottom:361.886550px;}
.y47{bottom:363.414240px;}
.y6b{bottom:369.779550px;}
.yab{bottom:379.882050px;}
.y46{bottom:381.775500px;}
.yd8{bottom:382.899956px;}
.y102{bottom:386.327550px;}
.yd{bottom:386.785499px;}
.y6a{bottom:387.779550px;}
.yde{bottom:392.646742px;}
.y45{bottom:399.957480px;}
.y101{bottom:400.955550px;}
.ye4{bottom:402.393529px;}
.y69{bottom:405.779550px;}
.yaa{bottom:406.166550px;}
.yc{bottom:408.044999px;}
.y100{bottom:415.583550px;}
.y44{bottom:418.318740px;}
.y68{bottom:423.779550px;}
.ya9{bottom:424.162050px;}
.yd9{bottom:426.737986px;}
.yff{bottom:430.211550px;}
.ydf{bottom:436.484773px;}
.y43{bottom:436.680000px;}
.yed{bottom:437.049900px;}
.y67{bottom:441.779550px;}
.ya8{bottom:442.157550px;}
.yfe{bottom:444.839550px;}
.ye5{bottom:446.231559px;}
.y42{bottom:456.655680px;}
.yfd{bottom:459.467550px;}
.y66{bottom:459.779550px;}
.ya7{bottom:468.442050px;}
.yfc{bottom:474.095550px;}
.y65{bottom:477.779550px;}
.y41{bottom:482.222520px;}
.yb{bottom:484.864502px;}
.ya6{bottom:486.437550px;}
.yfb{bottom:488.723550px;}
.y64{bottom:495.779550px;}
.ya{bottom:502.864502px;}
.yfa{bottom:503.351550px;}
.y40{bottom:507.957840px;}
.ya0{bottom:510.197550px;}
.y63{bottom:513.779550px;}
.yf9{bottom:517.979550px;}
.y9{bottom:520.864502px;}
.y9f{bottom:528.193050px;}
.y62{bottom:531.779550px;}
.yf8{bottom:532.607550px;}
.y3f{bottom:533.524680px;}
.y8{bottom:538.864499px;}
.y96{bottom:546.161550px;}
.y9e{bottom:546.188550px;}
.yf7{bottom:547.235550px;}
.y61{bottom:549.779550px;}
.y7{bottom:556.864499px;}
.y3e{bottom:559.260000px;}
.yf6{bottom:561.863550px;}
.y95{bottom:564.157050px;}
.y9d{bottom:564.184050px;}
.yd0{bottom:564.873000px;}
.y60{bottom:567.779550px;}
.yd3{bottom:575.947800px;}
.yf5{bottom:576.491550px;}
.y94{bottom:582.152550px;}
.y9c{bottom:582.179550px;}
.y3d{bottom:584.820000px;}
.y7c{bottom:585.779550px;}
.yf4{bottom:591.119550px;}
.y93{bottom:600.148050px;}
.y9b{bottom:600.175050px;}
.ya5{bottom:600.215550px;}
.y7b{bottom:603.779550px;}
.ycb{bottom:605.721900px;}
.yf3{bottom:605.747550px;}
.y3c{bottom:610.560000px;}
.y92{bottom:618.143550px;}
.y9a{bottom:618.170550px;}
.ya4{bottom:618.211050px;}
.yf2{bottom:620.375550px;}
.y5f{bottom:621.779550px;}
.yb9{bottom:636.004950px;}
.y91{bottom:636.139050px;}
.y99{bottom:636.166050px;}
.ya3{bottom:636.206550px;}
.y3b{bottom:637.557840px;}
.y5e{bottom:639.779550px;}
.ybf{bottom:645.323841px;}
.y6{bottom:645.510000px;}
.ycc{bottom:646.014450px;}
.y90{bottom:654.134550px;}
.y98{bottom:654.161550px;}
.ya2{bottom:654.202050px;}
.yc5{bottom:654.732987px;}
.y5d{bottom:657.779550px;}
.y3a{bottom:663.293160px;}
.y5{bottom:666.771000px;}
.y8f{bottom:672.130050px;}
.y97{bottom:672.157050px;}
.ya1{bottom:672.197550px;}
.y5c{bottom:675.779550px;}
.yba{bottom:678.075342px;}
.yc0{bottom:687.484488px;}
.ycd{bottom:688.084842px;}
.y39{bottom:688.860000px;}
.y5b{bottom:693.779550px;}
.yc6{bottom:696.803379px;}
.y38{bottom:708.840000px;}
.y5a{bottom:711.779550px;}
.y37{bottom:716.760000px;}
.ybb{bottom:720.235989px;}
.yc1{bottom:729.554879px;}
.y59{bottom:729.779550px;}
.yce{bottom:730.155233px;}
.yc7{bottom:738.873770px;}
.y36{bottom:741.420000px;}
.y58{bottom:747.779550px;}
.y3{bottom:752.599495px;}
.ybc{bottom:762.306380px;}
.y35{bottom:764.280000px;}
.y57{bottom:765.779550px;}
.yc2{bottom:771.625271px;}
.ycf{bottom:772.315880px;}
.yc8{bottom:781.034417px;}
.y56{bottom:783.779550px;}
.y34{bottom:788.940000px;}
.y8e{bottom:801.779550px;}
.ybd{bottom:804.376772px;}
.y33{bottom:806.220000px;}
.yc3{bottom:813.785918px;}
.y55{bottom:819.779550px;}
.yc9{bottom:823.104809px;}
.y7a{bottom:837.779550px;}
.ybe{bottom:846.537419px;}
.y82{bottom:855.779550px;}
.yc4{bottom:855.856310px;}
.yd2{bottom:856.467450px;}
.y32{bottom:865.080000px;}
.yca{bottom:865.175200px;}
.y54{bottom:873.779550px;}
.y2{bottom:879.369000px;}
.y79{bottom:891.779550px;}
.y31{bottom:907.200000px;}
.y53{bottom:909.779550px;}
.y30{bottom:936.180000px;}
.y2f{bottom:965.160000px;}
.y1{bottom:966.726000px;}
.y52{bottom:973.955850px;}
.y2e{bottom:992.160000px;}
.y2d{bottom:1008.128340px;}
.y2c{bottom:1025.234640px;}
.y2b{bottom:1042.520220px;}
.y2a{bottom:1059.805800px;}
.y29{bottom:1077.091380px;}
.y28{bottom:1094.376960px;}
.y27{bottom:1111.483260px;}
.y26{bottom:1128.768840px;}
.y25{bottom:1146.054420px;}
.y24{bottom:1163.340000px;}
.y23{bottom:1193.760000px;}
.y22{bottom:1199.880000px;}
.y21{bottom:1205.820000px;}
.h13{height:3.990938px;}
.h9{height:12.471680px;}
.h1a{height:30.337500px;}
.h15{height:31.428633px;}
.h7{height:32.130000px;}
.h17{height:32.152148px;}
.h29{height:32.314017px;}
.h26{height:32.391536px;}
.h25{height:33.696000px;}
.h20{height:38.832000px;}
.h2c{height:39.408000px;}
.h2a{height:40.574584px;}
.h27{height:40.671914px;}
.h10{height:41.405977px;}
.h2d{height:42.120000px;}
.h1b{height:42.420000px;}
.h21{height:43.686000px;}
.h24{height:44.118000px;}
.h22{height:44.334000px;}
.he{height:45.895781px;}
.h6{height:45.900000px;}
.h11{height:47.891250px;}
.h3{height:48.195000px;}
.h1e{height:48.540000px;}
.h16{height:48.781500px;}
.h1f{height:49.260000px;}
.hf{height:49.886719px;}
.hb{height:50.171484px;}
.h1c{height:50.904000px;}
.h1d{height:51.723000px;}
.h2{height:55.080000px;}
.hc{height:57.298008px;}
.h12{height:58.367461px;}
.ha{height:58.651172px;}
.h14{height:60.362930px;}
.hd{height:73.406250px;}
.h5{height:78.030000px;}
.h23{height:79.704000px;}
.h4{height:119.055004px;}
.h28{height:318.472500px;}
.h2b{height:331.830000px;}
.h18{height:1020.472500px;}
.h19{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h8{height:1263.060000px;}
.w4{width:292.860000px;}
.w7{width:516.613500px;}
.w8{width:517.734000px;}
.w2{width:637.794021px;}
.w6{width:701.250000px;}
.w5{width:701.575500px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w3{width:893.340000px;}
.x0{left:0.000000px;}
.x5{left:12.060000px;}
.x7{left:49.140000px;}
.xa{left:60.840000px;}
.xb{left:63.779550px;}
.x1d{left:80.783550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x8{left:107.820000px;}
.xd{left:127.559100px;}
.x3c{left:129.185690px;}
.x4a{left:130.555800px;}
.x29{left:131.701350px;}
.x22{left:136.420650px;}
.xf{left:144.563100px;}
.x58{left:152.868000px;}
.x59{left:153.944700px;}
.x50{left:156.977400px;}
.x51{left:158.735250px;}
.x15{left:180.716100px;}
.x4b{left:191.690400px;}
.x4c{left:193.225200px;}
.x3b{left:197.306104px;}
.x24{left:201.706200px;}
.x4{left:203.484001px;}
.x3d{left:212.318250px;}
.x3a{left:220.716150px;}
.x39{left:241.837950px;}
.x3e{left:254.274600px;}
.x33{left:259.314803px;}
.x6{left:260.640000px;}
.x2d{left:264.910650px;}
.xe{left:272.557200px;}
.x46{left:282.040562px;}
.x34{left:287.305321px;}
.x32{left:292.822194px;}
.x1c{left:298.123500px;}
.x44{left:303.616301px;}
.x4e{left:306.748200px;}
.x4f{left:308.114550px;}
.x3f{left:313.340578px;}
.x2e{left:318.014789px;}
.x31{left:323.610636px;}
.x1f{left:325.960650px;}
.x47{left:327.994523px;}
.x36{left:329.217765px;}
.x48{left:337.808839px;}
.x23{left:346.035150px;}
.x42{left:347.533116px;}
.x55{left:351.164100px;}
.x41{left:352.440274px;}
.x25{left:353.981100px;}
.x26{left:355.364100px;}
.x45{left:357.268647px;}
.x10{left:359.665950px;}
.x38{left:362.736438px;}
.x30{left:373.916851px;}
.x40{left:376.807241px;}
.x43{left:386.632812px;}
.x17{left:389.780700px;}
.x18{left:391.178400px;}
.x13{left:392.360850px;}
.x14{left:393.418650px;}
.x9{left:399.780000px;}
.x49{left:411.011034px;}
.x37{left:413.121627px;}
.x35{left:418.706192px;}
.x2f{left:424.223066px;}
.x20{left:436.498650px;}
.x19{left:440.671350px;}
.x1a{left:442.069200px;}
.x52{left:443.189700px;}
.x53{left:444.781050px;}
.x3{left:454.959000px;}
.x1b{left:473.806050px;}
.x2a{left:475.706250px;}
.x16{left:494.927100px;}
.x54{left:499.669200px;}
.x11{left:510.388500px;}
.x4d{left:511.587150px;}
.x56{left:512.835300px;}
.x57{left:514.117050px;}
.x2b{left:517.767000px;}
.x2c{left:519.459000px;}
.x27{left:539.332500px;}
.x28{left:540.645150px;}
.x21{left:544.498650px;}
.x1e{left:545.932950px;}
.x12{left:562.098900px;}
.xc{left:623.426250px;}
@media print{
.v1{vertical-align:-48.000000pt;}
.v3{vertical-align:-17.759467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v4{vertical-align:32.016000pt;}
.ls20{letter-spacing:-4.906667pt;}
.ls31{letter-spacing:-3.040000pt;}
.ls2f{letter-spacing:-2.688000pt;}
.ls45{letter-spacing:-2.474667pt;}
.ls1c{letter-spacing:-1.877333pt;}
.ls1e{letter-spacing:-1.493333pt;}
.ls28{letter-spacing:-1.200000pt;}
.lsc{letter-spacing:-0.973440pt;}
.ls1b{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.748800pt;}
.ls8{letter-spacing:-0.412160pt;}
.lsa{letter-spacing:-0.374400pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.299520pt;}
.ls7{letter-spacing:-0.235520pt;}
.ls9{letter-spacing:-0.224640pt;}
.ls5{letter-spacing:-0.149760pt;}
.ls38{letter-spacing:-0.120341pt;}
.ls3d{letter-spacing:-0.120053pt;}
.ls3c{letter-spacing:-0.100736pt;}
.ls41{letter-spacing:-0.100495pt;}
.ls3b{letter-spacing:-0.050368pt;}
.ls40{letter-spacing:-0.050247pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.033333pt;}
.ls36{letter-spacing:0.040018pt;}
.ls35{letter-spacing:0.040114pt;}
.ls47{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.074880pt;}
.ls3f{letter-spacing:0.080035pt;}
.ls3a{letter-spacing:0.080227pt;}
.ls3e{letter-spacing:0.100495pt;}
.ls39{letter-spacing:0.100736pt;}
.ls32{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.149760pt;}
.ls19{letter-spacing:0.155200pt;}
.ls42{letter-spacing:0.155733pt;}
.ls10{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.280000pt;}
.ls6{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.299520pt;}
.ls21{letter-spacing:0.320000pt;}
.ls33{letter-spacing:0.373333pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.432000pt;}
.lse{letter-spacing:0.466667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls24{letter-spacing:0.528000pt;}
.ls1f{letter-spacing:0.533333pt;}
.ls37{letter-spacing:0.566667pt;}
.ls25{letter-spacing:0.576000pt;}
.ls43{letter-spacing:0.600000pt;}
.ls2a{letter-spacing:0.624000pt;}
.ls1d{letter-spacing:0.633333pt;}
.ls18{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.672000pt;}
.ls17{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:0.720000pt;}
.ls23{letter-spacing:0.768000pt;}
.ls29{letter-spacing:0.816000pt;}
.ls30{letter-spacing:0.853333pt;}
.ls34{letter-spacing:0.896000pt;}
.ls46{letter-spacing:0.981333pt;}
.ls22{letter-spacing:1.024000pt;}
.ls44{letter-spacing:1.109333pt;}
.ls1a{letter-spacing:3.333333pt;}
.lsf{letter-spacing:4.166667pt;}
.ls11{letter-spacing:4.480000pt;}
.ls1{letter-spacing:331.744000pt;}
.ws7{word-spacing:-17.222400pt;}
.wsc{word-spacing:-17.072640pt;}
.wsb{word-spacing:-16.997760pt;}
.ws6{word-spacing:-16.922880pt;}
.ws8{word-spacing:-16.698240pt;}
.wsa{word-spacing:-16.623360pt;}
.ws5{word-spacing:-16.548480pt;}
.ws1{word-spacing:-16.174080pt;}
.ws9{word-spacing:-15.949440pt;}
.ws4{word-spacing:-13.306880pt;}
.ws2{word-spacing:-13.071360pt;}
.ws3{word-spacing:-12.894720pt;}
.ws18{word-spacing:-12.853333pt;}
.wsad{word-spacing:-12.640000pt;}
.ws17{word-spacing:-12.586667pt;}
.ws19{word-spacing:-12.373333pt;}
.ws8b{word-spacing:-12.266667pt;}
.wsbe{word-spacing:-12.213333pt;}
.ws16{word-spacing:-11.840000pt;}
.ws75{word-spacing:-11.664000pt;}
.ws70{word-spacing:-11.616000pt;}
.ws6f{word-spacing:-11.568000pt;}
.ws71{word-spacing:-11.520000pt;}
.ws72{word-spacing:-11.472000pt;}
.ws35{word-spacing:-11.360000pt;}
.ws77{word-spacing:-11.328000pt;}
.wsbd{word-spacing:-10.837333pt;}
.ws53{word-spacing:-10.752000pt;}
.ws52{word-spacing:-10.666667pt;}
.ws6e{word-spacing:-9.744000pt;}
.ws9f{word-spacing:-9.065674pt;}
.wsa1{word-spacing:-9.043978pt;}
.ws78{word-spacing:-8.256000pt;}
.wsbc{word-spacing:-8.200000pt;}
.ws9d{word-spacing:-8.166667pt;}
.ws34{word-spacing:-8.066667pt;}
.ws36{word-spacing:-7.850667pt;}
.ws6d{word-spacing:-7.633333pt;}
.ws47{word-spacing:-3.520000pt;}
.ws56{word-spacing:-3.466667pt;}
.ws4b{word-spacing:-3.413333pt;}
.wsc1{word-spacing:-3.360000pt;}
.wsc0{word-spacing:-3.306667pt;}
.ws91{word-spacing:-3.253333pt;}
.ws3b{word-spacing:-3.200000pt;}
.ws3a{word-spacing:-3.146667pt;}
.ws68{word-spacing:-3.093333pt;}
.ws41{word-spacing:-3.040000pt;}
.ws37{word-spacing:-2.933333pt;}
.wsc7{word-spacing:-2.880000pt;}
.ws2f{word-spacing:-2.773333pt;}
.wsb8{word-spacing:-2.666667pt;}
.ws90{word-spacing:-2.613333pt;}
.ws48{word-spacing:-2.560000pt;}
.ws93{word-spacing:-2.506667pt;}
.ws5e{word-spacing:-2.453333pt;}
.ws96{word-spacing:-2.400000pt;}
.ws46{word-spacing:-2.346667pt;}
.ws5b{word-spacing:-2.240000pt;}
.ws66{word-spacing:-2.186667pt;}
.ws65{word-spacing:-2.133333pt;}
.ws7f{word-spacing:-2.080000pt;}
.wsb4{word-spacing:-2.026667pt;}
.ws7c{word-spacing:-1.920000pt;}
.ws67{word-spacing:-1.813333pt;}
.ws7b{word-spacing:-1.760000pt;}
.ws2d{word-spacing:-1.706667pt;}
.ws82{word-spacing:-1.680000pt;}
.ws2c{word-spacing:-1.600000pt;}
.ws6b{word-spacing:-1.578667pt;}
.ws87{word-spacing:-1.536000pt;}
.ws9c{word-spacing:-1.450667pt;}
.ws20{word-spacing:-1.440000pt;}
.ws88{word-spacing:-1.408000pt;}
.ws81{word-spacing:-1.392000pt;}
.ws1f{word-spacing:-1.386667pt;}
.ws86{word-spacing:-1.344000pt;}
.ws63{word-spacing:-1.333333pt;}
.ws6c{word-spacing:-1.322667pt;}
.ws59{word-spacing:-1.280000pt;}
.ws1e{word-spacing:-1.226667pt;}
.ws1b{word-spacing:-1.173333pt;}
.ws8d{word-spacing:-1.120000pt;}
.ws84{word-spacing:-1.104000pt;}
.ws55{word-spacing:-1.066667pt;}
.ws5a{word-spacing:-1.013333pt;}
.ws50{word-spacing:-0.981333pt;}
.ws4f{word-spacing:-0.960000pt;}
.wsb5{word-spacing:-0.906667pt;}
.ws1a{word-spacing:-0.833333pt;}
.ws44{word-spacing:-0.800000pt;}
.wsb6{word-spacing:-0.640000pt;}
.ws73{word-spacing:-0.576000pt;}
.ws33{word-spacing:-0.533333pt;}
.ws83{word-spacing:-0.528000pt;}
.ws80{word-spacing:-0.480000pt;}
.ws85{word-spacing:-0.432000pt;}
.ws7a{word-spacing:-0.426667pt;}
.ws14{word-spacing:-0.374400pt;}
.ws98{word-spacing:-0.320000pt;}
.ws1c{word-spacing:-0.280000pt;}
.wsbf{word-spacing:-0.266667pt;}
.wse{word-spacing:-0.192000pt;}
.ws4e{word-spacing:-0.160000pt;}
.ws11{word-spacing:-0.149760pt;}
.wsa3{word-spacing:-0.080227pt;}
.wsa8{word-spacing:-0.080035pt;}
.ws13{word-spacing:-0.074880pt;}
.ws27{word-spacing:-0.053333pt;}
.wsa4{word-spacing:-0.040114pt;}
.wsa9{word-spacing:-0.040018pt;}
.ws0{word-spacing:0.000000pt;}
.wsaa{word-spacing:0.050247pt;}
.wsa5{word-spacing:0.050368pt;}
.ws31{word-spacing:0.053333pt;}
.wsab{word-spacing:0.100495pt;}
.wsa6{word-spacing:0.100736pt;}
.wsb7{word-spacing:0.106667pt;}
.wsa7{word-spacing:0.120053pt;}
.wsa2{word-spacing:0.120341pt;}
.wsd{word-spacing:0.149760pt;}
.ws58{word-spacing:0.213333pt;}
.ws10{word-spacing:0.224640pt;}
.ws28{word-spacing:0.266667pt;}
.ws12{word-spacing:0.299520pt;}
.ws57{word-spacing:0.320000pt;}
.ws21{word-spacing:0.373333pt;}
.wsf{word-spacing:0.412160pt;}
.ws22{word-spacing:0.586667pt;}
.wsc9{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.693333pt;}
.wsc5{word-spacing:0.800000pt;}
.ws97{word-spacing:0.906667pt;}
.ws64{word-spacing:0.960000pt;}
.ws25{word-spacing:1.013333pt;}
.wsbb{word-spacing:1.120000pt;}
.wsc3{word-spacing:1.333333pt;}
.ws3f{word-spacing:1.440000pt;}
.ws2e{word-spacing:1.493333pt;}
.ws32{word-spacing:1.546667pt;}
.ws62{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.760000pt;}
.ws29{word-spacing:1.866667pt;}
.wsc6{word-spacing:1.920000pt;}
.wsaf{word-spacing:1.973333pt;}
.ws8f{word-spacing:2.026667pt;}
.ws49{word-spacing:2.080000pt;}
.wsb1{word-spacing:2.133333pt;}
.ws61{word-spacing:2.240000pt;}
.ws40{word-spacing:2.346667pt;}
.wsc8{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.666667pt;}
.ws26{word-spacing:2.720000pt;}
.ws6a{word-spacing:2.933333pt;}
.ws99{word-spacing:3.200000pt;}
.ws45{word-spacing:3.360000pt;}
.ws79{word-spacing:3.466667pt;}
.wsc4{word-spacing:3.573333pt;}
.wsb3{word-spacing:3.733333pt;}
.ws3e{word-spacing:3.786667pt;}
.ws92{word-spacing:3.840000pt;}
.ws39{word-spacing:3.893333pt;}
.ws3d{word-spacing:4.000000pt;}
.ws23{word-spacing:4.106667pt;}
.ws8c{word-spacing:4.160000pt;}
.ws94{word-spacing:4.266667pt;}
.ws95{word-spacing:4.373333pt;}
.ws69{word-spacing:4.586667pt;}
.ws43{word-spacing:4.640000pt;}
.wsc2{word-spacing:4.693333pt;}
.ws9b{word-spacing:4.746667pt;}
.wsb2{word-spacing:4.906667pt;}
.ws8e{word-spacing:5.066667pt;}
.ws5c{word-spacing:5.120000pt;}
.ws89{word-spacing:5.280000pt;}
.ws5f{word-spacing:5.333333pt;}
.ws7e{word-spacing:5.493333pt;}
.ws30{word-spacing:5.546667pt;}
.ws42{word-spacing:5.653333pt;}
.ws54{word-spacing:5.706667pt;}
.ws24{word-spacing:5.920000pt;}
.wsae{word-spacing:5.973333pt;}
.ws2a{word-spacing:6.400000pt;}
.wsb9{word-spacing:6.720000pt;}
.ws4a{word-spacing:6.933333pt;}
.ws60{word-spacing:7.520000pt;}
.ws9a{word-spacing:7.626667pt;}
.wsba{word-spacing:8.906667pt;}
.ws5d{word-spacing:9.280000pt;}
.ws7d{word-spacing:9.440000pt;}
.ws4c{word-spacing:10.880000pt;}
.wsb0{word-spacing:12.160000pt;}
.ws38{word-spacing:94.752000pt;}
.ws1d{word-spacing:96.693333pt;}
.wsa0{word-spacing:111.011728pt;}
.ws9e{word-spacing:136.008710pt;}
.wsac{word-spacing:476.707067pt;}
.ws51{word-spacing:476.963733pt;}
.ws8a{word-spacing:477.280400pt;}
.ws15{word-spacing:478.097067pt;}
.ws74{word-spacing:518.342400pt;}
.ws76{word-spacing:524.006400pt;}
._b{margin-left:-1814.483200pt;}
._c{margin-left:-19.518208pt;}
._1d{margin-left:-17.791253pt;}
._5{margin-left:-10.933333pt;}
._6{margin-left:-5.664000pt;}
._4{margin-left:-3.881280pt;}
._3{margin-left:-2.200000pt;}
._1{margin-left:-1.243008pt;}
._2{width:0.930304pt;}
._0{width:1.886976pt;}
._a{width:2.831445pt;}
._11{width:4.268629pt;}
._10{width:5.348843pt;}
._e{width:6.860800pt;}
._f{width:13.491200pt;}
._d{width:94.752000pt;}
._7{width:97.920000pt;}
._15{width:107.984000pt;}
._13{width:109.566016pt;}
._19{width:117.610688pt;}
._1c{width:123.032000pt;}
._9{width:124.853333pt;}
._1b{width:135.406873pt;}
._1a{width:147.742626pt;}
._16{width:154.792000pt;}
._18{width:160.462374pt;}
._14{width:162.398976pt;}
._12{width:163.817600pt;}
._17{width:173.129926pt;}
._8{width:181.376043pt;}
.fsd{font-size:5.120000pt;}
.fs5{font-size:16.000000pt;}
.fs12{font-size:31.093333pt;}
.fs11{font-size:33.333333pt;}
.fs4{font-size:37.333333pt;}
.fs16{font-size:40.017600pt;}
.fs14{font-size:40.113600pt;}
.fsf{font-size:40.320000pt;}
.fs13{font-size:42.666667pt;}
.fs10{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs6{font-size:48.000000pt;}
.fs17{font-size:50.247467pt;}
.fs15{font-size:50.368000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:58.880000pt;}
.fsc{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fse{font-size:77.440000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:33.120000pt;}
.y8d{bottom:56.679467pt;}
.y81{bottom:56.690133pt;}
.yf1{bottom:56.692800pt;}
.y78{bottom:56.692933pt;}
.yb8{bottom:60.472267pt;}
.y8c{bottom:69.682133pt;}
.y80{bottom:69.692800pt;}
.y77{bottom:72.692933pt;}
.yb7{bottom:73.474933pt;}
.yef{bottom:75.690267pt;}
.y8b{bottom:82.684800pt;}
.y7f{bottom:82.695467pt;}
.y4{bottom:86.333337pt;}
.y76{bottom:88.692933pt;}
.yb6{bottom:92.141600pt;}
.y8a{bottom:95.687467pt;}
.y7e{bottom:101.362133pt;}
.y75{bottom:104.692933pt;}
.y89{bottom:108.690133pt;}
.y74{bottom:120.692933pt;}
.y88{bottom:121.692800pt;}
.yeb{bottom:122.166667pt;}
.y20{bottom:123.790666pt;}
.yee{bottom:130.709333pt;}
.y73{bottom:136.692933pt;}
.y87{bottom:140.359467pt;}
.y50{bottom:149.920000pt;}
.y72{bottom:152.692933pt;}
.y86{bottom:153.362133pt;}
.yb5{bottom:155.690267pt;}
.ye6{bottom:157.111733pt;}
.y71{bottom:168.692933pt;}
.y17{bottom:175.052000pt;}
.yd4{bottom:184.416933pt;}
.y70{bottom:184.692933pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.yda{bottom:193.080744pt;}
.ye7{bottom:193.669067pt;}
.y4f{bottom:196.000000pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y85{bottom:200.692933pt;}
.ye0{bottom:201.744554pt;}
.yb3{bottom:202.336933pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y4e{bottom:209.105760pt;}
.y6f{bottom:216.692933pt;}
.yb2{bottom:218.332933pt;}
.yd1{bottom:221.796267pt;}
.yd5{bottom:223.384071pt;}
.y4d{bottom:225.426880pt;}
.yec{bottom:227.358133pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.ydb{bottom:232.047882pt;}
.ye8{bottom:232.636205pt;}
.yf0{bottom:232.690933pt;}
.y84{bottom:232.692933pt;}
.yb1{bottom:234.328933pt;}
.ye1{bottom:240.781723pt;}
.y4c{bottom:241.588640pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y83{bottom:248.692933pt;}
.yb0{bottom:250.324933pt;}
.yb4{bottom:250.336933pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y4b{bottom:257.909760pt;}
.yd6{bottom:262.351209pt;}
.y6e{bottom:264.692933pt;}
.yaf{bottom:266.320933pt;}
.ydc{bottom:271.085051pt;}
.ye9{bottom:271.603343pt;}
.y4a{bottom:274.230880pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.ye2{bottom:279.748861pt;}
.y6d{bottom:280.692933pt;}
.yae{bottom:282.316933pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y49{bottom:290.552000pt;}
.y7d{bottom:296.692933pt;}
.yad{bottom:298.312933pt;}
.yd7{bottom:301.388378pt;}
.y48{bottom:306.713760pt;}
.ye{bottom:309.452000pt;}
.ydd{bottom:310.052189pt;}
.yea{bottom:310.570481pt;}
.y6c{bottom:312.692933pt;}
.ye3{bottom:318.715999pt;}
.yac{bottom:321.676933pt;}
.y47{bottom:323.034880pt;}
.y6b{bottom:328.692933pt;}
.yab{bottom:337.672933pt;}
.y46{bottom:339.356000pt;}
.yd8{bottom:340.355516pt;}
.y102{bottom:343.402267pt;}
.yd{bottom:343.809333pt;}
.y6a{bottom:344.692933pt;}
.yde{bottom:349.019327pt;}
.y45{bottom:355.517760pt;}
.y101{bottom:356.404933pt;}
.ye4{bottom:357.683137pt;}
.y69{bottom:360.692933pt;}
.yaa{bottom:361.036933pt;}
.yc{bottom:362.706666pt;}
.y100{bottom:369.407600pt;}
.y44{bottom:371.838880pt;}
.y68{bottom:376.692933pt;}
.ya9{bottom:377.032933pt;}
.yd9{bottom:379.322654pt;}
.yff{bottom:382.410267pt;}
.ydf{bottom:387.986465pt;}
.y43{bottom:388.160000pt;}
.yed{bottom:388.488800pt;}
.y67{bottom:392.692933pt;}
.ya8{bottom:393.028933pt;}
.yfe{bottom:395.412933pt;}
.ye5{bottom:396.650275pt;}
.y42{bottom:405.916160pt;}
.yfd{bottom:408.415600pt;}
.y66{bottom:408.692933pt;}
.ya7{bottom:416.392933pt;}
.yfc{bottom:421.418267pt;}
.y65{bottom:424.692933pt;}
.y41{bottom:428.642240pt;}
.yb{bottom:430.990669pt;}
.ya6{bottom:432.388933pt;}
.yfb{bottom:434.420933pt;}
.y64{bottom:440.692933pt;}
.ya{bottom:446.990669pt;}
.yfa{bottom:447.423600pt;}
.y40{bottom:451.518080pt;}
.ya0{bottom:453.508933pt;}
.y63{bottom:456.692933pt;}
.yf9{bottom:460.426267pt;}
.y9{bottom:462.990669pt;}
.y9f{bottom:469.504933pt;}
.y62{bottom:472.692933pt;}
.yf8{bottom:473.428933pt;}
.y3f{bottom:474.244160pt;}
.y8{bottom:478.990666pt;}
.y96{bottom:485.476933pt;}
.y9e{bottom:485.500933pt;}
.yf7{bottom:486.431600pt;}
.y61{bottom:488.692933pt;}
.y7{bottom:494.990666pt;}
.y3e{bottom:497.120000pt;}
.yf6{bottom:499.434267pt;}
.y95{bottom:501.472933pt;}
.y9d{bottom:501.496933pt;}
.yd0{bottom:502.109333pt;}
.y60{bottom:504.692933pt;}
.yd3{bottom:511.953600pt;}
.yf5{bottom:512.436933pt;}
.y94{bottom:517.468933pt;}
.y9c{bottom:517.492933pt;}
.y3d{bottom:519.840000pt;}
.y7c{bottom:520.692933pt;}
.yf4{bottom:525.439600pt;}
.y93{bottom:533.464933pt;}
.y9b{bottom:533.488933pt;}
.ya5{bottom:533.524933pt;}
.y7b{bottom:536.692933pt;}
.ycb{bottom:538.419467pt;}
.yf3{bottom:538.442267pt;}
.y3c{bottom:542.720000pt;}
.y92{bottom:549.460933pt;}
.y9a{bottom:549.484933pt;}
.ya4{bottom:549.520933pt;}
.yf2{bottom:551.444933pt;}
.y5f{bottom:552.692933pt;}
.yb9{bottom:565.337733pt;}
.y91{bottom:565.456933pt;}
.y99{bottom:565.480933pt;}
.ya3{bottom:565.516933pt;}
.y3b{bottom:566.718080pt;}
.y5e{bottom:568.692933pt;}
.ybf{bottom:573.621192pt;}
.y6{bottom:573.786667pt;}
.ycc{bottom:574.235067pt;}
.y90{bottom:581.452933pt;}
.y98{bottom:581.476933pt;}
.ya2{bottom:581.512933pt;}
.yc5{bottom:581.984877pt;}
.y5d{bottom:584.692933pt;}
.y3a{bottom:589.593920pt;}
.y5{bottom:592.685334pt;}
.y8f{bottom:597.448933pt;}
.y97{bottom:597.472933pt;}
.ya1{bottom:597.508933pt;}
.y5c{bottom:600.692933pt;}
.yba{bottom:602.733637pt;}
.yc0{bottom:611.097323pt;}
.ycd{bottom:611.630970pt;}
.y39{bottom:612.320000pt;}
.y5b{bottom:616.692933pt;}
.yc6{bottom:619.380781pt;}
.y38{bottom:630.080000pt;}
.y5a{bottom:632.692933pt;}
.y37{bottom:637.120000pt;}
.ybb{bottom:640.209768pt;}
.yc1{bottom:648.493226pt;}
.y59{bottom:648.692933pt;}
.yce{bottom:649.026874pt;}
.yc7{bottom:656.776685pt;}
.y36{bottom:659.040000pt;}
.y58{bottom:664.692933pt;}
.y3{bottom:668.977329pt;}
.ybc{bottom:677.605671pt;}
.y35{bottom:679.360000pt;}
.y57{bottom:680.692933pt;}
.yc2{bottom:685.889130pt;}
.ycf{bottom:686.503005pt;}
.yc8{bottom:694.252815pt;}
.y56{bottom:696.692933pt;}
.y34{bottom:701.280000pt;}
.y8e{bottom:712.692933pt;}
.ybd{bottom:715.001575pt;}
.y33{bottom:716.640000pt;}
.yc3{bottom:723.365261pt;}
.y55{bottom:728.692933pt;}
.yc9{bottom:731.648719pt;}
.y7a{bottom:744.692933pt;}
.ybe{bottom:752.477706pt;}
.y82{bottom:760.692933pt;}
.yc4{bottom:760.761164pt;}
.yd2{bottom:761.304400pt;}
.y32{bottom:768.960000pt;}
.yca{bottom:769.044623pt;}
.y54{bottom:776.692933pt;}
.y2{bottom:781.661334pt;}
.y79{bottom:792.692933pt;}
.y31{bottom:806.400000pt;}
.y53{bottom:808.692933pt;}
.y30{bottom:832.160000pt;}
.y2f{bottom:857.920000pt;}
.y1{bottom:859.312000pt;}
.y52{bottom:865.738533pt;}
.y2e{bottom:881.920000pt;}
.y2d{bottom:896.114080pt;}
.y2c{bottom:911.319680pt;}
.y2b{bottom:926.684640pt;}
.y2a{bottom:942.049600pt;}
.y29{bottom:957.414560pt;}
.y28{bottom:972.779520pt;}
.y27{bottom:987.985120pt;}
.y26{bottom:1003.350080pt;}
.y25{bottom:1018.715040pt;}
.y24{bottom:1034.080000pt;}
.y23{bottom:1061.120000pt;}
.y22{bottom:1066.560000pt;}
.y21{bottom:1071.840000pt;}
.h13{height:3.547500pt;}
.h9{height:11.085938pt;}
.h1a{height:26.966667pt;}
.h15{height:27.936562pt;}
.h7{height:28.560000pt;}
.h17{height:28.579687pt;}
.h29{height:28.723570pt;}
.h26{height:28.792477pt;}
.h25{height:29.952000pt;}
.h20{height:34.517333pt;}
.h2c{height:35.029333pt;}
.h2a{height:36.066297pt;}
.h27{height:36.152812pt;}
.h10{height:36.805312pt;}
.h2d{height:37.440000pt;}
.h1b{height:37.706667pt;}
.h21{height:38.832000pt;}
.h24{height:39.216000pt;}
.h22{height:39.408000pt;}
.he{height:40.796250pt;}
.h6{height:40.800000pt;}
.h11{height:42.570000pt;}
.h3{height:42.840000pt;}
.h1e{height:43.146667pt;}
.h16{height:43.361333pt;}
.h1f{height:43.786667pt;}
.hf{height:44.343750pt;}
.hb{height:44.596875pt;}
.h1c{height:45.248000pt;}
.h1d{height:45.976000pt;}
.h2{height:48.960000pt;}
.hc{height:50.931562pt;}
.h12{height:51.882187pt;}
.ha{height:52.134375pt;}
.h14{height:53.655938pt;}
.hd{height:65.250000pt;}
.h5{height:69.360000pt;}
.h23{height:70.848000pt;}
.h4{height:105.826671pt;}
.h28{height:283.086667pt;}
.h2b{height:294.960000pt;}
.h18{height:907.086667pt;}
.h19{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h8{height:1122.720000pt;}
.w4{width:260.320000pt;}
.w7{width:459.212000pt;}
.w8{width:460.208000pt;}
.w2{width:566.928019pt;}
.w6{width:623.333333pt;}
.w5{width:623.622667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w3{width:794.080000pt;}
.x0{left:0.000000pt;}
.x5{left:10.720000pt;}
.x7{left:43.680000pt;}
.xa{left:54.080000pt;}
.xb{left:56.692933pt;}
.x1d{left:71.807600pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x8{left:95.840000pt;}
.xd{left:113.385867pt;}
.x3c{left:114.831724pt;}
.x4a{left:116.049600pt;}
.x29{left:117.067867pt;}
.x22{left:121.262800pt;}
.xf{left:128.500533pt;}
.x58{left:135.882667pt;}
.x59{left:136.839733pt;}
.x50{left:139.535467pt;}
.x51{left:141.098000pt;}
.x15{left:160.636533pt;}
.x4b{left:170.391467pt;}
.x4c{left:171.755733pt;}
.x3b{left:175.383203pt;}
.x24{left:179.294400pt;}
.x4{left:180.874667pt;}
.x3d{left:188.727333pt;}
.x3a{left:196.192133pt;}
.x39{left:214.967067pt;}
.x3e{left:226.021867pt;}
.x33{left:230.502047pt;}
.x6{left:231.680000pt;}
.x2d{left:235.476133pt;}
.xe{left:242.273067pt;}
.x46{left:250.702721pt;}
.x34{left:255.382507pt;}
.x32{left:260.286395pt;}
.x1c{left:264.998667pt;}
.x44{left:269.881156pt;}
.x4e{left:272.665067pt;}
.x4f{left:273.879600pt;}
.x3f{left:278.524958pt;}
.x2e{left:282.679812pt;}
.x31{left:287.653899pt;}
.x1f{left:289.742800pt;}
.x47{left:291.550687pt;}
.x36{left:292.638013pt;}
.x48{left:300.274523pt;}
.x23{left:307.586800pt;}
.x42{left:308.918325pt;}
.x55{left:312.145867pt;}
.x41{left:313.280243pt;}
.x25{left:314.649867pt;}
.x26{left:315.879200pt;}
.x45{left:317.572131pt;}
.x10{left:319.703067pt;}
.x38{left:322.432390pt;}
.x30{left:332.370534pt;}
.x40{left:334.939769pt;}
.x43{left:343.673611pt;}
.x17{left:346.471733pt;}
.x18{left:347.714133pt;}
.x13{left:348.765200pt;}
.x14{left:349.705467pt;}
.x9{left:355.360000pt;}
.x49{left:365.343141pt;}
.x37{left:367.219224pt;}
.x35{left:372.183282pt;}
.x2f{left:377.087170pt;}
.x20{left:387.998800pt;}
.x19{left:391.707867pt;}
.x1a{left:392.950400pt;}
.x52{left:393.946400pt;}
.x53{left:395.360933pt;}
.x3{left:404.408000pt;}
.x1b{left:421.160933pt;}
.x2a{left:422.850000pt;}
.x16{left:439.935200pt;}
.x54{left:444.150400pt;}
.x11{left:453.678667pt;}
.x4d{left:454.744133pt;}
.x56{left:455.853600pt;}
.x57{left:456.992933pt;}
.x2b{left:460.237333pt;}
.x2c{left:461.741333pt;}
.x27{left:479.406667pt;}
.x28{left:480.573467pt;}
.x21{left:483.998800pt;}
.x1e{left:485.273733pt;}
.x12{left:499.643467pt;}
.xc{left:554.156667pt;}
}




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