
    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_873b3aa9b62e168e3cfb5cb2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_118d6cb8ef501e3358d45ede.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_7c4c4d26b7cb3824f3456c34.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.168000;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_6e576a4e111ed447175e60cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.166000;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_f0842fa8b2bbccee2ac4a0d3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.698000;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_99bd6d14302c3dd64f5f0333.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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_e91027b8d8b76a70ab54c167.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.196000;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_f0842fa8b2bbccee2ac4a0d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_aa36e6886dc5753119c519e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.181000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls41{letter-spacing:-3.120000px;}
.ls26{letter-spacing:-0.900000px;}
.ls25{letter-spacing:-0.840000px;}
.ls29{letter-spacing:-0.780000px;}
.ls37{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.600000px;}
.ls24{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.516000px;}
.ls40{letter-spacing:-0.510000px;}
.ls39{letter-spacing:-0.486000px;}
.ls2a{letter-spacing:-0.480000px;}
.ls28{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.300000px;}
.ls1e{letter-spacing:-0.240000px;}
.ls22{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.180000px;}
.ls1f{letter-spacing:-0.120000px;}
.ls11{letter-spacing:-0.102000px;}
.ls2e{letter-spacing:-0.060000px;}
.ls21{letter-spacing:-0.055800px;}
.ls2d{letter-spacing:-0.054000px;}
.lse{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.022200px;}
.ls1{letter-spacing:0.025500px;}
.ls2b{letter-spacing:0.030000px;}
.ls1a{letter-spacing:0.055800px;}
.ls14{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.060900px;}
.lsb{letter-spacing:0.090000px;}
.ls2f{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.120000px;}
.ls33{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.204000px;}
.ls17{letter-spacing:0.235200px;}
.lsc{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.255000px;}
.ls18{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.300000px;}
.ls10{letter-spacing:0.309600px;}
.ls4{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.390000px;}
.lsa{letter-spacing:0.420000px;}
.ls8{letter-spacing:0.450000px;}
.ls16{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.540000px;}
.ls32{letter-spacing:0.600000px;}
.ls2c{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.669600px;}
.ls38{letter-spacing:0.690000px;}
.ls7{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.732600px;}
.ls9{letter-spacing:0.780000px;}
.ls35{letter-spacing:0.840000px;}
.ls42{letter-spacing:0.864000px;}
.ls36{letter-spacing:0.900000px;}
.ls3c{letter-spacing:0.930000px;}
.ls3d{letter-spacing:0.960000px;}
.ls30{letter-spacing:0.972000px;}
.ls23{letter-spacing:1.080000px;}
.ls1d{letter-spacing:1.200000px;}
.ls1c{letter-spacing:1.242000px;}
.ls3e{letter-spacing:1.275000px;}
.ls3b{letter-spacing:1.458000px;}
.ls3f{letter-spacing:1.512000px;}
.ls45{letter-spacing:1.566000px;}
.ls34{letter-spacing:1.620000px;}
.ls43{letter-spacing:1.651200px;}
.ls3a{letter-spacing:1.998000px;}
.lsf{letter-spacing:2.373600px;}
.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;}
}
.ws9a{word-spacing:-14.796000px;}
.ws79{word-spacing:-14.418000px;}
.wsb2{word-spacing:-14.364000px;}
.wsa1{word-spacing:-14.310000px;}
.ws5f{word-spacing:-12.906000px;}
.ws7b{word-spacing:-12.840000px;}
.ws0{word-spacing:-12.693600px;}
.ws40{word-spacing:-12.582000px;}
.ws6b{word-spacing:-12.540000px;}
.ws7a{word-spacing:-12.360000px;}
.ws8f{word-spacing:-12.312000px;}
.wsa3{word-spacing:-11.997000px;}
.wsa9{word-spacing:-11.971200px;}
.ws37{word-spacing:-11.940000px;}
.wsa2{word-spacing:-11.550600px;}
.ws2{word-spacing:-11.400000px;}
.ws9b{word-spacing:-11.280000px;}
.wsaa{word-spacing:-11.094000px;}
.ws41{word-spacing:-10.920000px;}
.ws1{word-spacing:-10.629600px;}
.ws21{word-spacing:-8.901000px;}
.wsa4{word-spacing:-8.880000px;}
.ws20{word-spacing:-7.310820px;}
.wsa8{word-spacing:-2.580000px;}
.ws5d{word-spacing:-2.460000px;}
.wsa7{word-spacing:-2.160000px;}
.wsa0{word-spacing:-2.100000px;}
.ws76{word-spacing:-2.040000px;}
.ws46{word-spacing:-1.980000px;}
.ws1d{word-spacing:-1.920000px;}
.ws18{word-spacing:-1.860000px;}
.ws3e{word-spacing:-1.841400px;}
.ws95{word-spacing:-1.800000px;}
.ws4a{word-spacing:-1.740000px;}
.ws52{word-spacing:-1.680000px;}
.wsc{word-spacing:-1.632000px;}
.ws81{word-spacing:-1.620000px;}
.ws65{word-spacing:-1.560000px;}
.ws7f{word-spacing:-1.500000px;}
.ws86{word-spacing:-1.440000px;}
.ws78{word-spacing:-1.380000px;}
.ws11{word-spacing:-1.326000px;}
.ws53{word-spacing:-1.320000px;}
.ws61{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.242000px;}
.ws39{word-spacing:-1.227600px;}
.ws2b{word-spacing:-1.200000px;}
.ws6f{word-spacing:-1.140000px;}
.ws44{word-spacing:-1.020000px;}
.ws10{word-spacing:-0.969000px;}
.ws66{word-spacing:-0.960000px;}
.ws8{word-spacing:-0.918000px;}
.ws19{word-spacing:-0.900000px;}
.wse{word-spacing:-0.867000px;}
.ws49{word-spacing:-0.840000px;}
.ws5e{word-spacing:-0.780000px;}
.ws3{word-spacing:-0.754800px;}
.wsa6{word-spacing:-0.725400px;}
.wsb1{word-spacing:-0.722400px;}
.ws7e{word-spacing:-0.720000px;}
.ws43{word-spacing:-0.660000px;}
.ws54{word-spacing:-0.600000px;}
.ws83{word-spacing:-0.540000px;}
.ws12{word-spacing:-0.510000px;}
.ws87{word-spacing:-0.420000px;}
.wsaf{word-spacing:-0.412800px;}
.ws1e{word-spacing:-0.360000px;}
.ws33{word-spacing:-0.300000px;}
.ws25{word-spacing:-0.240000px;}
.ws3a{word-spacing:-0.223200px;}
.wsae{word-spacing:-0.206400px;}
.ws13{word-spacing:-0.204000px;}
.ws58{word-spacing:-0.180000px;}
.ws4b{word-spacing:-0.120000px;}
.ws92{word-spacing:-0.060000px;}
.ws4{word-spacing:-0.044400px;}
.ws5{word-spacing:0.000000px;}
.ws6{word-spacing:0.051000px;}
.ws17{word-spacing:0.060000px;}
.ws3d{word-spacing:0.111600px;}
.ws2f{word-spacing:0.120000px;}
.ws82{word-spacing:0.180000px;}
.ws71{word-spacing:0.240000px;}
.wsb{word-spacing:0.255000px;}
.ws27{word-spacing:0.360000px;}
.ws64{word-spacing:0.420000px;}
.ws2c{word-spacing:0.480000px;}
.wsb0{word-spacing:0.516000px;}
.ws2e{word-spacing:0.540000px;}
.ws51{word-spacing:0.600000px;}
.ws70{word-spacing:0.660000px;}
.ws69{word-spacing:0.720000px;}
.ws7{word-spacing:0.765000px;}
.ws5b{word-spacing:0.780000px;}
.ws6a{word-spacing:0.840000px;}
.ws80{word-spacing:0.900000px;}
.ws38{word-spacing:0.960000px;}
.ws1c{word-spacing:1.020000px;}
.ws1f{word-spacing:1.080000px;}
.ws3c{word-spacing:1.116000px;}
.ws96{word-spacing:1.140000px;}
.ws2a{word-spacing:1.200000px;}
.wsd{word-spacing:1.224000px;}
.ws67{word-spacing:1.260000px;}
.wsa{word-spacing:1.275000px;}
.ws16{word-spacing:1.320000px;}
.ws30{word-spacing:1.380000px;}
.wsad{word-spacing:1.440000px;}
.ws6e{word-spacing:1.500000px;}
.ws24{word-spacing:1.560000px;}
.ws2d{word-spacing:1.620000px;}
.ws9{word-spacing:1.632000px;}
.ws45{word-spacing:1.680000px;}
.ws8b{word-spacing:1.740000px;}
.ws3b{word-spacing:1.785600px;}
.ws14{word-spacing:1.800000px;}
.ws15{word-spacing:1.860000px;}
.ws26{word-spacing:1.920000px;}
.wsf{word-spacing:1.938000px;}
.ws6d{word-spacing:1.980000px;}
.ws34{word-spacing:2.040000px;}
.ws59{word-spacing:2.100000px;}
.ws31{word-spacing:2.160000px;}
.ws48{word-spacing:2.220000px;}
.ws35{word-spacing:2.280000px;}
.ws57{word-spacing:2.340000px;}
.wsac{word-spacing:2.400000px;}
.ws50{word-spacing:2.460000px;}
.ws47{word-spacing:2.520000px;}
.ws8d{word-spacing:2.580000px;}
.ws29{word-spacing:2.640000px;}
.ws77{word-spacing:2.700000px;}
.ws75{word-spacing:2.760000px;}
.ws7d{word-spacing:2.820000px;}
.ws9e{word-spacing:2.880000px;}
.ws62{word-spacing:2.940000px;}
.ws4d{word-spacing:3.000000px;}
.ws8e{word-spacing:3.060000px;}
.ws72{word-spacing:3.120000px;}
.ws32{word-spacing:3.180000px;}
.ws5a{word-spacing:3.240000px;}
.ws68{word-spacing:3.300000px;}
.ws4f{word-spacing:3.360000px;}
.ws99{word-spacing:3.420000px;}
.ws36{word-spacing:3.480000px;}
.ws1a{word-spacing:3.540000px;}
.ws1b{word-spacing:3.600000px;}
.ws4e{word-spacing:3.660000px;}
.ws9d{word-spacing:3.720000px;}
.ws63{word-spacing:3.900000px;}
.ws4c{word-spacing:3.960000px;}
.ws98{word-spacing:4.020000px;}
.ws56{word-spacing:4.080000px;}
.ws89{word-spacing:4.140000px;}
.ws93{word-spacing:4.200000px;}
.ws74{word-spacing:4.260000px;}
.ws84{word-spacing:4.380000px;}
.ws28{word-spacing:4.500000px;}
.ws85{word-spacing:4.620000px;}
.ws73{word-spacing:4.680000px;}
.ws8c{word-spacing:4.740000px;}
.ws8a{word-spacing:4.980000px;}
.ws5c{word-spacing:5.280000px;}
.ws3f{word-spacing:5.412600px;}
.ws91{word-spacing:5.580000px;}
.ws97{word-spacing:6.300000px;}
.ws9c{word-spacing:1261.494000px;}
.ws7c{word-spacing:1261.818000px;}
.wsb3{word-spacing:1261.872000px;}
.wsa5{word-spacing:1261.926000px;}
.ws60{word-spacing:1263.330000px;}
.ws42{word-spacing:1263.654000px;}
.ws90{word-spacing:1263.924000px;}
.ws94{word-spacing:1621.782000px;}
.ws9f{word-spacing:1622.106000px;}
.ws6c{word-spacing:1623.078000px;}
.wsab{word-spacing:1623.240000px;}
.ws23{word-spacing:1623.942000px;}
.ws55{word-spacing:1625.130000px;}
.ws88{word-spacing:1626.318000px;}
._a{margin-left:-1263.736800px;}
._b{margin-left:-1262.627400px;}
._e{margin-left:-1261.518000px;}
._10{margin-left:-13.152000px;}
._f{margin-left:-11.580000px;}
._5{margin-left:-7.165800px;}
._6{margin-left:-5.740800px;}
._0{margin-left:-3.840000px;}
._1{margin-left:-1.929600px;}
._2{width:1.109400px;}
._4{width:2.249760px;}
._3{width:3.926760px;}
._d{width:5.244000px;}
._c{width:7.320000px;}
._9{width:45.923400px;}
._8{width:49.940400px;}
._7{width:58.645800px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:22.200000px;}
.fs7{font-size:34.980000px;}
.fs8{font-size:41.400000px;}
.fs3{font-size:51.000000px;}
.fs2{font-size:51.600000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:55.800000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:63.773550px;}
.y27{bottom:64.842450px;}
.y80{bottom:73.168950px;}
.ya2{bottom:73.221450px;}
.y49{bottom:81.029700px;}
.y26{bottom:83.442450px;}
.y7f{bottom:90.571050px;}
.ya1{bottom:90.623550px;}
.y48{bottom:98.279850px;}
.y25{bottom:102.042450px;}
.y7e{bottom:107.973150px;}
.ya0{bottom:108.025650px;}
.y47{bottom:115.529850px;}
.y24{bottom:120.642450px;}
.y7d{bottom:125.375250px;}
.y9f{bottom:125.427750px;}
.y46{bottom:132.773700px;}
.y23{bottom:139.242450px;}
.y7c{bottom:142.777350px;}
.y9e{bottom:142.829850px;}
.y45{bottom:150.029850px;}
.y22{bottom:157.842450px;}
.y7b{bottom:160.179450px;}
.y9d{bottom:160.231950px;}
.y44{bottom:167.279850px;}
.y21{bottom:176.442450px;}
.y7a{bottom:177.581550px;}
.y9c{bottom:177.634050px;}
.y43{bottom:184.523850px;}
.y79{bottom:194.983650px;}
.y9b{bottom:195.036150px;}
.y20{bottom:195.042450px;}
.y42{bottom:201.780000px;}
.y78{bottom:212.385750px;}
.y9a{bottom:212.438250px;}
.y1f{bottom:213.642450px;}
.y77{bottom:229.787850px;}
.y99{bottom:229.840350px;}
.y1e{bottom:232.242450px;}
.y76{bottom:247.189950px;}
.y98{bottom:247.242450px;}
.y1d{bottom:250.842450px;}
.y97{bottom:264.527550px;}
.y75{bottom:264.592050px;}
.y1c{bottom:269.442450px;}
.yc7{bottom:278.022600px;}
.y96{bottom:281.929650px;}
.y74{bottom:281.994150px;}
.y1b{bottom:288.042450px;}
.yc6{bottom:295.424700px;}
.yeb{bottom:295.473000px;}
.y95{bottom:299.331750px;}
.y73{bottom:299.396250px;}
.y1a{bottom:306.642450px;}
.yc5{bottom:312.826800px;}
.yea{bottom:312.875100px;}
.y94{bottom:316.733850px;}
.y72{bottom:316.798350px;}
.y19{bottom:325.242450px;}
.yc4{bottom:330.228900px;}
.ye9{bottom:330.277200px;}
.y93{bottom:334.135950px;}
.y71{bottom:334.200450px;}
.y18{bottom:343.842450px;}
.yc3{bottom:347.631000px;}
.ye8{bottom:347.679300px;}
.y92{bottom:351.538050px;}
.y70{bottom:351.602550px;}
.y17{bottom:362.442450px;}
.yc2{bottom:365.033100px;}
.ye7{bottom:365.081400px;}
.y91{bottom:368.940150px;}
.y6f{bottom:369.004650px;}
.y16{bottom:381.042450px;}
.yc1{bottom:382.435200px;}
.ye6{bottom:382.483500px;}
.y90{bottom:386.342250px;}
.y6e{bottom:386.406750px;}
.y15{bottom:399.642450px;}
.yc0{bottom:399.837300px;}
.ye5{bottom:399.885600px;}
.y8f{bottom:403.744350px;}
.y6d{bottom:403.808850px;}
.ybf{bottom:417.239400px;}
.ye4{bottom:417.287700px;}
.y41{bottom:418.242450px;}
.y8e{bottom:421.146450px;}
.y6c{bottom:421.210950px;}
.ybe{bottom:434.641500px;}
.ye3{bottom:434.689800px;}
.y14{bottom:436.842450px;}
.y8d{bottom:438.548550px;}
.y6b{bottom:438.613050px;}
.ybd{bottom:452.043600px;}
.ye2{bottom:452.091900px;}
.y40{bottom:455.442450px;}
.y8c{bottom:455.950650px;}
.y6a{bottom:456.015150px;}
.ybc{bottom:469.445700px;}
.ye1{bottom:469.494000px;}
.y8b{bottom:473.352750px;}
.y69{bottom:473.417250px;}
.y3f{bottom:474.042450px;}
.ybb{bottom:486.847800px;}
.ye0{bottom:486.896100px;}
.y8a{bottom:490.754850px;}
.y68{bottom:490.819350px;}
.y3e{bottom:492.642450px;}
.y13{bottom:497.886450px;}
.yba{bottom:504.249900px;}
.ydf{bottom:504.298200px;}
.y89{bottom:508.156950px;}
.y67{bottom:508.221450px;}
.y3d{bottom:511.242450px;}
.y12{bottom:515.137200px;}
.yb9{bottom:521.652000px;}
.yde{bottom:521.694000px;}
.y88{bottom:525.559050px;}
.y66{bottom:525.623550px;}
.y3c{bottom:529.842450px;}
.y11{bottom:532.387950px;}
.yb8{bottom:539.054100px;}
.ydd{bottom:539.096100px;}
.y87{bottom:542.961150px;}
.y65{bottom:543.025650px;}
.y3b{bottom:548.442450px;}
.y10{bottom:549.638700px;}
.yb7{bottom:556.456200px;}
.ydc{bottom:556.498200px;}
.y86{bottom:560.363250px;}
.y64{bottom:560.427750px;}
.yf{bottom:566.889450px;}
.y3a{bottom:567.042450px;}
.ydb{bottom:573.780900px;}
.yb6{bottom:573.858300px;}
.y85{bottom:577.765350px;}
.y63{bottom:577.829850px;}
.ye{bottom:584.140200px;}
.y39{bottom:585.642450px;}
.yda{bottom:591.183000px;}
.yb5{bottom:591.260400px;}
.y84{bottom:595.167450px;}
.y62{bottom:595.231950px;}
.yd{bottom:601.390950px;}
.y38{bottom:604.242450px;}
.yd9{bottom:608.585100px;}
.yb4{bottom:608.662500px;}
.y83{bottom:612.569550px;}
.y61{bottom:612.634050px;}
.yc{bottom:618.641700px;}
.y37{bottom:622.842450px;}
.yd8{bottom:625.987200px;}
.yb3{bottom:626.064600px;}
.y82{bottom:629.971650px;}
.y60{bottom:630.036150px;}
.yb{bottom:635.892450px;}
.y36{bottom:641.442450px;}
.yd7{bottom:643.389300px;}
.yb2{bottom:643.466700px;}
.y81{bottom:647.373750px;}
.y5f{bottom:647.438250px;}
.ya{bottom:653.142450px;}
.y35{bottom:660.042450px;}
.yd6{bottom:660.791400px;}
.yb1{bottom:660.868800px;}
.yd5{bottom:678.193500px;}
.yb0{bottom:678.270900px;}
.y4d{bottom:678.642450px;}
.y5e{bottom:682.242450px;}
.y9{bottom:687.938700px;}
.y5d{bottom:688.307400px;}
.yd4{bottom:695.595600px;}
.yaf{bottom:695.673000px;}
.y34{bottom:697.242450px;}
.y8{bottom:705.189450px;}
.y59{bottom:710.145000px;}
.yd3{bottom:712.997700px;}
.yae{bottom:713.075100px;}
.y4c{bottom:715.842450px;}
.y7{bottom:722.440200px;}
.y5c{bottom:726.633900px;}
.y58{bottom:726.647850px;}
.yd2{bottom:730.399800px;}
.yad{bottom:730.477200px;}
.y4b{bottom:734.442450px;}
.y6{bottom:739.690950px;}
.y5b{bottom:743.136750px;}
.y57{bottom:743.150700px;}
.yd1{bottom:747.801900px;}
.yac{bottom:747.879300px;}
.y33{bottom:753.042450px;}
.y5{bottom:756.941700px;}
.y5a{bottom:759.639600px;}
.y56{bottom:759.653550px;}
.yd0{bottom:765.204000px;}
.yab{bottom:765.281400px;}
.y32{bottom:771.642450px;}
.y4{bottom:774.192450px;}
.y55{bottom:778.625550px;}
.ycf{bottom:782.606100px;}
.yaa{bottom:782.683500px;}
.y31{bottom:790.242450px;}
.y3{bottom:791.442450px;}
.y54{bottom:795.128400px;}
.yce{bottom:800.008200px;}
.ya9{bottom:800.085600px;}
.y30{bottom:808.842450px;}
.y53{bottom:811.631250px;}
.ycd{bottom:817.410300px;}
.ya8{bottom:817.487700px;}
.y2f{bottom:827.442450px;}
.y52{bottom:830.603250px;}
.ycc{bottom:834.812400px;}
.ya7{bottom:834.889800px;}
.y2e{bottom:846.042450px;}
.y51{bottom:847.106100px;}
.y2{bottom:848.445300px;}
.ycb{bottom:852.214500px;}
.ya6{bottom:852.291900px;}
.y29{bottom:857.391000px;}
.y50{bottom:863.608950px;}
.y2d{bottom:864.642450px;}
.y28{bottom:864.889050px;}
.yca{bottom:869.616600px;}
.ya5{bottom:869.694000px;}
.y4f{bottom:882.580950px;}
.y2c{bottom:883.242450px;}
.yc9{bottom:887.018700px;}
.ya4{bottom:887.096100px;}
.y1{bottom:895.453200px;}
.y4e{bottom:899.083800px;}
.y2b{bottom:901.842450px;}
.yc8{bottom:904.420800px;}
.ya3{bottom:904.498200px;}
.y2a{bottom:955.942350px;}
.h8{height:15.295800px;}
.h12{height:46.078800px;}
.h5{height:46.104000px;}
.h10{height:46.563000px;}
.h11{height:46.646400px;}
.h15{height:46.663200px;}
.h13{height:47.106000px;}
.h14{height:47.115600px;}
.h4{height:48.762000px;}
.hb{height:49.829400px;}
.ha{height:50.443200px;}
.hc{height:50.467800px;}
.h9{height:50.868000px;}
.hf{height:50.945400px;}
.he{height:53.880000px;}
.h7{height:54.000000px;}
.hd{height:56.520000px;}
.h6{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x3{left:25.546350px;}
.x2{left:28.615500px;}
.x1{left:72.283500px;}
.x4{left:80.787450px;}
.x14{left:85.041600px;}
.x8{left:93.538500px;}
.x5{left:102.042450px;}
.xf{left:212.592600px;}
.x9{left:229.346550px;}
.xa{left:253.633500px;}
.x10{left:348.660900px;}
.x16{left:353.413200px;}
.xb{left:360.309150px;}
.x12{left:361.917150px;}
.x15{left:366.171300px;}
.x13{left:374.675250px;}
.xc{left:389.701800px;}
.x11{left:484.729200px;}
.xd{left:508.444200px;}
.xe{left:527.290650px;}
.x7{left:651.223500px;}
.x6{left:654.292650px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls41{letter-spacing:-2.773333pt;}
.ls26{letter-spacing:-0.800000pt;}
.ls25{letter-spacing:-0.746667pt;}
.ls29{letter-spacing:-0.693333pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.458667pt;}
.ls40{letter-spacing:-0.453333pt;}
.ls39{letter-spacing:-0.432000pt;}
.ls2a{letter-spacing:-0.426667pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.266667pt;}
.ls1e{letter-spacing:-0.213333pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.160000pt;}
.ls1f{letter-spacing:-0.106667pt;}
.ls11{letter-spacing:-0.090667pt;}
.ls2e{letter-spacing:-0.053333pt;}
.ls21{letter-spacing:-0.049600pt;}
.ls2d{letter-spacing:-0.048000pt;}
.lse{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.019733pt;}
.ls1{letter-spacing:0.022667pt;}
.ls2b{letter-spacing:0.026667pt;}
.ls1a{letter-spacing:0.049600pt;}
.ls14{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.054133pt;}
.lsb{letter-spacing:0.080000pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls33{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.181333pt;}
.ls17{letter-spacing:0.209067pt;}
.lsc{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.226667pt;}
.ls18{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.266667pt;}
.ls10{letter-spacing:0.275200pt;}
.ls4{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.346667pt;}
.lsa{letter-spacing:0.373333pt;}
.ls8{letter-spacing:0.400000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls32{letter-spacing:0.533333pt;}
.ls2c{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.595200pt;}
.ls38{letter-spacing:0.613333pt;}
.ls7{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.651200pt;}
.ls9{letter-spacing:0.693333pt;}
.ls35{letter-spacing:0.746667pt;}
.ls42{letter-spacing:0.768000pt;}
.ls36{letter-spacing:0.800000pt;}
.ls3c{letter-spacing:0.826667pt;}
.ls3d{letter-spacing:0.853333pt;}
.ls30{letter-spacing:0.864000pt;}
.ls23{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls1c{letter-spacing:1.104000pt;}
.ls3e{letter-spacing:1.133333pt;}
.ls3b{letter-spacing:1.296000pt;}
.ls3f{letter-spacing:1.344000pt;}
.ls45{letter-spacing:1.392000pt;}
.ls34{letter-spacing:1.440000pt;}
.ls43{letter-spacing:1.467733pt;}
.ls3a{letter-spacing:1.776000pt;}
.lsf{letter-spacing:2.109867pt;}
.ws9a{word-spacing:-13.152000pt;}
.ws79{word-spacing:-12.816000pt;}
.wsb2{word-spacing:-12.768000pt;}
.wsa1{word-spacing:-12.720000pt;}
.ws5f{word-spacing:-11.472000pt;}
.ws7b{word-spacing:-11.413333pt;}
.ws0{word-spacing:-11.283200pt;}
.ws40{word-spacing:-11.184000pt;}
.ws6b{word-spacing:-11.146667pt;}
.ws7a{word-spacing:-10.986667pt;}
.ws8f{word-spacing:-10.944000pt;}
.wsa3{word-spacing:-10.664000pt;}
.wsa9{word-spacing:-10.641067pt;}
.ws37{word-spacing:-10.613333pt;}
.wsa2{word-spacing:-10.267200pt;}
.ws2{word-spacing:-10.133333pt;}
.ws9b{word-spacing:-10.026667pt;}
.wsaa{word-spacing:-9.861333pt;}
.ws41{word-spacing:-9.706667pt;}
.ws1{word-spacing:-9.448533pt;}
.ws21{word-spacing:-7.912000pt;}
.wsa4{word-spacing:-7.893333pt;}
.ws20{word-spacing:-6.498507pt;}
.wsa8{word-spacing:-2.293333pt;}
.ws5d{word-spacing:-2.186667pt;}
.wsa7{word-spacing:-1.920000pt;}
.wsa0{word-spacing:-1.866667pt;}
.ws76{word-spacing:-1.813333pt;}
.ws46{word-spacing:-1.760000pt;}
.ws1d{word-spacing:-1.706667pt;}
.ws18{word-spacing:-1.653333pt;}
.ws3e{word-spacing:-1.636800pt;}
.ws95{word-spacing:-1.600000pt;}
.ws4a{word-spacing:-1.546667pt;}
.ws52{word-spacing:-1.493333pt;}
.wsc{word-spacing:-1.450667pt;}
.ws81{word-spacing:-1.440000pt;}
.ws65{word-spacing:-1.386667pt;}
.ws7f{word-spacing:-1.333333pt;}
.ws86{word-spacing:-1.280000pt;}
.ws78{word-spacing:-1.226667pt;}
.ws11{word-spacing:-1.178667pt;}
.ws53{word-spacing:-1.173333pt;}
.ws61{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.104000pt;}
.ws39{word-spacing:-1.091200pt;}
.ws2b{word-spacing:-1.066667pt;}
.ws6f{word-spacing:-1.013333pt;}
.ws44{word-spacing:-0.906667pt;}
.ws10{word-spacing:-0.861333pt;}
.ws66{word-spacing:-0.853333pt;}
.ws8{word-spacing:-0.816000pt;}
.ws19{word-spacing:-0.800000pt;}
.wse{word-spacing:-0.770667pt;}
.ws49{word-spacing:-0.746667pt;}
.ws5e{word-spacing:-0.693333pt;}
.ws3{word-spacing:-0.670933pt;}
.wsa6{word-spacing:-0.644800pt;}
.wsb1{word-spacing:-0.642133pt;}
.ws7e{word-spacing:-0.640000pt;}
.ws43{word-spacing:-0.586667pt;}
.ws54{word-spacing:-0.533333pt;}
.ws83{word-spacing:-0.480000pt;}
.ws12{word-spacing:-0.453333pt;}
.ws87{word-spacing:-0.373333pt;}
.wsaf{word-spacing:-0.366933pt;}
.ws1e{word-spacing:-0.320000pt;}
.ws33{word-spacing:-0.266667pt;}
.ws25{word-spacing:-0.213333pt;}
.ws3a{word-spacing:-0.198400pt;}
.wsae{word-spacing:-0.183467pt;}
.ws13{word-spacing:-0.181333pt;}
.ws58{word-spacing:-0.160000pt;}
.ws4b{word-spacing:-0.106667pt;}
.ws92{word-spacing:-0.053333pt;}
.ws4{word-spacing:-0.039467pt;}
.ws5{word-spacing:0.000000pt;}
.ws6{word-spacing:0.045333pt;}
.ws17{word-spacing:0.053333pt;}
.ws3d{word-spacing:0.099200pt;}
.ws2f{word-spacing:0.106667pt;}
.ws82{word-spacing:0.160000pt;}
.ws71{word-spacing:0.213333pt;}
.wsb{word-spacing:0.226667pt;}
.ws27{word-spacing:0.320000pt;}
.ws64{word-spacing:0.373333pt;}
.ws2c{word-spacing:0.426667pt;}
.wsb0{word-spacing:0.458667pt;}
.ws2e{word-spacing:0.480000pt;}
.ws51{word-spacing:0.533333pt;}
.ws70{word-spacing:0.586667pt;}
.ws69{word-spacing:0.640000pt;}
.ws7{word-spacing:0.680000pt;}
.ws5b{word-spacing:0.693333pt;}
.ws6a{word-spacing:0.746667pt;}
.ws80{word-spacing:0.800000pt;}
.ws38{word-spacing:0.853333pt;}
.ws1c{word-spacing:0.906667pt;}
.ws1f{word-spacing:0.960000pt;}
.ws3c{word-spacing:0.992000pt;}
.ws96{word-spacing:1.013333pt;}
.ws2a{word-spacing:1.066667pt;}
.wsd{word-spacing:1.088000pt;}
.ws67{word-spacing:1.120000pt;}
.wsa{word-spacing:1.133333pt;}
.ws16{word-spacing:1.173333pt;}
.ws30{word-spacing:1.226667pt;}
.wsad{word-spacing:1.280000pt;}
.ws6e{word-spacing:1.333333pt;}
.ws24{word-spacing:1.386667pt;}
.ws2d{word-spacing:1.440000pt;}
.ws9{word-spacing:1.450667pt;}
.ws45{word-spacing:1.493333pt;}
.ws8b{word-spacing:1.546667pt;}
.ws3b{word-spacing:1.587200pt;}
.ws14{word-spacing:1.600000pt;}
.ws15{word-spacing:1.653333pt;}
.ws26{word-spacing:1.706667pt;}
.wsf{word-spacing:1.722667pt;}
.ws6d{word-spacing:1.760000pt;}
.ws34{word-spacing:1.813333pt;}
.ws59{word-spacing:1.866667pt;}
.ws31{word-spacing:1.920000pt;}
.ws48{word-spacing:1.973333pt;}
.ws35{word-spacing:2.026667pt;}
.ws57{word-spacing:2.080000pt;}
.wsac{word-spacing:2.133333pt;}
.ws50{word-spacing:2.186667pt;}
.ws47{word-spacing:2.240000pt;}
.ws8d{word-spacing:2.293333pt;}
.ws29{word-spacing:2.346667pt;}
.ws77{word-spacing:2.400000pt;}
.ws75{word-spacing:2.453333pt;}
.ws7d{word-spacing:2.506667pt;}
.ws9e{word-spacing:2.560000pt;}
.ws62{word-spacing:2.613333pt;}
.ws4d{word-spacing:2.666667pt;}
.ws8e{word-spacing:2.720000pt;}
.ws72{word-spacing:2.773333pt;}
.ws32{word-spacing:2.826667pt;}
.ws5a{word-spacing:2.880000pt;}
.ws68{word-spacing:2.933333pt;}
.ws4f{word-spacing:2.986667pt;}
.ws99{word-spacing:3.040000pt;}
.ws36{word-spacing:3.093333pt;}
.ws1a{word-spacing:3.146667pt;}
.ws1b{word-spacing:3.200000pt;}
.ws4e{word-spacing:3.253333pt;}
.ws9d{word-spacing:3.306667pt;}
.ws63{word-spacing:3.466667pt;}
.ws4c{word-spacing:3.520000pt;}
.ws98{word-spacing:3.573333pt;}
.ws56{word-spacing:3.626667pt;}
.ws89{word-spacing:3.680000pt;}
.ws93{word-spacing:3.733333pt;}
.ws74{word-spacing:3.786667pt;}
.ws84{word-spacing:3.893333pt;}
.ws28{word-spacing:4.000000pt;}
.ws85{word-spacing:4.106667pt;}
.ws73{word-spacing:4.160000pt;}
.ws8c{word-spacing:4.213333pt;}
.ws8a{word-spacing:4.426667pt;}
.ws5c{word-spacing:4.693333pt;}
.ws3f{word-spacing:4.811200pt;}
.ws91{word-spacing:4.960000pt;}
.ws97{word-spacing:5.600000pt;}
.ws9c{word-spacing:1121.328000pt;}
.ws7c{word-spacing:1121.616000pt;}
.wsb3{word-spacing:1121.664000pt;}
.wsa5{word-spacing:1121.712000pt;}
.ws60{word-spacing:1122.960000pt;}
.ws42{word-spacing:1123.248000pt;}
.ws90{word-spacing:1123.488000pt;}
.ws94{word-spacing:1441.584000pt;}
.ws9f{word-spacing:1441.872000pt;}
.ws6c{word-spacing:1442.736000pt;}
.wsab{word-spacing:1442.880000pt;}
.ws23{word-spacing:1443.504000pt;}
.ws55{word-spacing:1444.560000pt;}
.ws88{word-spacing:1445.616000pt;}
._a{margin-left:-1123.321600pt;}
._b{margin-left:-1122.335467pt;}
._e{margin-left:-1121.349333pt;}
._10{margin-left:-11.690667pt;}
._f{margin-left:-10.293333pt;}
._5{margin-left:-6.369600pt;}
._6{margin-left:-5.102933pt;}
._0{margin-left:-3.413333pt;}
._1{margin-left:-1.715200pt;}
._2{width:0.986133pt;}
._4{width:1.999787pt;}
._3{width:3.490453pt;}
._d{width:4.661333pt;}
._c{width:6.506667pt;}
._9{width:40.820800pt;}
._8{width:44.391467pt;}
._7{width:52.129600pt;}
.fs5{font-size:19.733333pt;}
.fs7{font-size:31.093333pt;}
.fs8{font-size:36.800000pt;}
.fs3{font-size:45.333333pt;}
.fs2{font-size:45.866667pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:49.600000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:56.687600pt;}
.y27{bottom:57.637733pt;}
.y80{bottom:65.039067pt;}
.ya2{bottom:65.085733pt;}
.y49{bottom:72.026400pt;}
.y26{bottom:74.171067pt;}
.y7f{bottom:80.507600pt;}
.ya1{bottom:80.554267pt;}
.y48{bottom:87.359867pt;}
.y25{bottom:90.704400pt;}
.y7e{bottom:95.976133pt;}
.ya0{bottom:96.022800pt;}
.y47{bottom:102.693200pt;}
.y24{bottom:107.237733pt;}
.y7d{bottom:111.444667pt;}
.y9f{bottom:111.491333pt;}
.y46{bottom:118.021067pt;}
.y23{bottom:123.771067pt;}
.y7c{bottom:126.913200pt;}
.y9e{bottom:126.959867pt;}
.y45{bottom:133.359867pt;}
.y22{bottom:140.304400pt;}
.y7b{bottom:142.381733pt;}
.y9d{bottom:142.428400pt;}
.y44{bottom:148.693200pt;}
.y21{bottom:156.837733pt;}
.y7a{bottom:157.850267pt;}
.y9c{bottom:157.896933pt;}
.y43{bottom:164.021200pt;}
.y79{bottom:173.318800pt;}
.y9b{bottom:173.365467pt;}
.y20{bottom:173.371067pt;}
.y42{bottom:179.360000pt;}
.y78{bottom:188.787333pt;}
.y9a{bottom:188.834000pt;}
.y1f{bottom:189.904400pt;}
.y77{bottom:204.255867pt;}
.y99{bottom:204.302533pt;}
.y1e{bottom:206.437733pt;}
.y76{bottom:219.724400pt;}
.y98{bottom:219.771067pt;}
.y1d{bottom:222.971067pt;}
.y97{bottom:235.135600pt;}
.y75{bottom:235.192933pt;}
.y1c{bottom:239.504400pt;}
.yc7{bottom:247.131200pt;}
.y96{bottom:250.604133pt;}
.y74{bottom:250.661467pt;}
.y1b{bottom:256.037733pt;}
.yc6{bottom:262.599733pt;}
.yeb{bottom:262.642667pt;}
.y95{bottom:266.072667pt;}
.y73{bottom:266.130000pt;}
.y1a{bottom:272.571067pt;}
.yc5{bottom:278.068267pt;}
.yea{bottom:278.111200pt;}
.y94{bottom:281.541200pt;}
.y72{bottom:281.598533pt;}
.y19{bottom:289.104400pt;}
.yc4{bottom:293.536800pt;}
.ye9{bottom:293.579733pt;}
.y93{bottom:297.009733pt;}
.y71{bottom:297.067067pt;}
.y18{bottom:305.637733pt;}
.yc3{bottom:309.005333pt;}
.ye8{bottom:309.048267pt;}
.y92{bottom:312.478267pt;}
.y70{bottom:312.535600pt;}
.y17{bottom:322.171067pt;}
.yc2{bottom:324.473867pt;}
.ye7{bottom:324.516800pt;}
.y91{bottom:327.946800pt;}
.y6f{bottom:328.004133pt;}
.y16{bottom:338.704400pt;}
.yc1{bottom:339.942400pt;}
.ye6{bottom:339.985333pt;}
.y90{bottom:343.415333pt;}
.y6e{bottom:343.472667pt;}
.y15{bottom:355.237733pt;}
.yc0{bottom:355.410933pt;}
.ye5{bottom:355.453867pt;}
.y8f{bottom:358.883867pt;}
.y6d{bottom:358.941200pt;}
.ybf{bottom:370.879467pt;}
.ye4{bottom:370.922400pt;}
.y41{bottom:371.771067pt;}
.y8e{bottom:374.352400pt;}
.y6c{bottom:374.409733pt;}
.ybe{bottom:386.348000pt;}
.ye3{bottom:386.390933pt;}
.y14{bottom:388.304400pt;}
.y8d{bottom:389.820933pt;}
.y6b{bottom:389.878267pt;}
.ybd{bottom:401.816533pt;}
.ye2{bottom:401.859467pt;}
.y40{bottom:404.837733pt;}
.y8c{bottom:405.289467pt;}
.y6a{bottom:405.346800pt;}
.ybc{bottom:417.285067pt;}
.ye1{bottom:417.328000pt;}
.y8b{bottom:420.758000pt;}
.y69{bottom:420.815333pt;}
.y3f{bottom:421.371067pt;}
.ybb{bottom:432.753600pt;}
.ye0{bottom:432.796533pt;}
.y8a{bottom:436.226533pt;}
.y68{bottom:436.283867pt;}
.y3e{bottom:437.904400pt;}
.y13{bottom:442.565733pt;}
.yba{bottom:448.222133pt;}
.ydf{bottom:448.265067pt;}
.y89{bottom:451.695067pt;}
.y67{bottom:451.752400pt;}
.y3d{bottom:454.437733pt;}
.y12{bottom:457.899733pt;}
.yb9{bottom:463.690667pt;}
.yde{bottom:463.728000pt;}
.y88{bottom:467.163600pt;}
.y66{bottom:467.220933pt;}
.y3c{bottom:470.971067pt;}
.y11{bottom:473.233733pt;}
.yb8{bottom:479.159200pt;}
.ydd{bottom:479.196533pt;}
.y87{bottom:482.632133pt;}
.y65{bottom:482.689467pt;}
.y3b{bottom:487.504400pt;}
.y10{bottom:488.567733pt;}
.yb7{bottom:494.627733pt;}
.ydc{bottom:494.665067pt;}
.y86{bottom:498.100667pt;}
.y64{bottom:498.158000pt;}
.yf{bottom:503.901733pt;}
.y3a{bottom:504.037733pt;}
.ydb{bottom:510.027467pt;}
.yb6{bottom:510.096267pt;}
.y85{bottom:513.569200pt;}
.y63{bottom:513.626533pt;}
.ye{bottom:519.235733pt;}
.y39{bottom:520.571067pt;}
.yda{bottom:525.496000pt;}
.yb5{bottom:525.564800pt;}
.y84{bottom:529.037733pt;}
.y62{bottom:529.095067pt;}
.yd{bottom:534.569733pt;}
.y38{bottom:537.104400pt;}
.yd9{bottom:540.964533pt;}
.yb4{bottom:541.033333pt;}
.y83{bottom:544.506267pt;}
.y61{bottom:544.563600pt;}
.yc{bottom:549.903733pt;}
.y37{bottom:553.637733pt;}
.yd8{bottom:556.433067pt;}
.yb3{bottom:556.501867pt;}
.y82{bottom:559.974800pt;}
.y60{bottom:560.032133pt;}
.yb{bottom:565.237733pt;}
.y36{bottom:570.171067pt;}
.yd7{bottom:571.901600pt;}
.yb2{bottom:571.970400pt;}
.y81{bottom:575.443333pt;}
.y5f{bottom:575.500667pt;}
.ya{bottom:580.571067pt;}
.y35{bottom:586.704400pt;}
.yd6{bottom:587.370133pt;}
.yb1{bottom:587.438933pt;}
.yd5{bottom:602.838667pt;}
.yb0{bottom:602.907467pt;}
.y4d{bottom:603.237733pt;}
.y5e{bottom:606.437733pt;}
.y9{bottom:611.501067pt;}
.y5d{bottom:611.828800pt;}
.yd4{bottom:618.307200pt;}
.yaf{bottom:618.376000pt;}
.y34{bottom:619.771067pt;}
.y8{bottom:626.835067pt;}
.y59{bottom:631.240000pt;}
.yd3{bottom:633.775733pt;}
.yae{bottom:633.844533pt;}
.y4c{bottom:636.304400pt;}
.y7{bottom:642.169067pt;}
.y5c{bottom:645.896800pt;}
.y58{bottom:645.909200pt;}
.yd2{bottom:649.244267pt;}
.yad{bottom:649.313067pt;}
.y4b{bottom:652.837733pt;}
.y6{bottom:657.503067pt;}
.y5b{bottom:660.566000pt;}
.y57{bottom:660.578400pt;}
.yd1{bottom:664.712800pt;}
.yac{bottom:664.781600pt;}
.y33{bottom:669.371067pt;}
.y5{bottom:672.837067pt;}
.y5a{bottom:675.235200pt;}
.y56{bottom:675.247600pt;}
.yd0{bottom:680.181333pt;}
.yab{bottom:680.250133pt;}
.y32{bottom:685.904400pt;}
.y4{bottom:688.171067pt;}
.y55{bottom:692.111600pt;}
.ycf{bottom:695.649867pt;}
.yaa{bottom:695.718667pt;}
.y31{bottom:702.437733pt;}
.y3{bottom:703.504400pt;}
.y54{bottom:706.780800pt;}
.yce{bottom:711.118400pt;}
.ya9{bottom:711.187200pt;}
.y30{bottom:718.971067pt;}
.y53{bottom:721.450000pt;}
.ycd{bottom:726.586933pt;}
.ya8{bottom:726.655733pt;}
.y2f{bottom:735.504400pt;}
.y52{bottom:738.314000pt;}
.ycc{bottom:742.055467pt;}
.ya7{bottom:742.124267pt;}
.y2e{bottom:752.037733pt;}
.y51{bottom:752.983200pt;}
.y2{bottom:754.173600pt;}
.ycb{bottom:757.524000pt;}
.ya6{bottom:757.592800pt;}
.y29{bottom:762.125333pt;}
.y50{bottom:767.652400pt;}
.y2d{bottom:768.571067pt;}
.y28{bottom:768.790267pt;}
.yca{bottom:772.992533pt;}
.ya5{bottom:773.061333pt;}
.y4f{bottom:784.516400pt;}
.y2c{bottom:785.104400pt;}
.yc9{bottom:788.461067pt;}
.ya4{bottom:788.529867pt;}
.y1{bottom:795.958400pt;}
.y4e{bottom:799.185600pt;}
.y2b{bottom:801.637733pt;}
.yc8{bottom:803.929600pt;}
.ya3{bottom:803.998400pt;}
.y2a{bottom:849.726533pt;}
.h8{height:13.596267pt;}
.h12{height:40.958933pt;}
.h5{height:40.981333pt;}
.h10{height:41.389333pt;}
.h11{height:41.463467pt;}
.h15{height:41.478400pt;}
.h13{height:41.872000pt;}
.h14{height:41.880533pt;}
.h4{height:43.344000pt;}
.hb{height:44.292800pt;}
.ha{height:44.838400pt;}
.hc{height:44.860267pt;}
.h9{height:45.216000pt;}
.hf{height:45.284800pt;}
.he{height:47.893333pt;}
.h7{height:48.000000pt;}
.hd{height:50.240000pt;}
.h6{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x3{left:22.707867pt;}
.x2{left:25.436000pt;}
.x1{left:64.252000pt;}
.x4{left:71.811067pt;}
.x14{left:75.592533pt;}
.x8{left:83.145333pt;}
.x5{left:90.704400pt;}
.xf{left:188.971200pt;}
.x9{left:203.863600pt;}
.xa{left:225.452000pt;}
.x10{left:309.920800pt;}
.x16{left:314.145067pt;}
.xb{left:320.274800pt;}
.x12{left:321.704133pt;}
.x15{left:325.485600pt;}
.x13{left:333.044667pt;}
.xc{left:346.401600pt;}
.x11{left:430.870400pt;}
.xd{left:451.950400pt;}
.xe{left:468.702800pt;}
.x7{left:578.865333pt;}
.x6{left:581.593467pt;}
}




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