
    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_d365520b52bda67a717c4db5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.945312;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_caf288ba6da4d9156dc0ded9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026000;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_faebd76c35d886641d8707f3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_96b614d7f473341693816cff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.857422;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_abb95fef243ad9a4d3038ae0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_1e14921a72d554886fb42d5e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_e5be4b82b15ad92eedd4b28a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.032000;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_efb6dc98deb0bc6f7084571f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948730;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;}
.m1{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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.820000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.846000px;}
.ls28{letter-spacing:-3.540000px;}
.ls2d{letter-spacing:-2.280000px;}
.ls35{letter-spacing:-2.160000px;}
.ls2a{letter-spacing:-1.560000px;}
.ls2c{letter-spacing:-0.780000px;}
.ls2e{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.604800px;}
.ls34{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.462000px;}
.ls14{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.264000px;}
.ls26{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.198000px;}
.ls23{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.132000px;}
.lsa{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.066000px;}
.lsf{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.060000px;}
.ls1c{letter-spacing:0.066000px;}
.ls1e{letter-spacing:0.270000px;}
.ls33{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.330000px;}
.ls7{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.396000px;}
.ls20{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.528000px;}
.ls24{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.594000px;}
.ls21{letter-spacing:0.600000px;}
.ls13{letter-spacing:0.660000px;}
.ls1f{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.726000px;}
.ls30{letter-spacing:0.780000px;}
.ls27{letter-spacing:0.840000px;}
.ls25{letter-spacing:0.900000px;}
.lsc{letter-spacing:0.990000px;}
.ls2f{letter-spacing:1.020000px;}
.ls6{letter-spacing:1.056120px;}
.ls32{letter-spacing:1.080000px;}
.ls1a{letter-spacing:1.242000px;}
.ls5{letter-spacing:1.254000px;}
.ls31{letter-spacing:1.260000px;}
.ls4{letter-spacing:1.320000px;}
.ls3{letter-spacing:1.518000px;}
.ls22{letter-spacing:1.620000px;}
.ls2{letter-spacing:1.650000px;}
.ls1b{letter-spacing:1.848000px;}
.ls2b{letter-spacing:1.980000px;}
.ls18{letter-spacing:2.158920px;}
.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;}
}
.ws49{word-spacing:-13.200000px;}
.ws4a{word-spacing:-13.068000px;}
.ws13{word-spacing:-13.002000px;}
.ws99{word-spacing:-12.660000px;}
.ws7e{word-spacing:-12.420000px;}
.ws4b{word-spacing:-12.408000px;}
.ws5f{word-spacing:-12.342000px;}
.ws95{word-spacing:-12.240000px;}
.ws7c{word-spacing:-12.120000px;}
.ws96{word-spacing:-11.400000px;}
.ws7d{word-spacing:-11.220000px;}
.ws97{word-spacing:-10.740000px;}
.ws80{word-spacing:-9.840000px;}
.ws98{word-spacing:-9.240000px;}
.ws7f{word-spacing:-7.980000px;}
.ws14{word-spacing:-5.950800px;}
.wsb2{word-spacing:-3.900000px;}
.ws8d{word-spacing:-3.780000px;}
.wsac{word-spacing:-3.660000px;}
.ws76{word-spacing:-3.498000px;}
.ws79{word-spacing:-3.300000px;}
.wsa9{word-spacing:-3.240000px;}
.wsa8{word-spacing:-3.180000px;}
.wsb{word-spacing:-3.168000px;}
.ws30{word-spacing:-3.102000px;}
.wsad{word-spacing:-3.060000px;}
.ws62{word-spacing:-3.036000px;}
.wsb1{word-spacing:-3.000000px;}
.ws55{word-spacing:-2.970000px;}
.ws6b{word-spacing:-2.916000px;}
.ws63{word-spacing:-2.904000px;}
.ws18{word-spacing:-2.880000px;}
.ws33{word-spacing:-2.838000px;}
.ws16{word-spacing:-2.820000px;}
.ws68{word-spacing:-2.706000px;}
.ws78{word-spacing:-2.640000px;}
.ws1e{word-spacing:-2.574000px;}
.ws75{word-spacing:-2.508000px;}
.ws93{word-spacing:-2.460000px;}
.ws2e{word-spacing:-2.400000px;}
.ws1c{word-spacing:-2.376000px;}
.wsb6{word-spacing:-2.340000px;}
.ws70{word-spacing:-2.310000px;}
.ws3e{word-spacing:-2.280000px;}
.ws71{word-spacing:-2.244000px;}
.ws2d{word-spacing:-2.220000px;}
.ws67{word-spacing:-2.178000px;}
.ws3c{word-spacing:-2.160000px;}
.ws72{word-spacing:-2.112000px;}
.ws81{word-spacing:-2.046000px;}
.ws89{word-spacing:-2.040000px;}
.ws6d{word-spacing:-1.980000px;}
.ws3b{word-spacing:-1.920000px;}
.ws44{word-spacing:-1.914000px;}
.ws1a{word-spacing:-1.740000px;}
.ws56{word-spacing:-1.716000px;}
.ws6c{word-spacing:-1.674000px;}
.ws31{word-spacing:-1.650000px;}
.ws87{word-spacing:-1.620000px;}
.ws47{word-spacing:-1.584000px;}
.ws43{word-spacing:-1.386000px;}
.ws45{word-spacing:-1.320000px;}
.ws8{word-spacing:-1.254000px;}
.ws17{word-spacing:-1.200000px;}
.wsc{word-spacing:-1.188000px;}
.ws2c{word-spacing:-1.080000px;}
.ws26{word-spacing:-1.056000px;}
.ws7a{word-spacing:-0.990000px;}
.ws2b{word-spacing:-0.924000px;}
.ws9d{word-spacing:-0.900000px;}
.ws66{word-spacing:-0.858000px;}
.wsb5{word-spacing:-0.840000px;}
.ws48{word-spacing:-0.792000px;}
.wsaa{word-spacing:-0.780000px;}
.ws39{word-spacing:-0.726000px;}
.ws84{word-spacing:-0.720000px;}
.wsab{word-spacing:-0.600000px;}
.ws2{word-spacing:-0.594000px;}
.ws27{word-spacing:-0.528000px;}
.ws36{word-spacing:-0.462000px;}
.ws94{word-spacing:-0.420000px;}
.ws46{word-spacing:-0.396000px;}
.ws15{word-spacing:-0.360000px;}
.ws6e{word-spacing:-0.330000px;}
.ws83{word-spacing:-0.270000px;}
.ws77{word-spacing:-0.264000px;}
.ws22{word-spacing:-0.198000px;}
.ws8f{word-spacing:-0.180000px;}
.ws50{word-spacing:-0.132000px;}
.ws9{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws19{word-spacing:0.060000px;}
.wsa5{word-spacing:0.120000px;}
.ws20{word-spacing:0.132000px;}
.ws8a{word-spacing:0.180000px;}
.wsa{word-spacing:0.198000px;}
.ws25{word-spacing:0.264000px;}
.ws1f{word-spacing:0.330000px;}
.wsaf{word-spacing:0.360000px;}
.ws7{word-spacing:0.396000px;}
.ws28{word-spacing:0.462000px;}
.ws52{word-spacing:0.594000px;}
.ws1{word-spacing:0.604800px;}
.ws37{word-spacing:0.660000px;}
.wsf{word-spacing:0.726000px;}
.wsd{word-spacing:0.792000px;}
.ws59{word-spacing:0.858000px;}
.wsa3{word-spacing:0.900000px;}
.ws3f{word-spacing:0.924000px;}
.ws74{word-spacing:0.990000px;}
.wsa1{word-spacing:1.080000px;}
.ws12{word-spacing:1.092000px;}
.ws2f{word-spacing:1.122000px;}
.ws6a{word-spacing:1.134000px;}
.wsa2{word-spacing:1.140000px;}
.ws92{word-spacing:1.260000px;}
.ws51{word-spacing:1.320000px;}
.ws32{word-spacing:1.386000px;}
.ws9c{word-spacing:1.440000px;}
.ws42{word-spacing:1.452000px;}
.ws35{word-spacing:1.518000px;}
.ws6{word-spacing:1.584000px;}
.ws5b{word-spacing:1.650000px;}
.ws5d{word-spacing:1.716000px;}
.wsa7{word-spacing:1.740000px;}
.ws10{word-spacing:1.782000px;}
.ws4f{word-spacing:1.848000px;}
.ws1d{word-spacing:1.914000px;}
.wsa6{word-spacing:2.040000px;}
.ws69{word-spacing:2.046000px;}
.wsae{word-spacing:2.160000px;}
.ws23{word-spacing:2.178000px;}
.wse{word-spacing:2.244000px;}
.wsb0{word-spacing:2.280000px;}
.ws41{word-spacing:2.310000px;}
.ws90{word-spacing:2.340000px;}
.ws38{word-spacing:2.376000px;}
.ws5c{word-spacing:2.442000px;}
.ws1b{word-spacing:2.508000px;}
.ws3{word-spacing:2.574000px;}
.ws57{word-spacing:2.640000px;}
.ws8c{word-spacing:2.700000px;}
.ws5e{word-spacing:2.706000px;}
.ws4{word-spacing:2.772000px;}
.ws40{word-spacing:2.838000px;}
.ws3a{word-spacing:2.904000px;}
.ws4d{word-spacing:3.102000px;}
.ws58{word-spacing:3.168000px;}
.ws65{word-spacing:3.234000px;}
.wsb3{word-spacing:3.240000px;}
.ws3d{word-spacing:3.300000px;}
.ws73{word-spacing:3.432000px;}
.ws54{word-spacing:3.564000px;}
.ws5{word-spacing:3.630000px;}
.ws82{word-spacing:3.762000px;}
.ws8b{word-spacing:3.780000px;}
.ws4e{word-spacing:3.828000px;}
.wsb4{word-spacing:3.960000px;}
.ws9b{word-spacing:4.020000px;}
.ws29{word-spacing:4.026000px;}
.wsa4{word-spacing:4.080000px;}
.ws21{word-spacing:4.092000px;}
.ws11{word-spacing:4.158000px;}
.ws9e{word-spacing:4.200000px;}
.ws9f{word-spacing:4.260000px;}
.ws64{word-spacing:4.290000px;}
.wsa0{word-spacing:4.320000px;}
.ws7b{word-spacing:4.488000px;}
.ws60{word-spacing:4.554000px;}
.ws2a{word-spacing:4.620000px;}
.ws9a{word-spacing:4.860000px;}
.ws61{word-spacing:4.884000px;}
.ws4c{word-spacing:4.950000px;}
.ws34{word-spacing:5.082000px;}
.ws53{word-spacing:5.412000px;}
.ws24{word-spacing:5.478000px;}
.ws91{word-spacing:5.640000px;}
.ws85{word-spacing:5.700000px;}
.ws86{word-spacing:5.760000px;}
.ws88{word-spacing:6.060000px;}
.ws6f{word-spacing:6.204000px;}
.ws5a{word-spacing:6.270000px;}
.ws8e{word-spacing:6.660000px;}
._7{margin-left:-7.745400px;}
._a{margin-left:-6.078120px;}
._3{margin-left:-4.349400px;}
._6{margin-left:-2.899320px;}
._0{margin-left:-1.474200px;}
._2{width:1.043280px;}
._1{width:2.079000px;}
._4{width:3.094440px;}
._9{width:4.529520px;}
._c{width:5.588760px;}
._5{width:6.735720px;}
._b{width:41.741880px;}
._8{width:42.875880px;}
.fc1{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.320000px;}
.fs6{font-size:38.280000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:45.000000px;}
.fs8{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.600000px;}
.y0{bottom:0.000000px;}
.y20{bottom:70.883850px;}
.y1f{bottom:99.911250px;}
.y9d{bottom:99.924450px;}
.y93{bottom:102.416400px;}
.y76{bottom:102.448050px;}
.yf4{bottom:103.499400px;}
.y4a{bottom:104.376450px;}
.yc4{bottom:106.476000px;}
.y1e{bottom:111.912750px;}
.y9c{bottom:114.922950px;}
.yf3{bottom:119.999400px;}
.y92{bottom:120.417900px;}
.y75{bottom:120.449550px;}
.yc3{bottom:122.976000px;}
.y1d{bottom:123.914250px;}
.y9b{bottom:134.376450px;}
.y1c{bottom:135.915750px;}
.yf2{bottom:136.499400px;}
.y91{bottom:138.419400px;}
.y74{bottom:138.451050px;}
.yc2{bottom:139.476000px;}
.y1b{bottom:152.169750px;}
.yf1{bottom:152.999400px;}
.yc1{bottom:155.976000px;}
.y90{bottom:156.420900px;}
.y73{bottom:156.452550px;}
.y1a{bottom:164.171250px;}
.y49{bottom:166.487550px;}
.yf0{bottom:169.499400px;}
.yc0{bottom:172.476000px;}
.y8f{bottom:174.422400px;}
.y72{bottom:174.454050px;}
.y19{bottom:180.425250px;}
.y48{bottom:184.489050px;}
.yef{bottom:185.999400px;}
.ybf{bottom:188.976000px;}
.y8e{bottom:192.423900px;}
.y71{bottom:192.455550px;}
.y9a{bottom:192.471900px;}
.y47{bottom:202.490550px;}
.yee{bottom:202.499400px;}
.ybe{bottom:205.476000px;}
.y8d{bottom:210.425400px;}
.y70{bottom:210.457050px;}
.y99{bottom:210.473400px;}
.yed{bottom:218.999400px;}
.y46{bottom:220.492050px;}
.ybd{bottom:221.976000px;}
.y8c{bottom:228.426900px;}
.y6f{bottom:228.458550px;}
.y98{bottom:228.474900px;}
.yec{bottom:235.499400px;}
.ybc{bottom:238.476000px;}
.y45{bottom:238.493550px;}
.y8b{bottom:246.428400px;}
.y6e{bottom:246.460050px;}
.y97{bottom:246.476400px;}
.y18{bottom:248.685300px;}
.yeb{bottom:251.999400px;}
.ybb{bottom:254.976000px;}
.y44{bottom:256.495050px;}
.y8a{bottom:264.429900px;}
.y6d{bottom:264.461550px;}
.y96{bottom:264.477900px;}
.y17{bottom:266.686800px;}
.yea{bottom:268.499400px;}
.yba{bottom:271.476000px;}
.y43{bottom:274.496550px;}
.y89{bottom:282.431400px;}
.y6c{bottom:282.463050px;}
.y95{bottom:282.479400px;}
.y16{bottom:284.688300px;}
.ye9{bottom:284.999400px;}
.yb9{bottom:287.976000px;}
.y88{bottom:300.432900px;}
.y6b{bottom:300.464550px;}
.y94{bottom:300.480900px;}
.y42{bottom:301.498050px;}
.ye8{bottom:301.499400px;}
.y15{bottom:302.689800px;}
.yb8{bottom:304.476000px;}
.ye7{bottom:317.999400px;}
.y87{bottom:318.434400px;}
.y6a{bottom:318.466050px;}
.y41{bottom:319.498050px;}
.y14{bottom:320.691300px;}
.yb7{bottom:320.976000px;}
.ye6{bottom:334.499400px;}
.y86{bottom:336.435900px;}
.y69{bottom:336.467550px;}
.yb6{bottom:337.476000px;}
.y40{bottom:337.498050px;}
.y13{bottom:338.692800px;}
.ye5{bottom:350.999400px;}
.yb5{bottom:353.976000px;}
.y85{bottom:354.437400px;}
.y68{bottom:354.469050px;}
.y3f{bottom:355.498050px;}
.y12{bottom:356.694300px;}
.ye4{bottom:367.499400px;}
.yb4{bottom:370.476000px;}
.y84{bottom:372.438900px;}
.y67{bottom:372.470550px;}
.y3e{bottom:373.498050px;}
.y11{bottom:374.695800px;}
.ye3{bottom:383.999400px;}
.yb3{bottom:386.976000px;}
.y83{bottom:390.440400px;}
.y66{bottom:390.472050px;}
.y3d{bottom:391.498050px;}
.y10{bottom:392.697300px;}
.ye2{bottom:400.499400px;}
.yb2{bottom:403.476000px;}
.y82{bottom:408.441900px;}
.y65{bottom:408.473550px;}
.yf{bottom:410.698800px;}
.ye1{bottom:416.999400px;}
.y3c{bottom:418.486050px;}
.yb1{bottom:419.976000px;}
.y81{bottom:426.443400px;}
.y64{bottom:426.475050px;}
.ye{bottom:428.700300px;}
.ye0{bottom:433.499400px;}
.yb0{bottom:436.476000px;}
.y3b{bottom:436.487550px;}
.y80{bottom:444.444900px;}
.y63{bottom:444.476550px;}
.yd{bottom:446.701800px;}
.ydf{bottom:449.999400px;}
.yaf{bottom:452.976000px;}
.y3a{bottom:454.489050px;}
.y7f{bottom:462.446400px;}
.y62{bottom:462.478050px;}
.yc{bottom:464.703300px;}
.yde{bottom:466.499400px;}
.yae{bottom:469.476000px;}
.y39{bottom:472.490550px;}
.y7e{bottom:480.447900px;}
.y61{bottom:480.479550px;}
.yb{bottom:482.704800px;}
.ydd{bottom:482.999400px;}
.yad{bottom:485.976000px;}
.y38{bottom:490.492050px;}
.y7d{bottom:498.449400px;}
.y60{bottom:498.481050px;}
.ydc{bottom:499.499400px;}
.ya{bottom:500.706300px;}
.yac{bottom:502.476000px;}
.y37{bottom:508.493550px;}
.ydb{bottom:515.999400px;}
.y7c{bottom:516.450900px;}
.y9{bottom:518.707800px;}
.yab{bottom:518.976000px;}
.y5f{bottom:525.482400px;}
.y36{bottom:526.495050px;}
.yda{bottom:532.499400px;}
.y7b{bottom:534.452400px;}
.yaa{bottom:535.476000px;}
.y8{bottom:536.709300px;}
.y5e{bottom:543.482400px;}
.y35{bottom:544.496550px;}
.yd9{bottom:548.999400px;}
.ya9{bottom:551.976000px;}
.y7a{bottom:552.453900px;}
.y7{bottom:554.710800px;}
.y5d{bottom:561.482400px;}
.y34{bottom:562.481550px;}
.yd8{bottom:565.499400px;}
.ya8{bottom:568.476000px;}
.y79{bottom:570.455400px;}
.y6{bottom:572.712300px;}
.y5c{bottom:579.482400px;}
.y33{bottom:580.483050px;}
.yd7{bottom:581.999400px;}
.ya7{bottom:584.976000px;}
.y78{bottom:588.456900px;}
.y5{bottom:590.713800px;}
.y5b{bottom:597.482400px;}
.y32{bottom:598.484550px;}
.yd6{bottom:598.499400px;}
.ya6{bottom:601.476000px;}
.y77{bottom:606.458400px;}
.y4{bottom:608.715300px;}
.yd5{bottom:614.999400px;}
.y31{bottom:616.486050px;}
.ya5{bottom:617.976000px;}
.y5a{bottom:624.459900px;}
.yd4{bottom:631.499400px;}
.ya4{bottom:634.476000px;}
.y30{bottom:634.487550px;}
.y59{bottom:642.461400px;}
.yd3{bottom:647.999400px;}
.ya3{bottom:650.976000px;}
.y2f{bottom:652.489050px;}
.y58{bottom:660.462900px;}
.yd2{bottom:664.499400px;}
.ya2{bottom:667.476000px;}
.y2e{bottom:670.490550px;}
.y57{bottom:678.464400px;}
.yd1{bottom:680.999400px;}
.ya1{bottom:683.976000px;}
.y2d{bottom:688.492050px;}
.y56{bottom:696.465900px;}
.yd0{bottom:697.499400px;}
.ya0{bottom:700.476000px;}
.y2c{bottom:706.493550px;}
.ycf{bottom:713.999400px;}
.y55{bottom:714.467400px;}
.y9f{bottom:716.976000px;}
.y2b{bottom:724.495050px;}
.yce{bottom:730.499400px;}
.y54{bottom:732.468900px;}
.y2a{bottom:742.496550px;}
.y9e{bottom:742.970550px;}
.ycd{bottom:746.999400px;}
.y53{bottom:750.470400px;}
.y29{bottom:760.498050px;}
.ycc{bottom:763.499400px;}
.y52{bottom:768.471900px;}
.ycb{bottom:779.999400px;}
.y51{bottom:786.473400px;}
.y28{bottom:787.499400px;}
.yca{bottom:796.499400px;}
.y50{bottom:804.474900px;}
.y27{bottom:805.499400px;}
.yc9{bottom:812.999400px;}
.y4f{bottom:822.476400px;}
.y26{bottom:823.499400px;}
.yc8{bottom:829.499400px;}
.y3{bottom:835.215300px;}
.y4e{bottom:840.477900px;}
.y25{bottom:841.499400px;}
.yc7{bottom:845.999400px;}
.y4d{bottom:858.479400px;}
.y24{bottom:859.499400px;}
.yc6{bottom:862.499400px;}
.y2{bottom:864.725550px;}
.y4c{bottom:876.480900px;}
.y23{bottom:877.499400px;}
.yc5{bottom:878.999400px;}
.y1{bottom:889.919250px;}
.y4b{bottom:894.482400px;}
.y22{bottom:895.499400px;}
.y21{bottom:934.435800px;}
.hb{height:23.740560px;}
.h5{height:30.618164px;}
.h7{height:33.156738px;}
.hf{height:39.287109px;}
.he{height:40.932000px;}
.hd{height:41.256000px;}
.h6{height:44.208984px;}
.h8{height:45.480000px;}
.h10{height:45.840000px;}
.h4{height:50.028000px;}
.ha{height:50.424000px;}
.h9{height:50.862240px;}
.hc{height:50.988240px;}
.h3{height:54.576000px;}
.h2{height:55.703320px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x3{left:85.039350px;}
.x1{left:106.299150px;}
.x6{left:123.310200px;}
.x2{left:127.559100px;}
.x5{left:385.507950px;}
.x4{left:570.248700px;}
@media print{
.v2{vertical-align:-15.840000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.418667pt;}
.ls28{letter-spacing:-3.146667pt;}
.ls2d{letter-spacing:-2.026667pt;}
.ls35{letter-spacing:-1.920000pt;}
.ls2a{letter-spacing:-1.386667pt;}
.ls2c{letter-spacing:-0.693333pt;}
.ls2e{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.537600pt;}
.ls34{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.410667pt;}
.ls14{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.234667pt;}
.ls26{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.176000pt;}
.ls23{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.117333pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.058667pt;}
.lsf{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.053333pt;}
.ls1c{letter-spacing:0.058667pt;}
.ls1e{letter-spacing:0.240000pt;}
.ls33{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.293333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.352000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.469333pt;}
.ls24{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.528000pt;}
.ls21{letter-spacing:0.533333pt;}
.ls13{letter-spacing:0.586667pt;}
.ls1f{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.645333pt;}
.ls30{letter-spacing:0.693333pt;}
.ls27{letter-spacing:0.746667pt;}
.ls25{letter-spacing:0.800000pt;}
.lsc{letter-spacing:0.880000pt;}
.ls2f{letter-spacing:0.906667pt;}
.ls6{letter-spacing:0.938773pt;}
.ls32{letter-spacing:0.960000pt;}
.ls1a{letter-spacing:1.104000pt;}
.ls5{letter-spacing:1.114667pt;}
.ls31{letter-spacing:1.120000pt;}
.ls4{letter-spacing:1.173333pt;}
.ls3{letter-spacing:1.349333pt;}
.ls22{letter-spacing:1.440000pt;}
.ls2{letter-spacing:1.466667pt;}
.ls1b{letter-spacing:1.642667pt;}
.ls2b{letter-spacing:1.760000pt;}
.ls18{letter-spacing:1.919040pt;}
.ws49{word-spacing:-11.733333pt;}
.ws4a{word-spacing:-11.616000pt;}
.ws13{word-spacing:-11.557333pt;}
.ws99{word-spacing:-11.253333pt;}
.ws7e{word-spacing:-11.040000pt;}
.ws4b{word-spacing:-11.029333pt;}
.ws5f{word-spacing:-10.970667pt;}
.ws95{word-spacing:-10.880000pt;}
.ws7c{word-spacing:-10.773333pt;}
.ws96{word-spacing:-10.133333pt;}
.ws7d{word-spacing:-9.973333pt;}
.ws97{word-spacing:-9.546667pt;}
.ws80{word-spacing:-8.746667pt;}
.ws98{word-spacing:-8.213333pt;}
.ws7f{word-spacing:-7.093333pt;}
.ws14{word-spacing:-5.289600pt;}
.wsb2{word-spacing:-3.466667pt;}
.ws8d{word-spacing:-3.360000pt;}
.wsac{word-spacing:-3.253333pt;}
.ws76{word-spacing:-3.109333pt;}
.ws79{word-spacing:-2.933333pt;}
.wsa9{word-spacing:-2.880000pt;}
.wsa8{word-spacing:-2.826667pt;}
.wsb{word-spacing:-2.816000pt;}
.ws30{word-spacing:-2.757333pt;}
.wsad{word-spacing:-2.720000pt;}
.ws62{word-spacing:-2.698667pt;}
.wsb1{word-spacing:-2.666667pt;}
.ws55{word-spacing:-2.640000pt;}
.ws6b{word-spacing:-2.592000pt;}
.ws63{word-spacing:-2.581333pt;}
.ws18{word-spacing:-2.560000pt;}
.ws33{word-spacing:-2.522667pt;}
.ws16{word-spacing:-2.506667pt;}
.ws68{word-spacing:-2.405333pt;}
.ws78{word-spacing:-2.346667pt;}
.ws1e{word-spacing:-2.288000pt;}
.ws75{word-spacing:-2.229333pt;}
.ws93{word-spacing:-2.186667pt;}
.ws2e{word-spacing:-2.133333pt;}
.ws1c{word-spacing:-2.112000pt;}
.wsb6{word-spacing:-2.080000pt;}
.ws70{word-spacing:-2.053333pt;}
.ws3e{word-spacing:-2.026667pt;}
.ws71{word-spacing:-1.994667pt;}
.ws2d{word-spacing:-1.973333pt;}
.ws67{word-spacing:-1.936000pt;}
.ws3c{word-spacing:-1.920000pt;}
.ws72{word-spacing:-1.877333pt;}
.ws81{word-spacing:-1.818667pt;}
.ws89{word-spacing:-1.813333pt;}
.ws6d{word-spacing:-1.760000pt;}
.ws3b{word-spacing:-1.706667pt;}
.ws44{word-spacing:-1.701333pt;}
.ws1a{word-spacing:-1.546667pt;}
.ws56{word-spacing:-1.525333pt;}
.ws6c{word-spacing:-1.488000pt;}
.ws31{word-spacing:-1.466667pt;}
.ws87{word-spacing:-1.440000pt;}
.ws47{word-spacing:-1.408000pt;}
.ws43{word-spacing:-1.232000pt;}
.ws45{word-spacing:-1.173333pt;}
.ws8{word-spacing:-1.114667pt;}
.ws17{word-spacing:-1.066667pt;}
.wsc{word-spacing:-1.056000pt;}
.ws2c{word-spacing:-0.960000pt;}
.ws26{word-spacing:-0.938667pt;}
.ws7a{word-spacing:-0.880000pt;}
.ws2b{word-spacing:-0.821333pt;}
.ws9d{word-spacing:-0.800000pt;}
.ws66{word-spacing:-0.762667pt;}
.wsb5{word-spacing:-0.746667pt;}
.ws48{word-spacing:-0.704000pt;}
.wsaa{word-spacing:-0.693333pt;}
.ws39{word-spacing:-0.645333pt;}
.ws84{word-spacing:-0.640000pt;}
.wsab{word-spacing:-0.533333pt;}
.ws2{word-spacing:-0.528000pt;}
.ws27{word-spacing:-0.469333pt;}
.ws36{word-spacing:-0.410667pt;}
.ws94{word-spacing:-0.373333pt;}
.ws46{word-spacing:-0.352000pt;}
.ws15{word-spacing:-0.320000pt;}
.ws6e{word-spacing:-0.293333pt;}
.ws83{word-spacing:-0.240000pt;}
.ws77{word-spacing:-0.234667pt;}
.ws22{word-spacing:-0.176000pt;}
.ws8f{word-spacing:-0.160000pt;}
.ws50{word-spacing:-0.117333pt;}
.ws9{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws19{word-spacing:0.053333pt;}
.wsa5{word-spacing:0.106667pt;}
.ws20{word-spacing:0.117333pt;}
.ws8a{word-spacing:0.160000pt;}
.wsa{word-spacing:0.176000pt;}
.ws25{word-spacing:0.234667pt;}
.ws1f{word-spacing:0.293333pt;}
.wsaf{word-spacing:0.320000pt;}
.ws7{word-spacing:0.352000pt;}
.ws28{word-spacing:0.410667pt;}
.ws52{word-spacing:0.528000pt;}
.ws1{word-spacing:0.537600pt;}
.ws37{word-spacing:0.586667pt;}
.wsf{word-spacing:0.645333pt;}
.wsd{word-spacing:0.704000pt;}
.ws59{word-spacing:0.762667pt;}
.wsa3{word-spacing:0.800000pt;}
.ws3f{word-spacing:0.821333pt;}
.ws74{word-spacing:0.880000pt;}
.wsa1{word-spacing:0.960000pt;}
.ws12{word-spacing:0.970667pt;}
.ws2f{word-spacing:0.997333pt;}
.ws6a{word-spacing:1.008000pt;}
.wsa2{word-spacing:1.013333pt;}
.ws92{word-spacing:1.120000pt;}
.ws51{word-spacing:1.173333pt;}
.ws32{word-spacing:1.232000pt;}
.ws9c{word-spacing:1.280000pt;}
.ws42{word-spacing:1.290667pt;}
.ws35{word-spacing:1.349333pt;}
.ws6{word-spacing:1.408000pt;}
.ws5b{word-spacing:1.466667pt;}
.ws5d{word-spacing:1.525333pt;}
.wsa7{word-spacing:1.546667pt;}
.ws10{word-spacing:1.584000pt;}
.ws4f{word-spacing:1.642667pt;}
.ws1d{word-spacing:1.701333pt;}
.wsa6{word-spacing:1.813333pt;}
.ws69{word-spacing:1.818667pt;}
.wsae{word-spacing:1.920000pt;}
.ws23{word-spacing:1.936000pt;}
.wse{word-spacing:1.994667pt;}
.wsb0{word-spacing:2.026667pt;}
.ws41{word-spacing:2.053333pt;}
.ws90{word-spacing:2.080000pt;}
.ws38{word-spacing:2.112000pt;}
.ws5c{word-spacing:2.170667pt;}
.ws1b{word-spacing:2.229333pt;}
.ws3{word-spacing:2.288000pt;}
.ws57{word-spacing:2.346667pt;}
.ws8c{word-spacing:2.400000pt;}
.ws5e{word-spacing:2.405333pt;}
.ws4{word-spacing:2.464000pt;}
.ws40{word-spacing:2.522667pt;}
.ws3a{word-spacing:2.581333pt;}
.ws4d{word-spacing:2.757333pt;}
.ws58{word-spacing:2.816000pt;}
.ws65{word-spacing:2.874667pt;}
.wsb3{word-spacing:2.880000pt;}
.ws3d{word-spacing:2.933333pt;}
.ws73{word-spacing:3.050667pt;}
.ws54{word-spacing:3.168000pt;}
.ws5{word-spacing:3.226667pt;}
.ws82{word-spacing:3.344000pt;}
.ws8b{word-spacing:3.360000pt;}
.ws4e{word-spacing:3.402667pt;}
.wsb4{word-spacing:3.520000pt;}
.ws9b{word-spacing:3.573333pt;}
.ws29{word-spacing:3.578667pt;}
.wsa4{word-spacing:3.626667pt;}
.ws21{word-spacing:3.637333pt;}
.ws11{word-spacing:3.696000pt;}
.ws9e{word-spacing:3.733333pt;}
.ws9f{word-spacing:3.786667pt;}
.ws64{word-spacing:3.813333pt;}
.wsa0{word-spacing:3.840000pt;}
.ws7b{word-spacing:3.989333pt;}
.ws60{word-spacing:4.048000pt;}
.ws2a{word-spacing:4.106667pt;}
.ws9a{word-spacing:4.320000pt;}
.ws61{word-spacing:4.341333pt;}
.ws4c{word-spacing:4.400000pt;}
.ws34{word-spacing:4.517333pt;}
.ws53{word-spacing:4.810667pt;}
.ws24{word-spacing:4.869333pt;}
.ws91{word-spacing:5.013333pt;}
.ws85{word-spacing:5.066667pt;}
.ws86{word-spacing:5.120000pt;}
.ws88{word-spacing:5.386667pt;}
.ws6f{word-spacing:5.514667pt;}
.ws5a{word-spacing:5.573333pt;}
.ws8e{word-spacing:5.920000pt;}
._7{margin-left:-6.884800pt;}
._a{margin-left:-5.402773pt;}
._3{margin-left:-3.866133pt;}
._6{margin-left:-2.577173pt;}
._0{margin-left:-1.310400pt;}
._2{width:0.927360pt;}
._1{width:1.848000pt;}
._4{width:2.750613pt;}
._9{width:4.026240pt;}
._c{width:4.967787pt;}
._5{width:5.987307pt;}
._b{width:37.103893pt;}
._8{width:38.111893pt;}
.fs7{font-size:27.840000pt;}
.fs6{font-size:34.026667pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:40.000000pt;}
.fs8{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:67.200000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:63.007867pt;}
.y1f{bottom:88.810000pt;}
.y9d{bottom:88.821733pt;}
.y93{bottom:91.036800pt;}
.y76{bottom:91.064933pt;}
.yf4{bottom:91.999467pt;}
.y4a{bottom:92.779067pt;}
.yc4{bottom:94.645333pt;}
.y1e{bottom:99.478000pt;}
.y9c{bottom:102.153733pt;}
.yf3{bottom:106.666133pt;}
.y92{bottom:107.038133pt;}
.y75{bottom:107.066267pt;}
.yc3{bottom:109.312000pt;}
.y1d{bottom:110.146000pt;}
.y9b{bottom:119.445733pt;}
.y1c{bottom:120.814000pt;}
.yf2{bottom:121.332800pt;}
.y91{bottom:123.039467pt;}
.y74{bottom:123.067600pt;}
.yc2{bottom:123.978667pt;}
.y1b{bottom:135.262000pt;}
.yf1{bottom:135.999467pt;}
.yc1{bottom:138.645333pt;}
.y90{bottom:139.040800pt;}
.y73{bottom:139.068933pt;}
.y1a{bottom:145.930000pt;}
.y49{bottom:147.988933pt;}
.yf0{bottom:150.666133pt;}
.yc0{bottom:153.312000pt;}
.y8f{bottom:155.042133pt;}
.y72{bottom:155.070267pt;}
.y19{bottom:160.378000pt;}
.y48{bottom:163.990267pt;}
.yef{bottom:165.332800pt;}
.ybf{bottom:167.978667pt;}
.y8e{bottom:171.043467pt;}
.y71{bottom:171.071600pt;}
.y9a{bottom:171.086133pt;}
.y47{bottom:179.991600pt;}
.yee{bottom:179.999467pt;}
.ybe{bottom:182.645333pt;}
.y8d{bottom:187.044800pt;}
.y70{bottom:187.072933pt;}
.y99{bottom:187.087467pt;}
.yed{bottom:194.666133pt;}
.y46{bottom:195.992933pt;}
.ybd{bottom:197.312000pt;}
.y8c{bottom:203.046133pt;}
.y6f{bottom:203.074267pt;}
.y98{bottom:203.088800pt;}
.yec{bottom:209.332800pt;}
.ybc{bottom:211.978667pt;}
.y45{bottom:211.994267pt;}
.y8b{bottom:219.047467pt;}
.y6e{bottom:219.075600pt;}
.y97{bottom:219.090133pt;}
.y18{bottom:221.053600pt;}
.yeb{bottom:223.999467pt;}
.ybb{bottom:226.645333pt;}
.y44{bottom:227.995600pt;}
.y8a{bottom:235.048800pt;}
.y6d{bottom:235.076933pt;}
.y96{bottom:235.091467pt;}
.y17{bottom:237.054933pt;}
.yea{bottom:238.666133pt;}
.yba{bottom:241.312000pt;}
.y43{bottom:243.996933pt;}
.y89{bottom:251.050133pt;}
.y6c{bottom:251.078267pt;}
.y95{bottom:251.092800pt;}
.y16{bottom:253.056267pt;}
.ye9{bottom:253.332800pt;}
.yb9{bottom:255.978667pt;}
.y88{bottom:267.051467pt;}
.y6b{bottom:267.079600pt;}
.y94{bottom:267.094133pt;}
.y42{bottom:267.998267pt;}
.ye8{bottom:267.999467pt;}
.y15{bottom:269.057600pt;}
.yb8{bottom:270.645333pt;}
.ye7{bottom:282.666133pt;}
.y87{bottom:283.052800pt;}
.y6a{bottom:283.080933pt;}
.y41{bottom:283.998267pt;}
.y14{bottom:285.058933pt;}
.yb7{bottom:285.312000pt;}
.ye6{bottom:297.332800pt;}
.y86{bottom:299.054133pt;}
.y69{bottom:299.082267pt;}
.yb6{bottom:299.978667pt;}
.y40{bottom:299.998267pt;}
.y13{bottom:301.060267pt;}
.ye5{bottom:311.999467pt;}
.yb5{bottom:314.645333pt;}
.y85{bottom:315.055467pt;}
.y68{bottom:315.083600pt;}
.y3f{bottom:315.998267pt;}
.y12{bottom:317.061600pt;}
.ye4{bottom:326.666133pt;}
.yb4{bottom:329.312000pt;}
.y84{bottom:331.056800pt;}
.y67{bottom:331.084933pt;}
.y3e{bottom:331.998267pt;}
.y11{bottom:333.062933pt;}
.ye3{bottom:341.332800pt;}
.yb3{bottom:343.978667pt;}
.y83{bottom:347.058133pt;}
.y66{bottom:347.086267pt;}
.y3d{bottom:347.998267pt;}
.y10{bottom:349.064267pt;}
.ye2{bottom:355.999467pt;}
.yb2{bottom:358.645333pt;}
.y82{bottom:363.059467pt;}
.y65{bottom:363.087600pt;}
.yf{bottom:365.065600pt;}
.ye1{bottom:370.666133pt;}
.y3c{bottom:371.987600pt;}
.yb1{bottom:373.312000pt;}
.y81{bottom:379.060800pt;}
.y64{bottom:379.088933pt;}
.ye{bottom:381.066933pt;}
.ye0{bottom:385.332800pt;}
.yb0{bottom:387.978667pt;}
.y3b{bottom:387.988933pt;}
.y80{bottom:395.062133pt;}
.y63{bottom:395.090267pt;}
.yd{bottom:397.068267pt;}
.ydf{bottom:399.999467pt;}
.yaf{bottom:402.645333pt;}
.y3a{bottom:403.990267pt;}
.y7f{bottom:411.063467pt;}
.y62{bottom:411.091600pt;}
.yc{bottom:413.069600pt;}
.yde{bottom:414.666133pt;}
.yae{bottom:417.312000pt;}
.y39{bottom:419.991600pt;}
.y7e{bottom:427.064800pt;}
.y61{bottom:427.092933pt;}
.yb{bottom:429.070933pt;}
.ydd{bottom:429.332800pt;}
.yad{bottom:431.978667pt;}
.y38{bottom:435.992933pt;}
.y7d{bottom:443.066133pt;}
.y60{bottom:443.094267pt;}
.ydc{bottom:443.999467pt;}
.ya{bottom:445.072267pt;}
.yac{bottom:446.645333pt;}
.y37{bottom:451.994267pt;}
.ydb{bottom:458.666133pt;}
.y7c{bottom:459.067467pt;}
.y9{bottom:461.073600pt;}
.yab{bottom:461.312000pt;}
.y5f{bottom:467.095467pt;}
.y36{bottom:467.995600pt;}
.yda{bottom:473.332800pt;}
.y7b{bottom:475.068800pt;}
.yaa{bottom:475.978667pt;}
.y8{bottom:477.074933pt;}
.y5e{bottom:483.095467pt;}
.y35{bottom:483.996933pt;}
.yd9{bottom:487.999467pt;}
.ya9{bottom:490.645333pt;}
.y7a{bottom:491.070133pt;}
.y7{bottom:493.076267pt;}
.y5d{bottom:499.095467pt;}
.y34{bottom:499.983600pt;}
.yd8{bottom:502.666133pt;}
.ya8{bottom:505.312000pt;}
.y79{bottom:507.071467pt;}
.y6{bottom:509.077600pt;}
.y5c{bottom:515.095467pt;}
.y33{bottom:515.984933pt;}
.yd7{bottom:517.332800pt;}
.ya7{bottom:519.978667pt;}
.y78{bottom:523.072800pt;}
.y5{bottom:525.078933pt;}
.y5b{bottom:531.095467pt;}
.y32{bottom:531.986267pt;}
.yd6{bottom:531.999467pt;}
.ya6{bottom:534.645333pt;}
.y77{bottom:539.074133pt;}
.y4{bottom:541.080267pt;}
.yd5{bottom:546.666133pt;}
.y31{bottom:547.987600pt;}
.ya5{bottom:549.312000pt;}
.y5a{bottom:555.075467pt;}
.yd4{bottom:561.332800pt;}
.ya4{bottom:563.978667pt;}
.y30{bottom:563.988933pt;}
.y59{bottom:571.076800pt;}
.yd3{bottom:575.999467pt;}
.ya3{bottom:578.645333pt;}
.y2f{bottom:579.990267pt;}
.y58{bottom:587.078133pt;}
.yd2{bottom:590.666133pt;}
.ya2{bottom:593.312000pt;}
.y2e{bottom:595.991600pt;}
.y57{bottom:603.079467pt;}
.yd1{bottom:605.332800pt;}
.ya1{bottom:607.978667pt;}
.y2d{bottom:611.992933pt;}
.y56{bottom:619.080800pt;}
.yd0{bottom:619.999467pt;}
.ya0{bottom:622.645333pt;}
.y2c{bottom:627.994267pt;}
.ycf{bottom:634.666133pt;}
.y55{bottom:635.082133pt;}
.y9f{bottom:637.312000pt;}
.y2b{bottom:643.995600pt;}
.yce{bottom:649.332800pt;}
.y54{bottom:651.083467pt;}
.y2a{bottom:659.996933pt;}
.y9e{bottom:660.418267pt;}
.ycd{bottom:663.999467pt;}
.y53{bottom:667.084800pt;}
.y29{bottom:675.998267pt;}
.ycc{bottom:678.666133pt;}
.y52{bottom:683.086133pt;}
.ycb{bottom:693.332800pt;}
.y51{bottom:699.087467pt;}
.y28{bottom:699.999467pt;}
.yca{bottom:707.999467pt;}
.y50{bottom:715.088800pt;}
.y27{bottom:715.999467pt;}
.yc9{bottom:722.666133pt;}
.y4f{bottom:731.090133pt;}
.y26{bottom:731.999467pt;}
.yc8{bottom:737.332800pt;}
.y3{bottom:742.413600pt;}
.y4e{bottom:747.091467pt;}
.y25{bottom:747.999467pt;}
.yc7{bottom:751.999467pt;}
.y4d{bottom:763.092800pt;}
.y24{bottom:763.999467pt;}
.yc6{bottom:766.666133pt;}
.y2{bottom:768.644933pt;}
.y4c{bottom:779.094133pt;}
.y23{bottom:779.999467pt;}
.yc5{bottom:781.332800pt;}
.y1{bottom:791.039333pt;}
.y4b{bottom:795.095467pt;}
.y22{bottom:795.999467pt;}
.y21{bottom:830.609600pt;}
.hb{height:21.102720pt;}
.h5{height:27.216146pt;}
.h7{height:29.472656pt;}
.hf{height:34.921875pt;}
.he{height:36.384000pt;}
.hd{height:36.672000pt;}
.h6{height:39.296875pt;}
.h8{height:40.426667pt;}
.h10{height:40.746667pt;}
.h4{height:44.469333pt;}
.ha{height:44.821333pt;}
.h9{height:45.210880pt;}
.hc{height:45.322880pt;}
.h3{height:48.512000pt;}
.h2{height:49.514062pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x3{left:75.590533pt;}
.x1{left:94.488133pt;}
.x6{left:109.609067pt;}
.x2{left:113.385867pt;}
.x5{left:342.673733pt;}
.x4{left:506.887733pt;}
}




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