
    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_ecef4ab59cbe6adc90a0c138.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_fa4061752a213d394fdf7ec3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_34f82098c05a33d429dcd94d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_b37339ad096e5e5d7eee93ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_5806404aedef16f9477a9045.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_5378cde507256bd2377870c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_fce15464aefeb01c5f842227.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_6367d17432346c38d328b904.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_f7e6969604877f473e6a1afd.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_111a245c9f9702e418a8153e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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_9148d1b8d695b816c2dabca3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_b254a22f74e9cecdb12fcb5f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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_89dca6874a4a794b5b1c60ba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938965;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_e616f98fb4ecca360d2964ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938965;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_2031abd895b81f824a46f0f8.woff2')format("woff");}.fff{font-family:fff;line-height:0.812500;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v5{vertical-align:-54.010710px;}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-1.430400px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.620000px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls2c{letter-spacing:-7.620000px;}
.ls4f{letter-spacing:-5.160000px;}
.ls3f{letter-spacing:-1.776000px;}
.ls67{letter-spacing:-1.152000px;}
.lsd{letter-spacing:-0.780000px;}
.ls35{letter-spacing:-0.540000px;}
.ls68{letter-spacing:-0.480000px;}
.ls36{letter-spacing:-0.360000px;}
.ls46{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.240000px;}
.ls69{letter-spacing:-0.192000px;}
.ls2b{letter-spacing:-0.180000px;}
.ls2a{letter-spacing:-0.120000px;}
.ls29{letter-spacing:-0.060000px;}
.ls66{letter-spacing:-0.048000px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005076px;}
.ls1{letter-spacing:0.005676px;}
.ls33{letter-spacing:0.048000px;}
.ls9{letter-spacing:0.060000px;}
.ls4e{letter-spacing:0.096000px;}
.ls27{letter-spacing:0.120000px;}
.ls54{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.180000px;}
.ls63{letter-spacing:0.192000px;}
.ls19{letter-spacing:0.240000px;}
.ls65{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.300000px;}
.ls34{letter-spacing:0.336000px;}
.lsf{letter-spacing:0.360000px;}
.ls62{letter-spacing:0.384000px;}
.ls44{letter-spacing:0.414806px;}
.ls1b{letter-spacing:0.420000px;}
.ls52{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.600000px;}
.ls55{letter-spacing:0.624000px;}
.lsa{letter-spacing:0.660000px;}
.ls57{letter-spacing:0.672000px;}
.ls4{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.780000px;}
.ls14{letter-spacing:0.840000px;}
.ls59{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.870600px;}
.ls21{letter-spacing:0.900000px;}
.ls15{letter-spacing:0.960000px;}
.ls1f{letter-spacing:1.020000px;}
.ls6{letter-spacing:1.080000px;}
.ls5a{letter-spacing:1.104000px;}
.ls32{letter-spacing:1.140000px;}
.ls5d{letter-spacing:1.152000px;}
.ls7{letter-spacing:1.200000px;}
.ls12{letter-spacing:1.260000px;}
.ls1c{letter-spacing:1.320000px;}
.ls5c{letter-spacing:1.344000px;}
.ls39{letter-spacing:1.380000px;}
.ls61{letter-spacing:1.392000px;}
.ls10{letter-spacing:1.440000px;}
.ls56{letter-spacing:1.488000px;}
.ls17{letter-spacing:1.500000px;}
.ls1a{letter-spacing:1.560000px;}
.ls41{letter-spacing:1.620000px;}
.ls16{letter-spacing:1.680000px;}
.ls26{letter-spacing:1.740000px;}
.ls11{letter-spacing:1.800000px;}
.ls24{letter-spacing:1.860000px;}
.ls5b{letter-spacing:1.872000px;}
.ls3{letter-spacing:1.920000px;}
.ls3a{letter-spacing:1.980000px;}
.ls5e{letter-spacing:2.016000px;}
.ls20{letter-spacing:2.040000px;}
.ls40{letter-spacing:2.100000px;}
.ls37{letter-spacing:2.160000px;}
.ls25{letter-spacing:2.220000px;}
.ls1e{letter-spacing:2.280000px;}
.ls3b{letter-spacing:2.340000px;}
.ls45{letter-spacing:2.400000px;}
.ls8{letter-spacing:2.520000px;}
.ls38{letter-spacing:2.580000px;}
.ls3d{letter-spacing:2.700000px;}
.ls23{letter-spacing:2.760000px;}
.ls47{letter-spacing:2.820000px;}
.ls5f{letter-spacing:2.880000px;}
.ls4c{letter-spacing:2.940000px;}
.ls60{letter-spacing:3.024000px;}
.ls49{letter-spacing:3.120000px;}
.ls53{letter-spacing:3.168000px;}
.ls28{letter-spacing:3.360000px;}
.ls3c{letter-spacing:3.420000px;}
.ls2d{letter-spacing:3.480000px;}
.ls22{letter-spacing:3.540000px;}
.ls43{letter-spacing:3.600000px;}
.ls64{letter-spacing:3.648000px;}
.ls2e{letter-spacing:3.660000px;}
.ls51{letter-spacing:3.840000px;}
.ls31{letter-spacing:4.080000px;}
.ls42{letter-spacing:4.140000px;}
.ls4d{letter-spacing:4.320000px;}
.ls58{letter-spacing:4.656000px;}
.ls4b{letter-spacing:5.820000px;}
.ls4a{letter-spacing:5.880000px;}
.ls50{letter-spacing:6.300000px;}
.ls48{letter-spacing:7.320000px;}
.ls3e{letter-spacing:420.784978px;}
.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;}
}
.ws3c{word-spacing:-19.219363px;}
.ws44{word-spacing:-18.120000px;}
.ws55{word-spacing:-18.060000px;}
.ws42{word-spacing:-17.340000px;}
.ws26{word-spacing:-16.680000px;}
.wse{word-spacing:-15.420000px;}
.ws41{word-spacing:-15.240000px;}
.ws5b{word-spacing:-15.024000px;}
.ws43{word-spacing:-14.760000px;}
.ws3{word-spacing:-13.344000px;}
.ws59{word-spacing:-13.104000px;}
.ws58{word-spacing:-12.672000px;}
.ws2{word-spacing:-12.510000px;}
.ws5a{word-spacing:-12.480000px;}
.ws57{word-spacing:-12.144000px;}
.ws56{word-spacing:-12.000000px;}
.ws0{word-spacing:-10.210662px;}
.ws6b{word-spacing:-3.024000px;}
.ws5{word-spacing:-2.886000px;}
.ws4f{word-spacing:-2.340000px;}
.ws16{word-spacing:-2.220000px;}
.ws6{word-spacing:-1.134000px;}
.ws50{word-spacing:-0.900000px;}
.ws67{word-spacing:-0.480000px;}
.ws53{word-spacing:-0.420000px;}
.ws70{word-spacing:-0.384000px;}
.ws22{word-spacing:-0.360000px;}
.ws40{word-spacing:-0.336000px;}
.ws1c{word-spacing:-0.300000px;}
.ws14{word-spacing:-0.240000px;}
.ws38{word-spacing:-0.173829px;}
.wsb{word-spacing:-0.120000px;}
.ws1e{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws3b{word-spacing:0.048000px;}
.ws7{word-spacing:0.060000px;}
.ws62{word-spacing:0.096000px;}
.ws10{word-spacing:0.180000px;}
.wsd{word-spacing:0.240000px;}
.ws66{word-spacing:0.288000px;}
.ws47{word-spacing:0.360000px;}
.ws4d{word-spacing:0.420000px;}
.ws6d{word-spacing:0.480000px;}
.ws69{word-spacing:0.576000px;}
.ws17{word-spacing:0.600000px;}
.ws63{word-spacing:0.624000px;}
.ws21{word-spacing:0.660000px;}
.ws3d{word-spacing:0.720000px;}
.ws34{word-spacing:1.008000px;}
.ws6a{word-spacing:1.056000px;}
.ws2c{word-spacing:1.080000px;}
.ws6e{word-spacing:1.200000px;}
.ws12{word-spacing:1.260000px;}
.ws20{word-spacing:1.320000px;}
.ws18{word-spacing:1.380000px;}
.ws4c{word-spacing:1.440000px;}
.ws3a{word-spacing:1.536000px;}
.ws1a{word-spacing:1.560000px;}
.ws64{word-spacing:1.584000px;}
.wsc{word-spacing:1.620000px;}
.ws5e{word-spacing:1.680000px;}
.wsa{word-spacing:1.740000px;}
.ws48{word-spacing:1.860000px;}
.ws1b{word-spacing:1.980000px;}
.ws4a{word-spacing:2.040000px;}
.ws11{word-spacing:2.220000px;}
.ws3e{word-spacing:2.280000px;}
.ws6f{word-spacing:2.400000px;}
.ws15{word-spacing:2.520000px;}
.ws5c{word-spacing:2.700000px;}
.ws68{word-spacing:2.736000px;}
.ws4b{word-spacing:2.940000px;}
.ws54{word-spacing:3.000000px;}
.ws65{word-spacing:3.072000px;}
.ws61{word-spacing:3.168000px;}
.ws51{word-spacing:3.180000px;}
.ws4e{word-spacing:3.420000px;}
.ws35{word-spacing:3.660000px;}
.ws13{word-spacing:3.780000px;}
.ws6c{word-spacing:3.792000px;}
.ws1f{word-spacing:3.900000px;}
.ws24{word-spacing:3.936000px;}
.ws2b{word-spacing:3.960000px;}
.ws25{word-spacing:3.984000px;}
.wsf{word-spacing:4.080000px;}
.ws3f{word-spacing:4.140000px;}
.ws52{word-spacing:4.260000px;}
.ws23{word-spacing:4.380000px;}
.ws60{word-spacing:4.440000px;}
.ws5f{word-spacing:4.800000px;}
.ws19{word-spacing:4.860000px;}
.ws8{word-spacing:4.920000px;}
.ws9{word-spacing:4.980000px;}
.ws49{word-spacing:5.160000px;}
.ws5d{word-spacing:5.520000px;}
.ws1d{word-spacing:7.620000px;}
.ws2d{word-spacing:44.995184px;}
.ws1{word-spacing:49.321428px;}
.ws2e{word-spacing:135.552000px;}
.ws27{word-spacing:194.496000px;}
.ws2a{word-spacing:290.453909px;}
.ws31{word-spacing:302.160000px;}
.ws30{word-spacing:314.160000px;}
.ws32{word-spacing:319.488000px;}
.ws33{word-spacing:326.160000px;}
.ws2f{word-spacing:338.160000px;}
.ws28{word-spacing:353.184000px;}
.ws46{word-spacing:358.224000px;}
.ws45{word-spacing:406.224000px;}
.ws39{word-spacing:507.754509px;}
.ws36{word-spacing:546.518376px;}
.ws37{word-spacing:556.078971px;}
.ws29{word-spacing:688.990577px;}
._c{margin-left:-2898.144000px;}
._d{margin-left:-2874.336000px;}
._30{margin-left:-846.721059px;}
._3{margin-left:-9.368400px;}
._2{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._6{margin-left:-3.405000px;}
._0{margin-left:-2.310000px;}
._7{margin-left:-1.080000px;}
._5{width:1.614000px;}
._a{width:3.096000px;}
._8{width:4.320000px;}
._9{width:6.000000px;}
._b{width:8.168400px;}
._4{width:60.194814px;}
._20{width:82.224000px;}
._12{width:98.544000px;}
._13{width:99.936000px;}
._21{width:108.333186px;}
._34{width:127.632000px;}
._11{width:131.952000px;}
._2d{width:134.208000px;}
._2f{width:146.208000px;}
._22{width:147.552000px;}
._10{width:158.592000px;}
._f{width:166.608000px;}
._2e{width:170.208000px;}
._35{width:178.320000px;}
._33{width:179.616000px;}
._1f{width:203.712000px;}
._1a{width:206.496000px;}
._23{width:211.344000px;}
._32{width:214.272000px;}
._2c{width:218.208000px;}
._15{width:279.840000px;}
._e{width:305.328000px;}
._27{width:313.680000px;}
._1c{width:317.184000px;}
._3b{width:322.224000px;}
._25{width:326.160000px;}
._26{width:328.848000px;}
._37{width:334.224000px;}
._28{width:338.160000px;}
._3d{width:340.224000px;}
._29{width:341.280000px;}
._19{width:345.888000px;}
._39{width:352.224000px;}
._24{width:363.024000px;}
._3a{width:364.224000px;}
._2a{width:368.352000px;}
._3f{width:370.224000px;}
._40{width:372.864000px;}
._1b{width:377.184000px;}
._16{width:378.528000px;}
._3c{width:382.224000px;}
._14{width:383.232000px;}
._1d{width:389.184000px;}
._38{width:394.224000px;}
._41{width:396.864000px;}
._18{width:401.184000px;}
._17{width:402.528000px;}
._42{width:418.224000px;}
._36{width:475.968000px;}
._2b{width:506.061000px;}
._31{width:534.048000px;}
._3e{width:625.248000px;}
._43{width:1278.624000px;}
._1e{width:2106.093000px;}
.fc3{color:transparent;}
.fc4{color:rgb(88,89,89);}
.fc2{color:rgb(7,0,2);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:24.235800px;}
.fs5{font-size:26.235000px;}
.fs11{font-size:34.622400px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs10{font-size:53.682600px;}
.fs16{font-size:55.059000px;}
.fs13{font-size:57.126600px;}
.fs8{font-size:60.000000px;}
.fs18{font-size:62.097000px;}
.fsf{font-size:62.320200px;}
.fs3{font-size:63.000000px;}
.fs17{font-size:69.134400px;}
.fs1{font-size:78.000000px;}
.fs12{font-size:83.093400px;}
.fsb{font-size:117.102000px;}
.fsd{font-size:117.715800px;}
.fsc{font-size:117.716400px;}
.fs2{font-size:126.600000px;}
.fs14{font-size:149.647200px;}
.fs15{font-size:173.829000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:4.914750px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y136{bottom:74.121900px;}
.y177{bottom:80.263500px;}
.yd2{bottom:83.434200px;}
.y115{bottom:83.713650px;}
.y61{bottom:83.770350px;}
.y8b{bottom:84.070350px;}
.yae{bottom:85.894800px;}
.y2c{bottom:88.026750px;}
.y135{bottom:89.121900px;}
.y90{bottom:93.268650px;}
.ye8{bottom:93.771300px;}
.y176{bottom:95.263500px;}
.y114{bottom:100.213650px;}
.y60{bottom:101.770350px;}
.y8a{bottom:102.070350px;}
.y2b{bottom:103.023000px;}
.y134{bottom:104.121900px;}
.yd1{bottom:108.946200px;}
.y8f{bottom:109.012650px;}
.ye7{bottom:109.515300px;}
.y175{bottom:110.263500px;}
.yad{bottom:111.406800px;}
.y133{bottom:119.121900px;}
.y5f{bottom:119.770350px;}
.y89{bottom:120.070350px;}
.yda{bottom:121.267650px;}
.y8e{bottom:124.756650px;}
.y174{bottom:125.263500px;}
.y113{bottom:125.725650px;}
.yf0{bottom:133.899000px;}
.y132{bottom:134.121900px;}
.yd9{bottom:137.011650px;}
.y5e{bottom:137.770350px;}
.yd0{bottom:137.950200px;}
.y88{bottom:138.070350px;}
.y173{bottom:140.263500px;}
.yac{bottom:140.410800px;}
.y112{bottom:141.973650px;}
.y91{bottom:148.605000px;}
.y131{bottom:149.121900px;}
.yd8{bottom:152.755650px;}
.ycf{bottom:154.198200px;}
.y172{bottom:155.263500px;}
.y5d{bottom:155.770350px;}
.y87{bottom:156.070350px;}
.yab{bottom:156.658800px;}
.y111{bottom:158.221650px;}
.y130{bottom:164.121900px;}
.yd7{bottom:168.499650px;}
.y171{bottom:170.263500px;}
.yce{bottom:170.446200px;}
.yaa{bottom:172.906800px;}
.y28{bottom:173.451450px;}
.y5c{bottom:173.770350px;}
.y86{bottom:174.070350px;}
.y110{bottom:174.469650px;}
.y12f{bottom:179.121900px;}
.yd6{bottom:184.243650px;}
.y170{bottom:185.263500px;}
.ycd{bottom:186.694200px;}
.ya9{bottom:189.154800px;}
.y10f{bottom:190.717650px;}
.y27{bottom:191.451450px;}
.y5b{bottom:191.770350px;}
.y85{bottom:192.070350px;}
.y12e{bottom:194.121900px;}
.ye9{bottom:200.041500px;}
.y16f{bottom:200.263500px;}
.ycc{bottom:202.942200px;}
.ya8{bottom:205.402800px;}
.y10e{bottom:206.965650px;}
.y12d{bottom:209.121900px;}
.y26{bottom:209.451450px;}
.y5a{bottom:209.770350px;}
.y84{bottom:210.070350px;}
.y16e{bottom:215.263500px;}
.ycb{bottom:219.190200px;}
.ya7{bottom:221.650800px;}
.y12c{bottom:224.121900px;}
.y25{bottom:227.451450px;}
.y83{bottom:228.070350px;}
.y16d{bottom:230.263500px;}
.yca{bottom:235.438200px;}
.ya6{bottom:237.898800px;}
.y10d{bottom:238.477650px;}
.y12b{bottom:239.121900px;}
.yea{bottom:241.390809px;}
.y16c{bottom:245.263500px;}
.y59{bottom:245.365350px;}
.y24{bottom:245.451450px;}
.y82{bottom:246.070350px;}
.y12a{bottom:254.121900px;}
.y16b{bottom:260.263500px;}
.yb0{bottom:261.106350px;}
.y58{bottom:263.365350px;}
.y23{bottom:263.451450px;}
.y81{bottom:264.070350px;}
.yc9{bottom:264.442200px;}
.y129{bottom:269.121900px;}
.ya5{bottom:269.410800px;}
.y10c{bottom:273.385350px;}
.y16a{bottom:275.263500px;}
.y22{bottom:281.451450px;}
.y80{bottom:282.070350px;}
.yeb{bottom:282.753883px;}
.yf2{bottom:283.848750px;}
.y128{bottom:284.121900px;}
.y169{bottom:290.263500px;}
.yc8{bottom:293.446200px;}
.y127{bottom:299.121900px;}
.y57{bottom:299.230350px;}
.y21{bottom:299.451450px;}
.y7f{bottom:300.070350px;}
.ya4{bottom:304.305900px;}
.y168{bottom:305.263500px;}
.y96{bottom:311.345883px;}
.y126{bottom:314.121900px;}
.y2a{bottom:317.451450px;}
.yf8{bottom:317.770350px;}
.y7e{bottom:318.070350px;}
.y167{bottom:320.263500px;}
.yec{bottom:324.116957px;}
.yc7{bottom:325.837350px;}
.y125{bottom:329.121900px;}
.y20{bottom:335.048700px;}
.y166{bottom:335.263500px;}
.y29{bottom:335.451450px;}
.y10b{bottom:335.635350px;}
.yf7{bottom:335.770350px;}
.y7d{bottom:336.070350px;}
.y124{bottom:344.121900px;}
.yc6{bottom:345.337350px;}
.ya3{bottom:349.412850px;}
.y165{bottom:350.263500px;}
.y10a{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y7c{bottom:354.070350px;}
.yf1{bottom:355.638150px;}
.y123{bottom:359.121900px;}
.ya2{bottom:365.156850px;}
.y164{bottom:365.263500px;}
.yed{bottom:365.480030px;}
.y109{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y7b{bottom:372.070350px;}
.y122{bottom:374.121900px;}
.y163{bottom:380.265900px;}
.yaf{bottom:388.510500px;}
.y108{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y7a{bottom:390.070350px;}
.yc5{bottom:393.098250px;}
.y162{bottom:395.265900px;}
.yb7{bottom:395.429100px;}
.yb1{bottom:397.323600px;}
.yee{bottom:406.843104px;}
.y121{bottom:407.230350px;}
.y107{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y79{bottom:408.070350px;}
.yc4{bottom:408.842250px;}
.y1f{bottom:410.014200px;}
.y161{bottom:410.265900px;}
.yb2{bottom:413.315100px;}
.yba{bottom:413.379960px;}
.yc3{bottom:424.586250px;}
.yb5{bottom:425.074800px;}
.y160{bottom:425.265900px;}
.y106{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y78{bottom:426.070350px;}
.yf6{bottom:431.861100px;}
.ybc{bottom:432.187947px;}
.y1e{bottom:437.359200px;}
.y15f{bottom:440.265900px;}
.y105{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y77{bottom:444.070350px;}
.yb3{bottom:446.147850px;}
.y93{bottom:446.679450px;}
.yd4{bottom:447.679500px;}
.yef{bottom:448.192413px;}
.yf5{bottom:451.616250px;}
.y15e{bottom:455.265900px;}
.y1d{bottom:455.359200px;}
.y104{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y76{bottom:462.070350px;}
.y15d{bottom:470.265900px;}
.yf4{bottom:471.378000px;}
.ydb{bottom:473.122050px;}
.yde{bottom:473.125050px;}
.y1c{bottom:473.359200px;}
.y103{bottom:479.635350px;}
.y4f{bottom:479.770350px;}
.y75{bottom:480.070350px;}
.yb9{bottom:480.477880px;}
.y15c{bottom:485.265900px;}
.y1b{bottom:491.359200px;}
.y102{bottom:497.635350px;}
.y4e{bottom:497.770350px;}
.y74{bottom:498.070350px;}
.yb4{bottom:499.027800px;}
.y15b{bottom:500.265900px;}
.yb8{bottom:504.782700px;}
.y95{bottom:505.559550px;}
.y1a{bottom:509.359200px;}
.y15a{bottom:515.265900px;}
.y120{bottom:515.365350px;}
.y101{bottom:515.635350px;}
.y4d{bottom:515.770350px;}
.y19{bottom:527.359200px;}
.y159{bottom:530.265900px;}
.ye6{bottom:533.635350px;}
.y73{bottom:533.665350px;}
.y4c{bottom:533.770350px;}
.y158{bottom:545.265900px;}
.y18{bottom:545.359200px;}
.y11f{bottom:551.365350px;}
.ye5{bottom:551.635350px;}
.y4b{bottom:551.770350px;}
.yb6{bottom:554.539050px;}
.ybb{bottom:555.038700px;}
.y157{bottom:560.265900px;}
.y17{bottom:563.359200px;}
.yd5{bottom:566.610000px;}
.ye4{bottom:569.635350px;}
.y4a{bottom:569.770350px;}
.y72{bottom:569.920350px;}
.y156{bottom:575.265900px;}
.y16{bottom:581.359200px;}
.ybf{bottom:581.573906px;}
.y100{bottom:587.635350px;}
.y49{bottom:587.770350px;}
.y71{bottom:587.920350px;}
.y155{bottom:590.265900px;}
.ybd{bottom:595.206450px;}
.ybe{bottom:597.590198px;}
.y15{bottom:599.359200px;}
.ye3{bottom:605.230350px;}
.y154{bottom:605.265900px;}
.yff{bottom:605.635350px;}
.y48{bottom:605.770350px;}
.y70{bottom:605.920350px;}
.y14{bottom:617.359200px;}
.y153{bottom:620.265900px;}
.y11e{bottom:623.365350px;}
.yfe{bottom:623.635350px;}
.y47{bottom:623.770350px;}
.y6f{bottom:623.920350px;}
.y94{bottom:626.154000px;}
.y92{bottom:626.282100px;}
.yc0{bottom:635.011500px;}
.y152{bottom:635.265900px;}
.y13{bottom:635.359200px;}
.yfd{bottom:641.635350px;}
.y46{bottom:641.770350px;}
.y6e{bottom:641.920350px;}
.y151{bottom:650.265900px;}
.yc1{bottom:652.364550px;}
.yfc{bottom:659.635350px;}
.y45{bottom:659.770350px;}
.y6d{bottom:659.920350px;}
.y150{bottom:665.265900px;}
.y11d{bottom:677.365350px;}
.yfb{bottom:677.635350px;}
.y44{bottom:677.770350px;}
.y6c{bottom:677.920350px;}
.y14f{bottom:680.265900px;}
.y12{bottom:680.517300px;}
.y11{bottom:692.968050px;}
.y14e{bottom:695.265900px;}
.yfa{bottom:695.635350px;}
.y43{bottom:695.770350px;}
.y6b{bottom:695.920350px;}
.y14d{bottom:710.265900px;}
.ya1{bottom:713.635350px;}
.y42{bottom:713.770350px;}
.y6a{bottom:713.920350px;}
.yd3{bottom:719.565750px;}
.ydc{bottom:721.914806px;}
.ye0{bottom:721.933585px;}
.ydf{bottom:722.324700px;}
.y10{bottom:724.683600px;}
.y14c{bottom:725.265900px;}
.ya0{bottom:731.635350px;}
.y41{bottom:731.770350px;}
.y69{bottom:731.920350px;}
.y14b{bottom:740.265900px;}
.yf{bottom:743.608950px;}
.y9f{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.y68{bottom:749.920350px;}
.y14a{bottom:755.265900px;}
.ye{bottom:757.108950px;}
.yd{bottom:765.183600px;}
.yf9{bottom:767.230350px;}
.y9e{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.y67{bottom:767.920350px;}
.y149{bottom:770.265900px;}
.yc{bottom:784.108950px;}
.y148{bottom:785.265900px;}
.y11c{bottom:785.365350px;}
.y9d{bottom:785.635350px;}
.y3e{bottom:785.770350px;}
.y66{bottom:785.920350px;}
.yb{bottom:797.608950px;}
.y147{bottom:800.265900px;}
.y9c{bottom:803.635350px;}
.y3d{bottom:803.770350px;}
.y65{bottom:803.920350px;}
.ya{bottom:805.683600px;}
.y146{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.y9b{bottom:821.635350px;}
.y3c{bottom:821.770350px;}
.y64{bottom:821.920350px;}
.y145{bottom:830.265900px;}
.y8{bottom:838.108950px;}
.y9a{bottom:839.635350px;}
.y3b{bottom:839.770350px;}
.y63{bottom:839.920350px;}
.y144{bottom:845.265900px;}
.y99{bottom:857.635350px;}
.y3a{bottom:857.770350px;}
.y143{bottom:860.265900px;}
.y7{bottom:866.836200px;}
.y142{bottom:875.265900px;}
.y62{bottom:875.515350px;}
.y98{bottom:875.635350px;}
.y39{bottom:875.770350px;}
.y6{bottom:887.830950px;}
.y141{bottom:890.265900px;}
.y38{bottom:893.770350px;}
.y140{bottom:905.265900px;}
.y97{bottom:911.230350px;}
.y37{bottom:911.770350px;}
.y13f{bottom:920.265900px;}
.y36{bottom:929.770350px;}
.y5{bottom:934.004400px;}
.y13e{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.y13d{bottom:950.265900px;}
.y13c{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.y11b{bottom:965.772600px;}
.y4{bottom:970.465200px;}
.y13b{bottom:980.265900px;}
.y33{bottom:983.770350px;}
.y11a{bottom:983.772600px;}
.y13a{bottom:995.265900px;}
.ydd{bottom:996.216968px;}
.ye1{bottom:996.229200px;}
.y32{bottom:1001.770350px;}
.y119{bottom:1001.772600px;}
.y3{bottom:1006.926000px;}
.y139{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.y118{bottom:1019.772600px;}
.y138{bottom:1025.265900px;}
.y8d{bottom:1037.365350px;}
.y117{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.y137{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y8c{bottom:1132.418700px;}
.ye2{bottom:1132.421700px;}
.y178{bottom:1132.423500px;}
.yc2{bottom:1132.424550px;}
.y116{bottom:1132.429650px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h1b{height:17.656159px;}
.h7{height:19.125417px;}
.h1e{height:25.222959px;}
.h9{height:28.412109px;}
.h2{height:30.597656px;}
.hf{height:32.783203px;}
.h8{height:32.805176px;}
.h18{height:33.328125px;}
.h14{height:33.351562px;}
.h11{height:34.968750px;}
.h10{height:34.992188px;}
.h1d{height:39.108613px;}
.h24{height:40.111342px;}
.h20{height:41.617621px;}
.h12{height:41.660156px;}
.he{height:41.689453px;}
.hd{height:43.681641px;}
.ha{height:43.710938px;}
.hc{height:43.718034px;}
.hb{height:43.740234px;}
.h28{height:45.238635px;}
.h1c{height:45.401239px;}
.h27{height:50.365491px;}
.h13{height:52.567951px;}
.h26{height:55.091475px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h1f{height:60.534840px;}
.h16{height:85.310637px;}
.h1a{height:85.757800px;}
.h17{height:85.758237px;}
.h4{height:92.168262px;}
.h21{height:109.020323px;}
.h23{height:126.637143px;}
.h19{height:285.780000px;}
.h25{height:365.532000px;}
.h22{height:602.556000px;}
.h15{height:653.245500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:649.180500px;}
.w2{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:3.992100px;}
.x1a{left:6.516000px;}
.x2d{left:8.493150px;}
.x34{left:26.189250px;}
.x32{left:70.582650px;}
.xa{left:76.535400px;}
.x19{left:78.661350px;}
.x1f{left:84.225750px;}
.x20{left:89.996850px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x2a{left:99.921300px;}
.x14{left:101.787600px;}
.x4{left:106.299150px;}
.xb{left:110.555400px;}
.x35{left:118.489950px;}
.x3b{left:123.307350px;}
.x3{left:125.427900px;}
.x6{left:131.811000px;}
.x1d{left:135.642150px;}
.x2c{left:140.989650px;}
.xc{left:144.725400px;}
.x1e{left:164.926950px;}
.x1c{left:201.425700px;}
.x18{left:211.100400px;}
.x5{left:212.876400px;}
.x3a{left:215.530350px;}
.x33{left:220.135350px;}
.x2e{left:228.670950px;}
.x38{left:273.661350px;}
.x39{left:288.685350px;}
.x24{left:291.357900px;}
.x15{left:315.189000px;}
.x36{left:360.007200px;}
.x21{left:365.152200px;}
.x31{left:398.400652px;}
.x16{left:412.984500px;}
.x27{left:431.538161px;}
.x9{left:455.041500px;}
.xd{left:457.100400px;}
.x11{left:478.343550px;}
.x7{left:480.471000px;}
.xe{left:491.120400px;}
.x3c{left:503.875350px;}
.x12{left:512.363550px;}
.x28{left:532.576650px;}
.x2f{left:555.267600px;}
.x26{left:562.161300px;}
.x37{left:570.342150px;}
.x25{left:586.788112px;}
.x22{left:598.706974px;}
.x30{left:603.084300px;}
.x2b{left:641.733300px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x1b{left:726.854700px;}
.xf{left:735.065400px;}
.x23{left:752.637498px;}
.x17{left:756.325200px;}
.x29{left:766.427250px;}
@media print{
.v5{vertical-align:-48.009520pt;}
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-1.271467pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.440000pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls2c{letter-spacing:-6.773333pt;}
.ls4f{letter-spacing:-4.586667pt;}
.ls3f{letter-spacing:-1.578667pt;}
.ls67{letter-spacing:-1.024000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls35{letter-spacing:-0.480000pt;}
.ls68{letter-spacing:-0.426667pt;}
.ls36{letter-spacing:-0.320000pt;}
.ls46{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.213333pt;}
.ls69{letter-spacing:-0.170667pt;}
.ls2b{letter-spacing:-0.160000pt;}
.ls2a{letter-spacing:-0.106667pt;}
.ls29{letter-spacing:-0.053333pt;}
.ls66{letter-spacing:-0.042667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.004512pt;}
.ls1{letter-spacing:0.005045pt;}
.ls33{letter-spacing:0.042667pt;}
.ls9{letter-spacing:0.053333pt;}
.ls4e{letter-spacing:0.085333pt;}
.ls27{letter-spacing:0.106667pt;}
.ls54{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.160000pt;}
.ls63{letter-spacing:0.170667pt;}
.ls19{letter-spacing:0.213333pt;}
.ls65{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.266667pt;}
.ls34{letter-spacing:0.298667pt;}
.lsf{letter-spacing:0.320000pt;}
.ls62{letter-spacing:0.341333pt;}
.ls44{letter-spacing:0.368717pt;}
.ls1b{letter-spacing:0.373333pt;}
.ls52{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.533333pt;}
.ls55{letter-spacing:0.554667pt;}
.lsa{letter-spacing:0.586667pt;}
.ls57{letter-spacing:0.597333pt;}
.ls4{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.693333pt;}
.ls14{letter-spacing:0.746667pt;}
.ls59{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.773867pt;}
.ls21{letter-spacing:0.800000pt;}
.ls15{letter-spacing:0.853333pt;}
.ls1f{letter-spacing:0.906667pt;}
.ls6{letter-spacing:0.960000pt;}
.ls5a{letter-spacing:0.981333pt;}
.ls32{letter-spacing:1.013333pt;}
.ls5d{letter-spacing:1.024000pt;}
.ls7{letter-spacing:1.066667pt;}
.ls12{letter-spacing:1.120000pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls5c{letter-spacing:1.194667pt;}
.ls39{letter-spacing:1.226667pt;}
.ls61{letter-spacing:1.237333pt;}
.ls10{letter-spacing:1.280000pt;}
.ls56{letter-spacing:1.322667pt;}
.ls17{letter-spacing:1.333333pt;}
.ls1a{letter-spacing:1.386667pt;}
.ls41{letter-spacing:1.440000pt;}
.ls16{letter-spacing:1.493333pt;}
.ls26{letter-spacing:1.546667pt;}
.ls11{letter-spacing:1.600000pt;}
.ls24{letter-spacing:1.653333pt;}
.ls5b{letter-spacing:1.664000pt;}
.ls3{letter-spacing:1.706667pt;}
.ls3a{letter-spacing:1.760000pt;}
.ls5e{letter-spacing:1.792000pt;}
.ls20{letter-spacing:1.813333pt;}
.ls40{letter-spacing:1.866667pt;}
.ls37{letter-spacing:1.920000pt;}
.ls25{letter-spacing:1.973333pt;}
.ls1e{letter-spacing:2.026667pt;}
.ls3b{letter-spacing:2.080000pt;}
.ls45{letter-spacing:2.133333pt;}
.ls8{letter-spacing:2.240000pt;}
.ls38{letter-spacing:2.293333pt;}
.ls3d{letter-spacing:2.400000pt;}
.ls23{letter-spacing:2.453333pt;}
.ls47{letter-spacing:2.506667pt;}
.ls5f{letter-spacing:2.560000pt;}
.ls4c{letter-spacing:2.613333pt;}
.ls60{letter-spacing:2.688000pt;}
.ls49{letter-spacing:2.773333pt;}
.ls53{letter-spacing:2.816000pt;}
.ls28{letter-spacing:2.986667pt;}
.ls3c{letter-spacing:3.040000pt;}
.ls2d{letter-spacing:3.093333pt;}
.ls22{letter-spacing:3.146667pt;}
.ls43{letter-spacing:3.200000pt;}
.ls64{letter-spacing:3.242667pt;}
.ls2e{letter-spacing:3.253333pt;}
.ls51{letter-spacing:3.413333pt;}
.ls31{letter-spacing:3.626667pt;}
.ls42{letter-spacing:3.680000pt;}
.ls4d{letter-spacing:3.840000pt;}
.ls58{letter-spacing:4.138667pt;}
.ls4b{letter-spacing:5.173333pt;}
.ls4a{letter-spacing:5.226667pt;}
.ls50{letter-spacing:5.600000pt;}
.ls48{letter-spacing:6.506667pt;}
.ls3e{letter-spacing:374.031091pt;}
.ws3c{word-spacing:-17.083878pt;}
.ws44{word-spacing:-16.106667pt;}
.ws55{word-spacing:-16.053333pt;}
.ws42{word-spacing:-15.413333pt;}
.ws26{word-spacing:-14.826667pt;}
.wse{word-spacing:-13.706667pt;}
.ws41{word-spacing:-13.546667pt;}
.ws5b{word-spacing:-13.354667pt;}
.ws43{word-spacing:-13.120000pt;}
.ws3{word-spacing:-11.861333pt;}
.ws59{word-spacing:-11.648000pt;}
.ws58{word-spacing:-11.264000pt;}
.ws2{word-spacing:-11.120000pt;}
.ws5a{word-spacing:-11.093333pt;}
.ws57{word-spacing:-10.794667pt;}
.ws56{word-spacing:-10.666667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws6b{word-spacing:-2.688000pt;}
.ws5{word-spacing:-2.565333pt;}
.ws4f{word-spacing:-2.080000pt;}
.ws16{word-spacing:-1.973333pt;}
.ws6{word-spacing:-1.008000pt;}
.ws50{word-spacing:-0.800000pt;}
.ws67{word-spacing:-0.426667pt;}
.ws53{word-spacing:-0.373333pt;}
.ws70{word-spacing:-0.341333pt;}
.ws22{word-spacing:-0.320000pt;}
.ws40{word-spacing:-0.298667pt;}
.ws1c{word-spacing:-0.266667pt;}
.ws14{word-spacing:-0.213333pt;}
.ws38{word-spacing:-0.154515pt;}
.wsb{word-spacing:-0.106667pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.042667pt;}
.ws7{word-spacing:0.053333pt;}
.ws62{word-spacing:0.085333pt;}
.ws10{word-spacing:0.160000pt;}
.wsd{word-spacing:0.213333pt;}
.ws66{word-spacing:0.256000pt;}
.ws47{word-spacing:0.320000pt;}
.ws4d{word-spacing:0.373333pt;}
.ws6d{word-spacing:0.426667pt;}
.ws69{word-spacing:0.512000pt;}
.ws17{word-spacing:0.533333pt;}
.ws63{word-spacing:0.554667pt;}
.ws21{word-spacing:0.586667pt;}
.ws3d{word-spacing:0.640000pt;}
.ws34{word-spacing:0.896000pt;}
.ws6a{word-spacing:0.938667pt;}
.ws2c{word-spacing:0.960000pt;}
.ws6e{word-spacing:1.066667pt;}
.ws12{word-spacing:1.120000pt;}
.ws20{word-spacing:1.173333pt;}
.ws18{word-spacing:1.226667pt;}
.ws4c{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.365333pt;}
.ws1a{word-spacing:1.386667pt;}
.ws64{word-spacing:1.408000pt;}
.wsc{word-spacing:1.440000pt;}
.ws5e{word-spacing:1.493333pt;}
.wsa{word-spacing:1.546667pt;}
.ws48{word-spacing:1.653333pt;}
.ws1b{word-spacing:1.760000pt;}
.ws4a{word-spacing:1.813333pt;}
.ws11{word-spacing:1.973333pt;}
.ws3e{word-spacing:2.026667pt;}
.ws6f{word-spacing:2.133333pt;}
.ws15{word-spacing:2.240000pt;}
.ws5c{word-spacing:2.400000pt;}
.ws68{word-spacing:2.432000pt;}
.ws4b{word-spacing:2.613333pt;}
.ws54{word-spacing:2.666667pt;}
.ws65{word-spacing:2.730667pt;}
.ws61{word-spacing:2.816000pt;}
.ws51{word-spacing:2.826667pt;}
.ws4e{word-spacing:3.040000pt;}
.ws35{word-spacing:3.253333pt;}
.ws13{word-spacing:3.360000pt;}
.ws6c{word-spacing:3.370667pt;}
.ws1f{word-spacing:3.466667pt;}
.ws24{word-spacing:3.498667pt;}
.ws2b{word-spacing:3.520000pt;}
.ws25{word-spacing:3.541333pt;}
.wsf{word-spacing:3.626667pt;}
.ws3f{word-spacing:3.680000pt;}
.ws52{word-spacing:3.786667pt;}
.ws23{word-spacing:3.893333pt;}
.ws60{word-spacing:3.946667pt;}
.ws5f{word-spacing:4.266667pt;}
.ws19{word-spacing:4.320000pt;}
.ws8{word-spacing:4.373333pt;}
.ws9{word-spacing:4.426667pt;}
.ws49{word-spacing:4.586667pt;}
.ws5d{word-spacing:4.906667pt;}
.ws1d{word-spacing:6.773333pt;}
.ws2d{word-spacing:39.995719pt;}
.ws1{word-spacing:43.841269pt;}
.ws2e{word-spacing:120.490667pt;}
.ws27{word-spacing:172.885333pt;}
.ws2a{word-spacing:258.181252pt;}
.ws31{word-spacing:268.586667pt;}
.ws30{word-spacing:279.253333pt;}
.ws32{word-spacing:283.989333pt;}
.ws33{word-spacing:289.920000pt;}
.ws2f{word-spacing:300.586667pt;}
.ws28{word-spacing:313.941333pt;}
.ws46{word-spacing:318.421333pt;}
.ws45{word-spacing:361.088000pt;}
.ws39{word-spacing:451.337341pt;}
.ws36{word-spacing:485.794112pt;}
.ws37{word-spacing:494.292419pt;}
.ws29{word-spacing:612.436069pt;}
._c{margin-left:-2576.128000pt;}
._d{margin-left:-2554.965333pt;}
._30{margin-left:-752.640941pt;}
._3{margin-left:-8.327467pt;}
._2{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._6{margin-left:-3.026667pt;}
._0{margin-left:-2.053333pt;}
._7{margin-left:-0.960000pt;}
._5{width:1.434667pt;}
._a{width:2.752000pt;}
._8{width:3.840000pt;}
._9{width:5.333333pt;}
._b{width:7.260800pt;}
._4{width:53.506501pt;}
._20{width:73.088000pt;}
._12{width:87.594667pt;}
._13{width:88.832000pt;}
._21{width:96.296165pt;}
._34{width:113.450667pt;}
._11{width:117.290667pt;}
._2d{width:119.296000pt;}
._2f{width:129.962667pt;}
._22{width:131.157333pt;}
._10{width:140.970667pt;}
._f{width:148.096000pt;}
._2e{width:151.296000pt;}
._35{width:158.506667pt;}
._33{width:159.658667pt;}
._1f{width:181.077333pt;}
._1a{width:183.552000pt;}
._23{width:187.861333pt;}
._32{width:190.464000pt;}
._2c{width:193.962667pt;}
._15{width:248.746667pt;}
._e{width:271.402667pt;}
._27{width:278.826667pt;}
._1c{width:281.941333pt;}
._3b{width:286.421333pt;}
._25{width:289.920000pt;}
._26{width:292.309333pt;}
._37{width:297.088000pt;}
._28{width:300.586667pt;}
._3d{width:302.421333pt;}
._29{width:303.360000pt;}
._19{width:307.456000pt;}
._39{width:313.088000pt;}
._24{width:322.688000pt;}
._3a{width:323.754667pt;}
._2a{width:327.424000pt;}
._3f{width:329.088000pt;}
._40{width:331.434667pt;}
._1b{width:335.274667pt;}
._16{width:336.469333pt;}
._3c{width:339.754667pt;}
._14{width:340.650667pt;}
._1d{width:345.941333pt;}
._38{width:350.421333pt;}
._41{width:352.768000pt;}
._18{width:356.608000pt;}
._17{width:357.802667pt;}
._42{width:371.754667pt;}
._36{width:423.082667pt;}
._2b{width:449.832000pt;}
._31{width:474.709333pt;}
._3e{width:555.776000pt;}
._43{width:1136.554667pt;}
._1e{width:1872.082667pt;}
.fse{font-size:21.542933pt;}
.fs5{font-size:23.320000pt;}
.fs11{font-size:30.775467pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs10{font-size:47.717867pt;}
.fs16{font-size:48.941333pt;}
.fs13{font-size:50.779200pt;}
.fs8{font-size:53.333333pt;}
.fs18{font-size:55.197333pt;}
.fsf{font-size:55.395733pt;}
.fs3{font-size:56.000000pt;}
.fs17{font-size:61.452800pt;}
.fs1{font-size:69.333333pt;}
.fs12{font-size:73.860800pt;}
.fsb{font-size:104.090667pt;}
.fsd{font-size:104.636267pt;}
.fsc{font-size:104.636800pt;}
.fs2{font-size:112.533333pt;}
.fs14{font-size:133.019733pt;}
.fs15{font-size:154.514667pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:4.368667pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y136{bottom:65.886133pt;}
.y177{bottom:71.345333pt;}
.yd2{bottom:74.163733pt;}
.y115{bottom:74.412133pt;}
.y61{bottom:74.462533pt;}
.y8b{bottom:74.729200pt;}
.yae{bottom:76.350933pt;}
.y2c{bottom:78.246000pt;}
.y135{bottom:79.219467pt;}
.y90{bottom:82.905467pt;}
.ye8{bottom:83.352267pt;}
.y176{bottom:84.678667pt;}
.y114{bottom:89.078800pt;}
.y60{bottom:90.462533pt;}
.y8a{bottom:90.729200pt;}
.y2b{bottom:91.576000pt;}
.y134{bottom:92.552800pt;}
.yd1{bottom:96.841067pt;}
.y8f{bottom:96.900133pt;}
.ye7{bottom:97.346933pt;}
.y175{bottom:98.012000pt;}
.yad{bottom:99.028267pt;}
.y133{bottom:105.886133pt;}
.y5f{bottom:106.462533pt;}
.y89{bottom:106.729200pt;}
.yda{bottom:107.793467pt;}
.y8e{bottom:110.894800pt;}
.y174{bottom:111.345333pt;}
.y113{bottom:111.756133pt;}
.yf0{bottom:119.021333pt;}
.y132{bottom:119.219467pt;}
.yd9{bottom:121.788133pt;}
.y5e{bottom:122.462533pt;}
.yd0{bottom:122.622400pt;}
.y88{bottom:122.729200pt;}
.y173{bottom:124.678667pt;}
.yac{bottom:124.809600pt;}
.y112{bottom:126.198800pt;}
.y91{bottom:132.093333pt;}
.y131{bottom:132.552800pt;}
.yd8{bottom:135.782800pt;}
.ycf{bottom:137.065067pt;}
.y172{bottom:138.012000pt;}
.y5d{bottom:138.462533pt;}
.y87{bottom:138.729200pt;}
.yab{bottom:139.252267pt;}
.y111{bottom:140.641467pt;}
.y130{bottom:145.886133pt;}
.yd7{bottom:149.777467pt;}
.y171{bottom:151.345333pt;}
.yce{bottom:151.507733pt;}
.yaa{bottom:153.694933pt;}
.y28{bottom:154.179067pt;}
.y5c{bottom:154.462533pt;}
.y86{bottom:154.729200pt;}
.y110{bottom:155.084133pt;}
.y12f{bottom:159.219467pt;}
.yd6{bottom:163.772133pt;}
.y170{bottom:164.678667pt;}
.ycd{bottom:165.950400pt;}
.ya9{bottom:168.137600pt;}
.y10f{bottom:169.526800pt;}
.y27{bottom:170.179067pt;}
.y5b{bottom:170.462533pt;}
.y85{bottom:170.729200pt;}
.y12e{bottom:172.552800pt;}
.ye9{bottom:177.814667pt;}
.y16f{bottom:178.012000pt;}
.ycc{bottom:180.393067pt;}
.ya8{bottom:182.580267pt;}
.y10e{bottom:183.969467pt;}
.y12d{bottom:185.886133pt;}
.y26{bottom:186.179067pt;}
.y5a{bottom:186.462533pt;}
.y84{bottom:186.729200pt;}
.y16e{bottom:191.345333pt;}
.ycb{bottom:194.835733pt;}
.ya7{bottom:197.022933pt;}
.y12c{bottom:199.219467pt;}
.y25{bottom:202.179067pt;}
.y83{bottom:202.729200pt;}
.y16d{bottom:204.678667pt;}
.yca{bottom:209.278400pt;}
.ya6{bottom:211.465600pt;}
.y10d{bottom:211.980133pt;}
.y12b{bottom:212.552800pt;}
.yea{bottom:214.569608pt;}
.y16c{bottom:218.012000pt;}
.y59{bottom:218.102533pt;}
.y24{bottom:218.179067pt;}
.y82{bottom:218.729200pt;}
.y12a{bottom:225.886133pt;}
.y16b{bottom:231.345333pt;}
.yb0{bottom:232.094533pt;}
.y58{bottom:234.102533pt;}
.y23{bottom:234.179067pt;}
.y81{bottom:234.729200pt;}
.yc9{bottom:235.059733pt;}
.y129{bottom:239.219467pt;}
.ya5{bottom:239.476267pt;}
.y10c{bottom:243.009200pt;}
.y16a{bottom:244.678667pt;}
.y22{bottom:250.179067pt;}
.y80{bottom:250.729200pt;}
.yeb{bottom:251.336785pt;}
.yf2{bottom:252.310000pt;}
.y128{bottom:252.552800pt;}
.y169{bottom:258.012000pt;}
.yc8{bottom:260.841067pt;}
.y127{bottom:265.886133pt;}
.y57{bottom:265.982533pt;}
.y21{bottom:266.179067pt;}
.y7f{bottom:266.729200pt;}
.ya4{bottom:270.494133pt;}
.y168{bottom:271.345333pt;}
.y96{bottom:276.751896pt;}
.y126{bottom:279.219467pt;}
.y2a{bottom:282.179067pt;}
.yf8{bottom:282.462533pt;}
.y7e{bottom:282.729200pt;}
.y167{bottom:284.678667pt;}
.yec{bottom:288.103961pt;}
.yc7{bottom:289.633200pt;}
.y125{bottom:292.552800pt;}
.y20{bottom:297.821067pt;}
.y166{bottom:298.012000pt;}
.y29{bottom:298.179067pt;}
.y10b{bottom:298.342533pt;}
.yf7{bottom:298.462533pt;}
.y7d{bottom:298.729200pt;}
.y124{bottom:305.886133pt;}
.yc6{bottom:306.966533pt;}
.ya3{bottom:310.589200pt;}
.y165{bottom:311.345333pt;}
.y10a{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y7c{bottom:314.729200pt;}
.yf1{bottom:316.122800pt;}
.y123{bottom:319.219467pt;}
.ya2{bottom:324.583867pt;}
.y164{bottom:324.678667pt;}
.yed{bottom:324.871138pt;}
.y109{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y7b{bottom:330.729200pt;}
.y122{bottom:332.552800pt;}
.y163{bottom:338.014133pt;}
.yaf{bottom:345.342667pt;}
.y108{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y7a{bottom:346.729200pt;}
.yc5{bottom:349.420667pt;}
.y162{bottom:351.347467pt;}
.yb7{bottom:351.492533pt;}
.yb1{bottom:353.176533pt;}
.yee{bottom:361.638315pt;}
.y121{bottom:361.982533pt;}
.y107{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y79{bottom:362.729200pt;}
.yc4{bottom:363.415333pt;}
.y1f{bottom:364.457067pt;}
.y161{bottom:364.680800pt;}
.yb2{bottom:367.391200pt;}
.yba{bottom:367.448853pt;}
.yc3{bottom:377.410000pt;}
.yb5{bottom:377.844267pt;}
.y160{bottom:378.014133pt;}
.y106{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y78{bottom:378.729200pt;}
.yf6{bottom:383.876533pt;}
.ybc{bottom:384.167064pt;}
.y1e{bottom:388.763733pt;}
.y15f{bottom:391.347467pt;}
.y105{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y77{bottom:394.729200pt;}
.yb3{bottom:396.575867pt;}
.y93{bottom:397.048400pt;}
.yd4{bottom:397.937333pt;}
.yef{bottom:398.393256pt;}
.yf5{bottom:401.436667pt;}
.y15e{bottom:404.680800pt;}
.y1d{bottom:404.763733pt;}
.y104{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y76{bottom:410.729200pt;}
.y15d{bottom:418.014133pt;}
.yf4{bottom:419.002667pt;}
.ydb{bottom:420.552933pt;}
.yde{bottom:420.555600pt;}
.y1c{bottom:420.763733pt;}
.y103{bottom:426.342533pt;}
.y4f{bottom:426.462533pt;}
.y75{bottom:426.729200pt;}
.yb9{bottom:427.091449pt;}
.y15c{bottom:431.347467pt;}
.y1b{bottom:436.763733pt;}
.y102{bottom:442.342533pt;}
.y4e{bottom:442.462533pt;}
.y74{bottom:442.729200pt;}
.yb4{bottom:443.580267pt;}
.y15b{bottom:444.680800pt;}
.yb8{bottom:448.695733pt;}
.y95{bottom:449.386267pt;}
.y1a{bottom:452.763733pt;}
.y15a{bottom:458.014133pt;}
.y120{bottom:458.102533pt;}
.y101{bottom:458.342533pt;}
.y4d{bottom:458.462533pt;}
.y19{bottom:468.763733pt;}
.y159{bottom:471.347467pt;}
.ye6{bottom:474.342533pt;}
.y73{bottom:474.369200pt;}
.y4c{bottom:474.462533pt;}
.y158{bottom:484.680800pt;}
.y18{bottom:484.763733pt;}
.y11f{bottom:490.102533pt;}
.ye5{bottom:490.342533pt;}
.y4b{bottom:490.462533pt;}
.yb6{bottom:492.923600pt;}
.ybb{bottom:493.367733pt;}
.y157{bottom:498.014133pt;}
.y17{bottom:500.763733pt;}
.yd5{bottom:503.653333pt;}
.ye4{bottom:506.342533pt;}
.y4a{bottom:506.462533pt;}
.y72{bottom:506.595867pt;}
.y156{bottom:511.347467pt;}
.y16{bottom:516.763733pt;}
.ybf{bottom:516.954583pt;}
.y100{bottom:522.342533pt;}
.y49{bottom:522.462533pt;}
.y71{bottom:522.595867pt;}
.y155{bottom:524.680800pt;}
.ybd{bottom:529.072400pt;}
.ybe{bottom:531.191287pt;}
.y15{bottom:532.763733pt;}
.ye3{bottom:537.982533pt;}
.y154{bottom:538.014133pt;}
.yff{bottom:538.342533pt;}
.y48{bottom:538.462533pt;}
.y70{bottom:538.595867pt;}
.y14{bottom:548.763733pt;}
.y153{bottom:551.347467pt;}
.y11e{bottom:554.102533pt;}
.yfe{bottom:554.342533pt;}
.y47{bottom:554.462533pt;}
.y6f{bottom:554.595867pt;}
.y94{bottom:556.581333pt;}
.y92{bottom:556.695200pt;}
.yc0{bottom:564.454667pt;}
.y152{bottom:564.680800pt;}
.y13{bottom:564.763733pt;}
.yfd{bottom:570.342533pt;}
.y46{bottom:570.462533pt;}
.y6e{bottom:570.595867pt;}
.y151{bottom:578.014133pt;}
.yc1{bottom:579.879600pt;}
.yfc{bottom:586.342533pt;}
.y45{bottom:586.462533pt;}
.y6d{bottom:586.595867pt;}
.y150{bottom:591.347467pt;}
.y11d{bottom:602.102533pt;}
.yfb{bottom:602.342533pt;}
.y44{bottom:602.462533pt;}
.y6c{bottom:602.595867pt;}
.y14f{bottom:604.680800pt;}
.y12{bottom:604.904267pt;}
.y11{bottom:615.971600pt;}
.y14e{bottom:618.014133pt;}
.yfa{bottom:618.342533pt;}
.y43{bottom:618.462533pt;}
.y6b{bottom:618.595867pt;}
.y14d{bottom:631.347467pt;}
.ya1{bottom:634.342533pt;}
.y42{bottom:634.462533pt;}
.y6a{bottom:634.595867pt;}
.yd3{bottom:639.614000pt;}
.ydc{bottom:641.702050pt;}
.ye0{bottom:641.718742pt;}
.ydf{bottom:642.066400pt;}
.y10{bottom:644.163200pt;}
.y14c{bottom:644.680800pt;}
.ya0{bottom:650.342533pt;}
.y41{bottom:650.462533pt;}
.y69{bottom:650.595867pt;}
.y14b{bottom:658.014133pt;}
.yf{bottom:660.985733pt;}
.y9f{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.y68{bottom:666.595867pt;}
.y14a{bottom:671.347467pt;}
.ye{bottom:672.985733pt;}
.yd{bottom:680.163200pt;}
.yf9{bottom:681.982533pt;}
.y9e{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.y67{bottom:682.595867pt;}
.y149{bottom:684.680800pt;}
.yc{bottom:696.985733pt;}
.y148{bottom:698.014133pt;}
.y11c{bottom:698.102533pt;}
.y9d{bottom:698.342533pt;}
.y3e{bottom:698.462533pt;}
.y66{bottom:698.595867pt;}
.yb{bottom:708.985733pt;}
.y147{bottom:711.347467pt;}
.y9c{bottom:714.342533pt;}
.y3d{bottom:714.462533pt;}
.y65{bottom:714.595867pt;}
.ya{bottom:716.163200pt;}
.y146{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.y9b{bottom:730.342533pt;}
.y3c{bottom:730.462533pt;}
.y64{bottom:730.595867pt;}
.y145{bottom:738.014133pt;}
.y8{bottom:744.985733pt;}
.y9a{bottom:746.342533pt;}
.y3b{bottom:746.462533pt;}
.y63{bottom:746.595867pt;}
.y144{bottom:751.347467pt;}
.y99{bottom:762.342533pt;}
.y3a{bottom:762.462533pt;}
.y143{bottom:764.680800pt;}
.y7{bottom:770.521067pt;}
.y142{bottom:778.014133pt;}
.y62{bottom:778.235867pt;}
.y98{bottom:778.342533pt;}
.y39{bottom:778.462533pt;}
.y6{bottom:789.183067pt;}
.y141{bottom:791.347467pt;}
.y38{bottom:794.462533pt;}
.y140{bottom:804.680800pt;}
.y97{bottom:809.982533pt;}
.y37{bottom:810.462533pt;}
.y13f{bottom:818.014133pt;}
.y36{bottom:826.462533pt;}
.y5{bottom:830.226133pt;}
.y13e{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.y13d{bottom:844.680800pt;}
.y13c{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.y11b{bottom:858.464533pt;}
.y4{bottom:862.635733pt;}
.y13b{bottom:871.347467pt;}
.y33{bottom:874.462533pt;}
.y11a{bottom:874.464533pt;}
.y13a{bottom:884.680800pt;}
.ydd{bottom:885.526194pt;}
.ye1{bottom:885.537067pt;}
.y32{bottom:890.462533pt;}
.y119{bottom:890.464533pt;}
.y3{bottom:895.045333pt;}
.y139{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.y118{bottom:906.464533pt;}
.y138{bottom:911.347467pt;}
.y8d{bottom:922.102533pt;}
.y117{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.y137{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y8c{bottom:1006.594400pt;}
.ye2{bottom:1006.597067pt;}
.y178{bottom:1006.598667pt;}
.yc2{bottom:1006.599600pt;}
.y116{bottom:1006.604133pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h1b{height:15.694364pt;}
.h7{height:17.000371pt;}
.h1e{height:22.420408pt;}
.h9{height:25.255208pt;}
.h2{height:27.197917pt;}
.hf{height:29.140625pt;}
.h8{height:29.160156pt;}
.h18{height:29.625000pt;}
.h14{height:29.645833pt;}
.h11{height:31.083333pt;}
.h10{height:31.104167pt;}
.h1d{height:34.763211pt;}
.h24{height:35.654526pt;}
.h20{height:36.993441pt;}
.h12{height:37.031250pt;}
.he{height:37.057292pt;}
.hd{height:38.828125pt;}
.ha{height:38.854167pt;}
.hc{height:38.860475pt;}
.hb{height:38.880208pt;}
.h28{height:40.212120pt;}
.h1c{height:40.356657pt;}
.h27{height:44.769325pt;}
.h13{height:46.727068pt;}
.h26{height:48.970200pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h1f{height:53.808747pt;}
.h16{height:75.831677pt;}
.h1a{height:76.229155pt;}
.h17{height:76.229544pt;}
.h4{height:81.927344pt;}
.h21{height:96.906954pt;}
.h23{height:112.566349pt;}
.h19{height:254.026667pt;}
.h25{height:324.917333pt;}
.h22{height:535.605333pt;}
.h15{height:580.662667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:577.049333pt;}
.w2{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:3.548533pt;}
.x1a{left:5.792000pt;}
.x2d{left:7.549467pt;}
.x34{left:23.279333pt;}
.x32{left:62.740133pt;}
.xa{left:68.031467pt;}
.x19{left:69.921200pt;}
.x1f{left:74.867333pt;}
.x20{left:79.997200pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x2a{left:88.818933pt;}
.x14{left:90.477867pt;}
.x4{left:94.488133pt;}
.xb{left:98.271467pt;}
.x35{left:105.324400pt;}
.x3b{left:109.606533pt;}
.x3{left:111.491467pt;}
.x6{left:117.165333pt;}
.x1d{left:120.570800pt;}
.x2c{left:125.324133pt;}
.xc{left:128.644800pt;}
.x1e{left:146.601733pt;}
.x1c{left:179.045067pt;}
.x18{left:187.644800pt;}
.x5{left:189.223467pt;}
.x3a{left:191.582533pt;}
.x33{left:195.675867pt;}
.x2e{left:203.263067pt;}
.x38{left:243.254533pt;}
.x39{left:256.609200pt;}
.x24{left:258.984800pt;}
.x15{left:280.168000pt;}
.x36{left:320.006400pt;}
.x21{left:324.579733pt;}
.x31{left:354.133913pt;}
.x16{left:367.097333pt;}
.x27{left:383.589476pt;}
.x9{left:404.481333pt;}
.xd{left:406.311467pt;}
.x11{left:425.194267pt;}
.x7{left:427.085333pt;}
.xe{left:436.551467pt;}
.x3c{left:447.889200pt;}
.x12{left:455.434267pt;}
.x28{left:473.401467pt;}
.x2f{left:493.571200pt;}
.x26{left:499.698933pt;}
.x37{left:506.970800pt;}
.x25{left:521.589433pt;}
.x22{left:532.183977pt;}
.x30{left:536.074933pt;}
.x2b{left:570.429600pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x1b{left:646.093067pt;}
.xf{left:653.391467pt;}
.x23{left:669.011109pt;}
.x17{left:672.289067pt;}
.x29{left:681.268667pt;}
}




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