
    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_dfce77322d78129f0cf7f2de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106000;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_65a11a7e156a420e8f597b20.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.183000;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_b631f98bc7d8fbcddb5aee43.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.197000;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_f5bb899fc654d17ca64045a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138000;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_2dea1094453e6eaf7aecf8ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961914;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_44303c1d8ee98581d7e8bfd7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1b02fa0c85f04d3eb88a0485.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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_7ee192dccf4430ec14e23753.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_603d5c34130bd3f11ff7c07f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.138000;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_cba20c08230e047860b5b8fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.197000;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_f75560b7d30dafbb67daf3fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.138000;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_479b73312cd6aa08e8f4d9f5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.197000;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:22.032600px;}
.ls3d{letter-spacing:-6.750000px;}
.ls53{letter-spacing:-6.402000px;}
.ls19{letter-spacing:-5.562000px;}
.ls4f{letter-spacing:-4.914000px;}
.ls57{letter-spacing:-4.590000px;}
.ls5e{letter-spacing:-2.784000px;}
.ls3f{letter-spacing:-2.376000px;}
.ls56{letter-spacing:-2.112000px;}
.ls50{letter-spacing:-2.106000px;}
.ls12{letter-spacing:-1.980000px;}
.ls3c{letter-spacing:-1.620000px;}
.ls11{letter-spacing:-1.518000px;}
.ls8{letter-spacing:-1.176000px;}
.lsa{letter-spacing:-1.122000px;}
.ls2c{letter-spacing:-1.104000px;}
.ls26{letter-spacing:-1.080000px;}
.ls5b{letter-spacing:-1.056000px;}
.ls41{letter-spacing:-0.972000px;}
.ls3a{letter-spacing:-0.864000px;}
.ls5c{letter-spacing:-0.858000px;}
.ls2b{letter-spacing:-0.816000px;}
.ls42{letter-spacing:-0.810000px;}
.ls51{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.726000px;}
.ls24{letter-spacing:-0.702000px;}
.ls2e{letter-spacing:-0.672000px;}
.ls16{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.624000px;}
.ls5d{letter-spacing:-0.620334px;}
.lsb{letter-spacing:-0.594000px;}
.ls29{letter-spacing:-0.540000px;}
.ls40{letter-spacing:-0.486000px;}
.ls52{letter-spacing:-0.462000px;}
.ls4e{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.330000px;}
.ls3e{letter-spacing:-0.324000px;}
.lsc{letter-spacing:-0.270000px;}
.ls1e{letter-spacing:-0.264000px;}
.ls3b{letter-spacing:-0.216000px;}
.ls43{letter-spacing:-0.162000px;}
.ls20{letter-spacing:-0.143154px;}
.ls18{letter-spacing:-0.132000px;}
.ls25{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000102px;}
.ls15{letter-spacing:0.000174px;}
.ls2a{letter-spacing:0.000258px;}
.ls37{letter-spacing:0.000306px;}
.ls46{letter-spacing:0.000324px;}
.ls48{letter-spacing:0.013800px;}
.ls4{letter-spacing:0.030857px;}
.ls1c{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.069428px;}
.ls27{letter-spacing:0.108000px;}
.ls58{letter-spacing:0.190872px;}
.ls23{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.238590px;}
.lse{letter-spacing:0.270000px;}
.ls13{letter-spacing:0.324000px;}
.ls10{letter-spacing:0.330000px;}
.ls5a{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.381744px;}
.ls59{letter-spacing:0.486000px;}
.ls55{letter-spacing:0.594000px;}
.ls28{letter-spacing:0.648000px;}
.ls2d{letter-spacing:0.678858px;}
.ls1d{letter-spacing:0.723600px;}
.ls44{letter-spacing:0.756000px;}
.ls54{letter-spacing:0.924000px;}
.lsd{letter-spacing:0.972000px;}
.ls14{letter-spacing:1.026000px;}
.ls7{letter-spacing:1.176000px;}
.ls0{letter-spacing:4.818000px;}
.ls1{letter-spacing:4.950000px;}
.ls2{letter-spacing:76.032600px;}
.ls31{letter-spacing:119.652858px;}
.ls30{letter-spacing:119.869506px;}
.ls4a{letter-spacing:123.933906px;}
.ls4c{letter-spacing:126.606306px;}
.ls2f{letter-spacing:126.693906px;}
.ls36{letter-spacing:138.498858px;}
.ls4d{letter-spacing:157.988106px;}
.ls33{letter-spacing:163.744506px;}
.ls45{letter-spacing:165.147906px;}
.ls39{letter-spacing:166.497906px;}
.ls47{letter-spacing:168.118458px;}
.ls38{letter-spacing:168.684258px;}
.ls4b{letter-spacing:187.983906px;}
.ls3{letter-spacing:188.105107px;}
.ls32{letter-spacing:204.156306px;}
.ls49{letter-spacing:209.933706px;}
.ls35{letter-spacing:222.393858px;}
.ls34{letter-spacing:224.028306px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-19.355069px;}
.ws0{word-spacing:-19.236000px;}
.ws1{word-spacing:-16.884000px;}
.ws29{word-spacing:-15.444000px;}
.ws2c{word-spacing:-15.114000px;}
.ws52{word-spacing:-14.784000px;}
.ws2a{word-spacing:-14.190000px;}
.ws2{word-spacing:-13.992000px;}
.wsab{word-spacing:-13.926000px;}
.wsef{word-spacing:-13.728000px;}
.ws2b{word-spacing:-13.596000px;}
.ws10e{word-spacing:-13.464000px;}
.ws2d{word-spacing:-13.392000px;}
.ws53{word-spacing:-13.134000px;}
.ws7a{word-spacing:-13.014000px;}
.ws104{word-spacing:-12.852000px;}
.ws54{word-spacing:-12.636000px;}
.ws7b{word-spacing:-12.258000px;}
.wse4{word-spacing:-12.096000px;}
.ws105{word-spacing:-11.988000px;}
.wse3{word-spacing:-11.718000px;}
.ws10f{word-spacing:-11.664000px;}
.ws9e{word-spacing:-11.610000px;}
.wsda{word-spacing:-11.448000px;}
.wsd9{word-spacing:-11.394000px;}
.ws4{word-spacing:-11.340000px;}
.wsdf{word-spacing:-11.286000px;}
.wsde{word-spacing:-11.178000px;}
.wsd2{word-spacing:-11.124000px;}
.wse2{word-spacing:-11.016000px;}
.wsd5{word-spacing:-10.962000px;}
.wsac{word-spacing:-10.908000px;}
.wsd6{word-spacing:-10.800000px;}
.wsd8{word-spacing:-10.746000px;}
.wsd3{word-spacing:-10.638000px;}
.ws79{word-spacing:-10.530000px;}
.ws77{word-spacing:-10.497960px;}
.ws103{word-spacing:-10.450242px;}
.ws3{word-spacing:-10.259370px;}
.ws78{word-spacing:-10.116216px;}
.wsca{word-spacing:-9.990000px;}
.ws74{word-spacing:-9.696000px;}
.wsaa{word-spacing:-9.648000px;}
.ws10d{word-spacing:-9.639036px;}
.ws9d{word-spacing:-9.504000px;}
.wsc9{word-spacing:-9.456000px;}
.wsd0{word-spacing:-9.234000px;}
.wsa9{word-spacing:-9.216000px;}
.ws9f{word-spacing:-8.394030px;}
.wsfd{word-spacing:-8.208000px;}
.wscf{word-spacing:-8.120736px;}
.wsee{word-spacing:-7.788000px;}
.ws119{word-spacing:-7.536000px;}
.wse0{word-spacing:-6.696000px;}
.wsf5{word-spacing:-4.554000px;}
.wsf4{word-spacing:-3.366000px;}
.wsc1{word-spacing:-3.102000px;}
.ws110{word-spacing:-3.036000px;}
.wsc0{word-spacing:-2.970000px;}
.ws84{word-spacing:-2.772000px;}
.ws8b{word-spacing:-2.706000px;}
.ws5c{word-spacing:-2.640000px;}
.wsf{word-spacing:-2.574000px;}
.wsec{word-spacing:-2.508000px;}
.ws113{word-spacing:-2.442000px;}
.wsad{word-spacing:-2.376000px;}
.ws5b{word-spacing:-2.310000px;}
.ws58{word-spacing:-2.244000px;}
.ws55{word-spacing:-2.178000px;}
.ws95{word-spacing:-2.160000px;}
.wsb1{word-spacing:-2.112000px;}
.ws6d{word-spacing:-2.106000px;}
.ws59{word-spacing:-2.046000px;}
.ws96{word-spacing:-1.944000px;}
.wsf9{word-spacing:-1.914000px;}
.ws13{word-spacing:-1.848000px;}
.ws24{word-spacing:-1.836000px;}
.wsb5{word-spacing:-1.782000px;}
.ws9b{word-spacing:-1.728000px;}
.wsc4{word-spacing:-1.716000px;}
.ws8a{word-spacing:-1.650000px;}
.ws14{word-spacing:-1.584000px;}
.wsa3{word-spacing:-1.518000px;}
.ws73{word-spacing:-1.458000px;}
.wsc2{word-spacing:-1.452000px;}
.ws4e{word-spacing:-1.404000px;}
.wsb2{word-spacing:-1.386000px;}
.ws72{word-spacing:-1.350000px;}
.ws42{word-spacing:-1.320000px;}
.ws4f{word-spacing:-1.296000px;}
.ws46{word-spacing:-1.254000px;}
.ws37{word-spacing:-1.188000px;}
.ws51{word-spacing:-1.134000px;}
.wsd{word-spacing:-1.122000px;}
.ws50{word-spacing:-1.080000px;}
.wsb7{word-spacing:-1.056000px;}
.ws1d{word-spacing:-1.026000px;}
.wsbf{word-spacing:-0.990000px;}
.ws1c{word-spacing:-0.972000px;}
.ws3c{word-spacing:-0.924000px;}
.ws47{word-spacing:-0.918000px;}
.ws18{word-spacing:-0.858000px;}
.ws66{word-spacing:-0.810000px;}
.ws89{word-spacing:-0.792000px;}
.ws65{word-spacing:-0.756000px;}
.wsa2{word-spacing:-0.726000px;}
.wsa1{word-spacing:-0.660000px;}
.wsb6{word-spacing:-0.594000px;}
.ws91{word-spacing:-0.540000px;}
.ws107{word-spacing:-0.528000px;}
.ws10c{word-spacing:-0.486000px;}
.ws85{word-spacing:-0.462000px;}
.wse{word-spacing:-0.396000px;}
.ws88{word-spacing:-0.381744px;}
.ws44{word-spacing:-0.330000px;}
.ws26{word-spacing:-0.270000px;}
.wsa8{word-spacing:-0.264000px;}
.ws99{word-spacing:-0.216000px;}
.wsb0{word-spacing:-0.198000px;}
.ws27{word-spacing:-0.169714px;}
.wse7{word-spacing:-0.162000px;}
.ws32{word-spacing:-0.132000px;}
.ws28{word-spacing:-0.115714px;}
.ws98{word-spacing:-0.108000px;}
.ws108{word-spacing:-0.066000px;}
.ws75{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws6c{word-spacing:0.054000px;}
.wsa5{word-spacing:0.066000px;}
.ws94{word-spacing:0.108000px;}
.ws17{word-spacing:0.132000px;}
.ws9c{word-spacing:0.162000px;}
.ws64{word-spacing:0.198000px;}
.wsdc{word-spacing:0.216000px;}
.ws117{word-spacing:0.264000px;}
.ws76{word-spacing:0.270000px;}
.ws4d{word-spacing:0.324000px;}
.ws111{word-spacing:0.330000px;}
.wsc{word-spacing:0.396000px;}
.wsfb{word-spacing:0.432000px;}
.ws43{word-spacing:0.462000px;}
.wse6{word-spacing:0.486000px;}
.ws3f{word-spacing:0.528000px;}
.ws9a{word-spacing:0.540000px;}
.wsfc{word-spacing:0.594000px;}
.ws70{word-spacing:0.648000px;}
.ws11a{word-spacing:0.660000px;}
.ws71{word-spacing:0.702000px;}
.ws36{word-spacing:0.726000px;}
.ws4a{word-spacing:0.756000px;}
.wseb{word-spacing:0.792000px;}
.ws5d{word-spacing:0.858000px;}
.ws97{word-spacing:0.918000px;}
.ws3d{word-spacing:0.924000px;}
.ws38{word-spacing:0.990000px;}
.ws45{word-spacing:1.056000px;}
.ws48{word-spacing:1.080000px;}
.wsb{word-spacing:1.122000px;}
.ws49{word-spacing:1.134000px;}
.ws40{word-spacing:1.188000px;}
.ws5e{word-spacing:1.254000px;}
.ws106{word-spacing:1.320000px;}
.ws116{word-spacing:1.386000px;}
.wsa{word-spacing:1.452000px;}
.ws4c{word-spacing:1.512000px;}
.ws114{word-spacing:1.518000px;}
.ws25{word-spacing:1.566000px;}
.wsaf{word-spacing:1.584000px;}
.wsdd{word-spacing:1.620000px;}
.wsbe{word-spacing:1.650000px;}
.ws6b{word-spacing:1.674000px;}
.ws2f{word-spacing:1.716000px;}
.wsed{word-spacing:1.782000px;}
.wsb8{word-spacing:1.836000px;}
.ws31{word-spacing:1.848000px;}
.ws23{word-spacing:1.890000px;}
.ws39{word-spacing:1.914000px;}
.wsb9{word-spacing:1.944000px;}
.ws30{word-spacing:1.980000px;}
.wsf7{word-spacing:2.112000px;}
.ws56{word-spacing:2.310000px;}
.wsbc{word-spacing:2.376000px;}
.ws57{word-spacing:2.442000px;}
.wsf0{word-spacing:2.508000px;}
.wsf2{word-spacing:2.574000px;}
.ws82{word-spacing:2.640000px;}
.ws3e{word-spacing:2.706000px;}
.wsea{word-spacing:2.838000px;}
.ws41{word-spacing:2.904000px;}
.ws15{word-spacing:2.970000px;}
.ws3a{word-spacing:3.036000px;}
.ws86{word-spacing:3.102000px;}
.ws11{word-spacing:3.168000px;}
.ws6f{word-spacing:3.186000px;}
.ws33{word-spacing:3.234000px;}
.ws93{word-spacing:3.294000px;}
.wse9{word-spacing:3.300000px;}
.ws115{word-spacing:3.366000px;}
.ws6e{word-spacing:3.402000px;}
.wsc3{word-spacing:3.432000px;}
.ws4b{word-spacing:3.456000px;}
.ws10{word-spacing:3.498000px;}
.ws92{word-spacing:3.510000px;}
.wsa7{word-spacing:3.564000px;}
.ws83{word-spacing:3.630000px;}
.ws1e{word-spacing:3.672000px;}
.ws2e{word-spacing:3.696000px;}
.ws63{word-spacing:3.762000px;}
.ws21{word-spacing:3.780000px;}
.wsa4{word-spacing:3.828000px;}
.ws34{word-spacing:3.894000px;}
.ws1f{word-spacing:3.996000px;}
.wsc5{word-spacing:4.026000px;}
.ws7f{word-spacing:4.092000px;}
.ws1b{word-spacing:4.158000px;}
.wsc7{word-spacing:4.224000px;}
.wsa6{word-spacing:4.290000px;}
.ws16{word-spacing:4.356000px;}
.ws68{word-spacing:4.374000px;}
.wsfe{word-spacing:4.422000px;}
.ws1a{word-spacing:4.428000px;}
.ws118{word-spacing:4.488000px;}
.wse8{word-spacing:4.554000px;}
.ws102{word-spacing:4.590000px;}
.wsa0{word-spacing:4.686000px;}
.wsf1{word-spacing:4.752000px;}
.ws67{word-spacing:4.806000px;}
.wsc6{word-spacing:4.818000px;}
.wse5{word-spacing:4.914000px;}
.ws22{word-spacing:4.968000px;}
.ws7{word-spacing:5.016000px;}
.ws112{word-spacing:5.082000px;}
.wsbd{word-spacing:5.214000px;}
.ws100{word-spacing:5.238000px;}
.ws10a{word-spacing:5.346000px;}
.wsc8{word-spacing:5.412000px;}
.wsfa{word-spacing:5.478000px;}
.wsf3{word-spacing:5.544000px;}
.ws20{word-spacing:5.562000px;}
.ws8{word-spacing:5.610000px;}
.ws8c{word-spacing:5.616000px;}
.ws80{word-spacing:5.742000px;}
.ws7c{word-spacing:5.808000px;}
.ws87{word-spacing:5.940000px;}
.ws8d{word-spacing:5.994000px;}
.wsf8{word-spacing:6.006000px;}
.ws69{word-spacing:6.048000px;}
.ws81{word-spacing:6.072000px;}
.ws7e{word-spacing:6.204000px;}
.ws5f{word-spacing:6.402000px;}
.ws6a{word-spacing:6.426000px;}
.ws3b{word-spacing:6.534000px;}
.wsba{word-spacing:6.588000px;}
.ws35{word-spacing:6.600000px;}
.ws62{word-spacing:6.666000px;}
.wsb3{word-spacing:6.732000px;}
.ws101{word-spacing:6.858000px;}
.wsbb{word-spacing:7.020000px;}
.ws5a{word-spacing:7.062000px;}
.wsff{word-spacing:7.128000px;}
.ws109{word-spacing:7.194000px;}
.ws19{word-spacing:7.260000px;}
.ws12{word-spacing:7.392000px;}
.wsb4{word-spacing:7.458000px;}
.ws10b{word-spacing:7.656000px;}
.ws61{word-spacing:7.854000px;}
.wsae{word-spacing:7.986000px;}
.wsf6{word-spacing:8.052000px;}
.ws9{word-spacing:8.316000px;}
.ws60{word-spacing:9.702000px;}
.ws8e{word-spacing:13.284000px;}
.ws90{word-spacing:13.932000px;}
.ws8f{word-spacing:14.148000px;}
.ws7d{word-spacing:21.384000px;}
.wsce{word-spacing:36.450000px;}
.wsd4{word-spacing:48.361800px;}
.wsd1{word-spacing:48.384000px;}
.wscd{word-spacing:71.226000px;}
.wse1{word-spacing:71.550000px;}
.wsd7{word-spacing:84.456000px;}
.wsdb{word-spacing:88.830000px;}
.wscb{word-spacing:90.504000px;}
.wscc{word-spacing:697.626000px;}
._8{margin-left:-494.244000px;}
._a{margin-left:-300.240000px;}
._b{margin-left:-9.816600px;}
._17{margin-left:-8.716800px;}
._12{margin-left:-7.510200px;}
._4{margin-left:-6.469800px;}
._2{margin-left:-5.085600px;}
._3{margin-left:-3.112800px;}
._0{margin-left:-1.404000px;}
._1{width:1.560000px;}
._5{width:2.719200px;}
._e{width:4.618800px;}
._11{width:5.988600px;}
._10{width:7.090200px;}
._f{width:8.125200px;}
._2a{width:40.662000px;}
._2b{width:45.306000px;}
._13{width:47.520000px;}
._18{width:49.734000px;}
._15{width:52.164000px;}
._16{width:54.108000px;}
._1a{width:57.204000px;}
._14{width:59.022000px;}
._c{width:63.234000px;}
._d{width:65.934000px;}
._6{width:68.364000px;}
._7{width:70.254000px;}
._26{width:87.779106px;}
._1c{width:121.702800px;}
._19{width:145.422000px;}
._28{width:153.635106px;}
._1f{width:166.275600px;}
._27{width:171.606600px;}
._20{width:280.535658px;}
._1d{width:319.402800px;}
._25{width:322.980000px;}
._24{width:341.178000px;}
._1e{width:435.420600px;}
._29{width:452.107506px;}
._22{width:481.803600px;}
._1b{width:494.184000px;}
._21{width:500.757600px;}
._23{width:527.411106px;}
._9{width:2149.157400px;}
.fc2{color:rgb(5,6,6);}
.fc1{color:transparent;}
.fc6{color:rgb(19,19,19);}
.fc5{color:rgb(20,20,20);}
.fc4{color:rgb(101,101,101);}
.fc3{color:rgb(234,234,234);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fsc{font-size:39.042000px;}
.fs7{font-size:45.599825px;}
.fs4{font-size:47.718000px;}
.fsb{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:62.742617px;}
.fs3{font-size:66.000000px;}
.fs9{font-size:68.571166px;}
.fsa{font-size:77.142561px;}
.fs0{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:91.542506px;}
.y29{bottom:-128.650743px;}
.y61{bottom:-27.512246px;}
.y27{bottom:-22.500000px;}
.y60{bottom:-5.314474px;}
.y0{bottom:0.000000px;}
.y5f{bottom:16.887584px;}
.y62{bottom:38.131800px;}
.y5e{bottom:39.085356px;}
.y5d{bottom:61.799555px;}
.y5c{bottom:87.685170px;}
.y102{bottom:100.121550px;}
.y5b{bottom:108.599375px;}
.y17b{bottom:110.557500px;}
.ya9{bottom:112.713600px;}
.y1aa{bottom:119.055150px;}
.y17e{bottom:119.058150px;}
.y18f{bottom:119.061450px;}
.y164{bottom:119.064150px;}
.yea{bottom:119.064450px;}
.y8d{bottom:119.085600px;}
.y26{bottom:119.088600px;}
.ycd{bottom:119.094900px;}
.y101{bottom:121.126050px;}
.y17a{bottom:127.054500px;}
.yaa{bottom:127.345500px;}
.ya8{bottom:129.210600px;}
.y5a{bottom:129.943693px;}
.y17d{bottom:135.555150px;}
.y18e{bottom:135.558450px;}
.y163{bottom:135.561150px;}
.ye9{bottom:135.561450px;}
.y8c{bottom:135.582600px;}
.y25{bottom:135.585600px;}
.ycc{bottom:135.591900px;}
.y100{bottom:142.130550px;}
.y179{bottom:143.551500px;}
.ya7{bottom:145.707600px;}
.y18d{bottom:152.055450px;}
.y162{bottom:152.058150px;}
.ye8{bottom:152.058450px;}
.y8b{bottom:152.079600px;}
.y24{bottom:152.082600px;}
.ycb{bottom:152.088900px;}
.y59{bottom:156.170621px;}
.ya6{bottom:162.204600px;}
.y1a9{bottom:163.078650px;}
.yff{bottom:163.135050px;}
.y161{bottom:168.555150px;}
.ye7{bottom:168.558450px;}
.y8a{bottom:168.576600px;}
.y23{bottom:168.579600px;}
.yca{bottom:168.585900px;}
.ya5{bottom:178.701600px;}
.y58{bottom:180.376586px;}
.y132{bottom:183.315900px;}
.y1a8{bottom:184.083150px;}
.yfe{bottom:184.139550px;}
.y178{bottom:184.168650px;}
.ye6{bottom:185.055450px;}
.y89{bottom:185.073600px;}
.y22{bottom:185.076600px;}
.yc9{bottom:185.082900px;}
.y57{bottom:193.486535px;}
.ya4{bottom:195.198600px;}
.y131{bottom:199.514250px;}
.y133{bottom:199.515900px;}
.y88{bottom:201.570600px;}
.y21{bottom:201.573600px;}
.yc8{bottom:201.579900px;}
.y1a7{bottom:205.087650px;}
.yfd{bottom:205.144050px;}
.y177{bottom:205.173150px;}
.y18c{bottom:205.191150px;}
.y56{bottom:206.596485px;}
.ya3{bottom:211.695600px;}
.y87{bottom:218.067600px;}
.y20{bottom:218.070600px;}
.yc7{bottom:218.076900px;}
.y55{bottom:219.797634px;}
.y12f{bottom:221.235750px;}
.y1a6{bottom:226.092150px;}
.yfc{bottom:226.148550px;}
.y176{bottom:226.177650px;}
.ye5{bottom:226.186650px;}
.y160{bottom:226.195650px;}
.ya2{bottom:228.192600px;}
.y54{bottom:232.907584px;}
.y86{bottom:234.564600px;}
.y1f{bottom:234.567600px;}
.yc6{bottom:234.573900px;}
.y12e{bottom:237.433950px;}
.y130{bottom:237.435750px;}
.ya1{bottom:244.689600px;}
.y53{bottom:246.017534px;}
.y1a5{bottom:247.096650px;}
.yfb{bottom:247.153050px;}
.y175{bottom:247.182150px;}
.ye4{bottom:247.191150px;}
.y15f{bottom:247.200150px;}
.y85{bottom:251.061600px;}
.y1e{bottom:251.064600px;}
.yc5{bottom:251.070900px;}
.y12d{bottom:259.155450px;}
.y52{bottom:259.218683px;}
.ya0{bottom:261.186600px;}
.y84{bottom:267.558600px;}
.y1d{bottom:267.561600px;}
.yc4{bottom:267.567900px;}
.y1a4{bottom:268.101150px;}
.y18b{bottom:268.150650px;}
.yfa{bottom:268.157550px;}
.y174{bottom:268.186650px;}
.ye3{bottom:268.195650px;}
.y15e{bottom:268.200150px;}
.y51{bottom:272.328633px;}
.y12c{bottom:275.353800px;}
.y9f{bottom:277.683600px;}
.y83{bottom:284.055600px;}
.y1c{bottom:284.058600px;}
.yc3{bottom:284.064900px;}
.y50{bottom:285.438583px;}
.y1a3{bottom:289.105650px;}
.y18a{bottom:289.155150px;}
.yf9{bottom:289.162050px;}
.y15d{bottom:289.186650px;}
.y173{bottom:289.191150px;}
.ye2{bottom:289.200150px;}
.y12b{bottom:291.553800px;}
.y9e{bottom:294.180600px;}
.y4f{bottom:298.548532px;}
.y1b{bottom:300.555600px;}
.yc2{bottom:300.561900px;}
.y1a2{bottom:310.110150px;}
.ye1{bottom:310.146150px;}
.y189{bottom:310.159650px;}
.yf8{bottom:310.166550px;}
.y15c{bottom:310.191150px;}
.y172{bottom:310.195650px;}
.y9d{bottom:310.677600px;}
.y4e{bottom:311.749682px;}
.y12a{bottom:313.275300px;}
.yc1{bottom:317.058900px;}
.y4d{bottom:324.859632px;}
.y129{bottom:329.475300px;}
.y1a1{bottom:331.114650px;}
.ye0{bottom:331.150650px;}
.y82{bottom:331.159650px;}
.y188{bottom:331.164150px;}
.yf7{bottom:331.171050px;}
.y15b{bottom:331.195650px;}
.y171{bottom:331.200150px;}
.yc0{bottom:333.555900px;}
.y4c{bottom:337.969581px;}
.y128{bottom:345.673650px;}
.y4b{bottom:351.170731px;}
.y1a0{bottom:352.119150px;}
.y170{bottom:352.150650px;}
.ydf{bottom:352.155150px;}
.y81{bottom:352.164150px;}
.y187{bottom:352.168650px;}
.yf6{bottom:352.175550px;}
.y15a{bottom:352.200150px;}
.y4a{bottom:364.280680px;}
.y127{bottom:367.395150px;}
.y19f{bottom:373.123650px;}
.y1a{bottom:373.141650px;}
.y16f{bottom:373.155150px;}
.yde{bottom:373.159650px;}
.y80{bottom:373.168650px;}
.y186{bottom:373.173150px;}
.yf5{bottom:373.180050px;}
.ybf{bottom:373.191150px;}
.y159{bottom:373.204650px;}
.y49{bottom:377.390630px;}
.y125{bottom:383.595150px;}
.yec{bottom:387.944700px;}
.y48{bottom:390.591779px;}
.y19e{bottom:394.128150px;}
.y19{bottom:394.146150px;}
.y16e{bottom:394.159650px;}
.ydd{bottom:394.164150px;}
.y7f{bottom:394.173150px;}
.y185{bottom:394.177650px;}
.yf4{bottom:394.184550px;}
.ybe{bottom:394.195650px;}
.y124{bottom:399.793500px;}
.y126{bottom:399.795150px;}
.y158{bottom:400.203900px;}
.y47{bottom:403.701729px;}
.y19d{bottom:415.132650px;}
.y16d{bottom:415.164150px;}
.ydc{bottom:415.168650px;}
.y7e{bottom:415.177650px;}
.y184{bottom:415.182150px;}
.yf3{bottom:415.189050px;}
.ybd{bottom:415.200150px;}
.y157{bottom:416.403900px;}
.y46{bottom:416.811679px;}
.y18{bottom:419.143650px;}
.y123{bottom:421.515000px;}
.y45{bottom:430.012828px;}
.y19c{bottom:436.137150px;}
.y16c{bottom:436.168650px;}
.ydb{bottom:436.173150px;}
.y7d{bottom:436.182150px;}
.y183{bottom:436.186650px;}
.yf2{bottom:436.193550px;}
.ybc{bottom:436.204650px;}
.y121{bottom:437.715000px;}
.y155{bottom:441.486900px;}
.y44{bottom:443.122778px;}
.y120{bottom:453.913200px;}
.y122{bottom:453.915000px;}
.y43{bottom:456.232728px;}
.y19b{bottom:457.141650px;}
.y17{bottom:457.159650px;}
.y16b{bottom:457.173150px;}
.yda{bottom:457.177650px;}
.y7c{bottom:457.186650px;}
.y182{bottom:457.191150px;}
.yf1{bottom:457.198050px;}
.y154{bottom:457.685100px;}
.y156{bottom:457.686900px;}
.y42{bottom:469.433877px;}
.y11f{bottom:475.634700px;}
.y19a{bottom:478.146150px;}
.y16{bottom:478.164150px;}
.y16a{bottom:478.177650px;}
.yd9{bottom:478.182150px;}
.y7b{bottom:478.191150px;}
.y181{bottom:478.195650px;}
.yf0{bottom:478.202550px;}
.y153{bottom:479.406600px;}
.y41{bottom:482.543827px;}
.y11e{bottom:491.833050px;}
.y152{bottom:495.606600px;}
.y40{bottom:495.653777px;}
.y199{bottom:499.150650px;}
.y15{bottom:499.168650px;}
.y169{bottom:499.182150px;}
.yd8{bottom:499.186650px;}
.y7a{bottom:499.195650px;}
.y180{bottom:499.200150px;}
.yef{bottom:502.193550px;}
.y3f{bottom:508.854926px;}
.y151{bottom:511.804950px;}
.y11d{bottom:513.552900px;}
.y198{bottom:520.155150px;}
.y14{bottom:520.173150px;}
.y168{bottom:520.186650px;}
.yd7{bottom:520.191150px;}
.y79{bottom:520.200150px;}
.y3e{bottom:521.964876px;}
.y14f{bottom:533.526450px;}
.y3d{bottom:535.074825px;}
.y11c{bottom:535.274400px;}
.y78{bottom:541.159650px;}
.y13{bottom:541.177650px;}
.y9c{bottom:541.186650px;}
.y167{bottom:541.191150px;}
.ybb{bottom:541.195650px;}
.y3c{bottom:548.275975px;}
.y14e{bottom:549.724800px;}
.y150{bottom:549.726450px;}
.y11b{bottom:551.474400px;}
.y3b{bottom:561.385924px;}
.y77{bottom:562.164150px;}
.y12{bottom:562.182150px;}
.y9b{bottom:562.191150px;}
.y166{bottom:562.195650px;}
.yba{bottom:562.200150px;}
.y11a{bottom:567.674400px;}
.y14d{bottom:571.446300px;}
.y3a{bottom:574.495874px;}
.yd6{bottom:583.123650px;}
.y76{bottom:583.168650px;}
.y11{bottom:583.186650px;}
.y9a{bottom:583.195650px;}
.y165{bottom:583.200150px;}
.y119{bottom:583.872750px;}
.y14c{bottom:587.646300px;}
.y39{bottom:587.697024px;}
.y38{bottom:600.806973px;}
.y14b{bottom:603.842850px;}
.yd5{bottom:604.128150px;}
.y75{bottom:604.173150px;}
.y10{bottom:604.191150px;}
.y99{bottom:604.200150px;}
.y118{bottom:605.594250px;}
.y197{bottom:608.166150px;}
.y37{bottom:613.916923px;}
.y116{bottom:621.794250px;}
.yd3{bottom:622.700700px;}
.yd4{bottom:625.132650px;}
.y74{bottom:625.177650px;}
.y98{bottom:625.186650px;}
.yf{bottom:625.195650px;}
.y14a{bottom:625.564350px;}
.y36{bottom:627.026873px;}
.y115{bottom:637.992600px;}
.y117{bottom:637.994250px;}
.y35{bottom:640.228022px;}
.yd2{bottom:646.137150px;}
.y73{bottom:646.182150px;}
.y97{bottom:646.191150px;}
.ye{bottom:646.200150px;}
.y149{bottom:647.285850px;}
.y34{bottom:653.337972px;}
.y113{bottom:659.714100px;}
.y148{bottom:663.485850px;}
.y33{bottom:666.447922px;}
.yd1{bottom:667.141650px;}
.yb9{bottom:667.164150px;}
.y72{bottom:667.186650px;}
.yd{bottom:667.195650px;}
.y112{bottom:675.910650px;}
.y114{bottom:675.914100px;}
.y32{bottom:679.649071px;}
.y147{bottom:679.685850px;}
.yeb{bottom:685.700700px;}
.yd0{bottom:688.146150px;}
.yb8{bottom:688.168650px;}
.y71{bottom:688.191150px;}
.yc{bottom:688.200150px;}
.y31{bottom:692.759021px;}
.y146{bottom:695.884200px;}
.y30{bottom:705.868970px;}
.ycf{bottom:709.150650px;}
.y96{bottom:709.168650px;}
.yb7{bottom:709.173150px;}
.yb{bottom:709.191150px;}
.y70{bottom:709.195650px;}
.y111{bottom:713.832150px;}
.y145{bottom:717.605700px;}
.y2f{bottom:719.070120px;}
.y110{bottom:730.032150px;}
.yce{bottom:730.155150px;}
.y95{bottom:730.173150px;}
.yb6{bottom:730.177650px;}
.ya{bottom:730.195650px;}
.y6f{bottom:730.200150px;}
.y2e{bottom:732.180069px;}
.y144{bottom:733.804050px;}
.y2d{bottom:745.290019px;}
.y17c{bottom:748.700700px;}
.y6e{bottom:751.159650px;}
.y94{bottom:751.177650px;}
.yb5{bottom:751.182150px;}
.y196{bottom:751.186650px;}
.y9{bottom:751.200150px;}
.y17f{bottom:751.204650px;}
.y10f{bottom:751.752000px;}
.y142{bottom:755.525550px;}
.y2c{bottom:758.491169px;}
.y2b{bottom:771.601118px;}
.y141{bottom:771.723750px;}
.y143{bottom:771.725550px;}
.y6d{bottom:772.164150px;}
.y93{bottom:772.182150px;}
.yb4{bottom:772.186650px;}
.y8{bottom:772.191150px;}
.y10e{bottom:773.473500px;}
.y2a{bottom:784.711068px;}
.y10d{bottom:789.673500px;}
.y6c{bottom:793.168650px;}
.y92{bottom:793.186650px;}
.yb3{bottom:793.191150px;}
.y7{bottom:793.195650px;}
.y13f{bottom:793.445250px;}
.y10c{bottom:805.873500px;}
.y13e{bottom:809.645250px;}
.y6b{bottom:814.173150px;}
.y91{bottom:814.191150px;}
.yb2{bottom:814.195650px;}
.y6{bottom:814.200150px;}
.y10b{bottom:822.071850px;}
.y13d{bottom:825.843600px;}
.y140{bottom:825.845250px;}
.y28{bottom:830.825034px;}
.y190{bottom:832.700700px;}
.y6a{bottom:835.177650px;}
.y195{bottom:835.182150px;}
.y90{bottom:835.195650px;}
.yb1{bottom:835.200150px;}
.y5{bottom:835.204650px;}
.y10a{bottom:843.793200px;}
.y13c{bottom:847.565250px;}
.y69{bottom:856.182150px;}
.yb0{bottom:856.185000px;}
.y194{bottom:856.186650px;}
.y8f{bottom:856.200150px;}
.y109{bottom:859.993200px;}
.y13b{bottom:863.765250px;}
.y108{bottom:876.193350px;}
.y68{bottom:877.186650px;}
.yaf{bottom:877.189500px;}
.y193{bottom:877.191150px;}
.y13a{bottom:879.965250px;}
.y107{bottom:892.391550px;}
.y4{bottom:892.567950px;}
.y138{bottom:896.165250px;}
.y67{bottom:898.191150px;}
.yae{bottom:898.194000px;}
.y192{bottom:898.195650px;}
.y106{bottom:908.591550px;}
.y3{bottom:909.064950px;}
.y137{bottom:912.365250px;}
.y66{bottom:919.195650px;}
.yad{bottom:919.198500px;}
.y191{bottom:919.200150px;}
.y136{bottom:928.563450px;}
.y139{bottom:928.565250px;}
.y105{bottom:930.313050px;}
.y65{bottom:940.200150px;}
.yac{bottom:940.203000px;}
.y104{bottom:946.513050px;}
.y2{bottom:947.163450px;}
.y135{bottom:950.284950px;}
.yee{bottom:951.958800px;}
.y64{bottom:961.204650px;}
.yab{bottom:965.530500px;}
.y134{bottom:966.484950px;}
.yed{bottom:966.957300px;}
.y1{bottom:968.164950px;}
.y103{bottom:972.484950px;}
.y8e{bottom:1017.856200px;}
.y63{bottom:1017.856350px;}
.hb{height:26.525391px;}
.he{height:31.661597px;}
.h16{height:41.376000px;}
.h12{height:41.472000px;}
.hd{height:41.818199px;}
.h27{height:45.414000px;}
.h10{height:45.702950px;}
.h4{height:46.548000px;}
.h5{height:46.656000px;}
.h28{height:50.816322px;}
.h25{height:50.822922px;}
.h20{height:51.677688px;}
.h2d{height:51.689688px;}
.h1f{height:51.702288px;}
.h22{height:51.713688px;}
.h1c{height:51.714288px;}
.h23{height:51.714888px;}
.h24{height:51.720888px;}
.h21{height:51.721488px;}
.h26{height:51.728088px;}
.h11{height:53.562853px;}
.ha{height:55.506000px;}
.h7{height:57.024000px;}
.h13{height:63.206952px;}
.h29{height:63.224352px;}
.h2e{height:63.224952px;}
.h9{height:63.242352px;}
.h8{height:63.260952px;}
.h19{height:63.278352px;}
.h17{height:63.278952px;}
.h1a{height:63.285552px;}
.h2f{height:63.296952px;}
.h2c{height:63.350352px;}
.h18{height:63.350952px;}
.h1b{height:63.368352px;}
.h15{height:63.386352px;}
.h14{height:63.386952px;}
.h2b{height:63.422352px;}
.h1e{height:63.440352px;}
.h2a{height:63.512352px;}
.h1d{height:63.530352px;}
.hf{height:63.561252px;}
.h3{height:65.598000px;}
.h2{height:67.236000px;}
.h6{height:72.576000px;}
.hc{height:896.396211px;}
.h0{height:1079.999700px;}
.h1{height:1080.000000px;}
.w2{width:745.711426px;}
.w1{width:756.750000px;}
.w0{width:756.850200px;}
.x0{left:0.000000px;}
.x8{left:5.568100px;}
.x7{left:15.000000px;}
.x9{left:32.399876px;}
.xb{left:42.428409px;}
.x5{left:76.535400px;}
.x13{left:83.066250px;}
.x14{left:96.969300px;}
.x1c{left:99.058650px;}
.x1d{left:100.658400px;}
.x17{left:101.950800px;}
.x15{left:106.405800px;}
.x1b{left:109.151100px;}
.x6{left:110.561100px;}
.xf{left:114.803100px;}
.x26{left:130.985850px;}
.x1{left:136.067400px;}
.x21{left:137.295450px;}
.x22{left:142.519950px;}
.x1f{left:144.673500px;}
.x27{left:146.999250px;}
.x10{left:148.830600px;}
.x19{left:163.217400px;}
.x2{left:171.440400px;}
.x16{left:182.410800px;}
.x20{left:220.678500px;}
.x12{left:236.677200px;}
.x1a{left:241.281150px;}
.x25{left:265.243350px;}
.x4{left:267.073500px;}
.x24{left:279.542100px;}
.xe{left:303.276450px;}
.x3{left:314.944500px;}
.x1e{left:335.299050px;}
.xc{left:340.376552px;}
.x11{left:350.903400px;}
.xa{left:372.769999px;}
.xd{left:389.327100px;}
.x18{left:438.546300px;}
.x23{left:476.833950px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.584533pt;}
.ls3d{letter-spacing:-6.000000pt;}
.ls53{letter-spacing:-5.690667pt;}
.ls19{letter-spacing:-4.944000pt;}
.ls4f{letter-spacing:-4.368000pt;}
.ls57{letter-spacing:-4.080000pt;}
.ls5e{letter-spacing:-2.474667pt;}
.ls3f{letter-spacing:-2.112000pt;}
.ls56{letter-spacing:-1.877333pt;}
.ls50{letter-spacing:-1.872000pt;}
.ls12{letter-spacing:-1.760000pt;}
.ls3c{letter-spacing:-1.440000pt;}
.ls11{letter-spacing:-1.349333pt;}
.ls8{letter-spacing:-1.045333pt;}
.lsa{letter-spacing:-0.997333pt;}
.ls2c{letter-spacing:-0.981333pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls5b{letter-spacing:-0.938667pt;}
.ls41{letter-spacing:-0.864000pt;}
.ls3a{letter-spacing:-0.768000pt;}
.ls5c{letter-spacing:-0.762667pt;}
.ls2b{letter-spacing:-0.725333pt;}
.ls42{letter-spacing:-0.720000pt;}
.ls51{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.645333pt;}
.ls24{letter-spacing:-0.624000pt;}
.ls2e{letter-spacing:-0.597333pt;}
.ls16{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.554667pt;}
.ls5d{letter-spacing:-0.551408pt;}
.lsb{letter-spacing:-0.528000pt;}
.ls29{letter-spacing:-0.480000pt;}
.ls40{letter-spacing:-0.432000pt;}
.ls52{letter-spacing:-0.410667pt;}
.ls4e{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.293333pt;}
.ls3e{letter-spacing:-0.288000pt;}
.lsc{letter-spacing:-0.240000pt;}
.ls1e{letter-spacing:-0.234667pt;}
.ls3b{letter-spacing:-0.192000pt;}
.ls43{letter-spacing:-0.144000pt;}
.ls20{letter-spacing:-0.127248pt;}
.ls18{letter-spacing:-0.117333pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000091pt;}
.ls15{letter-spacing:0.000155pt;}
.ls2a{letter-spacing:0.000229pt;}
.ls37{letter-spacing:0.000272pt;}
.ls46{letter-spacing:0.000288pt;}
.ls48{letter-spacing:0.012267pt;}
.ls4{letter-spacing:0.027428pt;}
.ls1c{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.061714pt;}
.ls27{letter-spacing:0.096000pt;}
.ls58{letter-spacing:0.169664pt;}
.ls23{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.212080pt;}
.lse{letter-spacing:0.240000pt;}
.ls13{letter-spacing:0.288000pt;}
.ls10{letter-spacing:0.293333pt;}
.ls5a{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.339328pt;}
.ls59{letter-spacing:0.432000pt;}
.ls55{letter-spacing:0.528000pt;}
.ls28{letter-spacing:0.576000pt;}
.ls2d{letter-spacing:0.603429pt;}
.ls1d{letter-spacing:0.643200pt;}
.ls44{letter-spacing:0.672000pt;}
.ls54{letter-spacing:0.821333pt;}
.lsd{letter-spacing:0.864000pt;}
.ls14{letter-spacing:0.912000pt;}
.ls7{letter-spacing:1.045333pt;}
.ls0{letter-spacing:4.282667pt;}
.ls1{letter-spacing:4.400000pt;}
.ls2{letter-spacing:67.584533pt;}
.ls31{letter-spacing:106.358096pt;}
.ls30{letter-spacing:106.550672pt;}
.ls4a{letter-spacing:110.163472pt;}
.ls4c{letter-spacing:112.538939pt;}
.ls2f{letter-spacing:112.616805pt;}
.ls36{letter-spacing:123.110096pt;}
.ls4d{letter-spacing:140.433872pt;}
.ls33{letter-spacing:145.550672pt;}
.ls45{letter-spacing:146.798139pt;}
.ls39{letter-spacing:147.998139pt;}
.ls47{letter-spacing:149.438629pt;}
.ls38{letter-spacing:149.941563pt;}
.ls4b{letter-spacing:167.096805pt;}
.ls3{letter-spacing:167.204540pt;}
.ls32{letter-spacing:181.472272pt;}
.ls49{letter-spacing:186.607739pt;}
.ls35{letter-spacing:197.683429pt;}
.ls34{letter-spacing:199.136272pt;}
.ws5{word-spacing:-17.204505pt;}
.ws0{word-spacing:-17.098667pt;}
.ws1{word-spacing:-15.008000pt;}
.ws29{word-spacing:-13.728000pt;}
.ws2c{word-spacing:-13.434667pt;}
.ws52{word-spacing:-13.141333pt;}
.ws2a{word-spacing:-12.613333pt;}
.ws2{word-spacing:-12.437333pt;}
.wsab{word-spacing:-12.378667pt;}
.wsef{word-spacing:-12.202667pt;}
.ws2b{word-spacing:-12.085333pt;}
.ws10e{word-spacing:-11.968000pt;}
.ws2d{word-spacing:-11.904000pt;}
.ws53{word-spacing:-11.674667pt;}
.ws7a{word-spacing:-11.568000pt;}
.ws104{word-spacing:-11.424000pt;}
.ws54{word-spacing:-11.232000pt;}
.ws7b{word-spacing:-10.896000pt;}
.wse4{word-spacing:-10.752000pt;}
.ws105{word-spacing:-10.656000pt;}
.wse3{word-spacing:-10.416000pt;}
.ws10f{word-spacing:-10.368000pt;}
.ws9e{word-spacing:-10.320000pt;}
.wsda{word-spacing:-10.176000pt;}
.wsd9{word-spacing:-10.128000pt;}
.ws4{word-spacing:-10.080000pt;}
.wsdf{word-spacing:-10.032000pt;}
.wsde{word-spacing:-9.936000pt;}
.wsd2{word-spacing:-9.888000pt;}
.wse2{word-spacing:-9.792000pt;}
.wsd5{word-spacing:-9.744000pt;}
.wsac{word-spacing:-9.696000pt;}
.wsd6{word-spacing:-9.600000pt;}
.wsd8{word-spacing:-9.552000pt;}
.wsd3{word-spacing:-9.456000pt;}
.ws79{word-spacing:-9.360000pt;}
.ws77{word-spacing:-9.331520pt;}
.ws103{word-spacing:-9.289104pt;}
.ws3{word-spacing:-9.119440pt;}
.ws78{word-spacing:-8.992192pt;}
.wsca{word-spacing:-8.880000pt;}
.ws74{word-spacing:-8.618667pt;}
.wsaa{word-spacing:-8.576000pt;}
.ws10d{word-spacing:-8.568032pt;}
.ws9d{word-spacing:-8.448000pt;}
.wsc9{word-spacing:-8.405333pt;}
.wsd0{word-spacing:-8.208000pt;}
.wsa9{word-spacing:-8.192000pt;}
.ws9f{word-spacing:-7.461360pt;}
.wsfd{word-spacing:-7.296000pt;}
.wscf{word-spacing:-7.218432pt;}
.wsee{word-spacing:-6.922667pt;}
.ws119{word-spacing:-6.698667pt;}
.wse0{word-spacing:-5.952000pt;}
.wsf5{word-spacing:-4.048000pt;}
.wsf4{word-spacing:-2.992000pt;}
.wsc1{word-spacing:-2.757333pt;}
.ws110{word-spacing:-2.698667pt;}
.wsc0{word-spacing:-2.640000pt;}
.ws84{word-spacing:-2.464000pt;}
.ws8b{word-spacing:-2.405333pt;}
.ws5c{word-spacing:-2.346667pt;}
.wsf{word-spacing:-2.288000pt;}
.wsec{word-spacing:-2.229333pt;}
.ws113{word-spacing:-2.170667pt;}
.wsad{word-spacing:-2.112000pt;}
.ws5b{word-spacing:-2.053333pt;}
.ws58{word-spacing:-1.994667pt;}
.ws55{word-spacing:-1.936000pt;}
.ws95{word-spacing:-1.920000pt;}
.wsb1{word-spacing:-1.877333pt;}
.ws6d{word-spacing:-1.872000pt;}
.ws59{word-spacing:-1.818667pt;}
.ws96{word-spacing:-1.728000pt;}
.wsf9{word-spacing:-1.701333pt;}
.ws13{word-spacing:-1.642667pt;}
.ws24{word-spacing:-1.632000pt;}
.wsb5{word-spacing:-1.584000pt;}
.ws9b{word-spacing:-1.536000pt;}
.wsc4{word-spacing:-1.525333pt;}
.ws8a{word-spacing:-1.466667pt;}
.ws14{word-spacing:-1.408000pt;}
.wsa3{word-spacing:-1.349333pt;}
.ws73{word-spacing:-1.296000pt;}
.wsc2{word-spacing:-1.290667pt;}
.ws4e{word-spacing:-1.248000pt;}
.wsb2{word-spacing:-1.232000pt;}
.ws72{word-spacing:-1.200000pt;}
.ws42{word-spacing:-1.173333pt;}
.ws4f{word-spacing:-1.152000pt;}
.ws46{word-spacing:-1.114667pt;}
.ws37{word-spacing:-1.056000pt;}
.ws51{word-spacing:-1.008000pt;}
.wsd{word-spacing:-0.997333pt;}
.ws50{word-spacing:-0.960000pt;}
.wsb7{word-spacing:-0.938667pt;}
.ws1d{word-spacing:-0.912000pt;}
.wsbf{word-spacing:-0.880000pt;}
.ws1c{word-spacing:-0.864000pt;}
.ws3c{word-spacing:-0.821333pt;}
.ws47{word-spacing:-0.816000pt;}
.ws18{word-spacing:-0.762667pt;}
.ws66{word-spacing:-0.720000pt;}
.ws89{word-spacing:-0.704000pt;}
.ws65{word-spacing:-0.672000pt;}
.wsa2{word-spacing:-0.645333pt;}
.wsa1{word-spacing:-0.586667pt;}
.wsb6{word-spacing:-0.528000pt;}
.ws91{word-spacing:-0.480000pt;}
.ws107{word-spacing:-0.469333pt;}
.ws10c{word-spacing:-0.432000pt;}
.ws85{word-spacing:-0.410667pt;}
.wse{word-spacing:-0.352000pt;}
.ws88{word-spacing:-0.339328pt;}
.ws44{word-spacing:-0.293333pt;}
.ws26{word-spacing:-0.240000pt;}
.wsa8{word-spacing:-0.234667pt;}
.ws99{word-spacing:-0.192000pt;}
.wsb0{word-spacing:-0.176000pt;}
.ws27{word-spacing:-0.150857pt;}
.wse7{word-spacing:-0.144000pt;}
.ws32{word-spacing:-0.117333pt;}
.ws28{word-spacing:-0.102857pt;}
.ws98{word-spacing:-0.096000pt;}
.ws108{word-spacing:-0.058667pt;}
.ws75{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.048000pt;}
.wsa5{word-spacing:0.058667pt;}
.ws94{word-spacing:0.096000pt;}
.ws17{word-spacing:0.117333pt;}
.ws9c{word-spacing:0.144000pt;}
.ws64{word-spacing:0.176000pt;}
.wsdc{word-spacing:0.192000pt;}
.ws117{word-spacing:0.234667pt;}
.ws76{word-spacing:0.240000pt;}
.ws4d{word-spacing:0.288000pt;}
.ws111{word-spacing:0.293333pt;}
.wsc{word-spacing:0.352000pt;}
.wsfb{word-spacing:0.384000pt;}
.ws43{word-spacing:0.410667pt;}
.wse6{word-spacing:0.432000pt;}
.ws3f{word-spacing:0.469333pt;}
.ws9a{word-spacing:0.480000pt;}
.wsfc{word-spacing:0.528000pt;}
.ws70{word-spacing:0.576000pt;}
.ws11a{word-spacing:0.586667pt;}
.ws71{word-spacing:0.624000pt;}
.ws36{word-spacing:0.645333pt;}
.ws4a{word-spacing:0.672000pt;}
.wseb{word-spacing:0.704000pt;}
.ws5d{word-spacing:0.762667pt;}
.ws97{word-spacing:0.816000pt;}
.ws3d{word-spacing:0.821333pt;}
.ws38{word-spacing:0.880000pt;}
.ws45{word-spacing:0.938667pt;}
.ws48{word-spacing:0.960000pt;}
.wsb{word-spacing:0.997333pt;}
.ws49{word-spacing:1.008000pt;}
.ws40{word-spacing:1.056000pt;}
.ws5e{word-spacing:1.114667pt;}
.ws106{word-spacing:1.173333pt;}
.ws116{word-spacing:1.232000pt;}
.wsa{word-spacing:1.290667pt;}
.ws4c{word-spacing:1.344000pt;}
.ws114{word-spacing:1.349333pt;}
.ws25{word-spacing:1.392000pt;}
.wsaf{word-spacing:1.408000pt;}
.wsdd{word-spacing:1.440000pt;}
.wsbe{word-spacing:1.466667pt;}
.ws6b{word-spacing:1.488000pt;}
.ws2f{word-spacing:1.525333pt;}
.wsed{word-spacing:1.584000pt;}
.wsb8{word-spacing:1.632000pt;}
.ws31{word-spacing:1.642667pt;}
.ws23{word-spacing:1.680000pt;}
.ws39{word-spacing:1.701333pt;}
.wsb9{word-spacing:1.728000pt;}
.ws30{word-spacing:1.760000pt;}
.wsf7{word-spacing:1.877333pt;}
.ws56{word-spacing:2.053333pt;}
.wsbc{word-spacing:2.112000pt;}
.ws57{word-spacing:2.170667pt;}
.wsf0{word-spacing:2.229333pt;}
.wsf2{word-spacing:2.288000pt;}
.ws82{word-spacing:2.346667pt;}
.ws3e{word-spacing:2.405333pt;}
.wsea{word-spacing:2.522667pt;}
.ws41{word-spacing:2.581333pt;}
.ws15{word-spacing:2.640000pt;}
.ws3a{word-spacing:2.698667pt;}
.ws86{word-spacing:2.757333pt;}
.ws11{word-spacing:2.816000pt;}
.ws6f{word-spacing:2.832000pt;}
.ws33{word-spacing:2.874667pt;}
.ws93{word-spacing:2.928000pt;}
.wse9{word-spacing:2.933333pt;}
.ws115{word-spacing:2.992000pt;}
.ws6e{word-spacing:3.024000pt;}
.wsc3{word-spacing:3.050667pt;}
.ws4b{word-spacing:3.072000pt;}
.ws10{word-spacing:3.109333pt;}
.ws92{word-spacing:3.120000pt;}
.wsa7{word-spacing:3.168000pt;}
.ws83{word-spacing:3.226667pt;}
.ws1e{word-spacing:3.264000pt;}
.ws2e{word-spacing:3.285333pt;}
.ws63{word-spacing:3.344000pt;}
.ws21{word-spacing:3.360000pt;}
.wsa4{word-spacing:3.402667pt;}
.ws34{word-spacing:3.461333pt;}
.ws1f{word-spacing:3.552000pt;}
.wsc5{word-spacing:3.578667pt;}
.ws7f{word-spacing:3.637333pt;}
.ws1b{word-spacing:3.696000pt;}
.wsc7{word-spacing:3.754667pt;}
.wsa6{word-spacing:3.813333pt;}
.ws16{word-spacing:3.872000pt;}
.ws68{word-spacing:3.888000pt;}
.wsfe{word-spacing:3.930667pt;}
.ws1a{word-spacing:3.936000pt;}
.ws118{word-spacing:3.989333pt;}
.wse8{word-spacing:4.048000pt;}
.ws102{word-spacing:4.080000pt;}
.wsa0{word-spacing:4.165333pt;}
.wsf1{word-spacing:4.224000pt;}
.ws67{word-spacing:4.272000pt;}
.wsc6{word-spacing:4.282667pt;}
.wse5{word-spacing:4.368000pt;}
.ws22{word-spacing:4.416000pt;}
.ws7{word-spacing:4.458667pt;}
.ws112{word-spacing:4.517333pt;}
.wsbd{word-spacing:4.634667pt;}
.ws100{word-spacing:4.656000pt;}
.ws10a{word-spacing:4.752000pt;}
.wsc8{word-spacing:4.810667pt;}
.wsfa{word-spacing:4.869333pt;}
.wsf3{word-spacing:4.928000pt;}
.ws20{word-spacing:4.944000pt;}
.ws8{word-spacing:4.986667pt;}
.ws8c{word-spacing:4.992000pt;}
.ws80{word-spacing:5.104000pt;}
.ws7c{word-spacing:5.162667pt;}
.ws87{word-spacing:5.280000pt;}
.ws8d{word-spacing:5.328000pt;}
.wsf8{word-spacing:5.338667pt;}
.ws69{word-spacing:5.376000pt;}
.ws81{word-spacing:5.397333pt;}
.ws7e{word-spacing:5.514667pt;}
.ws5f{word-spacing:5.690667pt;}
.ws6a{word-spacing:5.712000pt;}
.ws3b{word-spacing:5.808000pt;}
.wsba{word-spacing:5.856000pt;}
.ws35{word-spacing:5.866667pt;}
.ws62{word-spacing:5.925333pt;}
.wsb3{word-spacing:5.984000pt;}
.ws101{word-spacing:6.096000pt;}
.wsbb{word-spacing:6.240000pt;}
.ws5a{word-spacing:6.277333pt;}
.wsff{word-spacing:6.336000pt;}
.ws109{word-spacing:6.394667pt;}
.ws19{word-spacing:6.453333pt;}
.ws12{word-spacing:6.570667pt;}
.wsb4{word-spacing:6.629333pt;}
.ws10b{word-spacing:6.805333pt;}
.ws61{word-spacing:6.981333pt;}
.wsae{word-spacing:7.098667pt;}
.wsf6{word-spacing:7.157333pt;}
.ws9{word-spacing:7.392000pt;}
.ws60{word-spacing:8.624000pt;}
.ws8e{word-spacing:11.808000pt;}
.ws90{word-spacing:12.384000pt;}
.ws8f{word-spacing:12.576000pt;}
.ws7d{word-spacing:19.008000pt;}
.wsce{word-spacing:32.400000pt;}
.wsd4{word-spacing:42.988267pt;}
.wsd1{word-spacing:43.008000pt;}
.wscd{word-spacing:63.312000pt;}
.wse1{word-spacing:63.600000pt;}
.wsd7{word-spacing:75.072000pt;}
.wsdb{word-spacing:78.960000pt;}
.wscb{word-spacing:80.448000pt;}
.wscc{word-spacing:620.112000pt;}
._8{margin-left:-439.328000pt;}
._a{margin-left:-266.880000pt;}
._b{margin-left:-8.725867pt;}
._17{margin-left:-7.748267pt;}
._12{margin-left:-6.675733pt;}
._4{margin-left:-5.750933pt;}
._2{margin-left:-4.520533pt;}
._3{margin-left:-2.766933pt;}
._0{margin-left:-1.248000pt;}
._1{width:1.386667pt;}
._5{width:2.417067pt;}
._e{width:4.105600pt;}
._11{width:5.323200pt;}
._10{width:6.302400pt;}
._f{width:7.222400pt;}
._2a{width:36.144000pt;}
._2b{width:40.272000pt;}
._13{width:42.240000pt;}
._18{width:44.208000pt;}
._15{width:46.368000pt;}
._16{width:48.096000pt;}
._1a{width:50.848000pt;}
._14{width:52.464000pt;}
._c{width:56.208000pt;}
._d{width:58.608000pt;}
._6{width:60.768000pt;}
._7{width:62.448000pt;}
._26{width:78.025872pt;}
._1c{width:108.180267pt;}
._19{width:129.264000pt;}
._28{width:136.564539pt;}
._1f{width:147.800533pt;}
._27{width:152.539200pt;}
._20{width:249.365029pt;}
._1d{width:283.913600pt;}
._25{width:287.093333pt;}
._24{width:303.269333pt;}
._1e{width:387.040533pt;}
._29{width:401.873339pt;}
._22{width:428.269867pt;}
._1b{width:439.274667pt;}
._21{width:445.117867pt;}
._23{width:468.809872pt;}
._9{width:1910.362133pt;}
.fs5{font-size:32.000000pt;}
.fsc{font-size:34.704000pt;}
.fs7{font-size:40.533178pt;}
.fs4{font-size:42.416000pt;}
.fsb{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:55.771215pt;}
.fs3{font-size:58.666667pt;}
.fs9{font-size:60.952147pt;}
.fsa{font-size:68.571166pt;}
.fs0{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:81.371117pt;}
.y29{bottom:-114.356216pt;}
.y61{bottom:-24.455329pt;}
.y27{bottom:-20.000000pt;}
.y60{bottom:-4.723977pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:15.011186pt;}
.y62{bottom:33.894933pt;}
.y5e{bottom:34.742539pt;}
.y5d{bottom:54.932938pt;}
.y5c{bottom:77.942373pt;}
.y102{bottom:88.996933pt;}
.y5b{bottom:96.532778pt;}
.y17b{bottom:98.273333pt;}
.ya9{bottom:100.189867pt;}
.y1aa{bottom:105.826800pt;}
.y17e{bottom:105.829467pt;}
.y18f{bottom:105.832400pt;}
.y164{bottom:105.834800pt;}
.yea{bottom:105.835067pt;}
.y8d{bottom:105.853867pt;}
.y26{bottom:105.856533pt;}
.ycd{bottom:105.862133pt;}
.y101{bottom:107.667600pt;}
.y17a{bottom:112.937333pt;}
.yaa{bottom:113.196000pt;}
.ya8{bottom:114.853867pt;}
.y5a{bottom:115.505505pt;}
.y17d{bottom:120.493467pt;}
.y18e{bottom:120.496400pt;}
.y163{bottom:120.498800pt;}
.ye9{bottom:120.499067pt;}
.y8c{bottom:120.517867pt;}
.y25{bottom:120.520533pt;}
.ycc{bottom:120.526133pt;}
.y100{bottom:126.338267pt;}
.y179{bottom:127.601333pt;}
.ya7{bottom:129.517867pt;}
.y18d{bottom:135.160400pt;}
.y162{bottom:135.162800pt;}
.ye8{bottom:135.163067pt;}
.y8b{bottom:135.181867pt;}
.y24{bottom:135.184533pt;}
.ycb{bottom:135.190133pt;}
.y59{bottom:138.818330pt;}
.ya6{bottom:144.181867pt;}
.y1a9{bottom:144.958800pt;}
.yff{bottom:145.008933pt;}
.y161{bottom:149.826800pt;}
.ye7{bottom:149.829733pt;}
.y8a{bottom:149.845867pt;}
.y23{bottom:149.848533pt;}
.yca{bottom:149.854133pt;}
.ya5{bottom:158.845867pt;}
.y58{bottom:160.334743pt;}
.y132{bottom:162.947467pt;}
.y1a8{bottom:163.629467pt;}
.yfe{bottom:163.679600pt;}
.y178{bottom:163.705467pt;}
.ye6{bottom:164.493733pt;}
.y89{bottom:164.509867pt;}
.y22{bottom:164.512533pt;}
.yc9{bottom:164.518133pt;}
.y57{bottom:171.988031pt;}
.ya4{bottom:173.509867pt;}
.y131{bottom:177.346000pt;}
.y133{bottom:177.347467pt;}
.y88{bottom:179.173867pt;}
.y21{bottom:179.176533pt;}
.yc8{bottom:179.182133pt;}
.y1a7{bottom:182.300133pt;}
.yfd{bottom:182.350267pt;}
.y177{bottom:182.376133pt;}
.y18c{bottom:182.392133pt;}
.y56{bottom:183.641320pt;}
.ya3{bottom:188.173867pt;}
.y87{bottom:193.837867pt;}
.y20{bottom:193.840533pt;}
.yc7{bottom:193.846133pt;}
.y55{bottom:195.375675pt;}
.y12f{bottom:196.654000pt;}
.y1a6{bottom:200.970800pt;}
.yfc{bottom:201.020933pt;}
.y176{bottom:201.046800pt;}
.ye5{bottom:201.054800pt;}
.y160{bottom:201.062800pt;}
.ya2{bottom:202.837867pt;}
.y54{bottom:207.028964pt;}
.y86{bottom:208.501867pt;}
.y1f{bottom:208.504533pt;}
.yc6{bottom:208.510133pt;}
.y12e{bottom:211.052400pt;}
.y130{bottom:211.054000pt;}
.ya1{bottom:217.501867pt;}
.y53{bottom:218.682252pt;}
.y1a5{bottom:219.641467pt;}
.yfb{bottom:219.691600pt;}
.y175{bottom:219.717467pt;}
.ye4{bottom:219.725467pt;}
.y15f{bottom:219.733467pt;}
.y85{bottom:223.165867pt;}
.y1e{bottom:223.168533pt;}
.yc5{bottom:223.174133pt;}
.y12d{bottom:230.360400pt;}
.y52{bottom:230.416607pt;}
.ya0{bottom:232.165867pt;}
.y84{bottom:237.829867pt;}
.y1d{bottom:237.832533pt;}
.yc4{bottom:237.838133pt;}
.y1a4{bottom:238.312133pt;}
.y18b{bottom:238.356133pt;}
.yfa{bottom:238.362267pt;}
.y174{bottom:238.388133pt;}
.ye3{bottom:238.396133pt;}
.y15e{bottom:238.400133pt;}
.y51{bottom:242.069896pt;}
.y12c{bottom:244.758933pt;}
.y9f{bottom:246.829867pt;}
.y83{bottom:252.493867pt;}
.y1c{bottom:252.496533pt;}
.yc3{bottom:252.502133pt;}
.y50{bottom:253.723185pt;}
.y1a3{bottom:256.982800pt;}
.y18a{bottom:257.026800pt;}
.yf9{bottom:257.032933pt;}
.y15d{bottom:257.054800pt;}
.y173{bottom:257.058800pt;}
.ye2{bottom:257.066800pt;}
.y12b{bottom:259.158933pt;}
.y9e{bottom:261.493867pt;}
.y4f{bottom:265.376473pt;}
.y1b{bottom:267.160533pt;}
.yc2{bottom:267.166133pt;}
.y1a2{bottom:275.653467pt;}
.ye1{bottom:275.685467pt;}
.y189{bottom:275.697467pt;}
.yf8{bottom:275.703600pt;}
.y15c{bottom:275.725467pt;}
.y172{bottom:275.729467pt;}
.y9d{bottom:276.157867pt;}
.y4e{bottom:277.110828pt;}
.y12a{bottom:278.466933pt;}
.yc1{bottom:281.830133pt;}
.y4d{bottom:288.764117pt;}
.y129{bottom:292.866933pt;}
.y1a1{bottom:294.324133pt;}
.ye0{bottom:294.356133pt;}
.y82{bottom:294.364133pt;}
.y188{bottom:294.368133pt;}
.yf7{bottom:294.374267pt;}
.y15b{bottom:294.396133pt;}
.y171{bottom:294.400133pt;}
.yc0{bottom:296.494133pt;}
.y4c{bottom:300.417406pt;}
.y128{bottom:307.265467pt;}
.y4b{bottom:312.151761pt;}
.y1a0{bottom:312.994800pt;}
.y170{bottom:313.022800pt;}
.ydf{bottom:313.026800pt;}
.y81{bottom:313.034800pt;}
.y187{bottom:313.038800pt;}
.yf6{bottom:313.044933pt;}
.y15a{bottom:313.066800pt;}
.y4a{bottom:323.805049pt;}
.y127{bottom:326.573467pt;}
.y19f{bottom:331.665467pt;}
.y1a{bottom:331.681467pt;}
.y16f{bottom:331.693467pt;}
.yde{bottom:331.697467pt;}
.y80{bottom:331.705467pt;}
.y186{bottom:331.709467pt;}
.yf5{bottom:331.715600pt;}
.ybf{bottom:331.725467pt;}
.y159{bottom:331.737467pt;}
.y49{bottom:335.458338pt;}
.y125{bottom:340.973467pt;}
.yec{bottom:344.839733pt;}
.y48{bottom:347.192693pt;}
.y19e{bottom:350.336133pt;}
.y19{bottom:350.352133pt;}
.y16e{bottom:350.364133pt;}
.ydd{bottom:350.368133pt;}
.y7f{bottom:350.376133pt;}
.y185{bottom:350.380133pt;}
.yf4{bottom:350.386267pt;}
.ybe{bottom:350.396133pt;}
.y124{bottom:355.372000pt;}
.y126{bottom:355.373467pt;}
.y158{bottom:355.736800pt;}
.y47{bottom:358.845982pt;}
.y19d{bottom:369.006800pt;}
.y16d{bottom:369.034800pt;}
.ydc{bottom:369.038800pt;}
.y7e{bottom:369.046800pt;}
.y184{bottom:369.050800pt;}
.yf3{bottom:369.056933pt;}
.ybd{bottom:369.066800pt;}
.y157{bottom:370.136800pt;}
.y46{bottom:370.499270pt;}
.y18{bottom:372.572133pt;}
.y123{bottom:374.680000pt;}
.y45{bottom:382.233625pt;}
.y19c{bottom:387.677467pt;}
.y16c{bottom:387.705467pt;}
.ydb{bottom:387.709467pt;}
.y7d{bottom:387.717467pt;}
.y183{bottom:387.721467pt;}
.yf2{bottom:387.727600pt;}
.ybc{bottom:387.737467pt;}
.y121{bottom:389.080000pt;}
.y155{bottom:392.432800pt;}
.y44{bottom:393.886914pt;}
.y120{bottom:403.478400pt;}
.y122{bottom:403.480000pt;}
.y43{bottom:405.540202pt;}
.y19b{bottom:406.348133pt;}
.y17{bottom:406.364133pt;}
.y16b{bottom:406.376133pt;}
.yda{bottom:406.380133pt;}
.y7c{bottom:406.388133pt;}
.y182{bottom:406.392133pt;}
.yf1{bottom:406.398267pt;}
.y154{bottom:406.831200pt;}
.y156{bottom:406.832800pt;}
.y42{bottom:417.274557pt;}
.y11f{bottom:422.786400pt;}
.y19a{bottom:425.018800pt;}
.y16{bottom:425.034800pt;}
.y16a{bottom:425.046800pt;}
.yd9{bottom:425.050800pt;}
.y7b{bottom:425.058800pt;}
.y181{bottom:425.062800pt;}
.yf0{bottom:425.068933pt;}
.y153{bottom:426.139200pt;}
.y41{bottom:428.927846pt;}
.y11e{bottom:437.184933pt;}
.y152{bottom:440.539200pt;}
.y40{bottom:440.581135pt;}
.y199{bottom:443.689467pt;}
.y15{bottom:443.705467pt;}
.y169{bottom:443.717467pt;}
.yd8{bottom:443.721467pt;}
.y7a{bottom:443.729467pt;}
.y180{bottom:443.733467pt;}
.yef{bottom:446.394267pt;}
.y3f{bottom:452.315490pt;}
.y151{bottom:454.937733pt;}
.y11d{bottom:456.491467pt;}
.y198{bottom:462.360133pt;}
.y14{bottom:462.376133pt;}
.y168{bottom:462.388133pt;}
.yd7{bottom:462.392133pt;}
.y79{bottom:462.400133pt;}
.y3e{bottom:463.968778pt;}
.y14f{bottom:474.245733pt;}
.y3d{bottom:475.622067pt;}
.y11c{bottom:475.799467pt;}
.y78{bottom:481.030800pt;}
.y13{bottom:481.046800pt;}
.y9c{bottom:481.054800pt;}
.y167{bottom:481.058800pt;}
.ybb{bottom:481.062800pt;}
.y3c{bottom:487.356422pt;}
.y14e{bottom:488.644267pt;}
.y150{bottom:488.645733pt;}
.y11b{bottom:490.199467pt;}
.y3b{bottom:499.009711pt;}
.y77{bottom:499.701467pt;}
.y12{bottom:499.717467pt;}
.y9b{bottom:499.725467pt;}
.y166{bottom:499.729467pt;}
.yba{bottom:499.733467pt;}
.y11a{bottom:504.599467pt;}
.y14d{bottom:507.952267pt;}
.y3a{bottom:510.662999pt;}
.yd6{bottom:518.332133pt;}
.y76{bottom:518.372133pt;}
.y11{bottom:518.388133pt;}
.y9a{bottom:518.396133pt;}
.y165{bottom:518.400133pt;}
.y119{bottom:518.998000pt;}
.y14c{bottom:522.352267pt;}
.y39{bottom:522.397354pt;}
.y38{bottom:534.050643pt;}
.y14b{bottom:536.749200pt;}
.yd5{bottom:537.002800pt;}
.y75{bottom:537.042800pt;}
.y10{bottom:537.058800pt;}
.y99{bottom:537.066800pt;}
.y118{bottom:538.306000pt;}
.y197{bottom:540.592133pt;}
.y37{bottom:545.703932pt;}
.y116{bottom:552.706000pt;}
.yd3{bottom:553.511733pt;}
.yd4{bottom:555.673467pt;}
.y74{bottom:555.713467pt;}
.y98{bottom:555.721467pt;}
.yf{bottom:555.729467pt;}
.y14a{bottom:556.057200pt;}
.y36{bottom:557.357220pt;}
.y115{bottom:567.104533pt;}
.y117{bottom:567.106000pt;}
.y35{bottom:569.091575pt;}
.yd2{bottom:574.344133pt;}
.y73{bottom:574.384133pt;}
.y97{bottom:574.392133pt;}
.ye{bottom:574.400133pt;}
.y149{bottom:575.365200pt;}
.y34{bottom:580.744864pt;}
.y113{bottom:586.412533pt;}
.y148{bottom:589.765200pt;}
.y33{bottom:592.398153pt;}
.yd1{bottom:593.014800pt;}
.yb9{bottom:593.034800pt;}
.y72{bottom:593.054800pt;}
.yd{bottom:593.062800pt;}
.y112{bottom:600.809467pt;}
.y114{bottom:600.812533pt;}
.y32{bottom:604.132508pt;}
.y147{bottom:604.165200pt;}
.yeb{bottom:609.511733pt;}
.yd0{bottom:611.685467pt;}
.yb8{bottom:611.705467pt;}
.y71{bottom:611.725467pt;}
.yc{bottom:611.733467pt;}
.y31{bottom:615.785796pt;}
.y146{bottom:618.563733pt;}
.y30{bottom:627.439085pt;}
.ycf{bottom:630.356133pt;}
.y96{bottom:630.372133pt;}
.yb7{bottom:630.376133pt;}
.yb{bottom:630.392133pt;}
.y70{bottom:630.396133pt;}
.y111{bottom:634.517467pt;}
.y145{bottom:637.871733pt;}
.y2f{bottom:639.173440pt;}
.y110{bottom:648.917467pt;}
.yce{bottom:649.026800pt;}
.y95{bottom:649.042800pt;}
.yb6{bottom:649.046800pt;}
.ya{bottom:649.062800pt;}
.y6f{bottom:649.066800pt;}
.y2e{bottom:650.826728pt;}
.y144{bottom:652.270267pt;}
.y2d{bottom:662.480017pt;}
.y17c{bottom:665.511733pt;}
.y6e{bottom:667.697467pt;}
.y94{bottom:667.713467pt;}
.yb5{bottom:667.717467pt;}
.y196{bottom:667.721467pt;}
.y9{bottom:667.733467pt;}
.y17f{bottom:667.737467pt;}
.y10f{bottom:668.224000pt;}
.y142{bottom:671.578267pt;}
.y2c{bottom:674.214372pt;}
.y2b{bottom:685.867661pt;}
.y141{bottom:685.976667pt;}
.y143{bottom:685.978267pt;}
.y6d{bottom:686.368133pt;}
.y93{bottom:686.384133pt;}
.yb4{bottom:686.388133pt;}
.y8{bottom:686.392133pt;}
.y10e{bottom:687.532000pt;}
.y2a{bottom:697.520949pt;}
.y10d{bottom:701.932000pt;}
.y6c{bottom:705.038800pt;}
.y92{bottom:705.054800pt;}
.yb3{bottom:705.058800pt;}
.y7{bottom:705.062800pt;}
.y13f{bottom:705.284667pt;}
.y10c{bottom:716.332000pt;}
.y13e{bottom:719.684667pt;}
.y6b{bottom:723.709467pt;}
.y91{bottom:723.725467pt;}
.yb2{bottom:723.729467pt;}
.y6{bottom:723.733467pt;}
.y10b{bottom:730.730533pt;}
.y13d{bottom:734.083200pt;}
.y140{bottom:734.084667pt;}
.y28{bottom:738.511141pt;}
.y190{bottom:740.178400pt;}
.y6a{bottom:742.380133pt;}
.y195{bottom:742.384133pt;}
.y90{bottom:742.396133pt;}
.yb1{bottom:742.400133pt;}
.y5{bottom:742.404133pt;}
.y10a{bottom:750.038400pt;}
.y13c{bottom:753.391333pt;}
.y69{bottom:761.050800pt;}
.yb0{bottom:761.053333pt;}
.y194{bottom:761.054800pt;}
.y8f{bottom:761.066800pt;}
.y109{bottom:764.438400pt;}
.y13b{bottom:767.791333pt;}
.y108{bottom:778.838533pt;}
.y68{bottom:779.721467pt;}
.yaf{bottom:779.724000pt;}
.y193{bottom:779.725467pt;}
.y13a{bottom:782.191333pt;}
.y107{bottom:793.236933pt;}
.y4{bottom:793.393733pt;}
.y138{bottom:796.591333pt;}
.y67{bottom:798.392133pt;}
.yae{bottom:798.394667pt;}
.y192{bottom:798.396133pt;}
.y106{bottom:807.636933pt;}
.y3{bottom:808.057733pt;}
.y137{bottom:810.991333pt;}
.y66{bottom:817.062800pt;}
.yad{bottom:817.065333pt;}
.y191{bottom:817.066800pt;}
.y136{bottom:825.389733pt;}
.y139{bottom:825.391333pt;}
.y105{bottom:826.944933pt;}
.y65{bottom:835.733467pt;}
.yac{bottom:835.736000pt;}
.y104{bottom:841.344933pt;}
.y2{bottom:841.923067pt;}
.y135{bottom:844.697733pt;}
.yee{bottom:846.185600pt;}
.y64{bottom:854.404133pt;}
.yab{bottom:858.249333pt;}
.y134{bottom:859.097733pt;}
.yed{bottom:859.517600pt;}
.y1{bottom:860.591067pt;}
.y103{bottom:864.431067pt;}
.y8e{bottom:904.761067pt;}
.y63{bottom:904.761200pt;}
.hb{height:23.578125pt;}
.he{height:28.143642pt;}
.h16{height:36.778667pt;}
.h12{height:36.864000pt;}
.hd{height:37.171732pt;}
.h27{height:40.368000pt;}
.h10{height:40.624844pt;}
.h4{height:41.376000pt;}
.h5{height:41.472000pt;}
.h28{height:45.170064pt;}
.h25{height:45.175931pt;}
.h20{height:45.935723pt;}
.h2d{height:45.946389pt;}
.h1f{height:45.957589pt;}
.h22{height:45.967723pt;}
.h1c{height:45.968256pt;}
.h23{height:45.968789pt;}
.h24{height:45.974123pt;}
.h21{height:45.974656pt;}
.h26{height:45.980523pt;}
.h11{height:47.611425pt;}
.ha{height:49.338667pt;}
.h7{height:50.688000pt;}
.h13{height:56.183957pt;}
.h29{height:56.199424pt;}
.h2e{height:56.199957pt;}
.h9{height:56.215424pt;}
.h8{height:56.231957pt;}
.h19{height:56.247424pt;}
.h17{height:56.247957pt;}
.h1a{height:56.253824pt;}
.h2f{height:56.263957pt;}
.h2c{height:56.311424pt;}
.h18{height:56.311957pt;}
.h1b{height:56.327424pt;}
.h15{height:56.343424pt;}
.h14{height:56.343957pt;}
.h2b{height:56.375424pt;}
.h1e{height:56.391424pt;}
.h2a{height:56.455424pt;}
.h1d{height:56.471424pt;}
.hf{height:56.498890pt;}
.h3{height:58.309333pt;}
.h2{height:59.765333pt;}
.h6{height:64.512000pt;}
.hc{height:796.796632pt;}
.h0{height:959.999733pt;}
.h1{height:960.000000pt;}
.w2{width:662.854601pt;}
.w1{width:672.666667pt;}
.w0{width:672.755733pt;}
.x0{left:0.000000pt;}
.x8{left:4.949423pt;}
.x7{left:13.333333pt;}
.x9{left:28.799890pt;}
.xb{left:37.714141pt;}
.x5{left:68.031467pt;}
.x13{left:73.836667pt;}
.x14{left:86.194933pt;}
.x1c{left:88.052133pt;}
.x1d{left:89.474133pt;}
.x17{left:90.622933pt;}
.x15{left:94.582933pt;}
.x1b{left:97.023200pt;}
.x6{left:98.276533pt;}
.xf{left:102.047200pt;}
.x26{left:116.431867pt;}
.x1{left:120.948800pt;}
.x21{left:122.040400pt;}
.x22{left:126.684400pt;}
.x1f{left:128.598667pt;}
.x27{left:130.666000pt;}
.x10{left:132.293867pt;}
.x19{left:145.082133pt;}
.x2{left:152.391467pt;}
.x16{left:162.142933pt;}
.x20{left:196.158667pt;}
.x12{left:210.379733pt;}
.x1a{left:214.472133pt;}
.x25{left:235.771867pt;}
.x4{left:237.398667pt;}
.x24{left:248.481867pt;}
.xe{left:269.579067pt;}
.x3{left:279.950667pt;}
.x1e{left:298.043600pt;}
.xc{left:302.556935pt;}
.x11{left:311.914133pt;}
.xa{left:331.351110pt;}
.xd{left:346.068533pt;}
.x18{left:389.818933pt;}
.x23{left:423.852400pt;}
}




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