
    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_0ed4b1117ab807306c47a14a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_bfe73586fc29c097c0ee18fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_73efe1853773043724cb4319.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.694336;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_a8935df1ef267a0ac0113c0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051758;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_00d83277730d194185619c63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_362419ccd4c1470927fb8cd7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079102;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_36256d8d3e9ed01aeaf529aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_5968eaf5a0658816e0137bb1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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);}
.v7{vertical-align:-29.437941px;}
.v4{vertical-align:-19.980000px;}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:17.980200px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:23.975400px;}
.v5{vertical-align:32.400000px;}
.ls5{letter-spacing:-6.037200px;}
.ls4{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.750600px;}
.lsf{letter-spacing:-0.172800px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.006000px;}
.ls1{letter-spacing:0.012000px;}
.lsa{letter-spacing:1.278000px;}
.lsb{letter-spacing:9.602851px;}
.ls9{letter-spacing:13.111200px;}
.ls8{letter-spacing:31.246955px;}
.lsc{letter-spacing:56.802600px;}
.ls7{letter-spacing:63.968400px;}
.ls10{letter-spacing:107.989200px;}
.lse{letter-spacing:112.530600px;}
.ls12{letter-spacing:115.138800px;}
.ls11{letter-spacing:124.686000px;}
.ls2{letter-spacing:184.953000px;}
.ls3{letter-spacing:234.789000px;}
.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;}
}
.ws79{word-spacing:-128.638800px;}
.ws76{word-spacing:-77.468400px;}
.ws3e{word-spacing:-60.000000px;}
.ws7{word-spacing:-21.000000px;}
.ws7a{word-spacing:-20.444400px;}
.ws8{word-spacing:-15.000000px;}
.ws2{word-spacing:-13.500000px;}
.ws41{word-spacing:-12.420000px;}
.ws0{word-spacing:-10.494000px;}
.ws5{word-spacing:-8.745000px;}
.ws1{word-spacing:-7.870500px;}
.wsc2{word-spacing:-7.356000px;}
.ws32{word-spacing:-5.940000px;}
.ws20{word-spacing:-5.658000px;}
.wsae{word-spacing:-4.542000px;}
.ws88{word-spacing:-4.242000px;}
.ws59{word-spacing:-3.996000px;}
.ws90{word-spacing:-3.504000px;}
.wscd{word-spacing:-3.498000px;}
.ws55{word-spacing:-3.402000px;}
.wseb{word-spacing:-3.366000px;}
.ws5a{word-spacing:-3.312000px;}
.wsd4{word-spacing:-2.814000px;}
.ws80{word-spacing:-2.562000px;}
.ws22{word-spacing:-2.550000px;}
.ws94{word-spacing:-2.400000px;}
.ws9b{word-spacing:-2.328000px;}
.wsda{word-spacing:-2.268000px;}
.ws10{word-spacing:-2.172000px;}
.ws60{word-spacing:-2.160000px;}
.ws47{word-spacing:-2.022000px;}
.wsab{word-spacing:-1.986000px;}
.ws48{word-spacing:-1.968000px;}
.wsb4{word-spacing:-1.914000px;}
.ws9c{word-spacing:-1.608000px;}
.wsc6{word-spacing:-1.584000px;}
.ws5e{word-spacing:-1.560000px;}
.wsd3{word-spacing:-1.434000px;}
.ws62{word-spacing:-1.416000px;}
.wse4{word-spacing:-1.248000px;}
.wse6{word-spacing:-1.086000px;}
.wsa2{word-spacing:-1.026000px;}
.ws2f{word-spacing:-1.002000px;}
.wsb2{word-spacing:-0.978000px;}
.wse7{word-spacing:-0.954000px;}
.ws37{word-spacing:-0.936000px;}
.ws8b{word-spacing:-0.798000px;}
.wsd9{word-spacing:-0.660000px;}
.wsdb{word-spacing:-0.654000px;}
.ws87{word-spacing:-0.648000px;}
.wsa1{word-spacing:-0.588000px;}
.wse5{word-spacing:-0.582000px;}
.wsb0{word-spacing:-0.480000px;}
.ws21{word-spacing:-0.360000px;}
.wse3{word-spacing:-0.276000px;}
.ws30{word-spacing:-0.102000px;}
.ws4{word-spacing:-0.060000px;}
.ws74{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.wsdd{word-spacing:0.174000px;}
.wsc1{word-spacing:0.240000px;}
.ws44{word-spacing:0.306000px;}
.wsac{word-spacing:0.324000px;}
.wsad{word-spacing:0.330000px;}
.wsdf{word-spacing:0.408000px;}
.ws3a{word-spacing:0.414000px;}
.wsaf{word-spacing:0.606000px;}
.wsb1{word-spacing:0.612000px;}
.wse2{word-spacing:0.714000px;}
.wsea{word-spacing:0.756000px;}
.ws2d{word-spacing:1.104000px;}
.ws8e{word-spacing:1.278000px;}
.wsc3{word-spacing:1.416000px;}
.ws6f{word-spacing:1.464000px;}
.ws8a{word-spacing:1.494000px;}
.wsaa{word-spacing:1.517400px;}
.wsa0{word-spacing:1.608000px;}
.ws14{word-spacing:1.686000px;}
.ws8c{word-spacing:1.752000px;}
.wsa8{word-spacing:2.052000px;}
.ws4e{word-spacing:2.190000px;}
.ws81{word-spacing:2.274000px;}
.ws58{word-spacing:2.352000px;}
.ws53{word-spacing:2.478000px;}
.ws69{word-spacing:2.754000px;}
.ws33{word-spacing:2.772000px;}
.ws36{word-spacing:2.922000px;}
.ws46{word-spacing:3.006000px;}
.ws45{word-spacing:3.012000px;}
.wsdc{word-spacing:3.120000px;}
.ws1a{word-spacing:3.384000px;}
.ws93{word-spacing:3.390000px;}
.wsc9{word-spacing:3.678000px;}
.ws12{word-spacing:3.846000px;}
.ws24{word-spacing:4.092000px;}
.ws11{word-spacing:4.146000px;}
.wsbd{word-spacing:4.158000px;}
.ws4a{word-spacing:4.170000px;}
.ws9e{word-spacing:4.188000px;}
.ws92{word-spacing:4.206000px;}
.wsc{word-spacing:4.308000px;}
.ws82{word-spacing:4.644000px;}
.wsc8{word-spacing:4.752000px;}
.ws5d{word-spacing:4.914000px;}
.wsb9{word-spacing:5.016000px;}
.ws9f{word-spacing:5.310000px;}
.ws7f{word-spacing:5.328000px;}
.wsca{word-spacing:5.520000px;}
.wsc4{word-spacing:5.874000px;}
.ws2b{word-spacing:6.102000px;}
.wsd{word-spacing:6.426000px;}
.wsb3{word-spacing:6.468000px;}
.ws6c{word-spacing:6.600000px;}
.wsba{word-spacing:6.690000px;}
.ws54{word-spacing:6.720000px;}
.ws96{word-spacing:6.762000px;}
.wsb5{word-spacing:6.876000px;}
.ws2e{word-spacing:6.942000px;}
.wsf{word-spacing:7.062000px;}
.ws5f{word-spacing:7.122000px;}
.wsa6{word-spacing:7.134000px;}
.ws56{word-spacing:7.158000px;}
.wsc5{word-spacing:7.272000px;}
.wse0{word-spacing:7.350000px;}
.ws3d{word-spacing:7.392000px;}
.ws57{word-spacing:7.464000px;}
.wsa4{word-spacing:7.554000px;}
.ws16{word-spacing:7.650000px;}
.ws71{word-spacing:7.668000px;}
.wsd8{word-spacing:7.938000px;}
.ws6e{word-spacing:8.160000px;}
.ws1c{word-spacing:8.298000px;}
.ws5c{word-spacing:8.364000px;}
.ws4d{word-spacing:8.400000px;}
.ws52{word-spacing:8.568000px;}
.wsb{word-spacing:8.829000px;}
.ws49{word-spacing:8.880000px;}
.wsde{word-spacing:9.138000px;}
.ws6d{word-spacing:9.234000px;}
.wse{word-spacing:9.282000px;}
.ws66{word-spacing:9.438000px;}
.ws72{word-spacing:9.564000px;}
.ws3c{word-spacing:9.732000px;}
.wse9{word-spacing:9.762000px;}
.wse8{word-spacing:9.768000px;}
.ws1e{word-spacing:9.774000px;}
.wscb{word-spacing:9.780000px;}
.ws2a{word-spacing:10.284000px;}
.ws91{word-spacing:10.326000px;}
.wsd0{word-spacing:10.626000px;}
.ws18{word-spacing:10.734000px;}
.wscf{word-spacing:10.992000px;}
.ws89{word-spacing:11.004000px;}
.ws98{word-spacing:11.094000px;}
.ws23{word-spacing:11.148000px;}
.wsb6{word-spacing:11.190000px;}
.wsb7{word-spacing:11.196000px;}
.ws25{word-spacing:11.220000px;}
.ws86{word-spacing:11.502000px;}
.wsbc{word-spacing:11.730000px;}
.ws97{word-spacing:12.078000px;}
.ws35{word-spacing:12.192000px;}
.ws63{word-spacing:12.330000px;}
.wsc7{word-spacing:12.348000px;}
.wscc{word-spacing:12.462000px;}
.wse1{word-spacing:12.492000px;}
.wsa7{word-spacing:12.756000px;}
.ws3b{word-spacing:13.092000px;}
.ws84{word-spacing:13.584000px;}
.ws68{word-spacing:13.764000px;}
.ws2c{word-spacing:13.950000px;}
.ws6b{word-spacing:14.070000px;}
.wsa3{word-spacing:14.250000px;}
.ws15{word-spacing:14.568000px;}
.ws67{word-spacing:14.634000px;}
.ws9d{word-spacing:14.772000px;}
.ws7e{word-spacing:14.784000px;}
.ws8d{word-spacing:14.874000px;}
.ws13{word-spacing:16.092000px;}
.ws83{word-spacing:16.230000px;}
.ws27{word-spacing:16.434000px;}
.ws51{word-spacing:17.550000px;}
.ws5b{word-spacing:17.598000px;}
.ws1f{word-spacing:18.390000px;}
.wsd6{word-spacing:18.414000px;}
.ws29{word-spacing:18.420000px;}
.ws8f{word-spacing:18.624000px;}
.ws85{word-spacing:19.386000px;}
.wsbf{word-spacing:19.518000px;}
.wsc0{word-spacing:19.524000px;}
.ws9a{word-spacing:19.830000px;}
.ws26{word-spacing:20.082000px;}
.ws28{word-spacing:20.088000px;}
.ws1b{word-spacing:20.616000px;}
.ws39{word-spacing:20.622000px;}
.wsbb{word-spacing:20.628000px;}
.wsd1{word-spacing:20.880000px;}
.ws19{word-spacing:21.378000px;}
.ws7d{word-spacing:21.606000px;}
.wsd2{word-spacing:21.906000px;}
.ws65{word-spacing:22.302000px;}
.ws50{word-spacing:22.566000px;}
.ws38{word-spacing:23.148000px;}
.ws34{word-spacing:23.460000px;}
.ws99{word-spacing:24.114000px;}
.ws95{word-spacing:24.822000px;}
.wsd7{word-spacing:25.140000px;}
.ws4b{word-spacing:25.146000px;}
.wsb8{word-spacing:26.772000px;}
.ws64{word-spacing:26.964000px;}
.ws4f{word-spacing:27.342000px;}
.ws17{word-spacing:28.020000px;}
.wsbe{word-spacing:28.518000px;}
.wsa{word-spacing:28.846800px;}
.ws6a{word-spacing:30.606000px;}
.ws43{word-spacing:30.888000px;}
.wsce{word-spacing:31.752000px;}
.ws61{word-spacing:31.932000px;}
.wsa9{word-spacing:32.964000px;}
.wsa5{word-spacing:33.024000px;}
.wsd5{word-spacing:35.760000px;}
.ws3f{word-spacing:37.476000px;}
.ws70{word-spacing:38.868000px;}
.ws31{word-spacing:47.142000px;}
.ws4c{word-spacing:47.172000px;}
.ws1d{word-spacing:62.328000px;}
.ws77{word-spacing:79.126200px;}
.ws78{word-spacing:80.627400px;}
.ws6{word-spacing:123.486000px;}
.ws3{word-spacing:160.206000px;}
.ws73{word-spacing:202.656600px;}
.ws42{word-spacing:208.391400px;}
.ws7b{word-spacing:228.144000px;}
.ws75{word-spacing:228.652200px;}
.ws40{word-spacing:235.537200px;}
.ws7c{word-spacing:240.144000px;}
._28{margin-left:-279.390600px;}
._27{margin-left:-83.262600px;}
._26{margin-left:-36.390600px;}
._f{margin-left:-28.842000px;}
._a{margin-left:-19.644000px;}
._8{margin-left:-16.752000px;}
._23{margin-left:-15.006600px;}
._9{margin-left:-12.804000px;}
._3{margin-left:-11.641200px;}
._2a{margin-left:-9.522000px;}
._4{margin-left:-8.461800px;}
._2{margin-left:-6.960600px;}
._7{margin-left:-5.508000px;}
._1{margin-left:-3.823200px;}
._0{margin-left:-1.900800px;}
._b{width:1.248000px;}
._d{width:4.146000px;}
._10{width:5.796000px;}
._c{width:13.098000px;}
._5{width:26.951400px;}
._e{width:30.606000px;}
._6{width:46.969200px;}
._1c{width:120.160800px;}
._1b{width:130.663800px;}
._13{width:134.076600px;}
._11{width:141.015600px;}
._18{width:144.336600px;}
._16{width:146.080800px;}
._21{width:147.290400px;}
._1a{width:157.296600px;}
._17{width:170.499600px;}
._14{width:179.928000px;}
._19{width:182.503800px;}
._12{width:191.059200px;}
._1f{width:200.064600px;}
._1d{width:203.364000px;}
._15{width:205.162200px;}
._29{width:206.644800px;}
._1e{width:227.788200px;}
._25{width:228.943800px;}
._22{width:242.152200px;}
._20{width:331.006494px;}
._24{width:469.632600px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:31.482000px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:37.687800px;}
.fs3{font-size:41.976000px;}
.fs8{font-size:43.125000px;}
.fs9{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:59.593500px;}
.ye{bottom:106.464000px;}
.ye3{bottom:109.418400px;}
.ye2{bottom:120.106350px;}
.ye0{bottom:120.106500px;}
.yb4{bottom:120.385500px;}
.yd{bottom:127.159500px;}
.ye1{bottom:128.731500px;}
.yc{bottom:143.116500px;}
.yb3{bottom:151.141500px;}
.yfc{bottom:158.785500px;}
.yb{bottom:163.812000px;}
.yb2{bottom:169.141500px;}
.y6d{bottom:176.688000px;}
.yfb{bottom:176.785500px;}
.ya{bottom:179.769000px;}
.yd3{bottom:180.282000px;}
.y86{bottom:183.853500px;}
.yb1{bottom:187.141500px;}
.y6c{bottom:194.688000px;}
.yfa{bottom:194.785500px;}
.yd2{bottom:198.282000px;}
.y9{bottom:200.464500px;}
.y85{bottom:201.853500px;}
.yb0{bottom:205.141500px;}
.yd1{bottom:216.282000px;}
.y8{bottom:216.420000px;}
.y6b{bottom:216.939000px;}
.yf9{bottom:217.038000px;}
.y84{bottom:224.104500px;}
.yd0{bottom:234.282000px;}
.yde{bottom:234.862500px;}
.yf8{bottom:235.038000px;}
.yaf{bottom:235.897500px;}
.y7{bottom:237.115500px;}
.ydc{bottom:238.565953px;}
.y6a{bottom:239.191500px;}
.y83{bottom:242.104500px;}
.ydf{bottom:245.925000px;}
.ydd{bottom:249.675000px;}
.ydb{bottom:252.159000px;}
.ycf{bottom:252.282000px;}
.yf7{bottom:253.038000px;}
.y69{bottom:257.191500px;}
.y82{bottom:260.104500px;}
.yae{bottom:266.653500px;}
.yce{bottom:270.282000px;}
.y68{bottom:275.191500px;}
.yf6{bottom:275.289000px;}
.y81{bottom:278.104500px;}
.yad{bottom:284.653500px;}
.y31{bottom:288.117000px;}
.ycd{bottom:288.282000px;}
.y67{bottom:293.191500px;}
.yf5{bottom:293.289000px;}
.y80{bottom:296.104500px;}
.yac{bottom:302.653500px;}
.y30{bottom:306.117000px;}
.ycc{bottom:306.282000px;}
.y66{bottom:311.191500px;}
.yf4{bottom:311.289000px;}
.y7f{bottom:314.104500px;}
.yab{bottom:320.653500px;}
.y2f{bottom:324.117000px;}
.ycb{bottom:324.282000px;}
.y7e{bottom:332.104500px;}
.y65{bottom:333.444000px;}
.yf3{bottom:342.045150px;}
.y2e{bottom:342.117000px;}
.yca{bottom:342.282000px;}
.yaa{bottom:351.409500px;}
.y64{bottom:351.444000px;}
.y7d{bottom:354.357000px;}
.y48{bottom:354.442500px;}
.y2d{bottom:360.117000px;}
.y63{bottom:369.444000px;}
.y7c{bottom:372.357000px;}
.y47{bottom:372.442500px;}
.y2c{bottom:378.117000px;}
.yf2{bottom:381.855300px;}
.y62{bottom:387.444000px;}
.y103{bottom:387.556500px;}
.y148{bottom:387.750000px;}
.ya9{bottom:390.016500px;}
.y7b{bottom:390.357000px;}
.y46{bottom:390.442500px;}
.y127{bottom:395.586150px;}
.y2b{bottom:396.117000px;}
.yf1{bottom:402.176100px;}
.y61{bottom:405.444000px;}
.y102{bottom:405.556500px;}
.y147{bottom:405.750000px;}
.ya8{bottom:408.016500px;}
.y7a{bottom:408.357000px;}
.y45{bottom:408.442500px;}
.y126{bottom:413.586150px;}
.y2a{bottom:414.117000px;}
.yf0{bottom:422.496900px;}
.y60{bottom:423.444000px;}
.y101{bottom:423.556500px;}
.ya7{bottom:426.016500px;}
.y79{bottom:426.357000px;}
.y44{bottom:426.442500px;}
.y146{bottom:428.001000px;}
.y125{bottom:431.586150px;}
.y29{bottom:432.117000px;}
.y5f{bottom:441.444000px;}
.y100{bottom:441.556500px;}
.yef{bottom:442.816500px;}
.ya6{bottom:444.016500px;}
.y78{bottom:444.357000px;}
.y43{bottom:444.442500px;}
.y145{bottom:446.001000px;}
.y28{bottom:450.117000px;}
.y5e{bottom:459.444000px;}
.yff{bottom:459.556500px;}
.ya5{bottom:462.016500px;}
.y124{bottom:462.342000px;}
.y77{bottom:462.357000px;}
.y42{bottom:462.442500px;}
.yee{bottom:463.137300px;}
.y27{bottom:468.117000px;}
.y144{bottom:468.253500px;}
.y5d{bottom:477.444000px;}
.ya4{bottom:480.016500px;}
.y76{bottom:480.357000px;}
.yed{bottom:483.458100px;}
.y41{bottom:484.693500px;}
.y26{bottom:486.117000px;}
.y143{bottom:490.504500px;}
.y5c{bottom:495.444000px;}
.yec{bottom:497.858100px;}
.ya3{bottom:498.016500px;}
.y75{bottom:498.357000px;}
.yfe{bottom:498.816000px;}
.y40{bottom:502.693500px;}
.y25{bottom:504.117000px;}
.y123{bottom:504.550650px;}
.y142{bottom:512.757000px;}
.y5b{bottom:513.444000px;}
.ya2{bottom:516.016500px;}
.yeb{bottom:517.984500px;}
.y3f{bottom:520.693500px;}
.y24{bottom:522.117000px;}
.y122{bottom:522.550500px;}
.y74{bottom:529.113000px;}
.y141{bottom:530.757000px;}
.y5a{bottom:531.444000px;}
.y3e{bottom:538.693500px;}
.y121{bottom:540.550500px;}
.y23{bottom:544.368000px;}
.yc9{bottom:544.533000px;}
.y140{bottom:548.757000px;}
.y59{bottom:549.444000px;}
.ya1{bottom:555.277500px;}
.y3d{bottom:556.693500px;}
.y120{bottom:558.550500px;}
.y22{bottom:562.368000px;}
.yc8{bottom:562.533000px;}
.y58{bottom:567.444000px;}
.y13f{bottom:571.009500px;}
.y3c{bottom:574.693500px;}
.y11f{bottom:576.550500px;}
.y21{bottom:580.368000px;}
.y99{bottom:581.340300px;}
.y57{bottom:585.444000px;}
.y13e{bottom:589.009500px;}
.y3b{bottom:592.693500px;}
.y11e{bottom:594.550500px;}
.y20{bottom:598.368000px;}
.y98{bottom:602.700000px;}
.y56{bottom:603.444000px;}
.y13d{bottom:607.009500px;}
.yc7{bottom:607.038000px;}
.y3a{bottom:610.693500px;}
.y11d{bottom:612.550500px;}
.y1f{bottom:616.368000px;}
.y55{bottom:621.444000px;}
.y97{bottom:624.059700px;}
.yc6{bottom:625.038000px;}
.y39{bottom:628.693500px;}
.y13c{bottom:629.260500px;}
.y11c{bottom:630.550500px;}
.y1e{bottom:634.368000px;}
.yc5{bottom:643.038000px;}
.y54{bottom:643.695000px;}
.y96{bottom:645.419400px;}
.y13b{bottom:647.260500px;}
.y11b{bottom:648.550500px;}
.y38{bottom:650.946000px;}
.y1d{bottom:652.368000px;}
.yc4{bottom:661.038000px;}
.y53{bottom:661.695000px;}
.y13a{bottom:665.260500px;}
.y11a{bottom:666.550500px;}
.y95{bottom:666.779100px;}
.y37{bottom:668.946000px;}
.y1c{bottom:670.368000px;}
.y52{bottom:679.695000px;}
.y119{bottom:684.550500px;}
.y36{bottom:686.946000px;}
.y139{bottom:687.513000px;}
.y94{bottom:688.138800px;}
.y1b{bottom:688.368000px;}
.yc3{bottom:691.794000px;}
.y51{bottom:697.695000px;}
.y118{bottom:702.550500px;}
.y35{bottom:704.946000px;}
.y138{bottom:705.513000px;}
.y1a{bottom:706.368000px;}
.y93{bottom:709.499850px;}
.y50{bottom:715.695000px;}
.y117{bottom:720.550500px;}
.y34{bottom:722.946000px;}
.y19{bottom:724.368000px;}
.y137{bottom:727.765500px;}
.y92{bottom:730.859550px;}
.y4f{bottom:733.695000px;}
.yc2{bottom:734.001000px;}
.y116{bottom:738.550500px;}
.y33{bottom:740.946000px;}
.y136{bottom:745.765500px;}
.y4e{bottom:751.695000px;}
.yc1{bottom:752.001000px;}
.y91{bottom:752.219250px;}
.y18{bottom:755.124000px;}
.y32{bottom:758.946000px;}
.y135{bottom:768.016500px;}
.y115{bottom:769.306500px;}
.y4d{bottom:769.695000px;}
.yc0{bottom:770.001000px;}
.y90{bottom:773.578950px;}
.y134{bottom:786.016500px;}
.y8f{bottom:794.940000px;}
.ye9{bottom:798.039000px;}
.ybf{bottom:800.757000px;}
.yea{bottom:801.555000px;}
.y133{bottom:804.016500px;}
.y4c{bottom:808.954500px;}
.y114{bottom:811.513500px;}
.ya0{bottom:811.528500px;}
.y8e{bottom:816.299700px;}
.y16{bottom:818.190000px;}
.yfd{bottom:826.075500px;}
.y132{bottom:826.269000px;}
.y4b{bottom:826.954500px;}
.ybe{bottom:827.260500px;}
.y113{bottom:829.513500px;}
.y9f{bottom:829.528500px;}
.y8d{bottom:837.659400px;}
.y15{bottom:840.348000px;}
.y131{bottom:844.269000px;}
.y4a{bottom:844.954500px;}
.ybd{bottom:845.260500px;}
.y112{bottom:847.513500px;}
.y9e{bottom:847.528500px;}
.y14{bottom:858.348000px;}
.y8c{bottom:859.020450px;}
.ybc{bottom:863.260500px;}
.y111{bottom:865.513500px;}
.y9d{bottom:865.528500px;}
.y130{bottom:866.521500px;}
.y13{bottom:876.348000px;}
.y8b{bottom:880.381800px;}
.ybb{bottom:881.260500px;}
.y110{bottom:883.513500px;}
.y9c{bottom:883.528500px;}
.y12f{bottom:884.521500px;}
.y12{bottom:894.348000px;}
.yba{bottom:899.260500px;}
.y10f{bottom:901.513500px;}
.y9b{bottom:901.528500px;}
.y8a{bottom:901.741800px;}
.y12e{bottom:906.772500px;}
.y11{bottom:912.348000px;}
.yb9{bottom:917.260500px;}
.y10e{bottom:919.513500px;}
.y89{bottom:923.101800px;}
.y12d{bottom:924.772500px;}
.y10{bottom:930.348000px;}
.yb8{bottom:935.260500px;}
.y10d{bottom:937.513500px;}
.yda{bottom:940.191900px;}
.y88{bottom:944.461500px;}
.y12c{bottom:947.025000px;}
.yf{bottom:948.591000px;}
.y87{bottom:952.561500px;}
.yb7{bottom:953.260500px;}
.y10c{bottom:955.513500px;}
.yd9{bottom:961.551600px;}
.y12b{bottom:969.277500px;}
.yb6{bottom:971.260500px;}
.y10b{bottom:973.513500px;}
.yd8{bottom:977.751600px;}
.y73{bottom:987.277500px;}
.y10a{bottom:991.513500px;}
.y17{bottom:993.117000px;}
.yd7{bottom:999.111300px;}
.ye8{bottom:1000.418400px;}
.y72{bottom:1005.277500px;}
.ye5{bottom:1007.590797px;}
.y109{bottom:1009.513500px;}
.y12a{bottom:1009.528500px;}
.yb5{bottom:1010.521500px;}
.ye7{bottom:1011.106350px;}
.ye4{bottom:1011.106500px;}
.ye6{bottom:1019.731500px;}
.yd6{bottom:1020.471450px;}
.y108{bottom:1027.513500px;}
.y129{bottom:1027.528500px;}
.y6{bottom:1040.403150px;}
.yd5{bottom:1041.832500px;}
.y107{bottom:1045.513500px;}
.y128{bottom:1045.528500px;}
.y71{bottom:1049.781000px;}
.yd4{bottom:1058.032500px;}
.y106{bottom:1063.513500px;}
.y70{bottom:1067.781000px;}
.y5{bottom:1074.759000px;}
.y105{bottom:1085.766000px;}
.y6f{bottom:1085.781000px;}
.y4{bottom:1099.959000px;}
.y104{bottom:1103.766000px;}
.y6e{bottom:1103.781000px;}
.y49{bottom:1158.679200px;}
.y9a{bottom:1158.684000px;}
.y2{bottom:1158.778500px;}
.y1{bottom:1183.482150px;}
.h4{height:29.399836px;}
.hb{height:32.535171px;}
.he{height:34.909061px;}
.hc{height:37.229004px;}
.h13{height:42.117188px;}
.h12{height:42.773438px;}
.hd{height:46.617188px;}
.h1{height:47.381836px;}
.h9{height:48.120117px;}
.h8{height:48.796875px;}
.hf{height:50.018555px;}
.h6{height:52.646484px;}
.h14{height:52.647084px;}
.h10{height:52.971171px;}
.h11{height:52.971771px;}
.h5{height:53.466797px;}
.h3{height:63.175781px;}
.h2{height:74.853516px;}
.ha{height:79.781836px;}
.h7{height:80.520117px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x19{left:112.487100px;}
.xc{left:119.055000px;}
.x31{left:120.324150px;}
.xa{left:122.574900px;}
.x4{left:127.558950px;}
.x30{left:134.005650px;}
.x13{left:141.643650px;}
.xb{left:199.732500px;}
.x1f{left:218.637000px;}
.x1c{left:229.371000px;}
.x5{left:231.886350px;}
.x1e{left:239.637000px;}
.x21{left:241.278300px;}
.x16{left:264.718500px;}
.x1d{left:272.919000px;}
.x17{left:278.223900px;}
.x1a{left:280.090500px;}
.x1b{left:286.558500px;}
.x20{left:288.058500px;}
.x18{left:345.505200px;}
.x14{left:401.328600px;}
.xd{left:452.785500px;}
.x12{left:459.359400px;}
.x10{left:460.617600px;}
.x11{left:462.599400px;}
.xf{left:465.838650px;}
.x7{left:474.095250px;}
.x28{left:483.474000px;}
.x8{left:495.354750px;}
.x27{left:505.812000px;}
.x2f{left:507.800400px;}
.x2a{left:567.334800px;}
.x29{left:575.118000px;}
.x22{left:586.432500px;}
.x25{left:598.385550px;}
.x26{left:600.541500px;}
.x23{left:602.087470px;}
.xe{left:603.672300px;}
.x9{left:609.624000px;}
.x2b{left:639.546000px;}
.x24{left:656.229000px;}
.x2c{left:662.144400px;}
.x2{left:676.610700px;}
.x6{left:683.188500px;}
.x2e{left:723.405600px;}
.x2d{left:731.188800px;}
.x15{left:769.123500px;}
.x3{left:773.113500px;}
@media print{
.v7{vertical-align:-26.167058pt;}
.v4{vertical-align:-17.760000pt;}
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:15.982400pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.v5{vertical-align:28.800000pt;}
.ls5{letter-spacing:-5.366400pt;}
.ls4{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.667200pt;}
.lsf{letter-spacing:-0.153600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005333pt;}
.ls1{letter-spacing:0.010667pt;}
.lsa{letter-spacing:1.136000pt;}
.lsb{letter-spacing:8.535868pt;}
.ls9{letter-spacing:11.654400pt;}
.ls8{letter-spacing:27.775071pt;}
.lsc{letter-spacing:50.491200pt;}
.ls7{letter-spacing:56.860800pt;}
.ls10{letter-spacing:95.990400pt;}
.lse{letter-spacing:100.027200pt;}
.ls12{letter-spacing:102.345600pt;}
.ls11{letter-spacing:110.832000pt;}
.ls2{letter-spacing:164.402667pt;}
.ls3{letter-spacing:208.701333pt;}
.ws79{word-spacing:-114.345600pt;}
.ws76{word-spacing:-68.860800pt;}
.ws3e{word-spacing:-53.333333pt;}
.ws7{word-spacing:-18.666667pt;}
.ws7a{word-spacing:-18.172800pt;}
.ws8{word-spacing:-13.333333pt;}
.ws2{word-spacing:-12.000000pt;}
.ws41{word-spacing:-11.040000pt;}
.ws0{word-spacing:-9.328000pt;}
.ws5{word-spacing:-7.773333pt;}
.ws1{word-spacing:-6.996000pt;}
.wsc2{word-spacing:-6.538667pt;}
.ws32{word-spacing:-5.280000pt;}
.ws20{word-spacing:-5.029333pt;}
.wsae{word-spacing:-4.037333pt;}
.ws88{word-spacing:-3.770667pt;}
.ws59{word-spacing:-3.552000pt;}
.ws90{word-spacing:-3.114667pt;}
.wscd{word-spacing:-3.109333pt;}
.ws55{word-spacing:-3.024000pt;}
.wseb{word-spacing:-2.992000pt;}
.ws5a{word-spacing:-2.944000pt;}
.wsd4{word-spacing:-2.501333pt;}
.ws80{word-spacing:-2.277333pt;}
.ws22{word-spacing:-2.266667pt;}
.ws94{word-spacing:-2.133333pt;}
.ws9b{word-spacing:-2.069333pt;}
.wsda{word-spacing:-2.016000pt;}
.ws10{word-spacing:-1.930667pt;}
.ws60{word-spacing:-1.920000pt;}
.ws47{word-spacing:-1.797333pt;}
.wsab{word-spacing:-1.765333pt;}
.ws48{word-spacing:-1.749333pt;}
.wsb4{word-spacing:-1.701333pt;}
.ws9c{word-spacing:-1.429333pt;}
.wsc6{word-spacing:-1.408000pt;}
.ws5e{word-spacing:-1.386667pt;}
.wsd3{word-spacing:-1.274667pt;}
.ws62{word-spacing:-1.258667pt;}
.wse4{word-spacing:-1.109333pt;}
.wse6{word-spacing:-0.965333pt;}
.wsa2{word-spacing:-0.912000pt;}
.ws2f{word-spacing:-0.890667pt;}
.wsb2{word-spacing:-0.869333pt;}
.wse7{word-spacing:-0.848000pt;}
.ws37{word-spacing:-0.832000pt;}
.ws8b{word-spacing:-0.709333pt;}
.wsd9{word-spacing:-0.586667pt;}
.wsdb{word-spacing:-0.581333pt;}
.ws87{word-spacing:-0.576000pt;}
.wsa1{word-spacing:-0.522667pt;}
.wse5{word-spacing:-0.517333pt;}
.wsb0{word-spacing:-0.426667pt;}
.ws21{word-spacing:-0.320000pt;}
.wse3{word-spacing:-0.245333pt;}
.ws30{word-spacing:-0.090667pt;}
.ws4{word-spacing:-0.053333pt;}
.ws74{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.154667pt;}
.wsc1{word-spacing:0.213333pt;}
.ws44{word-spacing:0.272000pt;}
.wsac{word-spacing:0.288000pt;}
.wsad{word-spacing:0.293333pt;}
.wsdf{word-spacing:0.362667pt;}
.ws3a{word-spacing:0.368000pt;}
.wsaf{word-spacing:0.538667pt;}
.wsb1{word-spacing:0.544000pt;}
.wse2{word-spacing:0.634667pt;}
.wsea{word-spacing:0.672000pt;}
.ws2d{word-spacing:0.981333pt;}
.ws8e{word-spacing:1.136000pt;}
.wsc3{word-spacing:1.258667pt;}
.ws6f{word-spacing:1.301333pt;}
.ws8a{word-spacing:1.328000pt;}
.wsaa{word-spacing:1.348800pt;}
.wsa0{word-spacing:1.429333pt;}
.ws14{word-spacing:1.498667pt;}
.ws8c{word-spacing:1.557333pt;}
.wsa8{word-spacing:1.824000pt;}
.ws4e{word-spacing:1.946667pt;}
.ws81{word-spacing:2.021333pt;}
.ws58{word-spacing:2.090667pt;}
.ws53{word-spacing:2.202667pt;}
.ws69{word-spacing:2.448000pt;}
.ws33{word-spacing:2.464000pt;}
.ws36{word-spacing:2.597333pt;}
.ws46{word-spacing:2.672000pt;}
.ws45{word-spacing:2.677333pt;}
.wsdc{word-spacing:2.773333pt;}
.ws1a{word-spacing:3.008000pt;}
.ws93{word-spacing:3.013333pt;}
.wsc9{word-spacing:3.269333pt;}
.ws12{word-spacing:3.418667pt;}
.ws24{word-spacing:3.637333pt;}
.ws11{word-spacing:3.685333pt;}
.wsbd{word-spacing:3.696000pt;}
.ws4a{word-spacing:3.706667pt;}
.ws9e{word-spacing:3.722667pt;}
.ws92{word-spacing:3.738667pt;}
.wsc{word-spacing:3.829333pt;}
.ws82{word-spacing:4.128000pt;}
.wsc8{word-spacing:4.224000pt;}
.ws5d{word-spacing:4.368000pt;}
.wsb9{word-spacing:4.458667pt;}
.ws9f{word-spacing:4.720000pt;}
.ws7f{word-spacing:4.736000pt;}
.wsca{word-spacing:4.906667pt;}
.wsc4{word-spacing:5.221333pt;}
.ws2b{word-spacing:5.424000pt;}
.wsd{word-spacing:5.712000pt;}
.wsb3{word-spacing:5.749333pt;}
.ws6c{word-spacing:5.866667pt;}
.wsba{word-spacing:5.946667pt;}
.ws54{word-spacing:5.973333pt;}
.ws96{word-spacing:6.010667pt;}
.wsb5{word-spacing:6.112000pt;}
.ws2e{word-spacing:6.170667pt;}
.wsf{word-spacing:6.277333pt;}
.ws5f{word-spacing:6.330667pt;}
.wsa6{word-spacing:6.341333pt;}
.ws56{word-spacing:6.362667pt;}
.wsc5{word-spacing:6.464000pt;}
.wse0{word-spacing:6.533333pt;}
.ws3d{word-spacing:6.570667pt;}
.ws57{word-spacing:6.634667pt;}
.wsa4{word-spacing:6.714667pt;}
.ws16{word-spacing:6.800000pt;}
.ws71{word-spacing:6.816000pt;}
.wsd8{word-spacing:7.056000pt;}
.ws6e{word-spacing:7.253333pt;}
.ws1c{word-spacing:7.376000pt;}
.ws5c{word-spacing:7.434667pt;}
.ws4d{word-spacing:7.466667pt;}
.ws52{word-spacing:7.616000pt;}
.wsb{word-spacing:7.848000pt;}
.ws49{word-spacing:7.893333pt;}
.wsde{word-spacing:8.122667pt;}
.ws6d{word-spacing:8.208000pt;}
.wse{word-spacing:8.250667pt;}
.ws66{word-spacing:8.389333pt;}
.ws72{word-spacing:8.501333pt;}
.ws3c{word-spacing:8.650667pt;}
.wse9{word-spacing:8.677333pt;}
.wse8{word-spacing:8.682667pt;}
.ws1e{word-spacing:8.688000pt;}
.wscb{word-spacing:8.693333pt;}
.ws2a{word-spacing:9.141333pt;}
.ws91{word-spacing:9.178667pt;}
.wsd0{word-spacing:9.445333pt;}
.ws18{word-spacing:9.541333pt;}
.wscf{word-spacing:9.770667pt;}
.ws89{word-spacing:9.781333pt;}
.ws98{word-spacing:9.861333pt;}
.ws23{word-spacing:9.909333pt;}
.wsb6{word-spacing:9.946667pt;}
.wsb7{word-spacing:9.952000pt;}
.ws25{word-spacing:9.973333pt;}
.ws86{word-spacing:10.224000pt;}
.wsbc{word-spacing:10.426667pt;}
.ws97{word-spacing:10.736000pt;}
.ws35{word-spacing:10.837333pt;}
.ws63{word-spacing:10.960000pt;}
.wsc7{word-spacing:10.976000pt;}
.wscc{word-spacing:11.077333pt;}
.wse1{word-spacing:11.104000pt;}
.wsa7{word-spacing:11.338667pt;}
.ws3b{word-spacing:11.637333pt;}
.ws84{word-spacing:12.074667pt;}
.ws68{word-spacing:12.234667pt;}
.ws2c{word-spacing:12.400000pt;}
.ws6b{word-spacing:12.506667pt;}
.wsa3{word-spacing:12.666667pt;}
.ws15{word-spacing:12.949333pt;}
.ws67{word-spacing:13.008000pt;}
.ws9d{word-spacing:13.130667pt;}
.ws7e{word-spacing:13.141333pt;}
.ws8d{word-spacing:13.221333pt;}
.ws13{word-spacing:14.304000pt;}
.ws83{word-spacing:14.426667pt;}
.ws27{word-spacing:14.608000pt;}
.ws51{word-spacing:15.600000pt;}
.ws5b{word-spacing:15.642667pt;}
.ws1f{word-spacing:16.346667pt;}
.wsd6{word-spacing:16.368000pt;}
.ws29{word-spacing:16.373333pt;}
.ws8f{word-spacing:16.554667pt;}
.ws85{word-spacing:17.232000pt;}
.wsbf{word-spacing:17.349333pt;}
.wsc0{word-spacing:17.354667pt;}
.ws9a{word-spacing:17.626667pt;}
.ws26{word-spacing:17.850667pt;}
.ws28{word-spacing:17.856000pt;}
.ws1b{word-spacing:18.325333pt;}
.ws39{word-spacing:18.330667pt;}
.wsbb{word-spacing:18.336000pt;}
.wsd1{word-spacing:18.560000pt;}
.ws19{word-spacing:19.002667pt;}
.ws7d{word-spacing:19.205333pt;}
.wsd2{word-spacing:19.472000pt;}
.ws65{word-spacing:19.824000pt;}
.ws50{word-spacing:20.058667pt;}
.ws38{word-spacing:20.576000pt;}
.ws34{word-spacing:20.853333pt;}
.ws99{word-spacing:21.434667pt;}
.ws95{word-spacing:22.064000pt;}
.wsd7{word-spacing:22.346667pt;}
.ws4b{word-spacing:22.352000pt;}
.wsb8{word-spacing:23.797333pt;}
.ws64{word-spacing:23.968000pt;}
.ws4f{word-spacing:24.304000pt;}
.ws17{word-spacing:24.906667pt;}
.wsbe{word-spacing:25.349333pt;}
.wsa{word-spacing:25.641600pt;}
.ws6a{word-spacing:27.205333pt;}
.ws43{word-spacing:27.456000pt;}
.wsce{word-spacing:28.224000pt;}
.ws61{word-spacing:28.384000pt;}
.wsa9{word-spacing:29.301333pt;}
.wsa5{word-spacing:29.354667pt;}
.wsd5{word-spacing:31.786667pt;}
.ws3f{word-spacing:33.312000pt;}
.ws70{word-spacing:34.549333pt;}
.ws31{word-spacing:41.904000pt;}
.ws4c{word-spacing:41.930667pt;}
.ws1d{word-spacing:55.402667pt;}
.ws77{word-spacing:70.334400pt;}
.ws78{word-spacing:71.668800pt;}
.ws6{word-spacing:109.765333pt;}
.ws3{word-spacing:142.405333pt;}
.ws73{word-spacing:180.139200pt;}
.ws42{word-spacing:185.236800pt;}
.ws7b{word-spacing:202.794667pt;}
.ws75{word-spacing:203.246400pt;}
.ws40{word-spacing:209.366400pt;}
.ws7c{word-spacing:213.461333pt;}
._28{margin-left:-248.347200pt;}
._27{margin-left:-74.011200pt;}
._26{margin-left:-32.347200pt;}
._f{margin-left:-25.637333pt;}
._a{margin-left:-17.461333pt;}
._8{margin-left:-14.890667pt;}
._23{margin-left:-13.339200pt;}
._9{margin-left:-11.381333pt;}
._3{margin-left:-10.347733pt;}
._2a{margin-left:-8.464000pt;}
._4{margin-left:-7.521600pt;}
._2{margin-left:-6.187200pt;}
._7{margin-left:-4.896000pt;}
._1{margin-left:-3.398400pt;}
._0{margin-left:-1.689600pt;}
._b{width:1.109333pt;}
._d{width:3.685333pt;}
._10{width:5.152000pt;}
._c{width:11.642667pt;}
._5{width:23.956800pt;}
._e{width:27.205333pt;}
._6{width:41.750400pt;}
._1c{width:106.809600pt;}
._1b{width:116.145600pt;}
._13{width:119.179200pt;}
._11{width:125.347200pt;}
._18{width:128.299200pt;}
._16{width:129.849600pt;}
._21{width:130.924800pt;}
._1a{width:139.819200pt;}
._17{width:151.555200pt;}
._14{width:159.936000pt;}
._19{width:162.225600pt;}
._12{width:169.830400pt;}
._1f{width:177.835200pt;}
._1d{width:180.768000pt;}
._15{width:182.366400pt;}
._29{width:183.684267pt;}
._1e{width:202.478400pt;}
._25{width:203.505600pt;}
._22{width:215.246400pt;}
._20{width:294.227995pt;}
._24{width:417.451200pt;}
.fs4{font-size:27.984000pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:33.500267pt;}
.fs3{font-size:37.312000pt;}
.fs8{font-size:38.333333pt;}
.fs9{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:52.972000pt;}
.ye{bottom:94.634667pt;}
.ye3{bottom:97.260800pt;}
.ye2{bottom:106.761200pt;}
.ye0{bottom:106.761333pt;}
.yb4{bottom:107.009333pt;}
.yd{bottom:113.030667pt;}
.ye1{bottom:114.428000pt;}
.yc{bottom:127.214667pt;}
.yb3{bottom:134.348000pt;}
.yfc{bottom:141.142667pt;}
.yb{bottom:145.610667pt;}
.yb2{bottom:150.348000pt;}
.y6d{bottom:157.056000pt;}
.yfb{bottom:157.142667pt;}
.ya{bottom:159.794667pt;}
.yd3{bottom:160.250667pt;}
.y86{bottom:163.425333pt;}
.yb1{bottom:166.348000pt;}
.y6c{bottom:173.056000pt;}
.yfa{bottom:173.142667pt;}
.yd2{bottom:176.250667pt;}
.y9{bottom:178.190667pt;}
.y85{bottom:179.425333pt;}
.yb0{bottom:182.348000pt;}
.yd1{bottom:192.250667pt;}
.y8{bottom:192.373333pt;}
.y6b{bottom:192.834667pt;}
.yf9{bottom:192.922667pt;}
.y84{bottom:199.204000pt;}
.yd0{bottom:208.250667pt;}
.yde{bottom:208.766667pt;}
.yf8{bottom:208.922667pt;}
.yaf{bottom:209.686667pt;}
.y7{bottom:210.769333pt;}
.ydc{bottom:212.058625pt;}
.y6a{bottom:212.614667pt;}
.y83{bottom:215.204000pt;}
.ydf{bottom:218.600000pt;}
.ydd{bottom:221.933333pt;}
.ydb{bottom:224.141333pt;}
.ycf{bottom:224.250667pt;}
.yf7{bottom:224.922667pt;}
.y69{bottom:228.614667pt;}
.y82{bottom:231.204000pt;}
.yae{bottom:237.025333pt;}
.yce{bottom:240.250667pt;}
.y68{bottom:244.614667pt;}
.yf6{bottom:244.701333pt;}
.y81{bottom:247.204000pt;}
.yad{bottom:253.025333pt;}
.y31{bottom:256.104000pt;}
.ycd{bottom:256.250667pt;}
.y67{bottom:260.614667pt;}
.yf5{bottom:260.701333pt;}
.y80{bottom:263.204000pt;}
.yac{bottom:269.025333pt;}
.y30{bottom:272.104000pt;}
.ycc{bottom:272.250667pt;}
.y66{bottom:276.614667pt;}
.yf4{bottom:276.701333pt;}
.y7f{bottom:279.204000pt;}
.yab{bottom:285.025333pt;}
.y2f{bottom:288.104000pt;}
.ycb{bottom:288.250667pt;}
.y7e{bottom:295.204000pt;}
.y65{bottom:296.394667pt;}
.yf3{bottom:304.040133pt;}
.y2e{bottom:304.104000pt;}
.yca{bottom:304.250667pt;}
.yaa{bottom:312.364000pt;}
.y64{bottom:312.394667pt;}
.y7d{bottom:314.984000pt;}
.y48{bottom:315.060000pt;}
.y2d{bottom:320.104000pt;}
.y63{bottom:328.394667pt;}
.y7c{bottom:330.984000pt;}
.y47{bottom:331.060000pt;}
.y2c{bottom:336.104000pt;}
.yf2{bottom:339.426933pt;}
.y62{bottom:344.394667pt;}
.y103{bottom:344.494667pt;}
.y148{bottom:344.666667pt;}
.ya9{bottom:346.681333pt;}
.y7b{bottom:346.984000pt;}
.y46{bottom:347.060000pt;}
.y127{bottom:351.632133pt;}
.y2b{bottom:352.104000pt;}
.yf1{bottom:357.489867pt;}
.y61{bottom:360.394667pt;}
.y102{bottom:360.494667pt;}
.y147{bottom:360.666667pt;}
.ya8{bottom:362.681333pt;}
.y7a{bottom:362.984000pt;}
.y45{bottom:363.060000pt;}
.y126{bottom:367.632133pt;}
.y2a{bottom:368.104000pt;}
.yf0{bottom:375.552800pt;}
.y60{bottom:376.394667pt;}
.y101{bottom:376.494667pt;}
.ya7{bottom:378.681333pt;}
.y79{bottom:378.984000pt;}
.y44{bottom:379.060000pt;}
.y146{bottom:380.445333pt;}
.y125{bottom:383.632133pt;}
.y29{bottom:384.104000pt;}
.y5f{bottom:392.394667pt;}
.y100{bottom:392.494667pt;}
.yef{bottom:393.614667pt;}
.ya6{bottom:394.681333pt;}
.y78{bottom:394.984000pt;}
.y43{bottom:395.060000pt;}
.y145{bottom:396.445333pt;}
.y28{bottom:400.104000pt;}
.y5e{bottom:408.394667pt;}
.yff{bottom:408.494667pt;}
.ya5{bottom:410.681333pt;}
.y124{bottom:410.970667pt;}
.y77{bottom:410.984000pt;}
.y42{bottom:411.060000pt;}
.yee{bottom:411.677600pt;}
.y27{bottom:416.104000pt;}
.y144{bottom:416.225333pt;}
.y5d{bottom:424.394667pt;}
.ya4{bottom:426.681333pt;}
.y76{bottom:426.984000pt;}
.yed{bottom:429.740533pt;}
.y41{bottom:430.838667pt;}
.y26{bottom:432.104000pt;}
.y143{bottom:436.004000pt;}
.y5c{bottom:440.394667pt;}
.yec{bottom:442.540533pt;}
.ya3{bottom:442.681333pt;}
.y75{bottom:442.984000pt;}
.yfe{bottom:443.392000pt;}
.y40{bottom:446.838667pt;}
.y25{bottom:448.104000pt;}
.y123{bottom:448.489467pt;}
.y142{bottom:455.784000pt;}
.y5b{bottom:456.394667pt;}
.ya2{bottom:458.681333pt;}
.yeb{bottom:460.430667pt;}
.y3f{bottom:462.838667pt;}
.y24{bottom:464.104000pt;}
.y122{bottom:464.489333pt;}
.y74{bottom:470.322667pt;}
.y141{bottom:471.784000pt;}
.y5a{bottom:472.394667pt;}
.y3e{bottom:478.838667pt;}
.y121{bottom:480.489333pt;}
.y23{bottom:483.882667pt;}
.yc9{bottom:484.029333pt;}
.y140{bottom:487.784000pt;}
.y59{bottom:488.394667pt;}
.ya1{bottom:493.580000pt;}
.y3d{bottom:494.838667pt;}
.y120{bottom:496.489333pt;}
.y22{bottom:499.882667pt;}
.yc8{bottom:500.029333pt;}
.y58{bottom:504.394667pt;}
.y13f{bottom:507.564000pt;}
.y3c{bottom:510.838667pt;}
.y11f{bottom:512.489333pt;}
.y21{bottom:515.882667pt;}
.y99{bottom:516.746933pt;}
.y57{bottom:520.394667pt;}
.y13e{bottom:523.564000pt;}
.y3b{bottom:526.838667pt;}
.y11e{bottom:528.489333pt;}
.y20{bottom:531.882667pt;}
.y98{bottom:535.733333pt;}
.y56{bottom:536.394667pt;}
.y13d{bottom:539.564000pt;}
.yc7{bottom:539.589333pt;}
.y3a{bottom:542.838667pt;}
.y11d{bottom:544.489333pt;}
.y1f{bottom:547.882667pt;}
.y55{bottom:552.394667pt;}
.y97{bottom:554.719733pt;}
.yc6{bottom:555.589333pt;}
.y39{bottom:558.838667pt;}
.y13c{bottom:559.342667pt;}
.y11c{bottom:560.489333pt;}
.y1e{bottom:563.882667pt;}
.yc5{bottom:571.589333pt;}
.y54{bottom:572.173333pt;}
.y96{bottom:573.706133pt;}
.y13b{bottom:575.342667pt;}
.y11b{bottom:576.489333pt;}
.y38{bottom:578.618667pt;}
.y1d{bottom:579.882667pt;}
.yc4{bottom:587.589333pt;}
.y53{bottom:588.173333pt;}
.y13a{bottom:591.342667pt;}
.y11a{bottom:592.489333pt;}
.y95{bottom:592.692533pt;}
.y37{bottom:594.618667pt;}
.y1c{bottom:595.882667pt;}
.y52{bottom:604.173333pt;}
.y119{bottom:608.489333pt;}
.y36{bottom:610.618667pt;}
.y139{bottom:611.122667pt;}
.y94{bottom:611.678933pt;}
.y1b{bottom:611.882667pt;}
.yc3{bottom:614.928000pt;}
.y51{bottom:620.173333pt;}
.y118{bottom:624.489333pt;}
.y35{bottom:626.618667pt;}
.y138{bottom:627.122667pt;}
.y1a{bottom:627.882667pt;}
.y93{bottom:630.666533pt;}
.y50{bottom:636.173333pt;}
.y117{bottom:640.489333pt;}
.y34{bottom:642.618667pt;}
.y19{bottom:643.882667pt;}
.y137{bottom:646.902667pt;}
.y92{bottom:649.652933pt;}
.y4f{bottom:652.173333pt;}
.yc2{bottom:652.445333pt;}
.y116{bottom:656.489333pt;}
.y33{bottom:658.618667pt;}
.y136{bottom:662.902667pt;}
.y4e{bottom:668.173333pt;}
.yc1{bottom:668.445333pt;}
.y91{bottom:668.639333pt;}
.y18{bottom:671.221333pt;}
.y32{bottom:674.618667pt;}
.y135{bottom:682.681333pt;}
.y115{bottom:683.828000pt;}
.y4d{bottom:684.173333pt;}
.yc0{bottom:684.445333pt;}
.y90{bottom:687.625733pt;}
.y134{bottom:698.681333pt;}
.y8f{bottom:706.613333pt;}
.ye9{bottom:709.368000pt;}
.ybf{bottom:711.784000pt;}
.yea{bottom:712.493333pt;}
.y133{bottom:714.681333pt;}
.y4c{bottom:719.070667pt;}
.y114{bottom:721.345333pt;}
.ya0{bottom:721.358667pt;}
.y8e{bottom:725.599733pt;}
.y16{bottom:727.280000pt;}
.yfd{bottom:734.289333pt;}
.y132{bottom:734.461333pt;}
.y4b{bottom:735.070667pt;}
.ybe{bottom:735.342667pt;}
.y113{bottom:737.345333pt;}
.y9f{bottom:737.358667pt;}
.y8d{bottom:744.586133pt;}
.y15{bottom:746.976000pt;}
.y131{bottom:750.461333pt;}
.y4a{bottom:751.070667pt;}
.ybd{bottom:751.342667pt;}
.y112{bottom:753.345333pt;}
.y9e{bottom:753.358667pt;}
.y14{bottom:762.976000pt;}
.y8c{bottom:763.573733pt;}
.ybc{bottom:767.342667pt;}
.y111{bottom:769.345333pt;}
.y9d{bottom:769.358667pt;}
.y130{bottom:770.241333pt;}
.y13{bottom:778.976000pt;}
.y8b{bottom:782.561600pt;}
.ybb{bottom:783.342667pt;}
.y110{bottom:785.345333pt;}
.y9c{bottom:785.358667pt;}
.y12f{bottom:786.241333pt;}
.y12{bottom:794.976000pt;}
.yba{bottom:799.342667pt;}
.y10f{bottom:801.345333pt;}
.y9b{bottom:801.358667pt;}
.y8a{bottom:801.548267pt;}
.y12e{bottom:806.020000pt;}
.y11{bottom:810.976000pt;}
.yb9{bottom:815.342667pt;}
.y10e{bottom:817.345333pt;}
.y89{bottom:820.534933pt;}
.y12d{bottom:822.020000pt;}
.y10{bottom:826.976000pt;}
.yb8{bottom:831.342667pt;}
.y10d{bottom:833.345333pt;}
.yda{bottom:835.726133pt;}
.y88{bottom:839.521333pt;}
.y12c{bottom:841.800000pt;}
.yf{bottom:843.192000pt;}
.y87{bottom:846.721333pt;}
.yb7{bottom:847.342667pt;}
.y10c{bottom:849.345333pt;}
.yd9{bottom:854.712533pt;}
.y12b{bottom:861.580000pt;}
.yb6{bottom:863.342667pt;}
.y10b{bottom:865.345333pt;}
.yd8{bottom:869.112533pt;}
.y73{bottom:877.580000pt;}
.y10a{bottom:881.345333pt;}
.y17{bottom:882.770667pt;}
.yd7{bottom:888.098933pt;}
.ye8{bottom:889.260800pt;}
.y72{bottom:893.580000pt;}
.ye5{bottom:895.636264pt;}
.y109{bottom:897.345333pt;}
.y12a{bottom:897.358667pt;}
.yb5{bottom:898.241333pt;}
.ye7{bottom:898.761200pt;}
.ye4{bottom:898.761333pt;}
.ye6{bottom:906.428000pt;}
.yd6{bottom:907.085733pt;}
.y108{bottom:913.345333pt;}
.y129{bottom:913.358667pt;}
.y6{bottom:924.802800pt;}
.yd5{bottom:926.073333pt;}
.y107{bottom:929.345333pt;}
.y128{bottom:929.358667pt;}
.y71{bottom:933.138667pt;}
.yd4{bottom:940.473333pt;}
.y106{bottom:945.345333pt;}
.y70{bottom:949.138667pt;}
.y5{bottom:955.341333pt;}
.y105{bottom:965.125333pt;}
.y6f{bottom:965.138667pt;}
.y4{bottom:977.741333pt;}
.y104{bottom:981.125333pt;}
.y6e{bottom:981.138667pt;}
.y49{bottom:1029.937067pt;}
.y9a{bottom:1029.941333pt;}
.y2{bottom:1030.025333pt;}
.y1{bottom:1051.984133pt;}
.h4{height:26.133188pt;}
.hb{height:28.920152pt;}
.he{height:31.030276pt;}
.hc{height:33.092448pt;}
.h13{height:37.437500pt;}
.h12{height:38.020833pt;}
.hd{height:41.437500pt;}
.h1{height:42.117188pt;}
.h9{height:42.773438pt;}
.h8{height:43.375000pt;}
.hf{height:44.460938pt;}
.h6{height:46.796875pt;}
.h14{height:46.797408pt;}
.h10{height:47.085485pt;}
.h11{height:47.086019pt;}
.h5{height:47.526042pt;}
.h3{height:56.156250pt;}
.h2{height:66.536458pt;}
.ha{height:70.917187pt;}
.h7{height:71.573438pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x19{left:99.988533pt;}
.xc{left:105.826667pt;}
.x31{left:106.954800pt;}
.xa{left:108.955467pt;}
.x4{left:113.385733pt;}
.x30{left:119.116133pt;}
.x13{left:125.905467pt;}
.xb{left:177.540000pt;}
.x1f{left:194.344000pt;}
.x1c{left:203.885333pt;}
.x5{left:206.121200pt;}
.x1e{left:213.010667pt;}
.x21{left:214.469600pt;}
.x16{left:235.305333pt;}
.x1d{left:242.594667pt;}
.x17{left:247.310133pt;}
.x1a{left:248.969333pt;}
.x1b{left:254.718667pt;}
.x20{left:256.052000pt;}
.x18{left:307.115733pt;}
.x14{left:356.736533pt;}
.xd{left:402.476000pt;}
.x12{left:408.319467pt;}
.x10{left:409.437867pt;}
.x11{left:411.199467pt;}
.xf{left:414.078800pt;}
.x7{left:421.418000pt;}
.x28{left:429.754667pt;}
.x8{left:440.315333pt;}
.x27{left:449.610667pt;}
.x2f{left:451.378133pt;}
.x2a{left:504.297600pt;}
.x29{left:511.216000pt;}
.x22{left:521.273333pt;}
.x25{left:531.898267pt;}
.x26{left:533.814667pt;}
.x23{left:535.188862pt;}
.xe{left:536.597600pt;}
.x9{left:541.888000pt;}
.x2b{left:568.485333pt;}
.x24{left:583.314667pt;}
.x2c{left:588.572800pt;}
.x2{left:601.431733pt;}
.x6{left:607.278667pt;}
.x2e{left:643.027200pt;}
.x2d{left:649.945600pt;}
.x15{left:683.665333pt;}
.x3{left:687.212000pt;}
}




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