
    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_852923a54eaafe9d06bf9b16.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9d43720dcee022e93f40cdf2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_32daef582b8c6c5505c72e94.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.961426;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_a8b879bc3b17a6a4ebefc248.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931152;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_bd62c97e69df4051691cc898.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.873535;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_553013a55af251974e44232f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.861816;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_a3981aa82497aa50eeac8f36.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_0a50f928e50cb504e4d2645b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.870605;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_997f4c34ce0e08b3d2bc10ae.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_ea380d2fbb862b0fccfd2dc4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_ada145637ac05ab35f634c5c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677734;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_8b4f7e308d4224af4d633323.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;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;}
.m9{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);}
.m2{transform:matrix(0.157123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157123,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.187819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187819,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.233301,0.000000,-0.077767,0.237597,0,0);-ms-transform:matrix(0.233301,0.000000,-0.077767,0.237597,0,0);-webkit-transform:matrix(0.233301,0.000000,-0.077767,0.237597,0,0);}
.m6{transform:matrix(0.236594,0.000000,-0.078865,0.237235,0,0);-ms-transform:matrix(0.236594,0.000000,-0.078865,0.237235,0,0);-webkit-transform:matrix(0.236594,0.000000,-0.078865,0.237235,0,0);}
.m7{transform:matrix(0.245479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245479,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249323,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249324,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(0.268311,0.000000,-0.089437,0.233455,0,0);-ms-transform:matrix(0.268311,0.000000,-0.089437,0.233455,0,0);-webkit-transform:matrix(0.268311,0.000000,-0.089437,0.233455,0,0);}
.v7{vertical-align:-41.742720px;}
.v2{vertical-align:-34.559400px;}
.v5{vertical-align:-32.453280px;}
.v6{vertical-align:-25.200000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.180400px;}
.v3{vertical-align:34.559400px;}
.v1{vertical-align:50.389920px;}
.ls64{letter-spacing:-6.878160px;}
.ls67{letter-spacing:-5.040000px;}
.ls69{letter-spacing:-5.020560px;}
.ls61{letter-spacing:-4.865040px;}
.ls13{letter-spacing:-4.361760px;}
.ls31{letter-spacing:-3.749760px;}
.ls6b{letter-spacing:-3.690720px;}
.ls73{letter-spacing:-3.024000px;}
.ls74{letter-spacing:-2.880000px;}
.ls5b{letter-spacing:-2.736000px;}
.ls5a{letter-spacing:-2.397600px;}
.ls62{letter-spacing:-2.348640px;}
.ls14{letter-spacing:-2.180880px;}
.ls1d{letter-spacing:-2.052000px;}
.ls72{letter-spacing:-2.016000px;}
.ls1f{letter-spacing:-1.944000px;}
.ls55{letter-spacing:-1.922400px;}
.ls22{letter-spacing:-1.728000px;}
.ls42{letter-spacing:-1.712880px;}
.ls6a{letter-spacing:-1.677600px;}
.ls1a{letter-spacing:-1.620000px;}
.ls24{letter-spacing:-1.509840px;}
.ls2b{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.404000px;}
.ls41{letter-spacing:-1.317600px;}
.ls1e{letter-spacing:-1.296000px;}
.ls75{letter-spacing:-1.008000px;}
.ls4a{letter-spacing:-0.613440px;}
.ls60{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls57{letter-spacing:-0.488668px;}
.ls71{letter-spacing:-0.432000px;}
.ls48{letter-spacing:-0.408960px;}
.ls83{letter-spacing:-0.383040px;}
.ls2a{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.335520px;}
.ls17{letter-spacing:-0.324000px;}
.ls32{letter-spacing:-0.312480px;}
.ls4b{letter-spacing:-0.306720px;}
.ls7c{letter-spacing:-0.299520px;}
.lsa{letter-spacing:-0.288000px;}
.ls54{letter-spacing:-0.264240px;}
.ls40{letter-spacing:-0.263520px;}
.ls44{letter-spacing:-0.240480px;}
.ls70{letter-spacing:-0.239760px;}
.ls5{letter-spacing:-0.224640px;}
.ls16{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.192240px;}
.ls82{letter-spacing:-0.191520px;}
.ls29{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.167760px;}
.ls7d{letter-spacing:-0.149760px;}
.ls20{letter-spacing:-0.144000px;}
.ls33{letter-spacing:-0.131760px;}
.ls18{letter-spacing:-0.108000px;}
.ls46{letter-spacing:-0.102240px;}
.ls1{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.102240px;}
.ls19{letter-spacing:0.108000px;}
.ls36{letter-spacing:0.114696px;}
.ls45{letter-spacing:0.120240px;}
.ls79{letter-spacing:0.131760px;}
.ls9{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.156240px;}
.ls56{letter-spacing:0.162889px;}
.lsc{letter-spacing:0.167760px;}
.ls28{letter-spacing:0.180000px;}
.ls53{letter-spacing:0.192240px;}
.ls1b{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.239760px;}
.ls43{letter-spacing:0.240480px;}
.ls38{letter-spacing:0.263520px;}
.ls8{letter-spacing:0.264240px;}
.ls2f{letter-spacing:0.274320px;}
.ls21{letter-spacing:0.288000px;}
.ls7b{letter-spacing:0.299520px;}
.ls47{letter-spacing:0.306720px;}
.ls2d{letter-spacing:0.312480px;}
.ls51{letter-spacing:0.319680px;}
.ls7e{letter-spacing:0.324000px;}
.ls65{letter-spacing:0.335520px;}
.ls3c{letter-spacing:0.341280px;}
.ls26{letter-spacing:0.360000px;}
.ls80{letter-spacing:0.383040px;}
.ls10{letter-spacing:0.671040px;}
.ls3b{letter-spacing:6.929280px;}
.lsd{letter-spacing:11.037600px;}
.lsf{letter-spacing:11.714400px;}
.lsb{letter-spacing:11.757600px;}
.ls81{letter-spacing:24.131520px;}
.ls11{letter-spacing:26.841600px;}
.lse{letter-spacing:27.512640px;}
.ls35{letter-spacing:29.646000px;}
.ls37{letter-spacing:30.126240px;}
.ls7a{letter-spacing:30.173040px;}
.ls6f{letter-spacing:31.392000px;}
.ls77{letter-spacing:34.145280px;}
.ls12{letter-spacing:37.242720px;}
.ls7f{letter-spacing:37.746000px;}
.ls63{letter-spacing:38.618352px;}
.ls59{letter-spacing:38.920320px;}
.ls66{letter-spacing:39.312000px;}
.ls5f{letter-spacing:40.032000px;}
.ls5e{letter-spacing:43.488000px;}
.ls5d{letter-spacing:43.920000px;}
.ls5c{letter-spacing:44.640000px;}
.ls6d{letter-spacing:45.792000px;}
.ls27{letter-spacing:48.490560px;}
.ls6c{letter-spacing:54.377568px;}
.ls50{letter-spacing:54.771840px;}
.ls7{letter-spacing:55.296000px;}
.ls4c{letter-spacing:57.755520px;}
.ls6e{letter-spacing:60.768000px;}
.ls78{letter-spacing:62.101440px;}
.ls3e{letter-spacing:71.501760px;}
.ls84{letter-spacing:78.084000px;}
.ls52{letter-spacing:94.716000px;}
.ls25{letter-spacing:99.000000px;}
.ls3d{letter-spacing:101.952000px;}
.ls6{letter-spacing:103.284000px;}
.ls3a{letter-spacing:105.154560px;}
.ls2e{letter-spacing:107.316000px;}
.ls76{letter-spacing:109.584000px;}
.ls58{letter-spacing:111.600000px;}
.ls4e{letter-spacing:114.954930px;}
.ls30{letter-spacing:115.884000px;}
.ls34{letter-spacing:118.044000px;}
.ls39{letter-spacing:119.916000px;}
.ls68{letter-spacing:162.576000px;}
.ls3f{letter-spacing:244.555200px;}
.ls23{letter-spacing:294.804000px;}
.ls4d{letter-spacing:551.128320px;}
.ls4f{letter-spacing:789.036840px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws85{word-spacing:-789.036840px;}
.ws84{word-spacing:-551.128320px;}
.ws7a{word-spacing:-303.056640px;}
.ws1c{word-spacing:-167.760000px;}
.ws1f{word-spacing:-130.349520px;}
.ws6c{word-spacing:-102.240000px;}
.ws8b{word-spacing:-89.426171px;}
.ws9{word-spacing:-59.982480px;}
.ws3a{word-spacing:-59.718240px;}
.ws6d{word-spacing:-59.497920px;}
.ws76{word-spacing:-52.087027px;}
.ws92{word-spacing:-51.788160px;}
.ws88{word-spacing:-41.523840px;}
.ws8a{word-spacing:-40.885189px;}
.ws89{word-spacing:-40.722300px;}
.ws4c{word-spacing:-40.500000px;}
.ws4a{word-spacing:-39.240000px;}
.wsa3{word-spacing:-38.249280px;}
.wsaf{word-spacing:-37.913760px;}
.wse8{word-spacing:-37.746000px;}
.ws30{word-spacing:-37.578240px;}
.wsb4{word-spacing:-36.236160px;}
.ws97{word-spacing:-36.000000px;}
.ws12{word-spacing:-35.732880px;}
.ws56{word-spacing:-35.466480px;}
.ws59{word-spacing:-35.310240px;}
.ws94{word-spacing:-32.832000px;}
.ws3c{word-spacing:-32.688000px;}
.wsb{word-spacing:-32.544000px;}
.wsc4{word-spacing:-31.968000px;}
.ws58{word-spacing:-31.560480px;}
.ws37{word-spacing:-30.816000px;}
.ws93{word-spacing:-29.808000px;}
.ws66{word-spacing:-29.777760px;}
.ws69{word-spacing:-27.174240px;}
.ws0{word-spacing:-25.159680px;}
.wsd9{word-spacing:-24.732000px;}
.ws1b{word-spacing:-24.516000px;}
.ws90{word-spacing:-24.408000px;}
.ws19{word-spacing:-24.300000px;}
.ws91{word-spacing:-24.084000px;}
.wse6{word-spacing:-23.556960px;}
.ws72{word-spacing:-23.412960px;}
.ws18{word-spacing:-22.788000px;}
.ws71{word-spacing:-22.492800px;}
.ws34{word-spacing:-22.464000px;}
.wscb{word-spacing:-21.641760px;}
.ws78{word-spacing:-5.338656px;}
.wsa1{word-spacing:-2.880000px;}
.ws3b{word-spacing:-2.736000px;}
.ws47{word-spacing:-2.592000px;}
.ws9f{word-spacing:-2.448000px;}
.ws42{word-spacing:-2.378160px;}
.wsab{word-spacing:-2.304000px;}
.ws54{word-spacing:-2.187360px;}
.wse0{word-spacing:-2.160000px;}
.ws4d{word-spacing:-2.093616px;}
.ws40{word-spacing:-1.872000px;}
.ws81{word-spacing:-1.840320px;}
.wsd{word-spacing:-1.728000px;}
.ws53{word-spacing:-1.718640px;}
.wse9{word-spacing:-1.678320px;}
.ws51{word-spacing:-1.620000px;}
.ws8f{word-spacing:-1.584000px;}
.ws5e{word-spacing:-1.581120px;}
.ws5a{word-spacing:-1.406160px;}
.ws48{word-spacing:-1.296000px;}
.wse4{word-spacing:-1.244880px;}
.ws1{word-spacing:-1.198800px;}
.wsd4{word-spacing:-1.185840px;}
.ws3e{word-spacing:-1.152000px;}
.ws70{word-spacing:-1.124640px;}
.ws20{word-spacing:-1.056960px;}
.ws6e{word-spacing:-1.053072px;}
.ws68{word-spacing:-1.022976px;}
.ws46{word-spacing:-1.008000px;}
.ws2{word-spacing:-0.959040px;}
.wsf{word-spacing:-0.864000px;}
.wsa4{word-spacing:-0.792720px;}
.ws52{word-spacing:-0.781200px;}
.ws79{word-spacing:-0.777888px;}
.ws4{word-spacing:-0.768960px;}
.wsd8{word-spacing:-0.748800px;}
.ws6a{word-spacing:-0.745488px;}
.wsad{word-spacing:-0.720000px;}
.wscd{word-spacing:-0.719280px;}
.ws6f{word-spacing:-0.613440px;}
.ws6b{word-spacing:-0.601200px;}
.ws3f{word-spacing:-0.576000px;}
.ws49{word-spacing:-0.558000px;}
.ws4b{word-spacing:-0.540000px;}
.wsd6{word-spacing:-0.527040px;}
.ws22{word-spacing:-0.503280px;}
.ws41{word-spacing:-0.432000px;}
.wsd5{word-spacing:-0.395280px;}
.wse5{word-spacing:-0.383040px;}
.ws96{word-spacing:-0.359640px;}
.ws1e{word-spacing:-0.335520px;}
.ws5b{word-spacing:-0.312480px;}
.ws82{word-spacing:-0.306720px;}
.wsd0{word-spacing:-0.299520px;}
.ws39{word-spacing:-0.288000px;}
.ws4e{word-spacing:-0.264240px;}
.ws5f{word-spacing:-0.263520px;}
.ws7e{word-spacing:-0.240480px;}
.ws95{word-spacing:-0.239760px;}
.ws2c{word-spacing:-0.216000px;}
.wsb9{word-spacing:-0.201312px;}
.wse2{word-spacing:-0.191520px;}
.ws43{word-spacing:-0.167760px;}
.ws10{word-spacing:-0.144000px;}
.wsd3{word-spacing:-0.131760px;}
.ws25{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
.ws80{word-spacing:0.102240px;}
.ws2f{word-spacing:0.108000px;}
.ws7d{word-spacing:0.131760px;}
.wse{word-spacing:0.144000px;}
.ws8{word-spacing:0.167760px;}
.ws55{word-spacing:0.180000px;}
.ws24{word-spacing:0.216000px;}
.ws45{word-spacing:0.288000px;}
.wsd1{word-spacing:0.299520px;}
.ws83{word-spacing:0.306720px;}
.ws23{word-spacing:0.324000px;}
.ws5{word-spacing:0.335520px;}
.ws50{word-spacing:0.360000px;}
.ws16{word-spacing:0.367200px;}
.ws7b{word-spacing:0.395280px;}
.wsb8{word-spacing:0.419400px;}
.ws38{word-spacing:0.432000px;}
.wsd7{word-spacing:0.449280px;}
.wscc{word-spacing:0.479520px;}
.ws7f{word-spacing:0.480960px;}
.ws8e{word-spacing:0.488668px;}
.wsc{word-spacing:0.503280px;}
.wsb3{word-spacing:0.528480px;}
.ws86{word-spacing:0.536832px;}
.ws4f{word-spacing:0.540000px;}
.wse3{word-spacing:0.574560px;}
.wsa0{word-spacing:0.576000px;}
.ws8c{word-spacing:0.576720px;}
.ws60{word-spacing:0.619272px;}
.ws2d{word-spacing:0.648000px;}
.ws87{word-spacing:0.660600px;}
.ws2e{word-spacing:0.756000px;}
.wsce{word-spacing:0.864000px;}
.wsd2{word-spacing:0.898560px;}
.wse1{word-spacing:0.909720px;}
.ws27{word-spacing:0.918000px;}
.wsbd{word-spacing:0.939456px;}
.ws1a{word-spacing:0.961200px;}
.ws17{word-spacing:1.004400px;}
.ws7{word-spacing:1.006560px;}
.wsac{word-spacing:1.008000px;}
.wsaa{word-spacing:1.040112px;}
.ws2b{word-spacing:1.080000px;}
.ws65{word-spacing:1.159488px;}
.ws5d{word-spacing:1.185840px;}
.ws7c{word-spacing:1.317600px;}
.ws21{word-spacing:1.342080px;}
.ws8d{word-spacing:1.345680px;}
.ws14{word-spacing:1.436400px;}
.ws15{word-spacing:1.544400px;}
.wsbc{word-spacing:1.576944px;}
.ws2a{word-spacing:1.620000px;}
.ws61{word-spacing:1.633824px;}
.ws28{word-spacing:1.652400px;}
.ws44{word-spacing:1.677600px;}
.ws6{word-spacing:2.013120px;}
.wscf{word-spacing:2.016000px;}
.ws62{word-spacing:2.160864px;}
.wsba{word-spacing:2.180880px;}
.wsae{word-spacing:2.348640px;}
.wsbb{word-spacing:2.382192px;}
.ws63{word-spacing:2.490264px;}
.ws5c{word-spacing:2.499840px;}
.ws33{word-spacing:2.624400px;}
.ws13{word-spacing:2.667600px;}
.ws3d{word-spacing:2.684160px;}
.ws67{word-spacing:2.938248px;}
.wsb7{word-spacing:3.002904px;}
.ws64{word-spacing:3.043656px;}
.wsa2{word-spacing:3.187440px;}
.wsb6{word-spacing:3.690720px;}
.wsa{word-spacing:4.059792px;}
.ws26{word-spacing:4.212000px;}
.ws9e{word-spacing:4.613400px;}
.ws29{word-spacing:4.935600px;}
.wsb2{word-spacing:5.020560px;}
.wsc9{word-spacing:5.328000px;}
.wsca{word-spacing:5.760000px;}
.wsa5{word-spacing:6.878160px;}
.ws11{word-spacing:8.958384px;}
.ws9d{word-spacing:9.226800px;}
.wsc0{word-spacing:12.384000px;}
.wsc1{word-spacing:12.960000px;}
.wsc3{word-spacing:13.536000px;}
.wsbe{word-spacing:14.688000px;}
.wsc2{word-spacing:14.976000px;}
.ws74{word-spacing:15.772789px;}
.wsbf{word-spacing:19.008000px;}
.ws77{word-spacing:20.022624px;}
.ws75{word-spacing:22.686624px;}
.ws57{word-spacing:26.114400px;}
.wsc7{word-spacing:26.928000px;}
.wsc5{word-spacing:27.936000px;}
.wsc6{word-spacing:31.953600px;}
.wsc8{word-spacing:34.272000px;}
.wsdd{word-spacing:34.416000px;}
.wsdf{word-spacing:34.992000px;}
.ws98{word-spacing:39.168000px;}
.wse7{word-spacing:39.339720px;}
.ws9a{word-spacing:39.888000px;}
.ws1d{word-spacing:46.134000px;}
.wsa6{word-spacing:70.416000px;}
.wsb5{word-spacing:75.024000px;}
.ws31{word-spacing:78.116400px;}
.wsde{word-spacing:82.152000px;}
.wsdb{word-spacing:114.156000px;}
.ws32{word-spacing:123.984000px;}
.ws35{word-spacing:143.362200px;}
.wsa7{word-spacing:157.968000px;}
.wsdc{word-spacing:168.912000px;}
.wsa9{word-spacing:210.960000px;}
.wsa8{word-spacing:223.200000px;}
.ws73{word-spacing:237.552210px;}
.ws99{word-spacing:522.432000px;}
.ws9b{word-spacing:536.971800px;}
.ws9c{word-spacing:794.880000px;}
.wsb0{word-spacing:944.561400px;}
.ws36{word-spacing:969.984000px;}
.wsb1{word-spacing:1077.408000px;}
.wsda{word-spacing:1368.576000px;}
._1e{margin-left:-1003.180950px;}
._1d{margin-left:-757.923448px;}
._1b{margin-left:-636.245215px;}
._1c{margin-left:-629.729647px;}
._1f{margin-left:-417.936359px;}
._1a{margin-left:-318.672941px;}
._22{margin-left:-309.489480px;}
._19{margin-left:-169.856640px;}
._21{margin-left:-149.695175px;}
._20{margin-left:-68.739242px;}
._14{margin-left:-58.266009px;}
._9{margin-left:-16.958952px;}
._a{margin-left:-15.679296px;}
._e{margin-left:-14.133528px;}
._34{margin-left:-12.649032px;}
._32{margin-left:-11.326896px;}
._c{margin-left:-9.354096px;}
._d{margin-left:-7.196904px;}
._1{margin-left:-5.874120px;}
._0{margin-left:-4.339656px;}
._4{margin-left:-2.871504px;}
._3{margin-left:-1.030968px;}
._2{width:1.102896px;}
._5{width:2.979720px;}
._7{width:4.039056px;}
._b{width:5.703840px;}
._6{width:6.768144px;}
._8{width:25.982208px;}
._3a{width:33.840000px;}
._30{width:38.888352px;}
._31{width:41.101200px;}
._39{width:51.840000px;}
._36{width:58.695120px;}
._23{width:60.768000px;}
._16{width:61.847424px;}
._f{width:68.008320px;}
._17{width:71.128800px;}
._38{width:119.753400px;}
._3b{width:129.073704px;}
._37{width:138.564000px;}
._3c{width:167.959320px;}
._28{width:169.776000px;}
._18{width:176.037120px;}
._26{width:181.728000px;}
._12{width:184.466016px;}
._27{width:193.248000px;}
._25{width:206.928000px;}
._15{width:225.086688px;}
._35{width:260.928000px;}
._2d{width:273.024000px;}
._29{width:276.192000px;}
._2a{width:285.840000px;}
._2b{width:297.360000px;}
._33{width:303.889104px;}
._13{width:312.869115px;}
._2c{width:358.609104px;}
._10{width:361.811524px;}
._11{width:433.173615px;}
._24{width:621.504000px;}
._2e{width:827.136000px;}
._2f{width:1029.024000px;}
.fc4{color:rgb(74,69,42);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc5{color:rgb(89,89,89);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:61.605000px;}
.fs10{font-size:67.680000px;}
.fs1a{font-size:72.000000px;}
.fsf{font-size:74.880000px;}
.fsc{font-size:87.840000px;}
.fs18{font-size:95.760000px;}
.fse{font-size:102.240000px;}
.fs13{font-size:106.560000px;}
.fs6{font-size:108.000000px;}
.fs15{font-size:112.293782px;}
.fs3{font-size:112.320000px;}
.fsd{font-size:120.240000px;}
.fs7{font-size:122.400000px;}
.fsb{font-size:131.760000px;}
.fs12{font-size:139.582200px;}
.fs5{font-size:144.000000px;}
.fs19{font-size:149.760000px;}
.fsa{font-size:156.240000px;}
.fs16{font-size:162.889200px;}
.fs11{font-size:167.055000px;}
.fs2{font-size:167.760000px;}
.fs17{font-size:171.392413px;}
.fs9{font-size:180.000000px;}
.fs1{font-size:192.240000px;}
.fs8{font-size:222.056036px;}
.fs0{font-size:239.760000px;}
.fs4{font-size:264.240000px;}
.y0{bottom:0.000000px;}
.y53{bottom:6.801803px;}
.y4e{bottom:11.724450px;}
.y55{bottom:13.665840px;}
.y4f{bottom:13.666950px;}
.y5c{bottom:17.285850px;}
.y5e{bottom:17.286150px;}
.y27{bottom:21.600000px;}
.y52{bottom:25.606729px;}
.yfb{bottom:30.960000px;}
.y102{bottom:32.108700px;}
.y103{bottom:32.111100px;}
.y4c{bottom:46.260000px;}
.y18{bottom:48.211200px;}
.y51{bottom:56.055000px;}
.y4d{bottom:59.801250px;}
.y12{bottom:60.428400px;}
.y54{bottom:62.923200px;}
.y50{bottom:62.924310px;}
.yf7{bottom:65.340000px;}
.y101{bottom:66.506700px;}
.y100{bottom:66.828300px;}
.y6b{bottom:76.576800px;}
.y5d{bottom:78.369300px;}
.y5f{bottom:78.369600px;}
.yb3{bottom:81.702720px;}
.y14{bottom:82.612200px;}
.y11{bottom:92.828400px;}
.y137{bottom:93.796950px;}
.y26{bottom:95.040000px;}
.y141{bottom:99.609450px;}
.yf3{bottom:99.720000px;}
.yfe{bottom:100.899900px;}
.yff{bottom:100.902300px;}
.yb7{bottom:104.178750px;}
.y110{bottom:104.236500px;}
.yd4{bottom:104.313750px;}
.yd0{bottom:104.329350px;}
.yfc{bottom:104.337900px;}
.ycc{bottom:104.344950px;}
.yf8{bottom:104.353500px;}
.yc8{bottom:104.360550px;}
.yf4{bottom:104.369100px;}
.yc4{bottom:104.376150px;}
.yf0{bottom:104.384700px;}
.yc0{bottom:104.391750px;}
.yec{bottom:104.400300px;}
.ybc{bottom:104.407350px;}
.ye8{bottom:104.415900px;}
.ye4{bottom:104.431350px;}
.ye0{bottom:104.447100px;}
.ydc{bottom:104.462550px;}
.yd8{bottom:104.478150px;}
.y124{bottom:105.609450px;}
.y92{bottom:106.896240px;}
.y118{bottom:110.913150px;}
.yb2{bottom:117.720000px;}
.y6a{bottom:119.776800px;}
.y25{bottom:119.880000px;}
.y1b{bottom:120.895200px;}
.y14b{bottom:122.232750px;}
.y135{bottom:128.689050px;}
.y3b{bottom:131.953320px;}
.yef{bottom:134.100000px;}
.y13f{bottom:134.507460px;}
.ya5{bottom:135.018300px;}
.yfd{bottom:135.297900px;}
.yfa{bottom:135.619500px;}
.y12e{bottom:137.834250px;}
.y117{bottom:138.772200px;}
.y24{bottom:144.180000px;}
.y10f{bottom:144.336300px;}
.y122{bottom:144.358650px;}
.y5a{bottom:144.360000px;}
.y6{bottom:144.722370px;}
.ya4{bottom:145.818300px;}
.y13e{bottom:146.501400px;}
.y99{bottom:147.060000px;}
.y64{bottom:150.033300px;}
.y31{bottom:157.308120px;}
.y125{bottom:158.984250px;}
.y111{bottom:159.886200px;}
.y4b{bottom:160.342350px;}
.yb1{bottom:162.720000px;}
.y14a{bottom:165.432750px;}
.y109{bottom:165.504300px;}
.y119{bottom:165.562650px;}
.ya7{bottom:166.698300px;}
.yeb{bottom:168.480000px;}
.yf6{bottom:169.691100px;}
.yf9{bottom:169.693500px;}
.y12f{bottom:171.463950px;}
.y69{bottom:171.616800px;}
.y3a{bottom:174.060000px;}
.y138{bottom:177.276300px;}
.ya3{bottom:189.018300px;}
.y63{bottom:193.233300px;}
.y75{bottom:194.542350px;}
.y23{bottom:196.020000px;}
.y98{bottom:200.496240px;}
.ye7{bottom:202.860000px;}
.y2e{bottom:203.220000px;}
.yf5{bottom:204.089100px;}
.yf2{bottom:204.410700px;}
.y5{bottom:205.202370px;}
.y4a{bottom:205.348830px;}
.y30{bottom:207.720000px;}
.y149{bottom:208.632750px;}
.y126{bottom:208.718250px;}
.ya6{bottom:209.898300px;}
.y11a{bottom:214.468650px;}
.y68{bottom:214.816800px;}
.y112{bottom:225.262200px;}
.y39{bottom:227.160000px;}
.y10a{bottom:230.754300px;}
.ye3{bottom:237.240000px;}
.yee{bottom:238.482300px;}
.yf1{bottom:238.484700px;}
.y130{bottom:241.009650px;}
.ya2{bottom:243.018300px;}
.y60{bottom:244.904250px;}
.y74{bottom:246.382350px;}
.y139{bottom:246.822000px;}
.y22{bottom:247.860000px;}
.y49{bottom:249.439830px;}
.y97{bottom:250.908120px;}
.yb0{bottom:252.720000px;}
.y81{bottom:253.788120px;}
.y2d{bottom:255.060000px;}
.yb9{bottom:257.902200px;}
.y127{bottom:258.452250px;}
.y148{bottom:260.472750px;}
.y7b{bottom:261.620400px;}
.y11b{bottom:263.374650px;}
.y4{bottom:265.679850px;}
.y91{bottom:266.580000px;}
.y85{bottom:270.931050px;}
.ydf{bottom:271.620000px;}
.yed{bottom:272.880300px;}
.yea{bottom:273.201900px;}
.ye{bottom:275.220000px;}
.y38{bottom:275.760000px;}
.y62{bottom:279.633300px;}
.y47{bottom:283.102350px;}
.y8c{bottom:289.291200px;}
.y73{bottom:289.582350px;}
.y113{bottom:290.638200px;}
.y48{bottom:293.538030px;}
.y10b{bottom:296.004300px;}
.yaf{bottom:297.720000px;}
.ya1{bottom:299.080500px;}
.y21{bottom:301.320000px;}
.y94{bottom:304.188120px;}
.y80{bottom:304.200000px;}
.y17{bottom:305.602500px;}
.ydb{bottom:306.000000px;}
.ye6{bottom:307.273350px;}
.ye9{bottom:307.275900px;}
.y128{bottom:308.186250px;}
.y2c{bottom:308.520000px;}
.y90{bottom:309.780000px;}
.y131{bottom:310.555350px;}
.y42{bottom:311.590470px;}
.y11c{bottom:312.280650px;}
.y147{bottom:312.312750px;}
.y1a{bottom:315.295200px;}
.y13a{bottom:316.367700px;}
.y67{bottom:322.276050px;}
.y61{bottom:322.833300px;}
.y46{bottom:324.502350px;}
.y7a{bottom:326.420400px;}
.yd{bottom:327.060000px;}
.y3{bottom:327.599850px;}
.y72{bottom:332.782350px;}
.y37{bottom:335.160000px;}
.y84{bottom:335.731050px;}
.yd7{bottom:340.380000px;}
.yae{bottom:341.640000px;}
.ye5{bottom:341.671350px;}
.ye2{bottom:341.993100px;}
.y88{bottom:344.508120px;}
.y66{bottom:346.495050px;}
.ya0{bottom:350.920350px;}
.y65{bottom:353.326050px;}
.y8b{bottom:354.091200px;}
.y93{bottom:354.600000px;}
.y41{bottom:355.137150px;}
.y114{bottom:356.014200px;}
.y129{bottom:357.920250px;}
.y20{bottom:360.180000px;}
.y11d{bottom:361.186650px;}
.y10c{bottom:361.254300px;}
.y8f{bottom:361.620000px;}
.y7f{bottom:364.656240px;}
.y58{bottom:364.668120px;}
.y146{bottom:365.760870px;}
.y2b{bottom:369.000000px;}
.y2f{bottom:370.260000px;}
.yd3{bottom:374.940000px;}
.yde{bottom:376.064550px;}
.ye1{bottom:376.067100px;}
.yc{bottom:378.900000px;}
.y132{bottom:380.101050px;}
.yad{bottom:381.231720px;}
.y13b{bottom:385.913400px;}
.y71{bottom:386.206860px;}
.y78{bottom:391.220400px;}
.y36{bottom:392.953320px;}
.y9f{bottom:394.120350px;}
.y87{bottom:394.920000px;}
.y5b{bottom:400.500000px;}
.y82{bottom:400.531050px;}
.y12a{bottom:407.654250px;}
.y40{bottom:408.588150px;}
.ycf{bottom:409.320000px;}
.y11e{bottom:410.092650px;}
.ydd{bottom:410.462550px;}
.yda{bottom:410.784150px;}
.y1f{bottom:412.020000px;}
.yac{bottom:412.920000px;}
.y8e{bottom:415.056240px;}
.y7e{bottom:415.068120px;}
.y57{bottom:415.080000px;}
.y145{bottom:416.172750px;}
.y89{bottom:418.891200px;}
.y96{bottom:420.660000px;}
.y115{bottom:421.390200px;}
.yb{bottom:422.100000px;}
.y10d{bottom:426.504300px;}
.y16{bottom:426.562350px;}
.y2a{bottom:427.860000px;}
.y35{bottom:435.073320px;}
.y70{bottom:436.618740px;}
.y9e{bottom:437.320350px;}
.ycb{bottom:443.700000px;}
.yd6{bottom:444.855750px;}
.yd9{bottom:444.858150px;}
.y133{bottom:449.646750px;}
.yab{bottom:453.600000px;}
.y86{bottom:455.400000px;}
.y13c{bottom:455.459100px;}
.y79{bottom:456.020400px;}
.y12b{bottom:457.388250px;}
.y11f{bottom:458.998650px;}
.y3f{bottom:460.069230px;}
.y106{bottom:463.653390px;}
.y83{bottom:465.331050px;}
.y1e{bottom:465.468120px;}
.y7d{bottom:465.480000px;}
.y1c{bottom:468.828300px;}
.y13{bottom:469.285950px;}
.y95{bottom:472.500000px;}
.y56{bottom:475.368480px;}
.ya{bottom:475.536240px;}
.y144{bottom:476.652750px;}
.y34{bottom:477.180000px;}
.y19{bottom:477.295200px;}
.yc7{bottom:478.080000px;}
.yd5{bottom:479.253750px;}
.yd2{bottom:479.575350px;}
.y29{bottom:479.700000px;}
.y8a{bottom:483.691200px;}
.y116{bottom:486.766200px;}
.y14d{bottom:486.912600px;}
.y6f{bottom:487.030620px;}
.y15{bottom:487.042500px;}
.y9d{bottom:490.780500px;}
.y10e{bottom:491.754300px;}
.yaa{bottom:498.600000px;}
.y12c{bottom:507.122250px;}
.y120{bottom:507.904650px;}
.y3e{bottom:512.090850px;}
.yc3{bottom:512.460000px;}
.yce{bottom:513.646950px;}
.yd1{bottom:513.649350px;}
.y105{bottom:514.065270px;}
.y1d{bottom:515.880000px;}
.y45{bottom:517.295670px;}
.y134{bottom:519.192450px;}
.y2{bottom:520.077060px;}
.y28{bottom:522.900000px;}
.y59{bottom:524.503260px;}
.y13d{bottom:525.004800px;}
.y9{bottom:525.948120px;}
.y33{bottom:530.280000px;}
.y7c{bottom:530.739150px;}
.y108{bottom:532.595250px;}
.y143{bottom:537.120870px;}
.y6e{bottom:537.442500px;}
.ya9{bottom:543.600000px;}
.ybf{bottom:546.840000px;}
.y10{bottom:547.510620px;}
.ycd{bottom:548.044950px;}
.yca{bottom:548.366550px;}
.y9c{bottom:551.260350px;}
.y136{bottom:554.812500px;}
.y121{bottom:556.810650px;}
.y12d{bottom:556.856250px;}
.y14c{bottom:559.440000px;}
.y140{bottom:560.625000px;}
.y44{bottom:560.855670px;}
.y8d{bottom:564.256950px;}
.y104{bottom:564.477150px;}
.y3d{bottom:565.017150px;}
.y8{bottom:576.360000px;}
.y32{bottom:578.880000px;}
.ybb{bottom:581.220000px;}
.yc6{bottom:582.438150px;}
.yc9{bottom:582.440550px;}
.y107{bottom:584.435250px;}
.y123{bottom:587.249850px;}
.y142{bottom:587.532750px;}
.ya8{bottom:588.600000px;}
.y1{bottom:592.065000px;}
.yf{bottom:597.922500px;}
.y43{bottom:604.402350px;}
.y9b{bottom:611.740350px;}
.yb6{bottom:616.320000px;}
.yc5{bottom:616.836150px;}
.yc2{bottom:617.157750px;}
.y77{bottom:644.014560px;}
.ybe{bottom:651.229350px;}
.yc1{bottom:651.231750px;}
.y6d{bottom:653.914560px;}
.yba{bottom:685.447350px;}
.ybd{bottom:685.627350px;}
.y7{bottom:687.922500px;}
.y9a{bottom:689.902500px;}
.y3c{bottom:704.327850px;}
.y76{bottom:716.002500px;}
.yb5{bottom:720.488550px;}
.yb8{bottom:720.498750px;}
.y6c{bottom:725.902500px;}
.yb4{bottom:754.238550px;}
.hd{height:56.160000px;}
.h19{height:57.330000px;}
.h21{height:60.431858px;}
.h33{height:70.664062px;}
.h1a{height:70.839141px;}
.h24{height:73.988437px;}
.h9{height:74.830078px;}
.hb{height:75.093750px;}
.h23{height:77.969608px;}
.h16{height:91.292695px;}
.h1d{height:93.238500px;}
.h34{height:93.983203px;}
.h1f{height:96.916938px;}
.h1b{height:99.747517px;}
.h8{height:99.773438px;}
.h2d{height:103.764375px;}
.h22{height:104.530781px;}
.h20{height:104.582812px;}
.h18{height:106.633125px;}
.hc{height:107.953837px;}
.h12{height:108.200900px;}
.h13{height:108.254180px;}
.h2b{height:110.250000px;}
.h14{height:110.568052px;}
.h1c{height:112.640625px;}
.h28{height:113.099825px;}
.h26{height:115.378500px;}
.h1e{height:115.992290px;}
.h3{height:116.236055px;}
.h35{height:116.645625px;}
.h29{height:119.003912px;}
.h10{height:124.716797px;}
.h17{height:125.406562px;}
.h4{height:128.213201px;}
.ha{height:128.441250px;}
.h2{height:133.197539px;}
.h15{height:137.421562px;}
.h2a{height:141.328125px;}
.h7{height:150.187500px;}
.he{height:154.181486px;}
.h32{height:154.440000px;}
.h2c{height:156.195000px;}
.h27{height:159.866842px;}
.h11{height:162.953438px;}
.h1{height:166.122773px;}
.h6{height:174.968437px;}
.h37{height:177.595664px;}
.h5{height:183.084258px;}
.hf{height:187.734375px;}
.h31{height:189.000000px;}
.h2e{height:193.680000px;}
.h25{height:200.500313px;}
.h30{height:223.380000px;}
.h2f{height:226.800000px;}
.h36{height:250.062187px;}
.h0{height:810.000000px;}
.w1{width:59.580000px;}
.w4{width:75.600000px;}
.w5{width:75.781500px;}
.w2{width:309.960000px;}
.w3{width:416.521500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x2b{left:2.352300px;}
.x33{left:6.664350px;}
.x18{left:9.930000px;}
.x27{left:19.164750px;}
.x28{left:21.453323px;}
.x23{left:29.404650px;}
.x56{left:33.181050px;}
.x25{left:34.316850px;}
.x24{left:40.958850px;}
.x5b{left:46.861050px;}
.x29{left:53.191866px;}
.x26{left:59.981538px;}
.x42{left:62.100000px;}
.x67{left:63.750000px;}
.x8{left:64.800000px;}
.x4d{left:69.375000px;}
.x6f{left:71.068560px;}
.x5f{left:72.706800px;}
.x1c{left:73.874400px;}
.x2c{left:81.653868px;}
.x39{left:83.979450px;}
.x32{left:88.475041px;}
.x1{left:94.215000px;}
.x1e{left:96.374400px;}
.x17{left:98.640000px;}
.xd{left:101.286600px;}
.x40{left:102.675000px;}
.x9{left:105.300000px;}
.x3d{left:106.789650px;}
.x10{left:110.055000px;}
.x4a{left:112.140000px;}
.x1d{left:114.374400px;}
.xa{left:118.800000px;}
.x49{left:125.640000px;}
.x1f{left:127.874400px;}
.x3c{left:132.910500px;}
.x16{left:137.055000px;}
.x79{left:141.056250px;}
.x68{left:142.743600px;}
.x2a{left:149.368026px;}
.x4c{left:150.558750px;}
.xb{left:152.640000px;}
.x69{left:156.395400px;}
.x70{left:162.024450px;}
.x45{left:164.238750px;}
.x21{left:168.398160px;}
.x4f{left:170.875200px;}
.x4b{left:172.800000px;}
.xf{left:179.715000px;}
.x58{left:180.762600px;}
.xc{left:184.063350px;}
.x19{left:196.998750px;}
.x71{left:198.868110px;}
.x50{left:201.835200px;}
.x4{left:208.187250px;}
.x60{left:215.147850px;}
.x5e{left:226.155000px;}
.x12{left:228.856950px;}
.x34{left:235.078500px;}
.x3a{left:241.501770px;}
.x13{left:243.436950px;}
.x3b{left:248.295000px;}
.x2e{left:251.178750px;}
.x2d{left:252.326700px;}
.x59{left:255.060000px;}
.x1b{left:256.305000px;}
.x72{left:272.555430px;}
.x30{left:285.940800px;}
.x54{left:288.312450px;}
.x46{left:294.015000px;}
.x41{left:302.295000px;}
.xe{left:305.801250px;}
.x73{left:309.399090px;}
.x3{left:310.787250px;}
.x5d{left:322.095000px;}
.x55{left:330.840000px;}
.x5a{left:332.161050px;}
.x11{left:339.178950px;}
.x44{left:340.740000px;}
.x74{left:346.242750px;}
.x14{left:350.854500px;}
.x15{left:356.115000px;}
.x52{left:369.620100px;}
.x7{left:372.854850px;}
.x51{left:374.660100px;}
.x31{left:377.173600px;}
.x87{left:380.234850px;}
.x75{left:383.086410px;}
.x22{left:385.020000px;}
.x1a{left:399.858750px;}
.x2{left:402.186720px;}
.x6{left:415.197690px;}
.x76{left:419.930070px;}
.x3f{left:423.733650px;}
.x5{left:425.436450px;}
.x57{left:439.720350px;}
.x37{left:444.048300px;}
.x5c{left:453.400200px;}
.x77{left:456.773730px;}
.x4e{left:458.119200px;}
.x48{left:479.304000px;}
.x78{left:493.617390px;}
.x3e{left:504.661650px;}
.x20{left:508.755840px;}
.x43{left:548.856000px;}
.x7a{left:556.506060px;}
.x6b{left:558.750000px;}
.x6a{left:567.750000px;}
.x64{left:583.453500px;}
.x47{left:587.052000px;}
.x63{left:592.453500px;}
.x2f{left:605.520000px;}
.x6c{left:613.542000px;}
.x61{left:615.480000px;}
.x6d{left:624.783600px;}
.x65{left:644.275500px;}
.x36{left:645.765300px;}
.x38{left:647.034300px;}
.x86{left:657.193350px;}
.x7b{left:679.279560px;}
.x6e{left:691.981800px;}
.x62{left:696.120000px;}
.x66{left:708.689700px;}
.x7c{left:712.771620px;}
.x85{left:724.229850px;}
.x7d{left:746.263680px;}
.x7e{left:779.755740px;}
.x7f{left:813.247800px;}
.x53{left:822.644100px;}
.x35{left:843.281850px;}
.x80{left:846.739860px;}
.x81{left:880.231920px;}
.x82{left:913.723980px;}
.x83{left:947.216040px;}
.x84{left:980.708100px;}
@media print{
.v7{vertical-align:-37.104640pt;}
.v2{vertical-align:-30.719467pt;}
.v5{vertical-align:-28.847360pt;}
.v6{vertical-align:-22.400000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.271467pt;}
.v3{vertical-align:30.719467pt;}
.v1{vertical-align:44.791040pt;}
.ls64{letter-spacing:-6.113920pt;}
.ls67{letter-spacing:-4.480000pt;}
.ls69{letter-spacing:-4.462720pt;}
.ls61{letter-spacing:-4.324480pt;}
.ls13{letter-spacing:-3.877120pt;}
.ls31{letter-spacing:-3.333120pt;}
.ls6b{letter-spacing:-3.280640pt;}
.ls73{letter-spacing:-2.688000pt;}
.ls74{letter-spacing:-2.560000pt;}
.ls5b{letter-spacing:-2.432000pt;}
.ls5a{letter-spacing:-2.131200pt;}
.ls62{letter-spacing:-2.087680pt;}
.ls14{letter-spacing:-1.938560pt;}
.ls1d{letter-spacing:-1.824000pt;}
.ls72{letter-spacing:-1.792000pt;}
.ls1f{letter-spacing:-1.728000pt;}
.ls55{letter-spacing:-1.708800pt;}
.ls22{letter-spacing:-1.536000pt;}
.ls42{letter-spacing:-1.522560pt;}
.ls6a{letter-spacing:-1.491200pt;}
.ls1a{letter-spacing:-1.440000pt;}
.ls24{letter-spacing:-1.342080pt;}
.ls2b{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.248000pt;}
.ls41{letter-spacing:-1.171200pt;}
.ls1e{letter-spacing:-1.152000pt;}
.ls75{letter-spacing:-0.896000pt;}
.ls4a{letter-spacing:-0.545280pt;}
.ls60{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls57{letter-spacing:-0.434371pt;}
.ls71{letter-spacing:-0.384000pt;}
.ls48{letter-spacing:-0.363520pt;}
.ls83{letter-spacing:-0.340480pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.298240pt;}
.ls17{letter-spacing:-0.288000pt;}
.ls32{letter-spacing:-0.277760pt;}
.ls4b{letter-spacing:-0.272640pt;}
.ls7c{letter-spacing:-0.266240pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls54{letter-spacing:-0.234880pt;}
.ls40{letter-spacing:-0.234240pt;}
.ls44{letter-spacing:-0.213760pt;}
.ls70{letter-spacing:-0.213120pt;}
.ls5{letter-spacing:-0.199680pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.170880pt;}
.ls82{letter-spacing:-0.170240pt;}
.ls29{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.149120pt;}
.ls7d{letter-spacing:-0.133120pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls33{letter-spacing:-0.117120pt;}
.ls18{letter-spacing:-0.096000pt;}
.ls46{letter-spacing:-0.090880pt;}
.ls1{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.090880pt;}
.ls19{letter-spacing:0.096000pt;}
.ls36{letter-spacing:0.101952pt;}
.ls45{letter-spacing:0.106880pt;}
.ls79{letter-spacing:0.117120pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.138880pt;}
.ls56{letter-spacing:0.144790pt;}
.lsc{letter-spacing:0.149120pt;}
.ls28{letter-spacing:0.160000pt;}
.ls53{letter-spacing:0.170880pt;}
.ls1b{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.213120pt;}
.ls43{letter-spacing:0.213760pt;}
.ls38{letter-spacing:0.234240pt;}
.ls8{letter-spacing:0.234880pt;}
.ls2f{letter-spacing:0.243840pt;}
.ls21{letter-spacing:0.256000pt;}
.ls7b{letter-spacing:0.266240pt;}
.ls47{letter-spacing:0.272640pt;}
.ls2d{letter-spacing:0.277760pt;}
.ls51{letter-spacing:0.284160pt;}
.ls7e{letter-spacing:0.288000pt;}
.ls65{letter-spacing:0.298240pt;}
.ls3c{letter-spacing:0.303360pt;}
.ls26{letter-spacing:0.320000pt;}
.ls80{letter-spacing:0.340480pt;}
.ls10{letter-spacing:0.596480pt;}
.ls3b{letter-spacing:6.159360pt;}
.lsd{letter-spacing:9.811200pt;}
.lsf{letter-spacing:10.412800pt;}
.lsb{letter-spacing:10.451200pt;}
.ls81{letter-spacing:21.450240pt;}
.ls11{letter-spacing:23.859200pt;}
.lse{letter-spacing:24.455680pt;}
.ls35{letter-spacing:26.352000pt;}
.ls37{letter-spacing:26.778880pt;}
.ls7a{letter-spacing:26.820480pt;}
.ls6f{letter-spacing:27.904000pt;}
.ls77{letter-spacing:30.351360pt;}
.ls12{letter-spacing:33.104640pt;}
.ls7f{letter-spacing:33.552000pt;}
.ls63{letter-spacing:34.327424pt;}
.ls59{letter-spacing:34.595840pt;}
.ls66{letter-spacing:34.944000pt;}
.ls5f{letter-spacing:35.584000pt;}
.ls5e{letter-spacing:38.656000pt;}
.ls5d{letter-spacing:39.040000pt;}
.ls5c{letter-spacing:39.680000pt;}
.ls6d{letter-spacing:40.704000pt;}
.ls27{letter-spacing:43.102720pt;}
.ls6c{letter-spacing:48.335616pt;}
.ls50{letter-spacing:48.686080pt;}
.ls7{letter-spacing:49.152000pt;}
.ls4c{letter-spacing:51.338240pt;}
.ls6e{letter-spacing:54.016000pt;}
.ls78{letter-spacing:55.201280pt;}
.ls3e{letter-spacing:63.557120pt;}
.ls84{letter-spacing:69.408000pt;}
.ls52{letter-spacing:84.192000pt;}
.ls25{letter-spacing:88.000000pt;}
.ls3d{letter-spacing:90.624000pt;}
.ls6{letter-spacing:91.808000pt;}
.ls3a{letter-spacing:93.470720pt;}
.ls2e{letter-spacing:95.392000pt;}
.ls76{letter-spacing:97.408000pt;}
.ls58{letter-spacing:99.200000pt;}
.ls4e{letter-spacing:102.182160pt;}
.ls30{letter-spacing:103.008000pt;}
.ls34{letter-spacing:104.928000pt;}
.ls39{letter-spacing:106.592000pt;}
.ls68{letter-spacing:144.512000pt;}
.ls3f{letter-spacing:217.382400pt;}
.ls23{letter-spacing:262.048000pt;}
.ls4d{letter-spacing:489.891840pt;}
.ls4f{letter-spacing:701.366080pt;}
.ws85{word-spacing:-701.366080pt;}
.ws84{word-spacing:-489.891840pt;}
.ws7a{word-spacing:-269.383680pt;}
.ws1c{word-spacing:-149.120000pt;}
.ws1f{word-spacing:-115.866240pt;}
.ws6c{word-spacing:-90.880000pt;}
.ws8b{word-spacing:-79.489930pt;}
.ws9{word-spacing:-53.317760pt;}
.ws3a{word-spacing:-53.082880pt;}
.ws6d{word-spacing:-52.887040pt;}
.ws76{word-spacing:-46.299580pt;}
.ws92{word-spacing:-46.033920pt;}
.ws88{word-spacing:-36.910080pt;}
.ws8a{word-spacing:-36.342390pt;}
.ws89{word-spacing:-36.197600pt;}
.ws4c{word-spacing:-36.000000pt;}
.ws4a{word-spacing:-34.880000pt;}
.wsa3{word-spacing:-33.999360pt;}
.wsaf{word-spacing:-33.701120pt;}
.wse8{word-spacing:-33.552000pt;}
.ws30{word-spacing:-33.402880pt;}
.wsb4{word-spacing:-32.209920pt;}
.ws97{word-spacing:-32.000000pt;}
.ws12{word-spacing:-31.762560pt;}
.ws56{word-spacing:-31.525760pt;}
.ws59{word-spacing:-31.386880pt;}
.ws94{word-spacing:-29.184000pt;}
.ws3c{word-spacing:-29.056000pt;}
.wsb{word-spacing:-28.928000pt;}
.wsc4{word-spacing:-28.416000pt;}
.ws58{word-spacing:-28.053760pt;}
.ws37{word-spacing:-27.392000pt;}
.ws93{word-spacing:-26.496000pt;}
.ws66{word-spacing:-26.469120pt;}
.ws69{word-spacing:-24.154880pt;}
.ws0{word-spacing:-22.364160pt;}
.wsd9{word-spacing:-21.984000pt;}
.ws1b{word-spacing:-21.792000pt;}
.ws90{word-spacing:-21.696000pt;}
.ws19{word-spacing:-21.600000pt;}
.ws91{word-spacing:-21.408000pt;}
.wse6{word-spacing:-20.939520pt;}
.ws72{word-spacing:-20.811520pt;}
.ws18{word-spacing:-20.256000pt;}
.ws71{word-spacing:-19.993600pt;}
.ws34{word-spacing:-19.968000pt;}
.wscb{word-spacing:-19.237120pt;}
.ws78{word-spacing:-4.745472pt;}
.wsa1{word-spacing:-2.560000pt;}
.ws3b{word-spacing:-2.432000pt;}
.ws47{word-spacing:-2.304000pt;}
.ws9f{word-spacing:-2.176000pt;}
.ws42{word-spacing:-2.113920pt;}
.wsab{word-spacing:-2.048000pt;}
.ws54{word-spacing:-1.944320pt;}
.wse0{word-spacing:-1.920000pt;}
.ws4d{word-spacing:-1.860992pt;}
.ws40{word-spacing:-1.664000pt;}
.ws81{word-spacing:-1.635840pt;}
.wsd{word-spacing:-1.536000pt;}
.ws53{word-spacing:-1.527680pt;}
.wse9{word-spacing:-1.491840pt;}
.ws51{word-spacing:-1.440000pt;}
.ws8f{word-spacing:-1.408000pt;}
.ws5e{word-spacing:-1.405440pt;}
.ws5a{word-spacing:-1.249920pt;}
.ws48{word-spacing:-1.152000pt;}
.wse4{word-spacing:-1.106560pt;}
.ws1{word-spacing:-1.065600pt;}
.wsd4{word-spacing:-1.054080pt;}
.ws3e{word-spacing:-1.024000pt;}
.ws70{word-spacing:-0.999680pt;}
.ws20{word-spacing:-0.939520pt;}
.ws6e{word-spacing:-0.936064pt;}
.ws68{word-spacing:-0.909312pt;}
.ws46{word-spacing:-0.896000pt;}
.ws2{word-spacing:-0.852480pt;}
.wsf{word-spacing:-0.768000pt;}
.wsa4{word-spacing:-0.704640pt;}
.ws52{word-spacing:-0.694400pt;}
.ws79{word-spacing:-0.691456pt;}
.ws4{word-spacing:-0.683520pt;}
.wsd8{word-spacing:-0.665600pt;}
.ws6a{word-spacing:-0.662656pt;}
.wsad{word-spacing:-0.640000pt;}
.wscd{word-spacing:-0.639360pt;}
.ws6f{word-spacing:-0.545280pt;}
.ws6b{word-spacing:-0.534400pt;}
.ws3f{word-spacing:-0.512000pt;}
.ws49{word-spacing:-0.496000pt;}
.ws4b{word-spacing:-0.480000pt;}
.wsd6{word-spacing:-0.468480pt;}
.ws22{word-spacing:-0.447360pt;}
.ws41{word-spacing:-0.384000pt;}
.wsd5{word-spacing:-0.351360pt;}
.wse5{word-spacing:-0.340480pt;}
.ws96{word-spacing:-0.319680pt;}
.ws1e{word-spacing:-0.298240pt;}
.ws5b{word-spacing:-0.277760pt;}
.ws82{word-spacing:-0.272640pt;}
.wsd0{word-spacing:-0.266240pt;}
.ws39{word-spacing:-0.256000pt;}
.ws4e{word-spacing:-0.234880pt;}
.ws5f{word-spacing:-0.234240pt;}
.ws7e{word-spacing:-0.213760pt;}
.ws95{word-spacing:-0.213120pt;}
.ws2c{word-spacing:-0.192000pt;}
.wsb9{word-spacing:-0.178944pt;}
.wse2{word-spacing:-0.170240pt;}
.ws43{word-spacing:-0.149120pt;}
.ws10{word-spacing:-0.128000pt;}
.wsd3{word-spacing:-0.117120pt;}
.ws25{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
.ws80{word-spacing:0.090880pt;}
.ws2f{word-spacing:0.096000pt;}
.ws7d{word-spacing:0.117120pt;}
.wse{word-spacing:0.128000pt;}
.ws8{word-spacing:0.149120pt;}
.ws55{word-spacing:0.160000pt;}
.ws24{word-spacing:0.192000pt;}
.ws45{word-spacing:0.256000pt;}
.wsd1{word-spacing:0.266240pt;}
.ws83{word-spacing:0.272640pt;}
.ws23{word-spacing:0.288000pt;}
.ws5{word-spacing:0.298240pt;}
.ws50{word-spacing:0.320000pt;}
.ws16{word-spacing:0.326400pt;}
.ws7b{word-spacing:0.351360pt;}
.wsb8{word-spacing:0.372800pt;}
.ws38{word-spacing:0.384000pt;}
.wsd7{word-spacing:0.399360pt;}
.wscc{word-spacing:0.426240pt;}
.ws7f{word-spacing:0.427520pt;}
.ws8e{word-spacing:0.434371pt;}
.wsc{word-spacing:0.447360pt;}
.wsb3{word-spacing:0.469760pt;}
.ws86{word-spacing:0.477184pt;}
.ws4f{word-spacing:0.480000pt;}
.wse3{word-spacing:0.510720pt;}
.wsa0{word-spacing:0.512000pt;}
.ws8c{word-spacing:0.512640pt;}
.ws60{word-spacing:0.550464pt;}
.ws2d{word-spacing:0.576000pt;}
.ws87{word-spacing:0.587200pt;}
.ws2e{word-spacing:0.672000pt;}
.wsce{word-spacing:0.768000pt;}
.wsd2{word-spacing:0.798720pt;}
.wse1{word-spacing:0.808640pt;}
.ws27{word-spacing:0.816000pt;}
.wsbd{word-spacing:0.835072pt;}
.ws1a{word-spacing:0.854400pt;}
.ws17{word-spacing:0.892800pt;}
.ws7{word-spacing:0.894720pt;}
.wsac{word-spacing:0.896000pt;}
.wsaa{word-spacing:0.924544pt;}
.ws2b{word-spacing:0.960000pt;}
.ws65{word-spacing:1.030656pt;}
.ws5d{word-spacing:1.054080pt;}
.ws7c{word-spacing:1.171200pt;}
.ws21{word-spacing:1.192960pt;}
.ws8d{word-spacing:1.196160pt;}
.ws14{word-spacing:1.276800pt;}
.ws15{word-spacing:1.372800pt;}
.wsbc{word-spacing:1.401728pt;}
.ws2a{word-spacing:1.440000pt;}
.ws61{word-spacing:1.452288pt;}
.ws28{word-spacing:1.468800pt;}
.ws44{word-spacing:1.491200pt;}
.ws6{word-spacing:1.789440pt;}
.wscf{word-spacing:1.792000pt;}
.ws62{word-spacing:1.920768pt;}
.wsba{word-spacing:1.938560pt;}
.wsae{word-spacing:2.087680pt;}
.wsbb{word-spacing:2.117504pt;}
.ws63{word-spacing:2.213568pt;}
.ws5c{word-spacing:2.222080pt;}
.ws33{word-spacing:2.332800pt;}
.ws13{word-spacing:2.371200pt;}
.ws3d{word-spacing:2.385920pt;}
.ws67{word-spacing:2.611776pt;}
.wsb7{word-spacing:2.669248pt;}
.ws64{word-spacing:2.705472pt;}
.wsa2{word-spacing:2.833280pt;}
.wsb6{word-spacing:3.280640pt;}
.wsa{word-spacing:3.608704pt;}
.ws26{word-spacing:3.744000pt;}
.ws9e{word-spacing:4.100800pt;}
.ws29{word-spacing:4.387200pt;}
.wsb2{word-spacing:4.462720pt;}
.wsc9{word-spacing:4.736000pt;}
.wsca{word-spacing:5.120000pt;}
.wsa5{word-spacing:6.113920pt;}
.ws11{word-spacing:7.963008pt;}
.ws9d{word-spacing:8.201600pt;}
.wsc0{word-spacing:11.008000pt;}
.wsc1{word-spacing:11.520000pt;}
.wsc3{word-spacing:12.032000pt;}
.wsbe{word-spacing:13.056000pt;}
.wsc2{word-spacing:13.312000pt;}
.ws74{word-spacing:14.020257pt;}
.wsbf{word-spacing:16.896000pt;}
.ws77{word-spacing:17.797888pt;}
.ws75{word-spacing:20.165888pt;}
.ws57{word-spacing:23.212800pt;}
.wsc7{word-spacing:23.936000pt;}
.wsc5{word-spacing:24.832000pt;}
.wsc6{word-spacing:28.403200pt;}
.wsc8{word-spacing:30.464000pt;}
.wsdd{word-spacing:30.592000pt;}
.wsdf{word-spacing:31.104000pt;}
.ws98{word-spacing:34.816000pt;}
.wse7{word-spacing:34.968640pt;}
.ws9a{word-spacing:35.456000pt;}
.ws1d{word-spacing:41.008000pt;}
.wsa6{word-spacing:62.592000pt;}
.wsb5{word-spacing:66.688000pt;}
.ws31{word-spacing:69.436800pt;}
.wsde{word-spacing:73.024000pt;}
.wsdb{word-spacing:101.472000pt;}
.ws32{word-spacing:110.208000pt;}
.ws35{word-spacing:127.433067pt;}
.wsa7{word-spacing:140.416000pt;}
.wsdc{word-spacing:150.144000pt;}
.wsa9{word-spacing:187.520000pt;}
.wsa8{word-spacing:198.400000pt;}
.ws73{word-spacing:211.157520pt;}
.ws99{word-spacing:464.384000pt;}
.ws9b{word-spacing:477.308267pt;}
.ws9c{word-spacing:706.560000pt;}
.wsb0{word-spacing:839.610133pt;}
.ws36{word-spacing:862.208000pt;}
.wsb1{word-spacing:957.696000pt;}
.wsda{word-spacing:1216.512000pt;}
._1e{margin-left:-891.716400pt;}
._1d{margin-left:-673.709731pt;}
._1b{margin-left:-565.551302pt;}
._1c{margin-left:-559.759686pt;}
._1f{margin-left:-371.498986pt;}
._1a{margin-left:-283.264836pt;}
._22{margin-left:-275.101760pt;}
._19{margin-left:-150.983680pt;}
._21{margin-left:-133.062378pt;}
._20{margin-left:-61.101549pt;}
._14{margin-left:-51.792008pt;}
._9{margin-left:-15.074624pt;}
._a{margin-left:-13.937152pt;}
._e{margin-left:-12.563136pt;}
._34{margin-left:-11.243584pt;}
._32{margin-left:-10.068352pt;}
._c{margin-left:-8.314752pt;}
._d{margin-left:-6.397248pt;}
._1{margin-left:-5.221440pt;}
._0{margin-left:-3.857472pt;}
._4{margin-left:-2.552448pt;}
._3{margin-left:-0.916416pt;}
._2{width:0.980352pt;}
._5{width:2.648640pt;}
._7{width:3.590272pt;}
._b{width:5.070080pt;}
._6{width:6.016128pt;}
._8{width:23.095296pt;}
._3a{width:30.080000pt;}
._30{width:34.567424pt;}
._31{width:36.534400pt;}
._39{width:46.080000pt;}
._36{width:52.173440pt;}
._23{width:54.016000pt;}
._16{width:54.975488pt;}
._f{width:60.451840pt;}
._17{width:63.225600pt;}
._38{width:106.447467pt;}
._3b{width:114.732181pt;}
._37{width:123.168000pt;}
._3c{width:149.297173pt;}
._28{width:150.912000pt;}
._18{width:156.477440pt;}
._26{width:161.536000pt;}
._12{width:163.969792pt;}
._27{width:171.776000pt;}
._25{width:183.936000pt;}
._15{width:200.077056pt;}
._35{width:231.936000pt;}
._2d{width:242.688000pt;}
._29{width:245.504000pt;}
._2a{width:254.080000pt;}
._2b{width:264.320000pt;}
._33{width:270.123648pt;}
._13{width:278.105880pt;}
._2c{width:318.763648pt;}
._10{width:321.610243pt;}
._11{width:385.043213pt;}
._24{width:552.448000pt;}
._2e{width:735.232000pt;}
._2f{width:914.688000pt;}
.fs14{font-size:54.760000pt;}
.fs10{font-size:60.160000pt;}
.fs1a{font-size:64.000000pt;}
.fsf{font-size:66.560000pt;}
.fsc{font-size:78.080000pt;}
.fs18{font-size:85.120000pt;}
.fse{font-size:90.880000pt;}
.fs13{font-size:94.720000pt;}
.fs6{font-size:96.000000pt;}
.fs15{font-size:99.816695pt;}
.fs3{font-size:99.840000pt;}
.fsd{font-size:106.880000pt;}
.fs7{font-size:108.800000pt;}
.fsb{font-size:117.120000pt;}
.fs12{font-size:124.073067pt;}
.fs5{font-size:128.000000pt;}
.fs19{font-size:133.120000pt;}
.fsa{font-size:138.880000pt;}
.fs16{font-size:144.790400pt;}
.fs11{font-size:148.493333pt;}
.fs2{font-size:149.120000pt;}
.fs17{font-size:152.348812pt;}
.fs9{font-size:160.000000pt;}
.fs1{font-size:170.880000pt;}
.fs8{font-size:197.383143pt;}
.fs0{font-size:213.120000pt;}
.fs4{font-size:234.880000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:6.046047pt;}
.y4e{bottom:10.421733pt;}
.y55{bottom:12.147413pt;}
.y4f{bottom:12.148400pt;}
.y5c{bottom:15.365200pt;}
.y5e{bottom:15.365467pt;}
.y27{bottom:19.200000pt;}
.y52{bottom:22.761537pt;}
.yfb{bottom:27.520000pt;}
.y102{bottom:28.541067pt;}
.y103{bottom:28.543200pt;}
.y4c{bottom:41.120000pt;}
.y18{bottom:42.854400pt;}
.y51{bottom:49.826667pt;}
.y4d{bottom:53.156667pt;}
.y12{bottom:53.714133pt;}
.y54{bottom:55.931733pt;}
.y50{bottom:55.932720pt;}
.yf7{bottom:58.080000pt;}
.y101{bottom:59.117067pt;}
.y100{bottom:59.402933pt;}
.y6b{bottom:68.068267pt;}
.y5d{bottom:69.661600pt;}
.y5f{bottom:69.661867pt;}
.yb3{bottom:72.624640pt;}
.y14{bottom:73.433067pt;}
.y11{bottom:82.514133pt;}
.y137{bottom:83.375067pt;}
.y26{bottom:84.480000pt;}
.y141{bottom:88.541733pt;}
.yf3{bottom:88.640000pt;}
.yfe{bottom:89.688800pt;}
.yff{bottom:89.690933pt;}
.yb7{bottom:92.603333pt;}
.y110{bottom:92.654667pt;}
.yd4{bottom:92.723333pt;}
.yd0{bottom:92.737200pt;}
.yfc{bottom:92.744800pt;}
.ycc{bottom:92.751067pt;}
.yf8{bottom:92.758667pt;}
.yc8{bottom:92.764933pt;}
.yf4{bottom:92.772533pt;}
.yc4{bottom:92.778800pt;}
.yf0{bottom:92.786400pt;}
.yc0{bottom:92.792667pt;}
.yec{bottom:92.800267pt;}
.ybc{bottom:92.806533pt;}
.ye8{bottom:92.814133pt;}
.ye4{bottom:92.827867pt;}
.ye0{bottom:92.841867pt;}
.ydc{bottom:92.855600pt;}
.yd8{bottom:92.869467pt;}
.y124{bottom:93.875067pt;}
.y92{bottom:95.018880pt;}
.y118{bottom:98.589467pt;}
.yb2{bottom:104.640000pt;}
.y6a{bottom:106.468267pt;}
.y25{bottom:106.560000pt;}
.y1b{bottom:107.462400pt;}
.y14b{bottom:108.651333pt;}
.y135{bottom:114.390267pt;}
.y3b{bottom:117.291840pt;}
.yef{bottom:119.200000pt;}
.y13f{bottom:119.562187pt;}
.ya5{bottom:120.016267pt;}
.yfd{bottom:120.264800pt;}
.yfa{bottom:120.550667pt;}
.y12e{bottom:122.519333pt;}
.y117{bottom:123.353067pt;}
.y24{bottom:128.160000pt;}
.y10f{bottom:128.298933pt;}
.y122{bottom:128.318800pt;}
.y5a{bottom:128.320000pt;}
.y6{bottom:128.642107pt;}
.ya4{bottom:129.616267pt;}
.y13e{bottom:130.223467pt;}
.y99{bottom:130.720000pt;}
.y64{bottom:133.362933pt;}
.y31{bottom:139.829440pt;}
.y125{bottom:141.319333pt;}
.y111{bottom:142.121067pt;}
.y4b{bottom:142.526533pt;}
.yb1{bottom:144.640000pt;}
.y14a{bottom:147.051333pt;}
.y109{bottom:147.114933pt;}
.y119{bottom:147.166800pt;}
.ya7{bottom:148.176267pt;}
.yeb{bottom:149.760000pt;}
.yf6{bottom:150.836533pt;}
.yf9{bottom:150.838667pt;}
.y12f{bottom:152.412400pt;}
.y69{bottom:152.548267pt;}
.y3a{bottom:154.720000pt;}
.y138{bottom:157.578933pt;}
.ya3{bottom:168.016267pt;}
.y63{bottom:171.762933pt;}
.y75{bottom:172.926533pt;}
.y23{bottom:174.240000pt;}
.y98{bottom:178.218880pt;}
.ye7{bottom:180.320000pt;}
.y2e{bottom:180.640000pt;}
.yf5{bottom:181.412533pt;}
.yf2{bottom:181.698400pt;}
.y5{bottom:182.402107pt;}
.y4a{bottom:182.532293pt;}
.y30{bottom:184.640000pt;}
.y149{bottom:185.451333pt;}
.y126{bottom:185.527333pt;}
.ya6{bottom:186.576267pt;}
.y11a{bottom:190.638800pt;}
.y68{bottom:190.948267pt;}
.y112{bottom:200.233067pt;}
.y39{bottom:201.920000pt;}
.y10a{bottom:205.114933pt;}
.ye3{bottom:210.880000pt;}
.yee{bottom:211.984267pt;}
.yf1{bottom:211.986400pt;}
.y130{bottom:214.230800pt;}
.ya2{bottom:216.016267pt;}
.y60{bottom:217.692667pt;}
.y74{bottom:219.006533pt;}
.y139{bottom:219.397333pt;}
.y22{bottom:220.320000pt;}
.y49{bottom:221.724293pt;}
.y97{bottom:223.029440pt;}
.yb0{bottom:224.640000pt;}
.y81{bottom:225.589440pt;}
.y2d{bottom:226.720000pt;}
.yb9{bottom:229.246400pt;}
.y127{bottom:229.735333pt;}
.y148{bottom:231.531333pt;}
.y7b{bottom:232.551467pt;}
.y11b{bottom:234.110800pt;}
.y4{bottom:236.159867pt;}
.y91{bottom:236.960000pt;}
.y85{bottom:240.827600pt;}
.ydf{bottom:241.440000pt;}
.yed{bottom:242.560267pt;}
.yea{bottom:242.846133pt;}
.ye{bottom:244.640000pt;}
.y38{bottom:245.120000pt;}
.y62{bottom:248.562933pt;}
.y47{bottom:251.646533pt;}
.y8c{bottom:257.147733pt;}
.y73{bottom:257.406533pt;}
.y113{bottom:258.345067pt;}
.y48{bottom:260.922693pt;}
.y10b{bottom:263.114933pt;}
.yaf{bottom:264.640000pt;}
.ya1{bottom:265.849333pt;}
.y21{bottom:267.840000pt;}
.y94{bottom:270.389440pt;}
.y80{bottom:270.400000pt;}
.y17{bottom:271.646667pt;}
.ydb{bottom:272.000000pt;}
.ye6{bottom:273.131867pt;}
.ye9{bottom:273.134133pt;}
.y128{bottom:273.943333pt;}
.y2c{bottom:274.240000pt;}
.y90{bottom:275.360000pt;}
.y131{bottom:276.049200pt;}
.y42{bottom:276.969307pt;}
.y11c{bottom:277.582800pt;}
.y147{bottom:277.611333pt;}
.y1a{bottom:280.262400pt;}
.y13a{bottom:281.215733pt;}
.y67{bottom:286.467600pt;}
.y61{bottom:286.962933pt;}
.y46{bottom:288.446533pt;}
.y7a{bottom:290.151467pt;}
.yd{bottom:290.720000pt;}
.y3{bottom:291.199867pt;}
.y72{bottom:295.806533pt;}
.y37{bottom:297.920000pt;}
.y84{bottom:298.427600pt;}
.yd7{bottom:302.560000pt;}
.yae{bottom:303.680000pt;}
.ye5{bottom:303.707867pt;}
.ye2{bottom:303.993867pt;}
.y88{bottom:306.229440pt;}
.y66{bottom:307.995600pt;}
.ya0{bottom:311.929200pt;}
.y65{bottom:314.067600pt;}
.y8b{bottom:314.747733pt;}
.y93{bottom:315.200000pt;}
.y41{bottom:315.677467pt;}
.y114{bottom:316.457067pt;}
.y129{bottom:318.151333pt;}
.y20{bottom:320.160000pt;}
.y11d{bottom:321.054800pt;}
.y10c{bottom:321.114933pt;}
.y8f{bottom:321.440000pt;}
.y7f{bottom:324.138880pt;}
.y58{bottom:324.149440pt;}
.y146{bottom:325.120773pt;}
.y2b{bottom:328.000000pt;}
.y2f{bottom:329.120000pt;}
.yd3{bottom:333.280000pt;}
.yde{bottom:334.279600pt;}
.ye1{bottom:334.281867pt;}
.yc{bottom:336.800000pt;}
.y132{bottom:337.867600pt;}
.yad{bottom:338.872640pt;}
.y13b{bottom:343.034133pt;}
.y71{bottom:343.294987pt;}
.y78{bottom:347.751467pt;}
.y36{bottom:349.291840pt;}
.y9f{bottom:350.329200pt;}
.y87{bottom:351.040000pt;}
.y5b{bottom:356.000000pt;}
.y82{bottom:356.027600pt;}
.y12a{bottom:362.359333pt;}
.y40{bottom:363.189467pt;}
.ycf{bottom:363.840000pt;}
.y11e{bottom:364.526800pt;}
.ydd{bottom:364.855600pt;}
.yda{bottom:365.141467pt;}
.y1f{bottom:366.240000pt;}
.yac{bottom:367.040000pt;}
.y8e{bottom:368.938880pt;}
.y7e{bottom:368.949440pt;}
.y57{bottom:368.960000pt;}
.y145{bottom:369.931333pt;}
.y89{bottom:372.347733pt;}
.y96{bottom:373.920000pt;}
.y115{bottom:374.569067pt;}
.yb{bottom:375.200000pt;}
.y10d{bottom:379.114933pt;}
.y16{bottom:379.166533pt;}
.y2a{bottom:380.320000pt;}
.y35{bottom:386.731840pt;}
.y70{bottom:388.105547pt;}
.y9e{bottom:388.729200pt;}
.ycb{bottom:394.400000pt;}
.yd6{bottom:395.427333pt;}
.yd9{bottom:395.429467pt;}
.y133{bottom:399.686000pt;}
.yab{bottom:403.200000pt;}
.y86{bottom:404.800000pt;}
.y13c{bottom:404.852533pt;}
.y79{bottom:405.351467pt;}
.y12b{bottom:406.567333pt;}
.y11f{bottom:407.998800pt;}
.y3f{bottom:408.950427pt;}
.y106{bottom:412.136347pt;}
.y83{bottom:413.627600pt;}
.y1e{bottom:413.749440pt;}
.y7d{bottom:413.760000pt;}
.y1c{bottom:416.736267pt;}
.y13{bottom:417.143067pt;}
.y95{bottom:420.000000pt;}
.y56{bottom:422.549760pt;}
.ya{bottom:422.698880pt;}
.y144{bottom:423.691333pt;}
.y34{bottom:424.160000pt;}
.y19{bottom:424.262400pt;}
.yc7{bottom:424.960000pt;}
.yd5{bottom:426.003333pt;}
.yd2{bottom:426.289200pt;}
.y29{bottom:426.400000pt;}
.y8a{bottom:429.947733pt;}
.y116{bottom:432.681067pt;}
.y14d{bottom:432.811200pt;}
.y6f{bottom:432.916107pt;}
.y15{bottom:432.926667pt;}
.y9d{bottom:436.249333pt;}
.y10e{bottom:437.114933pt;}
.yaa{bottom:443.200000pt;}
.y12c{bottom:450.775333pt;}
.y120{bottom:451.470800pt;}
.y3e{bottom:455.191867pt;}
.yc3{bottom:455.520000pt;}
.yce{bottom:456.575067pt;}
.yd1{bottom:456.577200pt;}
.y105{bottom:456.946907pt;}
.y1d{bottom:458.560000pt;}
.y45{bottom:459.818373pt;}
.y134{bottom:461.504400pt;}
.y2{bottom:462.290720pt;}
.y28{bottom:464.800000pt;}
.y59{bottom:466.225120pt;}
.y13d{bottom:466.670933pt;}
.y9{bottom:467.509440pt;}
.y33{bottom:471.360000pt;}
.y7c{bottom:471.768133pt;}
.y108{bottom:473.418000pt;}
.y143{bottom:477.440773pt;}
.y6e{bottom:477.726667pt;}
.ya9{bottom:483.200000pt;}
.ybf{bottom:486.080000pt;}
.y10{bottom:486.676107pt;}
.ycd{bottom:487.151067pt;}
.yca{bottom:487.436933pt;}
.y9c{bottom:490.009200pt;}
.y136{bottom:493.166667pt;}
.y121{bottom:494.942800pt;}
.y12d{bottom:494.983333pt;}
.y14c{bottom:497.280000pt;}
.y140{bottom:498.333333pt;}
.y44{bottom:498.538373pt;}
.y8d{bottom:501.561733pt;}
.y104{bottom:501.757467pt;}
.y3d{bottom:502.237467pt;}
.y8{bottom:512.320000pt;}
.y32{bottom:514.560000pt;}
.ybb{bottom:516.640000pt;}
.yc6{bottom:517.722800pt;}
.yc9{bottom:517.724933pt;}
.y107{bottom:519.498000pt;}
.y123{bottom:521.999867pt;}
.y142{bottom:522.251333pt;}
.ya8{bottom:523.200000pt;}
.y1{bottom:526.280000pt;}
.yf{bottom:531.486667pt;}
.y43{bottom:537.246533pt;}
.y9b{bottom:543.769200pt;}
.yb6{bottom:547.840000pt;}
.yc5{bottom:548.298800pt;}
.yc2{bottom:548.584667pt;}
.y77{bottom:572.457387pt;}
.ybe{bottom:578.870533pt;}
.yc1{bottom:578.872667pt;}
.y6d{bottom:581.257387pt;}
.yba{bottom:609.286533pt;}
.ybd{bottom:609.446533pt;}
.y7{bottom:611.486667pt;}
.y9a{bottom:613.246667pt;}
.y3c{bottom:626.069200pt;}
.y76{bottom:636.446667pt;}
.yb5{bottom:640.434267pt;}
.yb8{bottom:640.443333pt;}
.y6c{bottom:645.246667pt;}
.yb4{bottom:670.434267pt;}
.hd{height:49.920000pt;}
.h19{height:50.960000pt;}
.h21{height:53.717207pt;}
.h33{height:62.812500pt;}
.h1a{height:62.968125pt;}
.h24{height:65.767500pt;}
.h9{height:66.515625pt;}
.hb{height:66.750000pt;}
.h23{height:69.306318pt;}
.h16{height:81.149062pt;}
.h1d{height:82.878667pt;}
.h34{height:83.540625pt;}
.h1f{height:86.148389pt;}
.h1b{height:88.664460pt;}
.h8{height:88.687500pt;}
.h2d{height:92.235000pt;}
.h22{height:92.916250pt;}
.h20{height:92.962500pt;}
.h18{height:94.785000pt;}
.hc{height:95.958967pt;}
.h12{height:96.178578pt;}
.h13{height:96.225938pt;}
.h2b{height:98.000000pt;}
.h14{height:98.282713pt;}
.h1c{height:100.125000pt;}
.h28{height:100.533178pt;}
.h26{height:102.558667pt;}
.h1e{height:103.104258pt;}
.h3{height:103.320937pt;}
.h35{height:103.685000pt;}
.h29{height:105.781255pt;}
.h10{height:110.859375pt;}
.h17{height:111.472500pt;}
.h4{height:113.967290pt;}
.ha{height:114.170000pt;}
.h2{height:118.397812pt;}
.h15{height:122.152500pt;}
.h2a{height:125.625000pt;}
.h7{height:133.500000pt;}
.he{height:137.050210pt;}
.h32{height:137.280000pt;}
.h2c{height:138.840000pt;}
.h27{height:142.103859pt;}
.h11{height:144.847500pt;}
.h1{height:147.664687pt;}
.h6{height:155.527500pt;}
.h37{height:157.862812pt;}
.h5{height:162.741562pt;}
.hf{height:166.875000pt;}
.h31{height:168.000000pt;}
.h2e{height:172.160000pt;}
.h25{height:178.222500pt;}
.h30{height:198.560000pt;}
.h2f{height:201.600000pt;}
.h36{height:222.277500pt;}
.h0{height:720.000000pt;}
.w1{width:52.960000pt;}
.w4{width:67.200000pt;}
.w5{width:67.361333pt;}
.w2{width:275.520000pt;}
.w3{width:370.241333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:2.090933pt;}
.x33{left:5.923867pt;}
.x18{left:8.826667pt;}
.x27{left:17.035333pt;}
.x28{left:19.069620pt;}
.x23{left:26.137467pt;}
.x56{left:29.494267pt;}
.x25{left:30.503867pt;}
.x24{left:36.407867pt;}
.x5b{left:41.654267pt;}
.x29{left:47.281659pt;}
.x26{left:53.316923pt;}
.x42{left:55.200000pt;}
.x67{left:56.666667pt;}
.x8{left:57.600000pt;}
.x4d{left:61.666667pt;}
.x6f{left:63.172053pt;}
.x5f{left:64.628267pt;}
.x1c{left:65.666133pt;}
.x2c{left:72.581216pt;}
.x39{left:74.648400pt;}
.x32{left:78.644481pt;}
.x1{left:83.746667pt;}
.x1e{left:85.666133pt;}
.x17{left:87.680000pt;}
.xd{left:90.032533pt;}
.x40{left:91.266667pt;}
.x9{left:93.600000pt;}
.x3d{left:94.924133pt;}
.x10{left:97.826667pt;}
.x4a{left:99.680000pt;}
.x1d{left:101.666133pt;}
.xa{left:105.600000pt;}
.x49{left:111.680000pt;}
.x1f{left:113.666133pt;}
.x3c{left:118.142667pt;}
.x16{left:121.826667pt;}
.x79{left:125.383333pt;}
.x68{left:126.883200pt;}
.x2a{left:132.771579pt;}
.x4c{left:133.830000pt;}
.xb{left:135.680000pt;}
.x69{left:139.018133pt;}
.x70{left:144.021733pt;}
.x45{left:145.990000pt;}
.x21{left:149.687253pt;}
.x4f{left:151.889067pt;}
.x4b{left:153.600000pt;}
.xf{left:159.746667pt;}
.x58{left:160.677867pt;}
.xc{left:163.611867pt;}
.x19{left:175.110000pt;}
.x71{left:176.771653pt;}
.x50{left:179.409067pt;}
.x4{left:185.055333pt;}
.x60{left:191.242533pt;}
.x5e{left:201.026667pt;}
.x12{left:203.428400pt;}
.x34{left:208.958667pt;}
.x3a{left:214.668240pt;}
.x13{left:216.388400pt;}
.x3b{left:220.706667pt;}
.x2e{left:223.270000pt;}
.x2d{left:224.290400pt;}
.x59{left:226.720000pt;}
.x1b{left:227.826667pt;}
.x72{left:242.271493pt;}
.x30{left:254.169600pt;}
.x54{left:256.277733pt;}
.x46{left:261.346667pt;}
.x41{left:268.706667pt;}
.xe{left:271.823333pt;}
.x73{left:275.021413pt;}
.x3{left:276.255333pt;}
.x5d{left:286.306667pt;}
.x55{left:294.080000pt;}
.x5a{left:295.254267pt;}
.x11{left:301.492400pt;}
.x44{left:302.880000pt;}
.x74{left:307.771333pt;}
.x14{left:311.870667pt;}
.x15{left:316.546667pt;}
.x52{left:328.551200pt;}
.x7{left:331.426533pt;}
.x51{left:333.031200pt;}
.x31{left:335.265422pt;}
.x87{left:337.986533pt;}
.x75{left:340.521253pt;}
.x22{left:342.240000pt;}
.x1a{left:355.430000pt;}
.x2{left:357.499307pt;}
.x6{left:369.064613pt;}
.x76{left:373.271173pt;}
.x3f{left:376.652133pt;}
.x5{left:378.165733pt;}
.x57{left:390.862533pt;}
.x37{left:394.709600pt;}
.x5c{left:403.022400pt;}
.x77{left:406.021093pt;}
.x4e{left:407.217067pt;}
.x48{left:426.048000pt;}
.x78{left:438.771013pt;}
.x3e{left:448.588133pt;}
.x20{left:452.227413pt;}
.x43{left:487.872000pt;}
.x7a{left:494.672053pt;}
.x6b{left:496.666667pt;}
.x6a{left:504.666667pt;}
.x64{left:518.625333pt;}
.x47{left:521.824000pt;}
.x63{left:526.625333pt;}
.x2f{left:538.240000pt;}
.x6c{left:545.370667pt;}
.x61{left:547.093333pt;}
.x6d{left:555.363200pt;}
.x65{left:572.689333pt;}
.x36{left:574.013600pt;}
.x38{left:575.141600pt;}
.x86{left:584.171867pt;}
.x7b{left:603.804053pt;}
.x6e{left:615.094933pt;}
.x62{left:618.773333pt;}
.x66{left:629.946400pt;}
.x7c{left:633.574773pt;}
.x85{left:643.759867pt;}
.x7d{left:663.345493pt;}
.x7e{left:693.116213pt;}
.x7f{left:722.886933pt;}
.x53{left:731.239200pt;}
.x35{left:749.583867pt;}
.x80{left:752.657653pt;}
.x81{left:782.428373pt;}
.x82{left:812.199093pt;}
.x83{left:841.969813pt;}
.x84{left:871.740533pt;}
}




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