
    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_ae8cd4624bd4e1aad4e14537.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.137000;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_25030e505adbdee3777d74c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.121000;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_bc8226c6f743ca4ab5ce5bd9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.137000;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_de0550e0eb3568fcf4fe0518.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.137000;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_415ea82a4c3009f8a356cc43.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.121000;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_c9fe99e08e2be1400b1e39e7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6fdbd1ba391c76ede999696f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_74d27338a35b43bf2605f173.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_24a23c4a25e0c28a6787efaf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893066;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_bc8226c6f743ca4ab5ce5bd9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.137000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-22.477200px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.477200px;}
.ls68{letter-spacing:-8.235000px;}
.ls74{letter-spacing:-3.375000px;}
.ls3e{letter-spacing:-2.160000px;}
.ls5b{letter-spacing:-1.620000px;}
.ls5c{letter-spacing:-1.485000px;}
.ls5d{letter-spacing:-1.215000px;}
.ls5e{letter-spacing:-1.147500px;}
.ls60{letter-spacing:-1.080000px;}
.ls57{letter-spacing:-1.012500px;}
.ls67{letter-spacing:-0.945000px;}
.ls55{letter-spacing:-0.877500px;}
.ls5f{letter-spacing:-0.865762px;}
.ls50{letter-spacing:-0.810000px;}
.lsb{letter-spacing:-0.756000px;}
.ls59{letter-spacing:-0.742500px;}
.ls64{letter-spacing:-0.702000px;}
.ls54{letter-spacing:-0.675000px;}
.ls27{letter-spacing:-0.648000px;}
.ls61{letter-spacing:-0.607500px;}
.ls62{letter-spacing:-0.590292px;}
.ls52{letter-spacing:-0.540000px;}
.ls65{letter-spacing:-0.486000px;}
.ls2b{letter-spacing:-0.472500px;}
.ls51{letter-spacing:-0.472234px;}
.ls4c{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.405000px;}
.ls6b{letter-spacing:-0.384000px;}
.ls3b{letter-spacing:-0.378000px;}
.ls63{letter-spacing:-0.377784px;}
.ls18{letter-spacing:-0.337500px;}
.ls1a{letter-spacing:-0.324000px;}
.ls53{letter-spacing:-0.314822px;}
.ls19{letter-spacing:-0.270000px;}
.ls4e{letter-spacing:-0.220374px;}
.lsf{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.202500px;}
.ls6d{letter-spacing:-0.180000px;}
.ls6c{letter-spacing:-0.168000px;}
.lse{letter-spacing:-0.162000px;}
.ls3f{letter-spacing:-0.157411px;}
.ls15{letter-spacing:-0.156000px;}
.ls6a{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.126000px;}
.ls2f{letter-spacing:-0.125928px;}
.ls8{letter-spacing:-0.123000px;}
.ls4{letter-spacing:-0.120000px;}
.ls3d{letter-spacing:-0.118058px;}
.lsc{letter-spacing:-0.108000px;}
.ls2c{letter-spacing:-0.078706px;}
.ls17{letter-spacing:-0.067500px;}
.lsa{letter-spacing:-0.063000px;}
.ls2e{letter-spacing:-0.062964px;}
.lsd{letter-spacing:-0.054000px;}
.ls6{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.005400px;}
.ls25{letter-spacing:0.027000px;}
.ls46{letter-spacing:0.031482px;}
.ls56{letter-spacing:0.039353px;}
.ls3{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.067500px;}
.ls69{letter-spacing:0.101250px;}
.ls14{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.118058px;}
.ls3c{letter-spacing:0.135000px;}
.ls22{letter-spacing:0.147600px;}
.ls4d{letter-spacing:0.157410px;}
.ls2{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.202500px;}
.ls26{letter-spacing:0.216000px;}
.ls3a{letter-spacing:0.251856px;}
.ls1c{letter-spacing:0.270000px;}
.ls23{letter-spacing:0.297000px;}
.ls75{letter-spacing:0.303750px;}
.ls38{letter-spacing:0.314822px;}
.ls35{letter-spacing:0.324000px;}
.ls12{letter-spacing:0.329400px;}
.ls1f{letter-spacing:0.337500px;}
.ls66{letter-spacing:0.351000px;}
.ls39{letter-spacing:0.354175px;}
.ls20{letter-spacing:0.371250px;}
.ls36{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.405000px;}
.ls1{letter-spacing:0.432000px;}
.ls4b{letter-spacing:0.432881px;}
.ls29{letter-spacing:0.472500px;}
.ls40{letter-spacing:0.486000px;}
.ls28{letter-spacing:0.506250px;}
.ls11{letter-spacing:0.540000px;}
.ls72{letter-spacing:0.573750px;}
.ls32{letter-spacing:0.594000px;}
.ls31{letter-spacing:0.607500px;}
.ls10{letter-spacing:0.630000px;}
.ls48{letter-spacing:0.648000px;}
.ls47{letter-spacing:0.742500px;}
.ls34{letter-spacing:0.756000px;}
.ls0{letter-spacing:0.776250px;}
.ls5{letter-spacing:0.810000px;}
.ls71{letter-spacing:0.828000px;}
.ls33{letter-spacing:0.864000px;}
.ls45{letter-spacing:0.881496px;}
.ls73{letter-spacing:1.008000px;}
.ls70{letter-spacing:1.012500px;}
.ls58{letter-spacing:1.080000px;}
.ls79{letter-spacing:1.147500px;}
.ls7b{letter-spacing:1.152000px;}
.ls30{letter-spacing:1.282500px;}
.ls43{letter-spacing:1.296000px;}
.ls42{letter-spacing:1.404000px;}
.ls41{letter-spacing:1.485000px;}
.ls5a{letter-spacing:2.089200px;}
.ls44{letter-spacing:2.592000px;}
.ls6e{letter-spacing:3.825000px;}
.ls49{letter-spacing:4.806000px;}
.ls4a{letter-spacing:5.724000px;}
.ls4f{letter-spacing:12.555000px;}
.ls37{letter-spacing:12.555600px;}
.ls2a{letter-spacing:12.580800px;}
.ls24{letter-spacing:13.365000px;}
.ls7a{letter-spacing:38.420400px;}
.ls78{letter-spacing:71.325600px;}
.ls76{letter-spacing:71.326200px;}
.ls77{letter-spacing:72.675600px;}
.ls1b{letter-spacing:257.362800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd6{word-spacing:-47.616000px;}
.ws118{word-spacing:-26.784000px;}
.wsd7{word-spacing:-20.832000px;}
.wsa3{word-spacing:-19.224000px;}
.wsa2{word-spacing:-18.306000px;}
.wse4{word-spacing:-17.651250px;}
.ws9e{word-spacing:-17.617500px;}
.ws7b{word-spacing:-17.381250px;}
.ws4e{word-spacing:-16.875000px;}
.ws4d{word-spacing:-16.740000px;}
.ws87{word-spacing:-16.672500px;}
.ws8a{word-spacing:-16.605000px;}
.ws10f{word-spacing:-16.537500px;}
.wsce{word-spacing:-16.132500px;}
.ws94{word-spacing:-16.092000px;}
.wsc8{word-spacing:-16.065000px;}
.wsef{word-spacing:-15.930000px;}
.wsfd{word-spacing:-15.457500px;}
.wsc1{word-spacing:-15.390000px;}
.ws116{word-spacing:-15.052500px;}
.wsda{word-spacing:-15.000000px;}
.ws93{word-spacing:-14.985000px;}
.ws0{word-spacing:-14.880000px;}
.ws89{word-spacing:-14.715000px;}
.ws111{word-spacing:-14.580000px;}
.ws90{word-spacing:-13.986000px;}
.ws101{word-spacing:-13.972500px;}
.ws1f{word-spacing:-13.662000px;}
.ws1d{word-spacing:-13.608000px;}
.wsc3{word-spacing:-13.554000px;}
.wsf0{word-spacing:-13.432500px;}
.ws2{word-spacing:-13.392000px;}
.wsb0{word-spacing:-13.338000px;}
.wsf2{word-spacing:-13.297500px;}
.ws1c{word-spacing:-13.284000px;}
.wsa0{word-spacing:-13.230000px;}
.ws1e{word-spacing:-13.176000px;}
.ws91{word-spacing:-13.122000px;}
.ws112{word-spacing:-12.960000px;}
.ws4f{word-spacing:-12.852000px;}
.wsdb{word-spacing:-12.750000px;}
.ws113{word-spacing:-12.622500px;}
.ws103{word-spacing:-12.555000px;}
.ws10e{word-spacing:-12.420000px;}
.wse6{word-spacing:-12.015000px;}
.wsde{word-spacing:-12.000000px;}
.ws114{word-spacing:-11.880000px;}
.wsfe{word-spacing:-11.542500px;}
.wsee{word-spacing:-11.137500px;}
.ws10a{word-spacing:-10.935000px;}
.ws9f{word-spacing:-10.271081px;}
.ws70{word-spacing:-10.192375px;}
.ws6f{word-spacing:-10.153022px;}
.ws5e{word-spacing:-9.956258px;}
.wsb9{word-spacing:-9.877553px;}
.ws1b{word-spacing:-9.838200px;}
.ws5d{word-spacing:-9.759494px;}
.ws88{word-spacing:-9.720142px;}
.ws8b{word-spacing:-9.680789px;}
.wsb4{word-spacing:-9.523378px;}
.ws102{word-spacing:-9.382500px;}
.wsaf{word-spacing:-9.365966px;}
.wsc7{word-spacing:-9.247908px;}
.ws115{word-spacing:-9.045000px;}
.wsc2{word-spacing:-8.972438px;}
.wsdc{word-spacing:-8.925000px;}
.wsf5{word-spacing:-8.910000px;}
.wsf1{word-spacing:-8.842500px;}
.ws92{word-spacing:-8.751996px;}
.wscf{word-spacing:-8.640000px;}
.ws117{word-spacing:-8.235000px;}
.ws71{word-spacing:-8.122356px;}
.wsa1{word-spacing:-8.027910px;}
.wsf9{word-spacing:-7.965000px;}
.ws95{word-spacing:-7.901982px;}
.wsf4{word-spacing:-7.897500px;}
.ws1{word-spacing:-7.870500px;}
.ws5f{word-spacing:-7.807536px;}
.ws60{word-spacing:-7.744572px;}
.wsa4{word-spacing:-7.650126px;}
.wsc9{word-spacing:-7.492716px;}
.wsf7{word-spacing:-7.087500px;}
.ws100{word-spacing:-7.020000px;}
.wse8{word-spacing:-6.952500px;}
.wsf6{word-spacing:-6.480000px;}
.ws105{word-spacing:-6.142500px;}
.ws10d{word-spacing:-6.007500px;}
.ws110{word-spacing:-5.805000px;}
.wsff{word-spacing:-5.535000px;}
.ws108{word-spacing:-5.062500px;}
.ws10b{word-spacing:-4.995000px;}
.ws106{word-spacing:-4.522500px;}
.wsed{word-spacing:-4.320000px;}
.wsf8{word-spacing:-4.185000px;}
.ws104{word-spacing:-4.117500px;}
.wsea{word-spacing:-3.982500px;}
.ws107{word-spacing:-3.915000px;}
.ws109{word-spacing:-2.902500px;}
.wsfc{word-spacing:-2.700000px;}
.ws22{word-spacing:-2.565000px;}
.ws2b{word-spacing:-2.497500px;}
.wsd8{word-spacing:-2.496000px;}
.ws84{word-spacing:-2.362500px;}
.ws44{word-spacing:-2.295000px;}
.ws3c{word-spacing:-2.227500px;}
.ws28{word-spacing:-2.160000px;}
.wsa8{word-spacing:-2.092500px;}
.ws14{word-spacing:-2.052000px;}
.ws82{word-spacing:-2.025000px;}
.ws12{word-spacing:-1.998000px;}
.ws75{word-spacing:-1.957500px;}
.ws6e{word-spacing:-1.944000px;}
.ws119{word-spacing:-1.920000px;}
.ws11{word-spacing:-1.890000px;}
.ws99{word-spacing:-1.836000px;}
.ws29{word-spacing:-1.822500px;}
.ws30{word-spacing:-1.782000px;}
.ws3a{word-spacing:-1.755000px;}
.ws6a{word-spacing:-1.728000px;}
.wsbb{word-spacing:-1.687500px;}
.wse5{word-spacing:-1.680000px;}
.ws35{word-spacing:-1.674000px;}
.ws7d{word-spacing:-1.620000px;}
.wsd4{word-spacing:-1.575000px;}
.wsb2{word-spacing:-1.566000px;}
.wsbe{word-spacing:-1.552500px;}
.wsae{word-spacing:-1.512000px;}
.wsd5{word-spacing:-1.500000px;}
.ws67{word-spacing:-1.485000px;}
.ws31{word-spacing:-1.458000px;}
.wsec{word-spacing:-1.440000px;}
.wsc4{word-spacing:-1.417500px;}
.wsc{word-spacing:-1.404000px;}
.ws3{word-spacing:-1.350000px;}
.ws85{word-spacing:-1.296000px;}
.ws64{word-spacing:-1.282500px;}
.ws33{word-spacing:-1.242000px;}
.wsb6{word-spacing:-1.215000px;}
.wsd9{word-spacing:-1.170000px;}
.ws2c{word-spacing:-1.147500px;}
.ws3f{word-spacing:-1.080000px;}
.ws15{word-spacing:-1.026000px;}
.ws83{word-spacing:-1.014000px;}
.ws2e{word-spacing:-1.012500px;}
.wscc{word-spacing:-0.972000px;}
.ws39{word-spacing:-0.945000px;}
.wsd3{word-spacing:-0.936000px;}
.wsa{word-spacing:-0.918000px;}
.ws5{word-spacing:-0.877500px;}
.ws9b{word-spacing:-0.864000px;}
.ws9{word-spacing:-0.819000px;}
.ws57{word-spacing:-0.810000px;}
.ws6{word-spacing:-0.799500px;}
.ws5b{word-spacing:-0.756000px;}
.wsd0{word-spacing:-0.742500px;}
.ws17{word-spacing:-0.702000px;}
.ws8d{word-spacing:-0.675000px;}
.wsfa{word-spacing:-0.630000px;}
.wsb7{word-spacing:-0.607500px;}
.ws38{word-spacing:-0.594000px;}
.ws16{word-spacing:-0.540000px;}
.ws79{word-spacing:-0.486000px;}
.ws63{word-spacing:-0.472500px;}
.ws10{word-spacing:-0.432000px;}
.wsca{word-spacing:-0.405000px;}
.ws81{word-spacing:-0.337500px;}
.wsaa{word-spacing:-0.324000px;}
.ws20{word-spacing:-0.315000px;}
.ws3e{word-spacing:-0.270000px;}
.ws6b{word-spacing:-0.216000px;}
.ws40{word-spacing:-0.202500px;}
.ws53{word-spacing:-0.162000px;}
.wsb1{word-spacing:-0.135000px;}
.ws97{word-spacing:-0.108000px;}
.ws80{word-spacing:-0.067500px;}
.ws9c{word-spacing:-0.054000px;}
.ws4{word-spacing:0.000000px;}
.ws54{word-spacing:0.054000px;}
.wsa9{word-spacing:0.067500px;}
.ws1a{word-spacing:0.108000px;}
.ws2a{word-spacing:0.135000px;}
.ws10c{word-spacing:0.144000px;}
.ws69{word-spacing:0.162000px;}
.ws72{word-spacing:0.202500px;}
.ws6c{word-spacing:0.216000px;}
.ws37{word-spacing:0.270000px;}
.ws19{word-spacing:0.324000px;}
.ws50{word-spacing:0.337500px;}
.wse{word-spacing:0.378000px;}
.ws47{word-spacing:0.405000px;}
.ws59{word-spacing:0.432000px;}
.ws27{word-spacing:0.472500px;}
.wsb3{word-spacing:0.486000px;}
.ws32{word-spacing:0.540000px;}
.ws7{word-spacing:0.567000px;}
.ws34{word-spacing:0.594000px;}
.ws65{word-spacing:0.607500px;}
.wsbc{word-spacing:0.648000px;}
.ws41{word-spacing:0.675000px;}
.ws36{word-spacing:0.702000px;}
.ws7c{word-spacing:0.742500px;}
.ws55{word-spacing:0.756000px;}
.ws76{word-spacing:0.810000px;}
.ws5c{word-spacing:0.864000px;}
.ws3d{word-spacing:0.877500px;}
.ws8f{word-spacing:0.918000px;}
.ws61{word-spacing:0.945000px;}
.ws4b{word-spacing:1.012500px;}
.ws24{word-spacing:1.080000px;}
.ws58{word-spacing:1.188000px;}
.ws43{word-spacing:1.215000px;}
.ws6d{word-spacing:1.242000px;}
.ws74{word-spacing:1.282500px;}
.wsab{word-spacing:1.296000px;}
.ws18{word-spacing:1.350000px;}
.ws5a{word-spacing:1.404000px;}
.ws86{word-spacing:1.458000px;}
.wsd2{word-spacing:1.485000px;}
.ws2f{word-spacing:1.512000px;}
.ws96{word-spacing:1.552500px;}
.ws56{word-spacing:1.566000px;}
.wsbd{word-spacing:1.620000px;}
.ws45{word-spacing:1.687500px;}
.ws4a{word-spacing:1.755000px;}
.wsdd{word-spacing:1.776000px;}
.ws42{word-spacing:1.822500px;}
.ws78{word-spacing:1.836000px;}
.ws13{word-spacing:1.890000px;}
.ws68{word-spacing:1.944000px;}
.wsa5{word-spacing:1.957500px;}
.wsf{word-spacing:1.998000px;}
.wsd1{word-spacing:2.025000px;}
.wsb{word-spacing:2.052000px;}
.wsdf{word-spacing:2.064000px;}
.ws77{word-spacing:2.092500px;}
.wsb8{word-spacing:2.106000px;}
.ws3b{word-spacing:2.160000px;}
.ws52{word-spacing:2.214000px;}
.wsbf{word-spacing:2.227500px;}
.ws48{word-spacing:2.295000px;}
.wsc6{word-spacing:2.322000px;}
.ws62{word-spacing:2.362500px;}
.ws8{word-spacing:2.394000px;}
.ws51{word-spacing:2.430000px;}
.ws23{word-spacing:2.497500px;}
.ws7a{word-spacing:2.538000px;}
.ws2d{word-spacing:2.565000px;}
.wscb{word-spacing:2.632500px;}
.ws4c{word-spacing:2.700000px;}
.ws46{word-spacing:2.767500px;}
.ws98{word-spacing:2.862000px;}
.ws8c{word-spacing:2.902500px;}
.wse3{word-spacing:2.907000px;}
.wsd{word-spacing:2.970000px;}
.ws49{word-spacing:3.037500px;}
.wsfb{word-spacing:3.105000px;}
.wsc0{word-spacing:3.172500px;}
.wsb5{word-spacing:3.240000px;}
.wsc5{word-spacing:3.307500px;}
.ws8e{word-spacing:3.510000px;}
.wse0{word-spacing:3.600000px;}
.ws9a{word-spacing:3.618000px;}
.ws66{word-spacing:3.645000px;}
.ws25{word-spacing:3.780000px;}
.wse1{word-spacing:3.825000px;}
.ws7e{word-spacing:3.915000px;}
.ws7f{word-spacing:3.982500px;}
.ws26{word-spacing:4.050000px;}
.wsba{word-spacing:4.117500px;}
.wsa6{word-spacing:4.252500px;}
.ws73{word-spacing:4.320000px;}
.wsac{word-spacing:4.374000px;}
.wsa7{word-spacing:5.197500px;}
.ws9d{word-spacing:6.750000px;}
.wse9{word-spacing:7.222500px;}
.wse2{word-spacing:12.750000px;}
.wscd{word-spacing:13.824000px;}
.wsad{word-spacing:38.286000px;}
.ws21{word-spacing:58.500000px;}
.wsf3{word-spacing:69.457500px;}
.wseb{word-spacing:103.005000px;}
.wse7{word-spacing:136.485000px;}
._14{margin-left:-25.512000px;}
._d{margin-left:-18.291000px;}
._11{margin-left:-14.326950px;}
._10{margin-left:-13.059750px;}
._12{margin-left:-10.845000px;}
._16{margin-left:-9.821250px;}
._7{margin-left:-8.748000px;}
._9{margin-left:-7.020000px;}
._3{margin-left:-5.872500px;}
._2{margin-left:-3.888000px;}
._1{margin-left:-2.396250px;}
._0{margin-left:-1.356750px;}
._4{width:1.086750px;}
._a{width:2.435700px;}
._13{width:4.482000px;}
._f{width:7.137150px;}
._8{width:8.955000px;}
._e{width:10.634580px;}
._6{width:12.070800px;}
._5{width:14.338800px;}
._b{width:15.421800px;}
._17{width:53.748000px;}
._15{width:55.784250px;}
._c{width:59.319000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:31.482000px;}
.fs10{font-size:35.700000px;}
.fs2{font-size:39.352800px;}
.fs7{font-size:45.000000px;}
.fse{font-size:48.000000px;}
.fsf{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:61.500000px;}
.fs4{font-size:63.000000px;}
.fs1{font-size:67.500000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fsc{font-size:84.000000px;}
.fsd{font-size:90.000000px;}
.fs11{font-size:96.000000px;}
.fsb{font-size:108.000000px;}
.fsa{font-size:192.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:54.605400px;}
.y10b{bottom:97.369950px;}
.ycd{bottom:97.370100px;}
.y24{bottom:97.370250px;}
.y6e{bottom:97.564050px;}
.y15c{bottom:98.102850px;}
.y122{bottom:98.767200px;}
.ya6{bottom:101.865750px;}
.ycc{bottom:113.870100px;}
.y23{bottom:113.870250px;}
.ya5{bottom:113.870400px;}
.y19a{bottom:118.017900px;}
.y6d{bottom:118.189050px;}
.y140{bottom:118.333950px;}
.y82{bottom:118.365750px;}
.y17b{bottom:118.685100px;}
.y15b{bottom:118.727850px;}
.y121{bottom:119.392200px;}
.y22{bottom:130.370250px;}
.y81{bottom:130.370400px;}
.ycb{bottom:134.865600px;}
.yc3{bottom:134.865750px;}
.y199{bottom:138.665700px;}
.y6c{bottom:138.814050px;}
.y120{bottom:140.017200px;}
.y10a{bottom:144.619950px;}
.y4b{bottom:146.870250px;}
.y80{bottom:146.870400px;}
.y13f{bottom:149.610300px;}
.y15a{bottom:149.665350px;}
.y21{bottom:151.365750px;}
.y6b{bottom:159.438900px;}
.y109{bottom:160.369950px;}
.y17a{bottom:160.625250px;}
.y4a{bottom:163.370250px;}
.y20{bottom:163.370400px;}
.y9f{bottom:167.865750px;}
.y11f{bottom:169.146150px;}
.y198{bottom:169.626150px;}
.y159{bottom:170.290350px;}
.y13e{bottom:170.574300px;}
.y108{bottom:176.119950px;}
.y49{bottom:179.870250px;}
.y1f{bottom:179.870400px;}
.y6a{bottom:180.063900px;}
.y9d{bottom:184.365750px;}
.ya4{bottom:184.365900px;}
.yc1{bottom:184.366050px;}
.y11e{bottom:189.771150px;}
.y197{bottom:190.274100px;}
.y13d{bottom:191.538150px;}
.y107{bottom:191.869950px;}
.y48{bottom:196.370250px;}
.y1e{bottom:196.370400px;}
.ya3{bottom:196.370550px;}
.yc0{bottom:196.370700px;}
.y69{bottom:200.688900px;}
.yc5{bottom:200.865750px;}
.y158{bottom:201.227850px;}
.y196{bottom:210.921900px;}
.y47{bottom:212.870250px;}
.y1d{bottom:212.870400px;}
.ya2{bottom:212.870550px;}
.ybf{bottom:212.870700px;}
.yc2{bottom:217.365900px;}
.y11d{bottom:218.900100px;}
.y68{bottom:221.313900px;}
.y157{bottom:221.852850px;}
.y13c{bottom:222.814650px;}
.y179{bottom:223.190250px;}
.y106{bottom:223.369950px;}
.y46{bottom:229.370250px;}
.y1c{bottom:229.370400px;}
.ybe{bottom:229.370700px;}
.yc9{bottom:233.865600px;}
.y9c{bottom:233.865900px;}
.ya1{bottom:233.866050px;}
.y11c{bottom:239.525100px;}
.y195{bottom:241.882350px;}
.y67{bottom:241.938900px;}
.y13b{bottom:243.778500px;}
.y105{bottom:243.915450px;}
.y178{bottom:244.505400px;}
.y45{bottom:245.870250px;}
.y1b{bottom:245.870400px;}
.y9b{bottom:245.870550px;}
.ybd{bottom:245.870700px;}
.yc7{bottom:250.365750px;}
.ya0{bottom:250.366200px;}
.y156{bottom:252.790350px;}
.y104{bottom:259.665450px;}
.y11b{bottom:260.150100px;}
.y44{bottom:262.370250px;}
.y1a{bottom:262.370400px;}
.y9a{bottom:262.370550px;}
.ybc{bottom:262.370700px;}
.y194{bottom:262.530300px;}
.y66{bottom:262.563900px;}
.y13a{bottom:264.742500px;}
.y177{bottom:265.820400px;}
.yb4{bottom:266.865750px;}
.yf1{bottom:272.080350px;}
.y155{bottom:273.415350px;}
.y43{bottom:278.870250px;}
.y19{bottom:278.870400px;}
.y99{bottom:278.870550px;}
.y103{bottom:280.210950px;}
.y193{bottom:283.178100px;}
.y65{bottom:283.188900px;}
.yc8{bottom:283.365750px;}
.ybb{bottom:283.366200px;}
.y154{bottom:294.040350px;}
.y42{bottom:295.370250px;}
.y18{bottom:295.370400px;}
.y98{bottom:295.370550px;}
.yba{bottom:295.370700px;}
.y176{bottom:295.639500px;}
.y102{bottom:295.960950px;}
.y139{bottom:296.018850px;}
.yae{bottom:299.865750px;}
.y11a{bottom:301.400100px;}
.y64{bottom:303.813900px;}
.y41{bottom:311.870250px;}
.y17{bottom:311.870400px;}
.y97{bottom:311.870550px;}
.yb9{bottom:311.870700px;}
.y192{bottom:314.138550px;}
.yc6{bottom:316.365900px;}
.y101{bottom:316.506300px;}
.y175{bottom:316.954500px;}
.y138{bottom:316.982850px;}
.y63{bottom:324.438900px;}
.y153{bottom:324.977850px;}
.y40{bottom:328.370250px;}
.y16{bottom:328.370400px;}
.y96{bottom:328.370550px;}
.yb8{bottom:328.370700px;}
.y100{bottom:332.256300px;}
.yca{bottom:332.865750px;}
.y191{bottom:334.786500px;}
.y174{bottom:338.269650px;}
.yf0{bottom:340.330350px;}
.y3f{bottom:344.870250px;}
.y15{bottom:344.870400px;}
.y95{bottom:344.870550px;}
.yb7{bottom:344.870700px;}
.y62{bottom:345.063900px;}
.y152{bottom:345.602850px;}
.y137{bottom:348.259200px;}
.y9e{bottom:349.366050px;}
.y190{bottom:355.434300px;}
.y173{bottom:359.584650px;}
.y8a{bottom:361.370250px;}
.y14{bottom:361.370400px;}
.y94{bottom:361.370550px;}
.yb6{bottom:361.370700px;}
.y119{bottom:361.466550px;}
.y61{bottom:365.688900px;}
.y3e{bottom:365.865750px;}
.y136{bottom:369.223050px;}
.yef{bottom:371.830350px;}
.y18f{bottom:376.082250px;}
.y151{bottom:376.540350px;}
.y89{bottom:377.870250px;}
.y13{bottom:377.870400px;}
.y93{bottom:377.870550px;}
.yff{bottom:379.506300px;}
.y172{bottom:380.899800px;}
.y118{bottom:382.091550px;}
.yad{bottom:382.365900px;}
.yb5{bottom:382.366200px;}
.y60{bottom:386.313900px;}
.y88{bottom:394.370250px;}
.y12{bottom:394.370400px;}
.yc4{bottom:394.370550px;}
.yac{bottom:394.370700px;}
.yfe{bottom:395.256300px;}
.y150{bottom:397.165350px;}
.y3d{bottom:398.865900px;}
.y92{bottom:398.866050px;}
.y135{bottom:400.499550px;}
.y117{bottom:402.716550px;}
.yee{bottom:404.830350px;}
.y5f{bottom:406.938900px;}
.y18e{bottom:407.042700px;}
.y171{bottom:410.718900px;}
.y87{bottom:410.870250px;}
.y11{bottom:410.870400px;}
.y3c{bottom:410.870550px;}
.y91{bottom:410.870700px;}
.yfd{bottom:411.006300px;}
.y14f{bottom:417.790350px;}
.y134{bottom:421.463400px;}
.yfc{bottom:426.756300px;}
.y86{bottom:427.370250px;}
.y10{bottom:427.370400px;}
.y3b{bottom:427.370550px;}
.y90{bottom:427.370700px;}
.y5e{bottom:427.563900px;}
.y18d{bottom:427.690500px;}
.y116{bottom:431.845500px;}
.yb3{bottom:431.866200px;}
.y170{bottom:432.033900px;}
.yed{bottom:437.830350px;}
.y133{bottom:442.427400px;}
.yfb{bottom:442.506300px;}
.y85{bottom:443.870250px;}
.yf{bottom:443.870400px;}
.y3a{bottom:443.870550px;}
.y8f{bottom:443.870700px;}
.y14e{bottom:446.919300px;}
.y5d{bottom:448.188900px;}
.y18c{bottom:448.338450px;}
.y115{bottom:452.470500px;}
.y16f{bottom:453.349050px;}
.yfa{bottom:458.256300px;}
.y7f{bottom:460.370400px;}
.y39{bottom:460.370550px;}
.y8e{bottom:460.370700px;}
.y84{bottom:464.865750px;}
.ye{bottom:464.865900px;}
.y14d{bottom:467.544300px;}
.y5c{bottom:468.813900px;}
.y114{bottom:473.095500px;}
.y132{bottom:473.703750px;}
.yf9{bottom:474.006300px;}
.y16e{bottom:474.664050px;}
.y7e{bottom:476.870400px;}
.y8d{bottom:476.870700px;}
.y18b{bottom:479.298900px;}
.y38{bottom:481.366050px;}
.y14c{bottom:488.169300px;}
.ye5{bottom:488.754750px;}
.y5b{bottom:489.438900px;}
.y7d{bottom:493.370400px;}
.y8c{bottom:493.370700px;}
.y131{bottom:494.667750px;}
.y18a{bottom:499.946700px;}
.y113{bottom:502.224450px;}
.y16d{bottom:504.483150px;}
.yf8{bottom:505.506300px;}
.ye4{bottom:506.754750px;}
.y7c{bottom:509.870400px;}
.y8b{bottom:509.870700px;}
.y5a{bottom:510.063900px;}
.yd{bottom:510.610350px;}
.y83{bottom:514.365900px;}
.yab{bottom:514.366200px;}
.y130{bottom:515.631600px;}
.y112{bottom:522.849450px;}
.ye3{bottom:524.754750px;}
.y1a1{bottom:525.332700px;}
.y16c{bottom:525.798150px;}
.y14b{bottom:525.802200px;}
.y7b{bottom:526.370400px;}
.yaa{bottom:526.370700px;}
.y37{bottom:528.785850px;}
.yc{bottom:530.110350px;}
.y59{bottom:530.689050px;}
.y189{bottom:530.907150px;}
.yf7{bottom:537.006300px;}
.ye2{bottom:542.754750px;}
.ya9{bottom:542.870700px;}
.y12f{bottom:546.907950px;}
.y16b{bottom:547.113300px;}
.y7a{bottom:547.365900px;}
.yb2{bottom:547.366350px;}
.y36{bottom:549.410850px;}
.y58{bottom:551.314050px;}
.y188{bottom:551.555100px;}
.y111{bottom:551.978400px;}
.yb{bottom:553.862250px;}
.y79{bottom:559.370550px;}
.yb1{bottom:559.370850px;}
.ye1{bottom:560.754750px;}
.ya8{bottom:563.866350px;}
.yec{bottom:564.373650px;}
.y14a{bottom:567.052200px;}
.y12e{bottom:567.871950px;}
.y16a{bottom:568.428300px;}
.y35{bottom:570.035850px;}
.y57{bottom:571.939050px;}
.y110{bottom:572.603400px;}
.ya{bottom:573.362250px;}
.y78{bottom:575.870550px;}
.yb0{bottom:575.870850px;}
.ye0{bottom:578.754750px;}
.ya7{bottom:580.366350px;}
.y149{bottom:587.677200px;}
.y12d{bottom:588.835950px;}
.y187{bottom:589.210800px;}
.y34{bottom:590.660850px;}
.y77{bottom:592.370550px;}
.yaf{bottom:592.370850px;}
.y56{bottom:592.564050px;}
.y9{bottom:592.862250px;}
.y10f{bottom:593.228400px;}
.yf6{bottom:595.956300px;}
.ydf{bottom:596.754750px;}
.y169{bottom:598.247400px;}
.y1a0{bottom:603.356250px;}
.y12c{bottom:609.799800px;}
.yf5{bottom:610.356300px;}
.y33{bottom:611.285850px;}
.y55{bottom:613.189050px;}
.y76{bottom:613.366050px;}
.yde{bottom:614.754750px;}
.yeb{bottom:616.873650px;}
.y168{bottom:619.562400px;}
.yf4{bottom:624.756300px;}
.y75{bottom:625.370700px;}
.y32{bottom:631.910850px;}
.ydd{bottom:632.754750px;}
.y19f{bottom:633.356250px;}
.y54{bottom:633.814050px;}
.y10e{bottom:639.365100px;}
.y167{bottom:640.877550px;}
.y12b{bottom:641.076300px;}
.y74{bottom:641.870700px;}
.y186{bottom:645.683100px;}
.y148{bottom:649.552200px;}
.ydc{bottom:650.754750px;}
.y31{bottom:652.535850px;}
.y53{bottom:654.439050px;}
.y73{bottom:658.370700px;}
.y12a{bottom:662.040150px;}
.y19e{bottom:663.356250px;}
.y185{bottom:666.330900px;}
.ydb{bottom:668.754750px;}
.yea{bottom:669.373650px;}
.y147{bottom:670.177200px;}
.y166{bottom:670.696500px;}
.y30{bottom:673.160850px;}
.y72{bottom:674.870700px;}
.y52{bottom:675.064050px;}
.yda{bottom:686.754750px;}
.y184{bottom:686.978850px;}
.y146{bottom:690.802200px;}
.y71{bottom:691.370700px;}
.y165{bottom:692.011650px;}
.y19d{bottom:693.356250px;}
.y2f{bottom:693.785850px;}
.y51{bottom:695.689050px;}
.yf3{bottom:696.756300px;}
.y129{bottom:703.629000px;}
.yd9{bottom:704.754750px;}
.y70{bottom:707.870700px;}
.y164{bottom:713.326650px;}
.y2e{bottom:714.410850px;}
.yf2{bottom:714.756300px;}
.y50{bottom:716.314050px;}
.y183{bottom:717.939300px;}
.y145{bottom:719.931000px;}
.ye9{bottom:721.873650px;}
.yd8{bottom:722.754750px;}
.y128{bottom:724.593000px;}
.y6f{bottom:728.866200px;}
.y2d{bottom:735.035850px;}
.y4f{bottom:736.939050px;}
.y182{bottom:738.587100px;}
.y144{bottom:740.556150px;}
.yd7{bottom:740.754750px;}
.y163{bottom:742.295400px;}
.y8{bottom:744.173250px;}
.y2c{bottom:755.660850px;}
.y4e{bottom:757.564050px;}
.yd6{bottom:758.754750px;}
.y181{bottom:759.235050px;}
.y143{bottom:761.181150px;}
.y162{bottom:763.610400px;}
.y7{bottom:764.798250px;}
.ye8{bottom:774.373650px;}
.y2b{bottom:776.285850px;}
.yd5{bottom:776.754600px;}
.y4d{bottom:778.189050px;}
.y161{bottom:784.925550px;}
.y127{bottom:786.806850px;}
.y180{bottom:790.195350px;}
.y142{bottom:790.310100px;}
.yd4{bottom:794.754600px;}
.y2a{bottom:796.910850px;}
.y4c{bottom:798.814050px;}
.y10d{bottom:806.048250px;}
.y160{bottom:806.240550px;}
.y126{bottom:807.770850px;}
.y17f{bottom:810.843450px;}
.y141{bottom:810.935100px;}
.yd3{bottom:812.754600px;}
.y29{bottom:817.535850px;}
.y6{bottom:819.439050px;}
.y10c{bottom:826.673250px;}
.ye7{bottom:826.873650px;}
.y125{bottom:828.734700px;}
.y19c{bottom:829.751550px;}
.y17e{bottom:831.491400px;}
.yd0{bottom:837.863550px;}
.y15f{bottom:837.868200px;}
.y28{bottom:838.160850px;}
.y5{bottom:840.064050px;}
.yd2{bottom:848.754600px;}
.y19b{bottom:850.376550px;}
.y27{bottom:858.785850px;}
.ycf{bottom:858.863550px;}
.y15e{bottom:859.183200px;}
.y124{bottom:860.011200px;}
.y17d{bottom:860.643150px;}
.y4{bottom:860.689050px;}
.ye6{bottom:879.373650px;}
.yce{bottom:879.863550px;}
.y123{bottom:880.975050px;}
.y17c{bottom:881.291100px;}
.y3{bottom:881.314050px;}
.y26{bottom:900.035850px;}
.y15d{bottom:901.123350px;}
.y2{bottom:901.939050px;}
.yd1{bottom:902.754600px;}
.y25{bottom:952.788600px;}
.hb{height:28.889400px;}
.h6{height:28.890000px;}
.hc{height:28.890600px;}
.h14{height:33.351562px;}
.h15{height:35.436035px;}
.h8{height:39.060000px;}
.h12{height:41.660156px;}
.h13{height:41.689453px;}
.h16{height:44.749512px;}
.ha{height:45.144000px;}
.h7{height:46.872000px;}
.h4{height:51.414000px;}
.h2{height:52.080000px;}
.h5{height:54.684000px;}
.h17{height:56.430000px;}
.h3{height:58.590000px;}
.hd{height:62.496000px;}
.h9{height:67.704000px;}
.h10{height:72.912000px;}
.h11{height:78.120000px;}
.h18{height:83.328000px;}
.hf{height:93.744000px;}
.he{height:166.656000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xf{left:93.543300px;}
.xe{left:110.551050px;}
.x3{left:115.210650px;}
.x4{left:117.028800px;}
.x11{left:123.307050px;}
.x2{left:126.571800px;}
.x38{left:135.414150px;}
.x23{left:139.031850px;}
.xd{left:140.314950px;}
.x12{left:147.913050px;}
.x5{left:151.073700px;}
.x21{left:155.494500px;}
.x6{left:156.730350px;}
.x10{left:164.923650px;}
.x39{left:168.272850px;}
.x2e{left:170.078700px;}
.x20{left:173.026500px;}
.xa{left:178.582650px;}
.x27{left:181.761000px;}
.x16{left:186.028500px;}
.x15{left:190.153500px;}
.x3b{left:191.176650px;}
.x25{left:198.115500px;}
.x26{left:200.397000px;}
.x9{left:208.346400px;}
.x22{left:214.665600px;}
.x30{left:217.568850px;}
.x13{left:228.465150px;}
.x34{left:232.970100px;}
.x8{left:234.373500px;}
.x14{left:235.488900px;}
.x37{left:238.811700px;}
.x2f{left:242.258550px;}
.x3a{left:259.627500px;}
.x35{left:271.584300px;}
.x31{left:283.457100px;}
.x7{left:284.495100px;}
.x1c{left:285.961050px;}
.x1b{left:287.223450px;}
.x24{left:288.622500px;}
.x19{left:290.145900px;}
.x1f{left:292.812300px;}
.x17{left:296.431650px;}
.x1e{left:301.108050px;}
.x18{left:305.657400px;}
.x1d{left:311.786100px;}
.x36{left:316.027350px;}
.xb{left:320.716800px;}
.x1a{left:327.034200px;}
.x2d{left:330.557250px;}
.x29{left:333.949800px;}
.x28{left:337.671000px;}
.x2b{left:339.744900px;}
.x33{left:349.733400px;}
.x2c{left:368.018550px;}
.xc{left:468.565950px;}
.x1{left:606.866400px;}
.x2a{left:609.086550px;}
.x32{left:614.614050px;}
@media print{
.v3{vertical-align:-19.979733pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.979733pt;}
.ls68{letter-spacing:-7.320000pt;}
.ls74{letter-spacing:-3.000000pt;}
.ls3e{letter-spacing:-1.920000pt;}
.ls5b{letter-spacing:-1.440000pt;}
.ls5c{letter-spacing:-1.320000pt;}
.ls5d{letter-spacing:-1.080000pt;}
.ls5e{letter-spacing:-1.020000pt;}
.ls60{letter-spacing:-0.960000pt;}
.ls57{letter-spacing:-0.900000pt;}
.ls67{letter-spacing:-0.840000pt;}
.ls55{letter-spacing:-0.780000pt;}
.ls5f{letter-spacing:-0.769566pt;}
.ls50{letter-spacing:-0.720000pt;}
.lsb{letter-spacing:-0.672000pt;}
.ls59{letter-spacing:-0.660000pt;}
.ls64{letter-spacing:-0.624000pt;}
.ls54{letter-spacing:-0.600000pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls61{letter-spacing:-0.540000pt;}
.ls62{letter-spacing:-0.524704pt;}
.ls52{letter-spacing:-0.480000pt;}
.ls65{letter-spacing:-0.432000pt;}
.ls2b{letter-spacing:-0.420000pt;}
.ls51{letter-spacing:-0.419763pt;}
.ls4c{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.360000pt;}
.ls6b{letter-spacing:-0.341333pt;}
.ls3b{letter-spacing:-0.336000pt;}
.ls63{letter-spacing:-0.335808pt;}
.ls18{letter-spacing:-0.300000pt;}
.ls1a{letter-spacing:-0.288000pt;}
.ls53{letter-spacing:-0.279842pt;}
.ls19{letter-spacing:-0.240000pt;}
.ls4e{letter-spacing:-0.195888pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.180000pt;}
.ls6d{letter-spacing:-0.160000pt;}
.ls6c{letter-spacing:-0.149333pt;}
.lse{letter-spacing:-0.144000pt;}
.ls3f{letter-spacing:-0.139921pt;}
.ls15{letter-spacing:-0.138667pt;}
.ls6a{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.112000pt;}
.ls2f{letter-spacing:-0.111936pt;}
.ls8{letter-spacing:-0.109333pt;}
.ls4{letter-spacing:-0.106667pt;}
.ls3d{letter-spacing:-0.104941pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls2c{letter-spacing:-0.069961pt;}
.ls17{letter-spacing:-0.060000pt;}
.lsa{letter-spacing:-0.056000pt;}
.ls2e{letter-spacing:-0.055968pt;}
.lsd{letter-spacing:-0.048000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.004800pt;}
.ls25{letter-spacing:0.024000pt;}
.ls46{letter-spacing:0.027984pt;}
.ls56{letter-spacing:0.034980pt;}
.ls3{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.060000pt;}
.ls69{letter-spacing:0.090000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.104941pt;}
.ls3c{letter-spacing:0.120000pt;}
.ls22{letter-spacing:0.131200pt;}
.ls4d{letter-spacing:0.139920pt;}
.ls2{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.180000pt;}
.ls26{letter-spacing:0.192000pt;}
.ls3a{letter-spacing:0.223872pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls23{letter-spacing:0.264000pt;}
.ls75{letter-spacing:0.270000pt;}
.ls38{letter-spacing:0.279842pt;}
.ls35{letter-spacing:0.288000pt;}
.ls12{letter-spacing:0.292800pt;}
.ls1f{letter-spacing:0.300000pt;}
.ls66{letter-spacing:0.312000pt;}
.ls39{letter-spacing:0.314822pt;}
.ls20{letter-spacing:0.330000pt;}
.ls36{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.360000pt;}
.ls1{letter-spacing:0.384000pt;}
.ls4b{letter-spacing:0.384783pt;}
.ls29{letter-spacing:0.420000pt;}
.ls40{letter-spacing:0.432000pt;}
.ls28{letter-spacing:0.450000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls72{letter-spacing:0.510000pt;}
.ls32{letter-spacing:0.528000pt;}
.ls31{letter-spacing:0.540000pt;}
.ls10{letter-spacing:0.560000pt;}
.ls48{letter-spacing:0.576000pt;}
.ls47{letter-spacing:0.660000pt;}
.ls34{letter-spacing:0.672000pt;}
.ls0{letter-spacing:0.690000pt;}
.ls5{letter-spacing:0.720000pt;}
.ls71{letter-spacing:0.736000pt;}
.ls33{letter-spacing:0.768000pt;}
.ls45{letter-spacing:0.783552pt;}
.ls73{letter-spacing:0.896000pt;}
.ls70{letter-spacing:0.900000pt;}
.ls58{letter-spacing:0.960000pt;}
.ls79{letter-spacing:1.020000pt;}
.ls7b{letter-spacing:1.024000pt;}
.ls30{letter-spacing:1.140000pt;}
.ls43{letter-spacing:1.152000pt;}
.ls42{letter-spacing:1.248000pt;}
.ls41{letter-spacing:1.320000pt;}
.ls5a{letter-spacing:1.857067pt;}
.ls44{letter-spacing:2.304000pt;}
.ls6e{letter-spacing:3.400000pt;}
.ls49{letter-spacing:4.272000pt;}
.ls4a{letter-spacing:5.088000pt;}
.ls4f{letter-spacing:11.160000pt;}
.ls37{letter-spacing:11.160533pt;}
.ls2a{letter-spacing:11.182933pt;}
.ls24{letter-spacing:11.880000pt;}
.ls7a{letter-spacing:34.151467pt;}
.ls78{letter-spacing:63.400533pt;}
.ls76{letter-spacing:63.401067pt;}
.ls77{letter-spacing:64.600533pt;}
.ls1b{letter-spacing:228.766933pt;}
.wsd6{word-spacing:-42.325333pt;}
.ws118{word-spacing:-23.808000pt;}
.wsd7{word-spacing:-18.517333pt;}
.wsa3{word-spacing:-17.088000pt;}
.wsa2{word-spacing:-16.272000pt;}
.wse4{word-spacing:-15.690000pt;}
.ws9e{word-spacing:-15.660000pt;}
.ws7b{word-spacing:-15.450000pt;}
.ws4e{word-spacing:-15.000000pt;}
.ws4d{word-spacing:-14.880000pt;}
.ws87{word-spacing:-14.820000pt;}
.ws8a{word-spacing:-14.760000pt;}
.ws10f{word-spacing:-14.700000pt;}
.wsce{word-spacing:-14.340000pt;}
.ws94{word-spacing:-14.304000pt;}
.wsc8{word-spacing:-14.280000pt;}
.wsef{word-spacing:-14.160000pt;}
.wsfd{word-spacing:-13.740000pt;}
.wsc1{word-spacing:-13.680000pt;}
.ws116{word-spacing:-13.380000pt;}
.wsda{word-spacing:-13.333333pt;}
.ws93{word-spacing:-13.320000pt;}
.ws0{word-spacing:-13.226667pt;}
.ws89{word-spacing:-13.080000pt;}
.ws111{word-spacing:-12.960000pt;}
.ws90{word-spacing:-12.432000pt;}
.ws101{word-spacing:-12.420000pt;}
.ws1f{word-spacing:-12.144000pt;}
.ws1d{word-spacing:-12.096000pt;}
.wsc3{word-spacing:-12.048000pt;}
.wsf0{word-spacing:-11.940000pt;}
.ws2{word-spacing:-11.904000pt;}
.wsb0{word-spacing:-11.856000pt;}
.wsf2{word-spacing:-11.820000pt;}
.ws1c{word-spacing:-11.808000pt;}
.wsa0{word-spacing:-11.760000pt;}
.ws1e{word-spacing:-11.712000pt;}
.ws91{word-spacing:-11.664000pt;}
.ws112{word-spacing:-11.520000pt;}
.ws4f{word-spacing:-11.424000pt;}
.wsdb{word-spacing:-11.333333pt;}
.ws113{word-spacing:-11.220000pt;}
.ws103{word-spacing:-11.160000pt;}
.ws10e{word-spacing:-11.040000pt;}
.wse6{word-spacing:-10.680000pt;}
.wsde{word-spacing:-10.666667pt;}
.ws114{word-spacing:-10.560000pt;}
.wsfe{word-spacing:-10.260000pt;}
.wsee{word-spacing:-9.900000pt;}
.ws10a{word-spacing:-9.720000pt;}
.ws9f{word-spacing:-9.129850pt;}
.ws70{word-spacing:-9.059889pt;}
.ws6f{word-spacing:-9.024909pt;}
.ws5e{word-spacing:-8.850007pt;}
.wsb9{word-spacing:-8.780047pt;}
.ws1b{word-spacing:-8.745067pt;}
.ws5d{word-spacing:-8.675106pt;}
.ws88{word-spacing:-8.640126pt;}
.ws8b{word-spacing:-8.605146pt;}
.wsb4{word-spacing:-8.465225pt;}
.ws102{word-spacing:-8.340000pt;}
.wsaf{word-spacing:-8.325303pt;}
.wsc7{word-spacing:-8.220363pt;}
.ws115{word-spacing:-8.040000pt;}
.wsc2{word-spacing:-7.975501pt;}
.wsdc{word-spacing:-7.933333pt;}
.wsf5{word-spacing:-7.920000pt;}
.wsf1{word-spacing:-7.860000pt;}
.ws92{word-spacing:-7.779552pt;}
.wscf{word-spacing:-7.680000pt;}
.ws117{word-spacing:-7.320000pt;}
.ws71{word-spacing:-7.219872pt;}
.wsa1{word-spacing:-7.135920pt;}
.wsf9{word-spacing:-7.080000pt;}
.ws95{word-spacing:-7.023984pt;}
.wsf4{word-spacing:-7.020000pt;}
.ws1{word-spacing:-6.996000pt;}
.ws5f{word-spacing:-6.940032pt;}
.ws60{word-spacing:-6.884064pt;}
.wsa4{word-spacing:-6.800112pt;}
.wsc9{word-spacing:-6.660192pt;}
.wsf7{word-spacing:-6.300000pt;}
.ws100{word-spacing:-6.240000pt;}
.wse8{word-spacing:-6.180000pt;}
.wsf6{word-spacing:-5.760000pt;}
.ws105{word-spacing:-5.460000pt;}
.ws10d{word-spacing:-5.340000pt;}
.ws110{word-spacing:-5.160000pt;}
.wsff{word-spacing:-4.920000pt;}
.ws108{word-spacing:-4.500000pt;}
.ws10b{word-spacing:-4.440000pt;}
.ws106{word-spacing:-4.020000pt;}
.wsed{word-spacing:-3.840000pt;}
.wsf8{word-spacing:-3.720000pt;}
.ws104{word-spacing:-3.660000pt;}
.wsea{word-spacing:-3.540000pt;}
.ws107{word-spacing:-3.480000pt;}
.ws109{word-spacing:-2.580000pt;}
.wsfc{word-spacing:-2.400000pt;}
.ws22{word-spacing:-2.280000pt;}
.ws2b{word-spacing:-2.220000pt;}
.wsd8{word-spacing:-2.218667pt;}
.ws84{word-spacing:-2.100000pt;}
.ws44{word-spacing:-2.040000pt;}
.ws3c{word-spacing:-1.980000pt;}
.ws28{word-spacing:-1.920000pt;}
.wsa8{word-spacing:-1.860000pt;}
.ws14{word-spacing:-1.824000pt;}
.ws82{word-spacing:-1.800000pt;}
.ws12{word-spacing:-1.776000pt;}
.ws75{word-spacing:-1.740000pt;}
.ws6e{word-spacing:-1.728000pt;}
.ws119{word-spacing:-1.706667pt;}
.ws11{word-spacing:-1.680000pt;}
.ws99{word-spacing:-1.632000pt;}
.ws29{word-spacing:-1.620000pt;}
.ws30{word-spacing:-1.584000pt;}
.ws3a{word-spacing:-1.560000pt;}
.ws6a{word-spacing:-1.536000pt;}
.wsbb{word-spacing:-1.500000pt;}
.wse5{word-spacing:-1.493333pt;}
.ws35{word-spacing:-1.488000pt;}
.ws7d{word-spacing:-1.440000pt;}
.wsd4{word-spacing:-1.400000pt;}
.wsb2{word-spacing:-1.392000pt;}
.wsbe{word-spacing:-1.380000pt;}
.wsae{word-spacing:-1.344000pt;}
.wsd5{word-spacing:-1.333333pt;}
.ws67{word-spacing:-1.320000pt;}
.ws31{word-spacing:-1.296000pt;}
.wsec{word-spacing:-1.280000pt;}
.wsc4{word-spacing:-1.260000pt;}
.wsc{word-spacing:-1.248000pt;}
.ws3{word-spacing:-1.200000pt;}
.ws85{word-spacing:-1.152000pt;}
.ws64{word-spacing:-1.140000pt;}
.ws33{word-spacing:-1.104000pt;}
.wsb6{word-spacing:-1.080000pt;}
.wsd9{word-spacing:-1.040000pt;}
.ws2c{word-spacing:-1.020000pt;}
.ws3f{word-spacing:-0.960000pt;}
.ws15{word-spacing:-0.912000pt;}
.ws83{word-spacing:-0.901333pt;}
.ws2e{word-spacing:-0.900000pt;}
.wscc{word-spacing:-0.864000pt;}
.ws39{word-spacing:-0.840000pt;}
.wsd3{word-spacing:-0.832000pt;}
.wsa{word-spacing:-0.816000pt;}
.ws5{word-spacing:-0.780000pt;}
.ws9b{word-spacing:-0.768000pt;}
.ws9{word-spacing:-0.728000pt;}
.ws57{word-spacing:-0.720000pt;}
.ws6{word-spacing:-0.710667pt;}
.ws5b{word-spacing:-0.672000pt;}
.wsd0{word-spacing:-0.660000pt;}
.ws17{word-spacing:-0.624000pt;}
.ws8d{word-spacing:-0.600000pt;}
.wsfa{word-spacing:-0.560000pt;}
.wsb7{word-spacing:-0.540000pt;}
.ws38{word-spacing:-0.528000pt;}
.ws16{word-spacing:-0.480000pt;}
.ws79{word-spacing:-0.432000pt;}
.ws63{word-spacing:-0.420000pt;}
.ws10{word-spacing:-0.384000pt;}
.wsca{word-spacing:-0.360000pt;}
.ws81{word-spacing:-0.300000pt;}
.wsaa{word-spacing:-0.288000pt;}
.ws20{word-spacing:-0.280000pt;}
.ws3e{word-spacing:-0.240000pt;}
.ws6b{word-spacing:-0.192000pt;}
.ws40{word-spacing:-0.180000pt;}
.ws53{word-spacing:-0.144000pt;}
.wsb1{word-spacing:-0.120000pt;}
.ws97{word-spacing:-0.096000pt;}
.ws80{word-spacing:-0.060000pt;}
.ws9c{word-spacing:-0.048000pt;}
.ws4{word-spacing:0.000000pt;}
.ws54{word-spacing:0.048000pt;}
.wsa9{word-spacing:0.060000pt;}
.ws1a{word-spacing:0.096000pt;}
.ws2a{word-spacing:0.120000pt;}
.ws10c{word-spacing:0.128000pt;}
.ws69{word-spacing:0.144000pt;}
.ws72{word-spacing:0.180000pt;}
.ws6c{word-spacing:0.192000pt;}
.ws37{word-spacing:0.240000pt;}
.ws19{word-spacing:0.288000pt;}
.ws50{word-spacing:0.300000pt;}
.wse{word-spacing:0.336000pt;}
.ws47{word-spacing:0.360000pt;}
.ws59{word-spacing:0.384000pt;}
.ws27{word-spacing:0.420000pt;}
.wsb3{word-spacing:0.432000pt;}
.ws32{word-spacing:0.480000pt;}
.ws7{word-spacing:0.504000pt;}
.ws34{word-spacing:0.528000pt;}
.ws65{word-spacing:0.540000pt;}
.wsbc{word-spacing:0.576000pt;}
.ws41{word-spacing:0.600000pt;}
.ws36{word-spacing:0.624000pt;}
.ws7c{word-spacing:0.660000pt;}
.ws55{word-spacing:0.672000pt;}
.ws76{word-spacing:0.720000pt;}
.ws5c{word-spacing:0.768000pt;}
.ws3d{word-spacing:0.780000pt;}
.ws8f{word-spacing:0.816000pt;}
.ws61{word-spacing:0.840000pt;}
.ws4b{word-spacing:0.900000pt;}
.ws24{word-spacing:0.960000pt;}
.ws58{word-spacing:1.056000pt;}
.ws43{word-spacing:1.080000pt;}
.ws6d{word-spacing:1.104000pt;}
.ws74{word-spacing:1.140000pt;}
.wsab{word-spacing:1.152000pt;}
.ws18{word-spacing:1.200000pt;}
.ws5a{word-spacing:1.248000pt;}
.ws86{word-spacing:1.296000pt;}
.wsd2{word-spacing:1.320000pt;}
.ws2f{word-spacing:1.344000pt;}
.ws96{word-spacing:1.380000pt;}
.ws56{word-spacing:1.392000pt;}
.wsbd{word-spacing:1.440000pt;}
.ws45{word-spacing:1.500000pt;}
.ws4a{word-spacing:1.560000pt;}
.wsdd{word-spacing:1.578667pt;}
.ws42{word-spacing:1.620000pt;}
.ws78{word-spacing:1.632000pt;}
.ws13{word-spacing:1.680000pt;}
.ws68{word-spacing:1.728000pt;}
.wsa5{word-spacing:1.740000pt;}
.wsf{word-spacing:1.776000pt;}
.wsd1{word-spacing:1.800000pt;}
.wsb{word-spacing:1.824000pt;}
.wsdf{word-spacing:1.834667pt;}
.ws77{word-spacing:1.860000pt;}
.wsb8{word-spacing:1.872000pt;}
.ws3b{word-spacing:1.920000pt;}
.ws52{word-spacing:1.968000pt;}
.wsbf{word-spacing:1.980000pt;}
.ws48{word-spacing:2.040000pt;}
.wsc6{word-spacing:2.064000pt;}
.ws62{word-spacing:2.100000pt;}
.ws8{word-spacing:2.128000pt;}
.ws51{word-spacing:2.160000pt;}
.ws23{word-spacing:2.220000pt;}
.ws7a{word-spacing:2.256000pt;}
.ws2d{word-spacing:2.280000pt;}
.wscb{word-spacing:2.340000pt;}
.ws4c{word-spacing:2.400000pt;}
.ws46{word-spacing:2.460000pt;}
.ws98{word-spacing:2.544000pt;}
.ws8c{word-spacing:2.580000pt;}
.wse3{word-spacing:2.584000pt;}
.wsd{word-spacing:2.640000pt;}
.ws49{word-spacing:2.700000pt;}
.wsfb{word-spacing:2.760000pt;}
.wsc0{word-spacing:2.820000pt;}
.wsb5{word-spacing:2.880000pt;}
.wsc5{word-spacing:2.940000pt;}
.ws8e{word-spacing:3.120000pt;}
.wse0{word-spacing:3.200000pt;}
.ws9a{word-spacing:3.216000pt;}
.ws66{word-spacing:3.240000pt;}
.ws25{word-spacing:3.360000pt;}
.wse1{word-spacing:3.400000pt;}
.ws7e{word-spacing:3.480000pt;}
.ws7f{word-spacing:3.540000pt;}
.ws26{word-spacing:3.600000pt;}
.wsba{word-spacing:3.660000pt;}
.wsa6{word-spacing:3.780000pt;}
.ws73{word-spacing:3.840000pt;}
.wsac{word-spacing:3.888000pt;}
.wsa7{word-spacing:4.620000pt;}
.ws9d{word-spacing:6.000000pt;}
.wse9{word-spacing:6.420000pt;}
.wse2{word-spacing:11.333333pt;}
.wscd{word-spacing:12.288000pt;}
.wsad{word-spacing:34.032000pt;}
.ws21{word-spacing:52.000000pt;}
.wsf3{word-spacing:61.740000pt;}
.wseb{word-spacing:91.560000pt;}
.wse7{word-spacing:121.320000pt;}
._14{margin-left:-22.677333pt;}
._d{margin-left:-16.258667pt;}
._11{margin-left:-12.735067pt;}
._10{margin-left:-11.608667pt;}
._12{margin-left:-9.640000pt;}
._16{margin-left:-8.730000pt;}
._7{margin-left:-7.776000pt;}
._9{margin-left:-6.240000pt;}
._3{margin-left:-5.220000pt;}
._2{margin-left:-3.456000pt;}
._1{margin-left:-2.130000pt;}
._0{margin-left:-1.206000pt;}
._4{width:0.966000pt;}
._a{width:2.165067pt;}
._13{width:3.984000pt;}
._f{width:6.344133pt;}
._8{width:7.960000pt;}
._e{width:9.452960pt;}
._6{width:10.729600pt;}
._5{width:12.745600pt;}
._b{width:13.708267pt;}
._17{width:47.776000pt;}
._15{width:49.586000pt;}
._c{width:52.728000pt;}
.fs5{font-size:27.984000pt;}
.fs10{font-size:31.733333pt;}
.fs2{font-size:34.980267pt;}
.fs7{font-size:40.000000pt;}
.fse{font-size:42.666667pt;}
.fsf{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:54.666667pt;}
.fs4{font-size:56.000000pt;}
.fs1{font-size:60.000000pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fsc{font-size:74.666667pt;}
.fsd{font-size:80.000000pt;}
.fs11{font-size:85.333333pt;}
.fsb{font-size:96.000000pt;}
.fsa{font-size:170.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:48.538133pt;}
.y10b{bottom:86.551067pt;}
.ycd{bottom:86.551200pt;}
.y24{bottom:86.551333pt;}
.y6e{bottom:86.723600pt;}
.y15c{bottom:87.202533pt;}
.y122{bottom:87.793067pt;}
.ya6{bottom:90.547333pt;}
.ycc{bottom:101.217867pt;}
.y23{bottom:101.218000pt;}
.ya5{bottom:101.218133pt;}
.y19a{bottom:104.904800pt;}
.y6d{bottom:105.056933pt;}
.y140{bottom:105.185733pt;}
.y82{bottom:105.214000pt;}
.y17b{bottom:105.497867pt;}
.y15b{bottom:105.535867pt;}
.y121{bottom:106.126400pt;}
.y22{bottom:115.884667pt;}
.y81{bottom:115.884800pt;}
.ycb{bottom:119.880533pt;}
.yc3{bottom:119.880667pt;}
.y199{bottom:123.258400pt;}
.y6c{bottom:123.390267pt;}
.y120{bottom:124.459733pt;}
.y10a{bottom:128.551067pt;}
.y4b{bottom:130.551333pt;}
.y80{bottom:130.551467pt;}
.y13f{bottom:132.986933pt;}
.y15a{bottom:133.035867pt;}
.y21{bottom:134.547333pt;}
.y6b{bottom:141.723467pt;}
.y109{bottom:142.551067pt;}
.y17a{bottom:142.778000pt;}
.y4a{bottom:145.218000pt;}
.y20{bottom:145.218133pt;}
.y9f{bottom:149.214000pt;}
.y11f{bottom:150.352133pt;}
.y198{bottom:150.778800pt;}
.y159{bottom:151.369200pt;}
.y13e{bottom:151.621600pt;}
.y108{bottom:156.551067pt;}
.y49{bottom:159.884667pt;}
.y1f{bottom:159.884800pt;}
.y6a{bottom:160.056800pt;}
.y9d{bottom:163.880667pt;}
.ya4{bottom:163.880800pt;}
.yc1{bottom:163.880933pt;}
.y11e{bottom:168.685467pt;}
.y197{bottom:169.132533pt;}
.y13d{bottom:170.256133pt;}
.y107{bottom:170.551067pt;}
.y48{bottom:174.551333pt;}
.y1e{bottom:174.551467pt;}
.ya3{bottom:174.551600pt;}
.yc0{bottom:174.551733pt;}
.y69{bottom:178.390133pt;}
.yc5{bottom:178.547333pt;}
.y158{bottom:178.869200pt;}
.y196{bottom:187.486133pt;}
.y47{bottom:189.218000pt;}
.y1d{bottom:189.218133pt;}
.ya2{bottom:189.218267pt;}
.ybf{bottom:189.218400pt;}
.yc2{bottom:193.214133pt;}
.y11d{bottom:194.577867pt;}
.y68{bottom:196.723467pt;}
.y157{bottom:197.202533pt;}
.y13c{bottom:198.057467pt;}
.y179{bottom:198.391333pt;}
.y106{bottom:198.551067pt;}
.y46{bottom:203.884667pt;}
.y1c{bottom:203.884800pt;}
.ybe{bottom:203.885067pt;}
.yc9{bottom:207.880533pt;}
.y9c{bottom:207.880800pt;}
.ya1{bottom:207.880933pt;}
.y11c{bottom:212.911200pt;}
.y195{bottom:215.006533pt;}
.y67{bottom:215.056800pt;}
.y13b{bottom:216.692000pt;}
.y105{bottom:216.813733pt;}
.y178{bottom:217.338133pt;}
.y45{bottom:218.551333pt;}
.y1b{bottom:218.551467pt;}
.y9b{bottom:218.551600pt;}
.ybd{bottom:218.551733pt;}
.yc7{bottom:222.547333pt;}
.ya0{bottom:222.547733pt;}
.y156{bottom:224.702533pt;}
.y104{bottom:230.813733pt;}
.y11b{bottom:231.244533pt;}
.y44{bottom:233.218000pt;}
.y1a{bottom:233.218133pt;}
.y9a{bottom:233.218267pt;}
.ybc{bottom:233.218400pt;}
.y194{bottom:233.360267pt;}
.y66{bottom:233.390133pt;}
.y13a{bottom:235.326667pt;}
.y177{bottom:236.284800pt;}
.yb4{bottom:237.214000pt;}
.yf1{bottom:241.849200pt;}
.y155{bottom:243.035867pt;}
.y43{bottom:247.884667pt;}
.y19{bottom:247.884800pt;}
.y99{bottom:247.884933pt;}
.y103{bottom:249.076400pt;}
.y193{bottom:251.713867pt;}
.y65{bottom:251.723467pt;}
.yc8{bottom:251.880667pt;}
.ybb{bottom:251.881067pt;}
.y154{bottom:261.369200pt;}
.y42{bottom:262.551333pt;}
.y18{bottom:262.551467pt;}
.y98{bottom:262.551600pt;}
.yba{bottom:262.551733pt;}
.y176{bottom:262.790667pt;}
.y102{bottom:263.076400pt;}
.y139{bottom:263.127867pt;}
.yae{bottom:266.547333pt;}
.y11a{bottom:267.911200pt;}
.y64{bottom:270.056800pt;}
.y41{bottom:277.218000pt;}
.y17{bottom:277.218133pt;}
.y97{bottom:277.218267pt;}
.yb9{bottom:277.218400pt;}
.y192{bottom:279.234267pt;}
.yc6{bottom:281.214133pt;}
.y101{bottom:281.338933pt;}
.y175{bottom:281.737333pt;}
.y138{bottom:281.762533pt;}
.y63{bottom:288.390133pt;}
.y153{bottom:288.869200pt;}
.y40{bottom:291.884667pt;}
.y16{bottom:291.884800pt;}
.y96{bottom:291.884933pt;}
.yb8{bottom:291.885067pt;}
.y100{bottom:295.338933pt;}
.yca{bottom:295.880667pt;}
.y191{bottom:297.588000pt;}
.y174{bottom:300.684133pt;}
.yf0{bottom:302.515867pt;}
.y3f{bottom:306.551333pt;}
.y15{bottom:306.551467pt;}
.y95{bottom:306.551600pt;}
.yb7{bottom:306.551733pt;}
.y62{bottom:306.723467pt;}
.y152{bottom:307.202533pt;}
.y137{bottom:309.563733pt;}
.y9e{bottom:310.547600pt;}
.y190{bottom:315.941600pt;}
.y173{bottom:319.630800pt;}
.y8a{bottom:321.218000pt;}
.y14{bottom:321.218133pt;}
.y94{bottom:321.218267pt;}
.yb6{bottom:321.218400pt;}
.y119{bottom:321.303600pt;}
.y61{bottom:325.056800pt;}
.y3e{bottom:325.214000pt;}
.y136{bottom:328.198267pt;}
.yef{bottom:330.515867pt;}
.y18f{bottom:334.295333pt;}
.y151{bottom:334.702533pt;}
.y89{bottom:335.884667pt;}
.y13{bottom:335.884800pt;}
.y93{bottom:335.884933pt;}
.yff{bottom:337.338933pt;}
.y172{bottom:338.577600pt;}
.y118{bottom:339.636933pt;}
.yad{bottom:339.880800pt;}
.yb5{bottom:339.881067pt;}
.y60{bottom:343.390133pt;}
.y88{bottom:350.551333pt;}
.y12{bottom:350.551467pt;}
.yc4{bottom:350.551600pt;}
.yac{bottom:350.551733pt;}
.yfe{bottom:351.338933pt;}
.y150{bottom:353.035867pt;}
.y3d{bottom:354.547467pt;}
.y92{bottom:354.547600pt;}
.y135{bottom:355.999600pt;}
.y117{bottom:357.970267pt;}
.yee{bottom:359.849200pt;}
.y5f{bottom:361.723467pt;}
.y18e{bottom:361.815733pt;}
.y171{bottom:365.083467pt;}
.y87{bottom:365.218000pt;}
.y11{bottom:365.218133pt;}
.y3c{bottom:365.218267pt;}
.y91{bottom:365.218400pt;}
.yfd{bottom:365.338933pt;}
.y14f{bottom:371.369200pt;}
.y134{bottom:374.634133pt;}
.yfc{bottom:379.338933pt;}
.y86{bottom:379.884667pt;}
.y10{bottom:379.884800pt;}
.y3b{bottom:379.884933pt;}
.y90{bottom:379.885067pt;}
.y5e{bottom:380.056800pt;}
.y18d{bottom:380.169333pt;}
.y116{bottom:383.862667pt;}
.yb3{bottom:383.881067pt;}
.y170{bottom:384.030133pt;}
.yed{bottom:389.182533pt;}
.y133{bottom:393.268800pt;}
.yfb{bottom:393.338933pt;}
.y85{bottom:394.551333pt;}
.yf{bottom:394.551467pt;}
.y3a{bottom:394.551600pt;}
.y8f{bottom:394.551733pt;}
.y14e{bottom:397.261600pt;}
.y5d{bottom:398.390133pt;}
.y18c{bottom:398.523067pt;}
.y115{bottom:402.196000pt;}
.y16f{bottom:402.976933pt;}
.yfa{bottom:407.338933pt;}
.y7f{bottom:409.218133pt;}
.y39{bottom:409.218267pt;}
.y8e{bottom:409.218400pt;}
.y84{bottom:413.214000pt;}
.ye{bottom:413.214133pt;}
.y14d{bottom:415.594933pt;}
.y5c{bottom:416.723467pt;}
.y114{bottom:420.529333pt;}
.y132{bottom:421.070000pt;}
.yf9{bottom:421.338933pt;}
.y16e{bottom:421.923600pt;}
.y7e{bottom:423.884800pt;}
.y8d{bottom:423.885067pt;}
.y18b{bottom:426.043467pt;}
.y38{bottom:427.880933pt;}
.y14c{bottom:433.928267pt;}
.ye5{bottom:434.448667pt;}
.y5b{bottom:435.056800pt;}
.y7d{bottom:438.551467pt;}
.y8c{bottom:438.551733pt;}
.y131{bottom:439.704667pt;}
.y18a{bottom:444.397067pt;}
.y113{bottom:446.421733pt;}
.y16d{bottom:448.429467pt;}
.yf8{bottom:449.338933pt;}
.ye4{bottom:450.448667pt;}
.y7c{bottom:453.218133pt;}
.y8b{bottom:453.218400pt;}
.y5a{bottom:453.390133pt;}
.yd{bottom:453.875867pt;}
.y83{bottom:457.214133pt;}
.yab{bottom:457.214400pt;}
.y130{bottom:458.339200pt;}
.y112{bottom:464.755067pt;}
.ye3{bottom:466.448667pt;}
.y1a1{bottom:466.962400pt;}
.y16c{bottom:467.376133pt;}
.y14b{bottom:467.379733pt;}
.y7b{bottom:467.884800pt;}
.yaa{bottom:467.885067pt;}
.y37{bottom:470.031867pt;}
.yc{bottom:471.209200pt;}
.y59{bottom:471.723600pt;}
.y189{bottom:471.917467pt;}
.yf7{bottom:477.338933pt;}
.ye2{bottom:482.448667pt;}
.ya9{bottom:482.551733pt;}
.y12f{bottom:486.140400pt;}
.y16b{bottom:486.322933pt;}
.y7a{bottom:486.547467pt;}
.yb2{bottom:486.547867pt;}
.y36{bottom:488.365200pt;}
.y58{bottom:490.056933pt;}
.y188{bottom:490.271200pt;}
.y111{bottom:490.647467pt;}
.yb{bottom:492.322000pt;}
.y79{bottom:497.218267pt;}
.yb1{bottom:497.218533pt;}
.ye1{bottom:498.448667pt;}
.ya8{bottom:501.214533pt;}
.yec{bottom:501.665467pt;}
.y14a{bottom:504.046400pt;}
.y12e{bottom:504.775067pt;}
.y16a{bottom:505.269600pt;}
.y35{bottom:506.698533pt;}
.y57{bottom:508.390267pt;}
.y110{bottom:508.980800pt;}
.ya{bottom:509.655333pt;}
.y78{bottom:511.884933pt;}
.yb0{bottom:511.885200pt;}
.ye0{bottom:514.448667pt;}
.ya7{bottom:515.881200pt;}
.y149{bottom:522.379733pt;}
.y12d{bottom:523.409733pt;}
.y187{bottom:523.742933pt;}
.y34{bottom:525.031867pt;}
.y77{bottom:526.551600pt;}
.yaf{bottom:526.551867pt;}
.y56{bottom:526.723600pt;}
.y9{bottom:526.988667pt;}
.y10f{bottom:527.314133pt;}
.yf6{bottom:529.738933pt;}
.ydf{bottom:530.448667pt;}
.y169{bottom:531.775467pt;}
.y1a0{bottom:536.316667pt;}
.y12c{bottom:542.044267pt;}
.yf5{bottom:542.538933pt;}
.y33{bottom:543.365200pt;}
.y55{bottom:545.056933pt;}
.y76{bottom:545.214267pt;}
.yde{bottom:546.448667pt;}
.yeb{bottom:548.332133pt;}
.y168{bottom:550.722133pt;}
.yf4{bottom:555.338933pt;}
.y75{bottom:555.885067pt;}
.y32{bottom:561.698533pt;}
.ydd{bottom:562.448667pt;}
.y19f{bottom:562.983333pt;}
.y54{bottom:563.390267pt;}
.y10e{bottom:568.324533pt;}
.y167{bottom:569.668933pt;}
.y12b{bottom:569.845600pt;}
.y74{bottom:570.551733pt;}
.y186{bottom:573.940533pt;}
.y148{bottom:577.379733pt;}
.ydc{bottom:578.448667pt;}
.y31{bottom:580.031867pt;}
.y53{bottom:581.723600pt;}
.y73{bottom:585.218400pt;}
.y12a{bottom:588.480133pt;}
.y19e{bottom:589.650000pt;}
.y185{bottom:592.294133pt;}
.ydb{bottom:594.448667pt;}
.yea{bottom:594.998800pt;}
.y147{bottom:595.713067pt;}
.y166{bottom:596.174667pt;}
.y30{bottom:598.365200pt;}
.y72{bottom:599.885067pt;}
.y52{bottom:600.056933pt;}
.yda{bottom:610.448667pt;}
.y184{bottom:610.647867pt;}
.y146{bottom:614.046400pt;}
.y71{bottom:614.551733pt;}
.y165{bottom:615.121467pt;}
.y19d{bottom:616.316667pt;}
.y2f{bottom:616.698533pt;}
.y51{bottom:618.390267pt;}
.yf3{bottom:619.338933pt;}
.y129{bottom:625.448000pt;}
.yd9{bottom:626.448667pt;}
.y70{bottom:629.218400pt;}
.y164{bottom:634.068133pt;}
.y2e{bottom:635.031867pt;}
.yf2{bottom:635.338933pt;}
.y50{bottom:636.723600pt;}
.y183{bottom:638.168267pt;}
.y145{bottom:639.938667pt;}
.ye9{bottom:641.665467pt;}
.yd8{bottom:642.448667pt;}
.y128{bottom:644.082667pt;}
.y6f{bottom:647.881067pt;}
.y2d{bottom:653.365200pt;}
.y4f{bottom:655.056933pt;}
.y182{bottom:656.521867pt;}
.y144{bottom:658.272133pt;}
.yd7{bottom:658.448667pt;}
.y163{bottom:659.818133pt;}
.y8{bottom:661.487333pt;}
.y2c{bottom:671.698533pt;}
.y4e{bottom:673.390267pt;}
.yd6{bottom:674.448667pt;}
.y181{bottom:674.875600pt;}
.y143{bottom:676.605467pt;}
.y162{bottom:678.764800pt;}
.y7{bottom:679.820667pt;}
.ye8{bottom:688.332133pt;}
.y2b{bottom:690.031867pt;}
.yd5{bottom:690.448533pt;}
.y4d{bottom:691.723600pt;}
.y161{bottom:697.711600pt;}
.y127{bottom:699.383867pt;}
.y180{bottom:702.395867pt;}
.y142{bottom:702.497867pt;}
.yd4{bottom:706.448533pt;}
.y2a{bottom:708.365200pt;}
.y4c{bottom:710.056933pt;}
.y10d{bottom:716.487333pt;}
.y160{bottom:716.658267pt;}
.y126{bottom:718.018533pt;}
.y17f{bottom:720.749733pt;}
.y141{bottom:720.831200pt;}
.yd3{bottom:722.448533pt;}
.y29{bottom:726.698533pt;}
.y6{bottom:728.390267pt;}
.y10c{bottom:734.820667pt;}
.ye7{bottom:734.998800pt;}
.y125{bottom:736.653067pt;}
.y19c{bottom:737.556933pt;}
.y17e{bottom:739.103467pt;}
.yd0{bottom:744.767600pt;}
.y15f{bottom:744.771733pt;}
.y28{bottom:745.031867pt;}
.y5{bottom:746.723600pt;}
.yd2{bottom:754.448533pt;}
.y19b{bottom:755.890267pt;}
.y27{bottom:763.365200pt;}
.ycf{bottom:763.434267pt;}
.y15e{bottom:763.718400pt;}
.y124{bottom:764.454400pt;}
.y17d{bottom:765.016133pt;}
.y4{bottom:765.056933pt;}
.ye6{bottom:781.665467pt;}
.yce{bottom:782.100933pt;}
.y123{bottom:783.088933pt;}
.y17c{bottom:783.369867pt;}
.y3{bottom:783.390267pt;}
.y26{bottom:800.031867pt;}
.y15d{bottom:800.998533pt;}
.y2{bottom:801.723600pt;}
.yd1{bottom:802.448533pt;}
.y25{bottom:846.923200pt;}
.hb{height:25.679467pt;}
.h6{height:25.680000pt;}
.hc{height:25.680533pt;}
.h14{height:29.645833pt;}
.h15{height:31.498698pt;}
.h8{height:34.720000pt;}
.h12{height:37.031250pt;}
.h13{height:37.057292pt;}
.h16{height:39.777344pt;}
.ha{height:40.128000pt;}
.h7{height:41.664000pt;}
.h4{height:45.701333pt;}
.h2{height:46.293333pt;}
.h5{height:48.608000pt;}
.h17{height:50.160000pt;}
.h3{height:52.080000pt;}
.hd{height:55.552000pt;}
.h9{height:60.181333pt;}
.h10{height:64.810667pt;}
.h11{height:69.440000pt;}
.h18{height:74.069333pt;}
.hf{height:83.328000pt;}
.he{height:148.138667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xf{left:83.149600pt;}
.xe{left:98.267600pt;}
.x3{left:102.409467pt;}
.x4{left:104.025600pt;}
.x11{left:109.606267pt;}
.x2{left:112.508267pt;}
.x38{left:120.368133pt;}
.x23{left:123.583867pt;}
.xd{left:124.724400pt;}
.x12{left:131.478267pt;}
.x5{left:134.287733pt;}
.x21{left:138.217333pt;}
.x6{left:139.315867pt;}
.x10{left:146.598800pt;}
.x39{left:149.575867pt;}
.x2e{left:151.181067pt;}
.x20{left:153.801333pt;}
.xa{left:158.740133pt;}
.x27{left:161.565333pt;}
.x16{left:165.358667pt;}
.x15{left:169.025333pt;}
.x3b{left:169.934800pt;}
.x25{left:176.102667pt;}
.x26{left:178.130667pt;}
.x9{left:185.196800pt;}
.x22{left:190.813867pt;}
.x30{left:193.394533pt;}
.x13{left:203.080133pt;}
.x34{left:207.084533pt;}
.x8{left:208.332000pt;}
.x14{left:209.323467pt;}
.x37{left:212.277067pt;}
.x2f{left:215.340933pt;}
.x3a{left:230.780000pt;}
.x35{left:241.408267pt;}
.x31{left:251.961867pt;}
.x7{left:252.884533pt;}
.x1c{left:254.187600pt;}
.x1b{left:255.309733pt;}
.x24{left:256.553333pt;}
.x19{left:257.907467pt;}
.x1f{left:260.277600pt;}
.x17{left:263.494800pt;}
.x1e{left:267.651600pt;}
.x18{left:271.695467pt;}
.x1d{left:277.143200pt;}
.x36{left:280.913200pt;}
.xb{left:285.081600pt;}
.x1a{left:290.697067pt;}
.x2d{left:293.828667pt;}
.x29{left:296.844267pt;}
.x28{left:300.152000pt;}
.x2b{left:301.995467pt;}
.x33{left:310.874133pt;}
.x2c{left:327.127600pt;}
.xc{left:416.503067pt;}
.x1{left:539.436800pt;}
.x2a{left:541.410267pt;}
.x32{left:546.323600pt;}
}




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