
    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_37e28a7a9a4d67fb90d3b722.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_677bef717d8d8302958ad77d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_6a0ffc15066064496bd43733.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:22.500000px;}
.v1{vertical-align:31.500000px;}
.v2{vertical-align:84.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006000px;}
.ls8{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.933000px;}
.lsa{letter-spacing:1.494000px;}
.ls9{letter-spacing:1.500000px;}
.lsb{letter-spacing:1.506000px;}
.ls4{letter-spacing:1.512000px;}
.ls1{letter-spacing:1.518000px;}
.ls5{letter-spacing:2.970000px;}
.ls7{letter-spacing:24.024000px;}
.ls2{letter-spacing:29.988000px;}
.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;}
}
.ws83{word-spacing:-18.216000px;}
.ws2a{word-spacing:-17.922000px;}
.ws97{word-spacing:-17.688000px;}
.ws25{word-spacing:-17.640000px;}
.wsae{word-spacing:-17.598000px;}
.ws6b{word-spacing:-17.550000px;}
.ws91{word-spacing:-17.544000px;}
.ws35{word-spacing:-17.532000px;}
.wsa7{word-spacing:-17.490000px;}
.ws8c{word-spacing:-17.466000px;}
.ws47{word-spacing:-17.460000px;}
.ws28{word-spacing:-17.442000px;}
.ws60{word-spacing:-17.418000px;}
.wsa5{word-spacing:-17.394000px;}
.ws24{word-spacing:-17.346000px;}
.ws93{word-spacing:-17.310000px;}
.wsb2{word-spacing:-17.262000px;}
.ws8b{word-spacing:-17.190000px;}
.ws44{word-spacing:-17.160000px;}
.wse5{word-spacing:-17.118000px;}
.ws45{word-spacing:-17.106000px;}
.ws29{word-spacing:-17.082000px;}
.wsb3{word-spacing:-17.046000px;}
.ws46{word-spacing:-17.040000px;}
.ws1f{word-spacing:-16.998000px;}
.ws64{word-spacing:-16.986000px;}
.ws92{word-spacing:-16.962000px;}
.wsc8{word-spacing:-16.938000px;}
.wsc5{word-spacing:-16.914000px;}
.wsab{word-spacing:-16.902000px;}
.wsa3{word-spacing:-16.896000px;}
.wsc9{word-spacing:-16.884000px;}
.wsb6{word-spacing:-16.878000px;}
.ws8f{word-spacing:-16.830000px;}
.wsc3{word-spacing:-16.818000px;}
.ws95{word-spacing:-16.806000px;}
.ws88{word-spacing:-16.776000px;}
.ws96{word-spacing:-16.770000px;}
.ws9b{word-spacing:-16.704000px;}
.ws9c{word-spacing:-16.698000px;}
.ws20{word-spacing:-16.680000px;}
.wsb5{word-spacing:-16.668000px;}
.wsa9{word-spacing:-16.662000px;}
.ws5c{word-spacing:-16.656000px;}
.ws39{word-spacing:-16.632000px;}
.ws6e{word-spacing:-16.626000px;}
.ws5f{word-spacing:-16.608000px;}
.wsf9{word-spacing:-16.596000px;}
.ws30{word-spacing:-16.584000px;}
.ws66{word-spacing:-16.572000px;}
.ws90{word-spacing:-16.560000px;}
.wsb7{word-spacing:-16.548000px;}
.ws72{word-spacing:-16.524000px;}
.ws2b{word-spacing:-16.512000px;}
.ws1a{word-spacing:-16.500000px;}
.ws38{word-spacing:-16.470000px;}
.ws80{word-spacing:-16.464000px;}
.ws23{word-spacing:-16.458000px;}
.ws6d{word-spacing:-16.446000px;}
.ws1d{word-spacing:-16.428000px;}
.ws5e{word-spacing:-16.404000px;}
.wsf0{word-spacing:-16.380000px;}
.wsd3{word-spacing:-16.368000px;}
.wsa6{word-spacing:-16.362000px;}
.ws2f{word-spacing:-16.350000px;}
.ws6a{word-spacing:-16.338000px;}
.ws9a{word-spacing:-16.320000px;}
.ws71{word-spacing:-16.284000px;}
.wsad{word-spacing:-16.278000px;}
.wsa4{word-spacing:-16.224000px;}
.ws2e{word-spacing:-16.206000px;}
.wsb8{word-spacing:-16.194000px;}
.ws31{word-spacing:-16.176000px;}
.ws6c{word-spacing:-16.170000px;}
.ws32{word-spacing:-16.152000px;}
.ws22{word-spacing:-16.116000px;}
.wsfa{word-spacing:-16.092000px;}
.ws34{word-spacing:-16.050000px;}
.ws82{word-spacing:-16.032000px;}
.ws5d{word-spacing:-16.014000px;}
.ws2d{word-spacing:-16.002000px;}
.wsc4{word-spacing:-15.966000px;}
.wsb1{word-spacing:-15.960000px;}
.wsb0{word-spacing:-15.924000px;}
.wse6{word-spacing:-15.918000px;}
.ws94{word-spacing:-15.900000px;}
.ws36{word-spacing:-15.888000px;}
.ws33{word-spacing:-15.840000px;}
.wsf6{word-spacing:-15.780000px;}
.ws79{word-spacing:-15.774000px;}
.wsea{word-spacing:-15.714000px;}
.wsac{word-spacing:-15.702000px;}
.ws78{word-spacing:-15.696000px;}
.ws81{word-spacing:-15.690000px;}
.ws7b{word-spacing:-15.666000px;}
.wse0{word-spacing:-15.660000px;}
.wscc{word-spacing:-15.648000px;}
.wsd5{word-spacing:-15.636000px;}
.wsce{word-spacing:-15.594000px;}
.wsaf{word-spacing:-15.576000px;}
.wsca{word-spacing:-15.492000px;}
.wsf1{word-spacing:-15.474000px;}
.ws62{word-spacing:-15.468000px;}
.ws2c{word-spacing:-15.450000px;}
.ws7e{word-spacing:-15.444000px;}
.ws7c{word-spacing:-15.438000px;}
.wscd{word-spacing:-15.420000px;}
.wse7{word-spacing:-15.390000px;}
.wsd6{word-spacing:-15.384000px;}
.wsf4{word-spacing:-15.360000px;}
.ws99{word-spacing:-15.330000px;}
.ws7f{word-spacing:-15.318000px;}
.ws41{word-spacing:-15.300000px;}
.wscb{word-spacing:-15.276000px;}
.wsde{word-spacing:-15.198000px;}
.ws7d{word-spacing:-15.180000px;}
.wsf8{word-spacing:-15.120000px;}
.wse3{word-spacing:-15.108000px;}
.wsee{word-spacing:-15.078000px;}
.wsfc{word-spacing:-15.018000px;}
.ws42{word-spacing:-15.000000px;}
.ws4f{word-spacing:-14.988000px;}
.wsa8{word-spacing:-14.850000px;}
.ws75{word-spacing:-14.718000px;}
.ws4e{word-spacing:-14.700000px;}
.ws1c{word-spacing:-14.535000px;}
.wsdb{word-spacing:-14.436000px;}
.ws3d{word-spacing:-14.334000px;}
.wsec{word-spacing:-14.286000px;}
.ws0{word-spacing:-14.250000px;}
.ws7a{word-spacing:-14.202000px;}
.ws3c{word-spacing:-14.142000px;}
.wsd9{word-spacing:-14.100000px;}
.ws3a{word-spacing:-13.980000px;}
.wsb9{word-spacing:-13.932000px;}
.ws84{word-spacing:-13.656000px;}
.ws19{word-spacing:-13.524000px;}
.ws27{word-spacing:-13.500000px;}
.ws3b{word-spacing:-13.404000px;}
.wse4{word-spacing:-13.365000px;}
.ws74{word-spacing:-13.350000px;}
.wsba{word-spacing:-13.320000px;}
.ws85{word-spacing:-13.236000px;}
.ws9f{word-spacing:-13.032000px;}
.ws77{word-spacing:-12.960000px;}
.wsbb{word-spacing:-12.810000px;}
.wse1{word-spacing:-12.658500px;}
.wsef{word-spacing:-12.631500px;}
.ws76{word-spacing:-12.384000px;}
.wsdc{word-spacing:-12.370500px;}
.wsf5{word-spacing:-12.028500px;}
.wsf3{word-spacing:-11.992500px;}
.wse9{word-spacing:-11.965500px;}
.wsdf{word-spacing:-11.911500px;}
.wsf2{word-spacing:-11.727000px;}
.wsd4{word-spacing:-11.637000px;}
.wsda{word-spacing:-11.560500px;}
.ws26{word-spacing:-11.542500px;}
.wsdd{word-spacing:-11.443500px;}
.wse2{word-spacing:-11.394000px;}
.wsf7{word-spacing:-11.371500px;}
.wsed{word-spacing:-11.326500px;}
.wsfb{word-spacing:-11.317500px;}
.wsd0{word-spacing:-11.250000px;}
.wsfd{word-spacing:-11.187000px;}
.wsd8{word-spacing:-10.782000px;}
.wseb{word-spacing:-10.534500px;}
.wsd7{word-spacing:-10.215000px;}
.ws51{word-spacing:-9.000000px;}
.ws50{word-spacing:-3.252000px;}
.wsd{word-spacing:-2.088000px;}
.ws55{word-spacing:-1.752000px;}
.ws65{word-spacing:-1.212000px;}
.wsc6{word-spacing:-1.206000px;}
.ws4b{word-spacing:-1.170000px;}
.ws53{word-spacing:-0.930000px;}
.ws8{word-spacing:-0.876000px;}
.wsc2{word-spacing:-0.822000px;}
.ws8a{word-spacing:-0.780000px;}
.wsa1{word-spacing:-0.774000px;}
.wsa2{word-spacing:-0.738000px;}
.ws67{word-spacing:-0.690000px;}
.ws11{word-spacing:-0.660000px;}
.ws1e{word-spacing:-0.654000px;}
.ws89{word-spacing:-0.624000px;}
.ws9d{word-spacing:-0.612000px;}
.ws21{word-spacing:-0.570000px;}
.ws68{word-spacing:-0.552000px;}
.ws3e{word-spacing:-0.540000px;}
.ws1{word-spacing:0.000000px;}
.ws9e{word-spacing:0.546000px;}
.wsaa{word-spacing:0.570000px;}
.wsa0{word-spacing:0.672000px;}
.ws63{word-spacing:0.852000px;}
.ws56{word-spacing:0.858000px;}
.ws70{word-spacing:0.918000px;}
.ws14{word-spacing:1.056000px;}
.wscf{word-spacing:1.098000px;}
.ws18{word-spacing:1.110000px;}
.ws73{word-spacing:1.134000px;}
.ws40{word-spacing:1.188000px;}
.wsbe{word-spacing:1.248000px;}
.ws37{word-spacing:1.284000px;}
.wsb{word-spacing:1.308000px;}
.ws8d{word-spacing:1.314000px;}
.ws69{word-spacing:1.332000px;}
.ws6{word-spacing:1.338000px;}
.ws59{word-spacing:1.350000px;}
.wse8{word-spacing:1.404000px;}
.ws12{word-spacing:1.428000px;}
.ws61{word-spacing:1.452000px;}
.ws8e{word-spacing:1.494000px;}
.wsbf{word-spacing:1.500000px;}
.ws58{word-spacing:1.626000px;}
.wse{word-spacing:1.716000px;}
.ws17{word-spacing:1.728000px;}
.ws57{word-spacing:1.788000px;}
.wsb4{word-spacing:1.872000px;}
.wsc0{word-spacing:1.878000px;}
.ws6f{word-spacing:2.058000px;}
.ws48{word-spacing:2.130000px;}
.ws98{word-spacing:2.148000px;}
.ws9{word-spacing:2.262000px;}
.ws3{word-spacing:2.304000px;}
.ws10{word-spacing:2.490000px;}
.wsa{word-spacing:2.514000px;}
.wsd2{word-spacing:2.607000px;}
.ws5{word-spacing:2.790000px;}
.ws4{word-spacing:2.946000px;}
.wsc{word-spacing:3.402000px;}
.ws15{word-spacing:3.858000px;}
.wsd1{word-spacing:4.068000px;}
.ws52{word-spacing:4.146000px;}
.ws2{word-spacing:4.182000px;}
.ws7{word-spacing:4.368000px;}
.wsf{word-spacing:4.548000px;}
.ws13{word-spacing:5.898000px;}
.ws4d{word-spacing:7.956000px;}
.ws16{word-spacing:8.094000px;}
.ws4c{word-spacing:8.772000px;}
.ws4a{word-spacing:14.070000px;}
.ws49{word-spacing:15.366000px;}
.ws54{word-spacing:16.242000px;}
.ws43{word-spacing:30.012000px;}
.ws1b{word-spacing:35.706000px;}
.ws3f{word-spacing:60.006000px;}
.wsbc{word-spacing:104.688000px;}
.ws86{word-spacing:128.688000px;}
.ws87{word-spacing:296.664000px;}
.wsbd{word-spacing:299.676000px;}
.wsc1{word-spacing:631.494000px;}
.ws5b{word-spacing:709.638000px;}
.ws5a{word-spacing:736.830000px;}
.wsc7{word-spacing:784.494000px;}
._3e{margin-left:-9.696000px;}
._3f{margin-left:-8.592000px;}
._5{margin-left:-7.038000px;}
._2{margin-left:-5.988000px;}
._7{margin-left:-4.698000px;}
._1{margin-left:-2.970000px;}
._0{margin-left:-1.536000px;}
._3{width:1.560000px;}
._4{width:2.826000px;}
._9{width:3.852000px;}
._12{width:5.262000px;}
._10{width:12.120000px;}
._14{width:13.446000px;}
._c{width:15.084000px;}
._1e{width:16.824000px;}
._11{width:17.988000px;}
._d{width:19.470000px;}
._16{width:20.526000px;}
._6{width:25.176000px;}
._15{width:28.512000px;}
._f{width:47.016000px;}
._8{width:49.362000px;}
._13{width:73.512000px;}
._b{width:107.262000px;}
._40{width:144.060000px;}
._56{width:185.916000px;}
._17{width:187.272000px;}
._1f{width:189.060000px;}
._1c{width:211.356000px;}
._48{width:215.940000px;}
._47{width:217.452000px;}
._58{width:243.006000px;}
._1a{width:248.508000px;}
._e{width:253.992000px;}
._3c{width:258.018000px;}
._1d{width:261.090000px;}
._19{width:262.572000px;}
._53{width:265.446000px;}
._18{width:267.054000px;}
._45{width:273.012000px;}
._44{width:280.476000px;}
._22{width:288.018000px;}
._43{width:303.012000px;}
._52{width:304.512000px;}
._1b{width:308.718000px;}
._46{width:310.512000px;}
._55{width:335.928000px;}
._57{width:337.464000px;}
._21{width:343.518000px;}
._4b{width:346.512000px;}
._25{width:373.518000px;}
._42{width:376.512000px;}
._4e{width:377.940000px;}
._51{width:379.452000px;}
._54{width:396.000000px;}
._4d{width:409.440000px;}
._4a{width:421.470000px;}
._4c{width:451.470000px;}
._49{width:452.898000px;}
._3b{width:465.036000px;}
._5e{width:488.958000px;}
._5d{width:490.494000px;}
._4f{width:491.952000px;}
._5b{width:504.024000px;}
._20{width:508.482000px;}
._50{width:521.952000px;}
._5c{width:534.024000px;}
._30{width:538.464000px;}
._41{width:562.404000px;}
._2a{width:596.976000px;}
._5f{width:605.934000px;}
._62{width:613.458000px;}
._23{width:631.674000px;}
._35{width:643.458000px;}
._39{width:655.482000px;}
._61{width:656.988000px;}
._38{width:671.988000px;}
._27{width:682.476000px;}
._3a{width:688.440000px;}
._5a{width:691.548000px;}
._33{width:697.488000px;}
._3d{width:698.976000px;}
._36{width:703.458000px;}
._34{width:718.500000px;}
._37{width:727.494000px;}
._63{width:728.934000px;}
._29{width:730.500000px;}
._2b{width:736.494000px;}
._31{width:737.970000px;}
._2c{width:739.464000px;}
._24{width:742.488000px;}
._32{width:757.482000px;}
._2f{width:770.982000px;}
._26{width:779.982000px;}
._28{width:786.006000px;}
._59{width:787.476000px;}
._2d{width:796.464000px;}
._2e{width:808.488000px;}
._60{width:820.542000px;}
._a{width:1186.392000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:45.000000px;}
.fs6{font-size:46.170000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:67.188000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:48.375000px;}
.y108{bottom:54.000000px;}
.y26{bottom:54.375000px;}
.y173{bottom:54.750000px;}
.y49{bottom:55.125000px;}
.y88{bottom:55.500000px;}
.y102{bottom:56.250000px;}
.y147{bottom:57.000000px;}
.y7a{bottom:63.375000px;}
.y107{bottom:69.000000px;}
.y25{bottom:69.375000px;}
.y172{bottom:71.250000px;}
.y48{bottom:72.375000px;}
.y87{bottom:72.750000px;}
.y101{bottom:73.500000px;}
.y146{bottom:74.250000px;}
.y79{bottom:78.375000px;}
.y106{bottom:84.000000px;}
.y24{bottom:84.375000px;}
.y171{bottom:87.750000px;}
.y47{bottom:89.625000px;}
.y86{bottom:90.000000px;}
.y100{bottom:90.750000px;}
.y145{bottom:91.500000px;}
.y126{bottom:93.000000px;}
.y78{bottom:93.375000px;}
.y105{bottom:99.000000px;}
.yc3{bottom:99.375000px;}
.y170{bottom:104.250000px;}
.y46{bottom:106.875000px;}
.y85{bottom:107.250000px;}
.yff{bottom:108.000000px;}
.y77{bottom:108.375000px;}
.y144{bottom:108.750000px;}
.y125{bottom:113.250000px;}
.yc2{bottom:114.375000px;}
.y16f{bottom:120.750000px;}
.y76{bottom:123.375000px;}
.y45{bottom:124.125000px;}
.y84{bottom:124.500000px;}
.yfe{bottom:125.250000px;}
.y143{bottom:126.000000px;}
.yc1{bottom:129.375000px;}
.y124{bottom:133.500000px;}
.y16e{bottom:137.250000px;}
.y75{bottom:138.375000px;}
.y22{bottom:139.125000px;}
.y44{bottom:141.375000px;}
.y83{bottom:141.750000px;}
.yfd{bottom:142.500000px;}
.y142{bottom:143.250000px;}
.yc0{bottom:144.375000px;}
.y74{bottom:153.375000px;}
.y123{bottom:153.750000px;}
.y43{bottom:158.625000px;}
.y82{bottom:159.000000px;}
.ybf{bottom:159.375000px;}
.yfc{bottom:159.750000px;}
.y21{bottom:160.125000px;}
.y141{bottom:160.500000px;}
.y73{bottom:168.375000px;}
.yf9{bottom:169.500000px;}
.y16d{bottom:170.250000px;}
.y122{bottom:174.000000px;}
.ybe{bottom:174.375000px;}
.y20{bottom:175.125000px;}
.y42{bottom:175.875000px;}
.y81{bottom:176.250000px;}
.yfb{bottom:177.000000px;}
.y140{bottom:177.750000px;}
.y72{bottom:183.375000px;}
.yf8{bottom:186.750000px;}
.y1f{bottom:190.125000px;}
.y41{bottom:193.125000px;}
.y80{bottom:193.500000px;}
.yc6{bottom:194.250000px;}
.y13f{bottom:195.000000px;}
.y71{bottom:198.375000px;}
.y16c{bottom:203.250000px;}
.yf7{bottom:204.000000px;}
.y1e{bottom:205.125000px;}
.y40{bottom:210.375000px;}
.y7f{bottom:210.750000px;}
.yc5{bottom:211.500000px;}
.y13e{bottom:212.250000px;}
.y70{bottom:213.375000px;}
.y121{bottom:214.500000px;}
.y16b{bottom:219.750000px;}
.y1d{bottom:220.125000px;}
.yf6{bottom:221.250000px;}
.y3f{bottom:227.625000px;}
.y7e{bottom:228.000000px;}
.ybd{bottom:228.750000px;}
.y13d{bottom:229.500000px;}
.y120{bottom:234.750000px;}
.y1c{bottom:235.125000px;}
.y16a{bottom:236.250000px;}
.y3e{bottom:244.875000px;}
.y7d{bottom:245.250000px;}
.ybc{bottom:246.000000px;}
.y13c{bottom:246.750000px;}
.y169{bottom:252.750000px;}
.yf5{bottom:253.125000px;}
.y11f{bottom:255.000000px;}
.ye0{bottom:261.750000px;}
.y3d{bottom:262.125000px;}
.y7c{bottom:262.500000px;}
.y6f{bottom:263.250000px;}
.y13b{bottom:264.000000px;}
.y1b{bottom:265.125000px;}
.y168{bottom:269.250000px;}
.yf4{bottom:270.375000px;}
.y11e{bottom:275.250000px;}
.y3c{bottom:279.375000px;}
.yb6{bottom:279.750000px;}
.y6e{bottom:280.500000px;}
.y13a{bottom:281.250000px;}
.y167{bottom:285.750000px;}
.yf3{bottom:287.625000px;}
.y11d{bottom:295.500000px;}
.y3b{bottom:296.625000px;}
.yb5{bottom:297.000000px;}
.y6d{bottom:297.750000px;}
.y139{bottom:298.500000px;}
.ydf{bottom:299.625000px;}
.y1a{bottom:301.125000px;}
.y166{bottom:302.250000px;}
.yf2{bottom:304.875000px;}
.yc4{bottom:306.375000px;}
.y3a{bottom:313.875000px;}
.yb4{bottom:314.250000px;}
.y6c{bottom:315.000000px;}
.y11c{bottom:315.750000px;}
.y19{bottom:316.125000px;}
.ya0{bottom:318.750000px;}
.yde{bottom:319.125000px;}
.yf1{bottom:322.125000px;}
.y39{bottom:331.125000px;}
.yb3{bottom:331.500000px;}
.y6b{bottom:332.250000px;}
.y138{bottom:333.000000px;}
.y9f{bottom:334.500000px;}
.y165{bottom:335.250000px;}
.y11b{bottom:336.000000px;}
.y18{bottom:337.125000px;}
.ydd{bottom:338.250000px;}
.yf0{bottom:339.375000px;}
.y104{bottom:340.875000px;}
.y38{bottom:348.375000px;}
.yb2{bottom:348.750000px;}
.y6a{bottom:349.500000px;}
.y9e{bottom:350.250000px;}
.y164{bottom:351.750000px;}
.y17{bottom:352.125000px;}
.y11a{bottom:356.250000px;}
.yef{bottom:356.625000px;}
.ydc{bottom:357.375000px;}
.y37{bottom:365.625000px;}
.yb1{bottom:366.000000px;}
.y69{bottom:366.750000px;}
.y16{bottom:367.125000px;}
.y137{bottom:367.500000px;}
.y163{bottom:368.250000px;}
.yee{bottom:373.875000px;}
.ydb{bottom:376.500000px;}
.y9d{bottom:378.750000px;}
.y15{bottom:382.125000px;}
.y36{bottom:382.875000px;}
.yb0{bottom:383.250000px;}
.y68{bottom:384.000000px;}
.y136{bottom:384.750000px;}
.yed{bottom:391.125000px;}
.yda{bottom:395.625000px;}
.y119{bottom:396.750000px;}
.y14{bottom:397.125000px;}
.y35{bottom:400.125000px;}
.yaf{bottom:400.500000px;}
.y67{bottom:401.250000px;}
.y9c{bottom:401.625000px;}
.y135{bottom:402.000000px;}
.yec{bottom:408.375000px;}
.ybb{bottom:409.875000px;}
.y13{bottom:412.125000px;}
.yd9{bottom:414.750000px;}
.y118{bottom:417.000000px;}
.y34{bottom:417.375000px;}
.yae{bottom:417.750000px;}
.y66{bottom:418.500000px;}
.y134{bottom:419.250000px;}
.y12{bottom:427.125000px;}
.y9b{bottom:433.125000px;}
.yd8{bottom:433.875000px;}
.y162{bottom:434.250000px;}
.y33{bottom:434.625000px;}
.yad{bottom:435.000000px;}
.y65{bottom:435.750000px;}
.y133{bottom:436.500000px;}
.y117{bottom:437.250000px;}
.yeb{bottom:440.625000px;}
.y11{bottom:442.125000px;}
.y161{bottom:450.750000px;}
.y32{bottom:451.875000px;}
.yac{bottom:452.250000px;}
.y64{bottom:453.000000px;}
.y132{bottom:453.750000px;}
.y9a{bottom:456.375000px;}
.y10{bottom:457.125000px;}
.y116{bottom:457.500000px;}
.yea{bottom:457.875000px;}
.y127{bottom:460.875000px;}
.y160{bottom:467.250000px;}
.y31{bottom:469.125000px;}
.yab{bottom:469.500000px;}
.y63{bottom:470.250000px;}
.y131{bottom:471.000000px;}
.yf{bottom:472.125000px;}
.ye9{bottom:475.125000px;}
.y115{bottom:477.750000px;}
.y15f{bottom:483.750000px;}
.yaa{bottom:486.750000px;}
.ye{bottom:487.125000px;}
.y62{bottom:487.500000px;}
.y99{bottom:487.875000px;}
.y130{bottom:488.250000px;}
.yd7{bottom:491.250000px;}
.ye8{bottom:492.375000px;}
.y30{bottom:495.000000px;}
.y114{bottom:498.000000px;}
.y15e{bottom:500.250000px;}
.yd{bottom:502.125000px;}
.ya9{bottom:504.000000px;}
.y61{bottom:504.750000px;}
.y12f{bottom:505.500000px;}
.ye7{bottom:509.625000px;}
.yd6{bottom:510.375000px;}
.y98{bottom:510.750000px;}
.y15d{bottom:516.750000px;}
.yc{bottom:517.125000px;}
.y113{bottom:518.250000px;}
.ya8{bottom:521.250000px;}
.y60{bottom:522.000000px;}
.y97{bottom:526.500000px;}
.ye6{bottom:526.875000px;}
.yd5{bottom:529.500000px;}
.yb{bottom:532.125000px;}
.y15c{bottom:533.250000px;}
.y2f{bottom:538.125000px;}
.ya7{bottom:538.500000px;}
.y5f{bottom:539.250000px;}
.yfa{bottom:541.687500px;}
.y96{bottom:542.250000px;}
.ye5{bottom:544.125000px;}
.ya{bottom:547.125000px;}
.yd4{bottom:548.625000px;}
.y15b{bottom:549.750000px;}
.y2e{bottom:555.375000px;}
.ya6{bottom:555.750000px;}
.y5e{bottom:556.500000px;}
.y112{bottom:558.750000px;}
.y9{bottom:562.125000px;}
.y95{bottom:565.125000px;}
.y15a{bottom:566.250000px;}
.yd3{bottom:567.750000px;}
.y2d{bottom:572.625000px;}
.ya5{bottom:573.000000px;}
.y153{bottom:573.375000px;}
.y5d{bottom:573.750000px;}
.ye4{bottom:576.375000px;}
.y8{bottom:577.125000px;}
.y111{bottom:579.000000px;}
.y94{bottom:580.875000px;}
.y103{bottom:582.375000px;}
.y159{bottom:582.750000px;}
.yd2{bottom:587.250000px;}
.y2c{bottom:589.875000px;}
.ya4{bottom:590.250000px;}
.y5c{bottom:591.000000px;}
.y7{bottom:592.125000px;}
.ye3{bottom:593.625000px;}
.y110{bottom:599.250000px;}
.y93{bottom:604.125000px;}
.yd1{bottom:606.375000px;}
.y6{bottom:607.125000px;}
.ya3{bottom:607.500000px;}
.y5b{bottom:608.250000px;}
.ye2{bottom:610.875000px;}
.y152{bottom:613.875000px;}
.y158{bottom:615.750000px;}
.y10f{bottom:619.500000px;}
.y92{bottom:619.875000px;}
.y2b{bottom:624.375000px;}
.ya2{bottom:624.750000px;}
.y5a{bottom:625.500000px;}
.ye1{bottom:628.125000px;}
.y157{bottom:632.250000px;}
.y151{bottom:634.125000px;}
.y5{bottom:637.125000px;}
.y10e{bottom:639.750000px;}
.y2a{bottom:641.625000px;}
.ya1{bottom:642.000000px;}
.y59{bottom:642.750000px;}
.yd0{bottom:644.625000px;}
.y156{bottom:648.750000px;}
.y150{bottom:654.375000px;}
.y12e{bottom:655.500000px;}
.y91{bottom:658.500000px;}
.y29{bottom:658.875000px;}
.y58{bottom:660.000000px;}
.ycf{bottom:663.750000px;}
.y155{bottom:665.250000px;}
.y90{bottom:674.250000px;}
.y14f{bottom:674.625000px;}
.y12d{bottom:675.750000px;}
.y28{bottom:676.125000px;}
.y57{bottom:677.250000px;}
.y10d{bottom:680.250000px;}
.yce{bottom:682.875000px;}
.y154{bottom:690.375000px;}
.y27{bottom:693.375000px;}
.y56{bottom:694.500000px;}
.y14e{bottom:694.875000px;}
.y12c{bottom:696.000000px;}
.y8f{bottom:697.125000px;}
.y179{bottom:699.750000px;}
.y10c{bottom:700.500000px;}
.ycd{bottom:702.000000px;}
.yba{bottom:702.750000px;}
.y55{bottom:711.750000px;}
.y14d{bottom:715.125000px;}
.y12b{bottom:716.250000px;}
.y8e{bottom:720.000000px;}
.y4{bottom:720.375000px;}
.y10b{bottom:720.750000px;}
.ycc{bottom:721.125000px;}
.y54{bottom:729.000000px;}
.y178{bottom:732.750000px;}
.y14c{bottom:735.375000px;}
.y12a{bottom:736.500000px;}
.y3{bottom:739.125000px;}
.ycb{bottom:740.250000px;}
.y10a{bottom:741.000000px;}
.y8d{bottom:743.250000px;}
.y53{bottom:746.250000px;}
.y177{bottom:749.250000px;}
.y4d{bottom:753.000000px;}
.yb9{bottom:754.125000px;}
.y14b{bottom:755.625000px;}
.y129{bottom:756.750000px;}
.y8c{bottom:759.000000px;}
.yca{bottom:759.375000px;}
.y109{bottom:761.250000px;}
.y52{bottom:763.500000px;}
.y176{bottom:765.750000px;}
.y4b{bottom:768.000000px;}
.y4c{bottom:774.000000px;}
.y14a{bottom:775.875000px;}
.y128{bottom:777.000000px;}
.y51{bottom:780.750000px;}
.yc9{bottom:781.500000px;}
.y8b{bottom:781.875000px;}
.y175{bottom:782.250000px;}
.y2{bottom:784.125000px;}
.y4a{bottom:789.000000px;}
.y149{bottom:796.125000px;}
.yc8{bottom:797.250000px;}
.y8a{bottom:797.625000px;}
.y50{bottom:798.000000px;}
.y174{bottom:798.750000px;}
.yb8{bottom:803.250000px;}
.y1{bottom:808.125000px;}
.y4f{bottom:815.250000px;}
.y4e{bottom:815.625000px;}
.yb7{bottom:818.250000px;}
.y148{bottom:821.625000px;}
.yc7{bottom:822.750000px;}
.y89{bottom:823.875000px;}
.y23{bottom:862.125000px;}
.h7{height:51.216000px;}
.h4{height:57.618000px;}
.h8{height:58.536000px;}
.h5{height:60.819000px;}
.h6{height:61.788000px;}
.hc{height:64.020000px;}
.hf{height:65.040000px;}
.h3{height:70.422000px;}
.hb{height:71.544000px;}
.hd{height:71.763390px;}
.ha{height:72.548280px;}
.h1{height:102.432000px;}
.h2{height:103.189596px;}
.h9{height:144.819000px;}
.he{height:616.500000px;}
.h0{height:892.500000px;}
.w0{width:616.500000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:75.187500px;}
.x9{left:87.673500px;}
.x3{left:97.810500px;}
.x12{left:101.679000px;}
.x8{left:104.730000px;}
.xb{left:113.812500px;}
.x5{left:137.481000px;}
.x4{left:172.957500px;}
.x11{left:174.187500px;}
.x13{left:185.812500px;}
.xa{left:258.953400px;}
.xd{left:284.062500px;}
.x7{left:294.273000px;}
.x10{left:303.187500px;}
.x6{left:331.434000px;}
.x2{left:434.062500px;}
.xc{left:492.595500px;}
.xf{left:494.418000px;}
.xe{left:862.125000px;}
@media print{
.v4{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.000000pt;}
.v1{vertical-align:28.000000pt;}
.v2{vertical-align:74.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005333pt;}
.ls8{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.829333pt;}
.lsa{letter-spacing:1.328000pt;}
.ls9{letter-spacing:1.333333pt;}
.lsb{letter-spacing:1.338667pt;}
.ls4{letter-spacing:1.344000pt;}
.ls1{letter-spacing:1.349333pt;}
.ls5{letter-spacing:2.640000pt;}
.ls7{letter-spacing:21.354667pt;}
.ls2{letter-spacing:26.656000pt;}
.ws83{word-spacing:-16.192000pt;}
.ws2a{word-spacing:-15.930667pt;}
.ws97{word-spacing:-15.722667pt;}
.ws25{word-spacing:-15.680000pt;}
.wsae{word-spacing:-15.642667pt;}
.ws6b{word-spacing:-15.600000pt;}
.ws91{word-spacing:-15.594667pt;}
.ws35{word-spacing:-15.584000pt;}
.wsa7{word-spacing:-15.546667pt;}
.ws8c{word-spacing:-15.525333pt;}
.ws47{word-spacing:-15.520000pt;}
.ws28{word-spacing:-15.504000pt;}
.ws60{word-spacing:-15.482667pt;}
.wsa5{word-spacing:-15.461333pt;}
.ws24{word-spacing:-15.418667pt;}
.ws93{word-spacing:-15.386667pt;}
.wsb2{word-spacing:-15.344000pt;}
.ws8b{word-spacing:-15.280000pt;}
.ws44{word-spacing:-15.253333pt;}
.wse5{word-spacing:-15.216000pt;}
.ws45{word-spacing:-15.205333pt;}
.ws29{word-spacing:-15.184000pt;}
.wsb3{word-spacing:-15.152000pt;}
.ws46{word-spacing:-15.146667pt;}
.ws1f{word-spacing:-15.109333pt;}
.ws64{word-spacing:-15.098667pt;}
.ws92{word-spacing:-15.077333pt;}
.wsc8{word-spacing:-15.056000pt;}
.wsc5{word-spacing:-15.034667pt;}
.wsab{word-spacing:-15.024000pt;}
.wsa3{word-spacing:-15.018667pt;}
.wsc9{word-spacing:-15.008000pt;}
.wsb6{word-spacing:-15.002667pt;}
.ws8f{word-spacing:-14.960000pt;}
.wsc3{word-spacing:-14.949333pt;}
.ws95{word-spacing:-14.938667pt;}
.ws88{word-spacing:-14.912000pt;}
.ws96{word-spacing:-14.906667pt;}
.ws9b{word-spacing:-14.848000pt;}
.ws9c{word-spacing:-14.842667pt;}
.ws20{word-spacing:-14.826667pt;}
.wsb5{word-spacing:-14.816000pt;}
.wsa9{word-spacing:-14.810667pt;}
.ws5c{word-spacing:-14.805333pt;}
.ws39{word-spacing:-14.784000pt;}
.ws6e{word-spacing:-14.778667pt;}
.ws5f{word-spacing:-14.762667pt;}
.wsf9{word-spacing:-14.752000pt;}
.ws30{word-spacing:-14.741333pt;}
.ws66{word-spacing:-14.730667pt;}
.ws90{word-spacing:-14.720000pt;}
.wsb7{word-spacing:-14.709333pt;}
.ws72{word-spacing:-14.688000pt;}
.ws2b{word-spacing:-14.677333pt;}
.ws1a{word-spacing:-14.666667pt;}
.ws38{word-spacing:-14.640000pt;}
.ws80{word-spacing:-14.634667pt;}
.ws23{word-spacing:-14.629333pt;}
.ws6d{word-spacing:-14.618667pt;}
.ws1d{word-spacing:-14.602667pt;}
.ws5e{word-spacing:-14.581333pt;}
.wsf0{word-spacing:-14.560000pt;}
.wsd3{word-spacing:-14.549333pt;}
.wsa6{word-spacing:-14.544000pt;}
.ws2f{word-spacing:-14.533333pt;}
.ws6a{word-spacing:-14.522667pt;}
.ws9a{word-spacing:-14.506667pt;}
.ws71{word-spacing:-14.474667pt;}
.wsad{word-spacing:-14.469333pt;}
.wsa4{word-spacing:-14.421333pt;}
.ws2e{word-spacing:-14.405333pt;}
.wsb8{word-spacing:-14.394667pt;}
.ws31{word-spacing:-14.378667pt;}
.ws6c{word-spacing:-14.373333pt;}
.ws32{word-spacing:-14.357333pt;}
.ws22{word-spacing:-14.325333pt;}
.wsfa{word-spacing:-14.304000pt;}
.ws34{word-spacing:-14.266667pt;}
.ws82{word-spacing:-14.250667pt;}
.ws5d{word-spacing:-14.234667pt;}
.ws2d{word-spacing:-14.224000pt;}
.wsc4{word-spacing:-14.192000pt;}
.wsb1{word-spacing:-14.186667pt;}
.wsb0{word-spacing:-14.154667pt;}
.wse6{word-spacing:-14.149333pt;}
.ws94{word-spacing:-14.133333pt;}
.ws36{word-spacing:-14.122667pt;}
.ws33{word-spacing:-14.080000pt;}
.wsf6{word-spacing:-14.026667pt;}
.ws79{word-spacing:-14.021333pt;}
.wsea{word-spacing:-13.968000pt;}
.wsac{word-spacing:-13.957333pt;}
.ws78{word-spacing:-13.952000pt;}
.ws81{word-spacing:-13.946667pt;}
.ws7b{word-spacing:-13.925333pt;}
.wse0{word-spacing:-13.920000pt;}
.wscc{word-spacing:-13.909333pt;}
.wsd5{word-spacing:-13.898667pt;}
.wsce{word-spacing:-13.861333pt;}
.wsaf{word-spacing:-13.845333pt;}
.wsca{word-spacing:-13.770667pt;}
.wsf1{word-spacing:-13.754667pt;}
.ws62{word-spacing:-13.749333pt;}
.ws2c{word-spacing:-13.733333pt;}
.ws7e{word-spacing:-13.728000pt;}
.ws7c{word-spacing:-13.722667pt;}
.wscd{word-spacing:-13.706667pt;}
.wse7{word-spacing:-13.680000pt;}
.wsd6{word-spacing:-13.674667pt;}
.wsf4{word-spacing:-13.653333pt;}
.ws99{word-spacing:-13.626667pt;}
.ws7f{word-spacing:-13.616000pt;}
.ws41{word-spacing:-13.600000pt;}
.wscb{word-spacing:-13.578667pt;}
.wsde{word-spacing:-13.509333pt;}
.ws7d{word-spacing:-13.493333pt;}
.wsf8{word-spacing:-13.440000pt;}
.wse3{word-spacing:-13.429333pt;}
.wsee{word-spacing:-13.402667pt;}
.wsfc{word-spacing:-13.349333pt;}
.ws42{word-spacing:-13.333333pt;}
.ws4f{word-spacing:-13.322667pt;}
.wsa8{word-spacing:-13.200000pt;}
.ws75{word-spacing:-13.082667pt;}
.ws4e{word-spacing:-13.066667pt;}
.ws1c{word-spacing:-12.920000pt;}
.wsdb{word-spacing:-12.832000pt;}
.ws3d{word-spacing:-12.741333pt;}
.wsec{word-spacing:-12.698667pt;}
.ws0{word-spacing:-12.666667pt;}
.ws7a{word-spacing:-12.624000pt;}
.ws3c{word-spacing:-12.570667pt;}
.wsd9{word-spacing:-12.533333pt;}
.ws3a{word-spacing:-12.426667pt;}
.wsb9{word-spacing:-12.384000pt;}
.ws84{word-spacing:-12.138667pt;}
.ws19{word-spacing:-12.021333pt;}
.ws27{word-spacing:-12.000000pt;}
.ws3b{word-spacing:-11.914667pt;}
.wse4{word-spacing:-11.880000pt;}
.ws74{word-spacing:-11.866667pt;}
.wsba{word-spacing:-11.840000pt;}
.ws85{word-spacing:-11.765333pt;}
.ws9f{word-spacing:-11.584000pt;}
.ws77{word-spacing:-11.520000pt;}
.wsbb{word-spacing:-11.386667pt;}
.wse1{word-spacing:-11.252000pt;}
.wsef{word-spacing:-11.228000pt;}
.ws76{word-spacing:-11.008000pt;}
.wsdc{word-spacing:-10.996000pt;}
.wsf5{word-spacing:-10.692000pt;}
.wsf3{word-spacing:-10.660000pt;}
.wse9{word-spacing:-10.636000pt;}
.wsdf{word-spacing:-10.588000pt;}
.wsf2{word-spacing:-10.424000pt;}
.wsd4{word-spacing:-10.344000pt;}
.wsda{word-spacing:-10.276000pt;}
.ws26{word-spacing:-10.260000pt;}
.wsdd{word-spacing:-10.172000pt;}
.wse2{word-spacing:-10.128000pt;}
.wsf7{word-spacing:-10.108000pt;}
.wsed{word-spacing:-10.068000pt;}
.wsfb{word-spacing:-10.060000pt;}
.wsd0{word-spacing:-10.000000pt;}
.wsfd{word-spacing:-9.944000pt;}
.wsd8{word-spacing:-9.584000pt;}
.wseb{word-spacing:-9.364000pt;}
.wsd7{word-spacing:-9.080000pt;}
.ws51{word-spacing:-8.000000pt;}
.ws50{word-spacing:-2.890667pt;}
.wsd{word-spacing:-1.856000pt;}
.ws55{word-spacing:-1.557333pt;}
.ws65{word-spacing:-1.077333pt;}
.wsc6{word-spacing:-1.072000pt;}
.ws4b{word-spacing:-1.040000pt;}
.ws53{word-spacing:-0.826667pt;}
.ws8{word-spacing:-0.778667pt;}
.wsc2{word-spacing:-0.730667pt;}
.ws8a{word-spacing:-0.693333pt;}
.wsa1{word-spacing:-0.688000pt;}
.wsa2{word-spacing:-0.656000pt;}
.ws67{word-spacing:-0.613333pt;}
.ws11{word-spacing:-0.586667pt;}
.ws1e{word-spacing:-0.581333pt;}
.ws89{word-spacing:-0.554667pt;}
.ws9d{word-spacing:-0.544000pt;}
.ws21{word-spacing:-0.506667pt;}
.ws68{word-spacing:-0.490667pt;}
.ws3e{word-spacing:-0.480000pt;}
.ws1{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.485333pt;}
.wsaa{word-spacing:0.506667pt;}
.wsa0{word-spacing:0.597333pt;}
.ws63{word-spacing:0.757333pt;}
.ws56{word-spacing:0.762667pt;}
.ws70{word-spacing:0.816000pt;}
.ws14{word-spacing:0.938667pt;}
.wscf{word-spacing:0.976000pt;}
.ws18{word-spacing:0.986667pt;}
.ws73{word-spacing:1.008000pt;}
.ws40{word-spacing:1.056000pt;}
.wsbe{word-spacing:1.109333pt;}
.ws37{word-spacing:1.141333pt;}
.wsb{word-spacing:1.162667pt;}
.ws8d{word-spacing:1.168000pt;}
.ws69{word-spacing:1.184000pt;}
.ws6{word-spacing:1.189333pt;}
.ws59{word-spacing:1.200000pt;}
.wse8{word-spacing:1.248000pt;}
.ws12{word-spacing:1.269333pt;}
.ws61{word-spacing:1.290667pt;}
.ws8e{word-spacing:1.328000pt;}
.wsbf{word-spacing:1.333333pt;}
.ws58{word-spacing:1.445333pt;}
.wse{word-spacing:1.525333pt;}
.ws17{word-spacing:1.536000pt;}
.ws57{word-spacing:1.589333pt;}
.wsb4{word-spacing:1.664000pt;}
.wsc0{word-spacing:1.669333pt;}
.ws6f{word-spacing:1.829333pt;}
.ws48{word-spacing:1.893333pt;}
.ws98{word-spacing:1.909333pt;}
.ws9{word-spacing:2.010667pt;}
.ws3{word-spacing:2.048000pt;}
.ws10{word-spacing:2.213333pt;}
.wsa{word-spacing:2.234667pt;}
.wsd2{word-spacing:2.317333pt;}
.ws5{word-spacing:2.480000pt;}
.ws4{word-spacing:2.618667pt;}
.wsc{word-spacing:3.024000pt;}
.ws15{word-spacing:3.429333pt;}
.wsd1{word-spacing:3.616000pt;}
.ws52{word-spacing:3.685333pt;}
.ws2{word-spacing:3.717333pt;}
.ws7{word-spacing:3.882667pt;}
.wsf{word-spacing:4.042667pt;}
.ws13{word-spacing:5.242667pt;}
.ws4d{word-spacing:7.072000pt;}
.ws16{word-spacing:7.194667pt;}
.ws4c{word-spacing:7.797333pt;}
.ws4a{word-spacing:12.506667pt;}
.ws49{word-spacing:13.658667pt;}
.ws54{word-spacing:14.437333pt;}
.ws43{word-spacing:26.677333pt;}
.ws1b{word-spacing:31.738667pt;}
.ws3f{word-spacing:53.338667pt;}
.wsbc{word-spacing:93.056000pt;}
.ws86{word-spacing:114.389333pt;}
.ws87{word-spacing:263.701333pt;}
.wsbd{word-spacing:266.378667pt;}
.wsc1{word-spacing:561.328000pt;}
.ws5b{word-spacing:630.789333pt;}
.ws5a{word-spacing:654.960000pt;}
.wsc7{word-spacing:697.328000pt;}
._3e{margin-left:-8.618667pt;}
._3f{margin-left:-7.637333pt;}
._5{margin-left:-6.256000pt;}
._2{margin-left:-5.322667pt;}
._7{margin-left:-4.176000pt;}
._1{margin-left:-2.640000pt;}
._0{margin-left:-1.365333pt;}
._3{width:1.386667pt;}
._4{width:2.512000pt;}
._9{width:3.424000pt;}
._12{width:4.677333pt;}
._10{width:10.773333pt;}
._14{width:11.952000pt;}
._c{width:13.408000pt;}
._1e{width:14.954667pt;}
._11{width:15.989333pt;}
._d{width:17.306667pt;}
._16{width:18.245333pt;}
._6{width:22.378667pt;}
._15{width:25.344000pt;}
._f{width:41.792000pt;}
._8{width:43.877333pt;}
._13{width:65.344000pt;}
._b{width:95.344000pt;}
._40{width:128.053333pt;}
._56{width:165.258667pt;}
._17{width:166.464000pt;}
._1f{width:168.053333pt;}
._1c{width:187.872000pt;}
._48{width:191.946667pt;}
._47{width:193.290667pt;}
._58{width:216.005333pt;}
._1a{width:220.896000pt;}
._e{width:225.770667pt;}
._3c{width:229.349333pt;}
._1d{width:232.080000pt;}
._19{width:233.397333pt;}
._53{width:235.952000pt;}
._18{width:237.381333pt;}
._45{width:242.677333pt;}
._44{width:249.312000pt;}
._22{width:256.016000pt;}
._43{width:269.344000pt;}
._52{width:270.677333pt;}
._1b{width:274.416000pt;}
._46{width:276.010667pt;}
._55{width:298.602667pt;}
._57{width:299.968000pt;}
._21{width:305.349333pt;}
._4b{width:308.010667pt;}
._25{width:332.016000pt;}
._42{width:334.677333pt;}
._4e{width:335.946667pt;}
._51{width:337.290667pt;}
._54{width:352.000000pt;}
._4d{width:363.946667pt;}
._4a{width:374.640000pt;}
._4c{width:401.306667pt;}
._49{width:402.576000pt;}
._3b{width:413.365333pt;}
._5e{width:434.629333pt;}
._5d{width:435.994667pt;}
._4f{width:437.290667pt;}
._5b{width:448.021333pt;}
._20{width:451.984000pt;}
._50{width:463.957333pt;}
._5c{width:474.688000pt;}
._30{width:478.634667pt;}
._41{width:499.914667pt;}
._2a{width:530.645333pt;}
._5f{width:538.608000pt;}
._62{width:545.296000pt;}
._23{width:561.488000pt;}
._35{width:571.962667pt;}
._39{width:582.650667pt;}
._61{width:583.989333pt;}
._38{width:597.322667pt;}
._27{width:606.645333pt;}
._3a{width:611.946667pt;}
._5a{width:614.709333pt;}
._33{width:619.989333pt;}
._3d{width:621.312000pt;}
._36{width:625.296000pt;}
._34{width:638.666667pt;}
._37{width:646.661333pt;}
._63{width:647.941333pt;}
._29{width:649.333333pt;}
._2b{width:654.661333pt;}
._31{width:655.973333pt;}
._2c{width:657.301333pt;}
._24{width:659.989333pt;}
._32{width:673.317333pt;}
._2f{width:685.317333pt;}
._26{width:693.317333pt;}
._28{width:698.672000pt;}
._59{width:699.978667pt;}
._2d{width:707.968000pt;}
._2e{width:718.656000pt;}
._60{width:729.370667pt;}
._a{width:1054.570667pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:41.040000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:59.722667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:43.000000pt;}
.y108{bottom:48.000000pt;}
.y26{bottom:48.333333pt;}
.y173{bottom:48.666667pt;}
.y49{bottom:49.000000pt;}
.y88{bottom:49.333333pt;}
.y102{bottom:50.000000pt;}
.y147{bottom:50.666667pt;}
.y7a{bottom:56.333333pt;}
.y107{bottom:61.333333pt;}
.y25{bottom:61.666667pt;}
.y172{bottom:63.333333pt;}
.y48{bottom:64.333333pt;}
.y87{bottom:64.666667pt;}
.y101{bottom:65.333333pt;}
.y146{bottom:66.000000pt;}
.y79{bottom:69.666667pt;}
.y106{bottom:74.666667pt;}
.y24{bottom:75.000000pt;}
.y171{bottom:78.000000pt;}
.y47{bottom:79.666667pt;}
.y86{bottom:80.000000pt;}
.y100{bottom:80.666667pt;}
.y145{bottom:81.333333pt;}
.y126{bottom:82.666667pt;}
.y78{bottom:83.000000pt;}
.y105{bottom:88.000000pt;}
.yc3{bottom:88.333333pt;}
.y170{bottom:92.666667pt;}
.y46{bottom:95.000000pt;}
.y85{bottom:95.333333pt;}
.yff{bottom:96.000000pt;}
.y77{bottom:96.333333pt;}
.y144{bottom:96.666667pt;}
.y125{bottom:100.666667pt;}
.yc2{bottom:101.666667pt;}
.y16f{bottom:107.333333pt;}
.y76{bottom:109.666667pt;}
.y45{bottom:110.333333pt;}
.y84{bottom:110.666667pt;}
.yfe{bottom:111.333333pt;}
.y143{bottom:112.000000pt;}
.yc1{bottom:115.000000pt;}
.y124{bottom:118.666667pt;}
.y16e{bottom:122.000000pt;}
.y75{bottom:123.000000pt;}
.y22{bottom:123.666667pt;}
.y44{bottom:125.666667pt;}
.y83{bottom:126.000000pt;}
.yfd{bottom:126.666667pt;}
.y142{bottom:127.333333pt;}
.yc0{bottom:128.333333pt;}
.y74{bottom:136.333333pt;}
.y123{bottom:136.666667pt;}
.y43{bottom:141.000000pt;}
.y82{bottom:141.333333pt;}
.ybf{bottom:141.666667pt;}
.yfc{bottom:142.000000pt;}
.y21{bottom:142.333333pt;}
.y141{bottom:142.666667pt;}
.y73{bottom:149.666667pt;}
.yf9{bottom:150.666667pt;}
.y16d{bottom:151.333333pt;}
.y122{bottom:154.666667pt;}
.ybe{bottom:155.000000pt;}
.y20{bottom:155.666667pt;}
.y42{bottom:156.333333pt;}
.y81{bottom:156.666667pt;}
.yfb{bottom:157.333333pt;}
.y140{bottom:158.000000pt;}
.y72{bottom:163.000000pt;}
.yf8{bottom:166.000000pt;}
.y1f{bottom:169.000000pt;}
.y41{bottom:171.666667pt;}
.y80{bottom:172.000000pt;}
.yc6{bottom:172.666667pt;}
.y13f{bottom:173.333333pt;}
.y71{bottom:176.333333pt;}
.y16c{bottom:180.666667pt;}
.yf7{bottom:181.333333pt;}
.y1e{bottom:182.333333pt;}
.y40{bottom:187.000000pt;}
.y7f{bottom:187.333333pt;}
.yc5{bottom:188.000000pt;}
.y13e{bottom:188.666667pt;}
.y70{bottom:189.666667pt;}
.y121{bottom:190.666667pt;}
.y16b{bottom:195.333333pt;}
.y1d{bottom:195.666667pt;}
.yf6{bottom:196.666667pt;}
.y3f{bottom:202.333333pt;}
.y7e{bottom:202.666667pt;}
.ybd{bottom:203.333333pt;}
.y13d{bottom:204.000000pt;}
.y120{bottom:208.666667pt;}
.y1c{bottom:209.000000pt;}
.y16a{bottom:210.000000pt;}
.y3e{bottom:217.666667pt;}
.y7d{bottom:218.000000pt;}
.ybc{bottom:218.666667pt;}
.y13c{bottom:219.333333pt;}
.y169{bottom:224.666667pt;}
.yf5{bottom:225.000000pt;}
.y11f{bottom:226.666667pt;}
.ye0{bottom:232.666667pt;}
.y3d{bottom:233.000000pt;}
.y7c{bottom:233.333333pt;}
.y6f{bottom:234.000000pt;}
.y13b{bottom:234.666667pt;}
.y1b{bottom:235.666667pt;}
.y168{bottom:239.333333pt;}
.yf4{bottom:240.333333pt;}
.y11e{bottom:244.666667pt;}
.y3c{bottom:248.333333pt;}
.yb6{bottom:248.666667pt;}
.y6e{bottom:249.333333pt;}
.y13a{bottom:250.000000pt;}
.y167{bottom:254.000000pt;}
.yf3{bottom:255.666667pt;}
.y11d{bottom:262.666667pt;}
.y3b{bottom:263.666667pt;}
.yb5{bottom:264.000000pt;}
.y6d{bottom:264.666667pt;}
.y139{bottom:265.333333pt;}
.ydf{bottom:266.333333pt;}
.y1a{bottom:267.666667pt;}
.y166{bottom:268.666667pt;}
.yf2{bottom:271.000000pt;}
.yc4{bottom:272.333333pt;}
.y3a{bottom:279.000000pt;}
.yb4{bottom:279.333333pt;}
.y6c{bottom:280.000000pt;}
.y11c{bottom:280.666667pt;}
.y19{bottom:281.000000pt;}
.ya0{bottom:283.333333pt;}
.yde{bottom:283.666667pt;}
.yf1{bottom:286.333333pt;}
.y39{bottom:294.333333pt;}
.yb3{bottom:294.666667pt;}
.y6b{bottom:295.333333pt;}
.y138{bottom:296.000000pt;}
.y9f{bottom:297.333333pt;}
.y165{bottom:298.000000pt;}
.y11b{bottom:298.666667pt;}
.y18{bottom:299.666667pt;}
.ydd{bottom:300.666667pt;}
.yf0{bottom:301.666667pt;}
.y104{bottom:303.000000pt;}
.y38{bottom:309.666667pt;}
.yb2{bottom:310.000000pt;}
.y6a{bottom:310.666667pt;}
.y9e{bottom:311.333333pt;}
.y164{bottom:312.666667pt;}
.y17{bottom:313.000000pt;}
.y11a{bottom:316.666667pt;}
.yef{bottom:317.000000pt;}
.ydc{bottom:317.666667pt;}
.y37{bottom:325.000000pt;}
.yb1{bottom:325.333333pt;}
.y69{bottom:326.000000pt;}
.y16{bottom:326.333333pt;}
.y137{bottom:326.666667pt;}
.y163{bottom:327.333333pt;}
.yee{bottom:332.333333pt;}
.ydb{bottom:334.666667pt;}
.y9d{bottom:336.666667pt;}
.y15{bottom:339.666667pt;}
.y36{bottom:340.333333pt;}
.yb0{bottom:340.666667pt;}
.y68{bottom:341.333333pt;}
.y136{bottom:342.000000pt;}
.yed{bottom:347.666667pt;}
.yda{bottom:351.666667pt;}
.y119{bottom:352.666667pt;}
.y14{bottom:353.000000pt;}
.y35{bottom:355.666667pt;}
.yaf{bottom:356.000000pt;}
.y67{bottom:356.666667pt;}
.y9c{bottom:357.000000pt;}
.y135{bottom:357.333333pt;}
.yec{bottom:363.000000pt;}
.ybb{bottom:364.333333pt;}
.y13{bottom:366.333333pt;}
.yd9{bottom:368.666667pt;}
.y118{bottom:370.666667pt;}
.y34{bottom:371.000000pt;}
.yae{bottom:371.333333pt;}
.y66{bottom:372.000000pt;}
.y134{bottom:372.666667pt;}
.y12{bottom:379.666667pt;}
.y9b{bottom:385.000000pt;}
.yd8{bottom:385.666667pt;}
.y162{bottom:386.000000pt;}
.y33{bottom:386.333333pt;}
.yad{bottom:386.666667pt;}
.y65{bottom:387.333333pt;}
.y133{bottom:388.000000pt;}
.y117{bottom:388.666667pt;}
.yeb{bottom:391.666667pt;}
.y11{bottom:393.000000pt;}
.y161{bottom:400.666667pt;}
.y32{bottom:401.666667pt;}
.yac{bottom:402.000000pt;}
.y64{bottom:402.666667pt;}
.y132{bottom:403.333333pt;}
.y9a{bottom:405.666667pt;}
.y10{bottom:406.333333pt;}
.y116{bottom:406.666667pt;}
.yea{bottom:407.000000pt;}
.y127{bottom:409.666667pt;}
.y160{bottom:415.333333pt;}
.y31{bottom:417.000000pt;}
.yab{bottom:417.333333pt;}
.y63{bottom:418.000000pt;}
.y131{bottom:418.666667pt;}
.yf{bottom:419.666667pt;}
.ye9{bottom:422.333333pt;}
.y115{bottom:424.666667pt;}
.y15f{bottom:430.000000pt;}
.yaa{bottom:432.666667pt;}
.ye{bottom:433.000000pt;}
.y62{bottom:433.333333pt;}
.y99{bottom:433.666667pt;}
.y130{bottom:434.000000pt;}
.yd7{bottom:436.666667pt;}
.ye8{bottom:437.666667pt;}
.y30{bottom:440.000000pt;}
.y114{bottom:442.666667pt;}
.y15e{bottom:444.666667pt;}
.yd{bottom:446.333333pt;}
.ya9{bottom:448.000000pt;}
.y61{bottom:448.666667pt;}
.y12f{bottom:449.333333pt;}
.ye7{bottom:453.000000pt;}
.yd6{bottom:453.666667pt;}
.y98{bottom:454.000000pt;}
.y15d{bottom:459.333333pt;}
.yc{bottom:459.666667pt;}
.y113{bottom:460.666667pt;}
.ya8{bottom:463.333333pt;}
.y60{bottom:464.000000pt;}
.y97{bottom:468.000000pt;}
.ye6{bottom:468.333333pt;}
.yd5{bottom:470.666667pt;}
.yb{bottom:473.000000pt;}
.y15c{bottom:474.000000pt;}
.y2f{bottom:478.333333pt;}
.ya7{bottom:478.666667pt;}
.y5f{bottom:479.333333pt;}
.yfa{bottom:481.500000pt;}
.y96{bottom:482.000000pt;}
.ye5{bottom:483.666667pt;}
.ya{bottom:486.333333pt;}
.yd4{bottom:487.666667pt;}
.y15b{bottom:488.666667pt;}
.y2e{bottom:493.666667pt;}
.ya6{bottom:494.000000pt;}
.y5e{bottom:494.666667pt;}
.y112{bottom:496.666667pt;}
.y9{bottom:499.666667pt;}
.y95{bottom:502.333333pt;}
.y15a{bottom:503.333333pt;}
.yd3{bottom:504.666667pt;}
.y2d{bottom:509.000000pt;}
.ya5{bottom:509.333333pt;}
.y153{bottom:509.666667pt;}
.y5d{bottom:510.000000pt;}
.ye4{bottom:512.333333pt;}
.y8{bottom:513.000000pt;}
.y111{bottom:514.666667pt;}
.y94{bottom:516.333333pt;}
.y103{bottom:517.666667pt;}
.y159{bottom:518.000000pt;}
.yd2{bottom:522.000000pt;}
.y2c{bottom:524.333333pt;}
.ya4{bottom:524.666667pt;}
.y5c{bottom:525.333333pt;}
.y7{bottom:526.333333pt;}
.ye3{bottom:527.666667pt;}
.y110{bottom:532.666667pt;}
.y93{bottom:537.000000pt;}
.yd1{bottom:539.000000pt;}
.y6{bottom:539.666667pt;}
.ya3{bottom:540.000000pt;}
.y5b{bottom:540.666667pt;}
.ye2{bottom:543.000000pt;}
.y152{bottom:545.666667pt;}
.y158{bottom:547.333333pt;}
.y10f{bottom:550.666667pt;}
.y92{bottom:551.000000pt;}
.y2b{bottom:555.000000pt;}
.ya2{bottom:555.333333pt;}
.y5a{bottom:556.000000pt;}
.ye1{bottom:558.333333pt;}
.y157{bottom:562.000000pt;}
.y151{bottom:563.666667pt;}
.y5{bottom:566.333333pt;}
.y10e{bottom:568.666667pt;}
.y2a{bottom:570.333333pt;}
.ya1{bottom:570.666667pt;}
.y59{bottom:571.333333pt;}
.yd0{bottom:573.000000pt;}
.y156{bottom:576.666667pt;}
.y150{bottom:581.666667pt;}
.y12e{bottom:582.666667pt;}
.y91{bottom:585.333333pt;}
.y29{bottom:585.666667pt;}
.y58{bottom:586.666667pt;}
.ycf{bottom:590.000000pt;}
.y155{bottom:591.333333pt;}
.y90{bottom:599.333333pt;}
.y14f{bottom:599.666667pt;}
.y12d{bottom:600.666667pt;}
.y28{bottom:601.000000pt;}
.y57{bottom:602.000000pt;}
.y10d{bottom:604.666667pt;}
.yce{bottom:607.000000pt;}
.y154{bottom:613.666667pt;}
.y27{bottom:616.333333pt;}
.y56{bottom:617.333333pt;}
.y14e{bottom:617.666667pt;}
.y12c{bottom:618.666667pt;}
.y8f{bottom:619.666667pt;}
.y179{bottom:622.000000pt;}
.y10c{bottom:622.666667pt;}
.ycd{bottom:624.000000pt;}
.yba{bottom:624.666667pt;}
.y55{bottom:632.666667pt;}
.y14d{bottom:635.666667pt;}
.y12b{bottom:636.666667pt;}
.y8e{bottom:640.000000pt;}
.y4{bottom:640.333333pt;}
.y10b{bottom:640.666667pt;}
.ycc{bottom:641.000000pt;}
.y54{bottom:648.000000pt;}
.y178{bottom:651.333333pt;}
.y14c{bottom:653.666667pt;}
.y12a{bottom:654.666667pt;}
.y3{bottom:657.000000pt;}
.ycb{bottom:658.000000pt;}
.y10a{bottom:658.666667pt;}
.y8d{bottom:660.666667pt;}
.y53{bottom:663.333333pt;}
.y177{bottom:666.000000pt;}
.y4d{bottom:669.333333pt;}
.yb9{bottom:670.333333pt;}
.y14b{bottom:671.666667pt;}
.y129{bottom:672.666667pt;}
.y8c{bottom:674.666667pt;}
.yca{bottom:675.000000pt;}
.y109{bottom:676.666667pt;}
.y52{bottom:678.666667pt;}
.y176{bottom:680.666667pt;}
.y4b{bottom:682.666667pt;}
.y4c{bottom:688.000000pt;}
.y14a{bottom:689.666667pt;}
.y128{bottom:690.666667pt;}
.y51{bottom:694.000000pt;}
.yc9{bottom:694.666667pt;}
.y8b{bottom:695.000000pt;}
.y175{bottom:695.333333pt;}
.y2{bottom:697.000000pt;}
.y4a{bottom:701.333333pt;}
.y149{bottom:707.666667pt;}
.yc8{bottom:708.666667pt;}
.y8a{bottom:709.000000pt;}
.y50{bottom:709.333333pt;}
.y174{bottom:710.000000pt;}
.yb8{bottom:714.000000pt;}
.y1{bottom:718.333333pt;}
.y4f{bottom:724.666667pt;}
.y4e{bottom:725.000000pt;}
.yb7{bottom:727.333333pt;}
.y148{bottom:730.333333pt;}
.yc7{bottom:731.333333pt;}
.y89{bottom:732.333333pt;}
.y23{bottom:766.333333pt;}
.h7{height:45.525333pt;}
.h4{height:51.216000pt;}
.h8{height:52.032000pt;}
.h5{height:54.061333pt;}
.h6{height:54.922667pt;}
.hc{height:56.906667pt;}
.hf{height:57.813333pt;}
.h3{height:62.597333pt;}
.hb{height:63.594667pt;}
.hd{height:63.789680pt;}
.ha{height:64.487360pt;}
.h1{height:91.050667pt;}
.h2{height:91.724085pt;}
.h9{height:128.728000pt;}
.he{height:548.000000pt;}
.h0{height:793.333333pt;}
.w0{width:548.000000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:66.833333pt;}
.x9{left:77.932000pt;}
.x3{left:86.942667pt;}
.x12{left:90.381333pt;}
.x8{left:93.093333pt;}
.xb{left:101.166667pt;}
.x5{left:122.205333pt;}
.x4{left:153.740000pt;}
.x11{left:154.833333pt;}
.x13{left:165.166667pt;}
.xa{left:230.180800pt;}
.xd{left:252.500000pt;}
.x7{left:261.576000pt;}
.x10{left:269.500000pt;}
.x6{left:294.608000pt;}
.x2{left:385.833333pt;}
.xc{left:437.862667pt;}
.xf{left:439.482667pt;}
.xe{left:766.333333pt;}
}




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