
    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_3c47331f18989e4a4c249419.woff')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_74ba7225f76ae94fc956f4b7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851074;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_f26257695e7fb432f97129d3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a122c459f3db67f7cb26dc93.woff')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_f14a743e1627a0139c35ad5b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.986816;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_16034c8080f738eedf1c530c.woff')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_242f6ebfed6237aa485fb29f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_ff68f9f016f7ef591cecf880.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_5fc0229ec88ba7a41a37690b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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);}
.v3{vertical-align:-59.040000px;}
.v5{vertical-align:-26.532000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.220360px;}
.v4{vertical-align:30.600000px;}
.v1{vertical-align:47.019960px;}
.ls37{letter-spacing:-3.168000px;}
.ls3a{letter-spacing:-2.484000px;}
.ls1a{letter-spacing:-1.683360px;}
.ls4a{letter-spacing:-1.620000px;}
.ls29{letter-spacing:-1.342080px;}
.ls22{letter-spacing:-1.317600px;}
.ls27{letter-spacing:-1.174320px;}
.ls38{letter-spacing:-0.936000px;}
.ls44{letter-spacing:-0.842400px;}
.ls2f{letter-spacing:-0.720000px;}
.ls34{letter-spacing:-0.648000px;}
.ls30{letter-spacing:-0.576000px;}
.ls46{letter-spacing:-0.505440px;}
.ls39{letter-spacing:-0.432000px;}
.ls48{letter-spacing:-0.421200px;}
.ls26{letter-spacing:-0.360720px;}
.ls2e{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.358560px;}
.ls47{letter-spacing:-0.336960px;}
.ls32{letter-spacing:-0.324000px;}
.lsf{letter-spacing:-0.298800px;}
.ls2{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.287280px;}
.ls11{letter-spacing:-0.270000px;}
.ls1c{letter-spacing:-0.241200px;}
.ls15{letter-spacing:-0.240480px;}
.ls17{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.204480px;}
.ls5{letter-spacing:-0.191520px;}
.lse{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.168480px;}
.ls28{letter-spacing:-0.167760px;}
.ls25{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.131760px;}
.ls12{letter-spacing:-0.119520px;}
.ls3d{letter-spacing:-0.108000px;}
.ls36{letter-spacing:-0.102240px;}
.ls23{letter-spacing:-0.066240px;}
.ls3{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.032400px;}
.ls24{letter-spacing:0.072000px;}
.ls41{letter-spacing:0.084240px;}
.ls2c{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.093600px;}
.ls31{letter-spacing:0.102240px;}
.lsa{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.120240px;}
.ls1{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.144720px;}
.ls2a{letter-spacing:0.167760px;}
.ls3c{letter-spacing:0.179280px;}
.ls10{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.191520px;}
.ls3f{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.227520px;}
.ls0{letter-spacing:0.239760px;}
.ls18{letter-spacing:0.240480px;}
.ls45{letter-spacing:0.252720px;}
.ls20{letter-spacing:0.263520px;}
.ls1f{letter-spacing:0.264960px;}
.lsc{letter-spacing:0.270000px;}
.ls6{letter-spacing:0.287280px;}
.ls16{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.295920px;}
.ls13{letter-spacing:0.298800px;}
.ls35{letter-spacing:0.324000px;}
.ls3b{letter-spacing:0.358560px;}
.ls19{letter-spacing:0.360720px;}
.ls42{letter-spacing:0.853200px;}
.ls43{letter-spacing:0.874800px;}
.lsd{letter-spacing:0.990000px;}
.ls7{letter-spacing:47.124000px;}
.lsb{letter-spacing:49.140000px;}
.ls3e{letter-spacing:96.840000px;}
.ls40{letter-spacing:97.956000px;}
.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;}
}
.ws33{word-spacing:-28.080000px;}
.ws43{word-spacing:-27.936000px;}
.ws4a{word-spacing:-27.792000px;}
.ws36{word-spacing:-25.693200px;}
.ws8e{word-spacing:-24.732000px;}
.ws92{word-spacing:-24.408000px;}
.ws90{word-spacing:-24.192000px;}
.ws8f{word-spacing:-24.084000px;}
.ws2c{word-spacing:-23.446800px;}
.ws2d{word-spacing:-23.326560px;}
.ws4b{word-spacing:-23.206320px;}
.ws91{word-spacing:-22.788000px;}
.ws9a{word-spacing:-22.140000px;}
.ws9c{word-spacing:-22.032000px;}
.ws9b{word-spacing:-21.924000px;}
.ws9d{word-spacing:-21.816000px;}
.ws2b{word-spacing:-21.522960px;}
.wsb{word-spacing:-20.952000px;}
.ws7b{word-spacing:-20.844000px;}
.ws7f{word-spacing:-20.736000px;}
.ws67{word-spacing:-20.520000px;}
.ws65{word-spacing:-20.196000px;}
.ws66{word-spacing:-19.834560px;}
.ws68{word-spacing:-19.630080px;}
.ws1{word-spacing:-18.481680px;}
.ws0{word-spacing:-18.290160px;}
.ws57{word-spacing:-17.640000px;}
.ws17{word-spacing:-17.550000px;}
.ws15{word-spacing:-17.190000px;}
.ws16{word-spacing:-17.100000px;}
.ws58{word-spacing:-17.010000px;}
.ws86{word-spacing:-16.511040px;}
.ws88{word-spacing:-16.258320px;}
.ws89{word-spacing:-16.089840px;}
.ws85{word-spacing:-15.921360px;}
.ws87{word-spacing:-15.837120px;}
.ws84{word-spacing:-15.752880px;}
.ws83{word-spacing:-15.415920px;}
.ws74{word-spacing:-14.184000px;}
.ws5f{word-spacing:-13.896000px;}
.ws7d{word-spacing:-13.864320px;}
.ws7e{word-spacing:-13.685040px;}
.ws27{word-spacing:-13.680000px;}
.ws44{word-spacing:-13.608000px;}
.ws61{word-spacing:-13.536000px;}
.ws76{word-spacing:-13.464000px;}
.ws72{word-spacing:-13.248000px;}
.ws60{word-spacing:-13.176000px;}
.ws75{word-spacing:-12.960000px;}
.ws63{word-spacing:-12.888000px;}
.ws1a{word-spacing:-11.832480px;}
.ws18{word-spacing:-11.533680px;}
.ws19{word-spacing:-11.414160px;}
.ws14{word-spacing:-11.234880px;}
.ws73{word-spacing:-10.728000px;}
.ws2e{word-spacing:-9.455040px;}
.ws2a{word-spacing:-2.880000px;}
.ws49{word-spacing:-2.736000px;}
.ws46{word-spacing:-2.592000px;}
.ws45{word-spacing:-2.525040px;}
.ws21{word-spacing:-2.430000px;}
.ws6f{word-spacing:-2.376000px;}
.ws4c{word-spacing:-2.284560px;}
.ws29{word-spacing:-2.160000px;}
.ws37{word-spacing:-2.118816px;}
.ws8b{word-spacing:-2.106000px;}
.ws4e{word-spacing:-1.923840px;}
.ws25{word-spacing:-1.872000px;}
.ws41{word-spacing:-1.844640px;}
.ws93{word-spacing:-1.728000px;}
.ws59{word-spacing:-1.710000px;}
.ws8{word-spacing:-1.684800px;}
.ws3c{word-spacing:-1.581120px;}
.ws6b{word-spacing:-1.512000px;}
.ws47{word-spacing:-1.440000px;}
.ws22{word-spacing:-1.350000px;}
.ws28{word-spacing:-1.322640px;}
.ws3{word-spacing:-1.296000px;}
.ws78{word-spacing:-1.224000px;}
.ws4f{word-spacing:-1.202400px;}
.ws96{word-spacing:-1.188000px;}
.ws3e{word-spacing:-1.185840px;}
.wsc{word-spacing:-1.152000px;}
.ws6c{word-spacing:-1.124640px;}
.ws34{word-spacing:-1.082160px;}
.ws70{word-spacing:-1.080000px;}
.ws8a{word-spacing:-0.926640px;}
.ws40{word-spacing:-0.922320px;}
.ws6a{word-spacing:-0.817920px;}
.ws42{word-spacing:-0.794880px;}
.wsa{word-spacing:-0.766080px;}
.ws6d{word-spacing:-0.756000px;}
.ws31{word-spacing:-0.720000px;}
.ws7a{word-spacing:-0.648000px;}
.ws1e{word-spacing:-0.630000px;}
.ws26{word-spacing:-0.576000px;}
.ws82{word-spacing:-0.540000px;}
.ws3d{word-spacing:-0.527040px;}
.ws79{word-spacing:-0.504000px;}
.ws4d{word-spacing:-0.480960px;}
.ws9{word-spacing:-0.478800px;}
.ws32{word-spacing:-0.434160px;}
.ws6{word-spacing:-0.432000px;}
.ws30{word-spacing:-0.360720px;}
.ws39{word-spacing:-0.341280px;}
.ws95{word-spacing:-0.324000px;}
.ws99{word-spacing:-0.288000px;}
.ws10{word-spacing:-0.287280px;}
.ws20{word-spacing:-0.270000px;}
.ws3a{word-spacing:-0.263520px;}
.ws77{word-spacing:-0.252720px;}
.ws38{word-spacing:-0.227520px;}
.ws97{word-spacing:-0.216000px;}
.ws5e{word-spacing:-0.184536px;}
.ws81{word-spacing:-0.179280px;}
.ws55{word-spacing:-0.167760px;}
.ws4{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.131760px;}
.ws80{word-spacing:-0.108000px;}
.ws5{word-spacing:0.000000px;}
.ws5a{word-spacing:0.072000px;}
.ws1b{word-spacing:0.090000px;}
.ws13{word-spacing:0.095760px;}
.ws8c{word-spacing:0.108000px;}
.ws64{word-spacing:0.119520px;}
.ws48{word-spacing:0.144000px;}
.ws52{word-spacing:0.167760px;}
.ws1c{word-spacing:0.180000px;}
.ws5d{word-spacing:0.216000px;}
.ws2f{word-spacing:0.240480px;}
.ws7{word-spacing:0.287280px;}
.ws35{word-spacing:0.288000px;}
.ws1f{word-spacing:0.298800px;}
.ws6e{word-spacing:0.324000px;}
.ws24{word-spacing:0.358560px;}
.ws50{word-spacing:0.360720px;}
.ws69{word-spacing:0.432000px;}
.ws11{word-spacing:0.478800px;}
.ws5b{word-spacing:0.504000px;}
.ws9e{word-spacing:0.540000px;}
.ws12{word-spacing:0.574560px;}
.ws98{word-spacing:0.648000px;}
.ws3b{word-spacing:0.658800px;}
.ws54{word-spacing:0.671040px;}
.ws8d{word-spacing:0.756000px;}
.ws5c{word-spacing:0.792000px;}
.ws23{word-spacing:0.810000px;}
.ws2{word-spacing:0.959040px;}
.ws56{word-spacing:1.006560px;}
.ws94{word-spacing:1.080000px;}
.wse{word-spacing:1.149120px;}
.ws53{word-spacing:1.342080px;}
.ws51{word-spacing:1.660824px;}
.wsd{word-spacing:1.915200px;}
.ws1d{word-spacing:2.790000px;}
.wsf{word-spacing:4.021920px;}
.ws7c{word-spacing:191.254200px;}
.ws62{word-spacing:265.384800px;}
.ws71{word-spacing:1335.456000px;}
._c{margin-left:-1980.612000px;}
._8{margin-left:-16.897248px;}
._3{margin-left:-8.168328px;}
._e{margin-left:-6.804432px;}
._4{margin-left:-5.555952px;}
._7{margin-left:-3.780000px;}
._0{margin-left:-2.493504px;}
._1{margin-left:-1.174824px;}
._2{width:1.246752px;}
._5{width:2.807424px;}
._9{width:27.622224px;}
._b{width:33.737040px;}
._6{width:573.797592px;}
._d{width:931.810752px;}
._a{width:2366.793288px;}
.fc7{color:rgb(88,88,90);}
.fc4{color:rgb(31,114,147);}
.fc2{color:rgb(70,120,134);}
.fc9{color:rgb(38,38,38);}
.fc8{color:rgb(244,244,244);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(191,191,191);}
.fc3{color:rgb(98,98,98);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(48,78,154);}
.fs9{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.fse{font-size:102.240000px;}
.fs4{font-size:108.000000px;}
.fsa{font-size:113.760000px;}
.fs7{font-size:120.240000px;}
.fsb{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fsd{font-size:167.760000px;}
.fs0{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.yde{bottom:21.244950px;}
.ye0{bottom:22.901100px;}
.ydb{bottom:23.959200px;}
.ycc{bottom:24.555150px;}
.ycf{bottom:30.927150px;}
.y61{bottom:31.135050px;}
.y6b{bottom:31.412700px;}
.y7e{bottom:31.428150px;}
.ydd{bottom:39.247650px;}
.yac{bottom:39.531150px;}
.ydf{bottom:40.903800px;}
.y92{bottom:41.748600px;}
.yef{bottom:42.225900px;}
.y37{bottom:43.465050px;}
.y96{bottom:45.339900px;}
.yfa{bottom:45.712950px;}
.ycb{bottom:46.155150px;}
.y40{bottom:51.025050px;}
.yce{bottom:52.527150px;}
.y60{bottom:52.735050px;}
.y84{bottom:53.922600px;}
.ydc{bottom:57.250350px;}
.yc7{bottom:59.511150px;}
.yca{bottom:60.105150px;}
.yab{bottom:61.131150px;}
.ycd{bottom:74.127150px;}
.y5f{bottom:74.335050px;}
.yee{bottom:74.625900px;}
.y36{bottom:75.087090px;}
.yd6{bottom:76.035150px;}
.y21{bottom:79.764150px;}
.yc6{bottom:81.111150px;}
.yc9{bottom:81.705150px;}
.y4c{bottom:81.872460px;}
.y51{bottom:83.646900px;}
.y3f{bottom:84.505050px;}
.y67{bottom:85.284000px;}
.y75{bottom:85.299600px;}
.y5c{bottom:88.441500px;}
.yf9{bottom:89.992950px;}
.y2d{bottom:93.922200px;}
.y14{bottom:94.919760px;}
.y5e{bottom:95.935050px;}
.y108{bottom:96.885900px;}
.yd5{bottom:97.635150px;}
.yc8{bottom:103.305150px;}
.y71{bottom:105.252870px;}
.y7d{bottom:105.268320px;}
.y35{bottom:106.775370px;}
.ya3{bottom:114.033150px;}
.y4b{bottom:114.277140px;}
.y85{bottom:114.429600px;}
.y5b{bottom:115.441500px;}
.y93{bottom:116.538600px;}
.y83{bottom:117.183600px;}
.y5d{bottom:117.535050px;}
.yed{bottom:118.905900px;}
.y3e{bottom:119.065050px;}
.yd4{bottom:119.235150px;}
.y13{bottom:120.846780px;}
.y20{bottom:122.064000px;}
.y70{bottom:123.255570px;}
.y7c{bottom:123.271020px;}
.y107{bottom:129.285900px;}
.y2c{bottom:130.102200px;}
.y2a{bottom:132.802200px;}
.ybd{bottom:133.023150px;}
.y26{bottom:134.583150px;}
.yf8{bottom:134.632950px;}
.ya2{bottom:135.633150px;}
.y34{bottom:138.463650px;}
.y6f{bottom:141.258270px;}
.y7b{bottom:141.273720px;}
.y1f{bottom:146.364000px;}
.y4a{bottom:146.681820px;}
.y12{bottom:146.773800px;}
.yec{bottom:151.305900px;}
.yd9{bottom:152.956050px;}
.y3d{bottom:153.625050px;}
.ybc{bottom:154.623150px;}
.y5a{bottom:154.861500px;}
.y106{bottom:161.685900px;}
.yb4{bottom:162.615150px;}
.yb8{bottom:165.801150px;}
.y66{bottom:166.226100px;}
.y74{bottom:166.241550px;}
.y29{bottom:168.982200px;}
.y33{bottom:170.151930px;}
.yc0{bottom:170.571150px;}
.y25{bottom:170.763150px;}
.ybb{bottom:176.223150px;}
.y6{bottom:178.779750px;}
.yf7{bottom:178.921950px;}
.y63{bottom:179.040960px;}
.y49{bottom:179.086500px;}
.y8f{bottom:179.340600px;}
.yb3{bottom:184.215150px;}
.yd8{bottom:185.356050px;}
.yb7{bottom:187.401150px;}
.y65{bottom:187.826100px;}
.y73{bottom:187.841550px;}
.y3c{bottom:188.185050px;}
.y1e{bottom:188.664150px;}
.y11{bottom:190.679610px;}
.y8d{bottom:190.950600px;}
.ybf{bottom:192.171150px;}
.y105{bottom:194.085900px;}
.yeb{bottom:194.145900px;}
.y59{bottom:199.501500px;}
.y32{bottom:201.840210px;}
.y28{bottom:207.862200px;}
.y8e{bottom:208.500600px;}
.y24{bottom:209.643150px;}
.yf6{bottom:211.132950px;}
.y48{bottom:211.491180px;}
.y1d{bottom:212.964150px;}
.ybe{bottom:213.771150px;}
.yae{bottom:214.167150px;}
.y10{bottom:216.606630px;}
.yd7{bottom:217.756050px;}
.yea{bottom:219.346050px;}
.y8c{bottom:220.110600px;}
.y3b{bottom:222.745050px;}
.y62{bottom:224.420040px;}
.ya5{bottom:226.029150px;}
.y104{bottom:226.494750px;}
.y58{bottom:226.501500px;}
.y31{bottom:233.528490px;}
.yba{bottom:233.625150px;}
.y5{bottom:235.479750px;}
.yad{bottom:235.767150px;}
.yb6{bottom:237.495150px;}
.yf{bottom:242.533650px;}
.y6e{bottom:244.971750px;}
.y7a{bottom:244.987200px;}
.ya4{bottom:247.629150px;}
.ya1{bottom:254.055150px;}
.yb9{bottom:255.225150px;}
.y1c{bottom:255.264150px;}
.y47{bottom:255.769560px;}
.yf5{bottom:255.781950px;}
.y3a{bottom:257.305050px;}
.ye9{bottom:258.225900px;}
.y103{bottom:258.894750px;}
.yb5{bottom:259.095150px;}
.y4{bottom:261.579750px;}
.y6d{bottom:262.974450px;}
.y79{bottom:262.989900px;}
.y30{bottom:265.216770px;}
.y57{bottom:265.921350px;}
.yd3{bottom:267.123150px;}
.y88{bottom:267.657600px;}
.y64{bottom:268.768050px;}
.y72{bottom:268.783500px;}
.y27{bottom:273.382200px;}
.y23{bottom:275.163000px;}
.ya0{bottom:275.655150px;}
.y1b{bottom:279.564150px;}
.y6c{bottom:280.977150px;}
.y78{bottom:280.992600px;}
.ye{bottom:286.439610px;}
.yf4{bottom:287.992950px;}
.y46{bottom:288.174240px;}
.yd2{bottom:288.723150px;}
.y102{bottom:291.294750px;}
.y39{bottom:291.865050px;}
.y82{bottom:295.036170px;}
.y2f{bottom:296.905050px;}
.y9f{bottom:297.255150px;}
.ye8{bottom:300.868260px;}
.yaa{bottom:308.559150px;}
.y56{bottom:310.381350px;}
.yd{bottom:312.366630px;}
.y50{bottom:316.394460px;}
.y81{bottom:319.522650px;}
.y45{bottom:320.578920px;}
.y1a{bottom:321.864150px;}
.yd1{bottom:323.085150px;}
.y101{bottom:323.694750px;}
.yb2{bottom:325.173150px;}
.y3{bottom:326.019750px;}
.ye7{bottom:326.077080px;}
.ya9{bottom:330.159150px;}
.y90{bottom:330.999600px;}
.y9a{bottom:331.995150px;}
.yf3{bottom:332.272950px;}
.yc{bottom:338.293650px;}
.yd0{bottom:344.685150px;}
.y19{bottom:346.164150px;}
.yb1{bottom:346.773150px;}
.y69{bottom:349.710000px;}
.y77{bottom:349.725600px;}
.y55{bottom:349.981500px;}
.y2b{bottom:350.762100px;}
.ye6{bottom:351.285900px;}
.y38{bottom:351.445050px;}
.y2e{bottom:352.525050px;}
.y44{bottom:352.983600px;}
.y99{bottom:353.595150px;}
.y4f{bottom:361.773540px;}
.yf2{bottom:364.672950px;}
.y2{bottom:369.219750px;}
.y68{bottom:371.310000px;}
.y76{bottom:371.325600px;}
.y9e{bottom:372.045150px;}
.y100{bottom:381.285750px;}
.yb{bottom:382.199610px;}
.y43{bottom:385.388280px;}
.y18{bottom:388.464150px;}
.ye5{bottom:388.537080px;}
.y8b{bottom:389.265600px;}
.y86{bottom:389.900100px;}
.ye2{bottom:390.045900px;}
.y54{bottom:394.441350px;}
.ya8{bottom:405.759150px;}
.y4e{bottom:407.152620px;}
.ya{bottom:408.126630px;}
.yc3{bottom:408.387150px;}
.y9d{bottom:408.405150px;}
.yf1{bottom:409.132800px;}
.y17{bottom:412.764150px;}
.yff{bottom:413.685750px;}
.ye4{bottom:413.745900px;}
.y8a{bottom:418.425600px;}
.y1{bottom:419.079750px;}
.y53{bottom:421.441350px;}
.ye1{bottom:422.445900px;}
.ya7{bottom:427.359150px;}
.yda{bottom:427.633200px;}
.y42{bottom:429.847020px;}
.yc2{bottom:429.987150px;}
.y9c{bottom:430.005150px;}
.y9{bottom:434.053650px;}
.y94{bottom:434.940150px;}
.yc5{bottom:439.761150px;}
.yb0{bottom:442.407150px;}
.yfe{bottom:446.085750px;}
.ya6{bottom:448.959150px;}
.yc1{bottom:451.587150px;}
.y9b{bottom:451.605150px;}
.y4d{bottom:452.531700px;}
.ye3{bottom:452.625900px;}
.yf0{bottom:453.592950px;}
.y16{bottom:455.064000px;}
.y87{bottom:458.925600px;}
.y52{bottom:460.861350px;}
.yc4{bottom:461.361150px;}
.y41{bottom:462.251700px;}
.yaf{bottom:464.007150px;}
.y89{bottom:471.966600px;}
.yfd{bottom:478.485750px;}
.y15{bottom:479.364000px;}
.y7f{bottom:487.415850px;}
.yfc{bottom:510.978900px;}
.y98{bottom:511.282650px;}
.y8{bottom:511.303950px;}
.y91{bottom:522.132600px;}
.y80{bottom:530.722650px;}
.y22{bottom:530.743950px;}
.y95{bottom:530.934900px;}
.y6a{bottom:536.471850px;}
.yfb{bottom:548.418900px;}
.y97{bottom:550.162650px;}
.y7{bottom:550.183950px;}
.ha{height:32.175703px;}
.h14{height:39.859453px;}
.hd{height:44.181562px;}
.h12{height:47.988281px;}
.h9{height:48.023438px;}
.h18{height:48.321563px;}
.h4{height:56.187422px;}
.h11{height:59.985352px;}
.h6{height:60.029297px;}
.h7{height:60.029897px;}
.h3{height:63.871172px;}
.h16{height:68.193281px;}
.h13{height:71.982422px;}
.h15{height:72.035156px;}
.h1a{height:73.828125px;}
.hb{height:75.877031px;}
.h17{height:78.623437px;}
.hf{height:80.140430px;}
.h8{height:80.199141px;}
.h19{height:87.328125px;}
.hc{height:87.882891px;}
.h2{height:95.976562px;}
.he{height:96.046875px;}
.h10{height:111.894609px;}
.h5{height:119.055116px;}
.h1b{height:125.929688px;}
.h1{height:159.800977px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x74{left:10.666350px;}
.x50{left:21.340350px;}
.x75{left:33.886350px;}
.x42{left:40.532700px;}
.x3f{left:42.997950px;}
.x6e{left:47.638350px;}
.x41{left:55.274700px;}
.x85{left:56.884950px;}
.x6d{left:59.878350px;}
.xd{left:65.565300px;}
.xf{left:73.984650px;}
.x4f{left:79.588350px;}
.x11{left:82.808400px;}
.xb{left:86.701950px;}
.x13{left:87.848400px;}
.x86{left:89.370300px;}
.x47{left:91.508700px;}
.x10{left:94.508400px;}
.x7d{left:96.742350px;}
.x48{left:100.877700px;}
.x7c{left:105.742350px;}
.x12{left:111.068400px;}
.x87{left:121.358250px;}
.xc{left:125.897850px;}
.x1{left:128.092350px;}
.x49{left:129.686700px;}
.x7{left:130.705350px;}
.x8{left:150.865500px;}
.x6c{left:221.770350px;}
.x6{left:230.692350px;}
.x73{left:233.344350px;}
.x6b{left:234.370350px;}
.x6a{left:253.990350px;}
.x69{left:258.490350px;}
.x5{left:266.692350px;}
.x68{left:273.790350px;}
.x59{left:280.612350px;}
.x7b{left:282.232350px;}
.x31{left:283.329300px;}
.x15{left:286.622100px;}
.x33{left:292.153050px;}
.x7a{left:293.212350px;}
.x17{left:295.445850px;}
.x35{left:297.193050px;}
.x3{left:298.732350px;}
.x2{left:301.432350px;}
.x32{left:303.853050px;}
.x16{left:307.145850px;}
.x58{left:314.452350px;}
.x34{left:320.413050px;}
.x18{left:323.705700px;}
.x9{left:341.874000px;}
.x84{left:343.226730px;}
.x83{left:347.902950px;}
.xa{left:356.273640px;}
.x76{left:366.220350px;}
.x65{left:405.298350px;}
.x64{left:409.618350px;}
.x4c{left:420.307050px;}
.x3c{left:426.651900px;}
.x4{left:447.412350px;}
.x4b{left:450.149700px;}
.x37{left:457.558830px;}
.x36{left:459.545850px;}
.x39{left:461.353590px;}
.x40{left:464.656950px;}
.x66{left:466.516350px;}
.x3a{left:469.809630px;}
.x67{left:470.836350px;}
.x38{left:477.548550px;}
.x7f{left:488.188350px;}
.x19{left:497.517450px;}
.x7e{left:504.568350px;}
.x1b{left:506.341200px;}
.x1d{left:511.381200px;}
.x51{left:515.422350px;}
.x1a{left:518.041200px;}
.x54{left:520.084350px;}
.x53{left:528.184350px;}
.x1c{left:534.601200px;}
.x52{left:544.024350px;}
.x60{left:567.298350px;}
.x78{left:601.192350px;}
.x5f{left:603.118350px;}
.x63{left:606.358350px;}
.x62{left:620.038350px;}
.x3b{left:634.528500px;}
.x79{left:644.212350px;}
.x82{left:663.338250px;}
.x77{left:664.552350px;}
.x4a{left:673.466700px;}
.x61{left:689.050350px;}
.x1e{left:691.651800px;}
.x43{left:712.265700px;}
.x3d{left:743.161050px;}
.x57{left:744.292350px;}
.x71{left:751.888350px;}
.x72{left:755.308350px;}
.xe{left:756.748350px;}
.x46{left:761.918700px;}
.x2a{left:764.803200px;}
.x2c{left:769.843200px;}
.x44{left:775.418700px;}
.x29{left:776.503200px;}
.x3e{left:779.711850px;}
.x4e{left:781.697100px;}
.x2b{left:793.063050px;}
.x45{left:801.878700px;}
.x1f{left:811.455300px;}
.x21{left:820.278900px;}
.x56{left:824.032350px;}
.x23{left:825.318900px;}
.x20{left:831.978900px;}
.x55{left:836.812350px;}
.x14{left:844.225050px;}
.x22{left:848.538900px;}
.x5d{left:849.916350px;}
.x70{left:856.324350px;}
.x5b{left:876.106350px;}
.x81{left:884.338950px;}
.x4d{left:890.642100px;}
.x5c{left:893.836350px;}
.x6f{left:907.984350px;}
.x5a{left:918.946350px;}
.x80{left:923.029950px;}
.x2d{left:929.686650px;}
.x2f{left:934.318050px;}
.x30{left:942.774090px;}
.x2e{left:944.985210px;}
.x5e{left:952.138350px;}
.x25{left:985.212900px;}
.x24{left:987.005700px;}
.x27{left:991.637100px;}
.x28{left:1000.093140px;}
.x26{left:1005.008400px;}
@media print{
.v3{vertical-align:-52.480000pt;}
.v5{vertical-align:-23.584000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.640320pt;}
.v4{vertical-align:27.200000pt;}
.v1{vertical-align:41.795520pt;}
.ls37{letter-spacing:-2.816000pt;}
.ls3a{letter-spacing:-2.208000pt;}
.ls1a{letter-spacing:-1.496320pt;}
.ls4a{letter-spacing:-1.440000pt;}
.ls29{letter-spacing:-1.192960pt;}
.ls22{letter-spacing:-1.171200pt;}
.ls27{letter-spacing:-1.043840pt;}
.ls38{letter-spacing:-0.832000pt;}
.ls44{letter-spacing:-0.748800pt;}
.ls2f{letter-spacing:-0.640000pt;}
.ls34{letter-spacing:-0.576000pt;}
.ls30{letter-spacing:-0.512000pt;}
.ls46{letter-spacing:-0.449280pt;}
.ls39{letter-spacing:-0.384000pt;}
.ls48{letter-spacing:-0.374400pt;}
.ls26{letter-spacing:-0.320640pt;}
.ls2e{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.318720pt;}
.ls47{letter-spacing:-0.299520pt;}
.ls32{letter-spacing:-0.288000pt;}
.lsf{letter-spacing:-0.265600pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.255360pt;}
.ls11{letter-spacing:-0.240000pt;}
.ls1c{letter-spacing:-0.214400pt;}
.ls15{letter-spacing:-0.213760pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.181760pt;}
.ls5{letter-spacing:-0.170240pt;}
.lse{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.149760pt;}
.ls28{letter-spacing:-0.149120pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.117120pt;}
.ls12{letter-spacing:-0.106240pt;}
.ls3d{letter-spacing:-0.096000pt;}
.ls36{letter-spacing:-0.090880pt;}
.ls23{letter-spacing:-0.058880pt;}
.ls3{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.028800pt;}
.ls24{letter-spacing:0.064000pt;}
.ls41{letter-spacing:0.074880pt;}
.ls2c{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.083200pt;}
.ls31{letter-spacing:0.090880pt;}
.lsa{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.106880pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.128640pt;}
.ls2a{letter-spacing:0.149120pt;}
.ls3c{letter-spacing:0.159360pt;}
.ls10{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.170240pt;}
.ls3f{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.202240pt;}
.ls0{letter-spacing:0.213120pt;}
.ls18{letter-spacing:0.213760pt;}
.ls45{letter-spacing:0.224640pt;}
.ls20{letter-spacing:0.234240pt;}
.ls1f{letter-spacing:0.235520pt;}
.lsc{letter-spacing:0.240000pt;}
.ls6{letter-spacing:0.255360pt;}
.ls16{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.263040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls35{letter-spacing:0.288000pt;}
.ls3b{letter-spacing:0.318720pt;}
.ls19{letter-spacing:0.320640pt;}
.ls42{letter-spacing:0.758400pt;}
.ls43{letter-spacing:0.777600pt;}
.lsd{letter-spacing:0.880000pt;}
.ls7{letter-spacing:41.888000pt;}
.lsb{letter-spacing:43.680000pt;}
.ls3e{letter-spacing:86.080000pt;}
.ls40{letter-spacing:87.072000pt;}
.ws33{word-spacing:-24.960000pt;}
.ws43{word-spacing:-24.832000pt;}
.ws4a{word-spacing:-24.704000pt;}
.ws36{word-spacing:-22.838400pt;}
.ws8e{word-spacing:-21.984000pt;}
.ws92{word-spacing:-21.696000pt;}
.ws90{word-spacing:-21.504000pt;}
.ws8f{word-spacing:-21.408000pt;}
.ws2c{word-spacing:-20.841600pt;}
.ws2d{word-spacing:-20.734720pt;}
.ws4b{word-spacing:-20.627840pt;}
.ws91{word-spacing:-20.256000pt;}
.ws9a{word-spacing:-19.680000pt;}
.ws9c{word-spacing:-19.584000pt;}
.ws9b{word-spacing:-19.488000pt;}
.ws9d{word-spacing:-19.392000pt;}
.ws2b{word-spacing:-19.131520pt;}
.wsb{word-spacing:-18.624000pt;}
.ws7b{word-spacing:-18.528000pt;}
.ws7f{word-spacing:-18.432000pt;}
.ws67{word-spacing:-18.240000pt;}
.ws65{word-spacing:-17.952000pt;}
.ws66{word-spacing:-17.630720pt;}
.ws68{word-spacing:-17.448960pt;}
.ws1{word-spacing:-16.428160pt;}
.ws0{word-spacing:-16.257920pt;}
.ws57{word-spacing:-15.680000pt;}
.ws17{word-spacing:-15.600000pt;}
.ws15{word-spacing:-15.280000pt;}
.ws16{word-spacing:-15.200000pt;}
.ws58{word-spacing:-15.120000pt;}
.ws86{word-spacing:-14.676480pt;}
.ws88{word-spacing:-14.451840pt;}
.ws89{word-spacing:-14.302080pt;}
.ws85{word-spacing:-14.152320pt;}
.ws87{word-spacing:-14.077440pt;}
.ws84{word-spacing:-14.002560pt;}
.ws83{word-spacing:-13.703040pt;}
.ws74{word-spacing:-12.608000pt;}
.ws5f{word-spacing:-12.352000pt;}
.ws7d{word-spacing:-12.323840pt;}
.ws7e{word-spacing:-12.164480pt;}
.ws27{word-spacing:-12.160000pt;}
.ws44{word-spacing:-12.096000pt;}
.ws61{word-spacing:-12.032000pt;}
.ws76{word-spacing:-11.968000pt;}
.ws72{word-spacing:-11.776000pt;}
.ws60{word-spacing:-11.712000pt;}
.ws75{word-spacing:-11.520000pt;}
.ws63{word-spacing:-11.456000pt;}
.ws1a{word-spacing:-10.517760pt;}
.ws18{word-spacing:-10.252160pt;}
.ws19{word-spacing:-10.145920pt;}
.ws14{word-spacing:-9.986560pt;}
.ws73{word-spacing:-9.536000pt;}
.ws2e{word-spacing:-8.404480pt;}
.ws2a{word-spacing:-2.560000pt;}
.ws49{word-spacing:-2.432000pt;}
.ws46{word-spacing:-2.304000pt;}
.ws45{word-spacing:-2.244480pt;}
.ws21{word-spacing:-2.160000pt;}
.ws6f{word-spacing:-2.112000pt;}
.ws4c{word-spacing:-2.030720pt;}
.ws29{word-spacing:-1.920000pt;}
.ws37{word-spacing:-1.883392pt;}
.ws8b{word-spacing:-1.872000pt;}
.ws4e{word-spacing:-1.710080pt;}
.ws25{word-spacing:-1.664000pt;}
.ws41{word-spacing:-1.639680pt;}
.ws93{word-spacing:-1.536000pt;}
.ws59{word-spacing:-1.520000pt;}
.ws8{word-spacing:-1.497600pt;}
.ws3c{word-spacing:-1.405440pt;}
.ws6b{word-spacing:-1.344000pt;}
.ws47{word-spacing:-1.280000pt;}
.ws22{word-spacing:-1.200000pt;}
.ws28{word-spacing:-1.175680pt;}
.ws3{word-spacing:-1.152000pt;}
.ws78{word-spacing:-1.088000pt;}
.ws4f{word-spacing:-1.068800pt;}
.ws96{word-spacing:-1.056000pt;}
.ws3e{word-spacing:-1.054080pt;}
.wsc{word-spacing:-1.024000pt;}
.ws6c{word-spacing:-0.999680pt;}
.ws34{word-spacing:-0.961920pt;}
.ws70{word-spacing:-0.960000pt;}
.ws8a{word-spacing:-0.823680pt;}
.ws40{word-spacing:-0.819840pt;}
.ws6a{word-spacing:-0.727040pt;}
.ws42{word-spacing:-0.706560pt;}
.wsa{word-spacing:-0.680960pt;}
.ws6d{word-spacing:-0.672000pt;}
.ws31{word-spacing:-0.640000pt;}
.ws7a{word-spacing:-0.576000pt;}
.ws1e{word-spacing:-0.560000pt;}
.ws26{word-spacing:-0.512000pt;}
.ws82{word-spacing:-0.480000pt;}
.ws3d{word-spacing:-0.468480pt;}
.ws79{word-spacing:-0.448000pt;}
.ws4d{word-spacing:-0.427520pt;}
.ws9{word-spacing:-0.425600pt;}
.ws32{word-spacing:-0.385920pt;}
.ws6{word-spacing:-0.384000pt;}
.ws30{word-spacing:-0.320640pt;}
.ws39{word-spacing:-0.303360pt;}
.ws95{word-spacing:-0.288000pt;}
.ws99{word-spacing:-0.256000pt;}
.ws10{word-spacing:-0.255360pt;}
.ws20{word-spacing:-0.240000pt;}
.ws3a{word-spacing:-0.234240pt;}
.ws77{word-spacing:-0.224640pt;}
.ws38{word-spacing:-0.202240pt;}
.ws97{word-spacing:-0.192000pt;}
.ws5e{word-spacing:-0.164032pt;}
.ws81{word-spacing:-0.159360pt;}
.ws55{word-spacing:-0.149120pt;}
.ws4{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.117120pt;}
.ws80{word-spacing:-0.096000pt;}
.ws5{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.064000pt;}
.ws1b{word-spacing:0.080000pt;}
.ws13{word-spacing:0.085120pt;}
.ws8c{word-spacing:0.096000pt;}
.ws64{word-spacing:0.106240pt;}
.ws48{word-spacing:0.128000pt;}
.ws52{word-spacing:0.149120pt;}
.ws1c{word-spacing:0.160000pt;}
.ws5d{word-spacing:0.192000pt;}
.ws2f{word-spacing:0.213760pt;}
.ws7{word-spacing:0.255360pt;}
.ws35{word-spacing:0.256000pt;}
.ws1f{word-spacing:0.265600pt;}
.ws6e{word-spacing:0.288000pt;}
.ws24{word-spacing:0.318720pt;}
.ws50{word-spacing:0.320640pt;}
.ws69{word-spacing:0.384000pt;}
.ws11{word-spacing:0.425600pt;}
.ws5b{word-spacing:0.448000pt;}
.ws9e{word-spacing:0.480000pt;}
.ws12{word-spacing:0.510720pt;}
.ws98{word-spacing:0.576000pt;}
.ws3b{word-spacing:0.585600pt;}
.ws54{word-spacing:0.596480pt;}
.ws8d{word-spacing:0.672000pt;}
.ws5c{word-spacing:0.704000pt;}
.ws23{word-spacing:0.720000pt;}
.ws2{word-spacing:0.852480pt;}
.ws56{word-spacing:0.894720pt;}
.ws94{word-spacing:0.960000pt;}
.wse{word-spacing:1.021440pt;}
.ws53{word-spacing:1.192960pt;}
.ws51{word-spacing:1.476288pt;}
.wsd{word-spacing:1.702400pt;}
.ws1d{word-spacing:2.480000pt;}
.wsf{word-spacing:3.575040pt;}
.ws7c{word-spacing:170.003733pt;}
.ws62{word-spacing:235.897600pt;}
.ws71{word-spacing:1187.072000pt;}
._c{margin-left:-1760.544000pt;}
._8{margin-left:-15.019776pt;}
._3{margin-left:-7.260736pt;}
._e{margin-left:-6.048384pt;}
._4{margin-left:-4.938624pt;}
._7{margin-left:-3.360000pt;}
._0{margin-left:-2.216448pt;}
._1{margin-left:-1.044288pt;}
._2{width:1.108224pt;}
._5{width:2.495488pt;}
._9{width:24.553088pt;}
._b{width:29.988480pt;}
._6{width:510.042304pt;}
._d{width:828.276224pt;}
._a{width:2103.816256pt;}
.fs9{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.fse{font-size:90.880000pt;}
.fs4{font-size:96.000000pt;}
.fsa{font-size:101.120000pt;}
.fs7{font-size:106.880000pt;}
.fsb{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fsd{font-size:149.120000pt;}
.fs0{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:18.884400pt;}
.ye0{bottom:20.356533pt;}
.ydb{bottom:21.297067pt;}
.ycc{bottom:21.826800pt;}
.ycf{bottom:27.490800pt;}
.y61{bottom:27.675600pt;}
.y6b{bottom:27.922400pt;}
.y7e{bottom:27.936133pt;}
.ydd{bottom:34.886800pt;}
.yac{bottom:35.138800pt;}
.ydf{bottom:36.358933pt;}
.y92{bottom:37.109867pt;}
.yef{bottom:37.534133pt;}
.y37{bottom:38.635600pt;}
.y96{bottom:40.302133pt;}
.yfa{bottom:40.633733pt;}
.ycb{bottom:41.026800pt;}
.y40{bottom:45.355600pt;}
.yce{bottom:46.690800pt;}
.y60{bottom:46.875600pt;}
.y84{bottom:47.931200pt;}
.ydc{bottom:50.889200pt;}
.yc7{bottom:52.898800pt;}
.yca{bottom:53.426800pt;}
.yab{bottom:54.338800pt;}
.ycd{bottom:65.890800pt;}
.y5f{bottom:66.075600pt;}
.yee{bottom:66.334133pt;}
.y36{bottom:66.744080pt;}
.yd6{bottom:67.586800pt;}
.y21{bottom:70.901467pt;}
.yc6{bottom:72.098800pt;}
.yc9{bottom:72.626800pt;}
.y4c{bottom:72.775520pt;}
.y51{bottom:74.352800pt;}
.y3f{bottom:75.115600pt;}
.y67{bottom:75.808000pt;}
.y75{bottom:75.821867pt;}
.y5c{bottom:78.614667pt;}
.yf9{bottom:79.993733pt;}
.y2d{bottom:83.486400pt;}
.y14{bottom:84.373120pt;}
.y5e{bottom:85.275600pt;}
.y108{bottom:86.120800pt;}
.yd5{bottom:86.786800pt;}
.yc8{bottom:91.826800pt;}
.y71{bottom:93.558107pt;}
.y7d{bottom:93.571840pt;}
.y35{bottom:94.911440pt;}
.ya3{bottom:101.362800pt;}
.y4b{bottom:101.579680pt;}
.y85{bottom:101.715200pt;}
.y5b{bottom:102.614667pt;}
.y93{bottom:103.589867pt;}
.y83{bottom:104.163200pt;}
.y5d{bottom:104.475600pt;}
.yed{bottom:105.694133pt;}
.y3e{bottom:105.835600pt;}
.yd4{bottom:105.986800pt;}
.y13{bottom:107.419360pt;}
.y20{bottom:108.501333pt;}
.y70{bottom:109.560507pt;}
.y7c{bottom:109.574240pt;}
.y107{bottom:114.920800pt;}
.y2c{bottom:115.646400pt;}
.y2a{bottom:118.046400pt;}
.ybd{bottom:118.242800pt;}
.y26{bottom:119.629467pt;}
.yf8{bottom:119.673733pt;}
.ya2{bottom:120.562800pt;}
.y34{bottom:123.078800pt;}
.y6f{bottom:125.562907pt;}
.y7b{bottom:125.576640pt;}
.y1f{bottom:130.101333pt;}
.y4a{bottom:130.383840pt;}
.y12{bottom:130.465600pt;}
.yec{bottom:134.494133pt;}
.yd9{bottom:135.960933pt;}
.y3d{bottom:136.555600pt;}
.ybc{bottom:137.442800pt;}
.y5a{bottom:137.654667pt;}
.y106{bottom:143.720800pt;}
.yb4{bottom:144.546800pt;}
.yb8{bottom:147.378800pt;}
.y66{bottom:147.756533pt;}
.y74{bottom:147.770267pt;}
.y29{bottom:150.206400pt;}
.y33{bottom:151.246160pt;}
.yc0{bottom:151.618800pt;}
.y25{bottom:151.789467pt;}
.ybb{bottom:156.642800pt;}
.y6{bottom:158.915333pt;}
.yf7{bottom:159.041733pt;}
.y63{bottom:159.147520pt;}
.y49{bottom:159.188000pt;}
.y8f{bottom:159.413867pt;}
.yb3{bottom:163.746800pt;}
.yd8{bottom:164.760933pt;}
.yb7{bottom:166.578800pt;}
.y65{bottom:166.956533pt;}
.y73{bottom:166.970267pt;}
.y3c{bottom:167.275600pt;}
.y1e{bottom:167.701467pt;}
.y11{bottom:169.492987pt;}
.y8d{bottom:169.733867pt;}
.ybf{bottom:170.818800pt;}
.y105{bottom:172.520800pt;}
.yeb{bottom:172.574133pt;}
.y59{bottom:177.334667pt;}
.y32{bottom:179.413520pt;}
.y28{bottom:184.766400pt;}
.y8e{bottom:185.333867pt;}
.y24{bottom:186.349467pt;}
.yf6{bottom:187.673733pt;}
.y48{bottom:187.992160pt;}
.y1d{bottom:189.301467pt;}
.ybe{bottom:190.018800pt;}
.yae{bottom:190.370800pt;}
.y10{bottom:192.539227pt;}
.yd7{bottom:193.560933pt;}
.yea{bottom:194.974267pt;}
.y8c{bottom:195.653867pt;}
.y3b{bottom:197.995600pt;}
.y62{bottom:199.484480pt;}
.ya5{bottom:200.914800pt;}
.y104{bottom:201.328667pt;}
.y58{bottom:201.334667pt;}
.y31{bottom:207.580880pt;}
.yba{bottom:207.666800pt;}
.y5{bottom:209.315333pt;}
.yad{bottom:209.570800pt;}
.yb6{bottom:211.106800pt;}
.yf{bottom:215.585467pt;}
.y6e{bottom:217.752667pt;}
.y7a{bottom:217.766400pt;}
.ya4{bottom:220.114800pt;}
.ya1{bottom:225.826800pt;}
.yb9{bottom:226.866800pt;}
.y1c{bottom:226.901467pt;}
.y47{bottom:227.350720pt;}
.yf5{bottom:227.361733pt;}
.y3a{bottom:228.715600pt;}
.ye9{bottom:229.534133pt;}
.y103{bottom:230.128667pt;}
.yb5{bottom:230.306800pt;}
.y4{bottom:232.515333pt;}
.y6d{bottom:233.755067pt;}
.y79{bottom:233.768800pt;}
.y30{bottom:235.748240pt;}
.y57{bottom:236.374533pt;}
.yd3{bottom:237.442800pt;}
.y88{bottom:237.917867pt;}
.y64{bottom:238.904933pt;}
.y72{bottom:238.918667pt;}
.y27{bottom:243.006400pt;}
.y23{bottom:244.589333pt;}
.ya0{bottom:245.026800pt;}
.y1b{bottom:248.501467pt;}
.y6c{bottom:249.757467pt;}
.y78{bottom:249.771200pt;}
.ye{bottom:254.612987pt;}
.yf4{bottom:255.993733pt;}
.y46{bottom:256.154880pt;}
.yd2{bottom:256.642800pt;}
.y102{bottom:258.928667pt;}
.y39{bottom:259.435600pt;}
.y82{bottom:262.254373pt;}
.y2f{bottom:263.915600pt;}
.y9f{bottom:264.226800pt;}
.ye8{bottom:267.438453pt;}
.yaa{bottom:274.274800pt;}
.y56{bottom:275.894533pt;}
.yd{bottom:277.659227pt;}
.y50{bottom:281.239520pt;}
.y81{bottom:284.020133pt;}
.y45{bottom:284.959040pt;}
.y1a{bottom:286.101467pt;}
.yd1{bottom:287.186800pt;}
.y101{bottom:287.728667pt;}
.yb2{bottom:289.042800pt;}
.y3{bottom:289.795333pt;}
.ye7{bottom:289.846293pt;}
.ya9{bottom:293.474800pt;}
.y90{bottom:294.221867pt;}
.y9a{bottom:295.106800pt;}
.yf3{bottom:295.353733pt;}
.yc{bottom:300.705467pt;}
.yd0{bottom:306.386800pt;}
.y19{bottom:307.701467pt;}
.yb1{bottom:308.242800pt;}
.y69{bottom:310.853333pt;}
.y77{bottom:310.867200pt;}
.y55{bottom:311.094667pt;}
.y2b{bottom:311.788533pt;}
.ye6{bottom:312.254133pt;}
.y38{bottom:312.395600pt;}
.y2e{bottom:313.355600pt;}
.y44{bottom:313.763200pt;}
.y99{bottom:314.306800pt;}
.y4f{bottom:321.576480pt;}
.yf2{bottom:324.153733pt;}
.y2{bottom:328.195333pt;}
.y68{bottom:330.053333pt;}
.y76{bottom:330.067200pt;}
.y9e{bottom:330.706800pt;}
.y100{bottom:338.920667pt;}
.yb{bottom:339.732987pt;}
.y43{bottom:342.567360pt;}
.y18{bottom:345.301467pt;}
.ye5{bottom:345.366293pt;}
.y8b{bottom:346.013867pt;}
.y86{bottom:346.577867pt;}
.ye2{bottom:346.707467pt;}
.y54{bottom:350.614533pt;}
.ya8{bottom:360.674800pt;}
.y4e{bottom:361.913440pt;}
.ya{bottom:362.779227pt;}
.yc3{bottom:363.010800pt;}
.y9d{bottom:363.026800pt;}
.yf1{bottom:363.673600pt;}
.y17{bottom:366.901467pt;}
.yff{bottom:367.720667pt;}
.ye4{bottom:367.774133pt;}
.y8a{bottom:371.933867pt;}
.y1{bottom:372.515333pt;}
.y53{bottom:374.614533pt;}
.ye1{bottom:375.507467pt;}
.ya7{bottom:379.874800pt;}
.yda{bottom:380.118400pt;}
.y42{bottom:382.086240pt;}
.yc2{bottom:382.210800pt;}
.y9c{bottom:382.226800pt;}
.y9{bottom:385.825467pt;}
.y94{bottom:386.613467pt;}
.yc5{bottom:390.898800pt;}
.yb0{bottom:393.250800pt;}
.yfe{bottom:396.520667pt;}
.ya6{bottom:399.074800pt;}
.yc1{bottom:401.410800pt;}
.y9b{bottom:401.426800pt;}
.y4d{bottom:402.250400pt;}
.ye3{bottom:402.334133pt;}
.yf0{bottom:403.193733pt;}
.y16{bottom:404.501333pt;}
.y87{bottom:407.933867pt;}
.y52{bottom:409.654533pt;}
.yc4{bottom:410.098800pt;}
.y41{bottom:410.890400pt;}
.yaf{bottom:412.450800pt;}
.y89{bottom:419.525867pt;}
.yfd{bottom:425.320667pt;}
.y15{bottom:426.101333pt;}
.y7f{bottom:433.258533pt;}
.yfc{bottom:454.203467pt;}
.y98{bottom:454.473467pt;}
.y8{bottom:454.492400pt;}
.y91{bottom:464.117867pt;}
.y80{bottom:471.753467pt;}
.y22{bottom:471.772400pt;}
.y95{bottom:471.942133pt;}
.y6a{bottom:476.863867pt;}
.yfb{bottom:487.483467pt;}
.y97{bottom:489.033467pt;}
.y7{bottom:489.052400pt;}
.ha{height:28.600625pt;}
.h14{height:35.430625pt;}
.hd{height:39.272500pt;}
.h12{height:42.656250pt;}
.h9{height:42.687500pt;}
.h18{height:42.952500pt;}
.h4{height:49.944375pt;}
.h11{height:53.320312pt;}
.h6{height:53.359375pt;}
.h7{height:53.359908pt;}
.h3{height:56.774375pt;}
.h16{height:60.616250pt;}
.h13{height:63.984375pt;}
.h15{height:64.031250pt;}
.h1a{height:65.625000pt;}
.hb{height:67.446250pt;}
.h17{height:69.887500pt;}
.hf{height:71.235937pt;}
.h8{height:71.288125pt;}
.h19{height:77.625000pt;}
.hc{height:78.118125pt;}
.h2{height:85.312500pt;}
.he{height:85.375000pt;}
.h10{height:99.461875pt;}
.h5{height:105.826770pt;}
.h1b{height:111.937500pt;}
.h1{height:142.045312pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x74{left:9.481200pt;}
.x50{left:18.969200pt;}
.x75{left:30.121200pt;}
.x42{left:36.029067pt;}
.x3f{left:38.220400pt;}
.x6e{left:42.345200pt;}
.x41{left:49.133067pt;}
.x85{left:50.564400pt;}
.x6d{left:53.225200pt;}
.xd{left:58.280267pt;}
.xf{left:65.764133pt;}
.x4f{left:70.745200pt;}
.x11{left:73.607467pt;}
.xb{left:77.068400pt;}
.x13{left:78.087467pt;}
.x86{left:79.440267pt;}
.x47{left:81.341067pt;}
.x10{left:84.007467pt;}
.x7d{left:85.993200pt;}
.x48{left:89.669067pt;}
.x7c{left:93.993200pt;}
.x12{left:98.727467pt;}
.x87{left:107.874000pt;}
.xc{left:111.909200pt;}
.x1{left:113.859867pt;}
.x49{left:115.277067pt;}
.x7{left:116.182533pt;}
.x8{left:134.102667pt;}
.x6c{left:197.129200pt;}
.x6{left:205.059867pt;}
.x73{left:207.417200pt;}
.x6b{left:208.329200pt;}
.x6a{left:225.769200pt;}
.x69{left:229.769200pt;}
.x5{left:237.059867pt;}
.x68{left:243.369200pt;}
.x59{left:249.433200pt;}
.x7b{left:250.873200pt;}
.x31{left:251.848267pt;}
.x15{left:254.775200pt;}
.x33{left:259.691600pt;}
.x7a{left:260.633200pt;}
.x17{left:262.618533pt;}
.x35{left:264.171600pt;}
.x3{left:265.539867pt;}
.x2{left:267.939867pt;}
.x32{left:270.091600pt;}
.x16{left:273.018533pt;}
.x58{left:279.513200pt;}
.x34{left:284.811600pt;}
.x18{left:287.738400pt;}
.x9{left:303.888000pt;}
.x84{left:305.090427pt;}
.x83{left:309.247067pt;}
.xa{left:316.687680pt;}
.x76{left:325.529200pt;}
.x65{left:360.265200pt;}
.x64{left:364.105200pt;}
.x4c{left:373.606267pt;}
.x3c{left:379.246133pt;}
.x4{left:397.699867pt;}
.x4b{left:400.133067pt;}
.x37{left:406.718960pt;}
.x36{left:408.485200pt;}
.x39{left:410.092080pt;}
.x40{left:413.028400pt;}
.x66{left:414.681200pt;}
.x3a{left:417.608560pt;}
.x67{left:418.521200pt;}
.x38{left:424.487600pt;}
.x7f{left:433.945200pt;}
.x19{left:442.237733pt;}
.x7e{left:448.505200pt;}
.x1b{left:450.081067pt;}
.x1d{left:454.561067pt;}
.x51{left:458.153200pt;}
.x1a{left:460.481067pt;}
.x54{left:462.297200pt;}
.x53{left:469.497200pt;}
.x1c{left:475.201067pt;}
.x52{left:483.577200pt;}
.x60{left:504.265200pt;}
.x78{left:534.393200pt;}
.x5f{left:536.105200pt;}
.x63{left:538.985200pt;}
.x62{left:551.145200pt;}
.x3b{left:564.025333pt;}
.x79{left:572.633200pt;}
.x82{left:589.634000pt;}
.x77{left:590.713200pt;}
.x4a{left:598.637067pt;}
.x61{left:612.489200pt;}
.x1e{left:614.801600pt;}
.x43{left:633.125067pt;}
.x3d{left:660.587600pt;}
.x57{left:661.593200pt;}
.x71{left:668.345200pt;}
.x72{left:671.385200pt;}
.xe{left:672.665200pt;}
.x46{left:677.261067pt;}
.x2a{left:679.825067pt;}
.x2c{left:684.305067pt;}
.x44{left:689.261067pt;}
.x29{left:690.225067pt;}
.x3e{left:693.077200pt;}
.x4e{left:694.841867pt;}
.x2b{left:704.944933pt;}
.x45{left:712.781067pt;}
.x1f{left:721.293600pt;}
.x21{left:729.136800pt;}
.x56{left:732.473200pt;}
.x23{left:733.616800pt;}
.x20{left:739.536800pt;}
.x55{left:743.833200pt;}
.x14{left:750.422267pt;}
.x22{left:754.256800pt;}
.x5d{left:755.481200pt;}
.x70{left:761.177200pt;}
.x5b{left:778.761200pt;}
.x81{left:786.079067pt;}
.x4d{left:791.681867pt;}
.x5c{left:794.521200pt;}
.x6f{left:807.097200pt;}
.x5a{left:816.841200pt;}
.x80{left:820.471067pt;}
.x2d{left:826.388133pt;}
.x2f{left:830.504933pt;}
.x30{left:838.021413pt;}
.x2e{left:839.986853pt;}
.x5e{left:846.345200pt;}
.x25{left:875.744800pt;}
.x24{left:877.338400pt;}
.x27{left:881.455200pt;}
.x28{left:888.971680pt;}
.x26{left:893.340800pt;}
}




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