
    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_5fa966fd800be6f880a2931f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986816;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_916e4e3336a4f73c8e058770.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_7fc372568236d0c2239ecf92.woff')format("woff");}.ff3{font-family:ff3;line-height:0.986816;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_df5514c56937f2f62c171880.woff')format("woff");}.ff4{font-family:ff4;line-height:0.986816;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_8a7746b37ddbd98ca7d0aa93.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724121;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_4397fa670ae9f3de3016089d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.092773;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_94e4cd24c6a14b94a4dd6521.woff')format("woff");}.ff7{font-family:ff7;line-height:1.089355;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_8bd1159c21153fd02afd2fb4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.722656;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_4357d31dd20194331b3ca434.woff')format("woff");}.ff9{font-family:ff9;line-height:1.052246;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_c2e291d990f96f22fb49f818.woff')format("woff");}.ffa{font-family:ffa;line-height:0.986816;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_0e731a03f37759241452d1d0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.975098;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_d79128a0eba3fc583c2b0b79.woff')format("woff");}.ffc{font-family:ffc;line-height:0.986816;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_f262f5b0f7021411dc7275de.woff')format("woff");}.ffd{font-family:ffd;line-height:0.986816;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_086391cfbcdba441bcd70d7a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.764160;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.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,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);}
.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);}
.v1{vertical-align:-81.666600px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-6.534000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:17.172000px;}
.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;}
}
.ws17{word-spacing:-18.216000px;}
.ws96{word-spacing:-18.150000px;}
.ws18{word-spacing:-18.084000px;}
.ws0{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.796000px;}
.wsa1{word-spacing:-11.550000px;}
.ws4c{word-spacing:-7.788000px;}
.ws6b{word-spacing:-6.402000px;}
.wsbe{word-spacing:-6.204000px;}
.ws7f{word-spacing:-6.138000px;}
.ws2f{word-spacing:-5.148000px;}
.ws8c{word-spacing:-4.950000px;}
.ws73{word-spacing:-4.818000px;}
.ws4d{word-spacing:-4.620000px;}
.wsb{word-spacing:-4.554000px;}
.ws15{word-spacing:-3.888000px;}
.ws16{word-spacing:-3.834000px;}
.ws8a{word-spacing:-3.828000px;}
.wsaa{word-spacing:-3.762000px;}
.ws9a{word-spacing:-3.432000px;}
.ws53{word-spacing:-3.234000px;}
.ws42{word-spacing:-3.168000px;}
.ws44{word-spacing:-2.970000px;}
.wsce{word-spacing:-2.880000px;}
.ws35{word-spacing:-2.706000px;}
.ws3{word-spacing:-2.646000px;}
.ws63{word-spacing:-2.640000px;}
.ws74{word-spacing:-2.376000px;}
.wsb3{word-spacing:-2.244000px;}
.wsb2{word-spacing:-1.848000px;}
.ws30{word-spacing:-1.782000px;}
.ws6{word-spacing:-1.584000px;}
.ws32{word-spacing:-1.518000px;}
.ws95{word-spacing:-1.254000px;}
.ws50{word-spacing:-0.924000px;}
.ws91{word-spacing:-0.594000px;}
.ws3e{word-spacing:-0.396000px;}
.wsd4{word-spacing:-0.360000px;}
.ws8{word-spacing:-0.132000px;}
.ws23{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws5b{word-spacing:0.264000px;}
.ws8e{word-spacing:0.396000px;}
.ws8d{word-spacing:0.462000px;}
.ws7e{word-spacing:0.528000px;}
.ws5{word-spacing:0.924000px;}
.ws60{word-spacing:0.990000px;}
.ws57{word-spacing:1.056000px;}
.ws4e{word-spacing:1.122000px;}
.ws4a{word-spacing:1.254000px;}
.ws70{word-spacing:1.452000px;}
.ws7c{word-spacing:1.518000px;}
.ws48{word-spacing:1.650000px;}
.wscb{word-spacing:1.740000px;}
.wsa0{word-spacing:1.782000px;}
.wsca{word-spacing:1.800000px;}
.wsac{word-spacing:1.914000px;}
.wsc8{word-spacing:1.980000px;}
.ws78{word-spacing:2.046000px;}
.ws47{word-spacing:2.178000px;}
.ws54{word-spacing:2.244000px;}
.ws69{word-spacing:2.508000px;}
.ws82{word-spacing:2.706000px;}
.ws90{word-spacing:2.838000px;}
.ws7d{word-spacing:2.904000px;}
.ws6e{word-spacing:3.234000px;}
.wsa{word-spacing:3.300000px;}
.ws51{word-spacing:3.366000px;}
.ws12{word-spacing:3.564000px;}
.ws83{word-spacing:3.696000px;}
.ws3d{word-spacing:3.762000px;}
.wsd5{word-spacing:3.780000px;}
.wsb1{word-spacing:3.828000px;}
.ws14{word-spacing:3.894000px;}
.wse{word-spacing:4.092000px;}
.ws24{word-spacing:4.158000px;}
.ws2a{word-spacing:4.488000px;}
.ws3a{word-spacing:4.620000px;}
.wsa5{word-spacing:4.752000px;}
.ws4{word-spacing:4.818000px;}
.ws52{word-spacing:5.016000px;}
.ws29{word-spacing:5.214000px;}
.ws5a{word-spacing:5.280000px;}
.ws10{word-spacing:5.346000px;}
.wsc0{word-spacing:5.610000px;}
.ws5d{word-spacing:5.676000px;}
.wsb5{word-spacing:5.940000px;}
.ws22{word-spacing:6.006000px;}
.wscf{word-spacing:6.120000px;}
.ws6c{word-spacing:6.204000px;}
.ws27{word-spacing:6.336000px;}
.ws7b{word-spacing:6.402000px;}
.wsbf{word-spacing:6.468000px;}
.ws13{word-spacing:6.534000px;}
.wsf{word-spacing:6.798000px;}
.wscd{word-spacing:6.900000px;}
.ws3f{word-spacing:6.996000px;}
.ws79{word-spacing:7.062000px;}
.wsc2{word-spacing:7.392000px;}
.wsb4{word-spacing:7.524000px;}
.wsc4{word-spacing:7.722000px;}
.wsc3{word-spacing:7.788000px;}
.ws5c{word-spacing:7.854000px;}
.ws6a{word-spacing:8.118000px;}
.wsc5{word-spacing:8.250000px;}
.ws1f{word-spacing:8.514000px;}
.ws72{word-spacing:8.778000px;}
.ws85{word-spacing:8.910000px;}
.ws33{word-spacing:8.976000px;}
.ws71{word-spacing:9.042000px;}
.ws7{word-spacing:9.108000px;}
.ws3c{word-spacing:9.174000px;}
.ws92{word-spacing:9.438000px;}
.ws25{word-spacing:9.702000px;}
.wsd{word-spacing:9.834000px;}
.ws64{word-spacing:10.032000px;}
.ws59{word-spacing:10.362000px;}
.ws84{word-spacing:10.560000px;}
.ws1e{word-spacing:10.626000px;}
.ws34{word-spacing:10.692000px;}
.wsd3{word-spacing:10.980000px;}
.wsaf{word-spacing:11.088000px;}
.ws2d{word-spacing:11.286000px;}
.ws9{word-spacing:11.352000px;}
.ws6f{word-spacing:11.748000px;}
.wsc6{word-spacing:11.880000px;}
.wsc{word-spacing:11.946000px;}
.ws4f{word-spacing:12.144000px;}
.ws11{word-spacing:12.408000px;}
.ws89{word-spacing:12.540000px;}
.ws9c{word-spacing:12.606000px;}
.ws5e{word-spacing:12.672000px;}
.ws28{word-spacing:13.068000px;}
.wsd6{word-spacing:13.080000px;}
.wsad{word-spacing:13.200000px;}
.wsd0{word-spacing:13.320000px;}
.ws39{word-spacing:13.530000px;}
.ws2b{word-spacing:13.728000px;}
.ws46{word-spacing:13.860000px;}
.ws93{word-spacing:13.926000px;}
.ws20{word-spacing:14.190000px;}
.wsab{word-spacing:14.586000px;}
.wsba{word-spacing:14.652000px;}
.ws31{word-spacing:14.718000px;}
.ws3b{word-spacing:14.982000px;}
.wscc{word-spacing:15.060000px;}
.wsa3{word-spacing:15.114000px;}
.ws4b{word-spacing:15.180000px;}
.ws88{word-spacing:15.246000px;}
.ws2c{word-spacing:15.444000px;}
.wsc7{word-spacing:16.038000px;}
.ws61{word-spacing:16.830000px;}
.wsae{word-spacing:17.160000px;}
.ws68{word-spacing:17.292000px;}
.ws62{word-spacing:17.622000px;}
.ws94{word-spacing:17.688000px;}
.ws1b{word-spacing:17.754000px;}
.wsd2{word-spacing:18.180000px;}
.ws55{word-spacing:18.612000px;}
.ws9d{word-spacing:19.074000px;}
.wsc9{word-spacing:20.328000px;}
.ws26{word-spacing:20.658000px;}
.ws1c{word-spacing:20.856000px;}
.wsb8{word-spacing:21.384000px;}
.wsb7{word-spacing:21.648000px;}
.ws66{word-spacing:22.242000px;}
.ws36{word-spacing:22.308000px;}
.wsa8{word-spacing:22.968000px;}
.ws56{word-spacing:23.166000px;}
.ws58{word-spacing:23.694000px;}
.ws43{word-spacing:23.760000px;}
.ws41{word-spacing:23.958000px;}
.ws7a{word-spacing:24.024000px;}
.ws65{word-spacing:24.090000px;}
.ws81{word-spacing:24.288000px;}
.ws8b{word-spacing:24.420000px;}
.ws45{word-spacing:24.684000px;}
.ws1d{word-spacing:24.750000px;}
.ws19{word-spacing:25.080000px;}
.wsd1{word-spacing:25.380000px;}
.ws86{word-spacing:25.410000px;}
.wsbb{word-spacing:26.268000px;}
.wsb0{word-spacing:26.334000px;}
.wsa4{word-spacing:26.598000px;}
.wsa9{word-spacing:28.248000px;}
.wsd7{word-spacing:29.580000px;}
.wsb9{word-spacing:29.634000px;}
.ws67{word-spacing:30.162000px;}
.ws80{word-spacing:30.954000px;}
.ws9f{word-spacing:31.152000px;}
.ws8f{word-spacing:31.218000px;}
.ws5f{word-spacing:32.934000px;}
.ws21{word-spacing:33.726000px;}
.ws77{word-spacing:35.706000px;}
.ws1a{word-spacing:36.828000px;}
.ws38{word-spacing:39.072000px;}
.ws99{word-spacing:40.194000px;}
.ws9e{word-spacing:40.260000px;}
.ws9b{word-spacing:41.976000px;}
.wsb6{word-spacing:42.240000px;}
.wsa6{word-spacing:42.438000px;}
.wsa2{word-spacing:44.154000px;}
.ws40{word-spacing:46.200000px;}
.wsbd{word-spacing:47.256000px;}
.wsc1{word-spacing:48.246000px;}
.ws49{word-spacing:48.312000px;}
.ws87{word-spacing:55.308000px;}
.wsbc{word-spacing:55.902000px;}
.ws2e{word-spacing:56.826000px;}
.ws76{word-spacing:59.928000px;}
.wsa7{word-spacing:62.832000px;}
.ws98{word-spacing:65.604000px;}
.ws97{word-spacing:65.802000px;}
.ws37{word-spacing:70.422000px;}
.ws6d{word-spacing:73.326000px;}
.ws75{word-spacing:83.292000px;}
._d{margin-left:-65.664000px;}
._17{margin-left:-44.352000px;}
._f{margin-left:-13.208400px;}
._e{margin-left:-8.569800px;}
._c{margin-left:-6.777000px;}
._9{margin-left:-4.884600px;}
._0{margin-left:-3.486000px;}
._5{margin-left:-2.076000px;}
._7{margin-left:-1.018441px;}
._1{width:1.587241px;}
._b{width:2.843400px;}
._a{width:4.103759px;}
._1c{width:5.405400px;}
._16{width:6.916800px;}
._10{width:8.322600px;}
._1b{width:9.832200px;}
._12{width:10.870200px;}
._15{width:13.002000px;}
._1a{width:14.814000px;}
._19{width:16.387800px;}
._11{width:19.489800px;}
._1e{width:20.547000px;}
._8{width:21.696000px;}
._6{width:24.576000px;}
._14{width:25.759800px;}
._20{width:33.402600px;}
._21{width:34.495200px;}
._1d{width:40.392000px;}
._13{width:54.120000px;}
._18{width:81.708000px;}
._1f{width:110.041800px;}
._2{width:153.107843px;}
._3{width:183.490826px;}
._4{width:368.881200px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:56.878800px;}
.y23{bottom:73.078800px;}
.y3{bottom:81.772500px;}
.yd4{bottom:118.511250px;}
.yb1{bottom:122.692950px;}
.y15d{bottom:139.218750px;}
.yd3{bottom:139.515750px;}
.y69{bottom:139.515900px;}
.y8c{bottom:140.406900px;}
.yb0{bottom:140.842950px;}
.y10a{bottom:141.485850px;}
.yff{bottom:147.270750px;}
.y135{bottom:147.501750px;}
.y113{bottom:149.422350px;}
.yd2{bottom:160.520250px;}
.y68{bottom:160.520400px;}
.y8b{bottom:161.411400px;}
.y109{bottom:162.490350px;}
.yfe{bottom:168.275250px;}
.y134{bottom:168.506250px;}
.y112{bottom:170.426850px;}
.y15c{bottom:174.974250px;}
.yd1{bottom:181.524750px;}
.y67{bottom:181.524900px;}
.y8a{bottom:182.415900px;}
.y108{bottom:183.494850px;}
.yfd{bottom:189.279750px;}
.y133{bottom:189.510750px;}
.y15b{bottom:193.718250px;}
.yd0{bottom:202.529250px;}
.y66{bottom:202.529400px;}
.y89{bottom:203.420400px;}
.y107{bottom:204.499350px;}
.y111{bottom:208.442850px;}
.yfc{bottom:210.284250px;}
.y132{bottom:210.515250px;}
.ycf{bottom:223.533750px;}
.y88{bottom:224.424900px;}
.y106{bottom:225.503850px;}
.y15a{bottom:229.473750px;}
.yfb{bottom:231.288750px;}
.y131{bottom:231.519750px;}
.y65{bottom:240.545400px;}
.yce{bottom:244.538250px;}
.y87{bottom:245.429400px;}
.y110{bottom:246.458850px;}
.y105{bottom:246.508350px;}
.yfa{bottom:252.293250px;}
.y64{bottom:261.549900px;}
.y159{bottom:265.229250px;}
.ycd{bottom:265.542750px;}
.y86{bottom:266.433900px;}
.y10f{bottom:267.463350px;}
.y104{bottom:267.512850px;}
.y130{bottom:269.535750px;}
.yf9{bottom:273.297750px;}
.y63{bottom:282.554400px;}
.ycc{bottom:286.547250px;}
.y85{bottom:287.438400px;}
.y10e{bottom:288.467850px;}
.y103{bottom:288.517350px;}
.y12f{bottom:290.540250px;}
.yf8{bottom:294.302250px;}
.y158{bottom:300.984750px;}
.y62{bottom:303.558900px;}
.ycb{bottom:307.551750px;}
.y84{bottom:308.442900px;}
.y10d{bottom:309.472350px;}
.y102{bottom:309.521850px;}
.y12e{bottom:311.544750px;}
.y3b{bottom:318.381000px;}
.y61{bottom:324.563400px;}
.y83{bottom:329.447400px;}
.y10c{bottom:330.476850px;}
.y101{bottom:330.526350px;}
.yf7{bottom:332.318250px;}
.y3a{bottom:334.581000px;}
.y157{bottom:336.740250px;}
.yca{bottom:345.567750px;}
.y60{bottom:345.567900px;}
.y12d{bottom:349.560750px;}
.y82{bottom:350.451900px;}
.y10b{bottom:351.481350px;}
.y100{bottom:351.530850px;}
.yf6{bottom:353.322750px;}
.y156{bottom:355.484250px;}
.yc9{bottom:366.572250px;}
.y5f{bottom:366.572400px;}
.y81{bottom:371.456400px;}
.yf5{bottom:374.327250px;}
.y117{bottom:376.914600px;}
.y39{bottom:384.531450px;}
.yc8{bottom:387.576750px;}
.y5e{bottom:387.576900px;}
.y155{bottom:391.239750px;}
.y116{bottom:395.064600px;}
.yf4{bottom:395.331750px;}
.y38{bottom:404.331450px;}
.y8d{bottom:405.659400px;}
.yc7{bottom:408.581250px;}
.y5d{bottom:408.581400px;}
.y154{bottom:409.983750px;}
.yf3{bottom:416.336250px;}
.y37{bottom:424.131450px;}
.y153{bottom:428.727750px;}
.yc6{bottom:429.585750px;}
.y5c{bottom:429.585900px;}
.yf2{bottom:437.340750px;}
.y17b{bottom:439.351650px;}
.y36{bottom:443.931450px;}
.yc5{bottom:450.590250px;}
.y5b{bottom:450.590400px;}
.y22{bottom:451.740300px;}
.yf1{bottom:458.345250px;}
.y17a{bottom:459.151650px;}
.y35{bottom:463.731450px;}
.y152{bottom:464.483250px;}
.yc4{bottom:471.594750px;}
.y5a{bottom:471.594900px;}
.y21{bottom:472.192800px;}
.y179{bottom:478.951650px;}
.y34{bottom:483.531450px;}
.yc3{bottom:492.599250px;}
.y20{bottom:492.645300px;}
.yf0{bottom:496.361250px;}
.y151{bottom:500.238750px;}
.y33{bottom:503.331450px;}
.y59{bottom:509.610900px;}
.y1f{bottom:513.097800px;}
.y12c{bottom:513.603750px;}
.yef{bottom:517.365750px;}
.y150{bottom:518.982750px;}
.y32{bottom:523.131450px;}
.y178{bottom:524.947350px;}
.yc2{bottom:530.615250px;}
.y12b{bottom:534.608250px;}
.yee{bottom:538.370250px;}
.y31{bottom:542.931450px;}
.y177{bottom:543.697350px;}
.y58{bottom:547.626900px;}
.yc1{bottom:551.619750px;}
.y1e{bottom:554.002800px;}
.y14f{bottom:554.738250px;}
.y12a{bottom:555.612750px;}
.yed{bottom:559.374750px;}
.y30{bottom:562.731450px;}
.y57{bottom:568.631400px;}
.y176{bottom:568.822350px;}
.yc0{bottom:572.624250px;}
.y14e{bottom:573.482250px;}
.y1d{bottom:574.455300px;}
.y129{bottom:576.617250px;}
.y2f{bottom:582.531450px;}
.y175{bottom:587.572350px;}
.y56{bottom:589.635900px;}
.y14d{bottom:592.226250px;}
.ybf{bottom:593.628750px;}
.y1c{bottom:594.907800px;}
.yec{bottom:597.390750px;}
.y128{bottom:597.621750px;}
.y2e{bottom:602.331450px;}
.y174{bottom:606.322350px;}
.y55{bottom:610.640400px;}
.ybe{bottom:614.633250px;}
.y1b{bottom:615.360300px;}
.y127{bottom:618.626250px;}
.y2d{bottom:622.131450px;}
.y173{bottom:625.072350px;}
.y14c{bottom:627.981750px;}
.y54{bottom:631.644900px;}
.yeb{bottom:635.406750px;}
.ybd{bottom:635.637750px;}
.y126{bottom:639.630750px;}
.y2c{bottom:641.931450px;}
.y14b{bottom:646.725750px;}
.y172{bottom:650.197350px;}
.y53{bottom:652.649400px;}
.y1a{bottom:656.265300px;}
.yea{bottom:656.411250px;}
.y125{bottom:660.635250px;}
.y2b{bottom:661.731450px;}
.y171{bottom:668.947350px;}
.ybc{bottom:673.653750px;}
.y52{bottom:673.653900px;}
.y19{bottom:676.717800px;}
.ye9{bottom:677.415750px;}
.y2a{bottom:681.531450px;}
.y14a{bottom:682.481250px;}
.y170{bottom:687.697350px;}
.ybb{bottom:694.658250px;}
.y18{bottom:697.170300px;}
.ye8{bottom:698.420250px;}
.y124{bottom:698.651250px;}
.y149{bottom:701.225250px;}
.y29{bottom:701.331450px;}
.y80{bottom:703.469400px;}
.y16f{bottom:706.447350px;}
.y51{bottom:711.669900px;}
.yba{bottom:715.662750px;}
.y17{bottom:717.622800px;}
.y148{bottom:719.969250px;}
.y28{bottom:721.131450px;}
.y7f{bottom:724.473900px;}
.y16e{bottom:731.572350px;}
.y50{bottom:732.674400px;}
.ye7{bottom:736.436250px;}
.yb9{bottom:736.667250px;}
.y27{bottom:740.931450px;}
.y7e{bottom:745.478400px;}
.y16d{bottom:750.322350px;}
.y4f{bottom:753.678900px;}
.y115{bottom:754.570350px;}
.ye6{bottom:757.440750px;}
.y123{bottom:757.671750px;}
.y16{bottom:758.527800px;}
.y26{bottom:760.731450px;}
.yaf{bottom:761.582250px;}
.y9e{bottom:761.664750px;}
.y7d{bottom:766.482900px;}
.y16c{bottom:769.072350px;}
.y114{bottom:772.720350px;}
.yb8{bottom:774.683250px;}
.y4e{bottom:774.683400px;}
.ye5{bottom:778.445250px;}
.y122{bottom:778.676250px;}
.y15{bottom:778.980300px;}
.yae{bottom:782.586750px;}
.y9d{bottom:782.669250px;}
.y7c{bottom:787.487400px;}
.y147{bottom:791.480250px;}
.y25{bottom:793.285950px;}
.y16b{bottom:794.197350px;}
.yb7{bottom:795.687750px;}
.y4d{bottom:795.687900px;}
.y14{bottom:799.432800px;}
.ye4{bottom:799.449750px;}
.y121{bottom:799.680750px;}
.y9c{bottom:803.673750px;}
.y7b{bottom:808.491900px;}
.y146{bottom:812.484750px;}
.y16a{bottom:812.947350px;}
.yb6{bottom:816.692250px;}
.y4c{bottom:816.692400px;}
.y13{bottom:819.885300px;}
.ye3{bottom:820.454250px;}
.yad{bottom:820.602750px;}
.y120{bottom:820.685250px;}
.y7a{bottom:829.496400px;}
.y169{bottom:831.697350px;}
.y145{bottom:833.489250px;}
.y12{bottom:836.085300px;}
.yb5{bottom:837.696750px;}
.y4b{bottom:837.696900px;}
.ye2{bottom:841.458750px;}
.yac{bottom:841.607250px;}
.y9b{bottom:841.689750px;}
.y79{bottom:850.500900px;}
.y11{bottom:852.285300px;}
.y144{bottom:854.493750px;}
.y168{bottom:856.822350px;}
.yb4{bottom:858.701250px;}
.y4a{bottom:858.701400px;}
.ye1{bottom:862.463250px;}
.yab{bottom:862.611750px;}
.y11f{bottom:862.694250px;}
.y10{bottom:868.485300px;}
.y78{bottom:871.505400px;}
.yd{bottom:875.475300px;}
.y143{bottom:875.498250px;}
.y167{bottom:875.572350px;}
.y9a{bottom:879.705750px;}
.y49{bottom:879.705900px;}
.ye0{bottom:883.467750px;}
.yaa{bottom:883.616250px;}
.y11e{bottom:883.698750px;}
.yf{bottom:884.685300px;}
.yc{bottom:889.875300px;}
.y77{bottom:892.509900px;}
.y166{bottom:894.322350px;}
.y142{bottom:896.502750px;}
.yb3{bottom:900.710250px;}
.y48{bottom:900.710400px;}
.ydf{bottom:904.472250px;}
.ya9{bottom:904.620750px;}
.y11d{bottom:904.703250px;}
.ye{bottom:905.137800px;}
.yb{bottom:911.957400px;}
.y76{bottom:913.514400px;}
.y99{bottom:917.721750px;}
.y165{bottom:919.447350px;}
.yde{bottom:925.476750px;}
.ya8{bottom:925.625250px;}
.y11c{bottom:925.707750px;}
.ya{bottom:929.957400px;}
.y141{bottom:934.518750px;}
.y75{bottom:934.518900px;}
.y164{bottom:938.197350px;}
.y98{bottom:938.726250px;}
.y47{bottom:938.726400px;}
.y140{bottom:955.523250px;}
.y74{bottom:955.523400px;}
.y163{bottom:956.947350px;}
.y97{bottom:959.730750px;}
.y46{bottom:959.730900px;}
.ydd{bottom:963.492750px;}
.ya7{bottom:963.641250px;}
.y11b{bottom:963.723750px;}
.y8{bottom:968.329800px;}
.y162{bottom:975.697350px;}
.y13f{bottom:976.527750px;}
.y73{bottom:976.527900px;}
.y96{bottom:980.735250px;}
.y45{bottom:980.735400px;}
.ydc{bottom:984.497250px;}
.y13e{bottom:997.532250px;}
.y72{bottom:997.532400px;}
.y7{bottom:1000.729800px;}
.ya6{bottom:1001.657250px;}
.y95{bottom:1001.739750px;}
.y44{bottom:1001.739900px;}
.y161{bottom:1002.960750px;}
.ydb{bottom:1005.501750px;}
.y13d{bottom:1018.536750px;}
.y71{bottom:1018.536900px;}
.ya5{bottom:1022.661750px;}
.y94{bottom:1022.744250px;}
.y43{bottom:1022.744400px;}
.yda{bottom:1026.506250px;}
.y13c{bottom:1039.541250px;}
.y70{bottom:1039.541400px;}
.ya4{bottom:1043.666250px;}
.y93{bottom:1043.748750px;}
.y42{bottom:1043.748900px;}
.yd9{bottom:1047.510750px;}
.y6{bottom:1053.546450px;}
.y13b{bottom:1060.545750px;}
.y6f{bottom:1060.545900px;}
.y11a{bottom:1060.760250px;}
.ya3{bottom:1064.670750px;}
.y92{bottom:1064.753250px;}
.y41{bottom:1064.753400px;}
.yd8{bottom:1068.515250px;}
.y5{bottom:1069.746450px;}
.y160{bottom:1075.527750px;}
.y13a{bottom:1081.550250px;}
.y6e{bottom:1081.550400px;}
.y119{bottom:1081.764750px;}
.y91{bottom:1085.757750px;}
.y40{bottom:1085.757900px;}
.y15f{bottom:1094.271750px;}
.y139{bottom:1102.554750px;}
.y6d{bottom:1102.554900px;}
.ya2{bottom:1102.686750px;}
.y118{bottom:1102.769250px;}
.yd7{bottom:1106.531250px;}
.y90{bottom:1106.762250px;}
.y3f{bottom:1106.762400px;}
.y9{bottom:1123.179750px;}
.y138{bottom:1123.559250px;}
.y6c{bottom:1123.559400px;}
.ya1{bottom:1123.691250px;}
.yb2{bottom:1123.773750px;}
.y3e{bottom:1127.766900px;}
.y15e{bottom:1130.027250px;}
.yd6{bottom:1144.547250px;}
.y137{bottom:1144.563750px;}
.y6b{bottom:1144.563900px;}
.ya0{bottom:1144.695750px;}
.y8f{bottom:1144.778250px;}
.yd5{bottom:1165.551750px;}
.y136{bottom:1165.568250px;}
.y6a{bottom:1165.568400px;}
.y9f{bottom:1165.700250px;}
.y8e{bottom:1165.782750px;}
.y3d{bottom:1165.782900px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y3c{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.ha{height:36.093750px;}
.h6{height:39.972656px;}
.hb{height:40.605469px;}
.h3{height:44.414062px;}
.h4{height:45.117188px;}
.hc{height:46.142578px;}
.h5{height:47.277398px;}
.h12{height:48.855469px;}
.h14{height:49.042969px;}
.hd{height:49.628906px;}
.h8{height:51.257812px;}
.h13{height:51.269531px;}
.h9{height:51.445312px;}
.he{height:53.947266px;}
.h10{height:54.140625px;}
.hf{height:56.396484px;}
.h11{height:56.589844px;}
.h7{height:81.210938px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:6.112650px;}
.xe{left:15.063150px;}
.xb{left:16.656150px;}
.xd{left:18.910650px;}
.xc{left:21.475650px;}
.x16{left:23.149650px;}
.x12{left:33.045150px;}
.x14{left:35.880150px;}
.x5{left:39.594300px;}
.x15{left:48.597150px;}
.xa{left:53.592150px;}
.x6{left:59.722800px;}
.xf{left:62.124150px;}
.x1a{left:63.779550px;}
.x17{left:66.646650px;}
.x1f{left:70.352550px;}
.x19{left:72.283350px;}
.x11{left:85.074150px;}
.x1e{left:90.779550px;}
.x10{left:101.409150px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.x18{left:232.786800px;}
.x4{left:308.436300px;}
.x1{left:408.040350px;}
.x1b{left:461.545050px;}
.x1c{left:467.897550px;}
.x1d{left:488.324550px;}
.x8{left:707.440500px;}
.x3{left:798.829500px;}
@media print{
.v1{vertical-align:-72.592533pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-5.808000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:15.264000pt;}
.ws17{word-spacing:-16.192000pt;}
.ws96{word-spacing:-16.133333pt;}
.ws18{word-spacing:-16.074667pt;}
.ws0{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.152000pt;}
.wsa1{word-spacing:-10.266667pt;}
.ws4c{word-spacing:-6.922667pt;}
.ws6b{word-spacing:-5.690667pt;}
.wsbe{word-spacing:-5.514667pt;}
.ws7f{word-spacing:-5.456000pt;}
.ws2f{word-spacing:-4.576000pt;}
.ws8c{word-spacing:-4.400000pt;}
.ws73{word-spacing:-4.282667pt;}
.ws4d{word-spacing:-4.106667pt;}
.wsb{word-spacing:-4.048000pt;}
.ws15{word-spacing:-3.456000pt;}
.ws16{word-spacing:-3.408000pt;}
.ws8a{word-spacing:-3.402667pt;}
.wsaa{word-spacing:-3.344000pt;}
.ws9a{word-spacing:-3.050667pt;}
.ws53{word-spacing:-2.874667pt;}
.ws42{word-spacing:-2.816000pt;}
.ws44{word-spacing:-2.640000pt;}
.wsce{word-spacing:-2.560000pt;}
.ws35{word-spacing:-2.405333pt;}
.ws3{word-spacing:-2.352000pt;}
.ws63{word-spacing:-2.346667pt;}
.ws74{word-spacing:-2.112000pt;}
.wsb3{word-spacing:-1.994667pt;}
.wsb2{word-spacing:-1.642667pt;}
.ws30{word-spacing:-1.584000pt;}
.ws6{word-spacing:-1.408000pt;}
.ws32{word-spacing:-1.349333pt;}
.ws95{word-spacing:-1.114667pt;}
.ws50{word-spacing:-0.821333pt;}
.ws91{word-spacing:-0.528000pt;}
.ws3e{word-spacing:-0.352000pt;}
.wsd4{word-spacing:-0.320000pt;}
.ws8{word-spacing:-0.117333pt;}
.ws23{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.234667pt;}
.ws8e{word-spacing:0.352000pt;}
.ws8d{word-spacing:0.410667pt;}
.ws7e{word-spacing:0.469333pt;}
.ws5{word-spacing:0.821333pt;}
.ws60{word-spacing:0.880000pt;}
.ws57{word-spacing:0.938667pt;}
.ws4e{word-spacing:0.997333pt;}
.ws4a{word-spacing:1.114667pt;}
.ws70{word-spacing:1.290667pt;}
.ws7c{word-spacing:1.349333pt;}
.ws48{word-spacing:1.466667pt;}
.wscb{word-spacing:1.546667pt;}
.wsa0{word-spacing:1.584000pt;}
.wsca{word-spacing:1.600000pt;}
.wsac{word-spacing:1.701333pt;}
.wsc8{word-spacing:1.760000pt;}
.ws78{word-spacing:1.818667pt;}
.ws47{word-spacing:1.936000pt;}
.ws54{word-spacing:1.994667pt;}
.ws69{word-spacing:2.229333pt;}
.ws82{word-spacing:2.405333pt;}
.ws90{word-spacing:2.522667pt;}
.ws7d{word-spacing:2.581333pt;}
.ws6e{word-spacing:2.874667pt;}
.wsa{word-spacing:2.933333pt;}
.ws51{word-spacing:2.992000pt;}
.ws12{word-spacing:3.168000pt;}
.ws83{word-spacing:3.285333pt;}
.ws3d{word-spacing:3.344000pt;}
.wsd5{word-spacing:3.360000pt;}
.wsb1{word-spacing:3.402667pt;}
.ws14{word-spacing:3.461333pt;}
.wse{word-spacing:3.637333pt;}
.ws24{word-spacing:3.696000pt;}
.ws2a{word-spacing:3.989333pt;}
.ws3a{word-spacing:4.106667pt;}
.wsa5{word-spacing:4.224000pt;}
.ws4{word-spacing:4.282667pt;}
.ws52{word-spacing:4.458667pt;}
.ws29{word-spacing:4.634667pt;}
.ws5a{word-spacing:4.693333pt;}
.ws10{word-spacing:4.752000pt;}
.wsc0{word-spacing:4.986667pt;}
.ws5d{word-spacing:5.045333pt;}
.wsb5{word-spacing:5.280000pt;}
.ws22{word-spacing:5.338667pt;}
.wscf{word-spacing:5.440000pt;}
.ws6c{word-spacing:5.514667pt;}
.ws27{word-spacing:5.632000pt;}
.ws7b{word-spacing:5.690667pt;}
.wsbf{word-spacing:5.749333pt;}
.ws13{word-spacing:5.808000pt;}
.wsf{word-spacing:6.042667pt;}
.wscd{word-spacing:6.133333pt;}
.ws3f{word-spacing:6.218667pt;}
.ws79{word-spacing:6.277333pt;}
.wsc2{word-spacing:6.570667pt;}
.wsb4{word-spacing:6.688000pt;}
.wsc4{word-spacing:6.864000pt;}
.wsc3{word-spacing:6.922667pt;}
.ws5c{word-spacing:6.981333pt;}
.ws6a{word-spacing:7.216000pt;}
.wsc5{word-spacing:7.333333pt;}
.ws1f{word-spacing:7.568000pt;}
.ws72{word-spacing:7.802667pt;}
.ws85{word-spacing:7.920000pt;}
.ws33{word-spacing:7.978667pt;}
.ws71{word-spacing:8.037333pt;}
.ws7{word-spacing:8.096000pt;}
.ws3c{word-spacing:8.154667pt;}
.ws92{word-spacing:8.389333pt;}
.ws25{word-spacing:8.624000pt;}
.wsd{word-spacing:8.741333pt;}
.ws64{word-spacing:8.917333pt;}
.ws59{word-spacing:9.210667pt;}
.ws84{word-spacing:9.386667pt;}
.ws1e{word-spacing:9.445333pt;}
.ws34{word-spacing:9.504000pt;}
.wsd3{word-spacing:9.760000pt;}
.wsaf{word-spacing:9.856000pt;}
.ws2d{word-spacing:10.032000pt;}
.ws9{word-spacing:10.090667pt;}
.ws6f{word-spacing:10.442667pt;}
.wsc6{word-spacing:10.560000pt;}
.wsc{word-spacing:10.618667pt;}
.ws4f{word-spacing:10.794667pt;}
.ws11{word-spacing:11.029333pt;}
.ws89{word-spacing:11.146667pt;}
.ws9c{word-spacing:11.205333pt;}
.ws5e{word-spacing:11.264000pt;}
.ws28{word-spacing:11.616000pt;}
.wsd6{word-spacing:11.626667pt;}
.wsad{word-spacing:11.733333pt;}
.wsd0{word-spacing:11.840000pt;}
.ws39{word-spacing:12.026667pt;}
.ws2b{word-spacing:12.202667pt;}
.ws46{word-spacing:12.320000pt;}
.ws93{word-spacing:12.378667pt;}
.ws20{word-spacing:12.613333pt;}
.wsab{word-spacing:12.965333pt;}
.wsba{word-spacing:13.024000pt;}
.ws31{word-spacing:13.082667pt;}
.ws3b{word-spacing:13.317333pt;}
.wscc{word-spacing:13.386667pt;}
.wsa3{word-spacing:13.434667pt;}
.ws4b{word-spacing:13.493333pt;}
.ws88{word-spacing:13.552000pt;}
.ws2c{word-spacing:13.728000pt;}
.wsc7{word-spacing:14.256000pt;}
.ws61{word-spacing:14.960000pt;}
.wsae{word-spacing:15.253333pt;}
.ws68{word-spacing:15.370667pt;}
.ws62{word-spacing:15.664000pt;}
.ws94{word-spacing:15.722667pt;}
.ws1b{word-spacing:15.781333pt;}
.wsd2{word-spacing:16.160000pt;}
.ws55{word-spacing:16.544000pt;}
.ws9d{word-spacing:16.954667pt;}
.wsc9{word-spacing:18.069333pt;}
.ws26{word-spacing:18.362667pt;}
.ws1c{word-spacing:18.538667pt;}
.wsb8{word-spacing:19.008000pt;}
.wsb7{word-spacing:19.242667pt;}
.ws66{word-spacing:19.770667pt;}
.ws36{word-spacing:19.829333pt;}
.wsa8{word-spacing:20.416000pt;}
.ws56{word-spacing:20.592000pt;}
.ws58{word-spacing:21.061333pt;}
.ws43{word-spacing:21.120000pt;}
.ws41{word-spacing:21.296000pt;}
.ws7a{word-spacing:21.354667pt;}
.ws65{word-spacing:21.413333pt;}
.ws81{word-spacing:21.589333pt;}
.ws8b{word-spacing:21.706667pt;}
.ws45{word-spacing:21.941333pt;}
.ws1d{word-spacing:22.000000pt;}
.ws19{word-spacing:22.293333pt;}
.wsd1{word-spacing:22.560000pt;}
.ws86{word-spacing:22.586667pt;}
.wsbb{word-spacing:23.349333pt;}
.wsb0{word-spacing:23.408000pt;}
.wsa4{word-spacing:23.642667pt;}
.wsa9{word-spacing:25.109333pt;}
.wsd7{word-spacing:26.293333pt;}
.wsb9{word-spacing:26.341333pt;}
.ws67{word-spacing:26.810667pt;}
.ws80{word-spacing:27.514667pt;}
.ws9f{word-spacing:27.690667pt;}
.ws8f{word-spacing:27.749333pt;}
.ws5f{word-spacing:29.274667pt;}
.ws21{word-spacing:29.978667pt;}
.ws77{word-spacing:31.738667pt;}
.ws1a{word-spacing:32.736000pt;}
.ws38{word-spacing:34.730667pt;}
.ws99{word-spacing:35.728000pt;}
.ws9e{word-spacing:35.786667pt;}
.ws9b{word-spacing:37.312000pt;}
.wsb6{word-spacing:37.546667pt;}
.wsa6{word-spacing:37.722667pt;}
.wsa2{word-spacing:39.248000pt;}
.ws40{word-spacing:41.066667pt;}
.wsbd{word-spacing:42.005333pt;}
.wsc1{word-spacing:42.885333pt;}
.ws49{word-spacing:42.944000pt;}
.ws87{word-spacing:49.162667pt;}
.wsbc{word-spacing:49.690667pt;}
.ws2e{word-spacing:50.512000pt;}
.ws76{word-spacing:53.269333pt;}
.wsa7{word-spacing:55.850667pt;}
.ws98{word-spacing:58.314667pt;}
.ws97{word-spacing:58.490667pt;}
.ws37{word-spacing:62.597333pt;}
.ws6d{word-spacing:65.178667pt;}
.ws75{word-spacing:74.037333pt;}
._d{margin-left:-58.368000pt;}
._17{margin-left:-39.424000pt;}
._f{margin-left:-11.740800pt;}
._e{margin-left:-7.617600pt;}
._c{margin-left:-6.024000pt;}
._9{margin-left:-4.341867pt;}
._0{margin-left:-3.098667pt;}
._5{margin-left:-1.845333pt;}
._7{margin-left:-0.905281pt;}
._1{width:1.410881pt;}
._b{width:2.527467pt;}
._a{width:3.647785pt;}
._1c{width:4.804800pt;}
._16{width:6.148267pt;}
._10{width:7.397867pt;}
._1b{width:8.739733pt;}
._12{width:9.662400pt;}
._15{width:11.557333pt;}
._1a{width:13.168000pt;}
._19{width:14.566933pt;}
._11{width:17.324267pt;}
._1e{width:18.264000pt;}
._8{width:19.285333pt;}
._6{width:21.845333pt;}
._14{width:22.897600pt;}
._20{width:29.691200pt;}
._21{width:30.662400pt;}
._1d{width:35.904000pt;}
._13{width:48.106667pt;}
._18{width:72.629333pt;}
._1f{width:97.814933pt;}
._2{width:136.095860pt;}
._3{width:163.102957pt;}
._4{width:327.894400pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:50.558933pt;}
.y23{bottom:64.958933pt;}
.y3{bottom:72.686667pt;}
.yd4{bottom:105.343333pt;}
.yb1{bottom:109.060400pt;}
.y15d{bottom:123.750000pt;}
.yd3{bottom:124.014000pt;}
.y69{bottom:124.014133pt;}
.y8c{bottom:124.806133pt;}
.yb0{bottom:125.193733pt;}
.y10a{bottom:125.765200pt;}
.yff{bottom:130.907333pt;}
.y135{bottom:131.112667pt;}
.y113{bottom:132.819867pt;}
.yd2{bottom:142.684667pt;}
.y68{bottom:142.684800pt;}
.y8b{bottom:143.476800pt;}
.y109{bottom:144.435867pt;}
.yfe{bottom:149.578000pt;}
.y134{bottom:149.783333pt;}
.y112{bottom:151.490533pt;}
.y15c{bottom:155.532667pt;}
.yd1{bottom:161.355333pt;}
.y67{bottom:161.355467pt;}
.y8a{bottom:162.147467pt;}
.y108{bottom:163.106533pt;}
.yfd{bottom:168.248667pt;}
.y133{bottom:168.454000pt;}
.y15b{bottom:172.194000pt;}
.yd0{bottom:180.026000pt;}
.y66{bottom:180.026133pt;}
.y89{bottom:180.818133pt;}
.y107{bottom:181.777200pt;}
.y111{bottom:185.282533pt;}
.yfc{bottom:186.919333pt;}
.y132{bottom:187.124667pt;}
.ycf{bottom:198.696667pt;}
.y88{bottom:199.488800pt;}
.y106{bottom:200.447867pt;}
.y15a{bottom:203.976667pt;}
.yfb{bottom:205.590000pt;}
.y131{bottom:205.795333pt;}
.y65{bottom:213.818133pt;}
.yce{bottom:217.367333pt;}
.y87{bottom:218.159467pt;}
.y110{bottom:219.074533pt;}
.y105{bottom:219.118533pt;}
.yfa{bottom:224.260667pt;}
.y64{bottom:232.488800pt;}
.y159{bottom:235.759333pt;}
.ycd{bottom:236.038000pt;}
.y86{bottom:236.830133pt;}
.y10f{bottom:237.745200pt;}
.y104{bottom:237.789200pt;}
.y130{bottom:239.587333pt;}
.yf9{bottom:242.931333pt;}
.y63{bottom:251.159467pt;}
.ycc{bottom:254.708667pt;}
.y85{bottom:255.500800pt;}
.y10e{bottom:256.415867pt;}
.y103{bottom:256.459867pt;}
.y12f{bottom:258.258000pt;}
.yf8{bottom:261.602000pt;}
.y158{bottom:267.542000pt;}
.y62{bottom:269.830133pt;}
.ycb{bottom:273.379333pt;}
.y84{bottom:274.171467pt;}
.y10d{bottom:275.086533pt;}
.y102{bottom:275.130533pt;}
.y12e{bottom:276.928667pt;}
.y3b{bottom:283.005333pt;}
.y61{bottom:288.500800pt;}
.y83{bottom:292.842133pt;}
.y10c{bottom:293.757200pt;}
.y101{bottom:293.801200pt;}
.yf7{bottom:295.394000pt;}
.y3a{bottom:297.405333pt;}
.y157{bottom:299.324667pt;}
.yca{bottom:307.171333pt;}
.y60{bottom:307.171467pt;}
.y12d{bottom:310.720667pt;}
.y82{bottom:311.512800pt;}
.y10b{bottom:312.427867pt;}
.y100{bottom:312.471867pt;}
.yf6{bottom:314.064667pt;}
.y156{bottom:315.986000pt;}
.yc9{bottom:325.842000pt;}
.y5f{bottom:325.842133pt;}
.y81{bottom:330.183467pt;}
.yf5{bottom:332.735333pt;}
.y117{bottom:335.035200pt;}
.y39{bottom:341.805733pt;}
.yc8{bottom:344.512667pt;}
.y5e{bottom:344.512800pt;}
.y155{bottom:347.768667pt;}
.y116{bottom:351.168533pt;}
.yf4{bottom:351.406000pt;}
.y38{bottom:359.405733pt;}
.y8d{bottom:360.586133pt;}
.yc7{bottom:363.183333pt;}
.y5d{bottom:363.183467pt;}
.y154{bottom:364.430000pt;}
.yf3{bottom:370.076667pt;}
.y37{bottom:377.005733pt;}
.y153{bottom:381.091333pt;}
.yc6{bottom:381.854000pt;}
.y5c{bottom:381.854133pt;}
.yf2{bottom:388.747333pt;}
.y17b{bottom:390.534800pt;}
.y36{bottom:394.605733pt;}
.yc5{bottom:400.524667pt;}
.y5b{bottom:400.524800pt;}
.y22{bottom:401.546933pt;}
.yf1{bottom:407.418000pt;}
.y17a{bottom:408.134800pt;}
.y35{bottom:412.205733pt;}
.y152{bottom:412.874000pt;}
.yc4{bottom:419.195333pt;}
.y5a{bottom:419.195467pt;}
.y21{bottom:419.726933pt;}
.y179{bottom:425.734800pt;}
.y34{bottom:429.805733pt;}
.yc3{bottom:437.866000pt;}
.y20{bottom:437.906933pt;}
.yf0{bottom:441.210000pt;}
.y151{bottom:444.656667pt;}
.y33{bottom:447.405733pt;}
.y59{bottom:452.987467pt;}
.y1f{bottom:456.086933pt;}
.y12c{bottom:456.536667pt;}
.yef{bottom:459.880667pt;}
.y150{bottom:461.318000pt;}
.y32{bottom:465.005733pt;}
.y178{bottom:466.619867pt;}
.yc2{bottom:471.658000pt;}
.y12b{bottom:475.207333pt;}
.yee{bottom:478.551333pt;}
.y31{bottom:482.605733pt;}
.y177{bottom:483.286533pt;}
.y58{bottom:486.779467pt;}
.yc1{bottom:490.328667pt;}
.y1e{bottom:492.446933pt;}
.y14f{bottom:493.100667pt;}
.y12a{bottom:493.878000pt;}
.yed{bottom:497.222000pt;}
.y30{bottom:500.205733pt;}
.y57{bottom:505.450133pt;}
.y176{bottom:505.619867pt;}
.yc0{bottom:508.999333pt;}
.y14e{bottom:509.762000pt;}
.y1d{bottom:510.626933pt;}
.y129{bottom:512.548667pt;}
.y2f{bottom:517.805733pt;}
.y175{bottom:522.286533pt;}
.y56{bottom:524.120800pt;}
.y14d{bottom:526.423333pt;}
.ybf{bottom:527.670000pt;}
.y1c{bottom:528.806933pt;}
.yec{bottom:531.014000pt;}
.y128{bottom:531.219333pt;}
.y2e{bottom:535.405733pt;}
.y174{bottom:538.953200pt;}
.y55{bottom:542.791467pt;}
.ybe{bottom:546.340667pt;}
.y1b{bottom:546.986933pt;}
.y127{bottom:549.890000pt;}
.y2d{bottom:553.005733pt;}
.y173{bottom:555.619867pt;}
.y14c{bottom:558.206000pt;}
.y54{bottom:561.462133pt;}
.yeb{bottom:564.806000pt;}
.ybd{bottom:565.011333pt;}
.y126{bottom:568.560667pt;}
.y2c{bottom:570.605733pt;}
.y14b{bottom:574.867333pt;}
.y172{bottom:577.953200pt;}
.y53{bottom:580.132800pt;}
.y1a{bottom:583.346933pt;}
.yea{bottom:583.476667pt;}
.y125{bottom:587.231333pt;}
.y2b{bottom:588.205733pt;}
.y171{bottom:594.619867pt;}
.ybc{bottom:598.803333pt;}
.y52{bottom:598.803467pt;}
.y19{bottom:601.526933pt;}
.ye9{bottom:602.147333pt;}
.y2a{bottom:605.805733pt;}
.y14a{bottom:606.650000pt;}
.y170{bottom:611.286533pt;}
.ybb{bottom:617.474000pt;}
.y18{bottom:619.706933pt;}
.ye8{bottom:620.818000pt;}
.y124{bottom:621.023333pt;}
.y149{bottom:623.311333pt;}
.y29{bottom:623.405733pt;}
.y80{bottom:625.306133pt;}
.y16f{bottom:627.953200pt;}
.y51{bottom:632.595467pt;}
.yba{bottom:636.144667pt;}
.y17{bottom:637.886933pt;}
.y148{bottom:639.972667pt;}
.y28{bottom:641.005733pt;}
.y7f{bottom:643.976800pt;}
.y16e{bottom:650.286533pt;}
.y50{bottom:651.266133pt;}
.ye7{bottom:654.610000pt;}
.yb9{bottom:654.815333pt;}
.y27{bottom:658.605733pt;}
.y7e{bottom:662.647467pt;}
.y16d{bottom:666.953200pt;}
.y4f{bottom:669.936800pt;}
.y115{bottom:670.729200pt;}
.ye6{bottom:673.280667pt;}
.y123{bottom:673.486000pt;}
.y16{bottom:674.246933pt;}
.y26{bottom:676.205733pt;}
.yaf{bottom:676.962000pt;}
.y9e{bottom:677.035333pt;}
.y7d{bottom:681.318133pt;}
.y16c{bottom:683.619867pt;}
.y114{bottom:686.862533pt;}
.yb8{bottom:688.607333pt;}
.y4e{bottom:688.607467pt;}
.ye5{bottom:691.951333pt;}
.y122{bottom:692.156667pt;}
.y15{bottom:692.426933pt;}
.yae{bottom:695.632667pt;}
.y9d{bottom:695.706000pt;}
.y7c{bottom:699.988800pt;}
.y147{bottom:703.538000pt;}
.y25{bottom:705.143067pt;}
.y16b{bottom:705.953200pt;}
.yb7{bottom:707.278000pt;}
.y4d{bottom:707.278133pt;}
.y14{bottom:710.606933pt;}
.ye4{bottom:710.622000pt;}
.y121{bottom:710.827333pt;}
.y9c{bottom:714.376667pt;}
.y7b{bottom:718.659467pt;}
.y146{bottom:722.208667pt;}
.y16a{bottom:722.619867pt;}
.yb6{bottom:725.948667pt;}
.y4c{bottom:725.948800pt;}
.y13{bottom:728.786933pt;}
.ye3{bottom:729.292667pt;}
.yad{bottom:729.424667pt;}
.y120{bottom:729.498000pt;}
.y7a{bottom:737.330133pt;}
.y169{bottom:739.286533pt;}
.y145{bottom:740.879333pt;}
.y12{bottom:743.186933pt;}
.yb5{bottom:744.619333pt;}
.y4b{bottom:744.619467pt;}
.ye2{bottom:747.963333pt;}
.yac{bottom:748.095333pt;}
.y9b{bottom:748.168667pt;}
.y79{bottom:756.000800pt;}
.y11{bottom:757.586933pt;}
.y144{bottom:759.550000pt;}
.y168{bottom:761.619867pt;}
.yb4{bottom:763.290000pt;}
.y4a{bottom:763.290133pt;}
.ye1{bottom:766.634000pt;}
.yab{bottom:766.766000pt;}
.y11f{bottom:766.839333pt;}
.y10{bottom:771.986933pt;}
.y78{bottom:774.671467pt;}
.yd{bottom:778.200267pt;}
.y143{bottom:778.220667pt;}
.y167{bottom:778.286533pt;}
.y9a{bottom:781.960667pt;}
.y49{bottom:781.960800pt;}
.ye0{bottom:785.304667pt;}
.yaa{bottom:785.436667pt;}
.y11e{bottom:785.510000pt;}
.yf{bottom:786.386933pt;}
.yc{bottom:791.000267pt;}
.y77{bottom:793.342133pt;}
.y166{bottom:794.953200pt;}
.y142{bottom:796.891333pt;}
.yb3{bottom:800.631333pt;}
.y48{bottom:800.631467pt;}
.ydf{bottom:803.975333pt;}
.ya9{bottom:804.107333pt;}
.y11d{bottom:804.180667pt;}
.ye{bottom:804.566933pt;}
.yb{bottom:810.628800pt;}
.y76{bottom:812.012800pt;}
.y99{bottom:815.752667pt;}
.y165{bottom:817.286533pt;}
.yde{bottom:822.646000pt;}
.ya8{bottom:822.778000pt;}
.y11c{bottom:822.851333pt;}
.ya{bottom:826.628800pt;}
.y141{bottom:830.683333pt;}
.y75{bottom:830.683467pt;}
.y164{bottom:833.953200pt;}
.y98{bottom:834.423333pt;}
.y47{bottom:834.423467pt;}
.y140{bottom:849.354000pt;}
.y74{bottom:849.354133pt;}
.y163{bottom:850.619867pt;}
.y97{bottom:853.094000pt;}
.y46{bottom:853.094133pt;}
.ydd{bottom:856.438000pt;}
.ya7{bottom:856.570000pt;}
.y11b{bottom:856.643333pt;}
.y8{bottom:860.737600pt;}
.y162{bottom:867.286533pt;}
.y13f{bottom:868.024667pt;}
.y73{bottom:868.024800pt;}
.y96{bottom:871.764667pt;}
.y45{bottom:871.764800pt;}
.ydc{bottom:875.108667pt;}
.y13e{bottom:886.695333pt;}
.y72{bottom:886.695467pt;}
.y7{bottom:889.537600pt;}
.ya6{bottom:890.362000pt;}
.y95{bottom:890.435333pt;}
.y44{bottom:890.435467pt;}
.y161{bottom:891.520667pt;}
.ydb{bottom:893.779333pt;}
.y13d{bottom:905.366000pt;}
.y71{bottom:905.366133pt;}
.ya5{bottom:909.032667pt;}
.y94{bottom:909.106000pt;}
.y43{bottom:909.106133pt;}
.yda{bottom:912.450000pt;}
.y13c{bottom:924.036667pt;}
.y70{bottom:924.036800pt;}
.ya4{bottom:927.703333pt;}
.y93{bottom:927.776667pt;}
.y42{bottom:927.776800pt;}
.yd9{bottom:931.120667pt;}
.y6{bottom:936.485733pt;}
.y13b{bottom:942.707333pt;}
.y6f{bottom:942.707467pt;}
.y11a{bottom:942.898000pt;}
.ya3{bottom:946.374000pt;}
.y92{bottom:946.447333pt;}
.y41{bottom:946.447467pt;}
.yd8{bottom:949.791333pt;}
.y5{bottom:950.885733pt;}
.y160{bottom:956.024667pt;}
.y13a{bottom:961.378000pt;}
.y6e{bottom:961.378133pt;}
.y119{bottom:961.568667pt;}
.y91{bottom:965.118000pt;}
.y40{bottom:965.118133pt;}
.y15f{bottom:972.686000pt;}
.y139{bottom:980.048667pt;}
.y6d{bottom:980.048800pt;}
.ya2{bottom:980.166000pt;}
.y118{bottom:980.239333pt;}
.yd7{bottom:983.583333pt;}
.y90{bottom:983.788667pt;}
.y3f{bottom:983.788800pt;}
.y9{bottom:998.382000pt;}
.y138{bottom:998.719333pt;}
.y6c{bottom:998.719467pt;}
.ya1{bottom:998.836667pt;}
.yb2{bottom:998.910000pt;}
.y3e{bottom:1002.459467pt;}
.y15e{bottom:1004.468667pt;}
.yd6{bottom:1017.375333pt;}
.y137{bottom:1017.390000pt;}
.y6b{bottom:1017.390133pt;}
.ya0{bottom:1017.507333pt;}
.y8f{bottom:1017.580667pt;}
.yd5{bottom:1036.046000pt;}
.y136{bottom:1036.060667pt;}
.y6a{bottom:1036.060800pt;}
.y9f{bottom:1036.178000pt;}
.y8e{bottom:1036.251333pt;}
.y3d{bottom:1036.251467pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y3c{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.ha{height:32.083333pt;}
.h6{height:35.531250pt;}
.hb{height:36.093750pt;}
.h3{height:39.479167pt;}
.h4{height:40.104167pt;}
.hc{height:41.015625pt;}
.h5{height:42.024354pt;}
.h12{height:43.427083pt;}
.h14{height:43.593750pt;}
.hd{height:44.114583pt;}
.h8{height:45.562500pt;}
.h13{height:45.572917pt;}
.h9{height:45.729167pt;}
.he{height:47.953125pt;}
.h10{height:48.125000pt;}
.hf{height:50.130208pt;}
.h11{height:50.302083pt;}
.h7{height:72.187500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:5.433467pt;}
.xe{left:13.389467pt;}
.xb{left:14.805467pt;}
.xd{left:16.809467pt;}
.xc{left:19.089467pt;}
.x16{left:20.577467pt;}
.x12{left:29.373467pt;}
.x14{left:31.893467pt;}
.x5{left:35.194933pt;}
.x15{left:43.197467pt;}
.xa{left:47.637467pt;}
.x6{left:53.086933pt;}
.xf{left:55.221467pt;}
.x1a{left:56.692933pt;}
.x17{left:59.241467pt;}
.x1f{left:62.535600pt;}
.x19{left:64.251867pt;}
.x11{left:75.621467pt;}
.x1e{left:80.692933pt;}
.x10{left:90.141467pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.x18{left:206.921600pt;}
.x4{left:274.165600pt;}
.x1{left:362.702533pt;}
.x1b{left:410.262267pt;}
.x1c{left:415.908933pt;}
.x1d{left:434.066267pt;}
.x8{left:628.836000pt;}
.x3{left:710.070667pt;}
}




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