
    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_47e24993e33b41b4bf3d5eb6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_636d61a3bb3394a758a91fb3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_aa8e18f6ff4279b2d53d8e09.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;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_b470d20c4a38268f4c3d1c24.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.005371;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_ab7f8ac7abd352a48743238a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_7585452892422db5c0938579.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_ca1030f30359bb9186c5d82e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;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_c1470cfcaec501935c9ea684.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.711000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_419598dba3628a2543ecbca5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b31dd567d79ddb6b6c261eaf.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c88ad7eb19e75f132e296a28.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_832a5228eaaf364d3d09678b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.943000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_127906d28d770909b8b83325.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_535bfc585f83fa227c9efdaf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9426f8a8d7493f867dafa87e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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);}
.v2{vertical-align:-17.820000px;}
.v5{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.840000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:20.790000px;}
.ls16{letter-spacing:-1.404000px;}
.ls15{letter-spacing:-1.350000px;}
.lsc{letter-spacing:-1.200000px;}
.lsd{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.108000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.084000px;}
.ls7{letter-spacing:0.408450px;}
.ls6{letter-spacing:0.409500px;}
.ls8{letter-spacing:0.450000px;}
.ls14{letter-spacing:0.538800px;}
.ls13{letter-spacing:0.540000px;}
.lsf{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls11{letter-spacing:6.330000px;}
.ls9{letter-spacing:7.602600px;}
.ls10{letter-spacing:9.157800px;}
.lsa{letter-spacing:67.526400px;}
.lse{letter-spacing:1038.270000px;}
.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;}
}
.wsb8{word-spacing:-48.000000px;}
.ws2{word-spacing:-17.472000px;}
.wsdd{word-spacing:-16.740000px;}
.ws1{word-spacing:-13.986000px;}
.wsc5{word-spacing:-13.620000px;}
.ws5{word-spacing:-13.332000px;}
.wsc4{word-spacing:-13.320000px;}
.wsd8{word-spacing:-12.726000px;}
.ws6{word-spacing:-12.720000px;}
.wsfe{word-spacing:-11.988000px;}
.ws8f{word-spacing:-11.592000px;}
.ws7c{word-spacing:-11.529000px;}
.ws7b{word-spacing:-11.520000px;}
.wsd9{word-spacing:-11.448000px;}
.wsdc{word-spacing:-11.340000px;}
.wsa2{word-spacing:-10.920000px;}
.wsb{word-spacing:-10.176000px;}
.wsfb{word-spacing:-10.098000px;}
.wsfd{word-spacing:-10.044000px;}
.wsda{word-spacing:-9.828000px;}
.wsa{word-spacing:-9.810000px;}
.wsdb{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.696000px;}
.wsa5{word-spacing:-9.408000px;}
.ws4{word-spacing:-9.360000px;}
.ws8{word-spacing:-8.820000px;}
.wsb6{word-spacing:-8.736000px;}
.wsfc{word-spacing:-8.424000px;}
.ws9{word-spacing:-8.232000px;}
.ws3{word-spacing:-6.879600px;}
.wsb7{word-spacing:-6.115200px;}
.ws11c{word-spacing:-0.540000px;}
.ws5d{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.wsec{word-spacing:0.108000px;}
.ws110{word-spacing:0.162000px;}
.ws114{word-spacing:1.404000px;}
.ws10c{word-spacing:1.458000px;}
.ws10b{word-spacing:1.674000px;}
.wsbe{word-spacing:4.020000px;}
.wsf3{word-spacing:4.266000px;}
.wsf7{word-spacing:4.374000px;}
.ws127{word-spacing:4.428000px;}
.ws13{word-spacing:4.698000px;}
.wsf2{word-spacing:4.968000px;}
.ws74{word-spacing:5.100000px;}
.ws126{word-spacing:5.130000px;}
.ws88{word-spacing:5.160000px;}
.wse4{word-spacing:5.238000px;}
.ws90{word-spacing:5.280000px;}
.wsde{word-spacing:5.454000px;}
.ws4e{word-spacing:5.520000px;}
.wsea{word-spacing:5.562000px;}
.wsed{word-spacing:5.670000px;}
.ws33{word-spacing:5.808000px;}
.ws23{word-spacing:5.994000px;}
.ws39{word-spacing:6.192000px;}
.wsf8{word-spacing:6.318000px;}
.wsab{word-spacing:6.360000px;}
.wsdf{word-spacing:6.372000px;}
.ws52{word-spacing:6.480000px;}
.ws32{word-spacing:6.594000px;}
.wsd{word-spacing:6.615000px;}
.ws10a{word-spacing:6.642000px;}
.ws37{word-spacing:6.660000px;}
.wsc3{word-spacing:6.672000px;}
.ws93{word-spacing:6.720000px;}
.wsd6{word-spacing:6.780000px;}
.ws118{word-spacing:6.804000px;}
.ws60{word-spacing:6.840000px;}
.ws6a{word-spacing:6.960000px;}
.wscc{word-spacing:7.020000px;}
.wse{word-spacing:7.065000px;}
.wsa1{word-spacing:7.080000px;}
.wsd2{word-spacing:7.140000px;}
.ws9c{word-spacing:7.200000px;}
.wse5{word-spacing:7.236000px;}
.wsce{word-spacing:7.260000px;}
.ws121{word-spacing:7.290000px;}
.ws5b{word-spacing:7.320000px;}
.ws102{word-spacing:7.344000px;}
.ws99{word-spacing:7.380000px;}
.ws1b{word-spacing:7.398000px;}
.ws26{word-spacing:7.440000px;}
.ws7d{word-spacing:7.500000px;}
.ws34{word-spacing:7.536000px;}
.ws81{word-spacing:7.560000px;}
.ws125{word-spacing:7.668000px;}
.wsca{word-spacing:7.680000px;}
.ws104{word-spacing:7.722000px;}
.wsd3{word-spacing:7.740000px;}
.ws115{word-spacing:7.776000px;}
.ws10f{word-spacing:7.830000px;}
.wsad{word-spacing:7.860000px;}
.wseb{word-spacing:7.884000px;}
.ws70{word-spacing:7.920000px;}
.ws117{word-spacing:7.938000px;}
.ws24{word-spacing:7.980000px;}
.ws28{word-spacing:8.040000px;}
.wsd5{word-spacing:8.100000px;}
.ws38{word-spacing:8.160000px;}
.ws105{word-spacing:8.208000px;}
.ws3a{word-spacing:8.220000px;}
.wse0{word-spacing:8.262000px;}
.ws2a{word-spacing:8.280000px;}
.wse9{word-spacing:8.316000px;}
.wscd{word-spacing:8.340000px;}
.wsf6{word-spacing:8.370000px;}
.ws4d{word-spacing:8.400000px;}
.ws113{word-spacing:8.424000px;}
.ws8c{word-spacing:8.460000px;}
.ws11{word-spacing:8.478000px;}
.ws36{word-spacing:8.484000px;}
.ws8d{word-spacing:8.520000px;}
.ws72{word-spacing:8.580000px;}
.wsf4{word-spacing:8.586000px;}
.wsee{word-spacing:8.640000px;}
.ws107{word-spacing:8.694000px;}
.ws51{word-spacing:8.700000px;}
.ws12{word-spacing:8.748000px;}
.ws89{word-spacing:8.760000px;}
.wsaf{word-spacing:8.778000px;}
.ws4a{word-spacing:8.820000px;}
.ws1e{word-spacing:8.856000px;}
.ws98{word-spacing:8.940000px;}
.wsb0{word-spacing:8.949000px;}
.ws103{word-spacing:8.964000px;}
.ws71{word-spacing:9.000000px;}
.ws5a{word-spacing:9.060000px;}
.ws123{word-spacing:9.072000px;}
.ws2c{word-spacing:9.120000px;}
.wse1{word-spacing:9.126000px;}
.ws75{word-spacing:9.180000px;}
.ws66{word-spacing:9.198000px;}
.ws61{word-spacing:9.240000px;}
.ws4c{word-spacing:9.261000px;}
.ws21{word-spacing:9.288000px;}
.ws25{word-spacing:9.300000px;}
.ws2f{word-spacing:9.360000px;}
.ws10e{word-spacing:9.396000px;}
.ws3d{word-spacing:9.420000px;}
.ws67{word-spacing:9.480000px;}
.ws29{word-spacing:9.540000px;}
.ws112{word-spacing:9.558000px;}
.wsc{word-spacing:9.600000px;}
.ws56{word-spacing:9.660000px;}
.wse8{word-spacing:9.666000px;}
.wsac{word-spacing:9.720000px;}
.ws73{word-spacing:9.780000px;}
.ws11d{word-spacing:9.828000px;}
.ws54{word-spacing:9.840000px;}
.wsfa{word-spacing:9.936000px;}
.wscb{word-spacing:9.960000px;}
.wse2{word-spacing:9.990000px;}
.ws6b{word-spacing:10.020000px;}
.ws1d{word-spacing:10.044000px;}
.ws106{word-spacing:10.152000px;}
.ws2b{word-spacing:10.200000px;}
.ws124{word-spacing:10.314000px;}
.wsc9{word-spacing:10.440000px;}
.wsd1{word-spacing:10.560000px;}
.ws16{word-spacing:10.638000px;}
.ws92{word-spacing:10.680000px;}
.ws4b{word-spacing:10.692000px;}
.ws10{word-spacing:10.710000px;}
.wsc1{word-spacing:10.740000px;}
.ws116{word-spacing:10.746000px;}
.ws1f{word-spacing:10.800000px;}
.ws44{word-spacing:10.860000px;}
.wsbb{word-spacing:10.980000px;}
.ws30{word-spacing:11.040000px;}
.ws101{word-spacing:11.070000px;}
.ws65{word-spacing:11.100000px;}
.ws46{word-spacing:11.160000px;}
.wse7{word-spacing:11.178000px;}
.ws5f{word-spacing:11.220000px;}
.wscf{word-spacing:11.280000px;}
.wsef{word-spacing:11.286000px;}
.ws35{word-spacing:11.298000px;}
.ws63{word-spacing:11.340000px;}
.ws8a{word-spacing:11.460000px;}
.ws22{word-spacing:11.502000px;}
.ws97{word-spacing:11.520000px;}
.wse3{word-spacing:11.556000px;}
.wsf9{word-spacing:11.610000px;}
.ws69{word-spacing:11.640000px;}
.ws10d{word-spacing:11.664000px;}
.ws122{word-spacing:11.718000px;}
.ws86{word-spacing:11.940000px;}
.ws119{word-spacing:11.988000px;}
.ws2e{word-spacing:12.000000px;}
.ws4f{word-spacing:12.060000px;}
.ws9a{word-spacing:12.120000px;}
.ws85{word-spacing:12.180000px;}
.ws53{word-spacing:12.240000px;}
.wsff{word-spacing:12.312000px;}
.ws31{word-spacing:12.360000px;}
.ws68{word-spacing:12.420000px;}
.ws8e{word-spacing:12.480000px;}
.ws50{word-spacing:12.660000px;}
.ws3b{word-spacing:12.720000px;}
.ws80{word-spacing:12.780000px;}
.wsf1{word-spacing:12.798000px;}
.wsc2{word-spacing:12.900000px;}
.ws100{word-spacing:12.906000px;}
.wsbc{word-spacing:12.960000px;}
.wse6{word-spacing:13.014000px;}
.wsc6{word-spacing:13.080000px;}
.ws111{word-spacing:13.122000px;}
.wsa0{word-spacing:13.140000px;}
.ws8b{word-spacing:13.200000px;}
.ws108{word-spacing:13.230000px;}
.ws95{word-spacing:13.260000px;}
.ws49{word-spacing:13.320000px;}
.ws6f{word-spacing:13.560000px;}
.ws78{word-spacing:13.620000px;}
.ws96{word-spacing:13.680000px;}
.ws27{word-spacing:13.740000px;}
.ws59{word-spacing:13.860000px;}
.ws7f{word-spacing:13.920000px;}
.wsf{word-spacing:13.944000px;}
.ws87{word-spacing:13.980000px;}
.ws48{word-spacing:14.100000px;}
.ws15{word-spacing:14.202000px;}
.ws1a{word-spacing:14.256000px;}
.ws62{word-spacing:14.340000px;}
.ws77{word-spacing:14.400000px;}
.ws14{word-spacing:14.472000px;}
.ws19{word-spacing:14.526000px;}
.ws5c{word-spacing:14.580000px;}
.ws91{word-spacing:14.640000px;}
.wsd4{word-spacing:14.760000px;}
.ws20{word-spacing:14.796000px;}
.ws3e{word-spacing:14.820000px;}
.ws43{word-spacing:14.880000px;}
.wsf0{word-spacing:14.904000px;}
.ws2d{word-spacing:15.060000px;}
.ws109{word-spacing:15.174000px;}
.ws3f{word-spacing:15.180000px;}
.ws6e{word-spacing:15.240000px;}
.ws42{word-spacing:15.300000px;}
.ws3c{word-spacing:15.360000px;}
.ws7e{word-spacing:15.480000px;}
.ws84{word-spacing:15.540000px;}
.ws128{word-spacing:15.552000px;}
.ws6d{word-spacing:15.600000px;}
.ws40{word-spacing:15.660000px;}
.ws9f{word-spacing:15.900000px;}
.ws9e{word-spacing:16.080000px;}
.wsbf{word-spacing:16.260000px;}
.ws55{word-spacing:16.320000px;}
.ws41{word-spacing:16.380000px;}
.ws18{word-spacing:16.416000px;}
.ws5e{word-spacing:16.500000px;}
.wsaa{word-spacing:16.560000px;}
.ws45{word-spacing:16.680000px;}
.ws47{word-spacing:16.740000px;}
.ws9d{word-spacing:16.860000px;}
.wsbd{word-spacing:16.920000px;}
.wsa9{word-spacing:17.160000px;}
.ws64{word-spacing:17.220000px;}
.wsf5{word-spacing:17.226000px;}
.ws82{word-spacing:17.340000px;}
.wsc8{word-spacing:17.460000px;}
.ws79{word-spacing:17.580000px;}
.wsc7{word-spacing:18.180000px;}
.wsae{word-spacing:18.540000px;}
.wsd7{word-spacing:18.900000px;}
.ws83{word-spacing:18.960000px;}
.ws1c{word-spacing:19.008000px;}
.ws58{word-spacing:19.020000px;}
.ws6c{word-spacing:19.200000px;}
.wsd0{word-spacing:19.320000px;}
.wsc0{word-spacing:21.120000px;}
.ws57{word-spacing:21.180000px;}
.ws9b{word-spacing:22.140000px;}
.ws11e{word-spacing:22.302000px;}
.ws76{word-spacing:22.500000px;}
.ws7a{word-spacing:23.520000px;}
.ws17{word-spacing:24.030000px;}
.ws120{word-spacing:25.002000px;}
.ws11f{word-spacing:29.160000px;}
.ws11b{word-spacing:32.400000px;}
.ws94{word-spacing:34.380000px;}
.ws11a{word-spacing:37.746000px;}
.wsa8{word-spacing:141.493200px;}
.wsa6{word-spacing:152.893800px;}
.wsa4{word-spacing:204.276600px;}
.wsb9{word-spacing:227.579400px;}
.wsba{word-spacing:247.235400px;}
.wsb3{word-spacing:270.036000px;}
.wsb4{word-spacing:297.035400px;}
.wsb2{word-spacing:326.315400px;}
.wsb1{word-spacing:341.562000px;}
.wsa7{word-spacing:436.752000px;}
.wsa3{word-spacing:902.656200px;}
.wsb5{word-spacing:1771.761600px;}
._f{margin-left:-10.200015px;}
._2f{margin-left:-8.478000px;}
._2e{margin-left:-7.458015px;}
._e{margin-left:-5.838015px;}
._5{margin-left:-4.788000px;}
._1{margin-left:-3.528000px;}
._0{margin-left:-1.919985px;}
._9{width:1.001371px;}
._4{width:2.003985px;}
._8{width:3.035985px;}
._2{width:6.240000px;}
._3{width:7.799985px;}
._2d{width:9.201029px;}
._b{width:10.218015px;}
._c{width:12.245971px;}
._10{width:13.668000px;}
._a{width:15.269971px;}
._11{width:17.251829px;}
._d{width:18.393015px;}
._31{width:28.944585px;}
._30{width:38.135415px;}
._6{width:61.729185px;}
._7{width:131.609400px;}
._1a{width:173.371185px;}
._17{width:174.715200px;}
._24{width:182.705985px;}
._15{width:186.114600px;}
._16{width:194.750444px;}
._13{width:218.827200px;}
._1c{width:221.995200px;}
._26{width:229.602000px;}
._22{width:281.555400px;}
._2c{width:283.643400px;}
._20{width:290.347185px;}
._1e{width:303.691200px;}
._23{width:308.555400px;}
._25{width:337.332000px;}
._18{width:342.763200px;}
._19{width:361.782000px;}
._27{width:363.627600px;}
._1d{width:378.294000px;}
._1f{width:494.454000px;}
._14{width:499.435200px;}
._1b{width:524.214000px;}
._12{width:571.328400px;}
._21{width:602.489400px;}
._28{width:708.150000px;}
._2b{width:737.861400px;}
._29{width:1369.169400px;}
._2a{width:1649.165400px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:31.200000px;}
.fsc{font-size:35.100000px;}
.fsb{font-size:40.950000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y37{bottom:67.597501px;}
.y6a{bottom:71.940600px;}
.y69{bottom:83.940600px;}
.y36{bottom:84.097501px;}
.yd5{bottom:84.677700px;}
.yb0{bottom:84.749850px;}
.yfa{bottom:89.249700px;}
.y1f0{bottom:94.051200px;}
.y68{bottom:95.940600px;}
.y11a{bottom:96.676200px;}
.y175{bottom:97.053150px;}
.y4{bottom:97.125005px;}
.y126{bottom:99.676200px;}
.yd4{bottom:104.177700px;}
.yaf{bottom:104.249850px;}
.y181{bottom:104.926200px;}
.y1b2{bottom:104.926500px;}
.y65{bottom:108.315600px;}
.yf9{bottom:108.749700px;}
.y1ef{bottom:110.551200px;}
.y119{bottom:116.176200px;}
.y174{bottom:116.553150px;}
.y125{bottom:119.176200px;}
.y66{bottom:119.190600px;}
.y1b1{bottom:121.426500px;}
.yd3{bottom:123.677700px;}
.yae{bottom:123.749850px;}
.y180{bottom:124.426200px;}
.y1ee{bottom:127.051200px;}
.yf8{bottom:128.249700px;}
.y118{bottom:135.676200px;}
.y173{bottom:136.053150px;}
.y1b0{bottom:137.926500px;}
.y124{bottom:138.676200px;}
.y22{bottom:139.264499px;}
.yd2{bottom:143.177700px;}
.yad{bottom:143.249850px;}
.y1ed{bottom:143.551200px;}
.y17f{bottom:143.926200px;}
.y1af{bottom:154.426500px;}
.y172{bottom:155.553150px;}
.y123{bottom:158.176200px;}
.y1ec{bottom:160.051200px;}
.yd1{bottom:162.677700px;}
.yac{bottom:162.749850px;}
.y64{bottom:163.426200px;}
.y117{bottom:165.676200px;}
.y1ae{bottom:170.926500px;}
.yf7{bottom:174.749700px;}
.y171{bottom:175.053150px;}
.y1eb{bottom:176.551200px;}
.y122{bottom:177.676200px;}
.yd0{bottom:182.177700px;}
.yab{bottom:182.249850px;}
.y63{bottom:182.926200px;}
.y1ad{bottom:187.426500px;}
.y1ea{bottom:193.051200px;}
.yf6{bottom:194.249700px;}
.y170{bottom:194.553150px;}
.y116{bottom:195.676200px;}
.y19{bottom:196.933500px;}
.y121{bottom:197.176200px;}
.ycf{bottom:201.677700px;}
.yaa{bottom:201.749850px;}
.y62{bottom:202.426200px;}
.y1ac{bottom:203.926500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1e9{bottom:209.551200px;}
.yf5{bottom:213.749700px;}
.y16f{bottom:214.053150px;}
.y120{bottom:216.676200px;}
.y1ab{bottom:220.426500px;}
.ya9{bottom:221.249850px;}
.y61{bottom:221.926200px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1e8{bottom:226.051200px;}
.yf4{bottom:233.249700px;}
.y16e{bottom:233.553150px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y11f{bottom:236.176200px;}
.y1aa{bottom:236.926500px;}
.ya8{bottom:240.749850px;}
.y60{bottom:241.426200px;}
.y1e7{bottom:242.551200px;}
.y115{bottom:246.676200px;}
.yf3{bottom:252.749700px;}
.y16d{bottom:253.053150px;}
.y1a9{bottom:253.426500px;}
.y35{bottom:254.926501px;}
.y11e{bottom:255.676200px;}
.y1e6{bottom:259.051200px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.ya7{bottom:260.249850px;}
.y5f{bottom:260.926200px;}
.yce{bottom:265.314000px;}
.y114{bottom:266.176200px;}
.y1a8{bottom:269.926500px;}
.yf2{bottom:272.249700px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y16c{bottom:272.553150px;}
.y11d{bottom:275.176200px;}
.y1e5{bottom:275.551200px;}
.ya6{bottom:279.749850px;}
.y5e{bottom:280.426200px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y113{bottom:285.676200px;}
.y1a7{bottom:286.426500px;}
.yf1{bottom:291.749700px;}
.y1e4{bottom:292.051200px;}
.y16b{bottom:292.053150px;}
.y11c{bottom:294.676200px;}
.ycd{bottom:296.214150px;}
.ya5{bottom:299.249850px;}
.y5d{bottom:299.926200px;}
.y1a6{bottom:302.926500px;}
.y112{bottom:305.176200px;}
.y1e3{bottom:308.551200px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yf0{bottom:311.249700px;}
.y16a{bottom:311.553150px;}
.y11b{bottom:314.176200px;}
.ya4{bottom:318.749850px;}
.y34{bottom:319.276501px;}
.y5c{bottom:319.426200px;}
.y1a5{bottom:319.426500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y111{bottom:324.676200px;}
.y1e2{bottom:325.051200px;}
.ycc{bottom:327.114000px;}
.yef{bottom:330.749700px;}
.y169{bottom:331.053150px;}
.y1a4{bottom:335.926500px;}
.ya3{bottom:338.249850px;}
.y5b{bottom:338.926200px;}
.y1e1{bottom:341.551200px;}
.y110{bottom:344.176200px;}
.ycb{bottom:346.614000px;}
.y10{bottom:348.133500px;}
.yee{bottom:350.249700px;}
.y168{bottom:350.553150px;}
.y1a3{bottom:352.426500px;}
.ya2{bottom:357.749850px;}
.y1e0{bottom:358.051200px;}
.y5a{bottom:358.426200px;}
.yca{bottom:366.114000px;}
.y1a2{bottom:368.926500px;}
.yed{bottom:369.749700px;}
.y167{bottom:370.053150px;}
.y10f{bottom:374.176200px;}
.y1df{bottom:374.551200px;}
.ya1{bottom:377.249850px;}
.y59{bottom:377.926200px;}
.y33{bottom:383.626501px;}
.y1a1{bottom:385.426500px;}
.yc9{bottom:385.614000px;}
.yf{bottom:386.785499px;}
.y15b{bottom:388.238700px;}
.y166{bottom:389.553150px;}
.y1de{bottom:391.051200px;}
.ya0{bottom:396.749850px;}
.y58{bottom:397.426200px;}
.yec{bottom:399.749700px;}
.y15a{bottom:401.738700px;}
.y1a0{bottom:401.926500px;}
.yc8{bottom:405.114000px;}
.y1dd{bottom:407.551200px;}
.ye{bottom:408.044999px;}
.y165{bottom:409.053150px;}
.y159{bottom:415.238700px;}
.y9f{bottom:416.249850px;}
.y57{bottom:416.926200px;}
.y19f{bottom:418.426500px;}
.y1dc{bottom:424.051200px;}
.yc7{bottom:424.614000px;}
.y10e{bottom:425.176200px;}
.y164{bottom:428.553150px;}
.y158{bottom:428.738700px;}
.y19e{bottom:434.926500px;}
.y9e{bottom:435.749850px;}
.y56{bottom:436.426200px;}
.y1db{bottom:440.551200px;}
.y157{bottom:442.238700px;}
.yc6{bottom:444.114000px;}
.y10d{bottom:444.676200px;}
.y163{bottom:448.053150px;}
.y32{bottom:450.907500px;}
.y19d{bottom:451.426500px;}
.y9d{bottom:455.249850px;}
.y156{bottom:455.738700px;}
.y55{bottom:455.926200px;}
.y1da{bottom:457.051200px;}
.yeb{bottom:463.499700px;}
.yc5{bottom:463.614000px;}
.y10c{bottom:464.176200px;}
.y162{bottom:467.553150px;}
.y19c{bottom:467.926500px;}
.y155{bottom:469.238700px;}
.y1d9{bottom:473.551200px;}
.y9c{bottom:474.749850px;}
.y17e{bottom:475.426200px;}
.y154{bottom:482.738700px;}
.yc4{bottom:483.114000px;}
.y10b{bottom:483.676200px;}
.y19b{bottom:484.426500px;}
.y54{bottom:485.926200px;}
.y1d8{bottom:490.051200px;}
.yea{bottom:492.749700px;}
.y9b{bottom:494.249850px;}
.y17d{bottom:494.926200px;}
.y153{bottom:496.238700px;}
.y161{bottom:497.553150px;}
.y19a{bottom:500.926500px;}
.yc3{bottom:502.614000px;}
.yd{bottom:502.864502px;}
.y10a{bottom:503.176200px;}
.y1d7{bottom:506.551200px;}
.y152{bottom:509.738700px;}
.ye9{bottom:512.249700px;}
.y31{bottom:512.326501px;}
.y9a{bottom:513.749850px;}
.y17c{bottom:514.426200px;}
.y199{bottom:517.426500px;}
.yc{bottom:520.864502px;}
.yc2{bottom:522.114000px;}
.y1d6{bottom:523.051200px;}
.y151{bottom:523.238700px;}
.ye8{bottom:531.749700px;}
.y109{bottom:533.176200px;}
.y17b{bottom:533.926200px;}
.y198{bottom:533.926500px;}
.y150{bottom:536.738700px;}
.yb{bottom:538.864499px;}
.y1d5{bottom:539.551200px;}
.yc1{bottom:541.614000px;}
.y99{bottom:543.749850px;}
.y160{bottom:548.553150px;}
.y14f{bottom:550.238700px;}
.y197{bottom:550.426500px;}
.ye7{bottom:551.249700px;}
.y17a{bottom:553.426200px;}
.y7e{bottom:555.832800px;}
.y1d4{bottom:556.051200px;}
.ya{bottom:556.864499px;}
.yc0{bottom:561.114000px;}
.y108{bottom:563.176200px;}
.y14e{bottom:563.738700px;}
.y196{bottom:566.926500px;}
.y15f{bottom:568.053150px;}
.y7d{bottom:569.332800px;}
.ye6{bottom:570.749700px;}
.y1d3{bottom:572.551200px;}
.y53{bottom:572.926200px;}
.y98{bottom:573.749850px;}
.y14d{bottom:577.238700px;}
.y30{bottom:579.607500px;}
.ybf{bottom:580.614000px;}
.y7c{bottom:582.832800px;}
.y195{bottom:583.426500px;}
.y15e{bottom:587.553150px;}
.y52{bottom:587.926200px;}
.y1d2{bottom:589.051200px;}
.ye5{bottom:590.249700px;}
.y14c{bottom:590.738700px;}
.y179{bottom:592.426200px;}
.y7b{bottom:596.332800px;}
.y194{bottom:599.926500px;}
.ybe{bottom:600.114000px;}
.y51{bottom:602.926200px;}
.y14b{bottom:604.238700px;}
.y1d1{bottom:605.551200px;}
.y15d{bottom:607.053150px;}
.ye4{bottom:609.749700px;}
.y178{bottom:611.926200px;}
.y2f{bottom:613.957501px;}
.y193{bottom:616.426500px;}
.y14a{bottom:617.738700px;}
.y50{bottom:617.926200px;}
.ybd{bottom:619.614000px;}
.y7a{bottom:621.113700px;}
.y1d0{bottom:622.051200px;}
.y107{bottom:623.926200px;}
.y15c{bottom:626.553150px;}
.y2e{bottom:628.957501px;}
.ye3{bottom:629.249700px;}
.y149{bottom:631.238700px;}
.y97{bottom:631.426200px;}
.y4f{bottom:632.926200px;}
.y192{bottom:632.926500px;}
.y79{bottom:634.613700px;}
.y1cf{bottom:638.551200px;}
.ybc{bottom:639.114000px;}
.y2d{bottom:643.957500px;}
.y148{bottom:644.738700px;}
.y9{bottom:645.510000px;}
.y4e{bottom:647.926200px;}
.y78{bottom:648.113700px;}
.ye2{bottom:648.749700px;}
.y96{bottom:650.926200px;}
.y106{bottom:653.176200px;}
.y1ce{bottom:655.051200px;}
.y147{bottom:658.238700px;}
.ybb{bottom:658.614000px;}
.y191{bottom:659.926500px;}
.y77{bottom:661.613700px;}
.y4d{bottom:662.926200px;}
.y177{bottom:664.803150px;}
.y8{bottom:666.771000px;}
.ye1{bottom:668.249700px;}
.y95{bottom:670.426200px;}
.y1cd{bottom:671.551200px;}
.y146{bottom:671.738700px;}
.y105{bottom:672.676200px;}
.y76{bottom:675.113700px;}
.y4c{bottom:677.926200px;}
.yba{bottom:678.114000px;}
.y145{bottom:685.238700px;}
.ye0{bottom:687.749700px;}
.y1cc{bottom:688.051200px;}
.y94{bottom:689.926200px;}
.y104{bottom:692.176200px;}
.y4b{bottom:692.926200px;}
.yb9{bottom:697.614000px;}
.y144{bottom:698.738700px;}
.y75{bottom:699.976200px;}
.y1cb{bottom:704.551200px;}
.ydf{bottom:707.249700px;}
.y4a{bottom:707.926200px;}
.y93{bottom:709.426200px;}
.y190{bottom:710.926500px;}
.y103{bottom:711.676200px;}
.y143{bottom:712.238700px;}
.y74{bottom:713.476200px;}
.yb8{bottom:717.114000px;}
.y1ca{bottom:721.051200px;}
.y49{bottom:722.926200px;}
.y2c{bottom:725.317498px;}
.y142{bottom:725.738700px;}
.y7{bottom:726.298500px;}
.yde{bottom:726.749700px;}
.y73{bottom:726.976200px;}
.y92{bottom:728.926200px;}
.y102{bottom:731.176200px;}
.yb7{bottom:736.614000px;}
.y1c9{bottom:737.551200px;}
.y48{bottom:737.926200px;}
.y18f{bottom:737.926500px;}
.y141{bottom:739.238700px;}
.y72{bottom:740.476200px;}
.ydd{bottom:746.249700px;}
.y91{bottom:748.426200px;}
.y101{bottom:750.676200px;}
.y3{bottom:752.599495px;}
.y140{bottom:752.738700px;}
.y47{bottom:752.926200px;}
.y71{bottom:753.976200px;}
.y1c8{bottom:754.051200px;}
.y2b{bottom:755.317498px;}
.yb6{bottom:756.114000px;}
.ydc{bottom:765.749700px;}
.y13f{bottom:766.238700px;}
.y70{bottom:767.476200px;}
.y46{bottom:767.926200px;}
.y100{bottom:770.176200px;}
.y1c7{bottom:770.551200px;}
.y2a{bottom:773.317498px;}
.yb5{bottom:775.614000px;}
.y13e{bottom:779.738700px;}
.y45{bottom:782.926200px;}
.ydb{bottom:785.249700px;}
.y1c6{bottom:787.051200px;}
.y90{bottom:787.426200px;}
.y18e{bottom:788.926500px;}
.yff{bottom:789.676200px;}
.y6f{bottom:790.238700px;}
.y29{bottom:791.317498px;}
.y13d{bottom:793.238700px;}
.yb4{bottom:795.114000px;}
.y44{bottom:797.926200px;}
.y1c5{bottom:803.551200px;}
.y6e{bottom:803.738700px;}
.yda{bottom:804.749700px;}
.y18d{bottom:805.426500px;}
.y13c{bottom:806.738700px;}
.y8f{bottom:806.926200px;}
.yfe{bottom:809.176200px;}
.y43{bottom:812.926200px;}
.yb3{bottom:814.614000px;}
.y6d{bottom:817.238700px;}
.y1c4{bottom:820.051200px;}
.y13b{bottom:820.238700px;}
.y18c{bottom:821.926500px;}
.yd9{bottom:824.249700px;}
.y8e{bottom:826.426200px;}
.y42{bottom:827.926200px;}
.yfd{bottom:828.676200px;}
.y6c{bottom:830.738700px;}
.y13a{bottom:833.738700px;}
.yb2{bottom:834.114000px;}
.y1c3{bottom:836.551200px;}
.y41{bottom:842.926200px;}
.yd8{bottom:843.749700px;}
.y28{bottom:843.789002px;}
.y6b{bottom:844.238700px;}
.y8d{bottom:845.926200px;}
.y139{bottom:847.238700px;}
.y18b{bottom:847.426500px;}
.yfc{bottom:848.176200px;}
.y1c2{bottom:853.051200px;}
.y138{bottom:860.738700px;}
.y18a{bottom:863.926500px;}
.y8c{bottom:865.426200px;}
.y1c1{bottom:869.551200px;}
.yd7{bottom:873.749700px;}
.y137{bottom:874.238700px;}
.y2{bottom:879.369000px;}
.y189{bottom:880.426500px;}
.y8b{bottom:884.926200px;}
.y1c0{bottom:886.051200px;}
.y136{bottom:887.738700px;}
.y40{bottom:889.801200px;}
.yfb{bottom:894.676200px;}
.y188{bottom:896.926500px;}
.y135{bottom:901.238700px;}
.y1bf{bottom:902.551200px;}
.y8a{bottom:904.426200px;}
.y27{bottom:907.440000px;}
.y3f{bottom:909.256200px;}
.y134{bottom:914.738700px;}
.y1be{bottom:919.051200px;}
.y89{bottom:923.926200px;}
.y187{bottom:923.926500px;}
.y133{bottom:928.238700px;}
.y3e{bottom:931.801200px;}
.yd6{bottom:933.526200px;}
.y1bd{bottom:935.551200px;}
.y26{bottom:938.940000px;}
.y132{bottom:941.738700px;}
.y88{bottom:943.426200px;}
.y1bc{bottom:952.051200px;}
.y176{bottom:954.698700px;}
.y131{bottom:955.238700px;}
.y87{bottom:962.926200px;}
.y1{bottom:966.726000px;}
.y1bb{bottom:968.551200px;}
.y130{bottom:968.738700px;}
.y25{bottom:970.440000px;}
.y3d{bottom:970.801200px;}
.y186{bottom:974.926500px;}
.y12f{bottom:982.238700px;}
.y86{bottom:982.426200px;}
.y1ba{bottom:985.051200px;}
.y3c{bottom:994.801200px;}
.y12e{bottom:995.738700px;}
.y1b9{bottom:1001.551200px;}
.y85{bottom:1001.926200px;}
.y185{bottom:1001.926500px;}
.y12d{bottom:1009.238700px;}
.y1b8{bottom:1018.051200px;}
.y3b{bottom:1018.801200px;}
.y84{bottom:1021.426200px;}
.y12c{bottom:1022.738700px;}
.y1b7{bottom:1034.551200px;}
.y24{bottom:1035.546001px;}
.y12b{bottom:1036.238700px;}
.y83{bottom:1040.926200px;}
.y38{bottom:1047.511200px;}
.y12a{bottom:1049.738700px;}
.y1b6{bottom:1051.051200px;}
.y184{bottom:1055.363700px;}
.y82{bottom:1060.426200px;}
.y129{bottom:1063.238700px;}
.y1b5{bottom:1067.551200px;}
.y183{bottom:1071.863700px;}
.y81{bottom:1079.926200px;}
.y128{bottom:1081.238700px;}
.y67{bottom:1083.782250px;}
.y1b4{bottom:1084.051200px;}
.y3a{bottom:1097.407950px;}
.y182{bottom:1098.863700px;}
.y80{bottom:1099.426200px;}
.y127{bottom:1099.988700px;}
.y1b3{bottom:1100.551200px;}
.y39{bottom:1110.907950px;}
.yb1{bottom:1141.238100px;}
.y7f{bottom:1141.313100px;}
.y23{bottom:1165.122003px;}
.h23{height:22.308000px;}
.h16{height:25.096500px;}
.h1b{height:30.030000px;}
.h18{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1e{height:33.750000px;}
.h21{height:34.320000px;}
.h1c{height:34.608000px;}
.h1d{height:36.000000px;}
.hb{height:36.726562px;}
.h22{height:38.148000px;}
.h17{height:38.610000px;}
.h19{height:40.500000px;}
.h20{height:40.755000px;}
.hf{height:41.317383px;}
.h12{height:45.000000px;}
.h1f{height:45.423000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h24{height:47.520000px;}
.h1a{height:47.586000px;}
.h3{height:48.195000px;}
.h15{height:51.502500px;}
.h2{height:55.080000px;}
.hd{height:55.089844px;}
.h14{height:60.564000px;}
.ha{height:68.862305px;}
.h5{height:78.030000px;}
.hc{height:82.620000px;}
.h4{height:119.055004px;}
.h11{height:1190.250000px;}
.h10{height:1190.551500px;}
.h9{height:1249.500000px;}
.h8{height:1249.560000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:951.480000px;}
.w4{width:951.750000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:108.149850px;}
.x11{left:123.000000px;}
.xb{left:126.112500px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x12{left:219.818850px;}
.x9{left:228.743990px;}
.x10{left:275.760750px;}
.xe{left:290.760750px;}
.x8{left:293.590494px;}
.x3{left:454.959000px;}
.x13{left:565.175550px;}
.xd{left:570.946500px;}
.xf{left:618.350250px;}
.xc{left:650.025750px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v5{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.080000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:18.480000pt;}
.ls16{letter-spacing:-1.248000pt;}
.ls15{letter-spacing:-1.200000pt;}
.lsc{letter-spacing:-1.066667pt;}
.lsd{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.096000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.074667pt;}
.ls7{letter-spacing:0.363067pt;}
.ls6{letter-spacing:0.364000pt;}
.ls8{letter-spacing:0.400000pt;}
.ls14{letter-spacing:0.478933pt;}
.ls13{letter-spacing:0.480000pt;}
.lsf{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls11{letter-spacing:5.626667pt;}
.ls9{letter-spacing:6.757867pt;}
.ls10{letter-spacing:8.140267pt;}
.lsa{letter-spacing:60.023467pt;}
.lse{letter-spacing:922.906667pt;}
.wsb8{word-spacing:-42.666667pt;}
.ws2{word-spacing:-15.530667pt;}
.wsdd{word-spacing:-14.880000pt;}
.ws1{word-spacing:-12.432000pt;}
.wsc5{word-spacing:-12.106667pt;}
.ws5{word-spacing:-11.850667pt;}
.wsc4{word-spacing:-11.840000pt;}
.wsd8{word-spacing:-11.312000pt;}
.ws6{word-spacing:-11.306667pt;}
.wsfe{word-spacing:-10.656000pt;}
.ws8f{word-spacing:-10.304000pt;}
.ws7c{word-spacing:-10.248000pt;}
.ws7b{word-spacing:-10.240000pt;}
.wsd9{word-spacing:-10.176000pt;}
.wsdc{word-spacing:-10.080000pt;}
.wsa2{word-spacing:-9.706667pt;}
.wsb{word-spacing:-9.045333pt;}
.wsfb{word-spacing:-8.976000pt;}
.wsfd{word-spacing:-8.928000pt;}
.wsda{word-spacing:-8.736000pt;}
.wsa{word-spacing:-8.720000pt;}
.wsdb{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.618667pt;}
.wsa5{word-spacing:-8.362667pt;}
.ws4{word-spacing:-8.320000pt;}
.ws8{word-spacing:-7.840000pt;}
.wsb6{word-spacing:-7.765333pt;}
.wsfc{word-spacing:-7.488000pt;}
.ws9{word-spacing:-7.317333pt;}
.ws3{word-spacing:-6.115200pt;}
.wsb7{word-spacing:-5.435733pt;}
.ws11c{word-spacing:-0.480000pt;}
.ws5d{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.wsec{word-spacing:0.096000pt;}
.ws110{word-spacing:0.144000pt;}
.ws114{word-spacing:1.248000pt;}
.ws10c{word-spacing:1.296000pt;}
.ws10b{word-spacing:1.488000pt;}
.wsbe{word-spacing:3.573333pt;}
.wsf3{word-spacing:3.792000pt;}
.wsf7{word-spacing:3.888000pt;}
.ws127{word-spacing:3.936000pt;}
.ws13{word-spacing:4.176000pt;}
.wsf2{word-spacing:4.416000pt;}
.ws74{word-spacing:4.533333pt;}
.ws126{word-spacing:4.560000pt;}
.ws88{word-spacing:4.586667pt;}
.wse4{word-spacing:4.656000pt;}
.ws90{word-spacing:4.693333pt;}
.wsde{word-spacing:4.848000pt;}
.ws4e{word-spacing:4.906667pt;}
.wsea{word-spacing:4.944000pt;}
.wsed{word-spacing:5.040000pt;}
.ws33{word-spacing:5.162667pt;}
.ws23{word-spacing:5.328000pt;}
.ws39{word-spacing:5.504000pt;}
.wsf8{word-spacing:5.616000pt;}
.wsab{word-spacing:5.653333pt;}
.wsdf{word-spacing:5.664000pt;}
.ws52{word-spacing:5.760000pt;}
.ws32{word-spacing:5.861333pt;}
.wsd{word-spacing:5.880000pt;}
.ws10a{word-spacing:5.904000pt;}
.ws37{word-spacing:5.920000pt;}
.wsc3{word-spacing:5.930667pt;}
.ws93{word-spacing:5.973333pt;}
.wsd6{word-spacing:6.026667pt;}
.ws118{word-spacing:6.048000pt;}
.ws60{word-spacing:6.080000pt;}
.ws6a{word-spacing:6.186667pt;}
.wscc{word-spacing:6.240000pt;}
.wse{word-spacing:6.280000pt;}
.wsa1{word-spacing:6.293333pt;}
.wsd2{word-spacing:6.346667pt;}
.ws9c{word-spacing:6.400000pt;}
.wse5{word-spacing:6.432000pt;}
.wsce{word-spacing:6.453333pt;}
.ws121{word-spacing:6.480000pt;}
.ws5b{word-spacing:6.506667pt;}
.ws102{word-spacing:6.528000pt;}
.ws99{word-spacing:6.560000pt;}
.ws1b{word-spacing:6.576000pt;}
.ws26{word-spacing:6.613333pt;}
.ws7d{word-spacing:6.666667pt;}
.ws34{word-spacing:6.698667pt;}
.ws81{word-spacing:6.720000pt;}
.ws125{word-spacing:6.816000pt;}
.wsca{word-spacing:6.826667pt;}
.ws104{word-spacing:6.864000pt;}
.wsd3{word-spacing:6.880000pt;}
.ws115{word-spacing:6.912000pt;}
.ws10f{word-spacing:6.960000pt;}
.wsad{word-spacing:6.986667pt;}
.wseb{word-spacing:7.008000pt;}
.ws70{word-spacing:7.040000pt;}
.ws117{word-spacing:7.056000pt;}
.ws24{word-spacing:7.093333pt;}
.ws28{word-spacing:7.146667pt;}
.wsd5{word-spacing:7.200000pt;}
.ws38{word-spacing:7.253333pt;}
.ws105{word-spacing:7.296000pt;}
.ws3a{word-spacing:7.306667pt;}
.wse0{word-spacing:7.344000pt;}
.ws2a{word-spacing:7.360000pt;}
.wse9{word-spacing:7.392000pt;}
.wscd{word-spacing:7.413333pt;}
.wsf6{word-spacing:7.440000pt;}
.ws4d{word-spacing:7.466667pt;}
.ws113{word-spacing:7.488000pt;}
.ws8c{word-spacing:7.520000pt;}
.ws11{word-spacing:7.536000pt;}
.ws36{word-spacing:7.541333pt;}
.ws8d{word-spacing:7.573333pt;}
.ws72{word-spacing:7.626667pt;}
.wsf4{word-spacing:7.632000pt;}
.wsee{word-spacing:7.680000pt;}
.ws107{word-spacing:7.728000pt;}
.ws51{word-spacing:7.733333pt;}
.ws12{word-spacing:7.776000pt;}
.ws89{word-spacing:7.786667pt;}
.wsaf{word-spacing:7.802667pt;}
.ws4a{word-spacing:7.840000pt;}
.ws1e{word-spacing:7.872000pt;}
.ws98{word-spacing:7.946667pt;}
.wsb0{word-spacing:7.954667pt;}
.ws103{word-spacing:7.968000pt;}
.ws71{word-spacing:8.000000pt;}
.ws5a{word-spacing:8.053333pt;}
.ws123{word-spacing:8.064000pt;}
.ws2c{word-spacing:8.106667pt;}
.wse1{word-spacing:8.112000pt;}
.ws75{word-spacing:8.160000pt;}
.ws66{word-spacing:8.176000pt;}
.ws61{word-spacing:8.213333pt;}
.ws4c{word-spacing:8.232000pt;}
.ws21{word-spacing:8.256000pt;}
.ws25{word-spacing:8.266667pt;}
.ws2f{word-spacing:8.320000pt;}
.ws10e{word-spacing:8.352000pt;}
.ws3d{word-spacing:8.373333pt;}
.ws67{word-spacing:8.426667pt;}
.ws29{word-spacing:8.480000pt;}
.ws112{word-spacing:8.496000pt;}
.wsc{word-spacing:8.533333pt;}
.ws56{word-spacing:8.586667pt;}
.wse8{word-spacing:8.592000pt;}
.wsac{word-spacing:8.640000pt;}
.ws73{word-spacing:8.693333pt;}
.ws11d{word-spacing:8.736000pt;}
.ws54{word-spacing:8.746667pt;}
.wsfa{word-spacing:8.832000pt;}
.wscb{word-spacing:8.853333pt;}
.wse2{word-spacing:8.880000pt;}
.ws6b{word-spacing:8.906667pt;}
.ws1d{word-spacing:8.928000pt;}
.ws106{word-spacing:9.024000pt;}
.ws2b{word-spacing:9.066667pt;}
.ws124{word-spacing:9.168000pt;}
.wsc9{word-spacing:9.280000pt;}
.wsd1{word-spacing:9.386667pt;}
.ws16{word-spacing:9.456000pt;}
.ws92{word-spacing:9.493333pt;}
.ws4b{word-spacing:9.504000pt;}
.ws10{word-spacing:9.520000pt;}
.wsc1{word-spacing:9.546667pt;}
.ws116{word-spacing:9.552000pt;}
.ws1f{word-spacing:9.600000pt;}
.ws44{word-spacing:9.653333pt;}
.wsbb{word-spacing:9.760000pt;}
.ws30{word-spacing:9.813333pt;}
.ws101{word-spacing:9.840000pt;}
.ws65{word-spacing:9.866667pt;}
.ws46{word-spacing:9.920000pt;}
.wse7{word-spacing:9.936000pt;}
.ws5f{word-spacing:9.973333pt;}
.wscf{word-spacing:10.026667pt;}
.wsef{word-spacing:10.032000pt;}
.ws35{word-spacing:10.042667pt;}
.ws63{word-spacing:10.080000pt;}
.ws8a{word-spacing:10.186667pt;}
.ws22{word-spacing:10.224000pt;}
.ws97{word-spacing:10.240000pt;}
.wse3{word-spacing:10.272000pt;}
.wsf9{word-spacing:10.320000pt;}
.ws69{word-spacing:10.346667pt;}
.ws10d{word-spacing:10.368000pt;}
.ws122{word-spacing:10.416000pt;}
.ws86{word-spacing:10.613333pt;}
.ws119{word-spacing:10.656000pt;}
.ws2e{word-spacing:10.666667pt;}
.ws4f{word-spacing:10.720000pt;}
.ws9a{word-spacing:10.773333pt;}
.ws85{word-spacing:10.826667pt;}
.ws53{word-spacing:10.880000pt;}
.wsff{word-spacing:10.944000pt;}
.ws31{word-spacing:10.986667pt;}
.ws68{word-spacing:11.040000pt;}
.ws8e{word-spacing:11.093333pt;}
.ws50{word-spacing:11.253333pt;}
.ws3b{word-spacing:11.306667pt;}
.ws80{word-spacing:11.360000pt;}
.wsf1{word-spacing:11.376000pt;}
.wsc2{word-spacing:11.466667pt;}
.ws100{word-spacing:11.472000pt;}
.wsbc{word-spacing:11.520000pt;}
.wse6{word-spacing:11.568000pt;}
.wsc6{word-spacing:11.626667pt;}
.ws111{word-spacing:11.664000pt;}
.wsa0{word-spacing:11.680000pt;}
.ws8b{word-spacing:11.733333pt;}
.ws108{word-spacing:11.760000pt;}
.ws95{word-spacing:11.786667pt;}
.ws49{word-spacing:11.840000pt;}
.ws6f{word-spacing:12.053333pt;}
.ws78{word-spacing:12.106667pt;}
.ws96{word-spacing:12.160000pt;}
.ws27{word-spacing:12.213333pt;}
.ws59{word-spacing:12.320000pt;}
.ws7f{word-spacing:12.373333pt;}
.wsf{word-spacing:12.394667pt;}
.ws87{word-spacing:12.426667pt;}
.ws48{word-spacing:12.533333pt;}
.ws15{word-spacing:12.624000pt;}
.ws1a{word-spacing:12.672000pt;}
.ws62{word-spacing:12.746667pt;}
.ws77{word-spacing:12.800000pt;}
.ws14{word-spacing:12.864000pt;}
.ws19{word-spacing:12.912000pt;}
.ws5c{word-spacing:12.960000pt;}
.ws91{word-spacing:13.013333pt;}
.wsd4{word-spacing:13.120000pt;}
.ws20{word-spacing:13.152000pt;}
.ws3e{word-spacing:13.173333pt;}
.ws43{word-spacing:13.226667pt;}
.wsf0{word-spacing:13.248000pt;}
.ws2d{word-spacing:13.386667pt;}
.ws109{word-spacing:13.488000pt;}
.ws3f{word-spacing:13.493333pt;}
.ws6e{word-spacing:13.546667pt;}
.ws42{word-spacing:13.600000pt;}
.ws3c{word-spacing:13.653333pt;}
.ws7e{word-spacing:13.760000pt;}
.ws84{word-spacing:13.813333pt;}
.ws128{word-spacing:13.824000pt;}
.ws6d{word-spacing:13.866667pt;}
.ws40{word-spacing:13.920000pt;}
.ws9f{word-spacing:14.133333pt;}
.ws9e{word-spacing:14.293333pt;}
.wsbf{word-spacing:14.453333pt;}
.ws55{word-spacing:14.506667pt;}
.ws41{word-spacing:14.560000pt;}
.ws18{word-spacing:14.592000pt;}
.ws5e{word-spacing:14.666667pt;}
.wsaa{word-spacing:14.720000pt;}
.ws45{word-spacing:14.826667pt;}
.ws47{word-spacing:14.880000pt;}
.ws9d{word-spacing:14.986667pt;}
.wsbd{word-spacing:15.040000pt;}
.wsa9{word-spacing:15.253333pt;}
.ws64{word-spacing:15.306667pt;}
.wsf5{word-spacing:15.312000pt;}
.ws82{word-spacing:15.413333pt;}
.wsc8{word-spacing:15.520000pt;}
.ws79{word-spacing:15.626667pt;}
.wsc7{word-spacing:16.160000pt;}
.wsae{word-spacing:16.480000pt;}
.wsd7{word-spacing:16.800000pt;}
.ws83{word-spacing:16.853333pt;}
.ws1c{word-spacing:16.896000pt;}
.ws58{word-spacing:16.906667pt;}
.ws6c{word-spacing:17.066667pt;}
.wsd0{word-spacing:17.173333pt;}
.wsc0{word-spacing:18.773333pt;}
.ws57{word-spacing:18.826667pt;}
.ws9b{word-spacing:19.680000pt;}
.ws11e{word-spacing:19.824000pt;}
.ws76{word-spacing:20.000000pt;}
.ws7a{word-spacing:20.906667pt;}
.ws17{word-spacing:21.360000pt;}
.ws120{word-spacing:22.224000pt;}
.ws11f{word-spacing:25.920000pt;}
.ws11b{word-spacing:28.800000pt;}
.ws94{word-spacing:30.560000pt;}
.ws11a{word-spacing:33.552000pt;}
.wsa8{word-spacing:125.771733pt;}
.wsa6{word-spacing:135.905600pt;}
.wsa4{word-spacing:181.579200pt;}
.wsb9{word-spacing:202.292800pt;}
.wsba{word-spacing:219.764800pt;}
.wsb3{word-spacing:240.032000pt;}
.wsb4{word-spacing:264.031467pt;}
.wsb2{word-spacing:290.058133pt;}
.wsb1{word-spacing:303.610667pt;}
.wsa7{word-spacing:388.224000pt;}
.wsa3{word-spacing:802.361067pt;}
.wsb5{word-spacing:1574.899200pt;}
._f{margin-left:-9.066680pt;}
._2f{margin-left:-7.536000pt;}
._2e{margin-left:-6.629346pt;}
._e{margin-left:-5.189346pt;}
._5{margin-left:-4.256000pt;}
._1{margin-left:-3.136000pt;}
._0{margin-left:-1.706654pt;}
._9{width:0.890107pt;}
._4{width:1.781320pt;}
._8{width:2.698654pt;}
._2{width:5.546667pt;}
._3{width:6.933320pt;}
._2d{width:8.178693pt;}
._b{width:9.082680pt;}
._c{width:10.885307pt;}
._10{width:12.149333pt;}
._a{width:13.573307pt;}
._11{width:15.334959pt;}
._d{width:16.349346pt;}
._31{width:25.728520pt;}
._30{width:33.898146pt;}
._6{width:54.870387pt;}
._7{width:116.986133pt;}
._1a{width:154.107720pt;}
._17{width:155.302400pt;}
._24{width:162.405320pt;}
._15{width:165.435200pt;}
._16{width:173.111506pt;}
._13{width:194.513067pt;}
._1c{width:197.329067pt;}
._26{width:204.090667pt;}
._22{width:250.271467pt;}
._2c{width:252.127467pt;}
._20{width:258.086387pt;}
._1e{width:269.947733pt;}
._23{width:274.271467pt;}
._25{width:299.850667pt;}
._18{width:304.678400pt;}
._19{width:321.584000pt;}
._27{width:323.224533pt;}
._1d{width:336.261333pt;}
._1f{width:439.514667pt;}
._14{width:443.942400pt;}
._1b{width:465.968000pt;}
._12{width:507.847467pt;}
._21{width:535.546133pt;}
._28{width:629.466667pt;}
._2b{width:655.876800pt;}
._29{width:1217.039467pt;}
._2a{width:1465.924800pt;}
.fsf{font-size:27.733333pt;}
.fsc{font-size:31.200000pt;}
.fsb{font-size:36.400000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y37{bottom:60.086668pt;}
.y6a{bottom:63.947200pt;}
.y69{bottom:74.613867pt;}
.y36{bottom:74.753335pt;}
.yd5{bottom:75.269067pt;}
.yb0{bottom:75.333200pt;}
.yfa{bottom:79.333067pt;}
.y1f0{bottom:83.601067pt;}
.y68{bottom:85.280533pt;}
.y11a{bottom:85.934400pt;}
.y175{bottom:86.269467pt;}
.y4{bottom:86.333337pt;}
.y126{bottom:88.601067pt;}
.yd4{bottom:92.602400pt;}
.yaf{bottom:92.666533pt;}
.y181{bottom:93.267733pt;}
.y1b2{bottom:93.268000pt;}
.y65{bottom:96.280533pt;}
.yf9{bottom:96.666400pt;}
.y1ef{bottom:98.267733pt;}
.y119{bottom:103.267733pt;}
.y174{bottom:103.602800pt;}
.y125{bottom:105.934400pt;}
.y66{bottom:105.947200pt;}
.y1b1{bottom:107.934667pt;}
.yd3{bottom:109.935733pt;}
.yae{bottom:109.999867pt;}
.y180{bottom:110.601067pt;}
.y1ee{bottom:112.934400pt;}
.yf8{bottom:113.999733pt;}
.y118{bottom:120.601067pt;}
.y173{bottom:120.936133pt;}
.y1b0{bottom:122.601333pt;}
.y124{bottom:123.267733pt;}
.y22{bottom:123.790666pt;}
.yd2{bottom:127.269067pt;}
.yad{bottom:127.333200pt;}
.y1ed{bottom:127.601067pt;}
.y17f{bottom:127.934400pt;}
.y1af{bottom:137.268000pt;}
.y172{bottom:138.269467pt;}
.y123{bottom:140.601067pt;}
.y1ec{bottom:142.267733pt;}
.yd1{bottom:144.602400pt;}
.yac{bottom:144.666533pt;}
.y64{bottom:145.267733pt;}
.y117{bottom:147.267733pt;}
.y1ae{bottom:151.934667pt;}
.yf7{bottom:155.333067pt;}
.y171{bottom:155.602800pt;}
.y1eb{bottom:156.934400pt;}
.y122{bottom:157.934400pt;}
.yd0{bottom:161.935733pt;}
.yab{bottom:161.999867pt;}
.y63{bottom:162.601067pt;}
.y1ad{bottom:166.601333pt;}
.y1ea{bottom:171.601067pt;}
.yf6{bottom:172.666400pt;}
.y170{bottom:172.936133pt;}
.y116{bottom:173.934400pt;}
.y19{bottom:175.052000pt;}
.y121{bottom:175.267733pt;}
.ycf{bottom:179.269067pt;}
.yaa{bottom:179.333200pt;}
.y62{bottom:179.934400pt;}
.y1ac{bottom:181.268000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1e9{bottom:186.267733pt;}
.yf5{bottom:189.999733pt;}
.y16f{bottom:190.269467pt;}
.y120{bottom:192.601067pt;}
.y1ab{bottom:195.934667pt;}
.ya9{bottom:196.666533pt;}
.y61{bottom:197.267733pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1e8{bottom:200.934400pt;}
.yf4{bottom:207.333067pt;}
.y16e{bottom:207.602800pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y11f{bottom:209.934400pt;}
.y1aa{bottom:210.601333pt;}
.ya8{bottom:213.999867pt;}
.y60{bottom:214.601067pt;}
.y1e7{bottom:215.601067pt;}
.y115{bottom:219.267733pt;}
.yf3{bottom:224.666400pt;}
.y16d{bottom:224.936133pt;}
.y1a9{bottom:225.268000pt;}
.y35{bottom:226.601334pt;}
.y11e{bottom:227.267733pt;}
.y1e6{bottom:230.267733pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.ya7{bottom:231.333200pt;}
.y5f{bottom:231.934400pt;}
.yce{bottom:235.834667pt;}
.y114{bottom:236.601067pt;}
.y1a8{bottom:239.934667pt;}
.yf2{bottom:241.999733pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y16c{bottom:242.269467pt;}
.y11d{bottom:244.601067pt;}
.y1e5{bottom:244.934400pt;}
.ya6{bottom:248.666533pt;}
.y5e{bottom:249.267733pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y113{bottom:253.934400pt;}
.y1a7{bottom:254.601333pt;}
.yf1{bottom:259.333067pt;}
.y1e4{bottom:259.601067pt;}
.y16b{bottom:259.602800pt;}
.y11c{bottom:261.934400pt;}
.ycd{bottom:263.301467pt;}
.ya5{bottom:265.999867pt;}
.y5d{bottom:266.601067pt;}
.y1a6{bottom:269.268000pt;}
.y112{bottom:271.267733pt;}
.y1e3{bottom:274.267733pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yf0{bottom:276.666400pt;}
.y16a{bottom:276.936133pt;}
.y11b{bottom:279.267733pt;}
.ya4{bottom:283.333200pt;}
.y34{bottom:283.801334pt;}
.y5c{bottom:283.934400pt;}
.y1a5{bottom:283.934667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y111{bottom:288.601067pt;}
.y1e2{bottom:288.934400pt;}
.ycc{bottom:290.768000pt;}
.yef{bottom:293.999733pt;}
.y169{bottom:294.269467pt;}
.y1a4{bottom:298.601333pt;}
.ya3{bottom:300.666533pt;}
.y5b{bottom:301.267733pt;}
.y1e1{bottom:303.601067pt;}
.y110{bottom:305.934400pt;}
.ycb{bottom:308.101333pt;}
.y10{bottom:309.452000pt;}
.yee{bottom:311.333067pt;}
.y168{bottom:311.602800pt;}
.y1a3{bottom:313.268000pt;}
.ya2{bottom:317.999867pt;}
.y1e0{bottom:318.267733pt;}
.y5a{bottom:318.601067pt;}
.yca{bottom:325.434667pt;}
.y1a2{bottom:327.934667pt;}
.yed{bottom:328.666400pt;}
.y167{bottom:328.936133pt;}
.y10f{bottom:332.601067pt;}
.y1df{bottom:332.934400pt;}
.ya1{bottom:335.333200pt;}
.y59{bottom:335.934400pt;}
.y33{bottom:341.001334pt;}
.y1a1{bottom:342.601333pt;}
.yc9{bottom:342.768000pt;}
.yf{bottom:343.809333pt;}
.y15b{bottom:345.101067pt;}
.y166{bottom:346.269467pt;}
.y1de{bottom:347.601067pt;}
.ya0{bottom:352.666533pt;}
.y58{bottom:353.267733pt;}
.yec{bottom:355.333067pt;}
.y15a{bottom:357.101067pt;}
.y1a0{bottom:357.268000pt;}
.yc8{bottom:360.101333pt;}
.y1dd{bottom:362.267733pt;}
.ye{bottom:362.706666pt;}
.y165{bottom:363.602800pt;}
.y159{bottom:369.101067pt;}
.y9f{bottom:369.999867pt;}
.y57{bottom:370.601067pt;}
.y19f{bottom:371.934667pt;}
.y1dc{bottom:376.934400pt;}
.yc7{bottom:377.434667pt;}
.y10e{bottom:377.934400pt;}
.y164{bottom:380.936133pt;}
.y158{bottom:381.101067pt;}
.y19e{bottom:386.601333pt;}
.y9e{bottom:387.333200pt;}
.y56{bottom:387.934400pt;}
.y1db{bottom:391.601067pt;}
.y157{bottom:393.101067pt;}
.yc6{bottom:394.768000pt;}
.y10d{bottom:395.267733pt;}
.y163{bottom:398.269467pt;}
.y32{bottom:400.806667pt;}
.y19d{bottom:401.268000pt;}
.y9d{bottom:404.666533pt;}
.y156{bottom:405.101067pt;}
.y55{bottom:405.267733pt;}
.y1da{bottom:406.267733pt;}
.yeb{bottom:411.999733pt;}
.yc5{bottom:412.101333pt;}
.y10c{bottom:412.601067pt;}
.y162{bottom:415.602800pt;}
.y19c{bottom:415.934667pt;}
.y155{bottom:417.101067pt;}
.y1d9{bottom:420.934400pt;}
.y9c{bottom:421.999867pt;}
.y17e{bottom:422.601067pt;}
.y154{bottom:429.101067pt;}
.yc4{bottom:429.434667pt;}
.y10b{bottom:429.934400pt;}
.y19b{bottom:430.601333pt;}
.y54{bottom:431.934400pt;}
.y1d8{bottom:435.601067pt;}
.yea{bottom:437.999733pt;}
.y9b{bottom:439.333200pt;}
.y17d{bottom:439.934400pt;}
.y153{bottom:441.101067pt;}
.y161{bottom:442.269467pt;}
.y19a{bottom:445.268000pt;}
.yc3{bottom:446.768000pt;}
.yd{bottom:446.990669pt;}
.y10a{bottom:447.267733pt;}
.y1d7{bottom:450.267733pt;}
.y152{bottom:453.101067pt;}
.ye9{bottom:455.333067pt;}
.y31{bottom:455.401334pt;}
.y9a{bottom:456.666533pt;}
.y17c{bottom:457.267733pt;}
.y199{bottom:459.934667pt;}
.yc{bottom:462.990669pt;}
.yc2{bottom:464.101333pt;}
.y1d6{bottom:464.934400pt;}
.y151{bottom:465.101067pt;}
.ye8{bottom:472.666400pt;}
.y109{bottom:473.934400pt;}
.y17b{bottom:474.601067pt;}
.y198{bottom:474.601333pt;}
.y150{bottom:477.101067pt;}
.yb{bottom:478.990666pt;}
.y1d5{bottom:479.601067pt;}
.yc1{bottom:481.434667pt;}
.y99{bottom:483.333200pt;}
.y160{bottom:487.602800pt;}
.y14f{bottom:489.101067pt;}
.y197{bottom:489.268000pt;}
.ye7{bottom:489.999733pt;}
.y17a{bottom:491.934400pt;}
.y7e{bottom:494.073600pt;}
.y1d4{bottom:494.267733pt;}
.ya{bottom:494.990666pt;}
.yc0{bottom:498.768000pt;}
.y108{bottom:500.601067pt;}
.y14e{bottom:501.101067pt;}
.y196{bottom:503.934667pt;}
.y15f{bottom:504.936133pt;}
.y7d{bottom:506.073600pt;}
.ye6{bottom:507.333067pt;}
.y1d3{bottom:508.934400pt;}
.y53{bottom:509.267733pt;}
.y98{bottom:509.999867pt;}
.y14d{bottom:513.101067pt;}
.y30{bottom:515.206667pt;}
.ybf{bottom:516.101333pt;}
.y7c{bottom:518.073600pt;}
.y195{bottom:518.601333pt;}
.y15e{bottom:522.269467pt;}
.y52{bottom:522.601067pt;}
.y1d2{bottom:523.601067pt;}
.ye5{bottom:524.666400pt;}
.y14c{bottom:525.101067pt;}
.y179{bottom:526.601067pt;}
.y7b{bottom:530.073600pt;}
.y194{bottom:533.268000pt;}
.ybe{bottom:533.434667pt;}
.y51{bottom:535.934400pt;}
.y14b{bottom:537.101067pt;}
.y1d1{bottom:538.267733pt;}
.y15d{bottom:539.602800pt;}
.ye4{bottom:541.999733pt;}
.y178{bottom:543.934400pt;}
.y2f{bottom:545.740001pt;}
.y193{bottom:547.934667pt;}
.y14a{bottom:549.101067pt;}
.y50{bottom:549.267733pt;}
.ybd{bottom:550.768000pt;}
.y7a{bottom:552.101067pt;}
.y1d0{bottom:552.934400pt;}
.y107{bottom:554.601067pt;}
.y15c{bottom:556.936133pt;}
.y2e{bottom:559.073335pt;}
.ye3{bottom:559.333067pt;}
.y149{bottom:561.101067pt;}
.y97{bottom:561.267733pt;}
.y4f{bottom:562.601067pt;}
.y192{bottom:562.601333pt;}
.y79{bottom:564.101067pt;}
.y1cf{bottom:567.601067pt;}
.ybc{bottom:568.101333pt;}
.y2d{bottom:572.406667pt;}
.y148{bottom:573.101067pt;}
.y9{bottom:573.786667pt;}
.y4e{bottom:575.934400pt;}
.y78{bottom:576.101067pt;}
.ye2{bottom:576.666400pt;}
.y96{bottom:578.601067pt;}
.y106{bottom:580.601067pt;}
.y1ce{bottom:582.267733pt;}
.y147{bottom:585.101067pt;}
.ybb{bottom:585.434667pt;}
.y191{bottom:586.601333pt;}
.y77{bottom:588.101067pt;}
.y4d{bottom:589.267733pt;}
.y177{bottom:590.936133pt;}
.y8{bottom:592.685334pt;}
.ye1{bottom:593.999733pt;}
.y95{bottom:595.934400pt;}
.y1cd{bottom:596.934400pt;}
.y146{bottom:597.101067pt;}
.y105{bottom:597.934400pt;}
.y76{bottom:600.101067pt;}
.y4c{bottom:602.601067pt;}
.yba{bottom:602.768000pt;}
.y145{bottom:609.101067pt;}
.ye0{bottom:611.333067pt;}
.y1cc{bottom:611.601067pt;}
.y94{bottom:613.267733pt;}
.y104{bottom:615.267733pt;}
.y4b{bottom:615.934400pt;}
.yb9{bottom:620.101333pt;}
.y144{bottom:621.101067pt;}
.y75{bottom:622.201067pt;}
.y1cb{bottom:626.267733pt;}
.ydf{bottom:628.666400pt;}
.y4a{bottom:629.267733pt;}
.y93{bottom:630.601067pt;}
.y190{bottom:631.934667pt;}
.y103{bottom:632.601067pt;}
.y143{bottom:633.101067pt;}
.y74{bottom:634.201067pt;}
.yb8{bottom:637.434667pt;}
.y1ca{bottom:640.934400pt;}
.y49{bottom:642.601067pt;}
.y2c{bottom:644.726665pt;}
.y142{bottom:645.101067pt;}
.y7{bottom:645.598667pt;}
.yde{bottom:645.999733pt;}
.y73{bottom:646.201067pt;}
.y92{bottom:647.934400pt;}
.y102{bottom:649.934400pt;}
.yb7{bottom:654.768000pt;}
.y1c9{bottom:655.601067pt;}
.y48{bottom:655.934400pt;}
.y18f{bottom:655.934667pt;}
.y141{bottom:657.101067pt;}
.y72{bottom:658.201067pt;}
.ydd{bottom:663.333067pt;}
.y91{bottom:665.267733pt;}
.y101{bottom:667.267733pt;}
.y3{bottom:668.977329pt;}
.y140{bottom:669.101067pt;}
.y47{bottom:669.267733pt;}
.y71{bottom:670.201067pt;}
.y1c8{bottom:670.267733pt;}
.y2b{bottom:671.393332pt;}
.yb6{bottom:672.101333pt;}
.ydc{bottom:680.666400pt;}
.y13f{bottom:681.101067pt;}
.y70{bottom:682.201067pt;}
.y46{bottom:682.601067pt;}
.y100{bottom:684.601067pt;}
.y1c7{bottom:684.934400pt;}
.y2a{bottom:687.393332pt;}
.yb5{bottom:689.434667pt;}
.y13e{bottom:693.101067pt;}
.y45{bottom:695.934400pt;}
.ydb{bottom:697.999733pt;}
.y1c6{bottom:699.601067pt;}
.y90{bottom:699.934400pt;}
.y18e{bottom:701.268000pt;}
.yff{bottom:701.934400pt;}
.y6f{bottom:702.434400pt;}
.y29{bottom:703.393332pt;}
.y13d{bottom:705.101067pt;}
.yb4{bottom:706.768000pt;}
.y44{bottom:709.267733pt;}
.y1c5{bottom:714.267733pt;}
.y6e{bottom:714.434400pt;}
.yda{bottom:715.333067pt;}
.y18d{bottom:715.934667pt;}
.y13c{bottom:717.101067pt;}
.y8f{bottom:717.267733pt;}
.yfe{bottom:719.267733pt;}
.y43{bottom:722.601067pt;}
.yb3{bottom:724.101333pt;}
.y6d{bottom:726.434400pt;}
.y1c4{bottom:728.934400pt;}
.y13b{bottom:729.101067pt;}
.y18c{bottom:730.601333pt;}
.yd9{bottom:732.666400pt;}
.y8e{bottom:734.601067pt;}
.y42{bottom:735.934400pt;}
.yfd{bottom:736.601067pt;}
.y6c{bottom:738.434400pt;}
.y13a{bottom:741.101067pt;}
.yb2{bottom:741.434667pt;}
.y1c3{bottom:743.601067pt;}
.y41{bottom:749.267733pt;}
.yd8{bottom:749.999733pt;}
.y28{bottom:750.034669pt;}
.y6b{bottom:750.434400pt;}
.y8d{bottom:751.934400pt;}
.y139{bottom:753.101067pt;}
.y18b{bottom:753.268000pt;}
.yfc{bottom:753.934400pt;}
.y1c2{bottom:758.267733pt;}
.y138{bottom:765.101067pt;}
.y18a{bottom:767.934667pt;}
.y8c{bottom:769.267733pt;}
.y1c1{bottom:772.934400pt;}
.yd7{bottom:776.666400pt;}
.y137{bottom:777.101067pt;}
.y2{bottom:781.661334pt;}
.y189{bottom:782.601333pt;}
.y8b{bottom:786.601067pt;}
.y1c0{bottom:787.601067pt;}
.y136{bottom:789.101067pt;}
.y40{bottom:790.934400pt;}
.yfb{bottom:795.267733pt;}
.y188{bottom:797.268000pt;}
.y135{bottom:801.101067pt;}
.y1bf{bottom:802.267733pt;}
.y8a{bottom:803.934400pt;}
.y27{bottom:806.613333pt;}
.y3f{bottom:808.227733pt;}
.y134{bottom:813.101067pt;}
.y1be{bottom:816.934400pt;}
.y89{bottom:821.267733pt;}
.y187{bottom:821.268000pt;}
.y133{bottom:825.101067pt;}
.y3e{bottom:828.267733pt;}
.yd6{bottom:829.801067pt;}
.y1bd{bottom:831.601067pt;}
.y26{bottom:834.613333pt;}
.y132{bottom:837.101067pt;}
.y88{bottom:838.601067pt;}
.y1bc{bottom:846.267733pt;}
.y176{bottom:848.621067pt;}
.y131{bottom:849.101067pt;}
.y87{bottom:855.934400pt;}
.y1{bottom:859.312000pt;}
.y1bb{bottom:860.934400pt;}
.y130{bottom:861.101067pt;}
.y25{bottom:862.613333pt;}
.y3d{bottom:862.934400pt;}
.y186{bottom:866.601333pt;}
.y12f{bottom:873.101067pt;}
.y86{bottom:873.267733pt;}
.y1ba{bottom:875.601067pt;}
.y3c{bottom:884.267733pt;}
.y12e{bottom:885.101067pt;}
.y1b9{bottom:890.267733pt;}
.y85{bottom:890.601067pt;}
.y185{bottom:890.601333pt;}
.y12d{bottom:897.101067pt;}
.y1b8{bottom:904.934400pt;}
.y3b{bottom:905.601067pt;}
.y84{bottom:907.934400pt;}
.y12c{bottom:909.101067pt;}
.y1b7{bottom:919.601067pt;}
.y24{bottom:920.485335pt;}
.y12b{bottom:921.101067pt;}
.y83{bottom:925.267733pt;}
.y38{bottom:931.121067pt;}
.y12a{bottom:933.101067pt;}
.y1b6{bottom:934.267733pt;}
.y184{bottom:938.101067pt;}
.y82{bottom:942.601067pt;}
.y129{bottom:945.101067pt;}
.y1b5{bottom:948.934400pt;}
.y183{bottom:952.767733pt;}
.y81{bottom:959.934400pt;}
.y128{bottom:961.101067pt;}
.y67{bottom:963.362000pt;}
.y1b4{bottom:963.601067pt;}
.y3a{bottom:975.473733pt;}
.y182{bottom:976.767733pt;}
.y80{bottom:977.267733pt;}
.y127{bottom:977.767733pt;}
.y1b3{bottom:978.267733pt;}
.y39{bottom:987.473733pt;}
.yb1{bottom:1014.433867pt;}
.y7f{bottom:1014.500533pt;}
.y23{bottom:1035.664002pt;}
.h23{height:19.829333pt;}
.h16{height:22.308000pt;}
.h1b{height:26.693333pt;}
.h18{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1e{height:30.000000pt;}
.h21{height:30.506667pt;}
.h1c{height:30.762667pt;}
.h1d{height:32.000000pt;}
.hb{height:32.645833pt;}
.h22{height:33.909333pt;}
.h17{height:34.320000pt;}
.h19{height:36.000000pt;}
.h20{height:36.226667pt;}
.hf{height:36.726562pt;}
.h12{height:40.000000pt;}
.h1f{height:40.376000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h24{height:42.240000pt;}
.h1a{height:42.298667pt;}
.h3{height:42.840000pt;}
.h15{height:45.780000pt;}
.h2{height:48.960000pt;}
.hd{height:48.968750pt;}
.h14{height:53.834667pt;}
.ha{height:61.210938pt;}
.h5{height:69.360000pt;}
.hc{height:73.440000pt;}
.h4{height:105.826671pt;}
.h11{height:1058.000000pt;}
.h10{height:1058.268000pt;}
.h9{height:1110.666667pt;}
.h8{height:1110.720000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:845.760000pt;}
.w4{width:846.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:96.133200pt;}
.x11{left:109.333333pt;}
.xb{left:112.100000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x12{left:195.394533pt;}
.x9{left:203.327991pt;}
.x10{left:245.120667pt;}
.xe{left:258.454000pt;}
.x8{left:260.969328pt;}
.x3{left:404.408000pt;}
.x13{left:502.378267pt;}
.xd{left:507.508000pt;}
.xf{left:549.644667pt;}
.xc{left:577.800667pt;}
}




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