
    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_9c7d232c3e83c520deefe6d1.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_83bae08dbbf2ff0cf934eafb.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_49e807cf903f4d5d50e883cc.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_7cf3420cc7d826a32358a586.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f11d9e4ef36516febcfd2532.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.162900;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_7cf3420cc7d826a32358a586.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2ed2374b30adfa8b5269e23a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_cbefb47a748aca62d53f1c3d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.184000;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_37234f402313732c1ecbef9c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.034000;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_d0f840bc84f6c3dbecb7d5ae.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.164000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls17{letter-spacing:-2.376000px;}
.ls2e{letter-spacing:-1.674000px;}
.ls7{letter-spacing:-1.479000px;}
.ls43{letter-spacing:-1.296000px;}
.ls48{letter-spacing:-1.188000px;}
.ls3e{letter-spacing:-0.900000px;}
.ls3f{letter-spacing:-0.780000px;}
.ls41{letter-spacing:-0.660000px;}
.ls3d{letter-spacing:-0.600000px;}
.ls47{letter-spacing:-0.594000px;}
.ls22{letter-spacing:-0.540000px;}
.ls4e{letter-spacing:-0.510000px;}
.ls42{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.420000px;}
.ls3c{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.153000px;}
.ls24{letter-spacing:-0.120000px;}
.ls39{letter-spacing:-0.108000px;}
.ls9{letter-spacing:-0.102000px;}
.ls1b{letter-spacing:-0.060000px;}
.lsb{letter-spacing:-0.051000px;}
.ls6{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.030000px;}
.ls32{letter-spacing:0.050700px;}
.ls2{letter-spacing:0.051000px;}
.ls26{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.102000px;}
.ls11{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.153000px;}
.ls12{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.204000px;}
.ls13{letter-spacing:0.210000px;}
.ls4c{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.222000px;}
.lsf{letter-spacing:0.240000px;}
.ls2b{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.280500px;}
.ls10{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.306000px;}
.ls31{letter-spacing:0.324000px;}
.ls30{letter-spacing:0.330000px;}
.lse{letter-spacing:0.333000px;}
.ls2c{letter-spacing:0.334800px;}
.ls1c{letter-spacing:0.360000px;}
.ls49{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.390000px;}
.ls14{letter-spacing:0.420000px;}
.ls4a{letter-spacing:0.432000px;}
.ls1e{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.459000px;}
.ls16{letter-spacing:0.480000px;}
.ls36{letter-spacing:0.510000px;}
.ls1f{letter-spacing:0.540000px;}
.ls2d{letter-spacing:0.558000px;}
.ls46{letter-spacing:0.570000px;}
.ls25{letter-spacing:0.600000px;}
.ls45{letter-spacing:0.630000px;}
.ls15{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.702000px;}
.ls27{letter-spacing:0.720000px;}
.ls3a{letter-spacing:0.756000px;}
.ls21{letter-spacing:0.780000px;}
.ls8{letter-spacing:0.867000px;}
.ls2a{letter-spacing:0.900000px;}
.ls20{letter-spacing:0.960000px;}
.ls23{letter-spacing:1.080000px;}
.ls19{letter-spacing:1.200000px;}
.ls4b{letter-spacing:1.224000px;}
.ls44{letter-spacing:1.296000px;}
.ls18{letter-spacing:1.512000px;}
.ls37{letter-spacing:1.728000px;}
.ls4f{letter-spacing:1.740000px;}
.ls29{letter-spacing:1.782000px;}
.ls40{letter-spacing:1.890000px;}
.ls33{letter-spacing:1.944000px;}
.ls34{letter-spacing:2.214000px;}
.ls38{letter-spacing:4.176000px;}
.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;}
}
.ws89{word-spacing:-15.012000px;}
.wsc4{word-spacing:-15.000000px;}
.wsa5{word-spacing:-14.688000px;}
.ws64{word-spacing:-14.580000px;}
.ws97{word-spacing:-14.526000px;}
.wsa9{word-spacing:-14.094000px;}
.wsbe{word-spacing:-13.500000px;}
.wsb8{word-spacing:-13.230000px;}
.ws7d{word-spacing:-13.122000px;}
.ws3b{word-spacing:-12.600000px;}
.ws84{word-spacing:-12.540000px;}
.wsb9{word-spacing:-12.495000px;}
.ws39{word-spacing:-12.258000px;}
.ws1{word-spacing:-12.138000px;}
.ws3d{word-spacing:-11.760000px;}
.ws3a{word-spacing:-11.640000px;}
.wsaf{word-spacing:-11.610000px;}
.ws17{word-spacing:-11.520000px;}
.ws18{word-spacing:-11.460000px;}
.ws19{word-spacing:-11.280000px;}
.ws3c{word-spacing:-11.160000px;}
.ws72{word-spacing:-11.100000px;}
.wsbb{word-spacing:-10.965000px;}
.wsc5{word-spacing:-10.710000px;}
.wsc0{word-spacing:-10.455000px;}
.wsba{word-spacing:-10.200000px;}
.ws0{word-spacing:-9.792000px;}
.wsbf{word-spacing:-9.690000px;}
.ws74{word-spacing:-8.901000px;}
.wsa1{word-spacing:-7.980000px;}
.ws73{word-spacing:-7.345800px;}
.wsb6{word-spacing:-2.760000px;}
.wsb4{word-spacing:-2.280000px;}
.wsac{word-spacing:-2.160000px;}
.wsa7{word-spacing:-2.100000px;}
.ws6b{word-spacing:-2.040000px;}
.ws1f{word-spacing:-1.980000px;}
.ws28{word-spacing:-1.920000px;}
.ws27{word-spacing:-1.860000px;}
.ws5c{word-spacing:-1.800000px;}
.ws54{word-spacing:-1.740000px;}
.ws8e{word-spacing:-1.680000px;}
.ws10{word-spacing:-1.632000px;}
.ws4e{word-spacing:-1.620000px;}
.wsd{word-spacing:-1.581000px;}
.ws1e{word-spacing:-1.560000px;}
.ws9{word-spacing:-1.530000px;}
.ws29{word-spacing:-1.500000px;}
.ws66{word-spacing:-1.440000px;}
.ws58{word-spacing:-1.380000px;}
.ws6a{word-spacing:-1.320000px;}
.ws1d{word-spacing:-1.260000px;}
.ws1c{word-spacing:-1.200000px;}
.ws51{word-spacing:-1.140000px;}
.ws86{word-spacing:-1.080000px;}
.wsa{word-spacing:-1.071000px;}
.ws9a{word-spacing:-1.020000px;}
.ws8d{word-spacing:-0.960000px;}
.ws12{word-spacing:-0.918000px;}
.ws5b{word-spacing:-0.900000px;}
.wsa3{word-spacing:-0.840000px;}
.wsb5{word-spacing:-0.780000px;}
.ws47{word-spacing:-0.720000px;}
.wsc3{word-spacing:-0.714000px;}
.wsa4{word-spacing:-0.660000px;}
.ws53{word-spacing:-0.600000px;}
.ws6d{word-spacing:-0.540000px;}
.ws8{word-spacing:-0.510000px;}
.ws81{word-spacing:-0.480000px;}
.ws5e{word-spacing:-0.420000px;}
.ws44{word-spacing:-0.360000px;}
.ws2{word-spacing:-0.355200px;}
.ws2d{word-spacing:-0.300000px;}
.ws2b{word-spacing:-0.240000px;}
.ws7c{word-spacing:-0.223200px;}
.ws16{word-spacing:-0.222000px;}
.ws13{word-spacing:-0.204000px;}
.ws59{word-spacing:-0.180000px;}
.ws5a{word-spacing:-0.120000px;}
.ws78{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws4d{word-spacing:0.060000px;}
.ws11{word-spacing:0.102000px;}
.ws2c{word-spacing:0.120000px;}
.ws82{word-spacing:0.180000px;}
.ws9c{word-spacing:0.240000px;}
.ws55{word-spacing:0.300000px;}
.wsb{word-spacing:0.357000px;}
.ws62{word-spacing:0.360000px;}
.ws7b{word-spacing:0.390600px;}
.ws7{word-spacing:0.408000px;}
.ws34{word-spacing:0.420000px;}
.ws35{word-spacing:0.480000px;}
.wsc2{word-spacing:0.510000px;}
.ws6f{word-spacing:0.540000px;}
.ws49{word-spacing:0.600000px;}
.ws96{word-spacing:0.660000px;}
.ws63{word-spacing:0.720000px;}
.ws99{word-spacing:0.780000px;}
.ws4c{word-spacing:0.840000px;}
.ws69{word-spacing:0.900000px;}
.ws14{word-spacing:0.918000px;}
.ws8f{word-spacing:0.960000px;}
.ws31{word-spacing:1.020000px;}
.ws26{word-spacing:1.080000px;}
.ws88{word-spacing:1.116000px;}
.ws6{word-spacing:1.122000px;}
.ws94{word-spacing:1.140000px;}
.ws60{word-spacing:1.200000px;}
.ws48{word-spacing:1.260000px;}
.ws21{word-spacing:1.320000px;}
.ws9e{word-spacing:1.380000px;}
.ws2a{word-spacing:1.440000px;}
.wsf{word-spacing:1.479000px;}
.ws6c{word-spacing:1.500000px;}
.ws7f{word-spacing:1.560000px;}
.ws5{word-spacing:1.581000px;}
.ws92{word-spacing:1.620000px;}
.ws4{word-spacing:1.632000px;}
.ws68{word-spacing:1.680000px;}
.ws71{word-spacing:1.740000px;}
.ws42{word-spacing:1.800000px;}
.ws25{word-spacing:1.860000px;}
.ws24{word-spacing:1.920000px;}
.ws36{word-spacing:1.980000px;}
.ws20{word-spacing:2.040000px;}
.ws23{word-spacing:2.100000px;}
.wse{word-spacing:2.142000px;}
.ws45{word-spacing:2.160000px;}
.ws22{word-spacing:2.220000px;}
.ws38{word-spacing:2.280000px;}
.ws30{word-spacing:2.340000px;}
.ws1a{word-spacing:2.376000px;}
.wsc{word-spacing:2.397000px;}
.ws57{word-spacing:2.400000px;}
.ws79{word-spacing:2.455200px;}
.ws56{word-spacing:2.460000px;}
.ws5f{word-spacing:2.520000px;}
.ws80{word-spacing:2.580000px;}
.ws93{word-spacing:2.640000px;}
.ws41{word-spacing:2.700000px;}
.ws91{word-spacing:2.760000px;}
.ws4f{word-spacing:2.820000px;}
.ws76{word-spacing:2.940000px;}
.ws6e{word-spacing:3.000000px;}
.ws3f{word-spacing:3.060000px;}
.wsa2{word-spacing:3.120000px;}
.ws2f{word-spacing:3.180000px;}
.ws83{word-spacing:3.240000px;}
.ws32{word-spacing:3.300000px;}
.ws2e{word-spacing:3.360000px;}
.ws15{word-spacing:3.417000px;}
.ws61{word-spacing:3.420000px;}
.ws77{word-spacing:3.480000px;}
.ws46{word-spacing:3.540000px;}
.ws9f{word-spacing:3.600000px;}
.ws9d{word-spacing:3.720000px;}
.ws4b{word-spacing:3.780000px;}
.ws40{word-spacing:3.840000px;}
.ws43{word-spacing:3.900000px;}
.wsb1{word-spacing:4.020000px;}
.ws37{word-spacing:4.080000px;}
.ws95{word-spacing:4.140000px;}
.ws7a{word-spacing:4.352400px;}
.ws5d{word-spacing:4.380000px;}
.wsae{word-spacing:4.500000px;}
.ws4a{word-spacing:4.560000px;}
.ws70{word-spacing:4.680000px;}
.wsb2{word-spacing:4.980000px;}
.ws67{word-spacing:5.040000px;}
.ws50{word-spacing:5.220000px;}
.ws90{word-spacing:5.280000px;}
.ws33{word-spacing:5.400000px;}
.wsb7{word-spacing:5.460000px;}
.wsab{word-spacing:11.400000px;}
.ws8b{word-spacing:23.400000px;}
.ws87{word-spacing:38.400000px;}
.wsc7{word-spacing:338.160000px;}
.wsc6{word-spacing:395.040000px;}
.ws8a{word-spacing:994.302000px;}
.wsa6{word-spacing:994.626000px;}
.ws65{word-spacing:994.734000px;}
.ws98{word-spacing:994.788000px;}
.wsaa{word-spacing:995.220000px;}
.wsc1{word-spacing:995.814000px;}
.wsbc{word-spacing:996.084000px;}
.ws7e{word-spacing:996.192000px;}
.ws3e{word-spacing:997.056000px;}
.wsb0{word-spacing:997.704000px;}
.ws85{word-spacing:1757.268000px;}
.ws8c{word-spacing:1757.592000px;}
.ws1b{word-spacing:1758.132000px;}
.wsa0{word-spacing:1759.590000px;}
.wsb3{word-spacing:1760.400000px;}
.wsbd{word-spacing:1760.724000px;}
.ws52{word-spacing:1761.102000px;}
.ws9b{word-spacing:1761.372000px;}
.wsad{word-spacing:1762.344000px;}
.wsa8{word-spacing:1763.748000px;}
.ws75{word-spacing:1764.504000px;}
._61{margin-left:-998.170800px;}
._a{margin-left:-996.892200px;}
._d{margin-left:-995.570400px;}
._b{margin-left:-994.302600px;}
._73{margin-left:-16.440000px;}
._0{margin-left:-13.449600px;}
._33{margin-left:-10.680000px;}
._50{margin-left:-9.268200px;}
._9{margin-left:-6.600000px;}
._6{margin-left:-4.880700px;}
._2{margin-left:-3.840000px;}
._1{margin-left:-1.920000px;}
._7{width:1.289400px;}
._3{width:2.325600px;}
._4{width:3.391500px;}
._5{width:4.470000px;}
._8{width:5.987400px;}
._60{width:6.998700px;}
._4d{width:8.148000px;}
._34{width:9.348000px;}
._19{width:11.220000px;}
._54{width:15.180000px;}
._21{width:16.200000px;}
._5a{width:20.994000px;}
._17{width:22.800000px;}
._1f{width:24.180000px;}
._12{width:26.640000px;}
._16{width:28.320000px;}
._56{width:32.808000px;}
._30{width:35.820000px;}
._57{width:37.500000px;}
._f{width:38.640000px;}
._1c{width:40.260000px;}
._49{width:41.334000px;}
._10{width:43.980000px;}
._23{width:45.660000px;}
._59{width:46.692000px;}
._58{width:48.480000px;}
._26{width:50.665200px;}
._32{width:52.228200px;}
._c{width:54.628200px;}
._31{width:55.740000px;}
._37{width:57.180000px;}
._25{width:59.340000px;}
._29{width:61.680000px;}
._18{width:62.820000px;}
._55{width:65.112000px;}
._45{width:68.604000px;}
._4c{width:70.560000px;}
._43{width:71.640000px;}
._2b{width:77.652000px;}
._1d{width:79.980000px;}
._27{width:83.652000px;}
._20{width:86.820000px;}
._3b{width:90.168000px;}
._44{width:91.764000px;}
._e{width:95.820000px;}
._5b{width:100.506000px;}
._22{width:103.572000px;}
._38{width:104.820000px;}
._28{width:107.214000px;}
._40{width:113.640000px;}
._3d{width:115.860000px;}
._52{width:122.195100px;}
._11{width:125.460000px;}
._14{width:128.808000px;}
._13{width:131.640000px;}
._35{width:143.472000px;}
._3f{width:147.542400px;}
._5c{width:149.112000px;}
._5d{width:155.640000px;}
._1e{width:161.472000px;}
._6f{width:163.040700px;}
._4f{width:165.540000px;}
._6b{width:191.286000px;}
._47{width:194.280000px;}
._1a{width:200.532000px;}
._2a{width:203.652000px;}
._74{width:207.660000px;}
._24{width:219.332700px;}
._5f{width:221.640000px;}
._6a{width:223.260000px;}
._3c{width:226.831800px;}
._70{width:230.220000px;}
._71{width:241.860000px;}
._48{width:249.084000px;}
._6c{width:252.538200px;}
._36{width:257.520000px;}
._2c{width:263.652000px;}
._6e{width:273.417600px;}
._69{width:282.120000px;}
._4e{width:291.000000px;}
._3a{width:299.640000px;}
._72{width:309.900000px;}
._42{width:311.640000px;}
._63{width:328.320000px;}
._4a{width:329.646000px;}
._3e{width:341.640000px;}
._62{width:343.200000px;}
._67{width:345.720000px;}
._6d{width:357.120000px;}
._5e{width:359.640000px;}
._68{width:361.920000px;}
._64{width:371.160000px;}
._66{width:375.000000px;}
._51{width:377.640000px;}
._1b{width:382.278000px;}
._53{width:389.640000px;}
._41{width:391.320000px;}
._2d{width:395.640000px;}
._65{width:398.640000px;}
._39{width:409.836000px;}
._15{width:419.652000px;}
._46{width:473.340000px;}
._2e{width:478.032000px;}
._4b{width:551.640000px;}
._2f{width:824.160000px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:22.200000px;}
.fs6{font-size:34.980000px;}
.fs7{font-size:41.400000px;}
.fs2{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:55.800000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:90.567000px;}
.y5b{bottom:90.567150px;}
.y52{bottom:91.318050px;}
.yb4{bottom:94.711050px;}
.y84{bottom:101.218200px;}
.y5d{bottom:107.817000px;}
.y5a{bottom:107.817150px;}
.y51{bottom:109.768050px;}
.yb3{bottom:111.961050px;}
.y27{bottom:117.268050px;}
.y83{bottom:118.468200px;}
.y59{bottom:125.067150px;}
.y50{bottom:128.218200px;}
.yb2{bottom:129.211050px;}
.y26{bottom:134.518050px;}
.y82{bottom:135.718200px;}
.y58{bottom:142.317150px;}
.yb1{bottom:146.461050px;}
.y4f{bottom:146.668050px;}
.y25{bottom:151.768050px;}
.y81{bottom:152.968050px;}
.yb0{bottom:163.711050px;}
.y4e{bottom:165.118050px;}
.y24{bottom:169.018050px;}
.y80{bottom:170.218050px;}
.yaf{bottom:180.961050px;}
.y4d{bottom:183.568200px;}
.y23{bottom:186.268050px;}
.y7f{bottom:187.468050px;}
.yae{bottom:198.211050px;}
.y4c{bottom:202.018050px;}
.y7e{bottom:204.718050px;}
.yad{bottom:215.461050px;}
.y4b{bottom:220.468050px;}
.y22{bottom:220.768050px;}
.y7d{bottom:221.968050px;}
.yac{bottom:232.711050px;}
.y21{bottom:238.018050px;}
.y4a{bottom:238.918050px;}
.y7c{bottom:239.218050px;}
.y5f{bottom:240.118050px;}
.yab{bottom:249.961050px;}
.y20{bottom:255.268050px;}
.y7b{bottom:256.468050px;}
.y49{bottom:257.368050px;}
.yaa{bottom:267.211050px;}
.y1f{bottom:272.518050px;}
.y7a{bottom:273.718050px;}
.y48{bottom:275.818200px;}
.yb6{bottom:280.618050px;}
.ya9{bottom:284.461050px;}
.y1e{bottom:289.768050px;}
.y79{bottom:290.968050px;}
.y47{bottom:294.268050px;}
.yb5{bottom:297.868050px;}
.ya8{bottom:301.711050px;}
.y1d{bottom:307.018050px;}
.y78{bottom:308.218050px;}
.y46{bottom:312.718050px;}
.ya7{bottom:318.961050px;}
.y1c{bottom:324.268050px;}
.y77{bottom:325.468050px;}
.y45{bottom:331.168050px;}
.ya6{bottom:336.211050px;}
.y1b{bottom:341.518050px;}
.y76{bottom:342.718050px;}
.y44{bottom:349.618050px;}
.ya5{bottom:353.461050px;}
.y1a{bottom:358.768050px;}
.y75{bottom:359.968050px;}
.y57{bottom:368.068200px;}
.ya4{bottom:370.711050px;}
.y5c{bottom:372.718050px;}
.y19{bottom:376.018050px;}
.y74{bottom:377.218050px;}
.y43{bottom:386.518050px;}
.ya3{bottom:387.961050px;}
.y18{bottom:393.268050px;}
.y73{bottom:394.468050px;}
.y56{bottom:404.968050px;}
.ya2{bottom:405.211050px;}
.y17{bottom:410.518050px;}
.y72{bottom:411.718050px;}
.ya1{bottom:422.461050px;}
.y42{bottom:423.418050px;}
.y16{bottom:427.768050px;}
.y71{bottom:428.968050px;}
.ya0{bottom:439.711050px;}
.y55{bottom:441.868050px;}
.y15{bottom:445.018050px;}
.y70{bottom:446.218050px;}
.y9f{bottom:456.961050px;}
.y54{bottom:460.318200px;}
.y14{bottom:462.268050px;}
.y6f{bottom:463.468050px;}
.y9e{bottom:474.211050px;}
.y41{bottom:478.768050px;}
.y6e{bottom:480.718050px;}
.y9d{bottom:491.461050px;}
.y13{bottom:496.768050px;}
.y40{bottom:497.218050px;}
.y6d{bottom:497.968050px;}
.y9c{bottom:508.711050px;}
.y12{bottom:514.018050px;}
.y6c{bottom:515.218050px;}
.y3f{bottom:515.668050px;}
.y9b{bottom:525.961050px;}
.y11{bottom:531.268050px;}
.y6b{bottom:532.468200px;}
.y3e{bottom:534.118050px;}
.y9a{bottom:543.211050px;}
.y10{bottom:548.518050px;}
.y6a{bottom:549.718200px;}
.y3d{bottom:552.568050px;}
.y99{bottom:560.461050px;}
.yf{bottom:565.768050px;}
.y69{bottom:566.968200px;}
.y3c{bottom:571.018050px;}
.y98{bottom:577.711050px;}
.ye{bottom:583.018050px;}
.y68{bottom:584.218200px;}
.y3b{bottom:589.468200px;}
.y97{bottom:594.961050px;}
.yd{bottom:600.268050px;}
.y67{bottom:601.468200px;}
.y3a{bottom:607.918050px;}
.y96{bottom:612.211050px;}
.yc{bottom:617.518050px;}
.y66{bottom:618.718200px;}
.y39{bottom:626.368050px;}
.y95{bottom:629.461050px;}
.yb{bottom:634.768050px;}
.y65{bottom:635.968200px;}
.y38{bottom:644.818050px;}
.y94{bottom:646.711050px;}
.ya{bottom:652.018050px;}
.y64{bottom:653.218200px;}
.y37{bottom:663.268050px;}
.y93{bottom:663.961050px;}
.y9{bottom:669.268050px;}
.y63{bottom:670.468200px;}
.y92{bottom:681.211050px;}
.y36{bottom:681.718200px;}
.y8{bottom:686.518050px;}
.y62{bottom:687.718200px;}
.y91{bottom:698.461050px;}
.y35{bottom:700.168050px;}
.y7{bottom:703.768050px;}
.y60{bottom:707.062200px;}
.y90{bottom:715.711050px;}
.y34{bottom:718.618050px;}
.y6{bottom:721.018050px;}
.y61{bottom:722.218200px;}
.y8f{bottom:732.961050px;}
.y33{bottom:737.068050px;}
.y5{bottom:738.268050px;}
.y8e{bottom:750.211050px;}
.y32{bottom:755.518050px;}
.y8d{bottom:767.461050px;}
.y31{bottom:773.968200px;}
.y8c{bottom:784.711050px;}
.y4{bottom:789.868050px;}
.y30{bottom:792.418050px;}
.y8b{bottom:801.961050px;}
.y2f{bottom:810.868050px;}
.y8a{bottom:819.211050px;}
.y2e{bottom:829.318050px;}
.y89{bottom:836.461050px;}
.y3{bottom:845.303700px;}
.y2d{bottom:847.768050px;}
.y88{bottom:853.711050px;}
.y29{bottom:857.389050px;}
.y28{bottom:864.889050px;}
.y2c{bottom:866.218200px;}
.y2{bottom:870.803700px;}
.y87{bottom:870.961050px;}
.y53{bottom:884.668050px;}
.y86{bottom:888.211050px;}
.y1{bottom:896.303700px;}
.y2b{bottom:903.118050px;}
.y85{bottom:905.461050px;}
.y2a{bottom:955.942350px;}
.h6{height:15.295800px;}
.hd{height:39.066000px;}
.hf{height:45.543000px;}
.he{height:45.696000px;}
.h5{height:46.002000px;}
.h10{height:46.614000px;}
.h4{height:48.195000px;}
.hb{height:49.996800px;}
.h7{height:50.868000px;}
.h9{height:54.120000px;}
.hc{height:54.840000px;}
.ha{height:56.520000px;}
.h8{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.966350px;}
.x2{left:28.835700px;}
.x1{left:72.283500px;}
.x4{left:80.787450px;}
.x9{left:85.039350px;}
.x8{left:93.543300px;}
.x5{left:102.047250px;}
.xe{left:191.787450px;}
.xb{left:353.408700px;}
.xc{left:361.912650px;}
.xa{left:366.164700px;}
.xd{left:374.668650px;}
.x7{left:651.643500px;}
.x6{left:654.512850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls17{letter-spacing:-2.112000pt;}
.ls2e{letter-spacing:-1.488000pt;}
.ls7{letter-spacing:-1.314667pt;}
.ls43{letter-spacing:-1.152000pt;}
.ls48{letter-spacing:-1.056000pt;}
.ls3e{letter-spacing:-0.800000pt;}
.ls3f{letter-spacing:-0.693333pt;}
.ls41{letter-spacing:-0.586667pt;}
.ls3d{letter-spacing:-0.533333pt;}
.ls47{letter-spacing:-0.528000pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls4e{letter-spacing:-0.453333pt;}
.ls42{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.373333pt;}
.ls3c{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.136000pt;}
.ls24{letter-spacing:-0.106667pt;}
.ls39{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:-0.090667pt;}
.ls1b{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:-0.045333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.026667pt;}
.ls32{letter-spacing:0.045067pt;}
.ls2{letter-spacing:0.045333pt;}
.ls26{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.090667pt;}
.ls11{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.136000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.181333pt;}
.ls13{letter-spacing:0.186667pt;}
.ls4c{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.197333pt;}
.lsf{letter-spacing:0.213333pt;}
.ls2b{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.249333pt;}
.ls10{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.272000pt;}
.ls31{letter-spacing:0.288000pt;}
.ls30{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.296000pt;}
.ls2c{letter-spacing:0.297600pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls49{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.346667pt;}
.ls14{letter-spacing:0.373333pt;}
.ls4a{letter-spacing:0.384000pt;}
.ls1e{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.408000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls36{letter-spacing:0.453333pt;}
.ls1f{letter-spacing:0.480000pt;}
.ls2d{letter-spacing:0.496000pt;}
.ls46{letter-spacing:0.506667pt;}
.ls25{letter-spacing:0.533333pt;}
.ls45{letter-spacing:0.560000pt;}
.ls15{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.624000pt;}
.ls27{letter-spacing:0.640000pt;}
.ls3a{letter-spacing:0.672000pt;}
.ls21{letter-spacing:0.693333pt;}
.ls8{letter-spacing:0.770667pt;}
.ls2a{letter-spacing:0.800000pt;}
.ls20{letter-spacing:0.853333pt;}
.ls23{letter-spacing:0.960000pt;}
.ls19{letter-spacing:1.066667pt;}
.ls4b{letter-spacing:1.088000pt;}
.ls44{letter-spacing:1.152000pt;}
.ls18{letter-spacing:1.344000pt;}
.ls37{letter-spacing:1.536000pt;}
.ls4f{letter-spacing:1.546667pt;}
.ls29{letter-spacing:1.584000pt;}
.ls40{letter-spacing:1.680000pt;}
.ls33{letter-spacing:1.728000pt;}
.ls34{letter-spacing:1.968000pt;}
.ls38{letter-spacing:3.712000pt;}
.ws89{word-spacing:-13.344000pt;}
.wsc4{word-spacing:-13.333333pt;}
.wsa5{word-spacing:-13.056000pt;}
.ws64{word-spacing:-12.960000pt;}
.ws97{word-spacing:-12.912000pt;}
.wsa9{word-spacing:-12.528000pt;}
.wsbe{word-spacing:-12.000000pt;}
.wsb8{word-spacing:-11.760000pt;}
.ws7d{word-spacing:-11.664000pt;}
.ws3b{word-spacing:-11.200000pt;}
.ws84{word-spacing:-11.146667pt;}
.wsb9{word-spacing:-11.106667pt;}
.ws39{word-spacing:-10.896000pt;}
.ws1{word-spacing:-10.789333pt;}
.ws3d{word-spacing:-10.453333pt;}
.ws3a{word-spacing:-10.346667pt;}
.wsaf{word-spacing:-10.320000pt;}
.ws17{word-spacing:-10.240000pt;}
.ws18{word-spacing:-10.186667pt;}
.ws19{word-spacing:-10.026667pt;}
.ws3c{word-spacing:-9.920000pt;}
.ws72{word-spacing:-9.866667pt;}
.wsbb{word-spacing:-9.746667pt;}
.wsc5{word-spacing:-9.520000pt;}
.wsc0{word-spacing:-9.293333pt;}
.wsba{word-spacing:-9.066667pt;}
.ws0{word-spacing:-8.704000pt;}
.wsbf{word-spacing:-8.613333pt;}
.ws74{word-spacing:-7.912000pt;}
.wsa1{word-spacing:-7.093333pt;}
.ws73{word-spacing:-6.529600pt;}
.wsb6{word-spacing:-2.453333pt;}
.wsb4{word-spacing:-2.026667pt;}
.wsac{word-spacing:-1.920000pt;}
.wsa7{word-spacing:-1.866667pt;}
.ws6b{word-spacing:-1.813333pt;}
.ws1f{word-spacing:-1.760000pt;}
.ws28{word-spacing:-1.706667pt;}
.ws27{word-spacing:-1.653333pt;}
.ws5c{word-spacing:-1.600000pt;}
.ws54{word-spacing:-1.546667pt;}
.ws8e{word-spacing:-1.493333pt;}
.ws10{word-spacing:-1.450667pt;}
.ws4e{word-spacing:-1.440000pt;}
.wsd{word-spacing:-1.405333pt;}
.ws1e{word-spacing:-1.386667pt;}
.ws9{word-spacing:-1.360000pt;}
.ws29{word-spacing:-1.333333pt;}
.ws66{word-spacing:-1.280000pt;}
.ws58{word-spacing:-1.226667pt;}
.ws6a{word-spacing:-1.173333pt;}
.ws1d{word-spacing:-1.120000pt;}
.ws1c{word-spacing:-1.066667pt;}
.ws51{word-spacing:-1.013333pt;}
.ws86{word-spacing:-0.960000pt;}
.wsa{word-spacing:-0.952000pt;}
.ws9a{word-spacing:-0.906667pt;}
.ws8d{word-spacing:-0.853333pt;}
.ws12{word-spacing:-0.816000pt;}
.ws5b{word-spacing:-0.800000pt;}
.wsa3{word-spacing:-0.746667pt;}
.wsb5{word-spacing:-0.693333pt;}
.ws47{word-spacing:-0.640000pt;}
.wsc3{word-spacing:-0.634667pt;}
.wsa4{word-spacing:-0.586667pt;}
.ws53{word-spacing:-0.533333pt;}
.ws6d{word-spacing:-0.480000pt;}
.ws8{word-spacing:-0.453333pt;}
.ws81{word-spacing:-0.426667pt;}
.ws5e{word-spacing:-0.373333pt;}
.ws44{word-spacing:-0.320000pt;}
.ws2{word-spacing:-0.315733pt;}
.ws2d{word-spacing:-0.266667pt;}
.ws2b{word-spacing:-0.213333pt;}
.ws7c{word-spacing:-0.198400pt;}
.ws16{word-spacing:-0.197333pt;}
.ws13{word-spacing:-0.181333pt;}
.ws59{word-spacing:-0.160000pt;}
.ws5a{word-spacing:-0.106667pt;}
.ws78{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.053333pt;}
.ws11{word-spacing:0.090667pt;}
.ws2c{word-spacing:0.106667pt;}
.ws82{word-spacing:0.160000pt;}
.ws9c{word-spacing:0.213333pt;}
.ws55{word-spacing:0.266667pt;}
.wsb{word-spacing:0.317333pt;}
.ws62{word-spacing:0.320000pt;}
.ws7b{word-spacing:0.347200pt;}
.ws7{word-spacing:0.362667pt;}
.ws34{word-spacing:0.373333pt;}
.ws35{word-spacing:0.426667pt;}
.wsc2{word-spacing:0.453333pt;}
.ws6f{word-spacing:0.480000pt;}
.ws49{word-spacing:0.533333pt;}
.ws96{word-spacing:0.586667pt;}
.ws63{word-spacing:0.640000pt;}
.ws99{word-spacing:0.693333pt;}
.ws4c{word-spacing:0.746667pt;}
.ws69{word-spacing:0.800000pt;}
.ws14{word-spacing:0.816000pt;}
.ws8f{word-spacing:0.853333pt;}
.ws31{word-spacing:0.906667pt;}
.ws26{word-spacing:0.960000pt;}
.ws88{word-spacing:0.992000pt;}
.ws6{word-spacing:0.997333pt;}
.ws94{word-spacing:1.013333pt;}
.ws60{word-spacing:1.066667pt;}
.ws48{word-spacing:1.120000pt;}
.ws21{word-spacing:1.173333pt;}
.ws9e{word-spacing:1.226667pt;}
.ws2a{word-spacing:1.280000pt;}
.wsf{word-spacing:1.314667pt;}
.ws6c{word-spacing:1.333333pt;}
.ws7f{word-spacing:1.386667pt;}
.ws5{word-spacing:1.405333pt;}
.ws92{word-spacing:1.440000pt;}
.ws4{word-spacing:1.450667pt;}
.ws68{word-spacing:1.493333pt;}
.ws71{word-spacing:1.546667pt;}
.ws42{word-spacing:1.600000pt;}
.ws25{word-spacing:1.653333pt;}
.ws24{word-spacing:1.706667pt;}
.ws36{word-spacing:1.760000pt;}
.ws20{word-spacing:1.813333pt;}
.ws23{word-spacing:1.866667pt;}
.wse{word-spacing:1.904000pt;}
.ws45{word-spacing:1.920000pt;}
.ws22{word-spacing:1.973333pt;}
.ws38{word-spacing:2.026667pt;}
.ws30{word-spacing:2.080000pt;}
.ws1a{word-spacing:2.112000pt;}
.wsc{word-spacing:2.130667pt;}
.ws57{word-spacing:2.133333pt;}
.ws79{word-spacing:2.182400pt;}
.ws56{word-spacing:2.186667pt;}
.ws5f{word-spacing:2.240000pt;}
.ws80{word-spacing:2.293333pt;}
.ws93{word-spacing:2.346667pt;}
.ws41{word-spacing:2.400000pt;}
.ws91{word-spacing:2.453333pt;}
.ws4f{word-spacing:2.506667pt;}
.ws76{word-spacing:2.613333pt;}
.ws6e{word-spacing:2.666667pt;}
.ws3f{word-spacing:2.720000pt;}
.wsa2{word-spacing:2.773333pt;}
.ws2f{word-spacing:2.826667pt;}
.ws83{word-spacing:2.880000pt;}
.ws32{word-spacing:2.933333pt;}
.ws2e{word-spacing:2.986667pt;}
.ws15{word-spacing:3.037333pt;}
.ws61{word-spacing:3.040000pt;}
.ws77{word-spacing:3.093333pt;}
.ws46{word-spacing:3.146667pt;}
.ws9f{word-spacing:3.200000pt;}
.ws9d{word-spacing:3.306667pt;}
.ws4b{word-spacing:3.360000pt;}
.ws40{word-spacing:3.413333pt;}
.ws43{word-spacing:3.466667pt;}
.wsb1{word-spacing:3.573333pt;}
.ws37{word-spacing:3.626667pt;}
.ws95{word-spacing:3.680000pt;}
.ws7a{word-spacing:3.868800pt;}
.ws5d{word-spacing:3.893333pt;}
.wsae{word-spacing:4.000000pt;}
.ws4a{word-spacing:4.053333pt;}
.ws70{word-spacing:4.160000pt;}
.wsb2{word-spacing:4.426667pt;}
.ws67{word-spacing:4.480000pt;}
.ws50{word-spacing:4.640000pt;}
.ws90{word-spacing:4.693333pt;}
.ws33{word-spacing:4.800000pt;}
.wsb7{word-spacing:4.853333pt;}
.wsab{word-spacing:10.133333pt;}
.ws8b{word-spacing:20.800000pt;}
.ws87{word-spacing:34.133333pt;}
.wsc7{word-spacing:300.586667pt;}
.wsc6{word-spacing:351.146667pt;}
.ws8a{word-spacing:883.824000pt;}
.wsa6{word-spacing:884.112000pt;}
.ws65{word-spacing:884.208000pt;}
.ws98{word-spacing:884.256000pt;}
.wsaa{word-spacing:884.640000pt;}
.wsc1{word-spacing:885.168000pt;}
.wsbc{word-spacing:885.408000pt;}
.ws7e{word-spacing:885.504000pt;}
.ws3e{word-spacing:886.272000pt;}
.wsb0{word-spacing:886.848000pt;}
.ws85{word-spacing:1562.016000pt;}
.ws8c{word-spacing:1562.304000pt;}
.ws1b{word-spacing:1562.784000pt;}
.wsa0{word-spacing:1564.080000pt;}
.wsb3{word-spacing:1564.800000pt;}
.wsbd{word-spacing:1565.088000pt;}
.ws52{word-spacing:1565.424000pt;}
.ws9b{word-spacing:1565.664000pt;}
.wsad{word-spacing:1566.528000pt;}
.wsa8{word-spacing:1567.776000pt;}
.ws75{word-spacing:1568.448000pt;}
._61{margin-left:-887.262933pt;}
._a{margin-left:-886.126400pt;}
._d{margin-left:-884.951467pt;}
._b{margin-left:-883.824533pt;}
._73{margin-left:-14.613333pt;}
._0{margin-left:-11.955200pt;}
._33{margin-left:-9.493333pt;}
._50{margin-left:-8.238400pt;}
._9{margin-left:-5.866667pt;}
._6{margin-left:-4.338400pt;}
._2{margin-left:-3.413333pt;}
._1{margin-left:-1.706667pt;}
._7{width:1.146133pt;}
._3{width:2.067200pt;}
._4{width:3.014667pt;}
._5{width:3.973333pt;}
._8{width:5.322133pt;}
._60{width:6.221067pt;}
._4d{width:7.242667pt;}
._34{width:8.309333pt;}
._19{width:9.973333pt;}
._54{width:13.493333pt;}
._21{width:14.400000pt;}
._5a{width:18.661333pt;}
._17{width:20.266667pt;}
._1f{width:21.493333pt;}
._12{width:23.680000pt;}
._16{width:25.173333pt;}
._56{width:29.162667pt;}
._30{width:31.840000pt;}
._57{width:33.333333pt;}
._f{width:34.346667pt;}
._1c{width:35.786667pt;}
._49{width:36.741333pt;}
._10{width:39.093333pt;}
._23{width:40.586667pt;}
._59{width:41.504000pt;}
._58{width:43.093333pt;}
._26{width:45.035733pt;}
._32{width:46.425067pt;}
._c{width:48.558400pt;}
._31{width:49.546667pt;}
._37{width:50.826667pt;}
._25{width:52.746667pt;}
._29{width:54.826667pt;}
._18{width:55.840000pt;}
._55{width:57.877333pt;}
._45{width:60.981333pt;}
._4c{width:62.720000pt;}
._43{width:63.680000pt;}
._2b{width:69.024000pt;}
._1d{width:71.093333pt;}
._27{width:74.357333pt;}
._20{width:77.173333pt;}
._3b{width:80.149333pt;}
._44{width:81.568000pt;}
._e{width:85.173333pt;}
._5b{width:89.338667pt;}
._22{width:92.064000pt;}
._38{width:93.173333pt;}
._28{width:95.301333pt;}
._40{width:101.013333pt;}
._3d{width:102.986667pt;}
._52{width:108.617867pt;}
._11{width:111.520000pt;}
._14{width:114.496000pt;}
._13{width:117.013333pt;}
._35{width:127.530667pt;}
._3f{width:131.148800pt;}
._5c{width:132.544000pt;}
._5d{width:138.346667pt;}
._1e{width:143.530667pt;}
._6f{width:144.925067pt;}
._4f{width:147.146667pt;}
._6b{width:170.032000pt;}
._47{width:172.693333pt;}
._1a{width:178.250667pt;}
._2a{width:181.024000pt;}
._74{width:184.586667pt;}
._24{width:194.962400pt;}
._5f{width:197.013333pt;}
._6a{width:198.453333pt;}
._3c{width:201.628267pt;}
._70{width:204.640000pt;}
._71{width:214.986667pt;}
._48{width:221.408000pt;}
._6c{width:224.478400pt;}
._36{width:228.906667pt;}
._2c{width:234.357333pt;}
._6e{width:243.037867pt;}
._69{width:250.773333pt;}
._4e{width:258.666667pt;}
._3a{width:266.346667pt;}
._72{width:275.466667pt;}
._42{width:277.013333pt;}
._63{width:291.840000pt;}
._4a{width:293.018667pt;}
._3e{width:303.680000pt;}
._62{width:305.066667pt;}
._67{width:307.306667pt;}
._6d{width:317.440000pt;}
._5e{width:319.680000pt;}
._68{width:321.706667pt;}
._64{width:329.920000pt;}
._66{width:333.333333pt;}
._51{width:335.680000pt;}
._1b{width:339.802667pt;}
._53{width:346.346667pt;}
._41{width:347.840000pt;}
._2d{width:351.680000pt;}
._65{width:354.346667pt;}
._39{width:364.298667pt;}
._15{width:373.024000pt;}
._46{width:420.746667pt;}
._2e{width:424.917333pt;}
._4b{width:490.346667pt;}
._2f{width:732.586667pt;}
.fs3{font-size:19.733333pt;}
.fs6{font-size:31.093333pt;}
.fs7{font-size:36.800000pt;}
.fs2{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:49.600000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:80.504000pt;}
.y5b{bottom:80.504133pt;}
.y52{bottom:81.171600pt;}
.yb4{bottom:84.187600pt;}
.y84{bottom:89.971733pt;}
.y5d{bottom:95.837333pt;}
.y5a{bottom:95.837467pt;}
.y51{bottom:97.571600pt;}
.yb3{bottom:99.520933pt;}
.y27{bottom:104.238267pt;}
.y83{bottom:105.305067pt;}
.y59{bottom:111.170800pt;}
.y50{bottom:113.971733pt;}
.yb2{bottom:114.854267pt;}
.y26{bottom:119.571600pt;}
.y82{bottom:120.638400pt;}
.y58{bottom:126.504133pt;}
.yb1{bottom:130.187600pt;}
.y4f{bottom:130.371600pt;}
.y25{bottom:134.904933pt;}
.y81{bottom:135.971600pt;}
.yb0{bottom:145.520933pt;}
.y4e{bottom:146.771600pt;}
.y24{bottom:150.238267pt;}
.y80{bottom:151.304933pt;}
.yaf{bottom:160.854267pt;}
.y4d{bottom:163.171733pt;}
.y23{bottom:165.571600pt;}
.y7f{bottom:166.638267pt;}
.yae{bottom:176.187600pt;}
.y4c{bottom:179.571600pt;}
.y7e{bottom:181.971600pt;}
.yad{bottom:191.520933pt;}
.y4b{bottom:195.971600pt;}
.y22{bottom:196.238267pt;}
.y7d{bottom:197.304933pt;}
.yac{bottom:206.854267pt;}
.y21{bottom:211.571600pt;}
.y4a{bottom:212.371600pt;}
.y7c{bottom:212.638267pt;}
.y5f{bottom:213.438267pt;}
.yab{bottom:222.187600pt;}
.y20{bottom:226.904933pt;}
.y7b{bottom:227.971600pt;}
.y49{bottom:228.771600pt;}
.yaa{bottom:237.520933pt;}
.y1f{bottom:242.238267pt;}
.y7a{bottom:243.304933pt;}
.y48{bottom:245.171733pt;}
.yb6{bottom:249.438267pt;}
.ya9{bottom:252.854267pt;}
.y1e{bottom:257.571600pt;}
.y79{bottom:258.638267pt;}
.y47{bottom:261.571600pt;}
.yb5{bottom:264.771600pt;}
.ya8{bottom:268.187600pt;}
.y1d{bottom:272.904933pt;}
.y78{bottom:273.971600pt;}
.y46{bottom:277.971600pt;}
.ya7{bottom:283.520933pt;}
.y1c{bottom:288.238267pt;}
.y77{bottom:289.304933pt;}
.y45{bottom:294.371600pt;}
.ya6{bottom:298.854267pt;}
.y1b{bottom:303.571600pt;}
.y76{bottom:304.638267pt;}
.y44{bottom:310.771600pt;}
.ya5{bottom:314.187600pt;}
.y1a{bottom:318.904933pt;}
.y75{bottom:319.971600pt;}
.y57{bottom:327.171733pt;}
.ya4{bottom:329.520933pt;}
.y5c{bottom:331.304933pt;}
.y19{bottom:334.238267pt;}
.y74{bottom:335.304933pt;}
.y43{bottom:343.571600pt;}
.ya3{bottom:344.854267pt;}
.y18{bottom:349.571600pt;}
.y73{bottom:350.638267pt;}
.y56{bottom:359.971600pt;}
.ya2{bottom:360.187600pt;}
.y17{bottom:364.904933pt;}
.y72{bottom:365.971600pt;}
.ya1{bottom:375.520933pt;}
.y42{bottom:376.371600pt;}
.y16{bottom:380.238267pt;}
.y71{bottom:381.304933pt;}
.ya0{bottom:390.854267pt;}
.y55{bottom:392.771600pt;}
.y15{bottom:395.571600pt;}
.y70{bottom:396.638267pt;}
.y9f{bottom:406.187600pt;}
.y54{bottom:409.171733pt;}
.y14{bottom:410.904933pt;}
.y6f{bottom:411.971600pt;}
.y9e{bottom:421.520933pt;}
.y41{bottom:425.571600pt;}
.y6e{bottom:427.304933pt;}
.y9d{bottom:436.854267pt;}
.y13{bottom:441.571600pt;}
.y40{bottom:441.971600pt;}
.y6d{bottom:442.638267pt;}
.y9c{bottom:452.187600pt;}
.y12{bottom:456.904933pt;}
.y6c{bottom:457.971600pt;}
.y3f{bottom:458.371600pt;}
.y9b{bottom:467.520933pt;}
.y11{bottom:472.238267pt;}
.y6b{bottom:473.305067pt;}
.y3e{bottom:474.771600pt;}
.y9a{bottom:482.854267pt;}
.y10{bottom:487.571600pt;}
.y6a{bottom:488.638400pt;}
.y3d{bottom:491.171600pt;}
.y99{bottom:498.187600pt;}
.yf{bottom:502.904933pt;}
.y69{bottom:503.971733pt;}
.y3c{bottom:507.571600pt;}
.y98{bottom:513.520933pt;}
.ye{bottom:518.238267pt;}
.y68{bottom:519.305067pt;}
.y3b{bottom:523.971733pt;}
.y97{bottom:528.854267pt;}
.yd{bottom:533.571600pt;}
.y67{bottom:534.638400pt;}
.y3a{bottom:540.371600pt;}
.y96{bottom:544.187600pt;}
.yc{bottom:548.904933pt;}
.y66{bottom:549.971733pt;}
.y39{bottom:556.771600pt;}
.y95{bottom:559.520933pt;}
.yb{bottom:564.238267pt;}
.y65{bottom:565.305067pt;}
.y38{bottom:573.171600pt;}
.y94{bottom:574.854267pt;}
.ya{bottom:579.571600pt;}
.y64{bottom:580.638400pt;}
.y37{bottom:589.571600pt;}
.y93{bottom:590.187600pt;}
.y9{bottom:594.904933pt;}
.y63{bottom:595.971733pt;}
.y92{bottom:605.520933pt;}
.y36{bottom:605.971733pt;}
.y8{bottom:610.238267pt;}
.y62{bottom:611.305067pt;}
.y91{bottom:620.854267pt;}
.y35{bottom:622.371600pt;}
.y7{bottom:625.571600pt;}
.y60{bottom:628.499733pt;}
.y90{bottom:636.187600pt;}
.y34{bottom:638.771600pt;}
.y6{bottom:640.904933pt;}
.y61{bottom:641.971733pt;}
.y8f{bottom:651.520933pt;}
.y33{bottom:655.171600pt;}
.y5{bottom:656.238267pt;}
.y8e{bottom:666.854267pt;}
.y32{bottom:671.571600pt;}
.y8d{bottom:682.187600pt;}
.y31{bottom:687.971733pt;}
.y8c{bottom:697.520933pt;}
.y4{bottom:702.104933pt;}
.y30{bottom:704.371600pt;}
.y8b{bottom:712.854267pt;}
.y2f{bottom:720.771600pt;}
.y8a{bottom:728.187600pt;}
.y2e{bottom:737.171600pt;}
.y89{bottom:743.520933pt;}
.y3{bottom:751.381067pt;}
.y2d{bottom:753.571600pt;}
.y88{bottom:758.854267pt;}
.y29{bottom:762.123600pt;}
.y28{bottom:768.790267pt;}
.y2c{bottom:769.971733pt;}
.y2{bottom:774.047733pt;}
.y87{bottom:774.187600pt;}
.y53{bottom:786.371600pt;}
.y86{bottom:789.520933pt;}
.y1{bottom:796.714400pt;}
.y2b{bottom:802.771600pt;}
.y85{bottom:804.854267pt;}
.y2a{bottom:849.726533pt;}
.h6{height:13.596267pt;}
.hd{height:34.725333pt;}
.hf{height:40.482667pt;}
.he{height:40.618667pt;}
.h5{height:40.890667pt;}
.h10{height:41.434667pt;}
.h4{height:42.840000pt;}
.hb{height:44.441600pt;}
.h7{height:45.216000pt;}
.h9{height:48.106667pt;}
.hc{height:48.746667pt;}
.ha{height:50.240000pt;}
.h8{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:23.081200pt;}
.x2{left:25.631733pt;}
.x1{left:64.252000pt;}
.x4{left:71.811067pt;}
.x9{left:75.590533pt;}
.x8{left:83.149600pt;}
.x5{left:90.708667pt;}
.xe{left:170.477733pt;}
.xb{left:314.141067pt;}
.xc{left:321.700133pt;}
.xa{left:325.479733pt;}
.xd{left:333.038800pt;}
.x7{left:579.238667pt;}
.x6{left:581.789200pt;}
}




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