
    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_658ef8e80c98d0d784800b07.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_711faa22965dfebface5f248.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_3ff9e70d076e241ead4b9155.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_6cbf06ed7a1fb58d2876fb7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_bd16de58792e08b3f3aaf9c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_d0aa61837ffaae98f5e8d8d7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_27739f07cfd275576bd72c73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_ad30dcd7751844dcafb03ef4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364258;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_3e1081d099e52ab7d0d3cda8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.992188;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);}
.v2{vertical-align:-24.120000px;}
.v4{vertical-align:-1.803600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.803600px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.ls19{letter-spacing:-0.240480px;}
.ls15{letter-spacing:-0.162000px;}
.ls10{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.143640px;}
.ls25{letter-spacing:-0.131760px;}
.ls17{letter-spacing:-0.120240px;}
.ls16{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.065880px;}
.ls18{letter-spacing:-0.060120px;}
.ls36{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.043200px;}
.ls6{letter-spacing:0.048600px;}
.ls3{letter-spacing:0.054000px;}
.ls22{letter-spacing:0.060120px;}
.ls24{letter-spacing:0.065880px;}
.ls4{letter-spacing:0.070200px;}
.ls23{letter-spacing:0.072000px;}
.ls26{letter-spacing:0.072144px;}
.ls1d{letter-spacing:0.079200px;}
.ls7{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.120240px;}
.ls28{letter-spacing:0.126252px;}
.ls12{letter-spacing:0.131760px;}
.lsf{letter-spacing:0.144000px;}
.ls2a{letter-spacing:0.158112px;}
.ls37{letter-spacing:0.162000px;}
.ls2c{letter-spacing:0.180360px;}
.lsd{letter-spacing:0.192240px;}
.ls1{letter-spacing:0.200880px;}
.ls14{letter-spacing:0.270000px;}
.ls32{letter-spacing:0.329400px;}
.ls31{letter-spacing:0.362340px;}
.ls2{letter-spacing:0.756000px;}
.ls35{letter-spacing:0.841680px;}
.ls27{letter-spacing:1.142280px;}
.ls2e{letter-spacing:1.202400px;}
.ls20{letter-spacing:1.232460px;}
.ls2f{letter-spacing:1.280556px;}
.ls30{letter-spacing:1.563120px;}
.ls34{letter-spacing:2.164320px;}
.ls1f{letter-spacing:3.306600px;}
.lsa{letter-spacing:3.996000px;}
.ls2d{letter-spacing:5.110200px;}
.ls1a{letter-spacing:6.192360px;}
.ls2b{letter-spacing:6.913800px;}
.ls5{letter-spacing:7.614000px;}
.ls33{letter-spacing:7.635240px;}
.ls21{letter-spacing:9.078120px;}
.ls8{letter-spacing:10.098000px;}
.ls9{letter-spacing:10.476000px;}
.ls29{letter-spacing:10.521000px;}
.ls1c{letter-spacing:14.849640px;}
.ls1e{letter-spacing:26.352000px;}
.ls1b{letter-spacing:45.570960px;}
.lsb{letter-spacing:53.424000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws9f{word-spacing:-16.416000px;}
.ws6e{word-spacing:-16.344000px;}
.ws9{word-spacing:-16.128000px;}
.ws5{word-spacing:-14.823000px;}
.ws46{word-spacing:-14.757120px;}
.ws45{word-spacing:-13.707360px;}
.wsc{word-spacing:-13.587120px;}
.wsa{word-spacing:-13.527000px;}
.wsb{word-spacing:-13.466880px;}
.ws9e{word-spacing:-13.346640px;}
.ws7{word-spacing:-12.258000px;}
.ws6{word-spacing:-12.204000px;}
.wsa0{word-spacing:-12.150000px;}
.wsad{word-spacing:-12.096000px;}
.ws8{word-spacing:-12.042000px;}
.ws2{word-spacing:-10.820880px;}
.ws3{word-spacing:-10.677240px;}
.ws4{word-spacing:-9.519120px;}
.wsa6{word-spacing:-3.246480px;}
.ws99{word-spacing:-3.006000px;}
.ws31{word-spacing:-2.885760px;}
.wsa2{word-spacing:-2.765520px;}
.ws3c{word-spacing:-2.645280px;}
.ws53{word-spacing:-2.525040px;}
.ws6b{word-spacing:-2.164320px;}
.ws14{word-spacing:-2.160000px;}
.ws3d{word-spacing:-2.044080px;}
.ws1f{word-spacing:-1.836000px;}
.ws70{word-spacing:-1.803600px;}
.ws34{word-spacing:-1.683360px;}
.ws7b{word-spacing:-1.623240px;}
.ws71{word-spacing:-1.563120px;}
.ws3f{word-spacing:-1.442880px;}
.ws79{word-spacing:-1.202400px;}
.ws76{word-spacing:-1.082160px;}
.ws7a{word-spacing:-0.961920px;}
.ws81{word-spacing:-0.721440px;}
.ws48{word-spacing:-0.360720px;}
.wsd{word-spacing:-0.288360px;}
.ws15{word-spacing:-0.270000px;}
.ws11{word-spacing:-0.263520px;}
.ws5e{word-spacing:-0.240480px;}
.wse{word-spacing:-0.216000px;}
.ws6d{word-spacing:-0.180360px;}
.ws5d{word-spacing:-0.144000px;}
.ws35{word-spacing:-0.120240px;}
.wsab{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.065880px;}
.wsa7{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.wsa9{word-spacing:0.054000px;}
.ws38{word-spacing:0.060120px;}
.ws6f{word-spacing:0.065880px;}
.ws10{word-spacing:0.072000px;}
.ws23{word-spacing:0.108000px;}
.ws3e{word-spacing:0.120240px;}
.wsf{word-spacing:0.144000px;}
.wsaa{word-spacing:0.162000px;}
.ws58{word-spacing:0.180360px;}
.wsa8{word-spacing:0.216000px;}
.ws42{word-spacing:0.240480px;}
.ws39{word-spacing:0.360720px;}
.wsac{word-spacing:0.378000px;}
.ws37{word-spacing:0.480960px;}
.ws4c{word-spacing:0.601200px;}
.ws6a{word-spacing:0.661320px;}
.ws13{word-spacing:0.702000px;}
.ws7f{word-spacing:0.781560px;}
.ws8c{word-spacing:0.841680px;}
.ws5b{word-spacing:0.901800px;}
.ws57{word-spacing:1.022040px;}
.ws1d{word-spacing:1.026000px;}
.ws17{word-spacing:1.080000px;}
.ws61{word-spacing:1.142280px;}
.ws4d{word-spacing:1.382760px;}
.ws36{word-spacing:1.503000px;}
.ws83{word-spacing:1.623240px;}
.ws80{word-spacing:1.743480px;}
.ws98{word-spacing:1.863720px;}
.ws7e{word-spacing:1.983960px;}
.ws5a{word-spacing:2.104200px;}
.ws8d{word-spacing:2.224440px;}
.ws8e{word-spacing:2.344680px;}
.ws40{word-spacing:2.464920px;}
.ws72{word-spacing:2.585160px;}
.ws41{word-spacing:2.705400px;}
.ws2d{word-spacing:2.825640px;}
.ws4b{word-spacing:3.066120px;}
.ws60{word-spacing:3.186360px;}
.ws44{word-spacing:3.306600px;}
.ws2e{word-spacing:3.366720px;}
.ws2c{word-spacing:3.426840px;}
.ws2b{word-spacing:3.547080px;}
.ws19{word-spacing:3.564000px;}
.ws2a{word-spacing:3.787560px;}
.ws3a{word-spacing:3.907800px;}
.ws22{word-spacing:3.942000px;}
.ws9c{word-spacing:4.148280px;}
.ws4f{word-spacing:4.268520px;}
.ws94{word-spacing:4.629240px;}
.ws1c{word-spacing:4.644000px;}
.ws4e{word-spacing:4.869720px;}
.ws75{word-spacing:4.989960px;}
.ws74{word-spacing:5.110200px;}
.ws56{word-spacing:5.230440px;}
.ws7d{word-spacing:5.350680px;}
.ws25{word-spacing:5.400000px;}
.ws9a{word-spacing:5.470920px;}
.ws50{word-spacing:5.591160px;}
.ws33{word-spacing:5.711400px;}
.ws86{word-spacing:5.891760px;}
.ws87{word-spacing:5.951880px;}
.ws32{word-spacing:6.072120px;}
.ws96{word-spacing:6.192360px;}
.ws95{word-spacing:6.252480px;}
.ws82{word-spacing:6.432840px;}
.ws52{word-spacing:6.553080px;}
.ws51{word-spacing:6.673320px;}
.ws24{word-spacing:6.804000px;}
.wsa4{word-spacing:6.913800px;}
.ws73{word-spacing:6.973920px;}
.ws7c{word-spacing:7.034040px;}
.ws2f{word-spacing:7.154280px;}
.ws1a{word-spacing:7.182000px;}
.ws30{word-spacing:7.274520px;}
.ws84{word-spacing:7.394760px;}
.ws77{word-spacing:7.515000px;}
.ws18{word-spacing:7.560000px;}
.wsa1{word-spacing:7.635240px;}
.ws78{word-spacing:7.695360px;}
.ws54{word-spacing:7.755480px;}
.ws8b{word-spacing:7.875720px;}
.ws93{word-spacing:8.116200px;}
.ws64{word-spacing:8.236440px;}
.wsa3{word-spacing:8.717400px;}
.ws62{word-spacing:8.777520px;}
.ws63{word-spacing:8.837640px;}
.ws59{word-spacing:8.957880px;}
.ws68{word-spacing:9.078120px;}
.ws69{word-spacing:9.138240px;}
.ws1b{word-spacing:9.180000px;}
.ws49{word-spacing:9.318600px;}
.ws4a{word-spacing:9.559080px;}
.ws26{word-spacing:9.936000px;}
.ws47{word-spacing:10.040040px;}
.ws29{word-spacing:10.160280px;}
.ws43{word-spacing:10.400760px;}
.ws20{word-spacing:10.422000px;}
.ws21{word-spacing:10.476000px;}
.ws3b{word-spacing:10.521000px;}
.wsa5{word-spacing:10.761480px;}
.ws88{word-spacing:11.362680px;}
.ws8a{word-spacing:11.482920px;}
.ws1e{word-spacing:11.502000px;}
.ws89{word-spacing:11.603160px;}
.ws55{word-spacing:11.723400px;}
.ws66{word-spacing:12.024000px;}
.ws8f{word-spacing:12.204360px;}
.ws67{word-spacing:12.444840px;}
.ws65{word-spacing:12.925800px;}
.ws16{word-spacing:13.284000px;}
.ws5f{word-spacing:13.887720px;}
.ws85{word-spacing:14.488920px;}
.ws90{word-spacing:14.609160px;}
.ws91{word-spacing:14.729400px;}
.ws5c{word-spacing:14.969880px;}
.ws9d{word-spacing:15.691320px;}
.ws97{word-spacing:16.412760px;}
.ws6c{word-spacing:16.533000px;}
.ws27{word-spacing:16.773480px;}
.ws28{word-spacing:17.074080px;}
.ws92{word-spacing:18.336600px;}
.ws9b{word-spacing:19.779480px;}
._2{margin-left:-7.353600px;}
._3{margin-left:-4.284000px;}
._1{margin-left:-1.996800px;}
._4{width:1.038480px;}
._6{width:2.135076px;}
._8{width:3.270528px;}
._c{width:4.565016px;}
._0{width:5.587200px;}
._7{width:7.425636px;}
._9{width:9.090144px;}
._a{width:10.367136px;}
._b{width:11.387544px;}
._5{width:17.369040px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fsa{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.120000px;}
.fs8{font-size:65.880000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs4{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y53{bottom:2.526000px;}
.yc{bottom:8.040000px;}
.y52{bottom:16.926000px;}
.y51{bottom:32.613611px;}
.y1c{bottom:58.050000px;}
.y1a{bottom:69.510000px;}
.y19{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.y18{bottom:113.670000px;}
.y93{bottom:114.538680px;}
.yc5{bottom:117.306360px;}
.y11e{bottom:123.556500px;}
.yf0{bottom:123.677820px;}
.y50{bottom:125.352900px;}
.y86{bottom:128.230380px;}
.y10{bottom:133.935000px;}
.yc4{bottom:135.673020px;}
.y17{bottom:135.750000px;}
.y11d{bottom:140.026500px;}
.yef{bottom:142.044480px;}
.y4f{bottom:143.719560px;}
.y85{bottom:146.506860px;}
.y92{bottom:146.853180px;}
.yc3{bottom:153.949500px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y11c{bottom:156.591000px;}
.y16{bottom:157.830000px;}
.yee{bottom:160.320960px;}
.y4e{bottom:161.996040px;}
.y84{bottom:164.783340px;}
.yc2{bottom:172.316160px;}
.y11b{bottom:173.061000px;}
.yed{bottom:178.687620px;}
.y83{bottom:183.150000px;}
.y4d{bottom:189.260460px;}
.y11a{bottom:189.531000px;}
.yc1{bottom:190.592640px;}
.yec{bottom:196.964100px;}
.y119{bottom:206.001000px;}
.y4c{bottom:207.627120px;}
.yc0{bottom:208.869120px;}
.y82{bottom:210.780000px;}
.yeb{bottom:215.240580px;}
.y118{bottom:222.471000px;}
.y4b{bottom:225.993780px;}
.yea{bottom:233.607240px;}
.ybf{bottom:236.133540px;}
.y117{bottom:238.941000px;}
.y4a{bottom:244.270260px;}
.y81{bottom:248.416560px;}
.ye9{bottom:251.883720px;}
.ybe{bottom:254.500200px;}
.y116{bottom:255.411000px;}
.y49{bottom:262.636920px;}
.y80{bottom:266.873400px;}
.ye8{bottom:270.250380px;}
.y115{bottom:271.881000px;}
.ybd{bottom:272.866860px;}
.y48{bottom:280.913400px;}
.y7f{bottom:285.149880px;}
.y114{bottom:288.351000px;}
.ye7{bottom:288.526860px;}
.ybc{bottom:291.143340px;}
.y47{bottom:299.189880px;}
.y7e{bottom:303.426360px;}
.y113{bottom:304.821000px;}
.ye6{bottom:306.893520px;}
.ybb{bottom:309.510000px;}
.y112{bottom:321.385500px;}
.y7d{bottom:321.793020px;}
.ye5{bottom:325.170000px;}
.y46{bottom:326.454300px;}
.yba{bottom:337.590000px;}
.y111{bottom:337.855500px;}
.y7c{bottom:340.069500px;}
.ya{bottom:344.680500px;}
.y45{bottom:344.820960px;}
.ye4{bottom:352.800000px;}
.y110{bottom:354.325500px;}
.y7b{bottom:358.436160px;}
.y44{bottom:363.187620px;}
.y10f{bottom:370.795500px;}
.yb9{bottom:376.623540px;}
.y7a{bottom:376.712640px;}
.y43{bottom:381.464100px;}
.yd{bottom:386.490000px;}
.y10e{bottom:387.265500px;}
.ye3{bottom:390.303180px;}
.yb8{bottom:395.080380px;}
.y9{bottom:395.689500px;}
.y42{bottom:399.830760px;}
.y10d{bottom:403.735500px;}
.y79{bottom:403.977060px;}
.ye2{bottom:408.760020px;}
.yb7{bottom:413.356860px;}
.y41{bottom:418.107240px;}
.y10c{bottom:420.205500px;}
.y78{bottom:422.343720px;}
.ye1{bottom:427.036500px;}
.yb6{bottom:431.723520px;}
.yb{bottom:434.850000px;}
.y40{bottom:436.473900px;}
.y10b{bottom:436.675500px;}
.y77{bottom:440.710380px;}
.ye0{bottom:445.403160px;}
.y8{bottom:446.698500px;}
.yb5{bottom:450.000000px;}
.y10a{bottom:453.145500px;}
.y3f{bottom:454.750380px;}
.y76{bottom:458.986860px;}
.y109{bottom:469.710000px;}
.ydf{bottom:472.577400px;}
.y3e{bottom:473.026860px;}
.y75{bottom:477.353520px;}
.yb4{bottom:477.630000px;}
.y108{bottom:486.180000px;}
.y11{bottom:488.055000px;}
.yde{bottom:491.034240px;}
.y3d{bottom:491.393520px;}
.y74{bottom:495.630000px;}
.y7{bottom:497.707500px;}
.y107{bottom:502.650000px;}
.y91{bottom:506.400840px;}
.ydd{bottom:509.310720px;}
.y3c{bottom:509.670000px;}
.yb3{bottom:515.259900px;}
.y106{bottom:519.120000px;}
.y73{bottom:523.260000px;}
.y90{bottom:524.767500px;}
.ydc{bottom:527.677380px;}
.yb2{bottom:533.716740px;}
.y3b{bottom:537.840000px;}
.y12{bottom:538.230000px;}
.y8f{bottom:543.134160px;}
.y105{bottom:545.850000px;}
.ydb{bottom:545.953860px;}
.y6{bottom:548.716500px;}
.yb1{bottom:551.993220px;}
.y72{bottom:561.870000px;}
.yda{bottom:564.230340px;}
.y8e{bottom:570.308400px;}
.yb0{bottom:570.359880px;}
.y3a{bottom:578.790000px;}
.yd9{bottom:582.597000px;}
.y104{bottom:584.910000px;}
.yaf{bottom:588.636360px;}
.y1b{bottom:589.605000px;}
.y39{bottom:595.260000px;}
.y5{bottom:599.725500px;}
.y71{bottom:600.783300px;}
.y8d{bottom:602.622900px;}
.yae{bottom:607.003020px;}
.yd8{bottom:609.771240px;}
.y103{bottom:613.170000px;}
.y70{bottom:619.240140px;}
.y38{bottom:620.721000px;}
.yad{bottom:625.279500px;}
.yd7{bottom:628.228080px;}
.ye{bottom:631.920000px;}
.y37{bottom:637.191000px;}
.y6f{bottom:637.516620px;}
.yac{bottom:643.555980px;}
.yd6{bottom:646.504560px;}
.y102{bottom:652.124880px;}
.y36{bottom:653.661000px;}
.y6e{bottom:655.883280px;}
.yd5{bottom:664.871220px;}
.y35{bottom:670.131000px;}
.y101{bottom:670.491540px;}
.yab{bottom:670.820400px;}
.y6d{bottom:683.057520px;}
.yd4{bottom:683.147700px;}
.y34{bottom:686.601000px;}
.y100{bottom:688.858200px;}
.yaa{bottom:689.187060px;}
.y6c{bottom:701.514360px;}
.y33{bottom:703.071000px;}
.yff{bottom:707.134680px;}
.ya9{bottom:707.553720px;}
.y32{bottom:719.541000px;}
.y6b{bottom:719.790840px;}
.yfe{bottom:725.501340px;}
.ya8{bottom:725.830200px;}
.y31{bottom:736.105500px;}
.y6a{bottom:738.157500px;}
.yfd{bottom:743.777820px;}
.ya7{bottom:744.196860px;}
.y30{bottom:752.575500px;}
.yd3{bottom:756.433980px;}
.yfc{bottom:762.144480px;}
.ya6{bottom:762.473340px;}
.y69{bottom:765.331740px;}
.y2f{bottom:769.045500px;}
.yd2{bottom:774.710460px;}
.y4{bottom:778.225500px;}
.yfb{bottom:780.420960px;}
.ya5{bottom:780.840000px;}
.y68{bottom:783.698400px;}
.y2e{bottom:785.515500px;}
.yd1{bottom:793.077120px;}
.yfa{bottom:798.787620px;}
.y2d{bottom:801.985500px;}
.y67{bottom:802.065060px;}
.ya4{bottom:808.380000px;}
.yd0{bottom:811.353600px;}
.y13{bottom:815.670000px;}
.yf9{bottom:817.064100px;}
.y2c{bottom:818.455500px;}
.y66{bottom:820.341540px;}
.y2b{bottom:834.925500px;}
.yf8{bottom:835.430760px;}
.ycf{bottom:838.618020px;}
.ya3{bottom:846.100080px;}
.y65{bottom:847.605960px;}
.y2a{bottom:851.395500px;}
.yf7{bottom:853.707240px;}
.yce{bottom:856.984680px;}
.ya2{bottom:864.466740px;}
.y64{bottom:865.972620px;}
.y29{bottom:867.865500px;}
.yf6{bottom:871.983720px;}
.ycd{bottom:875.351340px;}
.ya1{bottom:882.833400px;}
.y63{bottom:884.339280px;}
.y28{bottom:884.430000px;}
.yf5{bottom:890.350380px;}
.ycc{bottom:893.627820px;}
.y27{bottom:900.900000px;}
.ya0{bottom:901.109880px;}
.y62{bottom:902.615760px;}
.y3{bottom:905.716500px;}
.yf4{bottom:908.626860px;}
.ycb{bottom:911.994480px;}
.y26{bottom:917.370000px;}
.y9f{bottom:919.476540px;}
.y61{bottom:920.982420px;}
.yf3{bottom:926.993520px;}
.yca{bottom:930.270960px;}
.y25{bottom:933.840000px;}
.y9e{bottom:937.753020px;}
.y12b{bottom:938.880000px;}
.y60{bottom:939.258900px;}
.yf2{bottom:945.270000px;}
.yc9{bottom:948.547440px;}
.y12a{bottom:955.350000px;}
.y9d{bottom:956.119680px;}
.y5f{bottom:957.535380px;}
.y24{bottom:960.120000px;}
.y2{bottom:964.228500px;}
.yc8{bottom:966.914100px;}
.y129{bottom:972.270000px;}
.yf1{bottom:973.350000px;}
.y5e{bottom:975.902040px;}
.y8c{bottom:980.266680px;}
.y23{bottom:980.280000px;}
.y9c{bottom:983.293920px;}
.yc7{bottom:985.190580px;}
.y1{bottom:989.716500px;}
.y128{bottom:990.090000px;}
.y5d{bottom:994.178520px;}
.y8b{bottom:998.723520px;}
.y22{bottom:1000.358100px;}
.y9b{bottom:1001.750760px;}
.y127{bottom:1007.100000px;}
.yc6{bottom:1012.455000px;}
.y5c{bottom:1012.545180px;}
.y8a{bottom:1017.000000px;}
.y9a{bottom:1020.027240px;}
.y126{bottom:1024.920000px;}
.y5b{bottom:1030.821660px;}
.y21{bottom:1035.540000px;}
.y99{bottom:1038.303720px;}
.y125{bottom:1041.390000px;}
.y89{bottom:1044.630000px;}
.y5a{bottom:1049.188320px;}
.y20{bottom:1055.700000px;}
.y98{bottom:1056.670380px;}
.y124{bottom:1057.860000px;}
.y59{bottom:1067.464800px;}
.y1f{bottom:1070.280000px;}
.y123{bottom:1074.870000px;}
.y97{bottom:1074.946860px;}
.y88{bottom:1083.240000px;}
.y58{bottom:1085.831460px;}
.y122{bottom:1092.690000px;}
.y96{bottom:1093.313520px;}
.y1e{bottom:1102.769370px;}
.y57{bottom:1104.107940px;}
.y121{bottom:1109.160000px;}
.y95{bottom:1111.590000px;}
.y87{bottom:1122.384420px;}
.y56{bottom:1122.474600px;}
.y120{bottom:1125.630000px;}
.y1d{bottom:1132.110000px;}
.y94{bottom:1139.220000px;}
.y55{bottom:1140.751080px;}
.y11f{bottom:1142.100000px;}
.y54{bottom:1194.750000px;}
.h11{height:29.040150px;}
.h4{height:33.000000px;}
.hd{height:35.662148px;}
.h16{height:44.534180px;}
.hf{height:45.720703px;}
.h14{height:49.581387px;}
.h12{height:49.898438px;}
.ha{height:50.902383px;}
.h13{height:51.710625px;}
.h15{height:54.331699px;}
.he{height:55.779258px;}
.h3{height:58.406250px;}
.h10{height:59.378906px;}
.hc{height:63.606973px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hb{height:79.270840px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h0{height:1262.835000px;}
.h9{height:1262.970000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.wa{width:497.602500px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w0{width:892.920000px;}
.w9{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xb{left:108.000000px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xf{left:134.963190px;}
.x13{left:139.860000px;}
.x10{left:161.957070px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.xc{left:197.733765px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xd{left:238.791000px;}
.xe{left:297.720000px;}
.xa{left:446.490000px;}
.x12{left:738.974430px;}
.x11{left:749.149740px;}
@media print{
.v2{vertical-align:-21.440000pt;}
.v4{vertical-align:-1.603200pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.603200pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.ls19{letter-spacing:-0.213760pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.127680pt;}
.ls25{letter-spacing:-0.117120pt;}
.ls17{letter-spacing:-0.106880pt;}
.ls16{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.058560pt;}
.ls18{letter-spacing:-0.053440pt;}
.ls36{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.038400pt;}
.ls6{letter-spacing:0.043200pt;}
.ls3{letter-spacing:0.048000pt;}
.ls22{letter-spacing:0.053440pt;}
.ls24{letter-spacing:0.058560pt;}
.ls4{letter-spacing:0.062400pt;}
.ls23{letter-spacing:0.064000pt;}
.ls26{letter-spacing:0.064128pt;}
.ls1d{letter-spacing:0.070400pt;}
.ls7{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.106880pt;}
.ls28{letter-spacing:0.112224pt;}
.ls12{letter-spacing:0.117120pt;}
.lsf{letter-spacing:0.128000pt;}
.ls2a{letter-spacing:0.140544pt;}
.ls37{letter-spacing:0.144000pt;}
.ls2c{letter-spacing:0.160320pt;}
.lsd{letter-spacing:0.170880pt;}
.ls1{letter-spacing:0.178560pt;}
.ls14{letter-spacing:0.240000pt;}
.ls32{letter-spacing:0.292800pt;}
.ls31{letter-spacing:0.322080pt;}
.ls2{letter-spacing:0.672000pt;}
.ls35{letter-spacing:0.748160pt;}
.ls27{letter-spacing:1.015360pt;}
.ls2e{letter-spacing:1.068800pt;}
.ls20{letter-spacing:1.095520pt;}
.ls2f{letter-spacing:1.138272pt;}
.ls30{letter-spacing:1.389440pt;}
.ls34{letter-spacing:1.923840pt;}
.ls1f{letter-spacing:2.939200pt;}
.lsa{letter-spacing:3.552000pt;}
.ls2d{letter-spacing:4.542400pt;}
.ls1a{letter-spacing:5.504320pt;}
.ls2b{letter-spacing:6.145600pt;}
.ls5{letter-spacing:6.768000pt;}
.ls33{letter-spacing:6.786880pt;}
.ls21{letter-spacing:8.069440pt;}
.ls8{letter-spacing:8.976000pt;}
.ls9{letter-spacing:9.312000pt;}
.ls29{letter-spacing:9.352000pt;}
.ls1c{letter-spacing:13.199680pt;}
.ls1e{letter-spacing:23.424000pt;}
.ls1b{letter-spacing:40.507520pt;}
.lsb{letter-spacing:47.488000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws9f{word-spacing:-14.592000pt;}
.ws6e{word-spacing:-14.528000pt;}
.ws9{word-spacing:-14.336000pt;}
.ws5{word-spacing:-13.176000pt;}
.ws46{word-spacing:-13.117440pt;}
.ws45{word-spacing:-12.184320pt;}
.wsc{word-spacing:-12.077440pt;}
.wsa{word-spacing:-12.024000pt;}
.wsb{word-spacing:-11.970560pt;}
.ws9e{word-spacing:-11.863680pt;}
.ws7{word-spacing:-10.896000pt;}
.ws6{word-spacing:-10.848000pt;}
.wsa0{word-spacing:-10.800000pt;}
.wsad{word-spacing:-10.752000pt;}
.ws8{word-spacing:-10.704000pt;}
.ws2{word-spacing:-9.618560pt;}
.ws3{word-spacing:-9.490880pt;}
.ws4{word-spacing:-8.461440pt;}
.wsa6{word-spacing:-2.885760pt;}
.ws99{word-spacing:-2.672000pt;}
.ws31{word-spacing:-2.565120pt;}
.wsa2{word-spacing:-2.458240pt;}
.ws3c{word-spacing:-2.351360pt;}
.ws53{word-spacing:-2.244480pt;}
.ws6b{word-spacing:-1.923840pt;}
.ws14{word-spacing:-1.920000pt;}
.ws3d{word-spacing:-1.816960pt;}
.ws1f{word-spacing:-1.632000pt;}
.ws70{word-spacing:-1.603200pt;}
.ws34{word-spacing:-1.496320pt;}
.ws7b{word-spacing:-1.442880pt;}
.ws71{word-spacing:-1.389440pt;}
.ws3f{word-spacing:-1.282560pt;}
.ws79{word-spacing:-1.068800pt;}
.ws76{word-spacing:-0.961920pt;}
.ws7a{word-spacing:-0.855040pt;}
.ws81{word-spacing:-0.641280pt;}
.ws48{word-spacing:-0.320640pt;}
.wsd{word-spacing:-0.256320pt;}
.ws15{word-spacing:-0.240000pt;}
.ws11{word-spacing:-0.234240pt;}
.ws5e{word-spacing:-0.213760pt;}
.wse{word-spacing:-0.192000pt;}
.ws6d{word-spacing:-0.160320pt;}
.ws5d{word-spacing:-0.128000pt;}
.ws35{word-spacing:-0.106880pt;}
.wsab{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.058560pt;}
.wsa7{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.048000pt;}
.ws38{word-spacing:0.053440pt;}
.ws6f{word-spacing:0.058560pt;}
.ws10{word-spacing:0.064000pt;}
.ws23{word-spacing:0.096000pt;}
.ws3e{word-spacing:0.106880pt;}
.wsf{word-spacing:0.128000pt;}
.wsaa{word-spacing:0.144000pt;}
.ws58{word-spacing:0.160320pt;}
.wsa8{word-spacing:0.192000pt;}
.ws42{word-spacing:0.213760pt;}
.ws39{word-spacing:0.320640pt;}
.wsac{word-spacing:0.336000pt;}
.ws37{word-spacing:0.427520pt;}
.ws4c{word-spacing:0.534400pt;}
.ws6a{word-spacing:0.587840pt;}
.ws13{word-spacing:0.624000pt;}
.ws7f{word-spacing:0.694720pt;}
.ws8c{word-spacing:0.748160pt;}
.ws5b{word-spacing:0.801600pt;}
.ws57{word-spacing:0.908480pt;}
.ws1d{word-spacing:0.912000pt;}
.ws17{word-spacing:0.960000pt;}
.ws61{word-spacing:1.015360pt;}
.ws4d{word-spacing:1.229120pt;}
.ws36{word-spacing:1.336000pt;}
.ws83{word-spacing:1.442880pt;}
.ws80{word-spacing:1.549760pt;}
.ws98{word-spacing:1.656640pt;}
.ws7e{word-spacing:1.763520pt;}
.ws5a{word-spacing:1.870400pt;}
.ws8d{word-spacing:1.977280pt;}
.ws8e{word-spacing:2.084160pt;}
.ws40{word-spacing:2.191040pt;}
.ws72{word-spacing:2.297920pt;}
.ws41{word-spacing:2.404800pt;}
.ws2d{word-spacing:2.511680pt;}
.ws4b{word-spacing:2.725440pt;}
.ws60{word-spacing:2.832320pt;}
.ws44{word-spacing:2.939200pt;}
.ws2e{word-spacing:2.992640pt;}
.ws2c{word-spacing:3.046080pt;}
.ws2b{word-spacing:3.152960pt;}
.ws19{word-spacing:3.168000pt;}
.ws2a{word-spacing:3.366720pt;}
.ws3a{word-spacing:3.473600pt;}
.ws22{word-spacing:3.504000pt;}
.ws9c{word-spacing:3.687360pt;}
.ws4f{word-spacing:3.794240pt;}
.ws94{word-spacing:4.114880pt;}
.ws1c{word-spacing:4.128000pt;}
.ws4e{word-spacing:4.328640pt;}
.ws75{word-spacing:4.435520pt;}
.ws74{word-spacing:4.542400pt;}
.ws56{word-spacing:4.649280pt;}
.ws7d{word-spacing:4.756160pt;}
.ws25{word-spacing:4.800000pt;}
.ws9a{word-spacing:4.863040pt;}
.ws50{word-spacing:4.969920pt;}
.ws33{word-spacing:5.076800pt;}
.ws86{word-spacing:5.237120pt;}
.ws87{word-spacing:5.290560pt;}
.ws32{word-spacing:5.397440pt;}
.ws96{word-spacing:5.504320pt;}
.ws95{word-spacing:5.557760pt;}
.ws82{word-spacing:5.718080pt;}
.ws52{word-spacing:5.824960pt;}
.ws51{word-spacing:5.931840pt;}
.ws24{word-spacing:6.048000pt;}
.wsa4{word-spacing:6.145600pt;}
.ws73{word-spacing:6.199040pt;}
.ws7c{word-spacing:6.252480pt;}
.ws2f{word-spacing:6.359360pt;}
.ws1a{word-spacing:6.384000pt;}
.ws30{word-spacing:6.466240pt;}
.ws84{word-spacing:6.573120pt;}
.ws77{word-spacing:6.680000pt;}
.ws18{word-spacing:6.720000pt;}
.wsa1{word-spacing:6.786880pt;}
.ws78{word-spacing:6.840320pt;}
.ws54{word-spacing:6.893760pt;}
.ws8b{word-spacing:7.000640pt;}
.ws93{word-spacing:7.214400pt;}
.ws64{word-spacing:7.321280pt;}
.wsa3{word-spacing:7.748800pt;}
.ws62{word-spacing:7.802240pt;}
.ws63{word-spacing:7.855680pt;}
.ws59{word-spacing:7.962560pt;}
.ws68{word-spacing:8.069440pt;}
.ws69{word-spacing:8.122880pt;}
.ws1b{word-spacing:8.160000pt;}
.ws49{word-spacing:8.283200pt;}
.ws4a{word-spacing:8.496960pt;}
.ws26{word-spacing:8.832000pt;}
.ws47{word-spacing:8.924480pt;}
.ws29{word-spacing:9.031360pt;}
.ws43{word-spacing:9.245120pt;}
.ws20{word-spacing:9.264000pt;}
.ws21{word-spacing:9.312000pt;}
.ws3b{word-spacing:9.352000pt;}
.wsa5{word-spacing:9.565760pt;}
.ws88{word-spacing:10.100160pt;}
.ws8a{word-spacing:10.207040pt;}
.ws1e{word-spacing:10.224000pt;}
.ws89{word-spacing:10.313920pt;}
.ws55{word-spacing:10.420800pt;}
.ws66{word-spacing:10.688000pt;}
.ws8f{word-spacing:10.848320pt;}
.ws67{word-spacing:11.062080pt;}
.ws65{word-spacing:11.489600pt;}
.ws16{word-spacing:11.808000pt;}
.ws5f{word-spacing:12.344640pt;}
.ws85{word-spacing:12.879040pt;}
.ws90{word-spacing:12.985920pt;}
.ws91{word-spacing:13.092800pt;}
.ws5c{word-spacing:13.306560pt;}
.ws9d{word-spacing:13.947840pt;}
.ws97{word-spacing:14.589120pt;}
.ws6c{word-spacing:14.696000pt;}
.ws27{word-spacing:14.909760pt;}
.ws28{word-spacing:15.176960pt;}
.ws92{word-spacing:16.299200pt;}
.ws9b{word-spacing:17.581760pt;}
._2{margin-left:-6.536533pt;}
._3{margin-left:-3.808000pt;}
._1{margin-left:-1.774933pt;}
._4{width:0.923093pt;}
._6{width:1.897845pt;}
._8{width:2.907136pt;}
._c{width:4.057792pt;}
._0{width:4.966400pt;}
._7{width:6.600565pt;}
._9{width:8.080128pt;}
._a{width:9.215232pt;}
._b{width:10.122261pt;}
._5{width:15.439147pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fsa{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.440000pt;}
.fs8{font-size:58.560000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs4{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.245333pt;}
.yc{bottom:7.146667pt;}
.y52{bottom:15.045333pt;}
.y51{bottom:28.989876pt;}
.y1c{bottom:51.600000pt;}
.y1a{bottom:61.786667pt;}
.y19{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.y18{bottom:101.040000pt;}
.y93{bottom:101.812160pt;}
.yc5{bottom:104.272320pt;}
.y11e{bottom:109.828000pt;}
.yf0{bottom:109.935840pt;}
.y50{bottom:111.424800pt;}
.y86{bottom:113.982560pt;}
.y10{bottom:119.053333pt;}
.yc4{bottom:120.598240pt;}
.y17{bottom:120.666667pt;}
.y11d{bottom:124.468000pt;}
.yef{bottom:126.261760pt;}
.y4f{bottom:127.750720pt;}
.y85{bottom:130.228320pt;}
.y92{bottom:130.536160pt;}
.yc3{bottom:136.844000pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y11c{bottom:139.192000pt;}
.y16{bottom:140.293333pt;}
.yee{bottom:142.507520pt;}
.y4e{bottom:143.996480pt;}
.y84{bottom:146.474080pt;}
.yc2{bottom:153.169920pt;}
.y11b{bottom:153.832000pt;}
.yed{bottom:158.833440pt;}
.y83{bottom:162.800000pt;}
.y4d{bottom:168.231520pt;}
.y11a{bottom:168.472000pt;}
.yc1{bottom:169.415680pt;}
.yec{bottom:175.079200pt;}
.y119{bottom:183.112000pt;}
.y4c{bottom:184.557440pt;}
.yc0{bottom:185.661440pt;}
.y82{bottom:187.360000pt;}
.yeb{bottom:191.324960pt;}
.y118{bottom:197.752000pt;}
.y4b{bottom:200.883360pt;}
.yea{bottom:207.650880pt;}
.ybf{bottom:209.896480pt;}
.y117{bottom:212.392000pt;}
.y4a{bottom:217.129120pt;}
.y81{bottom:220.814720pt;}
.ye9{bottom:223.896640pt;}
.ybe{bottom:226.222400pt;}
.y116{bottom:227.032000pt;}
.y49{bottom:233.455040pt;}
.y80{bottom:237.220800pt;}
.ye8{bottom:240.222560pt;}
.y115{bottom:241.672000pt;}
.ybd{bottom:242.548320pt;}
.y48{bottom:249.700800pt;}
.y7f{bottom:253.466560pt;}
.y114{bottom:256.312000pt;}
.ye7{bottom:256.468320pt;}
.ybc{bottom:258.794080pt;}
.y47{bottom:265.946560pt;}
.y7e{bottom:269.712320pt;}
.y113{bottom:270.952000pt;}
.ye6{bottom:272.794240pt;}
.ybb{bottom:275.120000pt;}
.y112{bottom:285.676000pt;}
.y7d{bottom:286.038240pt;}
.ye5{bottom:289.040000pt;}
.y46{bottom:290.181600pt;}
.yba{bottom:300.080000pt;}
.y111{bottom:300.316000pt;}
.y7c{bottom:302.284000pt;}
.ya{bottom:306.382667pt;}
.y45{bottom:306.507520pt;}
.ye4{bottom:313.600000pt;}
.y110{bottom:314.956000pt;}
.y7b{bottom:318.609920pt;}
.y44{bottom:322.833440pt;}
.y10f{bottom:329.596000pt;}
.yb9{bottom:334.776480pt;}
.y7a{bottom:334.855680pt;}
.y43{bottom:339.079200pt;}
.yd{bottom:343.546667pt;}
.y10e{bottom:344.236000pt;}
.ye3{bottom:346.936160pt;}
.yb8{bottom:351.182560pt;}
.y9{bottom:351.724000pt;}
.y42{bottom:355.405120pt;}
.y10d{bottom:358.876000pt;}
.y79{bottom:359.090720pt;}
.ye2{bottom:363.342240pt;}
.yb7{bottom:367.428320pt;}
.y41{bottom:371.650880pt;}
.y10c{bottom:373.516000pt;}
.y78{bottom:375.416640pt;}
.ye1{bottom:379.588000pt;}
.yb6{bottom:383.754240pt;}
.yb{bottom:386.533333pt;}
.y40{bottom:387.976800pt;}
.y10b{bottom:388.156000pt;}
.y77{bottom:391.742560pt;}
.ye0{bottom:395.913920pt;}
.y8{bottom:397.065333pt;}
.yb5{bottom:400.000000pt;}
.y10a{bottom:402.796000pt;}
.y3f{bottom:404.222560pt;}
.y76{bottom:407.988320pt;}
.y109{bottom:417.520000pt;}
.ydf{bottom:420.068800pt;}
.y3e{bottom:420.468320pt;}
.y75{bottom:424.314240pt;}
.yb4{bottom:424.560000pt;}
.y108{bottom:432.160000pt;}
.y11{bottom:433.826667pt;}
.yde{bottom:436.474880pt;}
.y3d{bottom:436.794240pt;}
.y74{bottom:440.560000pt;}
.y7{bottom:442.406667pt;}
.y107{bottom:446.800000pt;}
.y91{bottom:450.134080pt;}
.ydd{bottom:452.720640pt;}
.y3c{bottom:453.040000pt;}
.yb3{bottom:458.008800pt;}
.y106{bottom:461.440000pt;}
.y73{bottom:465.120000pt;}
.y90{bottom:466.460000pt;}
.ydc{bottom:469.046560pt;}
.yb2{bottom:474.414880pt;}
.y3b{bottom:478.080000pt;}
.y12{bottom:478.426667pt;}
.y8f{bottom:482.785920pt;}
.y105{bottom:485.200000pt;}
.ydb{bottom:485.292320pt;}
.y6{bottom:487.748000pt;}
.yb1{bottom:490.660640pt;}
.y72{bottom:499.440000pt;}
.yda{bottom:501.538080pt;}
.y8e{bottom:506.940800pt;}
.yb0{bottom:506.986560pt;}
.y3a{bottom:514.480000pt;}
.yd9{bottom:517.864000pt;}
.y104{bottom:519.920000pt;}
.yaf{bottom:523.232320pt;}
.y1b{bottom:524.093333pt;}
.y39{bottom:529.120000pt;}
.y5{bottom:533.089333pt;}
.y71{bottom:534.029600pt;}
.y8d{bottom:535.664800pt;}
.yae{bottom:539.558240pt;}
.yd8{bottom:542.018880pt;}
.y103{bottom:545.040000pt;}
.y70{bottom:550.435680pt;}
.y38{bottom:551.752000pt;}
.yad{bottom:555.804000pt;}
.yd7{bottom:558.424960pt;}
.ye{bottom:561.706667pt;}
.y37{bottom:566.392000pt;}
.y6f{bottom:566.681440pt;}
.yac{bottom:572.049760pt;}
.yd6{bottom:574.670720pt;}
.y102{bottom:579.666560pt;}
.y36{bottom:581.032000pt;}
.y6e{bottom:583.007360pt;}
.yd5{bottom:590.996640pt;}
.y35{bottom:595.672000pt;}
.y101{bottom:595.992480pt;}
.yab{bottom:596.284800pt;}
.y6d{bottom:607.162240pt;}
.yd4{bottom:607.242400pt;}
.y34{bottom:610.312000pt;}
.y100{bottom:612.318400pt;}
.yaa{bottom:612.610720pt;}
.y6c{bottom:623.568320pt;}
.y33{bottom:624.952000pt;}
.yff{bottom:628.564160pt;}
.ya9{bottom:628.936640pt;}
.y32{bottom:639.592000pt;}
.y6b{bottom:639.814080pt;}
.yfe{bottom:644.890080pt;}
.ya8{bottom:645.182400pt;}
.y31{bottom:654.316000pt;}
.y6a{bottom:656.140000pt;}
.yfd{bottom:661.135840pt;}
.ya7{bottom:661.508320pt;}
.y30{bottom:668.956000pt;}
.yd3{bottom:672.385760pt;}
.yfc{bottom:677.461760pt;}
.ya6{bottom:677.754080pt;}
.y69{bottom:680.294880pt;}
.y2f{bottom:683.596000pt;}
.yd2{bottom:688.631520pt;}
.y4{bottom:691.756000pt;}
.yfb{bottom:693.707520pt;}
.ya5{bottom:694.080000pt;}
.y68{bottom:696.620800pt;}
.y2e{bottom:698.236000pt;}
.yd1{bottom:704.957440pt;}
.yfa{bottom:710.033440pt;}
.y2d{bottom:712.876000pt;}
.y67{bottom:712.946720pt;}
.ya4{bottom:718.560000pt;}
.yd0{bottom:721.203200pt;}
.y13{bottom:725.040000pt;}
.yf9{bottom:726.279200pt;}
.y2c{bottom:727.516000pt;}
.y66{bottom:729.192480pt;}
.y2b{bottom:742.156000pt;}
.yf8{bottom:742.605120pt;}
.ycf{bottom:745.438240pt;}
.ya3{bottom:752.088960pt;}
.y65{bottom:753.427520pt;}
.y2a{bottom:756.796000pt;}
.yf7{bottom:758.850880pt;}
.yce{bottom:761.764160pt;}
.ya2{bottom:768.414880pt;}
.y64{bottom:769.753440pt;}
.y29{bottom:771.436000pt;}
.yf6{bottom:775.096640pt;}
.ycd{bottom:778.090080pt;}
.ya1{bottom:784.740800pt;}
.y63{bottom:786.079360pt;}
.y28{bottom:786.160000pt;}
.yf5{bottom:791.422560pt;}
.ycc{bottom:794.335840pt;}
.y27{bottom:800.800000pt;}
.ya0{bottom:800.986560pt;}
.y62{bottom:802.325120pt;}
.y3{bottom:805.081333pt;}
.yf4{bottom:807.668320pt;}
.ycb{bottom:810.661760pt;}
.y26{bottom:815.440000pt;}
.y9f{bottom:817.312480pt;}
.y61{bottom:818.651040pt;}
.yf3{bottom:823.994240pt;}
.yca{bottom:826.907520pt;}
.y25{bottom:830.080000pt;}
.y9e{bottom:833.558240pt;}
.y12b{bottom:834.560000pt;}
.y60{bottom:834.896800pt;}
.yf2{bottom:840.240000pt;}
.yc9{bottom:843.153280pt;}
.y12a{bottom:849.200000pt;}
.y9d{bottom:849.884160pt;}
.y5f{bottom:851.142560pt;}
.y24{bottom:853.440000pt;}
.y2{bottom:857.092000pt;}
.yc8{bottom:859.479200pt;}
.y129{bottom:864.240000pt;}
.yf1{bottom:865.200000pt;}
.y5e{bottom:867.468480pt;}
.y8c{bottom:871.348160pt;}
.y23{bottom:871.360000pt;}
.y9c{bottom:874.039040pt;}
.yc7{bottom:875.724960pt;}
.y1{bottom:879.748000pt;}
.y128{bottom:880.080000pt;}
.y5d{bottom:883.714240pt;}
.y8b{bottom:887.754240pt;}
.y22{bottom:889.207200pt;}
.y9b{bottom:890.445120pt;}
.y127{bottom:895.200000pt;}
.yc6{bottom:899.960000pt;}
.y5c{bottom:900.040160pt;}
.y8a{bottom:904.000000pt;}
.y9a{bottom:906.690880pt;}
.y126{bottom:911.040000pt;}
.y5b{bottom:916.285920pt;}
.y21{bottom:920.480000pt;}
.y99{bottom:922.936640pt;}
.y125{bottom:925.680000pt;}
.y89{bottom:928.560000pt;}
.y5a{bottom:932.611840pt;}
.y20{bottom:938.400000pt;}
.y98{bottom:939.262560pt;}
.y124{bottom:940.320000pt;}
.y59{bottom:948.857600pt;}
.y1f{bottom:951.360000pt;}
.y123{bottom:955.440000pt;}
.y97{bottom:955.508320pt;}
.y88{bottom:962.880000pt;}
.y58{bottom:965.183520pt;}
.y122{bottom:971.280000pt;}
.y96{bottom:971.834240pt;}
.y1e{bottom:980.239440pt;}
.y57{bottom:981.429280pt;}
.y121{bottom:985.920000pt;}
.y95{bottom:988.080000pt;}
.y87{bottom:997.675040pt;}
.y56{bottom:997.755200pt;}
.y120{bottom:1000.560000pt;}
.y1d{bottom:1006.320000pt;}
.y94{bottom:1012.640000pt;}
.y55{bottom:1014.000960pt;}
.y11f{bottom:1015.200000pt;}
.y54{bottom:1062.000000pt;}
.h11{height:25.813467pt;}
.h4{height:29.333333pt;}
.hd{height:31.699687pt;}
.h16{height:39.585938pt;}
.hf{height:40.640625pt;}
.h14{height:44.072344pt;}
.h12{height:44.354167pt;}
.ha{height:45.246562pt;}
.h13{height:45.965000pt;}
.h15{height:48.294844pt;}
.he{height:49.581562pt;}
.h3{height:51.916667pt;}
.h10{height:52.781250pt;}
.hc{height:56.539531pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hb{height:70.462969pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.wa{width:442.313333pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w0{width:793.706667pt;}
.w9{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xb{left:96.000000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xf{left:119.967280pt;}
.x13{left:124.320000pt;}
.x10{left:143.961840pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.xc{left:175.763346pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xd{left:212.258667pt;}
.xe{left:264.640000pt;}
.xa{left:396.880000pt;}
.x12{left:656.866160pt;}
.x11{left:665.910880pt;}
}




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