
    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_5eae13808cd8481c4651dce1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.908000;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_41cade1c39ade38b77bb32a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.990000;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_979495a98d77c1888cc3602c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890000;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_b4800cf6cd3cef490bd4cffa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.623000;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_77f2cfb76b078b959515080c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_136d9df3e65f4f728e3ee21f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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);}
.v1{vertical-align:-2.789400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.394000px;}
.v3{vertical-align:19.206000px;}
.v2{vertical-align:156.000000px;}
.ls5{letter-spacing:-4.350000px;}
.ls4{letter-spacing:-4.200000px;}
.ls3{letter-spacing:-0.813667px;}
.ls7{letter-spacing:-0.588000px;}
.ls6{letter-spacing:-0.084000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000240px;}
.ls0{letter-spacing:0.333000px;}
.ls1{letter-spacing:0.888000px;}
.lsd{letter-spacing:2.021400px;}
.lsb{letter-spacing:5.391600px;}
.lsc{letter-spacing:11.342400px;}
.lsa{letter-spacing:181.856400px;}
.ls9{letter-spacing:223.726800px;}
.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;}
}
.ws2{word-spacing:-33.300000px;}
.ws1{word-spacing:-21.336146px;}
.ws3{word-spacing:-14.818500px;}
.wsab{word-spacing:-14.608200px;}
.ws10{word-spacing:-14.084400px;}
.ws11{word-spacing:-13.036800px;}
.ws9b{word-spacing:-12.801000px;}
.wse3{word-spacing:-12.048000px;}
.wse4{word-spacing:-11.760000px;}
.ws118{word-spacing:-11.325600px;}
.ws117{word-spacing:-10.483200px;}
.ws12{word-spacing:-8.168952px;}
.wsc6{word-spacing:-4.074000px;}
.wsfb{word-spacing:-4.015800px;}
.ws71{word-spacing:-3.841200px;}
.wsf0{word-spacing:-3.783000px;}
.ws10f{word-spacing:-3.259200px;}
.ws10c{word-spacing:-3.142800px;}
.ws59{word-spacing:-3.084600px;}
.ws35{word-spacing:-2.968200px;}
.wsac{word-spacing:-2.910000px;}
.wsc8{word-spacing:-2.793600px;}
.ws3b{word-spacing:-2.735400px;}
.wsa3{word-spacing:-2.677200px;}
.ws36{word-spacing:-2.619000px;}
.wsb5{word-spacing:-2.560800px;}
.wsa{word-spacing:-2.502600px;}
.wsdf{word-spacing:-2.444400px;}
.wsc7{word-spacing:-2.386200px;}
.ws96{word-spacing:-2.328000px;}
.ws45{word-spacing:-2.269800px;}
.wsef{word-spacing:-2.211600px;}
.ws78{word-spacing:-2.153400px;}
.ws77{word-spacing:-2.095200px;}
.ws91{word-spacing:-2.037000px;}
.wsff{word-spacing:-1.978800px;}
.ws74{word-spacing:-1.920600px;}
.ws2d{word-spacing:-1.862400px;}
.ws70{word-spacing:-1.804200px;}
.ws3a{word-spacing:-1.746000px;}
.wsb8{word-spacing:-1.687800px;}
.ws28{word-spacing:-1.629600px;}
.wsce{word-spacing:-1.571400px;}
.wsee{word-spacing:-1.513200px;}
.ws6e{word-spacing:-1.455000px;}
.ws80{word-spacing:-1.396800px;}
.wsba{word-spacing:-1.222200px;}
.wscd{word-spacing:-1.164000px;}
.ws6b{word-spacing:-1.105800px;}
.ws3d{word-spacing:-1.047600px;}
.ws17{word-spacing:-0.989400px;}
.ws11a{word-spacing:-0.936000px;}
.wsae{word-spacing:-0.931200px;}
.ws1f{word-spacing:-0.873000px;}
.ws25{word-spacing:-0.814800px;}
.ws116{word-spacing:-0.756600px;}
.ws72{word-spacing:-0.698400px;}
.wsa6{word-spacing:-0.640200px;}
.ws47{word-spacing:-0.523800px;}
.ws20{word-spacing:-0.465600px;}
.wsf3{word-spacing:-0.407400px;}
.wsf2{word-spacing:-0.349200px;}
.ws4{word-spacing:-0.309004px;}
.ws5f{word-spacing:-0.291000px;}
.ws75{word-spacing:-0.232800px;}
.ws11b{word-spacing:-0.187200px;}
.ws9e{word-spacing:-0.174600px;}
.ws9{word-spacing:-0.166500px;}
.ws46{word-spacing:-0.116400px;}
.wsa4{word-spacing:-0.058200px;}
.ws5{word-spacing:0.000000px;}
.wsc0{word-spacing:0.058200px;}
.ws4a{word-spacing:0.116400px;}
.wsea{word-spacing:0.174600px;}
.ws3c{word-spacing:0.232800px;}
.wsd1{word-spacing:0.291000px;}
.ws7{word-spacing:0.336000px;}
.ws81{word-spacing:0.349200px;}
.ws66{word-spacing:0.407400px;}
.wsa0{word-spacing:0.465600px;}
.wsbd{word-spacing:0.523800px;}
.ws1e{word-spacing:0.582000px;}
.ws8{word-spacing:0.588000px;}
.wscb{word-spacing:0.640200px;}
.ws61{word-spacing:0.698400px;}
.ws10e{word-spacing:0.814800px;}
.wsc5{word-spacing:0.873000px;}
.ws22{word-spacing:0.931200px;}
.wsde{word-spacing:0.989400px;}
.ws3f{word-spacing:1.047600px;}
.wsa1{word-spacing:1.105800px;}
.wsa9{word-spacing:1.164000px;}
.ws4b{word-spacing:1.280400px;}
.wsfc{word-spacing:1.338600px;}
.ws6{word-spacing:1.350000px;}
.ws29{word-spacing:1.396800px;}
.ws85{word-spacing:1.455000px;}
.ws93{word-spacing:1.513200px;}
.ws33{word-spacing:1.571400px;}
.wsb9{word-spacing:1.629600px;}
.ws2f{word-spacing:1.687800px;}
.ws6c{word-spacing:1.746000px;}
.ws88{word-spacing:1.804200px;}
.ws2b{word-spacing:1.920600px;}
.ws32{word-spacing:1.978800px;}
.wsa8{word-spacing:2.037000px;}
.ws37{word-spacing:2.095200px;}
.ws9f{word-spacing:2.153400px;}
.ws4e{word-spacing:2.211600px;}
.ws65{word-spacing:2.269800px;}
.ws102{word-spacing:2.328000px;}
.wsc9{word-spacing:2.386200px;}
.wse{word-spacing:2.444400px;}
.ws50{word-spacing:2.502600px;}
.wsad{word-spacing:2.560800px;}
.ws94{word-spacing:2.619000px;}
.wseb{word-spacing:2.677200px;}
.ws5e{word-spacing:2.735400px;}
.ws38{word-spacing:2.793600px;}
.ws14{word-spacing:2.910000px;}
.ws5a{word-spacing:2.968200px;}
.ws16{word-spacing:3.026400px;}
.wse1{word-spacing:3.142800px;}
.ws8a{word-spacing:3.201000px;}
.ws21{word-spacing:3.259200px;}
.wsca{word-spacing:3.317400px;}
.wsf{word-spacing:3.375600px;}
.wsd2{word-spacing:3.433800px;}
.ws64{word-spacing:3.492000px;}
.wsd4{word-spacing:3.550200px;}
.ws5d{word-spacing:3.608400px;}
.wscf{word-spacing:3.666600px;}
.ws8f{word-spacing:3.724800px;}
.ws1c{word-spacing:3.783000px;}
.ws7e{word-spacing:3.841200px;}
.wscc{word-spacing:3.899400px;}
.wse8{word-spacing:4.015800px;}
.ws79{word-spacing:4.074000px;}
.ws4f{word-spacing:4.132200px;}
.ws7f{word-spacing:4.190400px;}
.ws90{word-spacing:4.248600px;}
.ws2e{word-spacing:4.306800px;}
.ws82{word-spacing:4.423200px;}
.wsc4{word-spacing:4.481400px;}
.ws2a{word-spacing:4.539600px;}
.ws60{word-spacing:4.597800px;}
.wsfa{word-spacing:4.656000px;}
.ws2c{word-spacing:4.714200px;}
.ws73{word-spacing:4.830600px;}
.ws56{word-spacing:4.888800px;}
.wsa7{word-spacing:4.947000px;}
.wsbf{word-spacing:5.005200px;}
.ws53{word-spacing:5.063400px;}
.ws52{word-spacing:5.121600px;}
.ws4c{word-spacing:5.179800px;}
.wsa5{word-spacing:5.296200px;}
.ws19{word-spacing:5.354400px;}
.wsb7{word-spacing:5.412600px;}
.ws97{word-spacing:5.470800px;}
.ws99{word-spacing:5.529000px;}
.wsc1{word-spacing:5.587200px;}
.wsd{word-spacing:5.645400px;}
.ws98{word-spacing:5.703600px;}
.ws8b{word-spacing:5.761800px;}
.ws30{word-spacing:5.820000px;}
.wsb6{word-spacing:5.878200px;}
.wsc2{word-spacing:5.936400px;}
.wsc{word-spacing:5.994600px;}
.wsf1{word-spacing:6.052800px;}
.ws10b{word-spacing:6.111000px;}
.wsb0{word-spacing:6.169200px;}
.ws26{word-spacing:6.227400px;}
.wsec{word-spacing:6.343800px;}
.ws1a{word-spacing:6.402000px;}
.ws8c{word-spacing:6.460200px;}
.ws8d{word-spacing:6.518400px;}
.ws76{word-spacing:6.576600px;}
.wsaf{word-spacing:6.634800px;}
.ws55{word-spacing:6.693000px;}
.ws100{word-spacing:6.751200px;}
.ws115{word-spacing:6.809400px;}
.ws87{word-spacing:6.925800px;}
.ws7c{word-spacing:6.984000px;}
.ws101{word-spacing:7.042200px;}
.ws18{word-spacing:7.100400px;}
.ws92{word-spacing:7.158600px;}
.ws4d{word-spacing:7.216800px;}
.ws23{word-spacing:7.275000px;}
.ws7b{word-spacing:7.333200px;}
.wsdc{word-spacing:7.391400px;}
.ws54{word-spacing:7.449600px;}
.ws9d{word-spacing:7.507800px;}
.wsf8{word-spacing:7.566000px;}
.ws15{word-spacing:7.624200px;}
.wsbc{word-spacing:7.682400px;}
.wsf7{word-spacing:7.740600px;}
.ws68{word-spacing:7.798800px;}
.wse7{word-spacing:7.857000px;}
.ws67{word-spacing:7.915200px;}
.ws5b{word-spacing:7.973400px;}
.wsa2{word-spacing:8.031600px;}
.ws7a{word-spacing:8.089800px;}
.ws7d{word-spacing:8.148000px;}
.ws27{word-spacing:8.206200px;}
.ws49{word-spacing:8.264400px;}
.wsb4{word-spacing:8.322600px;}
.wsb2{word-spacing:8.380800px;}
.wsb1{word-spacing:8.439000px;}
.ws3e{word-spacing:8.497200px;}
.wsaa{word-spacing:8.613600px;}
.wse6{word-spacing:8.730000px;}
.wsfe{word-spacing:8.846400px;}
.ws43{word-spacing:8.904600px;}
.ws62{word-spacing:9.021000px;}
.ws84{word-spacing:9.079200px;}
.ws1d{word-spacing:9.137400px;}
.ws6a{word-spacing:9.195600px;}
.ws86{word-spacing:9.253800px;}
.wsf4{word-spacing:9.312000px;}
.wsb{word-spacing:9.370200px;}
.wsb3{word-spacing:9.428400px;}
.ws6f{word-spacing:9.544800px;}
.ws83{word-spacing:9.603000px;}
.ws51{word-spacing:9.777600px;}
.ws69{word-spacing:9.835800px;}
.ws31{word-spacing:10.126800px;}
.ws42{word-spacing:10.243200px;}
.ws114{word-spacing:10.301400px;}
.ws110{word-spacing:10.417800px;}
.wsd9{word-spacing:10.476000px;}
.ws40{word-spacing:10.592400px;}
.wsbb{word-spacing:10.767000px;}
.ws34{word-spacing:10.825200px;}
.ws89{word-spacing:10.883400px;}
.ws103{word-spacing:10.941600px;}
.ws113{word-spacing:10.999800px;}
.ws104{word-spacing:11.058000px;}
.wsfd{word-spacing:11.116200px;}
.ws57{word-spacing:11.174400px;}
.wse9{word-spacing:11.523600px;}
.ws24{word-spacing:11.698200px;}
.ws41{word-spacing:11.756400px;}
.wsc3{word-spacing:11.872800px;}
.ws105{word-spacing:11.931000px;}
.ws106{word-spacing:11.989200px;}
.wsd6{word-spacing:12.105600px;}
.ws1b{word-spacing:12.571200px;}
.ws58{word-spacing:12.629400px;}
.ws10d{word-spacing:12.862200px;}
.wsf6{word-spacing:13.095000px;}
.wsf5{word-spacing:13.560600px;}
.wsd0{word-spacing:13.618800px;}
.ws112{word-spacing:13.735200px;}
.wsd7{word-spacing:13.909800px;}
.wsda{word-spacing:14.026200px;}
.wsd3{word-spacing:14.084400px;}
.wsdd{word-spacing:14.550000px;}
.ws13{word-spacing:14.608200px;}
.wsdb{word-spacing:15.190200px;}
.ws109{word-spacing:15.248400px;}
.ws44{word-spacing:15.423000px;}
.ws10a{word-spacing:15.772200px;}
.ws108{word-spacing:16.237800px;}
.ws63{word-spacing:16.354200px;}
.wse0{word-spacing:17.518200px;}
.wsd8{word-spacing:17.809200px;}
.ws5c{word-spacing:20.661000px;}
.wse5{word-spacing:21.475800px;}
.ws8e{word-spacing:22.116000px;}
.ws48{word-spacing:22.232400px;}
.ws95{word-spacing:27.237600px;}
.ws111{word-spacing:94.942800px;}
.wsf9{word-spacing:95.602800px;}
.wsbe{word-spacing:95.662800px;}
.ws6d{word-spacing:96.322800px;}
.ws119{word-spacing:97.642800px;}
.wsd5{word-spacing:98.362800px;}
.wsed{word-spacing:99.082800px;}
.ws107{word-spacing:101.902800px;}
.ws0{word-spacing:101.962800px;}
.ws9a{word-spacing:102.622800px;}
.ws39{word-spacing:102.682800px;}
.ws9c{word-spacing:285.961800px;}
.wse2{word-spacing:548.266800px;}
._8{margin-left:-14.724600px;}
._2{margin-left:-7.020000px;}
._7{margin-left:-5.820000px;}
._6{margin-left:-3.864926px;}
._3{margin-left:-2.625000px;}
._5{margin-left:-1.254926px;}
._1{width:1.536926px;}
._0{width:2.568000px;}
._4{width:3.928148px;}
._14{width:5.511600px;}
._9{width:6.984000px;}
._12{width:9.649474px;}
._13{width:10.740600px;}
._15{width:12.404126px;}
._18{width:70.200000px;}
._17{width:74.833200px;}
._16{width:91.494000px;}
._f{width:209.369400px;}
._d{width:216.516926px;}
._11{width:218.253000px;}
._a{width:220.029000px;}
._e{width:221.525074px;}
._b{width:224.781000px;}
._10{width:231.549000px;}
._c{width:249.357000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.756000px;}
.fsd{font-size:46.800000px;}
.fs1{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs5{font-size:55.500000px;}
.fsc{font-size:55.800000px;}
.fs7{font-size:58.200000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:69.000000px;}
.fsb{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:90.407400px;}
.fs3{font-size:150.000000px;}
.fs6{font-size:309.003600px;}
.y0{bottom:0.000000px;}
.yf4{bottom:75.043800px;}
.y8b{bottom:79.181250px;}
.ybf{bottom:82.024050px;}
.yf3{bottom:88.693800px;}
.y1f{bottom:91.216500px;}
.y8a{bottom:92.831250px;}
.ybe{bottom:95.674050px;}
.yf2{bottom:106.170600px;}
.y89{bottom:106.481250px;}
.ybd{bottom:109.324200px;}
.y1e{bottom:110.716500px;}
.yf1{bottom:119.820600px;}
.y88{bottom:123.958050px;}
.ybc{bottom:126.800850px;}
.y1d{bottom:130.216500px;}
.yf0{bottom:137.297400px;}
.y87{bottom:137.607900px;}
.ybb{bottom:144.277650px;}
.y1c{bottom:149.716500px;}
.yef{bottom:150.947250px;}
.y86{bottom:155.084700px;}
.yba{bottom:161.754450px;}
.yee{bottom:164.597400px;}
.y85{bottom:168.734700px;}
.y1a{bottom:169.216500px;}
.yb9{bottom:179.231250px;}
.yed{bottom:182.074200px;}
.y84{bottom:182.384700px;}
.y1b{bottom:188.716500px;}
.yb8{bottom:192.881250px;}
.yec{bottom:199.550850px;}
.y83{bottom:199.861500px;}
.y45{bottom:208.216500px;}
.yb7{bottom:210.357900px;}
.yeb{bottom:213.200850px;}
.y82{bottom:213.511500px;}
.y81{bottom:227.161500px;}
.y44{bottom:227.716500px;}
.yb6{bottom:227.834700px;}
.yea{bottom:230.677650px;}
.y4b{bottom:232.111200px;}
.yb5{bottom:241.484700px;}
.ye9{bottom:244.327650px;}
.y80{bottom:244.638300px;}
.y43{bottom:247.216500px;}
.yb4{bottom:255.134700px;}
.y7f{bottom:258.288300px;}
.ye8{bottom:261.804450px;}
.y4a{bottom:263.482800px;}
.y19{bottom:265.629150px;}
.y42{bottom:266.716500px;}
.yb3{bottom:268.784700px;}
.y7e{bottom:271.938300px;}
.ye7{bottom:275.454450px;}
.y18{bottom:283.104150px;}
.y41{bottom:286.216500px;}
.y7d{bottom:289.415100px;}
.ye6{bottom:292.931250px;}
.yb2{bottom:294.588300px;}
.y49{bottom:294.854550px;}
.y7c{bottom:303.065100px;}
.y40{bottom:305.716500px;}
.ye5{bottom:306.581250px;}
.y7b{bottom:316.715100px;}
.ye4{bottom:320.231250px;}
.y17{bottom:321.838950px;}
.y48{bottom:323.784300px;}
.y3f{bottom:325.216500px;}
.y7a{bottom:334.191900px;}
.ye3{bottom:337.707900px;}
.y47{bottom:338.784300px;}
.y16{bottom:339.313950px;}
.y3e{bottom:344.716500px;}
.yb1{bottom:347.018550px;}
.y79{bottom:347.841900px;}
.ye2{bottom:351.357900px;}
.y46{bottom:353.784300px;}
.y15{bottom:356.788950px;}
.yb0{bottom:360.668550px;}
.y78{bottom:361.491750px;}
.y3d{bottom:364.216500px;}
.ye1{bottom:368.834700px;}
.y14{bottom:374.263950px;}
.yaf{bottom:378.145350px;}
.y77{bottom:378.968550px;}
.ye0{bottom:382.484700px;}
.y4d{bottom:383.014650px;}
.y3c{bottom:383.716500px;}
.y13{bottom:391.738950px;}
.yae{bottom:391.795350px;}
.y76{bottom:392.618550px;}
.y4c{bottom:398.014650px;}
.ydf{bottom:399.961500px;}
.y3b{bottom:403.216500px;}
.y75{bottom:406.268550px;}
.y12{bottom:409.213950px;}
.yad{bottom:409.272150px;}
.yde{bottom:413.611500px;}
.y108{bottom:419.095350px;}
.y3a{bottom:422.716500px;}
.yac{bottom:422.922150px;}
.y74{bottom:423.745350px;}
.y11{bottom:426.688950px;}
.ydd{bottom:427.261500px;}
.y107{bottom:432.745350px;}
.y73{bottom:437.395350px;}
.yab{bottom:440.398950px;}
.y39{bottom:442.216500px;}
.y10{bottom:444.163950px;}
.ydc{bottom:444.738300px;}
.y106{bottom:450.222150px;}
.y72{bottom:451.045350px;}
.yaa{bottom:454.048950px;}
.ydb{bottom:458.388300px;}
.yf{bottom:461.638950px;}
.y38{bottom:461.716500px;}
.y105{bottom:463.872150px;}
.ya9{bottom:467.698950px;}
.y71{bottom:468.522150px;}
.yda{bottom:475.865100px;}
.y104{bottom:477.522150px;}
.ye{bottom:479.113950px;}
.y37{bottom:481.216500px;}
.y70{bottom:482.172150px;}
.ya8{bottom:485.175750px;}
.yd9{bottom:489.515100px;}
.y103{bottom:491.172150px;}
.y6f{bottom:495.822150px;}
.yd{bottom:496.588950px;}
.ya7{bottom:498.825600px;}
.y36{bottom:500.716500px;}
.yd8{bottom:503.165100px;}
.y102{bottom:508.648950px;}
.ya6{bottom:512.475750px;}
.y6e{bottom:513.298950px;}
.yc{bottom:514.063950px;}
.y35{bottom:520.216500px;}
.yd7{bottom:520.641750px;}
.y101{bottom:522.298950px;}
.ya5{bottom:526.125750px;}
.y6d{bottom:526.948950px;}
.yb{bottom:531.538950px;}
.yd6{bottom:534.291750px;}
.y100{bottom:535.948950px;}
.y34{bottom:539.716500px;}
.y6c{bottom:540.598950px;}
.ya4{bottom:543.602400px;}
.ya{bottom:549.013950px;}
.yd5{bottom:551.768550px;}
.yff{bottom:553.425600px;}
.y6b{bottom:554.248950px;}
.y54{bottom:556.190250px;}
.ya3{bottom:557.252400px;}
.y33{bottom:559.216500px;}
.yd4{bottom:565.418550px;}
.y9{bottom:566.488950px;}
.yfe{bottom:567.075750px;}
.ya2{bottom:570.902400px;}
.y53{bottom:571.190250px;}
.y32{bottom:578.716500px;}
.y6a{bottom:580.052550px;}
.yd3{bottom:582.895350px;}
.y8{bottom:583.963950px;}
.yfd{bottom:584.552550px;}
.y52{bottom:586.190250px;}
.ya1{bottom:588.379200px;}
.yd2{bottom:596.545350px;}
.yfc{bottom:598.202400px;}
.y31{bottom:598.216500px;}
.y7{bottom:601.438950px;}
.ya0{bottom:602.029200px;}
.yd1{bottom:614.022150px;}
.y9f{bottom:615.679200px;}
.y30{bottom:617.716500px;}
.y51{bottom:621.277950px;}
.yd0{bottom:627.672150px;}
.yfb{bottom:629.329200px;}
.y69{bottom:632.482800px;}
.y9e{bottom:633.156000px;}
.y50{bottom:636.277950px;}
.y2f{bottom:637.216500px;}
.y6{bottom:644.425800px;}
.ycf{bottom:645.148950px;}
.y68{bottom:646.132800px;}
.y9d{bottom:646.806000px;}
.y4f{bottom:651.277950px;}
.y2e{bottom:656.716500px;}
.yce{bottom:658.798950px;}
.y9c{bottom:660.456000px;}
.y67{bottom:663.609600px;}
.y5{bottom:666.925800px;}
.yfa{bottom:674.106000px;}
.y2d{bottom:676.216500px;}
.ycd{bottom:676.275750px;}
.y66{bottom:677.259450px;}
.y9b{bottom:677.932800px;}
.ycc{bottom:689.925600px;}
.y65{bottom:690.909600px;}
.y9a{bottom:691.582800px;}
.y4e{bottom:693.797550px;}
.y2c{bottom:695.716500px;}
.y4{bottom:697.929750px;}
.yf9{bottom:705.232800px;}
.ycb{bottom:707.402400px;}
.y64{bottom:708.386250px;}
.y99{bottom:709.059600px;}
.y2b{bottom:715.216500px;}
.yf8{bottom:718.882800px;}
.yca{bottom:721.052550px;}
.y63{bottom:722.036250px;}
.y98{bottom:722.709600px;}
.y55{bottom:729.185250px;}
.y2a{bottom:734.716500px;}
.y3{bottom:735.429750px;}
.y62{bottom:735.686400px;}
.y97{bottom:736.359600px;}
.yc9{bottom:738.529200px;}
.yf7{bottom:750.009450px;}
.y61{bottom:753.163050px;}
.y96{bottom:753.836400px;}
.y29{bottom:754.216500px;}
.yc8{bottom:756.006000px;}
.y60{bottom:766.813050px;}
.y95{bottom:767.486250px;}
.yc7{bottom:769.656000px;}
.y28{bottom:773.716500px;}
.y5f{bottom:780.463050px;}
.yf6{bottom:781.136400px;}
.y94{bottom:784.963050px;}
.yc6{bottom:787.132800px;}
.y27{bottom:793.216500px;}
.y5e{bottom:794.113050px;}
.y93{bottom:798.613050px;}
.yc5{bottom:800.782800px;}
.y5d{bottom:807.763050px;}
.y92{bottom:812.263050px;}
.y26{bottom:812.716500px;}
.yc4{bottom:818.259450px;}
.y5c{bottom:821.413050px;}
.y91{bottom:825.913050px;}
.y25{bottom:832.216500px;}
.y5b{bottom:835.063050px;}
.yc3{bottom:835.736250px;}
.yf5{bottom:839.563050px;}
.y90{bottom:843.389850px;}
.y5a{bottom:848.713050px;}
.yc2{bottom:849.386400px;}
.y24{bottom:851.716500px;}
.y8f{bottom:857.039850px;}
.y59{bottom:862.363200px;}
.yc1{bottom:866.863200px;}
.y8e{bottom:870.689850px;}
.y23{bottom:871.216500px;}
.y58{bottom:876.013050px;}
.yc0{bottom:884.339850px;}
.y8d{bottom:888.166650px;}
.y57{bottom:889.663050px;}
.y22{bottom:890.716500px;}
.y8c{bottom:901.816650px;}
.y21{bottom:910.216500px;}
.y56{bottom:915.466650px;}
.y2{bottom:942.925800px;}
.y1{bottom:983.865900px;}
.y20{bottom:984.053850px;}
.h13{height:33.321600px;}
.h12{height:33.504000px;}
.h11{height:34.176000px;}
.hf{height:35.598000px;}
.hc{height:36.312000px;}
.h14{height:37.440000px;}
.h6{height:38.739000px;}
.h7{height:39.516000px;}
.h10{height:40.064400px;}
.hb{height:41.438400px;}
.h2{height:42.720000px;}
.h9{height:46.560000px;}
.ha{height:49.128000px;}
.he{height:52.655400px;}
.hd{height:52.656000px;}
.h5{height:59.808000px;}
.h3{height:63.104365px;}
.h4{height:106.800000px;}
.h8{height:202.560000px;}
.h1{height:1050.000000px;}
.h0{height:1050.235500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:48.047250px;}
.x5{left:71.704050px;}
.x3{left:78.661350px;}
.x11{left:84.098700px;}
.x2{left:93.862200px;}
.x9{left:95.669250px;}
.x15{left:99.921300px;}
.x1e{left:108.425250px;}
.x4{left:121.181100px;}
.x12{left:135.000000px;}
.x8{left:140.314950px;}
.xb{left:145.984200px;}
.x1b{left:149.881950px;}
.x14{left:152.007900px;}
.x17{left:153.370800px;}
.x13{left:156.259800px;}
.x7{left:157.322850px;}
.x1c{left:161.574750px;}
.xc{left:162.992100px;}
.x1a{left:166.889700px;}
.x1d{left:170.078700px;}
.x19{left:171.141750px;}
.xd{left:184.582650px;}
.xe{left:286.629900px;}
.x16{left:291.970800px;}
.xf{left:388.677150px;}
.x18{left:474.805500px;}
.x10{left:490.724400px;}
.xa{left:659.610300px;}
.x6{left:660.690300px;}
@media print{
.v1{vertical-align:-2.479467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.128000pt;}
.v3{vertical-align:17.072000pt;}
.v2{vertical-align:138.666667pt;}
.ls5{letter-spacing:-3.866667pt;}
.ls4{letter-spacing:-3.733333pt;}
.ls3{letter-spacing:-0.723259pt;}
.ls7{letter-spacing:-0.522667pt;}
.ls6{letter-spacing:-0.074667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000213pt;}
.ls0{letter-spacing:0.296000pt;}
.ls1{letter-spacing:0.789333pt;}
.lsd{letter-spacing:1.796800pt;}
.lsb{letter-spacing:4.792533pt;}
.lsc{letter-spacing:10.082133pt;}
.lsa{letter-spacing:161.650133pt;}
.ls9{letter-spacing:198.868267pt;}
.ws2{word-spacing:-29.600000pt;}
.ws1{word-spacing:-18.965463pt;}
.ws3{word-spacing:-13.172000pt;}
.wsab{word-spacing:-12.985067pt;}
.ws10{word-spacing:-12.519467pt;}
.ws11{word-spacing:-11.588267pt;}
.ws9b{word-spacing:-11.378667pt;}
.wse3{word-spacing:-10.709333pt;}
.wse4{word-spacing:-10.453333pt;}
.ws118{word-spacing:-10.067200pt;}
.ws117{word-spacing:-9.318400pt;}
.ws12{word-spacing:-7.261291pt;}
.wsc6{word-spacing:-3.621333pt;}
.wsfb{word-spacing:-3.569600pt;}
.ws71{word-spacing:-3.414400pt;}
.wsf0{word-spacing:-3.362667pt;}
.ws10f{word-spacing:-2.897067pt;}
.ws10c{word-spacing:-2.793600pt;}
.ws59{word-spacing:-2.741867pt;}
.ws35{word-spacing:-2.638400pt;}
.wsac{word-spacing:-2.586667pt;}
.wsc8{word-spacing:-2.483200pt;}
.ws3b{word-spacing:-2.431467pt;}
.wsa3{word-spacing:-2.379733pt;}
.ws36{word-spacing:-2.328000pt;}
.wsb5{word-spacing:-2.276267pt;}
.wsa{word-spacing:-2.224533pt;}
.wsdf{word-spacing:-2.172800pt;}
.wsc7{word-spacing:-2.121067pt;}
.ws96{word-spacing:-2.069333pt;}
.ws45{word-spacing:-2.017600pt;}
.wsef{word-spacing:-1.965867pt;}
.ws78{word-spacing:-1.914133pt;}
.ws77{word-spacing:-1.862400pt;}
.ws91{word-spacing:-1.810667pt;}
.wsff{word-spacing:-1.758933pt;}
.ws74{word-spacing:-1.707200pt;}
.ws2d{word-spacing:-1.655467pt;}
.ws70{word-spacing:-1.603733pt;}
.ws3a{word-spacing:-1.552000pt;}
.wsb8{word-spacing:-1.500267pt;}
.ws28{word-spacing:-1.448533pt;}
.wsce{word-spacing:-1.396800pt;}
.wsee{word-spacing:-1.345067pt;}
.ws6e{word-spacing:-1.293333pt;}
.ws80{word-spacing:-1.241600pt;}
.wsba{word-spacing:-1.086400pt;}
.wscd{word-spacing:-1.034667pt;}
.ws6b{word-spacing:-0.982933pt;}
.ws3d{word-spacing:-0.931200pt;}
.ws17{word-spacing:-0.879467pt;}
.ws11a{word-spacing:-0.832000pt;}
.wsae{word-spacing:-0.827733pt;}
.ws1f{word-spacing:-0.776000pt;}
.ws25{word-spacing:-0.724267pt;}
.ws116{word-spacing:-0.672533pt;}
.ws72{word-spacing:-0.620800pt;}
.wsa6{word-spacing:-0.569067pt;}
.ws47{word-spacing:-0.465600pt;}
.ws20{word-spacing:-0.413867pt;}
.wsf3{word-spacing:-0.362133pt;}
.wsf2{word-spacing:-0.310400pt;}
.ws4{word-spacing:-0.274670pt;}
.ws5f{word-spacing:-0.258667pt;}
.ws75{word-spacing:-0.206933pt;}
.ws11b{word-spacing:-0.166400pt;}
.ws9e{word-spacing:-0.155200pt;}
.ws9{word-spacing:-0.148000pt;}
.ws46{word-spacing:-0.103467pt;}
.wsa4{word-spacing:-0.051733pt;}
.ws5{word-spacing:0.000000pt;}
.wsc0{word-spacing:0.051733pt;}
.ws4a{word-spacing:0.103467pt;}
.wsea{word-spacing:0.155200pt;}
.ws3c{word-spacing:0.206933pt;}
.wsd1{word-spacing:0.258667pt;}
.ws7{word-spacing:0.298667pt;}
.ws81{word-spacing:0.310400pt;}
.ws66{word-spacing:0.362133pt;}
.wsa0{word-spacing:0.413867pt;}
.wsbd{word-spacing:0.465600pt;}
.ws1e{word-spacing:0.517333pt;}
.ws8{word-spacing:0.522667pt;}
.wscb{word-spacing:0.569067pt;}
.ws61{word-spacing:0.620800pt;}
.ws10e{word-spacing:0.724267pt;}
.wsc5{word-spacing:0.776000pt;}
.ws22{word-spacing:0.827733pt;}
.wsde{word-spacing:0.879467pt;}
.ws3f{word-spacing:0.931200pt;}
.wsa1{word-spacing:0.982933pt;}
.wsa9{word-spacing:1.034667pt;}
.ws4b{word-spacing:1.138133pt;}
.wsfc{word-spacing:1.189867pt;}
.ws6{word-spacing:1.200000pt;}
.ws29{word-spacing:1.241600pt;}
.ws85{word-spacing:1.293333pt;}
.ws93{word-spacing:1.345067pt;}
.ws33{word-spacing:1.396800pt;}
.wsb9{word-spacing:1.448533pt;}
.ws2f{word-spacing:1.500267pt;}
.ws6c{word-spacing:1.552000pt;}
.ws88{word-spacing:1.603733pt;}
.ws2b{word-spacing:1.707200pt;}
.ws32{word-spacing:1.758933pt;}
.wsa8{word-spacing:1.810667pt;}
.ws37{word-spacing:1.862400pt;}
.ws9f{word-spacing:1.914133pt;}
.ws4e{word-spacing:1.965867pt;}
.ws65{word-spacing:2.017600pt;}
.ws102{word-spacing:2.069333pt;}
.wsc9{word-spacing:2.121067pt;}
.wse{word-spacing:2.172800pt;}
.ws50{word-spacing:2.224533pt;}
.wsad{word-spacing:2.276267pt;}
.ws94{word-spacing:2.328000pt;}
.wseb{word-spacing:2.379733pt;}
.ws5e{word-spacing:2.431467pt;}
.ws38{word-spacing:2.483200pt;}
.ws14{word-spacing:2.586667pt;}
.ws5a{word-spacing:2.638400pt;}
.ws16{word-spacing:2.690133pt;}
.wse1{word-spacing:2.793600pt;}
.ws8a{word-spacing:2.845333pt;}
.ws21{word-spacing:2.897067pt;}
.wsca{word-spacing:2.948800pt;}
.wsf{word-spacing:3.000533pt;}
.wsd2{word-spacing:3.052267pt;}
.ws64{word-spacing:3.104000pt;}
.wsd4{word-spacing:3.155733pt;}
.ws5d{word-spacing:3.207467pt;}
.wscf{word-spacing:3.259200pt;}
.ws8f{word-spacing:3.310933pt;}
.ws1c{word-spacing:3.362667pt;}
.ws7e{word-spacing:3.414400pt;}
.wscc{word-spacing:3.466133pt;}
.wse8{word-spacing:3.569600pt;}
.ws79{word-spacing:3.621333pt;}
.ws4f{word-spacing:3.673067pt;}
.ws7f{word-spacing:3.724800pt;}
.ws90{word-spacing:3.776533pt;}
.ws2e{word-spacing:3.828267pt;}
.ws82{word-spacing:3.931733pt;}
.wsc4{word-spacing:3.983467pt;}
.ws2a{word-spacing:4.035200pt;}
.ws60{word-spacing:4.086933pt;}
.wsfa{word-spacing:4.138667pt;}
.ws2c{word-spacing:4.190400pt;}
.ws73{word-spacing:4.293867pt;}
.ws56{word-spacing:4.345600pt;}
.wsa7{word-spacing:4.397333pt;}
.wsbf{word-spacing:4.449067pt;}
.ws53{word-spacing:4.500800pt;}
.ws52{word-spacing:4.552533pt;}
.ws4c{word-spacing:4.604267pt;}
.wsa5{word-spacing:4.707733pt;}
.ws19{word-spacing:4.759467pt;}
.wsb7{word-spacing:4.811200pt;}
.ws97{word-spacing:4.862933pt;}
.ws99{word-spacing:4.914667pt;}
.wsc1{word-spacing:4.966400pt;}
.wsd{word-spacing:5.018133pt;}
.ws98{word-spacing:5.069867pt;}
.ws8b{word-spacing:5.121600pt;}
.ws30{word-spacing:5.173333pt;}
.wsb6{word-spacing:5.225067pt;}
.wsc2{word-spacing:5.276800pt;}
.wsc{word-spacing:5.328533pt;}
.wsf1{word-spacing:5.380267pt;}
.ws10b{word-spacing:5.432000pt;}
.wsb0{word-spacing:5.483733pt;}
.ws26{word-spacing:5.535467pt;}
.wsec{word-spacing:5.638933pt;}
.ws1a{word-spacing:5.690667pt;}
.ws8c{word-spacing:5.742400pt;}
.ws8d{word-spacing:5.794133pt;}
.ws76{word-spacing:5.845867pt;}
.wsaf{word-spacing:5.897600pt;}
.ws55{word-spacing:5.949333pt;}
.ws100{word-spacing:6.001067pt;}
.ws115{word-spacing:6.052800pt;}
.ws87{word-spacing:6.156267pt;}
.ws7c{word-spacing:6.208000pt;}
.ws101{word-spacing:6.259733pt;}
.ws18{word-spacing:6.311467pt;}
.ws92{word-spacing:6.363200pt;}
.ws4d{word-spacing:6.414933pt;}
.ws23{word-spacing:6.466667pt;}
.ws7b{word-spacing:6.518400pt;}
.wsdc{word-spacing:6.570133pt;}
.ws54{word-spacing:6.621867pt;}
.ws9d{word-spacing:6.673600pt;}
.wsf8{word-spacing:6.725333pt;}
.ws15{word-spacing:6.777067pt;}
.wsbc{word-spacing:6.828800pt;}
.wsf7{word-spacing:6.880533pt;}
.ws68{word-spacing:6.932267pt;}
.wse7{word-spacing:6.984000pt;}
.ws67{word-spacing:7.035733pt;}
.ws5b{word-spacing:7.087467pt;}
.wsa2{word-spacing:7.139200pt;}
.ws7a{word-spacing:7.190933pt;}
.ws7d{word-spacing:7.242667pt;}
.ws27{word-spacing:7.294400pt;}
.ws49{word-spacing:7.346133pt;}
.wsb4{word-spacing:7.397867pt;}
.wsb2{word-spacing:7.449600pt;}
.wsb1{word-spacing:7.501333pt;}
.ws3e{word-spacing:7.553067pt;}
.wsaa{word-spacing:7.656533pt;}
.wse6{word-spacing:7.760000pt;}
.wsfe{word-spacing:7.863467pt;}
.ws43{word-spacing:7.915200pt;}
.ws62{word-spacing:8.018667pt;}
.ws84{word-spacing:8.070400pt;}
.ws1d{word-spacing:8.122133pt;}
.ws6a{word-spacing:8.173867pt;}
.ws86{word-spacing:8.225600pt;}
.wsf4{word-spacing:8.277333pt;}
.wsb{word-spacing:8.329067pt;}
.wsb3{word-spacing:8.380800pt;}
.ws6f{word-spacing:8.484267pt;}
.ws83{word-spacing:8.536000pt;}
.ws51{word-spacing:8.691200pt;}
.ws69{word-spacing:8.742933pt;}
.ws31{word-spacing:9.001600pt;}
.ws42{word-spacing:9.105067pt;}
.ws114{word-spacing:9.156800pt;}
.ws110{word-spacing:9.260267pt;}
.wsd9{word-spacing:9.312000pt;}
.ws40{word-spacing:9.415467pt;}
.wsbb{word-spacing:9.570667pt;}
.ws34{word-spacing:9.622400pt;}
.ws89{word-spacing:9.674133pt;}
.ws103{word-spacing:9.725867pt;}
.ws113{word-spacing:9.777600pt;}
.ws104{word-spacing:9.829333pt;}
.wsfd{word-spacing:9.881067pt;}
.ws57{word-spacing:9.932800pt;}
.wse9{word-spacing:10.243200pt;}
.ws24{word-spacing:10.398400pt;}
.ws41{word-spacing:10.450133pt;}
.wsc3{word-spacing:10.553600pt;}
.ws105{word-spacing:10.605333pt;}
.ws106{word-spacing:10.657067pt;}
.wsd6{word-spacing:10.760533pt;}
.ws1b{word-spacing:11.174400pt;}
.ws58{word-spacing:11.226133pt;}
.ws10d{word-spacing:11.433067pt;}
.wsf6{word-spacing:11.640000pt;}
.wsf5{word-spacing:12.053867pt;}
.wsd0{word-spacing:12.105600pt;}
.ws112{word-spacing:12.209067pt;}
.wsd7{word-spacing:12.364267pt;}
.wsda{word-spacing:12.467733pt;}
.wsd3{word-spacing:12.519467pt;}
.wsdd{word-spacing:12.933333pt;}
.ws13{word-spacing:12.985067pt;}
.wsdb{word-spacing:13.502400pt;}
.ws109{word-spacing:13.554133pt;}
.ws44{word-spacing:13.709333pt;}
.ws10a{word-spacing:14.019733pt;}
.ws108{word-spacing:14.433600pt;}
.ws63{word-spacing:14.537067pt;}
.wse0{word-spacing:15.571733pt;}
.wsd8{word-spacing:15.830400pt;}
.ws5c{word-spacing:18.365333pt;}
.wse5{word-spacing:19.089600pt;}
.ws8e{word-spacing:19.658667pt;}
.ws48{word-spacing:19.762133pt;}
.ws95{word-spacing:24.211200pt;}
.ws111{word-spacing:84.393600pt;}
.wsf9{word-spacing:84.980267pt;}
.wsbe{word-spacing:85.033600pt;}
.ws6d{word-spacing:85.620267pt;}
.ws119{word-spacing:86.793600pt;}
.wsd5{word-spacing:87.433600pt;}
.wsed{word-spacing:88.073600pt;}
.ws107{word-spacing:90.580267pt;}
.ws0{word-spacing:90.633600pt;}
.ws9a{word-spacing:91.220267pt;}
.ws39{word-spacing:91.273600pt;}
.ws9c{word-spacing:254.188267pt;}
.wse2{word-spacing:487.348267pt;}
._8{margin-left:-13.088533pt;}
._2{margin-left:-6.240000pt;}
._7{margin-left:-5.173333pt;}
._6{margin-left:-3.435490pt;}
._3{margin-left:-2.333333pt;}
._5{margin-left:-1.115490pt;}
._1{width:1.366156pt;}
._0{width:2.282667pt;}
._4{width:3.491687pt;}
._14{width:4.899200pt;}
._9{width:6.208000pt;}
._12{width:8.577310pt;}
._13{width:9.547200pt;}
._15{width:11.025890pt;}
._18{width:62.400000pt;}
._17{width:66.518400pt;}
._16{width:81.328000pt;}
._f{width:186.106133pt;}
._d{width:192.459490pt;}
._11{width:194.002667pt;}
._a{width:195.581333pt;}
._e{width:196.911177pt;}
._b{width:199.805333pt;}
._10{width:205.821333pt;}
._c{width:221.650667pt;}
.fs8{font-size:30.005333pt;}
.fsd{font-size:41.600000pt;}
.fs1{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs5{font-size:49.333333pt;}
.fsc{font-size:49.600000pt;}
.fs7{font-size:51.733333pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:61.333333pt;}
.fsb{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:80.362133pt;}
.fs3{font-size:133.333333pt;}
.fs6{font-size:274.669867pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:66.705600pt;}
.y8b{bottom:70.383333pt;}
.ybf{bottom:72.910267pt;}
.yf3{bottom:78.838933pt;}
.y1f{bottom:81.081333pt;}
.y8a{bottom:82.516667pt;}
.ybe{bottom:85.043600pt;}
.yf2{bottom:94.373867pt;}
.y89{bottom:94.650000pt;}
.ybd{bottom:97.177067pt;}
.y1e{bottom:98.414667pt;}
.yf1{bottom:106.507200pt;}
.y88{bottom:110.184933pt;}
.ybc{bottom:112.711867pt;}
.y1d{bottom:115.748000pt;}
.yf0{bottom:122.042133pt;}
.y87{bottom:122.318133pt;}
.ybb{bottom:128.246800pt;}
.y1c{bottom:133.081333pt;}
.yef{bottom:134.175333pt;}
.y86{bottom:137.853067pt;}
.yba{bottom:143.781733pt;}
.yee{bottom:146.308800pt;}
.y85{bottom:149.986400pt;}
.y1a{bottom:150.414667pt;}
.yb9{bottom:159.316667pt;}
.yed{bottom:161.843733pt;}
.y84{bottom:162.119733pt;}
.y1b{bottom:167.748000pt;}
.yb8{bottom:171.450000pt;}
.yec{bottom:177.378533pt;}
.y83{bottom:177.654667pt;}
.y45{bottom:185.081333pt;}
.yb7{bottom:186.984800pt;}
.yeb{bottom:189.511867pt;}
.y82{bottom:189.788000pt;}
.y81{bottom:201.921333pt;}
.y44{bottom:202.414667pt;}
.yb6{bottom:202.519733pt;}
.yea{bottom:205.046800pt;}
.y4b{bottom:206.321067pt;}
.yb5{bottom:214.653067pt;}
.ye9{bottom:217.180133pt;}
.y80{bottom:217.456267pt;}
.y43{bottom:219.748000pt;}
.yb4{bottom:226.786400pt;}
.y7f{bottom:229.589600pt;}
.ye8{bottom:232.715067pt;}
.y4a{bottom:234.206933pt;}
.y19{bottom:236.114800pt;}
.y42{bottom:237.081333pt;}
.yb3{bottom:238.919733pt;}
.y7e{bottom:241.722933pt;}
.ye7{bottom:244.848400pt;}
.y18{bottom:251.648133pt;}
.y41{bottom:254.414667pt;}
.y7d{bottom:257.257867pt;}
.ye6{bottom:260.383333pt;}
.yb2{bottom:261.856267pt;}
.y49{bottom:262.092933pt;}
.y7c{bottom:269.391200pt;}
.y40{bottom:271.748000pt;}
.ye5{bottom:272.516667pt;}
.y7b{bottom:281.524533pt;}
.ye4{bottom:284.650000pt;}
.y17{bottom:286.079067pt;}
.y48{bottom:287.808267pt;}
.y3f{bottom:289.081333pt;}
.y7a{bottom:297.059467pt;}
.ye3{bottom:300.184800pt;}
.y47{bottom:301.141600pt;}
.y16{bottom:301.612400pt;}
.y3e{bottom:306.414667pt;}
.yb1{bottom:308.460933pt;}
.y79{bottom:309.192800pt;}
.ye2{bottom:312.318133pt;}
.y46{bottom:314.474933pt;}
.y15{bottom:317.145733pt;}
.yb0{bottom:320.594267pt;}
.y78{bottom:321.326000pt;}
.y3d{bottom:323.748000pt;}
.ye1{bottom:327.853067pt;}
.y14{bottom:332.679067pt;}
.yaf{bottom:336.129200pt;}
.y77{bottom:336.860933pt;}
.ye0{bottom:339.986400pt;}
.y4d{bottom:340.457467pt;}
.y3c{bottom:341.081333pt;}
.y13{bottom:348.212400pt;}
.yae{bottom:348.262533pt;}
.y76{bottom:348.994267pt;}
.y4c{bottom:353.790800pt;}
.ydf{bottom:355.521333pt;}
.y3b{bottom:358.414667pt;}
.y75{bottom:361.127600pt;}
.y12{bottom:363.745733pt;}
.yad{bottom:363.797467pt;}
.yde{bottom:367.654667pt;}
.y108{bottom:372.529200pt;}
.y3a{bottom:375.748000pt;}
.yac{bottom:375.930800pt;}
.y74{bottom:376.662533pt;}
.y11{bottom:379.279067pt;}
.ydd{bottom:379.788000pt;}
.y107{bottom:384.662533pt;}
.y73{bottom:388.795867pt;}
.yab{bottom:391.465733pt;}
.y39{bottom:393.081333pt;}
.y10{bottom:394.812400pt;}
.ydc{bottom:395.322933pt;}
.y106{bottom:400.197467pt;}
.y72{bottom:400.929200pt;}
.yaa{bottom:403.599067pt;}
.ydb{bottom:407.456267pt;}
.yf{bottom:410.345733pt;}
.y38{bottom:410.414667pt;}
.y105{bottom:412.330800pt;}
.ya9{bottom:415.732400pt;}
.y71{bottom:416.464133pt;}
.yda{bottom:422.991200pt;}
.y104{bottom:424.464133pt;}
.ye{bottom:425.879067pt;}
.y37{bottom:427.748000pt;}
.y70{bottom:428.597467pt;}
.ya8{bottom:431.267333pt;}
.yd9{bottom:435.124533pt;}
.y103{bottom:436.597467pt;}
.y6f{bottom:440.730800pt;}
.yd{bottom:441.412400pt;}
.ya7{bottom:443.400533pt;}
.y36{bottom:445.081333pt;}
.yd8{bottom:447.257867pt;}
.y102{bottom:452.132400pt;}
.ya6{bottom:455.534000pt;}
.y6e{bottom:456.265733pt;}
.yc{bottom:456.945733pt;}
.y35{bottom:462.414667pt;}
.yd7{bottom:462.792667pt;}
.y101{bottom:464.265733pt;}
.ya5{bottom:467.667333pt;}
.y6d{bottom:468.399067pt;}
.yb{bottom:472.479067pt;}
.yd6{bottom:474.926000pt;}
.y100{bottom:476.399067pt;}
.y34{bottom:479.748000pt;}
.y6c{bottom:480.532400pt;}
.ya4{bottom:483.202133pt;}
.ya{bottom:488.012400pt;}
.yd5{bottom:490.460933pt;}
.yff{bottom:491.933867pt;}
.y6b{bottom:492.665733pt;}
.y54{bottom:494.391333pt;}
.ya3{bottom:495.335467pt;}
.y33{bottom:497.081333pt;}
.yd4{bottom:502.594267pt;}
.y9{bottom:503.545733pt;}
.yfe{bottom:504.067333pt;}
.ya2{bottom:507.468800pt;}
.y53{bottom:507.724667pt;}
.y32{bottom:514.414667pt;}
.y6a{bottom:515.602267pt;}
.yd3{bottom:518.129200pt;}
.y8{bottom:519.079067pt;}
.yfd{bottom:519.602267pt;}
.y52{bottom:521.058000pt;}
.ya1{bottom:523.003733pt;}
.yd2{bottom:530.262533pt;}
.yfc{bottom:531.735467pt;}
.y31{bottom:531.748000pt;}
.y7{bottom:534.612400pt;}
.ya0{bottom:535.137067pt;}
.yd1{bottom:545.797467pt;}
.y9f{bottom:547.270400pt;}
.y30{bottom:549.081333pt;}
.y51{bottom:552.247067pt;}
.yd0{bottom:557.930800pt;}
.yfb{bottom:559.403733pt;}
.y69{bottom:562.206933pt;}
.y9e{bottom:562.805333pt;}
.y50{bottom:565.580400pt;}
.y2f{bottom:566.414667pt;}
.y6{bottom:572.822933pt;}
.ycf{bottom:573.465733pt;}
.y68{bottom:574.340267pt;}
.y9d{bottom:574.938667pt;}
.y4f{bottom:578.913733pt;}
.y2e{bottom:583.748000pt;}
.yce{bottom:585.599067pt;}
.y9c{bottom:587.072000pt;}
.y67{bottom:589.875200pt;}
.y5{bottom:592.822933pt;}
.yfa{bottom:599.205333pt;}
.y2d{bottom:601.081333pt;}
.ycd{bottom:601.134000pt;}
.y66{bottom:602.008400pt;}
.y9b{bottom:602.606933pt;}
.ycc{bottom:613.267200pt;}
.y65{bottom:614.141867pt;}
.y9a{bottom:614.740267pt;}
.y4e{bottom:616.708933pt;}
.y2c{bottom:618.414667pt;}
.y4{bottom:620.382000pt;}
.yf9{bottom:626.873600pt;}
.ycb{bottom:628.802133pt;}
.y64{bottom:629.676667pt;}
.y99{bottom:630.275200pt;}
.y2b{bottom:635.748000pt;}
.yf8{bottom:639.006933pt;}
.yca{bottom:640.935600pt;}
.y63{bottom:641.810000pt;}
.y98{bottom:642.408533pt;}
.y55{bottom:648.164667pt;}
.y2a{bottom:653.081333pt;}
.y3{bottom:653.715333pt;}
.y62{bottom:653.943467pt;}
.y97{bottom:654.541867pt;}
.yc9{bottom:656.470400pt;}
.yf7{bottom:666.675067pt;}
.y61{bottom:669.478267pt;}
.y96{bottom:670.076800pt;}
.y29{bottom:670.414667pt;}
.yc8{bottom:672.005333pt;}
.y60{bottom:681.611600pt;}
.y95{bottom:682.210000pt;}
.yc7{bottom:684.138667pt;}
.y28{bottom:687.748000pt;}
.y5f{bottom:693.744933pt;}
.yf6{bottom:694.343467pt;}
.y94{bottom:697.744933pt;}
.yc6{bottom:699.673600pt;}
.y27{bottom:705.081333pt;}
.y5e{bottom:705.878267pt;}
.y93{bottom:709.878267pt;}
.yc5{bottom:711.806933pt;}
.y5d{bottom:718.011600pt;}
.y92{bottom:722.011600pt;}
.y26{bottom:722.414667pt;}
.yc4{bottom:727.341733pt;}
.y5c{bottom:730.144933pt;}
.y91{bottom:734.144933pt;}
.y25{bottom:739.748000pt;}
.y5b{bottom:742.278267pt;}
.yc3{bottom:742.876667pt;}
.yf5{bottom:746.278267pt;}
.y90{bottom:749.679867pt;}
.y5a{bottom:754.411600pt;}
.yc2{bottom:755.010133pt;}
.y24{bottom:757.081333pt;}
.y8f{bottom:761.813200pt;}
.y59{bottom:766.545067pt;}
.yc1{bottom:770.545067pt;}
.y8e{bottom:773.946533pt;}
.y23{bottom:774.414667pt;}
.y58{bottom:778.678267pt;}
.yc0{bottom:786.079867pt;}
.y8d{bottom:789.481467pt;}
.y57{bottom:790.811600pt;}
.y22{bottom:791.748000pt;}
.y8c{bottom:801.614800pt;}
.y21{bottom:809.081333pt;}
.y56{bottom:813.748133pt;}
.y2{bottom:838.156267pt;}
.y1{bottom:874.547467pt;}
.y20{bottom:874.714533pt;}
.h13{height:29.619200pt;}
.h12{height:29.781333pt;}
.h11{height:30.378667pt;}
.hf{height:31.642667pt;}
.hc{height:32.277333pt;}
.h14{height:33.280000pt;}
.h6{height:34.434667pt;}
.h7{height:35.125333pt;}
.h10{height:35.612800pt;}
.hb{height:36.834133pt;}
.h2{height:37.973333pt;}
.h9{height:41.386667pt;}
.ha{height:43.669333pt;}
.he{height:46.804800pt;}
.hd{height:46.805333pt;}
.h5{height:53.162667pt;}
.h3{height:56.092769pt;}
.h4{height:94.933333pt;}
.h8{height:180.053333pt;}
.h1{height:933.333333pt;}
.h0{height:933.542667pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:42.708667pt;}
.x5{left:63.736933pt;}
.x3{left:69.921200pt;}
.x11{left:74.754400pt;}
.x2{left:83.433067pt;}
.x9{left:85.039333pt;}
.x15{left:88.818933pt;}
.x1e{left:96.378000pt;}
.x4{left:107.716533pt;}
.x12{left:120.000000pt;}
.x8{left:124.724400pt;}
.xb{left:129.763733pt;}
.x1b{left:133.228400pt;}
.x14{left:135.118133pt;}
.x17{left:136.329600pt;}
.x13{left:138.897600pt;}
.x7{left:139.842533pt;}
.x1c{left:143.622000pt;}
.xc{left:144.881867pt;}
.x1a{left:148.346400pt;}
.x1d{left:151.181067pt;}
.x19{left:152.126000pt;}
.xd{left:164.073467pt;}
.xe{left:254.782133pt;}
.x16{left:259.529600pt;}
.xf{left:345.490800pt;}
.x18{left:422.049333pt;}
.x10{left:436.199467pt;}
.xa{left:586.320267pt;}
.x6{left:587.280267pt;}
}




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