
    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_56049c5103e43be6be2e8083.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_329e473b643045548072532c.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941406;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_d6262c383a6ba975b6cdf03b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948242;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_e156d3b7791a4eb4ee61f5ec.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948242;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_448e49c45d989e91e934f59a.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_fbbf154af90a5396bc2d441b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_22d3d9630c6e7ca7daca1ab0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_03dbe78b0a9bb5633859aef8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.981934;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_f3960985a5da2dc2d649610a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.983398;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_d1ed2ff3484803a9d7660d78.woff')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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_cda462cabfaac104a5c9e61d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.038574;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_d59dc17794b6ee7f496275cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_fcd69fe6935ad97336f1c4d5.woff')format("woff");}.ffd{font-family:ffd;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4aff45609c5b962c63fbf401.woff')format("woff");}.ffe{font-family:ffe;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f643183c9f7e08959f77df3f.woff')format("woff");}.fff{font-family:fff;line-height:1.186035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_0c0f3632a9263518d40c461f.woff')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_125fe85476971706322d256e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.186035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1aeaba9549e5c06a89ce95d6.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_70892e2a02a1dc1bacc25a97.woff')format("woff");}.ff13{font-family:ff13;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e514b6c3bb582b26068d1b98.woff')format("woff");}.ff14{font-family:ff14;line-height:0.970215;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;}
.m1{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);}
.v6{vertical-align:-124.800000px;}
.vd{vertical-align:-36.000000px;}
.v8{vertical-align:-31.500000px;}
.v4{vertical-align:-27.000000px;}
.v2{vertical-align:-22.500000px;}
.v7{vertical-align:-12.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.680000px;}
.va{vertical-align:18.600000px;}
.v3{vertical-align:22.500000px;}
.v5{vertical-align:27.000000px;}
.v9{vertical-align:31.500000px;}
.vc{vertical-align:36.000000px;}
.vb{vertical-align:90.900000px;}
.ls1a{letter-spacing:-8.700000px;}
.ls1b{letter-spacing:-8.640000px;}
.ls8{letter-spacing:-7.740000px;}
.ls9{letter-spacing:-1.920000px;}
.ls18{letter-spacing:-1.878000px;}
.ls22{letter-spacing:-1.662000px;}
.ls15{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.948000px;}
.ls16{letter-spacing:-0.834000px;}
.lsf{letter-spacing:-0.523800px;}
.ls25{letter-spacing:-0.504000px;}
.ls24{letter-spacing:-0.409200px;}
.ls6{letter-spacing:-0.259800px;}
.ls12{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.032100px;}
.ls0{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.030000px;}
.ls19{letter-spacing:0.170100px;}
.ls2f{letter-spacing:0.409200px;}
.ls2a{letter-spacing:0.454350px;}
.ls1d{letter-spacing:0.577800px;}
.ls21{letter-spacing:0.636000px;}
.lsc{letter-spacing:0.690000px;}
.ls11{letter-spacing:0.858000px;}
.ls35{letter-spacing:0.984000px;}
.ls13{letter-spacing:1.008000px;}
.ls38{letter-spacing:1.230000px;}
.ls23{letter-spacing:1.266000px;}
.lse{letter-spacing:1.351800px;}
.lsb{letter-spacing:1.518000px;}
.ls26{letter-spacing:1.536000px;}
.ls2e{letter-spacing:1.556400px;}
.lsd{letter-spacing:1.577100px;}
.ls29{letter-spacing:1.716450px;}
.ls17{letter-spacing:1.770000px;}
.ls34{letter-spacing:1.998000px;}
.ls5{letter-spacing:2.244000px;}
.ls3{letter-spacing:2.328000px;}
.ls37{letter-spacing:2.436000px;}
.ls39{letter-spacing:2.442000px;}
.ls3a{letter-spacing:2.586000px;}
.ls10{letter-spacing:2.958000px;}
.ls36{letter-spacing:3.150000px;}
.ls31{letter-spacing:33.020400px;}
.ls30{letter-spacing:33.168450px;}
.lsa{letter-spacing:40.320000px;}
.ls4{letter-spacing:40.372500px;}
.ls1{letter-spacing:49.770000px;}
.ls2{letter-spacing:49.822500px;}
.ls1f{letter-spacing:53.626200px;}
.ls20{letter-spacing:53.759850px;}
.ls2b{letter-spacing:62.508600px;}
.ls32{letter-spacing:111.697500px;}
.ls2c{letter-spacing:116.370000px;}
.ls28{letter-spacing:116.422500px;}
.ls2d{letter-spacing:116.520000px;}
.ls33{letter-spacing:116.572500px;}
.ls14{letter-spacing:119.572500px;}
.ls1c{letter-spacing:119.722500px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.sc4{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.sc3{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-144.150000px;}
.ws40{word-spacing:-139.650000px;}
.ws11{word-spacing:-130.650000px;}
.ws2f{word-spacing:-121.800000px;}
.ws2e{word-spacing:-121.650000px;}
.ws19{word-spacing:-112.650000px;}
.ws21{word-spacing:-108.150000px;}
.ws0{word-spacing:-72.150000px;}
.ws2{word-spacing:-60.104700px;}
.ws38{word-spacing:-58.333800px;}
.ws3d{word-spacing:-53.815950px;}
.ws17{word-spacing:-43.434300px;}
.ws42{word-spacing:-43.389150px;}
.ws47{word-spacing:-40.747800px;}
.ws3b{word-spacing:-37.297800px;}
.ws1b{word-spacing:-36.865650px;}
.ws39{word-spacing:-36.661800px;}
.ws27{word-spacing:-36.616650px;}
.ws35{word-spacing:-35.662800px;}
.wsb{word-spacing:-35.628900px;}
.ws1c{word-spacing:-35.259450px;}
.ws24{word-spacing:-33.561150px;}
.ws23{word-spacing:-33.411150px;}
.ws32{word-spacing:-32.577900px;}
.wsc{word-spacing:-32.553150px;}
.ws4f{word-spacing:-29.560800px;}
.ws41{word-spacing:-29.526900px;}
.ws25{word-spacing:-28.489650px;}
.ws26{word-spacing:-28.444500px;}
.ws36{word-spacing:-27.526800px;}
.ws44{word-spacing:-27.492900px;}
.ws1f{word-spacing:-27.135150px;}
.ws43{word-spacing:-27.090000px;}
.ws37{word-spacing:-25.780650px;}
.ws29{word-spacing:-24.441900px;}
.ws2d{word-spacing:-24.426150px;}
.ws3a{word-spacing:-24.381000px;}
.ws1a{word-spacing:-23.071650px;}
.ws1d{word-spacing:-23.026500px;}
.ws3c{word-spacing:-22.764150px;}
.ws34{word-spacing:-21.717150px;}
.ws22{word-spacing:-21.672000px;}
.ws2b{word-spacing:-21.390900px;}
.ws2a{word-spacing:-21.357000px;}
.ws31{word-spacing:-19.356900px;}
.ws49{word-spacing:-7.277700px;}
.ws3f{word-spacing:-6.406800px;}
.ws46{word-spacing:-6.318000px;}
.ws13{word-spacing:-5.926200px;}
.ws4{word-spacing:-5.399700px;}
.ws6{word-spacing:-5.306400px;}
.ws8{word-spacing:-3.348900px;}
.ws4c{word-spacing:-3.037200px;}
.wsa{word-spacing:-2.414250px;}
.ws33{word-spacing:-2.037300px;}
.ws12{word-spacing:-1.631400px;}
.ws10{word-spacing:-0.912000px;}
.ws2c{word-spacing:-0.751650px;}
.ws28{word-spacing:-0.691650px;}
.ws4e{word-spacing:-0.679200px;}
.ws9{word-spacing:-0.547350px;}
.ws7{word-spacing:-0.314850px;}
.ws4b{word-spacing:-0.208350px;}
.ws3e{word-spacing:-0.190500px;}
.ws4a{word-spacing:-0.131400px;}
.ws1{word-spacing:0.000000px;}
.ws15{word-spacing:0.080700px;}
.ws20{word-spacing:0.477900px;}
.wsd{word-spacing:0.719850px;}
.ws48{word-spacing:1.648200px;}
.ws14{word-spacing:1.692300px;}
.ws4d{word-spacing:1.753500px;}
.ws16{word-spacing:1.872300px;}
.ws45{word-spacing:2.010300px;}
.ws5{word-spacing:2.112000px;}
.ws3{word-spacing:2.325600px;}
.wsf{word-spacing:6.892800px;}
.ws30{word-spacing:94.504200px;}
.ws1e{word-spacing:187.154550px;}
.ws18{word-spacing:204.502650px;}
._1e{margin-left:-28.767900px;}
._22{margin-left:-16.665600px;}
._d{margin-left:-14.385150px;}
._18{margin-left:-13.328400px;}
._1a{margin-left:-12.096600px;}
._1f{margin-left:-10.812000px;}
._20{margin-left:-9.370650px;}
._16{margin-left:-8.234550px;}
._5{margin-left:-7.223550px;}
._c{margin-left:-6.137700px;}
._2{margin-left:-4.457400px;}
._1{margin-left:-2.782200px;}
._0{margin-left:-1.356600px;}
._4{width:1.162800px;}
._3{width:2.907000px;}
._8{width:4.379850px;}
._6{width:5.750400px;}
._f{width:7.895400px;}
._1b{width:22.736700px;}
._21{width:25.197000px;}
._e{width:27.415950px;}
._23{width:28.508400px;}
._13{width:30.505500px;}
._1c{width:31.992600px;}
._a{width:34.563600px;}
._b{width:36.376200px;}
._12{width:37.434300px;}
._7{width:38.824200px;}
._9{width:40.302600px;}
._14{width:41.634600px;}
._11{width:44.808000px;}
._15{width:175.875600px;}
._10{width:406.479450px;}
._19{width:409.494750px;}
._17{width:1083.160650px;}
._1d{width:1669.161600px;}
.fc16{color:rgb(73,23,209);}
.fc15{color:rgb(228,108,10);}
.fc13{color:rgb(0,112,192);}
.fc11{color:rgb(113,198,255);}
.fc12{color:rgb(249,80,243);}
.fc10{color:rgb(255,102,0);}
.fce{color:rgb(0,176,240);}
.fcd{color:rgb(255,134,59);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(255,255,255);}
.fc14{color:rgb(255,192,0);}
.fc2{color:rgb(68,114,196);}
.fcf{color:rgb(137,137,137);}
.fca{color:rgb(255,153,51);}
.fc3{color:rgb(79,129,189);}
.fc0{color:rgb(0,104,138);}
.fc5{color:rgb(255,0,0);}
.fc7{color:rgb(255,255,0);}
.fc8{color:rgb(124,37,249);}
.fcb{color:rgb(85,142,213);}
.fc4{color:rgb(0,0,255);}
.fc9{color:transparent;}
.fcc{color:rgb(149,55,53);}
.fsf{font-size:72.000000px;}
.fs3{font-size:72.150000px;}
.fsd{font-size:76.500000px;}
.fsc{font-size:76.650000px;}
.fs19{font-size:81.000000px;}
.fs15{font-size:81.150000px;}
.fs1a{font-size:85.500000px;}
.fs17{font-size:85.650000px;}
.fs1e{font-size:90.000000px;}
.fse{font-size:90.150000px;}
.fs12{font-size:94.500000px;}
.fs11{font-size:94.650000px;}
.fs2{font-size:108.150000px;}
.fsb{font-size:112.650000px;}
.fs13{font-size:121.650000px;}
.fs16{font-size:121.800000px;}
.fsa{font-size:130.650000px;}
.fs1d{font-size:130.800000px;}
.fs1c{font-size:139.650000px;}
.fs14{font-size:139.800000px;}
.fs9{font-size:144.150000px;}
.fs1{font-size:144.300000px;}
.fs8{font-size:157.650000px;}
.fs10{font-size:157.800000px;}
.fs6{font-size:166.650000px;}
.fs5{font-size:166.800000px;}
.fs1b{font-size:180.150000px;}
.fs1f{font-size:180.300000px;}
.fs7{font-size:193.650000px;}
.fs0{font-size:193.800000px;}
.fs18{font-size:216.300000px;}
.fs4{font-size:265.950000px;}
.fs20{font-size:274.950000px;}
.yde{bottom:-0.150060px;}
.y0{bottom:0.000000px;}
.ya8{bottom:7.425000px;}
.y6f{bottom:8.887500px;}
.y85{bottom:9.900000px;}
.y6e{bottom:10.950000px;}
.yb6{bottom:11.325000px;}
.y41{bottom:11.512500px;}
.y5{bottom:11.850000px;}
.y2c{bottom:12.487500px;}
.y11{bottom:14.137500px;}
.y75{bottom:16.800000px;}
.y95{bottom:24.825000px;}
.y97{bottom:30.525000px;}
.ydd{bottom:32.512500px;}
.y23{bottom:32.625000px;}
.y36{bottom:33.675000px;}
.ya7{bottom:34.462500px;}
.y13{bottom:36.450000px;}
.ya3{bottom:38.400000px;}
.y6d{bottom:40.275000px;}
.yb5{bottom:43.987500px;}
.y84{bottom:45.937500px;}
.y9e{bottom:53.175000px;}
.y94{bottom:54.150000px;}
.y55{bottom:56.025000px;}
.ycc{bottom:56.175000px;}
.yce{bottom:57.900000px;}
.y33{bottom:62.625000px;}
.y90{bottom:63.075000px;}
.ydc{bottom:65.175000px;}
.yda{bottom:65.625000px;}
.y6c{bottom:68.437500px;}
.y1c{bottom:73.312500px;}
.y4{bottom:74.925000px;}
.ya2{bottom:78.975000px;}
.y68{bottom:82.950000px;}
.ycb{bottom:85.500000px;}
.ycd{bottom:87.187500px;}
.y9d{bottom:89.250000px;}
.y93{bottom:96.937500px;}
.yd9{bottom:97.162500px;}
.ydb{bottom:97.837500px;}
.y8f{bottom:99.112500px;}
.ya0{bottom:105.225000px;}
.yb4{bottom:106.162500px;}
.y32{bottom:106.575000px;}
.y1b{bottom:112.762500px;}
.y4f{bottom:114.862500px;}
.y3{bottom:118.800000px;}
.y67{bottom:119.025000px;}
.yb0{bottom:120.187500px;}
.yd8{bottom:128.700000px;}
.y29{bottom:129.412500px;}
.yb3{bottom:130.950000px;}
.y8e{bottom:135.150000px;}
.y22{bottom:139.200000px;}
.y82{bottom:143.662500px;}
.ya1{bottom:147.675000px;}
.y31{bottom:149.362500px;}
.y4e{bottom:150.900000px;}
.y1a{bottom:152.175000px;}
.y66{bottom:155.055000px;}
.y28{bottom:162.120000px;}
.yaf{bottom:163.020000px;}
.y8d{bottom:171.225000px;}
.y21{bottom:173.025000px;}
.y54{bottom:175.845000px;}
.y7e{bottom:186.870000px;}
.y4d{bottom:186.930000px;}
.yc8{bottom:189.630000px;}
.y81{bottom:189.870000px;}
.y65{bottom:191.100000px;}
.y19{bottom:191.625000px;}
.yae{bottom:206.925000px;}
.yd7{bottom:208.695000px;}
.y53{bottom:211.875000px;}
.y5e{bottom:215.820000px;}
.y56{bottom:224.625000px;}
.yc7{bottom:229.050000px;}
.y18{bottom:235.545000px;}
.y30{bottom:236.130000px;}
.y80{bottom:237.195000px;}
.yd6{bottom:240.225000px;}
.y27{bottom:242.100000px;}
.y8c{bottom:243.300000px;}
.y4c{bottom:244.575000px;}
.y52{bottom:247.950000px;}
.yad{bottom:249.750000px;}
.yc6{bottom:269.625000px;}
.y74{bottom:274.470000px;}
.y20{bottom:275.505000px;}
.y8b{bottom:277.095000px;}
.y4b{bottom:280.605000px;}
.y7f{bottom:284.520000px;}
.yac{bottom:293.655000px;}
.y9c{bottom:303.495000px;}
.yc{bottom:305.880000px;}
.y2a{bottom:308.175000px;}
.yc5{bottom:309.030000px;}
.ydf{bottom:309.525000px;}
.y1f{bottom:310.470000px;}
.y9{bottom:312.675000px;}
.y4a{bottom:316.650000px;}
.yd5{bottom:319.095000px;}
.y8a{bottom:319.920000px;}
.y51{bottom:320.025000px;}
.y2e{bottom:328.845000px;}
.yab{bottom:336.480000px;}
.y73{bottom:336.795000px;}
.y9b{bottom:339.570000px;}
.ybf{bottom:346.830000px;}
.y26{bottom:347.970000px;}
.yc4{bottom:348.495000px;}
.yd4{bottom:350.625000px;}
.y50{bottom:356.100000px;}
.y17{bottom:361.800000px;}
.y49{bottom:375.570000px;}
.y40{bottom:381.525000px;}
.y25{bottom:382.905000px;}
.yd3{bottom:383.280000px;}
.yc3{bottom:387.900000px;}
.y1e{bottom:389.325000px;}
.yd1{bottom:401.700000px;}
.y64{bottom:404.280000px;}
.y87{bottom:406.350000px;}
.y3f{bottom:410.820000px;}
.y48{bottom:411.600000px;}
.y79{bottom:418.905000px;}
.y9a{bottom:423.675000px;}
.yb{bottom:426.450000px;}
.y1d{bottom:428.700000px;}
.y5d{bottom:430.875000px;}
.y8{bottom:433.200000px;}
.y3e{bottom:438.975000px;}
.y86{bottom:442.380000px;}
.y2f{bottom:442.425000px;}
.y63{bottom:447.075000px;}
.ybe{bottom:454.995000px;}
.yd2{bottom:457.650000px;}
.y99{bottom:459.720000px;}
.y24{bottom:461.775000px;}
.y78{bottom:466.245000px;}
.yc2{bottom:467.880000px;}
.y3d{bottom:469.380000px;}
.yf{bottom:477.450000px;}
.y71{bottom:479.580000px;}
.y5c{bottom:482.505000px;}
.y47{bottom:486.300000px;}
.y62{bottom:491.025000px;}
.y7d{bottom:493.905000px;}
.y98{bottom:495.750000px;}
.ya6{bottom:508.350000px;}
.yba{bottom:518.025000px;}
.ybd{bottom:527.100000px;}
.y72{bottom:529.845000px;}
.y46{bottom:530.250000px;}
.y61{bottom:533.850000px;}
.y7c{bottom:540.075000px;}
.yc1{bottom:542.550000px;}
.y2{bottom:544.095000px;}
.ya5{bottom:547.755000px;}
.y58{bottom:548.400000px;}
.ya{bottom:549.225000px;}
.y35{bottom:550.155000px;}
.y3c{bottom:554.505000px;}
.y9f{bottom:554.820000px;}
.y7{bottom:554.880000px;}
.y57{bottom:555.600000px;}
.ycf{bottom:564.120000px;}
.yb9{bottom:565.350000px;}
.y15{bottom:565.500000px;}
.ybc{bottom:571.005000px;}
.y45{bottom:573.030000px;}
.yd0{bottom:574.620000px;}
.y60{bottom:577.755000px;}
.y3b{bottom:583.800000px;}
.y7b{bottom:587.400000px;}
.y88{bottom:587.925000px;}
.ya4{bottom:588.330000px;}
.y1{bottom:602.655000px;}
.y10{bottom:603.150000px;}
.y59{bottom:605.370000px;}
.y96{bottom:606.570000px;}
.y3a{bottom:611.970000px;}
.yb8{bottom:612.630000px;}
.ybb{bottom:614.550000px;}
.yc0{bottom:616.800000px;}
.y16{bottom:617.325000px;}
.yb2{bottom:620.100000px;}
.y5f{bottom:620.595000px;}
.y12{bottom:625.800000px;}
.y7a{bottom:634.725000px;}
.yca{bottom:637.005000px;}
.y70{bottom:639.225000px;}
.y39{bottom:642.405000px;}
.y5b{bottom:647.625000px;}
.y5a{bottom:654.825000px;}
.ya9{bottom:656.280000px;}
.y44{bottom:659.820000px;}
.yb7{bottom:661.095000px;}
.y34{bottom:665.850000px;}
.yb1{bottom:667.425000px;}
.y6{bottom:670.050000px;}
.y2b{bottom:670.425000px;}
.yc9{bottom:679.800000px;}
.y69{bottom:679.950000px;}
.y14{bottom:681.630000px;}
.yd{bottom:683.880000px;}
.y92{bottom:685.620000px;}
.y76{bottom:696.030000px;}
.y43{bottom:703.725000px;}
.y83{bottom:704.370000px;}
.y38{bottom:705.405000px;}
.y6b{bottom:705.750000px;}
.y91{bottom:711.525000px;}
.yaa{bottom:744.495000px;}
.y77{bottom:745.350000px;}
.y2d{bottom:746.475000px;}
.y42{bottom:746.550000px;}
.ye{bottom:747.255000px;}
.y89{bottom:753.225000px;}
.y6a{bottom:754.380000px;}
.y37{bottom:758.880000px;}
.h4{height:53.231763px;}
.h45{height:54.808594px;}
.h2c{height:54.922778px;}
.h33{height:65.199390px;}
.h43{height:68.510742px;}
.h3c{height:71.613281px;}
.h1a{height:71.936279px;}
.h19{height:72.050464px;}
.h49{height:75.950684px;}
.h48{height:76.071240px;}
.h2d{height:78.483911px;}
.h3{height:79.053003px;}
.he{height:82.327075px;}
.hb{height:82.327094px;}
.h3a{height:82.410645px;}
.h38{height:82.555225px;}
.h29{height:87.699243px;}
.h1c{height:88.920923px;}
.h16{height:91.145947px;}
.h37{height:91.230029px;}
.h1e{height:92.603687px;}
.h27{height:92.717871px;}
.h15{height:94.938428px;}
.h20{height:96.760986px;}
.h21{height:96.914575px;}
.h3d{height:97.771436px;}
.h35{height:97.773853px;}
.h3e{height:97.891992px;}
.h11{height:99.454761px;}
.h47{height:99.568945px;}
.h24{height:102.523389px;}
.h25{height:102.649805px;}
.h46{height:104.242236px;}
.h1d{height:105.123047px;}
.h41{height:106.305835px;}
.hd{height:107.569116px;}
.h2{height:108.506836px;}
.h1b{height:109.731372px;}
.h14{height:109.845557px;}
.h12{height:110.108350px;}
.h1f{height:110.737573px;}
.h36{height:117.399023px;}
.h2a{height:118.658203px;}
.hc{height:120.007983px;}
.h17{height:120.122168px;}
.h28{height:120.996606px;}
.hf{height:121.485791px;}
.h10{height:124.249116px;}
.h31{height:124.560571px;}
.h32{height:124.714160px;}
.h26{height:126.169116px;}
.h9{height:126.858984px;}
.h4b{height:129.948267px;}
.h4c{height:130.097461px;}
.h3f{height:133.775903px;}
.h42{height:133.929492px;}
.h40{height:134.604053px;}
.h34{height:138.941455px;}
.h39{height:139.086035px;}
.h18{height:145.615723px;}
.h1{height:145.728516px;}
.ha{height:147.526465px;}
.h22{height:147.598901px;}
.h23{height:147.752490px;}
.h8{height:155.638623px;}
.h13{height:155.759180px;}
.h44{height:160.628467px;}
.h2f{height:161.421899px;}
.h30{height:161.575488px;}
.h2e{height:164.654150px;}
.h7{height:165.754907px;}
.h6{height:165.904102px;}
.h3b{height:173.640674px;}
.h2b{height:183.503687px;}
.h4a{height:184.613818px;}
.h4d{height:206.749512px;}
.h5{height:272.313062px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x19{left:6.187484px;}
.x8e{left:8.737484px;}
.x77{left:11.249984px;}
.x4c{left:12.562484px;}
.x4d{left:13.612484px;}
.x81{left:17.962484px;}
.x4b{left:21.787484px;}
.x13{left:26.324984px;}
.xd{left:28.424984px;}
.xf{left:29.549984px;}
.xa{left:30.562484px;}
.xc{left:34.874984px;}
.x16{left:36.074984px;}
.x7{left:37.987484px;}
.x59{left:41.512484px;}
.x4e{left:42.674984px;}
.x1c{left:45.749984px;}
.x89{left:51.337484px;}
.x1{left:52.837484px;}
.x21{left:56.924984px;}
.x20{left:59.212484px;}
.x67{left:61.574984px;}
.x1f{left:63.637484px;}
.x72{left:67.499984px;}
.x12{left:70.724984px;}
.x5{left:77.662484px;}
.x8f{left:79.724984px;}
.x6{left:85.124984px;}
.x14{left:89.512484px;}
.x58{left:91.012484px;}
.x6d{left:94.799984px;}
.x11{left:96.712484px;}
.x90{left:101.699984px;}
.x8a{left:106.199984px;}
.x4f{left:109.687484px;}
.x6c{left:117.524984px;}
.x66{left:118.574984px;}
.x57{left:125.212484px;}
.x60{left:128.474984px;}
.x6b{left:143.437484px;}
.x17{left:145.012484px;}
.x15{left:146.287484px;}
.x23{left:155.144984px;}
.x8b{left:166.019984px;}
.x1e{left:175.679984px;}
.x7d{left:176.699984px;}
.x1b{left:182.204984px;}
.x88{left:183.344984px;}
.x6a{left:193.199984px;}
.x18{left:198.869984px;}
.x78{left:203.279984px;}
.x68{left:243.029984px;}
.x61{left:246.449984px;}
.x1a{left:253.724984px;}
.x62{left:274.994984px;}
.x3{left:280.844984px;}
.x52{left:285.329984px;}
.x63{left:287.894984px;}
.x8{left:302.099984px;}
.x93{left:313.874984px;}
.x69{left:323.819984px;}
.x92{left:327.869984px;}
.x82{left:330.149984px;}
.x7e{left:331.274984px;}
.x4{left:339.899984px;}
.x2{left:357.419984px;}
.x65{left:358.694984px;}
.x91{left:366.629984px;}
.x64{left:374.219984px;}
.x27{left:404.249984px;}
.x22{left:406.124984px;}
.x73{left:410.594984px;}
.x26{left:413.069984px;}
.x24{left:438.974984px;}
.x8c{left:483.419984px;}
.x25{left:485.474984px;}
.x71{left:508.694984px;}
.x42{left:539.369984px;}
.x3d{left:545.174984px;}
.x3f{left:552.029984px;}
.x41{left:554.549984px;}
.x40{left:559.994984px;}
.x50{left:588.779984px;}
.x80{left:597.719984px;}
.x51{left:608.894984px;}
.xe{left:612.374984px;}
.x2c{left:631.244984px;}
.x2d{left:636.854984px;}
.x87{left:651.779984px;}
.x83{left:657.029984px;}
.x7f{left:666.674984px;}
.x8d{left:679.079984px;}
.x36{left:680.324984px;}
.x33{left:681.824984px;}
.x76{left:684.224984px;}
.x34{left:685.604984px;}
.x7a{left:687.329984px;}
.x3c{left:689.519984px;}
.x74{left:695.549984px;}
.x39{left:697.754984px;}
.x2f{left:712.244984px;}
.x79{left:714.224984px;}
.x31{left:717.479984px;}
.x3a{left:720.404984px;}
.x30{left:726.299984px;}
.x53{left:730.724984px;}
.x2e{left:744.899984px;}
.x37{left:747.629984px;}
.x7c{left:749.699984px;}
.x38{left:759.254984px;}
.x3b{left:765.149984px;}
.x32{left:773.369984px;}
.x10{left:776.399984px;}
.x35{left:778.349984px;}
.x5e{left:781.004984px;}
.x7b{left:784.574984px;}
.x2a{left:791.204984px;}
.x6f{left:792.569984px;}
.x56{left:794.444984px;}
.x75{left:799.199984px;}
.x47{left:803.504984px;}
.x44{left:807.074984px;}
.x29{left:810.194984px;}
.x45{left:814.994984px;}
.x3e{left:819.224984px;}
.x46{left:822.119984px;}
.x49{left:827.699984px;}
.x28{left:829.244984px;}
.x48{left:842.579984px;}
.x5f{left:844.919984px;}
.x70{left:847.724984px;}
.x43{left:860.774984px;}
.xb{left:861.869984px;}
.x85{left:868.244984px;}
.x5d{left:871.094984px;}
.x54{left:873.704984px;}
.x1d{left:876.779984px;}
.x4a{left:881.294984px;}
.x84{left:884.774984px;}
.x2b{left:892.499984px;}
.x5a{left:903.524984px;}
.x55{left:906.494984px;}
.x86{left:909.824984px;}
.x5c{left:917.474984px;}
.x5b{left:942.569984px;}
.x9{left:989.324984px;}
.x6e{left:997.724984px;}
@media print{
.v6{vertical-align:-110.933333pt;}
.vd{vertical-align:-32.000000pt;}
.v8{vertical-align:-28.000000pt;}
.v4{vertical-align:-24.000000pt;}
.v2{vertical-align:-20.000000pt;}
.v7{vertical-align:-11.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.826667pt;}
.va{vertical-align:16.533333pt;}
.v3{vertical-align:20.000000pt;}
.v5{vertical-align:24.000000pt;}
.v9{vertical-align:28.000000pt;}
.vc{vertical-align:32.000000pt;}
.vb{vertical-align:80.800000pt;}
.ls1a{letter-spacing:-7.733333pt;}
.ls1b{letter-spacing:-7.680000pt;}
.ls8{letter-spacing:-6.880000pt;}
.ls9{letter-spacing:-1.706667pt;}
.ls18{letter-spacing:-1.669333pt;}
.ls22{letter-spacing:-1.477333pt;}
.ls15{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.842667pt;}
.ls16{letter-spacing:-0.741333pt;}
.lsf{letter-spacing:-0.465600pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls24{letter-spacing:-0.363733pt;}
.ls6{letter-spacing:-0.230933pt;}
.ls12{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.028533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.026667pt;}
.ls19{letter-spacing:0.151200pt;}
.ls2f{letter-spacing:0.363733pt;}
.ls2a{letter-spacing:0.403867pt;}
.ls1d{letter-spacing:0.513600pt;}
.ls21{letter-spacing:0.565333pt;}
.lsc{letter-spacing:0.613333pt;}
.ls11{letter-spacing:0.762667pt;}
.ls35{letter-spacing:0.874667pt;}
.ls13{letter-spacing:0.896000pt;}
.ls38{letter-spacing:1.093333pt;}
.ls23{letter-spacing:1.125333pt;}
.lse{letter-spacing:1.201600pt;}
.lsb{letter-spacing:1.349333pt;}
.ls26{letter-spacing:1.365333pt;}
.ls2e{letter-spacing:1.383467pt;}
.lsd{letter-spacing:1.401867pt;}
.ls29{letter-spacing:1.525733pt;}
.ls17{letter-spacing:1.573333pt;}
.ls34{letter-spacing:1.776000pt;}
.ls5{letter-spacing:1.994667pt;}
.ls3{letter-spacing:2.069333pt;}
.ls37{letter-spacing:2.165333pt;}
.ls39{letter-spacing:2.170667pt;}
.ls3a{letter-spacing:2.298667pt;}
.ls10{letter-spacing:2.629333pt;}
.ls36{letter-spacing:2.800000pt;}
.ls31{letter-spacing:29.351467pt;}
.ls30{letter-spacing:29.483067pt;}
.lsa{letter-spacing:35.840000pt;}
.ls4{letter-spacing:35.886667pt;}
.ls1{letter-spacing:44.240000pt;}
.ls2{letter-spacing:44.286667pt;}
.ls1f{letter-spacing:47.667733pt;}
.ls20{letter-spacing:47.786533pt;}
.ls2b{letter-spacing:55.563200pt;}
.ls32{letter-spacing:99.286667pt;}
.ls2c{letter-spacing:103.440000pt;}
.ls28{letter-spacing:103.486667pt;}
.ls2d{letter-spacing:103.573333pt;}
.ls33{letter-spacing:103.620000pt;}
.ls14{letter-spacing:106.286667pt;}
.ls1c{letter-spacing:106.420000pt;}
.wse{word-spacing:-128.133333pt;}
.ws40{word-spacing:-124.133333pt;}
.ws11{word-spacing:-116.133333pt;}
.ws2f{word-spacing:-108.266667pt;}
.ws2e{word-spacing:-108.133333pt;}
.ws19{word-spacing:-100.133333pt;}
.ws21{word-spacing:-96.133333pt;}
.ws0{word-spacing:-64.133333pt;}
.ws2{word-spacing:-53.426400pt;}
.ws38{word-spacing:-51.852267pt;}
.ws3d{word-spacing:-47.836400pt;}
.ws17{word-spacing:-38.608267pt;}
.ws42{word-spacing:-38.568133pt;}
.ws47{word-spacing:-36.220267pt;}
.ws3b{word-spacing:-33.153600pt;}
.ws1b{word-spacing:-32.769467pt;}
.ws39{word-spacing:-32.588267pt;}
.ws27{word-spacing:-32.548133pt;}
.ws35{word-spacing:-31.700267pt;}
.wsb{word-spacing:-31.670133pt;}
.ws1c{word-spacing:-31.341733pt;}
.ws24{word-spacing:-29.832133pt;}
.ws23{word-spacing:-29.698800pt;}
.ws32{word-spacing:-28.958133pt;}
.wsc{word-spacing:-28.936133pt;}
.ws4f{word-spacing:-26.276267pt;}
.ws41{word-spacing:-26.246133pt;}
.ws25{word-spacing:-25.324133pt;}
.ws26{word-spacing:-25.284000pt;}
.ws36{word-spacing:-24.468267pt;}
.ws44{word-spacing:-24.438133pt;}
.ws1f{word-spacing:-24.120133pt;}
.ws43{word-spacing:-24.080000pt;}
.ws37{word-spacing:-22.916133pt;}
.ws29{word-spacing:-21.726133pt;}
.ws2d{word-spacing:-21.712133pt;}
.ws3a{word-spacing:-21.672000pt;}
.ws1a{word-spacing:-20.508133pt;}
.ws1d{word-spacing:-20.468000pt;}
.ws3c{word-spacing:-20.234800pt;}
.ws34{word-spacing:-19.304133pt;}
.ws22{word-spacing:-19.264000pt;}
.ws2b{word-spacing:-19.014133pt;}
.ws2a{word-spacing:-18.984000pt;}
.ws31{word-spacing:-17.206133pt;}
.ws49{word-spacing:-6.469067pt;}
.ws3f{word-spacing:-5.694933pt;}
.ws46{word-spacing:-5.616000pt;}
.ws13{word-spacing:-5.267733pt;}
.ws4{word-spacing:-4.799733pt;}
.ws6{word-spacing:-4.716800pt;}
.ws8{word-spacing:-2.976800pt;}
.ws4c{word-spacing:-2.699733pt;}
.wsa{word-spacing:-2.146000pt;}
.ws33{word-spacing:-1.810933pt;}
.ws12{word-spacing:-1.450133pt;}
.ws10{word-spacing:-0.810667pt;}
.ws2c{word-spacing:-0.668133pt;}
.ws28{word-spacing:-0.614800pt;}
.ws4e{word-spacing:-0.603733pt;}
.ws9{word-spacing:-0.486533pt;}
.ws7{word-spacing:-0.279867pt;}
.ws4b{word-spacing:-0.185200pt;}
.ws3e{word-spacing:-0.169333pt;}
.ws4a{word-spacing:-0.116800pt;}
.ws1{word-spacing:0.000000pt;}
.ws15{word-spacing:0.071733pt;}
.ws20{word-spacing:0.424800pt;}
.wsd{word-spacing:0.639867pt;}
.ws48{word-spacing:1.465067pt;}
.ws14{word-spacing:1.504267pt;}
.ws4d{word-spacing:1.558667pt;}
.ws16{word-spacing:1.664267pt;}
.ws45{word-spacing:1.786933pt;}
.ws5{word-spacing:1.877333pt;}
.ws3{word-spacing:2.067200pt;}
.wsf{word-spacing:6.126933pt;}
.ws30{word-spacing:84.003733pt;}
.ws1e{word-spacing:166.359600pt;}
.ws18{word-spacing:181.780133pt;}
._1e{margin-left:-25.571467pt;}
._22{margin-left:-14.813867pt;}
._d{margin-left:-12.786800pt;}
._18{margin-left:-11.847467pt;}
._1a{margin-left:-10.752533pt;}
._1f{margin-left:-9.610667pt;}
._20{margin-left:-8.329467pt;}
._16{margin-left:-7.319600pt;}
._5{margin-left:-6.420933pt;}
._c{margin-left:-5.455733pt;}
._2{margin-left:-3.962133pt;}
._1{margin-left:-2.473067pt;}
._0{margin-left:-1.205867pt;}
._4{width:1.033600pt;}
._3{width:2.584000pt;}
._8{width:3.893200pt;}
._6{width:5.111467pt;}
._f{width:7.018133pt;}
._1b{width:20.210400pt;}
._21{width:22.397333pt;}
._e{width:24.369733pt;}
._23{width:25.340800pt;}
._13{width:27.116000pt;}
._1c{width:28.437867pt;}
._a{width:30.723200pt;}
._b{width:32.334400pt;}
._12{width:33.274933pt;}
._7{width:34.510400pt;}
._9{width:35.824533pt;}
._14{width:37.008533pt;}
._11{width:39.829333pt;}
._15{width:156.333867pt;}
._10{width:361.315067pt;}
._19{width:363.995333pt;}
._17{width:962.809467pt;}
._1d{width:1483.699200pt;}
.fsf{font-size:64.000000pt;}
.fs3{font-size:64.133333pt;}
.fsd{font-size:68.000000pt;}
.fsc{font-size:68.133333pt;}
.fs19{font-size:72.000000pt;}
.fs15{font-size:72.133333pt;}
.fs1a{font-size:76.000000pt;}
.fs17{font-size:76.133333pt;}
.fs1e{font-size:80.000000pt;}
.fse{font-size:80.133333pt;}
.fs12{font-size:84.000000pt;}
.fs11{font-size:84.133333pt;}
.fs2{font-size:96.133333pt;}
.fsb{font-size:100.133333pt;}
.fs13{font-size:108.133333pt;}
.fs16{font-size:108.266667pt;}
.fsa{font-size:116.133333pt;}
.fs1d{font-size:116.266667pt;}
.fs1c{font-size:124.133333pt;}
.fs14{font-size:124.266667pt;}
.fs9{font-size:128.133333pt;}
.fs1{font-size:128.266667pt;}
.fs8{font-size:140.133333pt;}
.fs10{font-size:140.266667pt;}
.fs6{font-size:148.133333pt;}
.fs5{font-size:148.266667pt;}
.fs1b{font-size:160.133333pt;}
.fs1f{font-size:160.266667pt;}
.fs7{font-size:172.133333pt;}
.fs0{font-size:172.266667pt;}
.fs18{font-size:192.266667pt;}
.fs4{font-size:236.400000pt;}
.fs20{font-size:244.400000pt;}
.yde{bottom:-0.133387pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:6.600000pt;}
.y6f{bottom:7.900000pt;}
.y85{bottom:8.800000pt;}
.y6e{bottom:9.733333pt;}
.yb6{bottom:10.066667pt;}
.y41{bottom:10.233333pt;}
.y5{bottom:10.533333pt;}
.y2c{bottom:11.100000pt;}
.y11{bottom:12.566667pt;}
.y75{bottom:14.933333pt;}
.y95{bottom:22.066667pt;}
.y97{bottom:27.133333pt;}
.ydd{bottom:28.900000pt;}
.y23{bottom:29.000000pt;}
.y36{bottom:29.933333pt;}
.ya7{bottom:30.633333pt;}
.y13{bottom:32.400000pt;}
.ya3{bottom:34.133333pt;}
.y6d{bottom:35.800000pt;}
.yb5{bottom:39.100000pt;}
.y84{bottom:40.833333pt;}
.y9e{bottom:47.266667pt;}
.y94{bottom:48.133333pt;}
.y55{bottom:49.800000pt;}
.ycc{bottom:49.933333pt;}
.yce{bottom:51.466667pt;}
.y33{bottom:55.666667pt;}
.y90{bottom:56.066667pt;}
.ydc{bottom:57.933333pt;}
.yda{bottom:58.333333pt;}
.y6c{bottom:60.833333pt;}
.y1c{bottom:65.166667pt;}
.y4{bottom:66.600000pt;}
.ya2{bottom:70.200000pt;}
.y68{bottom:73.733333pt;}
.ycb{bottom:76.000000pt;}
.ycd{bottom:77.500000pt;}
.y9d{bottom:79.333333pt;}
.y93{bottom:86.166667pt;}
.yd9{bottom:86.366667pt;}
.ydb{bottom:86.966667pt;}
.y8f{bottom:88.100000pt;}
.ya0{bottom:93.533333pt;}
.yb4{bottom:94.366667pt;}
.y32{bottom:94.733333pt;}
.y1b{bottom:100.233333pt;}
.y4f{bottom:102.100000pt;}
.y3{bottom:105.600000pt;}
.y67{bottom:105.800000pt;}
.yb0{bottom:106.833333pt;}
.yd8{bottom:114.400000pt;}
.y29{bottom:115.033333pt;}
.yb3{bottom:116.400000pt;}
.y8e{bottom:120.133333pt;}
.y22{bottom:123.733333pt;}
.y82{bottom:127.700000pt;}
.ya1{bottom:131.266667pt;}
.y31{bottom:132.766667pt;}
.y4e{bottom:134.133333pt;}
.y1a{bottom:135.266667pt;}
.y66{bottom:137.826667pt;}
.y28{bottom:144.106667pt;}
.yaf{bottom:144.906667pt;}
.y8d{bottom:152.200000pt;}
.y21{bottom:153.800000pt;}
.y54{bottom:156.306667pt;}
.y7e{bottom:166.106667pt;}
.y4d{bottom:166.160000pt;}
.yc8{bottom:168.560000pt;}
.y81{bottom:168.773333pt;}
.y65{bottom:169.866667pt;}
.y19{bottom:170.333333pt;}
.yae{bottom:183.933333pt;}
.yd7{bottom:185.506667pt;}
.y53{bottom:188.333333pt;}
.y5e{bottom:191.840000pt;}
.y56{bottom:199.666667pt;}
.yc7{bottom:203.600000pt;}
.y18{bottom:209.373333pt;}
.y30{bottom:209.893333pt;}
.y80{bottom:210.840000pt;}
.yd6{bottom:213.533333pt;}
.y27{bottom:215.200000pt;}
.y8c{bottom:216.266667pt;}
.y4c{bottom:217.400000pt;}
.y52{bottom:220.400000pt;}
.yad{bottom:222.000000pt;}
.yc6{bottom:239.666667pt;}
.y74{bottom:243.973333pt;}
.y20{bottom:244.893333pt;}
.y8b{bottom:246.306667pt;}
.y4b{bottom:249.426667pt;}
.y7f{bottom:252.906667pt;}
.yac{bottom:261.026667pt;}
.y9c{bottom:269.773333pt;}
.yc{bottom:271.893333pt;}
.y2a{bottom:273.933333pt;}
.yc5{bottom:274.693333pt;}
.ydf{bottom:275.133333pt;}
.y1f{bottom:275.973333pt;}
.y9{bottom:277.933333pt;}
.y4a{bottom:281.466667pt;}
.yd5{bottom:283.640000pt;}
.y8a{bottom:284.373333pt;}
.y51{bottom:284.466667pt;}
.y2e{bottom:292.306667pt;}
.yab{bottom:299.093333pt;}
.y73{bottom:299.373333pt;}
.y9b{bottom:301.840000pt;}
.ybf{bottom:308.293333pt;}
.y26{bottom:309.306667pt;}
.yc4{bottom:309.773333pt;}
.yd4{bottom:311.666667pt;}
.y50{bottom:316.533333pt;}
.y17{bottom:321.600000pt;}
.y49{bottom:333.840000pt;}
.y40{bottom:339.133333pt;}
.y25{bottom:340.360000pt;}
.yd3{bottom:340.693333pt;}
.yc3{bottom:344.800000pt;}
.y1e{bottom:346.066667pt;}
.yd1{bottom:357.066667pt;}
.y64{bottom:359.360000pt;}
.y87{bottom:361.200000pt;}
.y3f{bottom:365.173333pt;}
.y48{bottom:365.866667pt;}
.y79{bottom:372.360000pt;}
.y9a{bottom:376.600000pt;}
.yb{bottom:379.066667pt;}
.y1d{bottom:381.066667pt;}
.y5d{bottom:383.000000pt;}
.y8{bottom:385.066667pt;}
.y3e{bottom:390.200000pt;}
.y86{bottom:393.226667pt;}
.y2f{bottom:393.266667pt;}
.y63{bottom:397.400000pt;}
.ybe{bottom:404.440000pt;}
.yd2{bottom:406.800000pt;}
.y99{bottom:408.640000pt;}
.y24{bottom:410.466667pt;}
.y78{bottom:414.440000pt;}
.yc2{bottom:415.893333pt;}
.y3d{bottom:417.226667pt;}
.yf{bottom:424.400000pt;}
.y71{bottom:426.293333pt;}
.y5c{bottom:428.893333pt;}
.y47{bottom:432.266667pt;}
.y62{bottom:436.466667pt;}
.y7d{bottom:439.026667pt;}
.y98{bottom:440.666667pt;}
.ya6{bottom:451.866667pt;}
.yba{bottom:460.466667pt;}
.ybd{bottom:468.533333pt;}
.y72{bottom:470.973333pt;}
.y46{bottom:471.333333pt;}
.y61{bottom:474.533333pt;}
.y7c{bottom:480.066667pt;}
.yc1{bottom:482.266667pt;}
.y2{bottom:483.640000pt;}
.ya5{bottom:486.893333pt;}
.y58{bottom:487.466667pt;}
.ya{bottom:488.200000pt;}
.y35{bottom:489.026667pt;}
.y3c{bottom:492.893333pt;}
.y9f{bottom:493.173333pt;}
.y7{bottom:493.226667pt;}
.y57{bottom:493.866667pt;}
.ycf{bottom:501.440000pt;}
.yb9{bottom:502.533333pt;}
.y15{bottom:502.666667pt;}
.ybc{bottom:507.560000pt;}
.y45{bottom:509.360000pt;}
.yd0{bottom:510.773333pt;}
.y60{bottom:513.560000pt;}
.y3b{bottom:518.933333pt;}
.y7b{bottom:522.133333pt;}
.y88{bottom:522.600000pt;}
.ya4{bottom:522.960000pt;}
.y1{bottom:535.693333pt;}
.y10{bottom:536.133333pt;}
.y59{bottom:538.106667pt;}
.y96{bottom:539.173333pt;}
.y3a{bottom:543.973333pt;}
.yb8{bottom:544.560000pt;}
.ybb{bottom:546.266667pt;}
.yc0{bottom:548.266667pt;}
.y16{bottom:548.733333pt;}
.yb2{bottom:551.200000pt;}
.y5f{bottom:551.640000pt;}
.y12{bottom:556.266667pt;}
.y7a{bottom:564.200000pt;}
.yca{bottom:566.226667pt;}
.y70{bottom:568.200000pt;}
.y39{bottom:571.026667pt;}
.y5b{bottom:575.666667pt;}
.y5a{bottom:582.066667pt;}
.ya9{bottom:583.360000pt;}
.y44{bottom:586.506667pt;}
.yb7{bottom:587.640000pt;}
.y34{bottom:591.866667pt;}
.yb1{bottom:593.266667pt;}
.y6{bottom:595.600000pt;}
.y2b{bottom:595.933333pt;}
.yc9{bottom:604.266667pt;}
.y69{bottom:604.400000pt;}
.y14{bottom:605.893333pt;}
.yd{bottom:607.893333pt;}
.y92{bottom:609.440000pt;}
.y76{bottom:618.693333pt;}
.y43{bottom:625.533333pt;}
.y83{bottom:626.106667pt;}
.y38{bottom:627.026667pt;}
.y6b{bottom:627.333333pt;}
.y91{bottom:632.466667pt;}
.yaa{bottom:661.773333pt;}
.y77{bottom:662.533333pt;}
.y2d{bottom:663.533333pt;}
.y42{bottom:663.600000pt;}
.ye{bottom:664.226667pt;}
.y89{bottom:669.533333pt;}
.y6a{bottom:670.560000pt;}
.y37{bottom:674.560000pt;}
.h4{height:47.317122pt;}
.h45{height:48.718750pt;}
.h2c{height:48.820247pt;}
.h33{height:57.955013pt;}
.h43{height:60.898438pt;}
.h3c{height:63.656250pt;}
.h1a{height:63.943359pt;}
.h19{height:64.044857pt;}
.h49{height:67.511719pt;}
.h48{height:67.618880pt;}
.h2d{height:69.763477pt;}
.h3{height:70.269336pt;}
.he{height:73.179622pt;}
.hb{height:73.179639pt;}
.h3a{height:73.253906pt;}
.h38{height:73.382422pt;}
.h29{height:77.954883pt;}
.h1c{height:79.040820pt;}
.h16{height:81.018620pt;}
.h37{height:81.093359pt;}
.h1e{height:82.314388pt;}
.h27{height:82.415885pt;}
.h15{height:84.389714pt;}
.h20{height:86.009766pt;}
.h21{height:86.146289pt;}
.h3d{height:86.907943pt;}
.h35{height:86.910091pt;}
.h3e{height:87.015104pt;}
.h11{height:88.404232pt;}
.h47{height:88.505729pt;}
.h24{height:91.131901pt;}
.h25{height:91.244271pt;}
.h46{height:92.659766pt;}
.h1d{height:93.442708pt;}
.h41{height:94.494076pt;}
.hd{height:95.616992pt;}
.h2{height:96.450521pt;}
.h1b{height:97.538997pt;}
.h14{height:97.640495pt;}
.h12{height:97.874089pt;}
.h1f{height:98.433398pt;}
.h36{height:104.354687pt;}
.h2a{height:105.473958pt;}
.hc{height:106.673763pt;}
.h17{height:106.775260pt;}
.h28{height:107.552539pt;}
.hf{height:107.987370pt;}
.h10{height:110.443659pt;}
.h31{height:110.720508pt;}
.h32{height:110.857031pt;}
.h26{height:112.150326pt;}
.h9{height:112.763542pt;}
.h4b{height:115.509570pt;}
.h4c{height:115.642188pt;}
.h3f{height:118.911914pt;}
.h42{height:119.048438pt;}
.h40{height:119.648047pt;}
.h34{height:123.503516pt;}
.h39{height:123.632031pt;}
.h18{height:129.436198pt;}
.h1{height:129.536458pt;}
.ha{height:131.134635pt;}
.h22{height:131.199023pt;}
.h23{height:131.335547pt;}
.h8{height:138.345443pt;}
.h13{height:138.452604pt;}
.h44{height:142.780859pt;}
.h2f{height:143.486133pt;}
.h30{height:143.622656pt;}
.h2e{height:146.359245pt;}
.h7{height:147.337695pt;}
.h6{height:147.470313pt;}
.h3b{height:154.347266pt;}
.h2b{height:163.114388pt;}
.h4a{height:164.101172pt;}
.h4d{height:183.777344pt;}
.h5{height:242.056055pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x19{left:5.499986pt;}
.x8e{left:7.766652pt;}
.x77{left:9.999986pt;}
.x4c{left:11.166652pt;}
.x4d{left:12.099986pt;}
.x81{left:15.966652pt;}
.x4b{left:19.366652pt;}
.x13{left:23.399986pt;}
.xd{left:25.266652pt;}
.xf{left:26.266652pt;}
.xa{left:27.166652pt;}
.xc{left:30.999986pt;}
.x16{left:32.066652pt;}
.x7{left:33.766652pt;}
.x59{left:36.899986pt;}
.x4e{left:37.933319pt;}
.x1c{left:40.666652pt;}
.x89{left:45.633319pt;}
.x1{left:46.966652pt;}
.x21{left:50.599986pt;}
.x20{left:52.633319pt;}
.x67{left:54.733319pt;}
.x1f{left:56.566652pt;}
.x72{left:59.999986pt;}
.x12{left:62.866652pt;}
.x5{left:69.033319pt;}
.x8f{left:70.866652pt;}
.x6{left:75.666652pt;}
.x14{left:79.566652pt;}
.x58{left:80.899986pt;}
.x6d{left:84.266652pt;}
.x11{left:85.966652pt;}
.x90{left:90.399986pt;}
.x8a{left:94.399986pt;}
.x4f{left:97.499986pt;}
.x6c{left:104.466652pt;}
.x66{left:105.399986pt;}
.x57{left:111.299986pt;}
.x60{left:114.199986pt;}
.x6b{left:127.499986pt;}
.x17{left:128.899986pt;}
.x15{left:130.033319pt;}
.x23{left:137.906652pt;}
.x8b{left:147.573319pt;}
.x1e{left:156.159986pt;}
.x7d{left:157.066652pt;}
.x1b{left:161.959986pt;}
.x88{left:162.973319pt;}
.x6a{left:171.733319pt;}
.x18{left:176.773319pt;}
.x78{left:180.693319pt;}
.x68{left:216.026652pt;}
.x61{left:219.066652pt;}
.x1a{left:225.533319pt;}
.x62{left:244.439986pt;}
.x3{left:249.639986pt;}
.x52{left:253.626652pt;}
.x63{left:255.906652pt;}
.x8{left:268.533319pt;}
.x93{left:278.999986pt;}
.x69{left:287.839986pt;}
.x92{left:291.439986pt;}
.x82{left:293.466652pt;}
.x7e{left:294.466652pt;}
.x4{left:302.133319pt;}
.x2{left:317.706652pt;}
.x65{left:318.839986pt;}
.x91{left:325.893319pt;}
.x64{left:332.639986pt;}
.x27{left:359.333319pt;}
.x22{left:360.999986pt;}
.x73{left:364.973319pt;}
.x26{left:367.173319pt;}
.x24{left:390.199986pt;}
.x8c{left:429.706652pt;}
.x25{left:431.533319pt;}
.x71{left:452.173319pt;}
.x42{left:479.439986pt;}
.x3d{left:484.599986pt;}
.x3f{left:490.693319pt;}
.x41{left:492.933319pt;}
.x40{left:497.773319pt;}
.x50{left:523.359986pt;}
.x80{left:531.306652pt;}
.x51{left:541.239986pt;}
.xe{left:544.333319pt;}
.x2c{left:561.106652pt;}
.x2d{left:566.093319pt;}
.x87{left:579.359986pt;}
.x83{left:584.026652pt;}
.x7f{left:592.599986pt;}
.x8d{left:603.626652pt;}
.x36{left:604.733319pt;}
.x33{left:606.066652pt;}
.x76{left:608.199986pt;}
.x34{left:609.426652pt;}
.x7a{left:610.959986pt;}
.x3c{left:612.906652pt;}
.x74{left:618.266652pt;}
.x39{left:620.226652pt;}
.x2f{left:633.106652pt;}
.x79{left:634.866652pt;}
.x31{left:637.759986pt;}
.x3a{left:640.359986pt;}
.x30{left:645.599986pt;}
.x53{left:649.533319pt;}
.x2e{left:662.133319pt;}
.x37{left:664.559986pt;}
.x7c{left:666.399986pt;}
.x38{left:674.893319pt;}
.x3b{left:680.133319pt;}
.x32{left:687.439986pt;}
.x10{left:690.133319pt;}
.x35{left:691.866652pt;}
.x5e{left:694.226652pt;}
.x7b{left:697.399986pt;}
.x2a{left:703.293319pt;}
.x6f{left:704.506652pt;}
.x56{left:706.173319pt;}
.x75{left:710.399986pt;}
.x47{left:714.226652pt;}
.x44{left:717.399986pt;}
.x29{left:720.173319pt;}
.x45{left:724.439986pt;}
.x3e{left:728.199986pt;}
.x46{left:730.773319pt;}
.x49{left:735.733319pt;}
.x28{left:737.106652pt;}
.x48{left:748.959986pt;}
.x5f{left:751.039986pt;}
.x70{left:753.533319pt;}
.x43{left:765.133319pt;}
.xb{left:766.106652pt;}
.x85{left:771.773319pt;}
.x5d{left:774.306652pt;}
.x54{left:776.626652pt;}
.x1d{left:779.359986pt;}
.x4a{left:783.373319pt;}
.x84{left:786.466652pt;}
.x2b{left:793.333319pt;}
.x5a{left:803.133319pt;}
.x55{left:805.773319pt;}
.x86{left:808.733319pt;}
.x5c{left:815.533319pt;}
.x5b{left:837.839986pt;}
.x9{left:879.399986pt;}
.x6e{left:886.866652pt;}
}




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