
    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_38200954ab30844c6269ea41.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_931dba2760bebb4a8edfe552.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_78b552c95a75c5734dbd8ee9.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_400484fd3fb574e37dbee598.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_1480809cef629b9ef6290faa.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_292f89aec453c123287cdfe7.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_586296e079d22cea5dfd9d07.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941000;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_03f9bf5be27b7cf29a7272bf.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_4da60694e8e9ef9e7b1607db.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_1d37b3790ae140391622e666.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.715000;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_51a73316bdcb2c68f94e7824.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1b68a85e0f905aa78b4e8236.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.721000;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);}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.350000px;}
.ls9{letter-spacing:-1.200000px;}
.ls8{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.060000px;}
.ls5{letter-spacing:0.450000px;}
.ls4{letter-spacing:0.630000px;}
.ls3{letter-spacing:0.840000px;}
.ls2{letter-spacing:0.900000px;}
.ls6{letter-spacing:7.602600px;}
.ls7{letter-spacing:67.526400px;}
.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;}
}
.ws1{word-spacing:-13.986000px;}
.wsaf{word-spacing:-13.332000px;}
.ws3{word-spacing:-12.720000px;}
.wsae{word-spacing:-11.448000px;}
.ws35{word-spacing:-11.172000px;}
.wsad{word-spacing:-10.908000px;}
.wsb1{word-spacing:-10.098000px;}
.wsb0{word-spacing:-9.828000px;}
.ws7{word-spacing:-9.810000px;}
.ws4{word-spacing:-9.696000px;}
.ws91{word-spacing:-9.408000px;}
.ws2{word-spacing:-9.360000px;}
.ws5{word-spacing:-8.820000px;}
.ws36{word-spacing:-8.736000px;}
.ws6{word-spacing:-8.232000px;}
.ws3d{word-spacing:-0.450000px;}
.ws0{word-spacing:0.000000px;}
.ws71{word-spacing:0.480000px;}
.ws70{word-spacing:1.200000px;}
.wsc3{word-spacing:1.350000px;}
.ws10{word-spacing:4.860000px;}
.ws11{word-spacing:4.914000px;}
.ws51{word-spacing:5.400000px;}
.ws3a{word-spacing:6.042000px;}
.ws3b{word-spacing:6.156000px;}
.ws59{word-spacing:6.180000px;}
.ws7c{word-spacing:6.360000px;}
.ws76{word-spacing:6.420000px;}
.ws8b{word-spacing:6.480000px;}
.ws2f{word-spacing:6.594000px;}
.ws9{word-spacing:6.615000px;}
.ws33{word-spacing:6.660000px;}
.ws9b{word-spacing:6.780000px;}
.wsab{word-spacing:6.840000px;}
.ws6e{word-spacing:6.897000px;}
.ws9f{word-spacing:6.960000px;}
.ws39{word-spacing:7.008000px;}
.ws16{word-spacing:7.020000px;}
.wsa{word-spacing:7.065000px;}
.ws40{word-spacing:7.080000px;}
.ws3e{word-spacing:7.200000px;}
.wsb5{word-spacing:7.320000px;}
.ws6c{word-spacing:7.410000px;}
.ws96{word-spacing:7.488000px;}
.ws54{word-spacing:7.500000px;}
.ws30{word-spacing:7.536000px;}
.ws80{word-spacing:7.560000px;}
.ws6d{word-spacing:7.581000px;}
.ws55{word-spacing:7.620000px;}
.ws62{word-spacing:7.680000px;}
.ws2c{word-spacing:7.740000px;}
.ws6f{word-spacing:7.776000px;}
.ws1b{word-spacing:7.884000px;}
.wsa7{word-spacing:8.040000px;}
.wsa6{word-spacing:8.100000px;}
.ws34{word-spacing:8.160000px;}
.ws9d{word-spacing:8.220000px;}
.ws44{word-spacing:8.400000px;}
.wsd{word-spacing:8.478000px;}
.ws32{word-spacing:8.484000px;}
.ws5d{word-spacing:8.520000px;}
.ws88{word-spacing:8.580000px;}
.ws37{word-spacing:8.607000px;}
.wse{word-spacing:8.640000px;}
.ws20{word-spacing:8.700000px;}
.ws38{word-spacing:8.778000px;}
.ws21{word-spacing:8.820000px;}
.ws7a{word-spacing:8.940000px;}
.ws3c{word-spacing:8.949000px;}
.wsb6{word-spacing:8.964000px;}
.ws67{word-spacing:9.000000px;}
.ws89{word-spacing:9.060000px;}
.wsa9{word-spacing:9.120000px;}
.ws1e{word-spacing:9.180000px;}
.ws86{word-spacing:9.240000px;}
.ws58{word-spacing:9.300000px;}
.ws42{word-spacing:9.360000px;}
.wsc2{word-spacing:9.396000px;}
.ws8{word-spacing:9.600000px;}
.ws72{word-spacing:9.720000px;}
.wsb3{word-spacing:9.828000px;}
.ws9c{word-spacing:9.840000px;}
.wsc1{word-spacing:9.882000px;}
.wsa5{word-spacing:9.900000px;}
.ws41{word-spacing:10.080000px;}
.ws1a{word-spacing:10.098000px;}
.ws25{word-spacing:10.200000px;}
.ws22{word-spacing:10.260000px;}
.ws73{word-spacing:10.320000px;}
.ws75{word-spacing:10.380000px;}
.wsb7{word-spacing:10.422000px;}
.ws26{word-spacing:10.500000px;}
.wsc5{word-spacing:10.530000px;}
.wsac{word-spacing:10.560000px;}
.wsbd{word-spacing:10.584000px;}
.ws77{word-spacing:10.680000px;}
.ws1f{word-spacing:10.692000px;}
.wsc{word-spacing:10.710000px;}
.ws5e{word-spacing:10.740000px;}
.ws2e{word-spacing:10.860000px;}
.ws81{word-spacing:10.920000px;}
.ws14{word-spacing:10.962000px;}
.ws7f{word-spacing:10.980000px;}
.ws2d{word-spacing:11.100000px;}
.ws53{word-spacing:11.160000px;}
.wsa2{word-spacing:11.220000px;}
.ws2a{word-spacing:11.280000px;}
.ws31{word-spacing:11.298000px;}
.wsb2{word-spacing:11.394000px;}
.wsa3{word-spacing:11.400000px;}
.wsc0{word-spacing:11.502000px;}
.ws29{word-spacing:11.520000px;}
.ws5a{word-spacing:11.580000px;}
.ws27{word-spacing:11.700000px;}
.ws49{word-spacing:11.760000px;}
.ws43{word-spacing:11.820000px;}
.ws24{word-spacing:11.880000px;}
.wsa8{word-spacing:11.940000px;}
.ws83{word-spacing:12.000000px;}
.ws4b{word-spacing:12.060000px;}
.ws2b{word-spacing:12.120000px;}
.ws4d{word-spacing:12.180000px;}
.wsa0{word-spacing:12.240000px;}
.ws50{word-spacing:12.300000px;}
.wsbc{word-spacing:12.312000px;}
.ws8c{word-spacing:12.420000px;}
.ws48{word-spacing:12.540000px;}
.ws8f{word-spacing:12.600000px;}
.ws63{word-spacing:12.780000px;}
.ws47{word-spacing:12.840000px;}
.wsb4{word-spacing:12.852000px;}
.wsa1{word-spacing:13.020000px;}
.ws4a{word-spacing:13.200000px;}
.ws87{word-spacing:13.440000px;}
.ws5b{word-spacing:13.560000px;}
.wsc4{word-spacing:13.608000px;}
.ws45{word-spacing:13.680000px;}
.ws15{word-spacing:13.716000px;}
.ws79{word-spacing:13.740000px;}
.wsba{word-spacing:13.824000px;}
.ws78{word-spacing:13.920000px;}
.wsb{word-spacing:13.944000px;}
.ws1c{word-spacing:14.040000px;}
.wsbf{word-spacing:14.310000px;}
.ws8e{word-spacing:14.340000px;}
.wsa4{word-spacing:14.400000px;}
.ws60{word-spacing:14.700000px;}
.ws8a{word-spacing:14.820000px;}
.ws74{word-spacing:14.880000px;}
.ws4c{word-spacing:15.000000px;}
.ws4f{word-spacing:15.300000px;}
.ws1d{word-spacing:15.444000px;}
.wsb8{word-spacing:15.498000px;}
.ws4e{word-spacing:15.540000px;}
.ws69{word-spacing:15.600000px;}
.wsbb{word-spacing:15.606000px;}
.ws61{word-spacing:15.840000px;}
.ws57{word-spacing:16.140000px;}
.ws8d{word-spacing:16.260000px;}
.ws56{word-spacing:16.380000px;}
.ws82{word-spacing:16.440000px;}
.ws6b{word-spacing:16.620000px;}
.ws7e{word-spacing:16.680000px;}
.wsbe{word-spacing:16.686000px;}
.wsf{word-spacing:16.740000px;}
.ws3f{word-spacing:16.800000px;}
.ws46{word-spacing:16.920000px;}
.ws7b{word-spacing:16.980000px;}
.wsb9{word-spacing:17.280000px;}
.ws28{word-spacing:17.460000px;}
.ws52{word-spacing:17.880000px;}
.ws97{word-spacing:18.126000px;}
.ws7d{word-spacing:18.420000px;}
.ws98{word-spacing:18.468000px;}
.ws9e{word-spacing:18.480000px;}
.ws68{word-spacing:18.600000px;}
.ws13{word-spacing:19.008000px;}
.ws12{word-spacing:19.278000px;}
.ws17{word-spacing:19.332000px;}
.ws5c{word-spacing:19.440000px;}
.ws85{word-spacing:19.680000px;}
.ws23{word-spacing:19.740000px;}
.ws64{word-spacing:19.980000px;}
.ws19{word-spacing:20.142000px;}
.ws6a{word-spacing:20.520000px;}
.ws5f{word-spacing:21.120000px;}
.ws18{word-spacing:21.978000px;}
.ws84{word-spacing:22.140000px;}
.ws65{word-spacing:22.800000px;}
.wsaa{word-spacing:28.920000px;}
.ws66{word-spacing:32.700000px;}
.ws93{word-spacing:169.845600px;}
.ws92{word-spacing:301.269600px;}
.ws90{word-spacing:336.549600px;}
.ws9a{word-spacing:454.869600px;}
.ws95{word-spacing:520.869600px;}
.ws99{word-spacing:535.893600px;}
.ws94{word-spacing:601.893600px;}
._14{margin-left:-9.452415px;}
._13{margin-left:-7.576815px;}
._7{margin-left:-5.385600px;}
._1{margin-left:-4.140000px;}
._6{margin-left:-3.132000px;}
._0{margin-left:-1.919985px;}
._5{width:1.764000px;}
._4{width:2.808000px;}
._2{width:6.299985px;}
._3{width:7.799985px;}
._a{width:9.333000px;}
._10{width:10.530000px;}
._b{width:11.944200px;}
._f{width:13.103956px;}
._18{width:14.406556px;}
._19{width:17.254771px;}
._e{width:19.733956px;}
._17{width:33.909585px;}
._11{width:49.440000px;}
._12{width:50.640000px;}
._8{width:60.295156px;}
._d{width:78.360000px;}
._c{width:131.698171px;}
._9{width:133.679400px;}
._15{width:242.290200px;}
._16{width:291.371400px;}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(16,20,126);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{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;}
.y5{bottom:66.525004px;}
.y35{bottom:67.597501px;}
.y34{bottom:84.097501px;}
.y12c{bottom:84.677700px;}
.y16f{bottom:84.863700px;}
.yf0{bottom:85.426200px;}
.y122{bottom:90.525000px;}
.y4{bottom:97.125005px;}
.y1af{bottom:99.826200px;}
.y121{bottom:104.025000px;}
.y12b{bottom:104.177700px;}
.y66{bottom:104.190600px;}
.y16e{bottom:104.363700px;}
.yef{bottom:104.926200px;}
.ybf{bottom:111.301200px;}
.y65{bottom:116.190600px;}
.y120{bottom:117.525000px;}
.y1ae{bottom:121.426200px;}
.y12a{bottom:123.677700px;}
.y16d{bottom:123.863700px;}
.yee{bottom:124.426200px;}
.ybe{bottom:124.801200px;}
.y64{bottom:128.190600px;}
.y11f{bottom:131.025000px;}
.y1ad{bottom:137.926200px;}
.ybd{bottom:138.301200px;}
.y21{bottom:139.264499px;}
.y61{bottom:140.565600px;}
.y129{bottom:143.177700px;}
.y16c{bottom:143.363700px;}
.yed{bottom:143.926200px;}
.y11e{bottom:144.525000px;}
.y62{bottom:151.440600px;}
.ybc{bottom:151.801200px;}
.y1ac{bottom:154.426200px;}
.y11d{bottom:158.025000px;}
.y16b{bottom:162.863700px;}
.yec{bottom:163.426200px;}
.ybb{bottom:165.301200px;}
.y1ab{bottom:170.926200px;}
.y11c{bottom:171.525000px;}
.y128{bottom:173.177700px;}
.yba{bottom:178.801200px;}
.y16a{bottom:182.363700px;}
.y11b{bottom:185.025000px;}
.y1aa{bottom:187.426200px;}
.yb9{bottom:192.301200px;}
.y18{bottom:196.933500px;}
.y11a{bottom:198.525000px;}
.yeb{bottom:200.926200px;}
.y169{bottom:201.863700px;}
.y60{bottom:202.426200px;}
.y1a9{bottom:203.926200px;}
.yb8{bottom:205.801200px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y119{bottom:212.025000px;}
.yb7{bottom:219.301200px;}
.yea{bottom:220.426200px;}
.y168{bottom:221.363700px;}
.y5f{bottom:221.926200px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y118{bottom:225.525000px;}
.yb6{bottom:232.801200px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1a8{bottom:236.926200px;}
.y117{bottom:239.025000px;}
.ye9{bottom:239.926200px;}
.y167{bottom:240.863700px;}
.y5e{bottom:241.426200px;}
.yb5{bottom:246.301200px;}
.y116{bottom:252.525000px;}
.y1a7{bottom:253.426200px;}
.ye8{bottom:259.426200px;}
.yb4{bottom:259.801200px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y166{bottom:260.363700px;}
.y5d{bottom:260.926200px;}
.y115{bottom:266.025000px;}
.y1a6{bottom:269.926200px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yb3{bottom:273.301200px;}
.ye7{bottom:278.926200px;}
.y114{bottom:279.525000px;}
.y165{bottom:279.863700px;}
.y5c{bottom:280.426200px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1a5{bottom:286.426200px;}
.yb2{bottom:286.801200px;}
.y113{bottom:293.025000px;}
.ye6{bottom:298.426200px;}
.y164{bottom:299.363700px;}
.y5b{bottom:299.926200px;}
.yb1{bottom:300.301200px;}
.y1a4{bottom:302.926200px;}
.y112{bottom:306.525000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yb0{bottom:313.801200px;}
.ye5{bottom:317.926200px;}
.y163{bottom:318.863700px;}
.y33{bottom:319.276501px;}
.y5a{bottom:319.426200px;}
.y111{bottom:320.025000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yaf{bottom:327.301200px;}
.y110{bottom:333.525000px;}
.y1a3{bottom:335.926200px;}
.y162{bottom:338.363700px;}
.y59{bottom:338.926200px;}
.yae{bottom:340.801200px;}
.y10f{bottom:347.025000px;}
.yf{bottom:348.133500px;}
.y1a2{bottom:352.426200px;}
.yad{bottom:354.301200px;}
.ye4{bottom:355.426200px;}
.y161{bottom:357.863700px;}
.y58{bottom:358.426200px;}
.y10e{bottom:360.525000px;}
.yac{bottom:367.801200px;}
.y1a1{bottom:368.926200px;}
.y10d{bottom:374.025000px;}
.ye3{bottom:374.926200px;}
.y160{bottom:377.363700px;}
.y57{bottom:377.926200px;}
.yab{bottom:381.301200px;}
.y32{bottom:383.626501px;}
.y1a0{bottom:385.426200px;}
.ye{bottom:386.785499px;}
.y10c{bottom:387.525000px;}
.ye2{bottom:394.426200px;}
.yaa{bottom:394.801200px;}
.y15f{bottom:396.863700px;}
.y56{bottom:397.426200px;}
.y10b{bottom:401.025000px;}
.y19f{bottom:401.926200px;}
.yd{bottom:408.044999px;}
.ya9{bottom:408.301200px;}
.ye1{bottom:413.926200px;}
.y10a{bottom:414.525000px;}
.y15e{bottom:416.363700px;}
.y55{bottom:416.926200px;}
.y19e{bottom:418.426200px;}
.ya8{bottom:421.801200px;}
.y109{bottom:428.025000px;}
.ye0{bottom:433.426200px;}
.y19d{bottom:434.926200px;}
.ya7{bottom:435.301200px;}
.y15d{bottom:435.863700px;}
.y54{bottom:436.426200px;}
.y108{bottom:441.525000px;}
.ya6{bottom:448.801200px;}
.y31{bottom:450.907500px;}
.y19c{bottom:451.426200px;}
.ydf{bottom:452.926200px;}
.y107{bottom:455.025000px;}
.y15c{bottom:455.363700px;}
.y53{bottom:455.926200px;}
.ya5{bottom:462.301200px;}
.y19b{bottom:467.926200px;}
.y106{bottom:468.525000px;}
.yde{bottom:472.426200px;}
.y15b{bottom:474.863700px;}
.y52{bottom:475.426200px;}
.ya4{bottom:475.801200px;}
.y105{bottom:482.025000px;}
.y19a{bottom:484.426200px;}
.ya3{bottom:489.301200px;}
.ydd{bottom:491.926200px;}
.y15a{bottom:494.363700px;}
.y51{bottom:494.926200px;}
.y104{bottom:495.525000px;}
.y199{bottom:500.926200px;}
.ya2{bottom:502.801200px;}
.yc{bottom:502.864502px;}
.y103{bottom:509.025000px;}
.ydc{bottom:511.426200px;}
.y30{bottom:512.326501px;}
.y159{bottom:513.863700px;}
.y152{bottom:513.900000px;}
.y127{bottom:514.426200px;}
.y198{bottom:517.426200px;}
.yb{bottom:520.864502px;}
.ya1{bottom:521.176200px;}
.y102{bottom:522.525000px;}
.y50{bottom:524.926200px;}
.ydb{bottom:530.926200px;}
.y151{bottom:532.650000px;}
.y158{bottom:533.363700px;}
.y126{bottom:533.926200px;}
.y101{bottom:536.025000px;}
.ya{bottom:538.864499px;}
.ya0{bottom:539.176200px;}
.y197{bottom:544.426200px;}
.y100{bottom:549.525000px;}
.yda{bottom:550.426200px;}
.y150{bottom:550.650000px;}
.y157{bottom:552.863700px;}
.y125{bottom:553.426200px;}
.y9{bottom:556.864499px;}
.yff{bottom:563.025000px;}
.y156{bottom:572.363700px;}
.y124{bottom:572.926200px;}
.yfe{bottom:576.525000px;}
.y2f{bottom:579.607500px;}
.yd9{bottom:580.426200px;}
.yfd{bottom:589.275000px;}
.y9f{bottom:591.113700px;}
.y155{bottom:591.863700px;}
.y123{bottom:592.426200px;}
.y196{bottom:595.426200px;}
.y9e{bottom:604.613700px;}
.yfc{bottom:608.025000px;}
.y154{bottom:611.363700px;}
.y4f{bottom:611.926200px;}
.y2e{bottom:613.957501px;}
.y78{bottom:616.463700px;}
.y14f{bottom:617.738700px;}
.y9d{bottom:618.113700px;}
.yfb{bottom:626.025000px;}
.y4e{bottom:626.926200px;}
.y195{bottom:628.426200px;}
.y2d{bottom:628.957501px;}
.y77{bottom:629.963700px;}
.y153{bottom:630.863700px;}
.y14e{bottom:631.238700px;}
.yd8{bottom:631.426200px;}
.y9c{bottom:631.613700px;}
.y4d{bottom:641.926200px;}
.y76{bottom:643.463700px;}
.y2c{bottom:643.957500px;}
.y14d{bottom:644.738700px;}
.y194{bottom:644.926200px;}
.y9b{bottom:645.113700px;}
.y8{bottom:645.510000px;}
.yd7{bottom:650.926200px;}
.y4c{bottom:656.926200px;}
.y75{bottom:656.963700px;}
.y14c{bottom:658.238700px;}
.y9a{bottom:658.613700px;}
.y193{bottom:661.426200px;}
.y7{bottom:666.771000px;}
.yd6{bottom:670.426200px;}
.y14b{bottom:671.738700px;}
.y4b{bottom:671.926200px;}
.y99{bottom:672.113700px;}
.y74{bottom:684.713700px;}
.y14a{bottom:685.238700px;}
.y98{bottom:685.613700px;}
.y4a{bottom:686.926200px;}
.y192{bottom:688.426200px;}
.yd5{bottom:689.926200px;}
.y73{bottom:698.213700px;}
.y18b{bottom:698.363700px;}
.y149{bottom:698.738700px;}
.y97{bottom:699.113700px;}
.y49{bottom:701.926200px;}
.yfa{bottom:706.426200px;}
.yd4{bottom:709.426200px;}
.y72{bottom:711.713700px;}
.y18a{bottom:711.863700px;}
.y148{bottom:712.238700px;}
.y96{bottom:712.613700px;}
.y48{bottom:716.926200px;}
.y2b{bottom:725.317498px;}
.y189{bottom:725.363700px;}
.y147{bottom:725.738700px;}
.yf9{bottom:725.926200px;}
.y95{bottom:726.113700px;}
.y6{bottom:726.298500px;}
.yd3{bottom:728.926200px;}
.y47{bottom:731.926200px;}
.y71{bottom:738.226200px;}
.y188{bottom:738.863700px;}
.y146{bottom:739.238700px;}
.y191{bottom:739.426200px;}
.y94{bottom:739.613700px;}
.yf8{bottom:745.426200px;}
.y46{bottom:746.926200px;}
.yd2{bottom:748.426200px;}
.y70{bottom:751.726200px;}
.y187{bottom:752.363700px;}
.y3{bottom:752.599495px;}
.y145{bottom:752.738700px;}
.y93{bottom:753.113700px;}
.y2a{bottom:755.317498px;}
.y45{bottom:761.926200px;}
.yf7{bottom:764.926200px;}
.y6f{bottom:765.226200px;}
.y186{bottom:765.863700px;}
.y144{bottom:766.238700px;}
.y190{bottom:766.426200px;}
.y92{bottom:766.613700px;}
.yd1{bottom:767.926200px;}
.y29{bottom:773.317498px;}
.y44{bottom:776.926200px;}
.y6e{bottom:778.726200px;}
.y185{bottom:779.363700px;}
.y143{bottom:779.738700px;}
.y91{bottom:780.113700px;}
.yf6{bottom:784.426200px;}
.yd0{bottom:787.426200px;}
.y28{bottom:791.317498px;}
.y43{bottom:791.926200px;}
.y6d{bottom:792.226200px;}
.y184{bottom:792.863700px;}
.y142{bottom:793.238700px;}
.y90{bottom:793.613700px;}
.yf5{bottom:803.926200px;}
.y6c{bottom:805.726200px;}
.y183{bottom:806.363700px;}
.y141{bottom:806.738700px;}
.y42{bottom:806.926200px;}
.y8f{bottom:807.113700px;}
.y182{bottom:819.863700px;}
.y140{bottom:820.238700px;}
.y8e{bottom:820.613700px;}
.y41{bottom:821.926200px;}
.yf4{bottom:823.426200px;}
.ycf{bottom:826.426200px;}
.y6b{bottom:828.488700px;}
.y181{bottom:833.363700px;}
.y13f{bottom:833.738700px;}
.y8d{bottom:834.113700px;}
.y40{bottom:836.926200px;}
.y18f{bottom:841.426200px;}
.y6a{bottom:841.988700px;}
.yf3{bottom:842.926200px;}
.y27{bottom:843.789002px;}
.yce{bottom:845.926200px;}
.y180{bottom:846.863700px;}
.y13e{bottom:847.238700px;}
.y8c{bottom:847.613700px;}
.y3f{bottom:851.926200px;}
.y69{bottom:855.488700px;}
.y17f{bottom:860.363700px;}
.y13d{bottom:860.738700px;}
.y8b{bottom:861.113700px;}
.yf2{bottom:862.426200px;}
.ycd{bottom:865.426200px;}
.y3e{bottom:866.926200px;}
.y68{bottom:868.988700px;}
.y17e{bottom:873.863700px;}
.y13c{bottom:874.238700px;}
.y8a{bottom:874.613700px;}
.y18e{bottom:878.926200px;}
.y2{bottom:879.369000px;}
.y3d{bottom:881.926200px;}
.y67{bottom:882.488700px;}
.ycc{bottom:884.926200px;}
.y17d{bottom:887.363700px;}
.y13b{bottom:887.738700px;}
.y89{bottom:888.113700px;}
.y18d{bottom:895.426200px;}
.y17c{bottom:900.863700px;}
.y13a{bottom:901.238700px;}
.y88{bottom:901.613700px;}
.ycb{bottom:904.426200px;}
.y26{bottom:907.440000px;}
.yf1{bottom:911.926200px;}
.y17b{bottom:914.363700px;}
.y139{bottom:914.738700px;}
.y87{bottom:915.113700px;}
.yca{bottom:923.926200px;}
.y17a{bottom:927.863700px;}
.y138{bottom:928.238700px;}
.y18c{bottom:928.426200px;}
.y86{bottom:928.613700px;}
.y3c{bottom:928.801200px;}
.y25{bottom:938.940000px;}
.y179{bottom:941.363700px;}
.y137{bottom:941.738700px;}
.y85{bottom:942.113700px;}
.yc9{bottom:943.426200px;}
.y178{bottom:954.863700px;}
.y136{bottom:955.238700px;}
.y84{bottom:955.613700px;}
.y3b{bottom:955.801200px;}
.yc8{bottom:962.926200px;}
.y1{bottom:966.726000px;}
.y177{bottom:968.363700px;}
.y135{bottom:968.738700px;}
.y83{bottom:969.113700px;}
.y24{bottom:970.440000px;}
.y176{bottom:981.863700px;}
.y134{bottom:982.238700px;}
.yc7{bottom:982.426200px;}
.y82{bottom:982.613700px;}
.y3a{bottom:994.801200px;}
.y175{bottom:995.363700px;}
.y133{bottom:995.738700px;}
.y81{bottom:996.113700px;}
.yc6{bottom:1001.926200px;}
.y174{bottom:1008.863700px;}
.y132{bottom:1009.238700px;}
.y80{bottom:1009.613700px;}
.y39{bottom:1018.801200px;}
.yc5{bottom:1021.426200px;}
.y173{bottom:1022.363700px;}
.y131{bottom:1022.738700px;}
.y7f{bottom:1023.113700px;}
.y23{bottom:1035.546001px;}
.y172{bottom:1035.863700px;}
.y130{bottom:1036.238700px;}
.y7e{bottom:1036.613700px;}
.yc4{bottom:1040.926200px;}
.y36{bottom:1047.511200px;}
.y171{bottom:1049.363700px;}
.y12f{bottom:1049.738700px;}
.y7d{bottom:1050.113700px;}
.yc3{bottom:1060.426200px;}
.y170{bottom:1062.863700px;}
.y12e{bottom:1063.238700px;}
.y7c{bottom:1063.613700px;}
.yc2{bottom:1079.926200px;}
.y12d{bottom:1081.238700px;}
.y7b{bottom:1081.988700px;}
.y63{bottom:1083.782250px;}
.y38{bottom:1097.407950px;}
.yc1{bottom:1099.426200px;}
.y7a{bottom:1099.988700px;}
.y37{bottom:1110.907950px;}
.yc0{bottom:1141.238100px;}
.y79{bottom:1141.313100px;}
.y22{bottom:1165.122003px;}
.h1a{height:30.030000px;}
.h17{height:31.500000px;}
.h7{height:32.130000px;}
.h13{height:32.175000px;}
.h1d{height:33.750000px;}
.h1f{height:34.320000px;}
.h1b{height:34.608000px;}
.h1c{height:36.000000px;}
.hb{height:36.726562px;}
.h16{height:38.610000px;}
.h18{height:40.500000px;}
.h1e{height:40.755000px;}
.hf{height:41.317383px;}
.h12{height:45.000000px;}
.h6{height:45.900000px;}
.he{height:45.908203px;}
.h15{height:47.250000px;}
.h19{height:47.586000px;}
.h3{height:48.195000px;}
.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;}
.xe{left:123.000000px;}
.xb{left:126.112500px;}
.x10{left:135.000000px;}
.x6{left:145.650000px;}
.x5{left:191.880000px;}
.x7{left:197.700000px;}
.x4{left:203.484001px;}
.x9{left:228.743990px;}
.x14{left:232.913400px;}
.x11{left:247.913400px;}
.x1a{left:274.913400px;}
.x1b{left:289.913400px;}
.x16{left:291.413400px;}
.x8{left:293.590494px;}
.x17{left:306.413400px;}
.x18{left:309.413400px;}
.x15{left:330.815550px;}
.x19{left:366.314850px;}
.x3{left:454.959000px;}
.x12{left:459.551100px;}
.x13{left:474.551100px;}
.xf{left:570.946500px;}
.xd{left:648.900750px;}
.xc{left:650.025750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.200000pt;}
.ls9{letter-spacing:-1.066667pt;}
.ls8{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.053333pt;}
.ls5{letter-spacing:0.400000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls3{letter-spacing:0.746667pt;}
.ls2{letter-spacing:0.800000pt;}
.ls6{letter-spacing:6.757867pt;}
.ls7{letter-spacing:60.023467pt;}
.ws1{word-spacing:-12.432000pt;}
.wsaf{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.306667pt;}
.wsae{word-spacing:-10.176000pt;}
.ws35{word-spacing:-9.930667pt;}
.wsad{word-spacing:-9.696000pt;}
.wsb1{word-spacing:-8.976000pt;}
.wsb0{word-spacing:-8.736000pt;}
.ws7{word-spacing:-8.720000pt;}
.ws4{word-spacing:-8.618667pt;}
.ws91{word-spacing:-8.362667pt;}
.ws2{word-spacing:-8.320000pt;}
.ws5{word-spacing:-7.840000pt;}
.ws36{word-spacing:-7.765333pt;}
.ws6{word-spacing:-7.317333pt;}
.ws3d{word-spacing:-0.400000pt;}
.ws0{word-spacing:0.000000pt;}
.ws71{word-spacing:0.426667pt;}
.ws70{word-spacing:1.066667pt;}
.wsc3{word-spacing:1.200000pt;}
.ws10{word-spacing:4.320000pt;}
.ws11{word-spacing:4.368000pt;}
.ws51{word-spacing:4.800000pt;}
.ws3a{word-spacing:5.370667pt;}
.ws3b{word-spacing:5.472000pt;}
.ws59{word-spacing:5.493333pt;}
.ws7c{word-spacing:5.653333pt;}
.ws76{word-spacing:5.706667pt;}
.ws8b{word-spacing:5.760000pt;}
.ws2f{word-spacing:5.861333pt;}
.ws9{word-spacing:5.880000pt;}
.ws33{word-spacing:5.920000pt;}
.ws9b{word-spacing:6.026667pt;}
.wsab{word-spacing:6.080000pt;}
.ws6e{word-spacing:6.130667pt;}
.ws9f{word-spacing:6.186667pt;}
.ws39{word-spacing:6.229333pt;}
.ws16{word-spacing:6.240000pt;}
.wsa{word-spacing:6.280000pt;}
.ws40{word-spacing:6.293333pt;}
.ws3e{word-spacing:6.400000pt;}
.wsb5{word-spacing:6.506667pt;}
.ws6c{word-spacing:6.586667pt;}
.ws96{word-spacing:6.656000pt;}
.ws54{word-spacing:6.666667pt;}
.ws30{word-spacing:6.698667pt;}
.ws80{word-spacing:6.720000pt;}
.ws6d{word-spacing:6.738667pt;}
.ws55{word-spacing:6.773333pt;}
.ws62{word-spacing:6.826667pt;}
.ws2c{word-spacing:6.880000pt;}
.ws6f{word-spacing:6.912000pt;}
.ws1b{word-spacing:7.008000pt;}
.wsa7{word-spacing:7.146667pt;}
.wsa6{word-spacing:7.200000pt;}
.ws34{word-spacing:7.253333pt;}
.ws9d{word-spacing:7.306667pt;}
.ws44{word-spacing:7.466667pt;}
.wsd{word-spacing:7.536000pt;}
.ws32{word-spacing:7.541333pt;}
.ws5d{word-spacing:7.573333pt;}
.ws88{word-spacing:7.626667pt;}
.ws37{word-spacing:7.650667pt;}
.wse{word-spacing:7.680000pt;}
.ws20{word-spacing:7.733333pt;}
.ws38{word-spacing:7.802667pt;}
.ws21{word-spacing:7.840000pt;}
.ws7a{word-spacing:7.946667pt;}
.ws3c{word-spacing:7.954667pt;}
.wsb6{word-spacing:7.968000pt;}
.ws67{word-spacing:8.000000pt;}
.ws89{word-spacing:8.053333pt;}
.wsa9{word-spacing:8.106667pt;}
.ws1e{word-spacing:8.160000pt;}
.ws86{word-spacing:8.213333pt;}
.ws58{word-spacing:8.266667pt;}
.ws42{word-spacing:8.320000pt;}
.wsc2{word-spacing:8.352000pt;}
.ws8{word-spacing:8.533333pt;}
.ws72{word-spacing:8.640000pt;}
.wsb3{word-spacing:8.736000pt;}
.ws9c{word-spacing:8.746667pt;}
.wsc1{word-spacing:8.784000pt;}
.wsa5{word-spacing:8.800000pt;}
.ws41{word-spacing:8.960000pt;}
.ws1a{word-spacing:8.976000pt;}
.ws25{word-spacing:9.066667pt;}
.ws22{word-spacing:9.120000pt;}
.ws73{word-spacing:9.173333pt;}
.ws75{word-spacing:9.226667pt;}
.wsb7{word-spacing:9.264000pt;}
.ws26{word-spacing:9.333333pt;}
.wsc5{word-spacing:9.360000pt;}
.wsac{word-spacing:9.386667pt;}
.wsbd{word-spacing:9.408000pt;}
.ws77{word-spacing:9.493333pt;}
.ws1f{word-spacing:9.504000pt;}
.wsc{word-spacing:9.520000pt;}
.ws5e{word-spacing:9.546667pt;}
.ws2e{word-spacing:9.653333pt;}
.ws81{word-spacing:9.706667pt;}
.ws14{word-spacing:9.744000pt;}
.ws7f{word-spacing:9.760000pt;}
.ws2d{word-spacing:9.866667pt;}
.ws53{word-spacing:9.920000pt;}
.wsa2{word-spacing:9.973333pt;}
.ws2a{word-spacing:10.026667pt;}
.ws31{word-spacing:10.042667pt;}
.wsb2{word-spacing:10.128000pt;}
.wsa3{word-spacing:10.133333pt;}
.wsc0{word-spacing:10.224000pt;}
.ws29{word-spacing:10.240000pt;}
.ws5a{word-spacing:10.293333pt;}
.ws27{word-spacing:10.400000pt;}
.ws49{word-spacing:10.453333pt;}
.ws43{word-spacing:10.506667pt;}
.ws24{word-spacing:10.560000pt;}
.wsa8{word-spacing:10.613333pt;}
.ws83{word-spacing:10.666667pt;}
.ws4b{word-spacing:10.720000pt;}
.ws2b{word-spacing:10.773333pt;}
.ws4d{word-spacing:10.826667pt;}
.wsa0{word-spacing:10.880000pt;}
.ws50{word-spacing:10.933333pt;}
.wsbc{word-spacing:10.944000pt;}
.ws8c{word-spacing:11.040000pt;}
.ws48{word-spacing:11.146667pt;}
.ws8f{word-spacing:11.200000pt;}
.ws63{word-spacing:11.360000pt;}
.ws47{word-spacing:11.413333pt;}
.wsb4{word-spacing:11.424000pt;}
.wsa1{word-spacing:11.573333pt;}
.ws4a{word-spacing:11.733333pt;}
.ws87{word-spacing:11.946667pt;}
.ws5b{word-spacing:12.053333pt;}
.wsc4{word-spacing:12.096000pt;}
.ws45{word-spacing:12.160000pt;}
.ws15{word-spacing:12.192000pt;}
.ws79{word-spacing:12.213333pt;}
.wsba{word-spacing:12.288000pt;}
.ws78{word-spacing:12.373333pt;}
.wsb{word-spacing:12.394667pt;}
.ws1c{word-spacing:12.480000pt;}
.wsbf{word-spacing:12.720000pt;}
.ws8e{word-spacing:12.746667pt;}
.wsa4{word-spacing:12.800000pt;}
.ws60{word-spacing:13.066667pt;}
.ws8a{word-spacing:13.173333pt;}
.ws74{word-spacing:13.226667pt;}
.ws4c{word-spacing:13.333333pt;}
.ws4f{word-spacing:13.600000pt;}
.ws1d{word-spacing:13.728000pt;}
.wsb8{word-spacing:13.776000pt;}
.ws4e{word-spacing:13.813333pt;}
.ws69{word-spacing:13.866667pt;}
.wsbb{word-spacing:13.872000pt;}
.ws61{word-spacing:14.080000pt;}
.ws57{word-spacing:14.346667pt;}
.ws8d{word-spacing:14.453333pt;}
.ws56{word-spacing:14.560000pt;}
.ws82{word-spacing:14.613333pt;}
.ws6b{word-spacing:14.773333pt;}
.ws7e{word-spacing:14.826667pt;}
.wsbe{word-spacing:14.832000pt;}
.wsf{word-spacing:14.880000pt;}
.ws3f{word-spacing:14.933333pt;}
.ws46{word-spacing:15.040000pt;}
.ws7b{word-spacing:15.093333pt;}
.wsb9{word-spacing:15.360000pt;}
.ws28{word-spacing:15.520000pt;}
.ws52{word-spacing:15.893333pt;}
.ws97{word-spacing:16.112000pt;}
.ws7d{word-spacing:16.373333pt;}
.ws98{word-spacing:16.416000pt;}
.ws9e{word-spacing:16.426667pt;}
.ws68{word-spacing:16.533333pt;}
.ws13{word-spacing:16.896000pt;}
.ws12{word-spacing:17.136000pt;}
.ws17{word-spacing:17.184000pt;}
.ws5c{word-spacing:17.280000pt;}
.ws85{word-spacing:17.493333pt;}
.ws23{word-spacing:17.546667pt;}
.ws64{word-spacing:17.760000pt;}
.ws19{word-spacing:17.904000pt;}
.ws6a{word-spacing:18.240000pt;}
.ws5f{word-spacing:18.773333pt;}
.ws18{word-spacing:19.536000pt;}
.ws84{word-spacing:19.680000pt;}
.ws65{word-spacing:20.266667pt;}
.wsaa{word-spacing:25.706667pt;}
.ws66{word-spacing:29.066667pt;}
.ws93{word-spacing:150.973867pt;}
.ws92{word-spacing:267.795200pt;}
.ws90{word-spacing:299.155200pt;}
.ws9a{word-spacing:404.328533pt;}
.ws95{word-spacing:462.995200pt;}
.ws99{word-spacing:476.349867pt;}
.ws94{word-spacing:535.016533pt;}
._14{margin-left:-8.402146pt;}
._13{margin-left:-6.734946pt;}
._7{margin-left:-4.787200pt;}
._1{margin-left:-3.680000pt;}
._6{margin-left:-2.784000pt;}
._0{margin-left:-1.706654pt;}
._5{width:1.568000pt;}
._4{width:2.496000pt;}
._2{width:5.599987pt;}
._3{width:6.933320pt;}
._a{width:8.296000pt;}
._10{width:9.360000pt;}
._b{width:10.617067pt;}
._f{width:11.647961pt;}
._18{width:12.805828pt;}
._19{width:15.337574pt;}
._e{width:17.541294pt;}
._17{width:30.141854pt;}
._11{width:43.946667pt;}
._12{width:45.013333pt;}
._8{width:53.595694pt;}
._d{width:69.653333pt;}
._c{width:117.065041pt;}
._9{width:118.826133pt;}
._15{width:215.369067pt;}
._16{width:258.996800pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{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;}
.y5{bottom:59.133337pt;}
.y35{bottom:60.086668pt;}
.y34{bottom:74.753335pt;}
.y12c{bottom:75.269067pt;}
.y16f{bottom:75.434400pt;}
.yf0{bottom:75.934400pt;}
.y122{bottom:80.466667pt;}
.y4{bottom:86.333337pt;}
.y1af{bottom:88.734400pt;}
.y121{bottom:92.466667pt;}
.y12b{bottom:92.602400pt;}
.y66{bottom:92.613867pt;}
.y16e{bottom:92.767733pt;}
.yef{bottom:93.267733pt;}
.ybf{bottom:98.934400pt;}
.y65{bottom:103.280533pt;}
.y120{bottom:104.466667pt;}
.y1ae{bottom:107.934400pt;}
.y12a{bottom:109.935733pt;}
.y16d{bottom:110.101067pt;}
.yee{bottom:110.601067pt;}
.ybe{bottom:110.934400pt;}
.y64{bottom:113.947200pt;}
.y11f{bottom:116.466667pt;}
.y1ad{bottom:122.601067pt;}
.ybd{bottom:122.934400pt;}
.y21{bottom:123.790666pt;}
.y61{bottom:124.947200pt;}
.y129{bottom:127.269067pt;}
.y16c{bottom:127.434400pt;}
.yed{bottom:127.934400pt;}
.y11e{bottom:128.466667pt;}
.y62{bottom:134.613867pt;}
.ybc{bottom:134.934400pt;}
.y1ac{bottom:137.267733pt;}
.y11d{bottom:140.466667pt;}
.y16b{bottom:144.767733pt;}
.yec{bottom:145.267733pt;}
.ybb{bottom:146.934400pt;}
.y1ab{bottom:151.934400pt;}
.y11c{bottom:152.466667pt;}
.y128{bottom:153.935733pt;}
.yba{bottom:158.934400pt;}
.y16a{bottom:162.101067pt;}
.y11b{bottom:164.466667pt;}
.y1aa{bottom:166.601067pt;}
.yb9{bottom:170.934400pt;}
.y18{bottom:175.052000pt;}
.y11a{bottom:176.466667pt;}
.yeb{bottom:178.601067pt;}
.y169{bottom:179.434400pt;}
.y60{bottom:179.934400pt;}
.y1a9{bottom:181.267733pt;}
.yb8{bottom:182.934400pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y119{bottom:188.466667pt;}
.yb7{bottom:194.934400pt;}
.yea{bottom:195.934400pt;}
.y168{bottom:196.767733pt;}
.y5f{bottom:197.267733pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y118{bottom:200.466667pt;}
.yb6{bottom:206.934400pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1a8{bottom:210.601067pt;}
.y117{bottom:212.466667pt;}
.ye9{bottom:213.267733pt;}
.y167{bottom:214.101067pt;}
.y5e{bottom:214.601067pt;}
.yb5{bottom:218.934400pt;}
.y116{bottom:224.466667pt;}
.y1a7{bottom:225.267733pt;}
.ye8{bottom:230.601067pt;}
.yb4{bottom:230.934400pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y166{bottom:231.434400pt;}
.y5d{bottom:231.934400pt;}
.y115{bottom:236.466667pt;}
.y1a6{bottom:239.934400pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yb3{bottom:242.934400pt;}
.ye7{bottom:247.934400pt;}
.y114{bottom:248.466667pt;}
.y165{bottom:248.767733pt;}
.y5c{bottom:249.267733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1a5{bottom:254.601067pt;}
.yb2{bottom:254.934400pt;}
.y113{bottom:260.466667pt;}
.ye6{bottom:265.267733pt;}
.y164{bottom:266.101067pt;}
.y5b{bottom:266.601067pt;}
.yb1{bottom:266.934400pt;}
.y1a4{bottom:269.267733pt;}
.y112{bottom:272.466667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yb0{bottom:278.934400pt;}
.ye5{bottom:282.601067pt;}
.y163{bottom:283.434400pt;}
.y33{bottom:283.801334pt;}
.y5a{bottom:283.934400pt;}
.y111{bottom:284.466667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yaf{bottom:290.934400pt;}
.y110{bottom:296.466667pt;}
.y1a3{bottom:298.601067pt;}
.y162{bottom:300.767733pt;}
.y59{bottom:301.267733pt;}
.yae{bottom:302.934400pt;}
.y10f{bottom:308.466667pt;}
.yf{bottom:309.452000pt;}
.y1a2{bottom:313.267733pt;}
.yad{bottom:314.934400pt;}
.ye4{bottom:315.934400pt;}
.y161{bottom:318.101067pt;}
.y58{bottom:318.601067pt;}
.y10e{bottom:320.466667pt;}
.yac{bottom:326.934400pt;}
.y1a1{bottom:327.934400pt;}
.y10d{bottom:332.466667pt;}
.ye3{bottom:333.267733pt;}
.y160{bottom:335.434400pt;}
.y57{bottom:335.934400pt;}
.yab{bottom:338.934400pt;}
.y32{bottom:341.001334pt;}
.y1a0{bottom:342.601067pt;}
.ye{bottom:343.809333pt;}
.y10c{bottom:344.466667pt;}
.ye2{bottom:350.601067pt;}
.yaa{bottom:350.934400pt;}
.y15f{bottom:352.767733pt;}
.y56{bottom:353.267733pt;}
.y10b{bottom:356.466667pt;}
.y19f{bottom:357.267733pt;}
.yd{bottom:362.706666pt;}
.ya9{bottom:362.934400pt;}
.ye1{bottom:367.934400pt;}
.y10a{bottom:368.466667pt;}
.y15e{bottom:370.101067pt;}
.y55{bottom:370.601067pt;}
.y19e{bottom:371.934400pt;}
.ya8{bottom:374.934400pt;}
.y109{bottom:380.466667pt;}
.ye0{bottom:385.267733pt;}
.y19d{bottom:386.601067pt;}
.ya7{bottom:386.934400pt;}
.y15d{bottom:387.434400pt;}
.y54{bottom:387.934400pt;}
.y108{bottom:392.466667pt;}
.ya6{bottom:398.934400pt;}
.y31{bottom:400.806667pt;}
.y19c{bottom:401.267733pt;}
.ydf{bottom:402.601067pt;}
.y107{bottom:404.466667pt;}
.y15c{bottom:404.767733pt;}
.y53{bottom:405.267733pt;}
.ya5{bottom:410.934400pt;}
.y19b{bottom:415.934400pt;}
.y106{bottom:416.466667pt;}
.yde{bottom:419.934400pt;}
.y15b{bottom:422.101067pt;}
.y52{bottom:422.601067pt;}
.ya4{bottom:422.934400pt;}
.y105{bottom:428.466667pt;}
.y19a{bottom:430.601067pt;}
.ya3{bottom:434.934400pt;}
.ydd{bottom:437.267733pt;}
.y15a{bottom:439.434400pt;}
.y51{bottom:439.934400pt;}
.y104{bottom:440.466667pt;}
.y199{bottom:445.267733pt;}
.ya2{bottom:446.934400pt;}
.yc{bottom:446.990669pt;}
.y103{bottom:452.466667pt;}
.ydc{bottom:454.601067pt;}
.y30{bottom:455.401334pt;}
.y159{bottom:456.767733pt;}
.y152{bottom:456.800000pt;}
.y127{bottom:457.267733pt;}
.y198{bottom:459.934400pt;}
.yb{bottom:462.990669pt;}
.ya1{bottom:463.267733pt;}
.y102{bottom:464.466667pt;}
.y50{bottom:466.601067pt;}
.ydb{bottom:471.934400pt;}
.y151{bottom:473.466667pt;}
.y158{bottom:474.101067pt;}
.y126{bottom:474.601067pt;}
.y101{bottom:476.466667pt;}
.ya{bottom:478.990666pt;}
.ya0{bottom:479.267733pt;}
.y197{bottom:483.934400pt;}
.y100{bottom:488.466667pt;}
.yda{bottom:489.267733pt;}
.y150{bottom:489.466667pt;}
.y157{bottom:491.434400pt;}
.y125{bottom:491.934400pt;}
.y9{bottom:494.990666pt;}
.yff{bottom:500.466667pt;}
.y156{bottom:508.767733pt;}
.y124{bottom:509.267733pt;}
.yfe{bottom:512.466667pt;}
.y2f{bottom:515.206667pt;}
.yd9{bottom:515.934400pt;}
.yfd{bottom:523.800000pt;}
.y9f{bottom:525.434400pt;}
.y155{bottom:526.101067pt;}
.y123{bottom:526.601067pt;}
.y196{bottom:529.267733pt;}
.y9e{bottom:537.434400pt;}
.yfc{bottom:540.466667pt;}
.y154{bottom:543.434400pt;}
.y4f{bottom:543.934400pt;}
.y2e{bottom:545.740001pt;}
.y78{bottom:547.967733pt;}
.y14f{bottom:549.101067pt;}
.y9d{bottom:549.434400pt;}
.yfb{bottom:556.466667pt;}
.y4e{bottom:557.267733pt;}
.y195{bottom:558.601067pt;}
.y2d{bottom:559.073335pt;}
.y77{bottom:559.967733pt;}
.y153{bottom:560.767733pt;}
.y14e{bottom:561.101067pt;}
.yd8{bottom:561.267733pt;}
.y9c{bottom:561.434400pt;}
.y4d{bottom:570.601067pt;}
.y76{bottom:571.967733pt;}
.y2c{bottom:572.406667pt;}
.y14d{bottom:573.101067pt;}
.y194{bottom:573.267733pt;}
.y9b{bottom:573.434400pt;}
.y8{bottom:573.786667pt;}
.yd7{bottom:578.601067pt;}
.y4c{bottom:583.934400pt;}
.y75{bottom:583.967733pt;}
.y14c{bottom:585.101067pt;}
.y9a{bottom:585.434400pt;}
.y193{bottom:587.934400pt;}
.y7{bottom:592.685334pt;}
.yd6{bottom:595.934400pt;}
.y14b{bottom:597.101067pt;}
.y4b{bottom:597.267733pt;}
.y99{bottom:597.434400pt;}
.y74{bottom:608.634400pt;}
.y14a{bottom:609.101067pt;}
.y98{bottom:609.434400pt;}
.y4a{bottom:610.601067pt;}
.y192{bottom:611.934400pt;}
.yd5{bottom:613.267733pt;}
.y73{bottom:620.634400pt;}
.y18b{bottom:620.767733pt;}
.y149{bottom:621.101067pt;}
.y97{bottom:621.434400pt;}
.y49{bottom:623.934400pt;}
.yfa{bottom:627.934400pt;}
.yd4{bottom:630.601067pt;}
.y72{bottom:632.634400pt;}
.y18a{bottom:632.767733pt;}
.y148{bottom:633.101067pt;}
.y96{bottom:633.434400pt;}
.y48{bottom:637.267733pt;}
.y2b{bottom:644.726665pt;}
.y189{bottom:644.767733pt;}
.y147{bottom:645.101067pt;}
.yf9{bottom:645.267733pt;}
.y95{bottom:645.434400pt;}
.y6{bottom:645.598667pt;}
.yd3{bottom:647.934400pt;}
.y47{bottom:650.601067pt;}
.y71{bottom:656.201067pt;}
.y188{bottom:656.767733pt;}
.y146{bottom:657.101067pt;}
.y191{bottom:657.267733pt;}
.y94{bottom:657.434400pt;}
.yf8{bottom:662.601067pt;}
.y46{bottom:663.934400pt;}
.yd2{bottom:665.267733pt;}
.y70{bottom:668.201067pt;}
.y187{bottom:668.767733pt;}
.y3{bottom:668.977329pt;}
.y145{bottom:669.101067pt;}
.y93{bottom:669.434400pt;}
.y2a{bottom:671.393332pt;}
.y45{bottom:677.267733pt;}
.yf7{bottom:679.934400pt;}
.y6f{bottom:680.201067pt;}
.y186{bottom:680.767733pt;}
.y144{bottom:681.101067pt;}
.y190{bottom:681.267733pt;}
.y92{bottom:681.434400pt;}
.yd1{bottom:682.601067pt;}
.y29{bottom:687.393332pt;}
.y44{bottom:690.601067pt;}
.y6e{bottom:692.201067pt;}
.y185{bottom:692.767733pt;}
.y143{bottom:693.101067pt;}
.y91{bottom:693.434400pt;}
.yf6{bottom:697.267733pt;}
.yd0{bottom:699.934400pt;}
.y28{bottom:703.393332pt;}
.y43{bottom:703.934400pt;}
.y6d{bottom:704.201067pt;}
.y184{bottom:704.767733pt;}
.y142{bottom:705.101067pt;}
.y90{bottom:705.434400pt;}
.yf5{bottom:714.601067pt;}
.y6c{bottom:716.201067pt;}
.y183{bottom:716.767733pt;}
.y141{bottom:717.101067pt;}
.y42{bottom:717.267733pt;}
.y8f{bottom:717.434400pt;}
.y182{bottom:728.767733pt;}
.y140{bottom:729.101067pt;}
.y8e{bottom:729.434400pt;}
.y41{bottom:730.601067pt;}
.yf4{bottom:731.934400pt;}
.ycf{bottom:734.601067pt;}
.y6b{bottom:736.434400pt;}
.y181{bottom:740.767733pt;}
.y13f{bottom:741.101067pt;}
.y8d{bottom:741.434400pt;}
.y40{bottom:743.934400pt;}
.y18f{bottom:747.934400pt;}
.y6a{bottom:748.434400pt;}
.yf3{bottom:749.267733pt;}
.y27{bottom:750.034669pt;}
.yce{bottom:751.934400pt;}
.y180{bottom:752.767733pt;}
.y13e{bottom:753.101067pt;}
.y8c{bottom:753.434400pt;}
.y3f{bottom:757.267733pt;}
.y69{bottom:760.434400pt;}
.y17f{bottom:764.767733pt;}
.y13d{bottom:765.101067pt;}
.y8b{bottom:765.434400pt;}
.yf2{bottom:766.601067pt;}
.ycd{bottom:769.267733pt;}
.y3e{bottom:770.601067pt;}
.y68{bottom:772.434400pt;}
.y17e{bottom:776.767733pt;}
.y13c{bottom:777.101067pt;}
.y8a{bottom:777.434400pt;}
.y18e{bottom:781.267733pt;}
.y2{bottom:781.661334pt;}
.y3d{bottom:783.934400pt;}
.y67{bottom:784.434400pt;}
.ycc{bottom:786.601067pt;}
.y17d{bottom:788.767733pt;}
.y13b{bottom:789.101067pt;}
.y89{bottom:789.434400pt;}
.y18d{bottom:795.934400pt;}
.y17c{bottom:800.767733pt;}
.y13a{bottom:801.101067pt;}
.y88{bottom:801.434400pt;}
.ycb{bottom:803.934400pt;}
.y26{bottom:806.613333pt;}
.yf1{bottom:810.601067pt;}
.y17b{bottom:812.767733pt;}
.y139{bottom:813.101067pt;}
.y87{bottom:813.434400pt;}
.yca{bottom:821.267733pt;}
.y17a{bottom:824.767733pt;}
.y138{bottom:825.101067pt;}
.y18c{bottom:825.267733pt;}
.y86{bottom:825.434400pt;}
.y3c{bottom:825.601067pt;}
.y25{bottom:834.613333pt;}
.y179{bottom:836.767733pt;}
.y137{bottom:837.101067pt;}
.y85{bottom:837.434400pt;}
.yc9{bottom:838.601067pt;}
.y178{bottom:848.767733pt;}
.y136{bottom:849.101067pt;}
.y84{bottom:849.434400pt;}
.y3b{bottom:849.601067pt;}
.yc8{bottom:855.934400pt;}
.y1{bottom:859.312000pt;}
.y177{bottom:860.767733pt;}
.y135{bottom:861.101067pt;}
.y83{bottom:861.434400pt;}
.y24{bottom:862.613333pt;}
.y176{bottom:872.767733pt;}
.y134{bottom:873.101067pt;}
.yc7{bottom:873.267733pt;}
.y82{bottom:873.434400pt;}
.y3a{bottom:884.267733pt;}
.y175{bottom:884.767733pt;}
.y133{bottom:885.101067pt;}
.y81{bottom:885.434400pt;}
.yc6{bottom:890.601067pt;}
.y174{bottom:896.767733pt;}
.y132{bottom:897.101067pt;}
.y80{bottom:897.434400pt;}
.y39{bottom:905.601067pt;}
.yc5{bottom:907.934400pt;}
.y173{bottom:908.767733pt;}
.y131{bottom:909.101067pt;}
.y7f{bottom:909.434400pt;}
.y23{bottom:920.485335pt;}
.y172{bottom:920.767733pt;}
.y130{bottom:921.101067pt;}
.y7e{bottom:921.434400pt;}
.yc4{bottom:925.267733pt;}
.y36{bottom:931.121067pt;}
.y171{bottom:932.767733pt;}
.y12f{bottom:933.101067pt;}
.y7d{bottom:933.434400pt;}
.yc3{bottom:942.601067pt;}
.y170{bottom:944.767733pt;}
.y12e{bottom:945.101067pt;}
.y7c{bottom:945.434400pt;}
.yc2{bottom:959.934400pt;}
.y12d{bottom:961.101067pt;}
.y7b{bottom:961.767733pt;}
.y63{bottom:963.362000pt;}
.y38{bottom:975.473733pt;}
.yc1{bottom:977.267733pt;}
.y7a{bottom:977.767733pt;}
.y37{bottom:987.473733pt;}
.yc0{bottom:1014.433867pt;}
.y79{bottom:1014.500533pt;}
.y22{bottom:1035.664002pt;}
.h1a{height:26.693333pt;}
.h17{height:28.000000pt;}
.h7{height:28.560000pt;}
.h13{height:28.600000pt;}
.h1d{height:30.000000pt;}
.h1f{height:30.506667pt;}
.h1b{height:30.762667pt;}
.h1c{height:32.000000pt;}
.hb{height:32.645833pt;}
.h16{height:34.320000pt;}
.h18{height:36.000000pt;}
.h1e{height:36.226667pt;}
.hf{height:36.726562pt;}
.h12{height:40.000000pt;}
.h6{height:40.800000pt;}
.he{height:40.807292pt;}
.h15{height:42.000000pt;}
.h19{height:42.298667pt;}
.h3{height:42.840000pt;}
.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;}
.xe{left:109.333333pt;}
.xb{left:112.100000pt;}
.x10{left:120.000000pt;}
.x6{left:129.466667pt;}
.x5{left:170.560000pt;}
.x7{left:175.733333pt;}
.x4{left:180.874667pt;}
.x9{left:203.327991pt;}
.x14{left:207.034133pt;}
.x11{left:220.367467pt;}
.x1a{left:244.367467pt;}
.x1b{left:257.700800pt;}
.x16{left:259.034133pt;}
.x8{left:260.969328pt;}
.x17{left:272.367467pt;}
.x18{left:275.034133pt;}
.x15{left:294.058267pt;}
.x19{left:325.613200pt;}
.x3{left:404.408000pt;}
.x12{left:408.489867pt;}
.x13{left:421.823200pt;}
.xf{left:507.508000pt;}
.xd{left:576.800667pt;}
.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; }
  