
    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_5a902b64824be1d7038fbbf1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.751000;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_ac0a1321d7115b137059fc94.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.784000;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_64e676548cc3a8167cae527b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_0bd88a7461f2b4713371d3f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_348b26f24fb19d0231bfd413.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766602;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_e7419197226d9bea1911f201.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_361eabd12f18a9e70c9a765a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958008;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_5a902b64824be1d7038fbbf1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.751000;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_541e751cd545820e31853c65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.805664;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:-23.640600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:120.000000px;}
.ls8{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.360000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.080000px;}
.ls9{letter-spacing:1.296000px;}
.ls2{letter-spacing:1.440000px;}
.lsa{letter-spacing:1.800000px;}
.ls6{letter-spacing:2.016000px;}
.ls5{letter-spacing:2.160000px;}
.lsb{letter-spacing:4.320000px;}
.ls1{letter-spacing:11.901180px;}
.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:-40.500000px;}
.ws2{word-spacing:-36.000000px;}
.ws6{word-spacing:-21.600000px;}
.ws3{word-spacing:-16.800000px;}
.ws84{word-spacing:-16.620000px;}
.ws13{word-spacing:-11.160000px;}
.ws80{word-spacing:-10.944000px;}
.ws6d{word-spacing:-10.008000px;}
.ws64{word-spacing:-9.432000px;}
.ws24{word-spacing:-9.144000px;}
.ws75{word-spacing:-9.072000px;}
.ws82{word-spacing:-8.928000px;}
.ws8{word-spacing:-7.992000px;}
.ws96{word-spacing:-7.620000px;}
.ws66{word-spacing:-7.344000px;}
.ws9a{word-spacing:-6.900000px;}
.ws25{word-spacing:-6.624000px;}
.wsb{word-spacing:-6.336000px;}
.ws14{word-spacing:-6.048000px;}
.ws46{word-spacing:-5.832000px;}
.ws57{word-spacing:-5.472000px;}
.ws5a{word-spacing:-5.040000px;}
.ws21{word-spacing:-4.464000px;}
.ws2a{word-spacing:-4.392000px;}
.wsaa{word-spacing:-4.320000px;}
.ws3d{word-spacing:-4.176000px;}
.ws38{word-spacing:-4.104000px;}
.ws8e{word-spacing:-3.900000px;}
.ws4{word-spacing:-3.870000px;}
.ws78{word-spacing:-3.816000px;}
.wsa1{word-spacing:-3.540000px;}
.ws48{word-spacing:-3.312000px;}
.ws91{word-spacing:-3.240000px;}
.ws23{word-spacing:-3.024000px;}
.wsad{word-spacing:-3.000000px;}
.ws2f{word-spacing:-2.952000px;}
.ws5d{word-spacing:-2.880000px;}
.ws63{word-spacing:-2.808000px;}
.ws8b{word-spacing:-2.760000px;}
.wsa4{word-spacing:-2.580000px;}
.ws6f{word-spacing:-2.304000px;}
.ws4f{word-spacing:-2.160000px;}
.ws5f{word-spacing:-2.016000px;}
.ws2b{word-spacing:-1.872000px;}
.wsa5{word-spacing:-1.800000px;}
.ws47{word-spacing:-1.584000px;}
.ws1e{word-spacing:-1.440000px;}
.ws71{word-spacing:-1.368000px;}
.ws4c{word-spacing:-1.296000px;}
.ws43{word-spacing:-1.080000px;}
.ws58{word-spacing:-0.864000px;}
.ws69{word-spacing:-0.720000px;}
.ws90{word-spacing:-0.600000px;}
.ws7b{word-spacing:-0.360000px;}
.wsa6{word-spacing:-0.300000px;}
.ws22{word-spacing:-0.288000px;}
.wsf{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws94{word-spacing:0.120000px;}
.ws4b{word-spacing:0.144000px;}
.ws1c{word-spacing:0.360000px;}
.wse{word-spacing:0.504000px;}
.wsa8{word-spacing:0.540000px;}
.wsa7{word-spacing:0.780000px;}
.ws3f{word-spacing:0.792000px;}
.ws81{word-spacing:0.864000px;}
.ws7c{word-spacing:0.936000px;}
.ws95{word-spacing:0.960000px;}
.ws32{word-spacing:1.008000px;}
.wsc{word-spacing:1.080000px;}
.ws56{word-spacing:1.152000px;}
.ws7a{word-spacing:1.224000px;}
.wsa3{word-spacing:1.260000px;}
.ws26{word-spacing:1.296000px;}
.ws10{word-spacing:1.368000px;}
.ws3e{word-spacing:1.440000px;}
.ws18{word-spacing:1.512000px;}
.ws4d{word-spacing:1.584000px;}
.ws92{word-spacing:1.620000px;}
.ws70{word-spacing:1.656000px;}
.ws6e{word-spacing:1.728000px;}
.wsa{word-spacing:2.016000px;}
.ws53{word-spacing:2.160000px;}
.ws15{word-spacing:2.304000px;}
.ws8d{word-spacing:2.400000px;}
.ws45{word-spacing:2.808000px;}
.ws8c{word-spacing:2.880000px;}
.ws99{word-spacing:3.000000px;}
.ws11{word-spacing:3.024000px;}
.ws1a{word-spacing:3.168000px;}
.wsa2{word-spacing:3.300000px;}
.ws51{word-spacing:3.600000px;}
.wsaf{word-spacing:3.780000px;}
.ws1d{word-spacing:3.888000px;}
.ws74{word-spacing:4.032000px;}
.ws33{word-spacing:4.176000px;}
.ws31{word-spacing:4.248000px;}
.ws17{word-spacing:4.752000px;}
.ws39{word-spacing:4.824000px;}
.ws79{word-spacing:4.968000px;}
.ws19{word-spacing:5.040000px;}
.ws9c{word-spacing:5.160000px;}
.ws6b{word-spacing:5.328000px;}
.ws4a{word-spacing:5.616000px;}
.ws35{word-spacing:5.688000px;}
.ws62{word-spacing:5.760000px;}
.ws12{word-spacing:5.904000px;}
.ws2c{word-spacing:6.192000px;}
.ws9{word-spacing:6.336000px;}
.ws93{word-spacing:6.360000px;}
.ws60{word-spacing:6.408000px;}
.wsae{word-spacing:6.420000px;}
.ws20{word-spacing:6.480000px;}
.wsb0{word-spacing:6.540000px;}
.ws7d{word-spacing:6.624000px;}
.ws54{word-spacing:6.696000px;}
.ws50{word-spacing:6.840000px;}
.ws37{word-spacing:6.984000px;}
.wsa9{word-spacing:7.740000px;}
.ws7e{word-spacing:7.920000px;}
.ws9e{word-spacing:8.220000px;}
.ws36{word-spacing:8.424000px;}
.ws41{word-spacing:8.568000px;}
.ws2e{word-spacing:8.640000px;}
.ws16{word-spacing:8.712000px;}
.ws68{word-spacing:9.216000px;}
.ws76{word-spacing:9.432000px;}
.ws29{word-spacing:9.864000px;}
.ws27{word-spacing:10.080000px;}
.ws5e{word-spacing:10.152000px;}
.ws30{word-spacing:10.296000px;}
.ws9b{word-spacing:10.320000px;}
.ws9d{word-spacing:10.620000px;}
.wsab{word-spacing:10.740000px;}
.ws52{word-spacing:10.944000px;}
.ws2d{word-spacing:11.016000px;}
.ws28{word-spacing:11.952000px;}
.wsd{word-spacing:12.168000px;}
.ws3a{word-spacing:12.240000px;}
.ws77{word-spacing:12.384000px;}
.ws1b{word-spacing:12.528000px;}
.wsac{word-spacing:12.600000px;}
.ws3c{word-spacing:12.888000px;}
.ws49{word-spacing:13.608000px;}
.ws89{word-spacing:13.680000px;}
.ws9f{word-spacing:13.980000px;}
.ws6a{word-spacing:14.400000px;}
.ws97{word-spacing:14.700000px;}
.ws1f{word-spacing:14.904000px;}
.ws40{word-spacing:15.048000px;}
.ws44{word-spacing:15.192000px;}
.ws55{word-spacing:15.408000px;}
.ws7{word-spacing:16.272000px;}
.wsa0{word-spacing:16.920000px;}
.ws8f{word-spacing:17.700000px;}
.ws59{word-spacing:17.784000px;}
.ws85{word-spacing:17.856000px;}
.ws34{word-spacing:18.072000px;}
.ws72{word-spacing:19.296000px;}
.ws98{word-spacing:20.340000px;}
.ws73{word-spacing:23.400000px;}
.ws67{word-spacing:23.688000px;}
.ws6c{word-spacing:24.120000px;}
.ws7f{word-spacing:25.200000px;}
.ws86{word-spacing:25.344000px;}
.ws42{word-spacing:27.216000px;}
.ws87{word-spacing:27.360000px;}
.ws83{word-spacing:27.504000px;}
.ws61{word-spacing:30.312000px;}
.ws8a{word-spacing:30.600000px;}
.ws3b{word-spacing:30.816000px;}
.ws88{word-spacing:30.840000px;}
.ws4e{word-spacing:34.776000px;}
.ws1{word-spacing:100.463400px;}
.ws65{word-spacing:332.309400px;}
.ws5b{word-spacing:332.310000px;}
.ws5c{word-spacing:398.789400px;}
._3{margin-left:-9.900000px;}
._6{margin-left:-8.870400px;}
._2c{margin-left:-7.567200px;}
._10{margin-left:-6.242400px;}
._2{margin-left:-4.500000px;}
._4{margin-left:-2.880000px;}
._0{margin-left:-1.350000px;}
._1{width:1.710000px;}
._1a{width:2.887200px;}
._e{width:3.909600px;}
._c{width:5.040000px;}
._2a{width:6.465600px;}
._22{width:7.480800px;}
._8{width:9.352800px;}
._7{width:10.353600px;}
._d{width:11.952000px;}
._9{width:13.579200px;}
._2d{width:14.961600px;}
._2f{width:20.299800px;}
._b{width:21.571200px;}
._f{width:23.400000px;}
._2b{width:25.264800px;}
._11{width:28.224000px;}
._a{width:30.247200px;}
._29{width:37.605600px;}
._2e{width:41.520000px;}
._30{width:66.408000px;}
._31{width:88.397400px;}
._5{width:122.307000px;}
._12{width:257.580000px;}
._21{width:261.789000px;}
._17{width:269.948400px;}
._24{width:287.407200px;}
._32{width:304.877400px;}
._1e{width:329.735400px;}
._28{width:333.286200px;}
._23{width:334.810200px;}
._1b{width:339.909000px;}
._16{width:342.602400px;}
._13{width:348.930000px;}
._26{width:353.886600px;}
._27{width:370.513200px;}
._1f{width:372.663000px;}
._1d{width:379.802400px;}
._14{width:408.422400px;}
._15{width:415.410000px;}
._19{width:432.023400px;}
._20{width:441.843000px;}
._18{width:448.650000px;}
._1c{width:478.562400px;}
._25{width:605.746200px;}
.fc4{color:transparent;}
.fc3{color:rgb(60,106,112);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(229,137,29);}
.fs5{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:90.000000px;}
.fs6{font-size:102.000000px;}
.fs2{font-size:126.000000px;}
.fs7{font-size:239.070000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:38.232300px;}
.y3a{bottom:38.870100px;}
.y38{bottom:46.971450px;}
.y37{bottom:61.371450px;}
.y36{bottom:75.771450px;}
.y5a{bottom:85.759950px;}
.yd3{bottom:86.645850px;}
.y7d{bottom:93.271800px;}
.y133{bottom:94.194150px;}
.y10f{bottom:96.767700px;}
.y165{bottom:103.228500px;}
.ya6{bottom:108.767700px;}
.yf1{bottom:112.263900px;}
.y132{bottom:114.444150px;}
.y59{bottom:115.759950px;}
.yd2{bottom:116.645850px;}
.y35{bottom:118.371300px;}
.yc1{bottom:120.094500px;}
.y32{bottom:120.621300px;}
.y164{bottom:121.978500px;}
.y7c{bottom:123.271800px;}
.y10e{bottom:128.267700px;}
.y131{bottom:134.694150px;}
.y34{bottom:136.371300px;}
.y31{bottom:138.621300px;}
.ya5{bottom:138.767700px;}
.yf0{bottom:143.013900px;}
.y58{bottom:145.759950px;}
.y163{bottom:149.232300px;}
.yc0{bottom:150.094500px;}
.y7b{bottom:153.271800px;}
.y33{bottom:154.371300px;}
.y30{bottom:156.621300px;}
.y10d{bottom:159.767700px;}
.y130{bottom:163.448100px;}
.y162{bottom:167.982300px;}
.ya4{bottom:168.767700px;}
.yef{bottom:173.763900px;}
.y7a{bottom:183.271800px;}
.y12f{bottom:183.698100px;}
.y57{bottom:184.263900px;}
.y161{bottom:195.236250px;}
.ya3{bottom:198.767700px;}
.y2f{bottom:199.221150px;}
.y10c{bottom:199.771800px;}
.y12e{bottom:203.948100px;}
.yee{bottom:213.017700px;}
.y79{bottom:213.271800px;}
.y160{bottom:213.986250px;}
.y56{bottom:214.263900px;}
.ya2{bottom:228.767700px;}
.ybf{bottom:229.688850px;}
.y10b{bottom:231.271800px;}
.y12d{bottom:232.702050px;}
.y15f{bottom:241.240200px;}
.y78{bottom:243.271800px;}
.yed{bottom:243.767700px;}
.y55{bottom:244.263900px;}
.y2e{bottom:246.321150px;}
.y8d{bottom:251.775750px;}
.y12c{bottom:252.952050px;}
.ybe{bottom:257.736450px;}
.y15e{bottom:259.990200px;}
.y10a{bottom:262.771800px;}
.y2d{bottom:264.321150px;}
.ya1{bottom:267.271800px;}
.y77{bottom:273.271800px;}
.y54{bottom:274.263900px;}
.yec{bottom:274.517700px;}
.y15d{bottom:278.740200px;}
.y12b{bottom:281.706000px;}
.y8c{bottom:281.775750px;}
.y2c{bottom:282.321150px;}
.ybd{bottom:285.784200px;}
.y109{bottom:294.271800px;}
.ya0{bottom:297.271800px;}
.y2b{bottom:300.321150px;}
.y12a{bottom:301.956000px;}
.y76{bottom:303.271800px;}
.y53{bottom:304.263900px;}
.y15c{bottom:305.994150px;}
.y8b{bottom:311.775750px;}
.yeb{bottom:313.771800px;}
.y2a{bottom:318.321150px;}
.ybc{bottom:319.793100px;}
.y15b{bottom:324.744150px;}
.y9f{bottom:327.271800px;}
.y129{bottom:330.709950px;}
.y52{bottom:334.263900px;}
.y108{bottom:334.275750px;}
.y29{bottom:336.321150px;}
.y75{bottom:341.775750px;}
.yea{bottom:344.521800px;}
.y128{bottom:350.959950px;}
.y15a{bottom:351.998100px;}
.y28{bottom:354.321150px;}
.y9e{bottom:357.271800px;}
.ybb{bottom:360.094500px;}
.y159{bottom:370.748100px;}
.y127{bottom:371.209950px;}
.y74{bottom:371.775750px;}
.y51{bottom:372.767700px;}
.ye9{bottom:375.271800px;}
.y27{bottom:380.825100px;}
.y158{bottom:389.498100px;}
.y9d{bottom:395.775750px;}
.yba{bottom:398.598600px;}
.y26{bottom:398.825100px;}
.y126{bottom:399.963900px;}
.y73{bottom:401.775750px;}
.ye8{bottom:406.021800px;}
.y8a{bottom:410.279550px;}
.y107{bottom:414.283500px;}
.y157{bottom:416.752050px;}
.y25{bottom:416.825100px;}
.y125{bottom:420.213900px;}
.yb9{bottom:428.598450px;}
.y24{bottom:434.825100px;}
.y156{bottom:435.502050px;}
.ye7{bottom:436.771800px;}
.y72{bottom:440.279550px;}
.y124{bottom:440.463900px;}
.y106{bottom:445.783500px;}
.y23{bottom:452.825100px;}
.y155{bottom:454.252050px;}
.y50{bottom:455.775600px;}
.yb8{bottom:467.102400px;}
.y123{bottom:469.217850px;}
.y71{bottom:470.279550px;}
.y22{bottom:470.825100px;}
.ye6{bottom:476.025600px;}
.y105{bottom:477.283500px;}
.y9c{bottom:478.783500px;}
.y154{bottom:481.506000px;}
.y4f{bottom:485.775600px;}
.y21{bottom:488.825100px;}
.y122{bottom:489.467850px;}
.yb7{bottom:497.102400px;}
.y153{bottom:500.256000px;}
.y70{bottom:500.279550px;}
.ye5{bottom:506.775600px;}
.y20{bottom:506.825100px;}
.y9b{bottom:508.783500px;}
.y121{bottom:509.717850px;}
.y4e{bottom:515.775600px;}
.y152{bottom:519.006000px;}
.yb6{bottom:527.102400px;}
.y6f{bottom:530.279550px;}
.yd1{bottom:531.685200px;}
.y1f{bottom:533.329050px;}
.ye4{bottom:537.525600px;}
.y120{bottom:538.471650px;}
.y9a{bottom:538.783500px;}
.y14{bottom:543.817200px;}
.y4d{bottom:545.775600px;}
.y151{bottom:546.259950px;}
.y104{bottom:548.787450px;}
.y1e{bottom:551.329050px;}
.yb5{bottom:557.102400px;}
.y11f{bottom:558.721650px;}
.y6e{bottom:560.279550px;}
.y13{bottom:561.817200px;}
.y150{bottom:565.009950px;}
.ye3{bottom:568.275600px;}
.y89{bottom:568.783500px;}
.y1d{bottom:569.329050px;}
.y99{bottom:577.287450px;}
.y103{bottom:580.287450px;}
.y14f{bottom:583.759950px;}
.y4c{bottom:584.279550px;}
.yb4{bottom:587.102400px;}
.y1c{bottom:587.328900px;}
.y11e{bottom:587.475750px;}
.y12{bottom:588.321150px;}
.y6d{bottom:590.279550px;}
.y88{bottom:598.783500px;}
.y1b{bottom:605.328900px;}
.y11{bottom:606.321150px;}
.y98{bottom:607.287450px;}
.ye2{bottom:607.529550px;}
.yd0{bottom:608.692950px;}
.y14e{bottom:611.013900px;}
.y102{bottom:611.787450px;}
.y4b{bottom:614.279550px;}
.yb3{bottom:617.102400px;}
.y1a{bottom:623.328900px;}
.y6c{bottom:628.783500px;}
.y14d{bottom:629.763900px;}
.y10{bottom:632.825100px;}
.y97{bottom:637.287450px;}
.ye1{bottom:638.279550px;}
.y101{bottom:643.287450px;}
.y4a{bottom:644.279550px;}
.y14c{bottom:648.513900px;}
.y19{bottom:649.833000px;}
.yf{bottom:650.825100px;}
.y6b{bottom:658.783500px;}
.y96{bottom:667.287450px;}
.y18{bottom:667.833000px;}
.ye0{bottom:669.029550px;}
.y178{bottom:670.079550px;}
.y11d{bottom:670.483500px;}
.y49{bottom:674.279550px;}
.y14b{bottom:675.767850px;}
.ye{bottom:677.328900px;}
.y100{bottom:683.291400px;}
.y17{bottom:685.833000px;}
.ycf{bottom:687.064800px;}
.y6a{bottom:688.783500px;}
.y14a{bottom:694.517850px;}
.yd{bottom:695.328900px;}
.y177{bottom:695.579550px;}
.yb2{bottom:696.814800px;}
.y95{bottom:697.287450px;}
.ydf{bottom:699.779550px;}
.y11c{bottom:703.933500px;}
.y48{bottom:704.279550px;}
.y16{bottom:712.336800px;}
.yce{bottom:712.667700px;}
.y149{bottom:713.267850px;}
.yff{bottom:714.791400px;}
.y176{bottom:718.829550px;}
.yc{bottom:721.833000px;}
.yb1{bottom:725.098800px;}
.y69{bottom:727.287450px;}
.y15{bottom:730.336800px;}
.yde{bottom:730.529550px;}
.y47{bottom:734.279550px;}
.y11b{bottom:737.383500px;}
.ycd{bottom:738.270450px;}
.y148{bottom:740.521800px;}
.yfe{bottom:746.291400px;}
.yb{bottom:748.336800px;}
.yb0{bottom:753.382800px;}
.y68{bottom:757.287450px;}
.y147{bottom:759.271800px;}
.ydd{bottom:761.279550px;}
.y46{bottom:764.279550px;}
.ya{bottom:766.336800px;}
.y175{bottom:767.579550px;}
.ycc{bottom:769.710450px;}
.yfd{bottom:777.791400px;}
.y146{bottom:778.021800px;}
.y11a{bottom:779.337450px;}
.y174{bottom:785.579550px;}
.y67{bottom:787.287450px;}
.yaf{bottom:787.988100px;}
.ydc{bottom:792.029700px;}
.y45{bottom:802.783500px;}
.y173{bottom:803.579550px;}
.y145{bottom:805.275750px;}
.ycb{bottom:808.665450px;}
.yfc{bottom:809.291400px;}
.y9{bottom:811.186650px;}
.y119{bottom:812.787450px;}
.y66{bottom:817.287450px;}
.y172{bottom:821.579550px;}
.ydb{bottom:822.779550px;}
.y144{bottom:824.025750px;}
.yae{bottom:828.767700px;}
.y44{bottom:832.783500px;}
.y171{bottom:839.579550px;}
.yfb{bottom:840.791400px;}
.y143{bottom:842.775750px;}
.y118{bottom:846.237450px;}
.yca{bottom:847.169250px;}
.y65{bottom:847.287450px;}
.y8{bottom:858.286500px;}
.yda{bottom:862.033500px;}
.y43{bottom:862.783500px;}
.yad{bottom:867.271800px;}
.y142{bottom:870.029550px;}
.yfa{bottom:872.291400px;}
.yc9{bottom:877.169250px;}
.y87{bottom:877.287450px;}
.y117{bottom:879.687450px;}
.y64{bottom:885.791250px;}
.y94{bottom:885.791400px;}
.y170{bottom:886.079550px;}
.y141{bottom:888.779550px;}
.y42{bottom:892.783500px;}
.y7{bottom:896.086500px;}
.yac{bottom:897.271800px;}
.yf9{bottom:903.791400px;}
.y16f{bottom:904.079550px;}
.yc8{bottom:906.869400px;}
.y86{bottom:907.287450px;}
.y140{bottom:907.529550px;}
.y116{bottom:913.137450px;}
.y63{bottom:915.791250px;}
.y93{bottom:915.791400px;}
.y16e{bottom:922.079550px;}
.y41{bottom:922.783500px;}
.yd9{bottom:932.037450px;}
.y6{bottom:933.886500px;}
.y13f{bottom:934.783500px;}
.yf8{bottom:935.291400px;}
.yab{bottom:935.775750px;}
.yc7{bottom:936.569400px;}
.y85{bottom:937.287450px;}
.y16d{bottom:940.079550px;}
.y62{bottom:945.791250px;}
.y92{bottom:945.791400px;}
.y115{bottom:946.587450px;}
.y40{bottom:952.783500px;}
.y13e{bottom:953.533500px;}
.y16c{bottom:958.079550px;}
.yc6{bottom:966.269400px;}
.yf7{bottom:966.791400px;}
.y84{bottom:967.287450px;}
.y5{bottom:971.686500px;}
.y13d{bottom:972.283500px;}
.y61{bottom:975.791250px;}
.y91{bottom:975.791400px;}
.y16b{bottom:976.079550px;}
.y114{bottom:980.037450px;}
.y13c{bottom:991.033500px;}
.y3f{bottom:991.287450px;}
.yf6{bottom:998.291400px;}
.y60{bottom:1005.791250px;}
.y83{bottom:1005.791400px;}
.y16a{bottom:1007.833500px;}
.yd8{bottom:1010.545350px;}
.y13b{bottom:1018.287450px;}
.yaa{bottom:1018.783500px;}
.y3e{bottom:1021.287450px;}
.y113{bottom:1021.991400px;}
.y4{bottom:1028.911350px;}
.yf5{bottom:1029.791400px;}
.y5f{bottom:1035.791250px;}
.y82{bottom:1035.791400px;}
.y13a{bottom:1037.037450px;}
.yd7{bottom:1041.295350px;}
.yc5{bottom:1043.625750px;}
.y90{bottom:1044.295350px;}
.ya9{bottom:1048.783500px;}
.y3d{bottom:1051.287450px;}
.y112{bottom:1055.441400px;}
.y139{bottom:1064.291400px;}
.y81{bottom:1065.791400px;}
.yc4{bottom:1068.397950px;}
.yf4{bottom:1069.795350px;}
.yd6{bottom:1072.045350px;}
.y5e{bottom:1074.295200px;}
.y8f{bottom:1074.295350px;}
.y169{bottom:1078.841400px;}
.y138{bottom:1083.041400px;}
.ya8{bottom:1087.287450px;}
.y111{bottom:1088.891400px;}
.yc3{bottom:1093.170000px;}
.y80{bottom:1095.791400px;}
.y168{bottom:1098.641400px;}
.yf3{bottom:1101.295350px;}
.y137{bottom:1101.791400px;}
.yd5{bottom:1102.795350px;}
.y5d{bottom:1104.295200px;}
.y8e{bottom:1104.295350px;}
.y167{bottom:1118.441400px;}
.y3c{bottom:1119.791400px;}
.y136{bottom:1120.541400px;}
.yc2{bottom:1124.767500px;}
.ya7{bottom:1125.791400px;}
.y110{bottom:1130.845350px;}
.yf2{bottom:1132.795350px;}
.yd4{bottom:1133.545350px;}
.y5c{bottom:1134.295200px;}
.y7f{bottom:1134.295350px;}
.y3{bottom:1146.439950px;}
.y166{bottom:1146.745350px;}
.y135{bottom:1147.795350px;}
.y5b{bottom:1164.295200px;}
.y7e{bottom:1164.295350px;}
.y134{bottom:1166.545350px;}
.y2{bottom:1174.939950px;}
.y1{bottom:1203.439950px;}
.y39{bottom:1215.602400px;}
.hc{height:36.048000px;}
.ha{height:36.093750px;}
.hb{height:37.453125px;}
.h7{height:45.117188px;}
.h8{height:46.816406px;}
.h9{height:54.000000px;}
.h6{height:54.072000px;}
.hf{height:54.140625px;}
.h10{height:56.179688px;}
.hd{height:57.142603px;}
.h4{height:63.164062px;}
.h3{height:67.500000px;}
.h2{height:67.590000px;}
.h5{height:94.500000px;}
.he{height:179.769434px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:52.754100px;}
.x12{left:55.642800px;}
.xa{left:57.254100px;}
.x5{left:69.246600px;}
.x8{left:71.353200px;}
.x9{left:73.843500px;}
.x6{left:83.665200px;}
.xe{left:85.386450px;}
.xd{left:87.312750px;}
.xc{left:89.583150px;}
.x19{left:91.039350px;}
.x7{left:96.226200px;}
.xf{left:102.862050px;}
.x16{left:106.299150px;}
.x15{left:112.512600px;}
.x1b{left:123.863250px;}
.x1a{left:126.404700px;}
.xb{left:130.657350px;}
.x17{left:133.299150px;}
.x14{left:181.722450px;}
.x1c{left:183.492300px;}
.x10{left:218.598450px;}
.x4{left:227.102400px;}
.x1d{left:284.078700px;}
.x13{left:492.696900px;}
.x1{left:507.047250px;}
.x1e{left:647.196900px;}
.x3{left:672.847050px;}
.x2{left:704.370300px;}
.x18{left:745.594650px;}
@media print{
.v1{vertical-align:-21.013867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:106.666667pt;}
.ls8{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls9{letter-spacing:1.152000pt;}
.ls2{letter-spacing:1.280000pt;}
.lsa{letter-spacing:1.600000pt;}
.ls6{letter-spacing:1.792000pt;}
.ls5{letter-spacing:1.920000pt;}
.lsb{letter-spacing:3.840000pt;}
.ls1{letter-spacing:10.578827pt;}
.ws0{word-spacing:-36.000000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws6{word-spacing:-19.200000pt;}
.ws3{word-spacing:-14.933333pt;}
.ws84{word-spacing:-14.773333pt;}
.ws13{word-spacing:-9.920000pt;}
.ws80{word-spacing:-9.728000pt;}
.ws6d{word-spacing:-8.896000pt;}
.ws64{word-spacing:-8.384000pt;}
.ws24{word-spacing:-8.128000pt;}
.ws75{word-spacing:-8.064000pt;}
.ws82{word-spacing:-7.936000pt;}
.ws8{word-spacing:-7.104000pt;}
.ws96{word-spacing:-6.773333pt;}
.ws66{word-spacing:-6.528000pt;}
.ws9a{word-spacing:-6.133333pt;}
.ws25{word-spacing:-5.888000pt;}
.wsb{word-spacing:-5.632000pt;}
.ws14{word-spacing:-5.376000pt;}
.ws46{word-spacing:-5.184000pt;}
.ws57{word-spacing:-4.864000pt;}
.ws5a{word-spacing:-4.480000pt;}
.ws21{word-spacing:-3.968000pt;}
.ws2a{word-spacing:-3.904000pt;}
.wsaa{word-spacing:-3.840000pt;}
.ws3d{word-spacing:-3.712000pt;}
.ws38{word-spacing:-3.648000pt;}
.ws8e{word-spacing:-3.466667pt;}
.ws4{word-spacing:-3.440000pt;}
.ws78{word-spacing:-3.392000pt;}
.wsa1{word-spacing:-3.146667pt;}
.ws48{word-spacing:-2.944000pt;}
.ws91{word-spacing:-2.880000pt;}
.ws23{word-spacing:-2.688000pt;}
.wsad{word-spacing:-2.666667pt;}
.ws2f{word-spacing:-2.624000pt;}
.ws5d{word-spacing:-2.560000pt;}
.ws63{word-spacing:-2.496000pt;}
.ws8b{word-spacing:-2.453333pt;}
.wsa4{word-spacing:-2.293333pt;}
.ws6f{word-spacing:-2.048000pt;}
.ws4f{word-spacing:-1.920000pt;}
.ws5f{word-spacing:-1.792000pt;}
.ws2b{word-spacing:-1.664000pt;}
.wsa5{word-spacing:-1.600000pt;}
.ws47{word-spacing:-1.408000pt;}
.ws1e{word-spacing:-1.280000pt;}
.ws71{word-spacing:-1.216000pt;}
.ws4c{word-spacing:-1.152000pt;}
.ws43{word-spacing:-0.960000pt;}
.ws58{word-spacing:-0.768000pt;}
.ws69{word-spacing:-0.640000pt;}
.ws90{word-spacing:-0.533333pt;}
.ws7b{word-spacing:-0.320000pt;}
.wsa6{word-spacing:-0.266667pt;}
.ws22{word-spacing:-0.256000pt;}
.wsf{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws94{word-spacing:0.106667pt;}
.ws4b{word-spacing:0.128000pt;}
.ws1c{word-spacing:0.320000pt;}
.wse{word-spacing:0.448000pt;}
.wsa8{word-spacing:0.480000pt;}
.wsa7{word-spacing:0.693333pt;}
.ws3f{word-spacing:0.704000pt;}
.ws81{word-spacing:0.768000pt;}
.ws7c{word-spacing:0.832000pt;}
.ws95{word-spacing:0.853333pt;}
.ws32{word-spacing:0.896000pt;}
.wsc{word-spacing:0.960000pt;}
.ws56{word-spacing:1.024000pt;}
.ws7a{word-spacing:1.088000pt;}
.wsa3{word-spacing:1.120000pt;}
.ws26{word-spacing:1.152000pt;}
.ws10{word-spacing:1.216000pt;}
.ws3e{word-spacing:1.280000pt;}
.ws18{word-spacing:1.344000pt;}
.ws4d{word-spacing:1.408000pt;}
.ws92{word-spacing:1.440000pt;}
.ws70{word-spacing:1.472000pt;}
.ws6e{word-spacing:1.536000pt;}
.wsa{word-spacing:1.792000pt;}
.ws53{word-spacing:1.920000pt;}
.ws15{word-spacing:2.048000pt;}
.ws8d{word-spacing:2.133333pt;}
.ws45{word-spacing:2.496000pt;}
.ws8c{word-spacing:2.560000pt;}
.ws99{word-spacing:2.666667pt;}
.ws11{word-spacing:2.688000pt;}
.ws1a{word-spacing:2.816000pt;}
.wsa2{word-spacing:2.933333pt;}
.ws51{word-spacing:3.200000pt;}
.wsaf{word-spacing:3.360000pt;}
.ws1d{word-spacing:3.456000pt;}
.ws74{word-spacing:3.584000pt;}
.ws33{word-spacing:3.712000pt;}
.ws31{word-spacing:3.776000pt;}
.ws17{word-spacing:4.224000pt;}
.ws39{word-spacing:4.288000pt;}
.ws79{word-spacing:4.416000pt;}
.ws19{word-spacing:4.480000pt;}
.ws9c{word-spacing:4.586667pt;}
.ws6b{word-spacing:4.736000pt;}
.ws4a{word-spacing:4.992000pt;}
.ws35{word-spacing:5.056000pt;}
.ws62{word-spacing:5.120000pt;}
.ws12{word-spacing:5.248000pt;}
.ws2c{word-spacing:5.504000pt;}
.ws9{word-spacing:5.632000pt;}
.ws93{word-spacing:5.653333pt;}
.ws60{word-spacing:5.696000pt;}
.wsae{word-spacing:5.706667pt;}
.ws20{word-spacing:5.760000pt;}
.wsb0{word-spacing:5.813333pt;}
.ws7d{word-spacing:5.888000pt;}
.ws54{word-spacing:5.952000pt;}
.ws50{word-spacing:6.080000pt;}
.ws37{word-spacing:6.208000pt;}
.wsa9{word-spacing:6.880000pt;}
.ws7e{word-spacing:7.040000pt;}
.ws9e{word-spacing:7.306667pt;}
.ws36{word-spacing:7.488000pt;}
.ws41{word-spacing:7.616000pt;}
.ws2e{word-spacing:7.680000pt;}
.ws16{word-spacing:7.744000pt;}
.ws68{word-spacing:8.192000pt;}
.ws76{word-spacing:8.384000pt;}
.ws29{word-spacing:8.768000pt;}
.ws27{word-spacing:8.960000pt;}
.ws5e{word-spacing:9.024000pt;}
.ws30{word-spacing:9.152000pt;}
.ws9b{word-spacing:9.173333pt;}
.ws9d{word-spacing:9.440000pt;}
.wsab{word-spacing:9.546667pt;}
.ws52{word-spacing:9.728000pt;}
.ws2d{word-spacing:9.792000pt;}
.ws28{word-spacing:10.624000pt;}
.wsd{word-spacing:10.816000pt;}
.ws3a{word-spacing:10.880000pt;}
.ws77{word-spacing:11.008000pt;}
.ws1b{word-spacing:11.136000pt;}
.wsac{word-spacing:11.200000pt;}
.ws3c{word-spacing:11.456000pt;}
.ws49{word-spacing:12.096000pt;}
.ws89{word-spacing:12.160000pt;}
.ws9f{word-spacing:12.426667pt;}
.ws6a{word-spacing:12.800000pt;}
.ws97{word-spacing:13.066667pt;}
.ws1f{word-spacing:13.248000pt;}
.ws40{word-spacing:13.376000pt;}
.ws44{word-spacing:13.504000pt;}
.ws55{word-spacing:13.696000pt;}
.ws7{word-spacing:14.464000pt;}
.wsa0{word-spacing:15.040000pt;}
.ws8f{word-spacing:15.733333pt;}
.ws59{word-spacing:15.808000pt;}
.ws85{word-spacing:15.872000pt;}
.ws34{word-spacing:16.064000pt;}
.ws72{word-spacing:17.152000pt;}
.ws98{word-spacing:18.080000pt;}
.ws73{word-spacing:20.800000pt;}
.ws67{word-spacing:21.056000pt;}
.ws6c{word-spacing:21.440000pt;}
.ws7f{word-spacing:22.400000pt;}
.ws86{word-spacing:22.528000pt;}
.ws42{word-spacing:24.192000pt;}
.ws87{word-spacing:24.320000pt;}
.ws83{word-spacing:24.448000pt;}
.ws61{word-spacing:26.944000pt;}
.ws8a{word-spacing:27.200000pt;}
.ws3b{word-spacing:27.392000pt;}
.ws88{word-spacing:27.413333pt;}
.ws4e{word-spacing:30.912000pt;}
.ws1{word-spacing:89.300800pt;}
.ws65{word-spacing:295.386133pt;}
.ws5b{word-spacing:295.386667pt;}
.ws5c{word-spacing:354.479467pt;}
._3{margin-left:-8.800000pt;}
._6{margin-left:-7.884800pt;}
._2c{margin-left:-6.726400pt;}
._10{margin-left:-5.548800pt;}
._2{margin-left:-4.000000pt;}
._4{margin-left:-2.560000pt;}
._0{margin-left:-1.200000pt;}
._1{width:1.520000pt;}
._1a{width:2.566400pt;}
._e{width:3.475200pt;}
._c{width:4.480000pt;}
._2a{width:5.747200pt;}
._22{width:6.649600pt;}
._8{width:8.313600pt;}
._7{width:9.203200pt;}
._d{width:10.624000pt;}
._9{width:12.070400pt;}
._2d{width:13.299200pt;}
._2f{width:18.044267pt;}
._b{width:19.174400pt;}
._f{width:20.800000pt;}
._2b{width:22.457600pt;}
._11{width:25.088000pt;}
._a{width:26.886400pt;}
._29{width:33.427200pt;}
._2e{width:36.906667pt;}
._30{width:59.029333pt;}
._31{width:78.575467pt;}
._5{width:108.717333pt;}
._12{width:228.960000pt;}
._21{width:232.701333pt;}
._17{width:239.954133pt;}
._24{width:255.473067pt;}
._32{width:271.002133pt;}
._1e{width:293.098133pt;}
._28{width:296.254400pt;}
._23{width:297.609067pt;}
._1b{width:302.141333pt;}
._16{width:304.535467pt;}
._13{width:310.160000pt;}
._26{width:314.565867pt;}
._27{width:329.345067pt;}
._1f{width:331.256000pt;}
._1d{width:337.602133pt;}
._14{width:363.042133pt;}
._15{width:369.253333pt;}
._19{width:384.020800pt;}
._20{width:392.749333pt;}
._18{width:398.800000pt;}
._1c{width:425.388800pt;}
._25{width:538.441067pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:80.000000pt;}
.fs6{font-size:90.666667pt;}
.fs2{font-size:112.000000pt;}
.fs7{font-size:212.506667pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:33.984267pt;}
.y3a{bottom:34.551200pt;}
.y38{bottom:41.752400pt;}
.y37{bottom:54.552400pt;}
.y36{bottom:67.352400pt;}
.y5a{bottom:76.231067pt;}
.yd3{bottom:77.018533pt;}
.y7d{bottom:82.908267pt;}
.y133{bottom:83.728133pt;}
.y10f{bottom:86.015733pt;}
.y165{bottom:91.758667pt;}
.ya6{bottom:96.682400pt;}
.yf1{bottom:99.790133pt;}
.y132{bottom:101.728133pt;}
.y59{bottom:102.897733pt;}
.yd2{bottom:103.685200pt;}
.y35{bottom:105.218933pt;}
.yc1{bottom:106.750667pt;}
.y32{bottom:107.218933pt;}
.y164{bottom:108.425333pt;}
.y7c{bottom:109.574933pt;}
.y10e{bottom:114.015733pt;}
.y131{bottom:119.728133pt;}
.y34{bottom:121.218933pt;}
.y31{bottom:123.218933pt;}
.ya5{bottom:123.349067pt;}
.yf0{bottom:127.123467pt;}
.y58{bottom:129.564400pt;}
.y163{bottom:132.650933pt;}
.yc0{bottom:133.417333pt;}
.y7b{bottom:136.241600pt;}
.y33{bottom:137.218933pt;}
.y30{bottom:139.218933pt;}
.y10d{bottom:142.015733pt;}
.y130{bottom:145.287200pt;}
.y162{bottom:149.317600pt;}
.ya4{bottom:150.015733pt;}
.yef{bottom:154.456800pt;}
.y7a{bottom:162.908267pt;}
.y12f{bottom:163.287200pt;}
.y57{bottom:163.790133pt;}
.y161{bottom:173.543333pt;}
.ya3{bottom:176.682400pt;}
.y2f{bottom:177.085467pt;}
.y10c{bottom:177.574933pt;}
.y12e{bottom:181.287200pt;}
.yee{bottom:189.349067pt;}
.y79{bottom:189.574933pt;}
.y160{bottom:190.210000pt;}
.y56{bottom:190.456800pt;}
.ya2{bottom:203.349067pt;}
.ybf{bottom:204.167867pt;}
.y10b{bottom:205.574933pt;}
.y12d{bottom:206.846267pt;}
.y15f{bottom:214.435733pt;}
.y78{bottom:216.241600pt;}
.yed{bottom:216.682400pt;}
.y55{bottom:217.123467pt;}
.y2e{bottom:218.952133pt;}
.y8d{bottom:223.800667pt;}
.y12c{bottom:224.846267pt;}
.ybe{bottom:229.099067pt;}
.y15e{bottom:231.102400pt;}
.y10a{bottom:233.574933pt;}
.y2d{bottom:234.952133pt;}
.ya1{bottom:237.574933pt;}
.y77{bottom:242.908267pt;}
.y54{bottom:243.790133pt;}
.yec{bottom:244.015733pt;}
.y15d{bottom:247.769067pt;}
.y12b{bottom:250.405333pt;}
.y8c{bottom:250.467333pt;}
.y2c{bottom:250.952133pt;}
.ybd{bottom:254.030400pt;}
.y109{bottom:261.574933pt;}
.ya0{bottom:264.241600pt;}
.y2b{bottom:266.952133pt;}
.y12a{bottom:268.405333pt;}
.y76{bottom:269.574933pt;}
.y53{bottom:270.456800pt;}
.y15c{bottom:271.994800pt;}
.y8b{bottom:277.134000pt;}
.yeb{bottom:278.908267pt;}
.y2a{bottom:282.952133pt;}
.ybc{bottom:284.260533pt;}
.y15b{bottom:288.661467pt;}
.y9f{bottom:290.908267pt;}
.y129{bottom:293.964400pt;}
.y52{bottom:297.123467pt;}
.y108{bottom:297.134000pt;}
.y29{bottom:298.952133pt;}
.y75{bottom:303.800667pt;}
.yea{bottom:306.241600pt;}
.y128{bottom:311.964400pt;}
.y15a{bottom:312.887200pt;}
.y28{bottom:314.952133pt;}
.y9e{bottom:317.574933pt;}
.ybb{bottom:320.084000pt;}
.y159{bottom:329.553867pt;}
.y127{bottom:329.964400pt;}
.y74{bottom:330.467333pt;}
.y51{bottom:331.349067pt;}
.ye9{bottom:333.574933pt;}
.y27{bottom:338.511200pt;}
.y158{bottom:346.220533pt;}
.y9d{bottom:351.800667pt;}
.yba{bottom:354.309867pt;}
.y26{bottom:354.511200pt;}
.y126{bottom:355.523467pt;}
.y73{bottom:357.134000pt;}
.ye8{bottom:360.908267pt;}
.y8a{bottom:364.692933pt;}
.y107{bottom:368.252000pt;}
.y157{bottom:370.446267pt;}
.y25{bottom:370.511200pt;}
.y125{bottom:373.523467pt;}
.yb9{bottom:380.976400pt;}
.y24{bottom:386.511200pt;}
.y156{bottom:387.112933pt;}
.ye7{bottom:388.241600pt;}
.y72{bottom:391.359600pt;}
.y124{bottom:391.523467pt;}
.y106{bottom:396.252000pt;}
.y23{bottom:402.511200pt;}
.y155{bottom:403.779600pt;}
.y50{bottom:405.133867pt;}
.yb8{bottom:415.202133pt;}
.y123{bottom:417.082533pt;}
.y71{bottom:418.026267pt;}
.y22{bottom:418.511200pt;}
.ye6{bottom:423.133867pt;}
.y105{bottom:424.252000pt;}
.y9c{bottom:425.585333pt;}
.y154{bottom:428.005333pt;}
.y4f{bottom:431.800533pt;}
.y21{bottom:434.511200pt;}
.y122{bottom:435.082533pt;}
.yb7{bottom:441.868800pt;}
.y153{bottom:444.672000pt;}
.y70{bottom:444.692933pt;}
.ye5{bottom:450.467200pt;}
.y20{bottom:450.511200pt;}
.y9b{bottom:452.252000pt;}
.y121{bottom:453.082533pt;}
.y4e{bottom:458.467200pt;}
.y152{bottom:461.338667pt;}
.yb6{bottom:468.535467pt;}
.y6f{bottom:471.359600pt;}
.yd1{bottom:472.609067pt;}
.y1f{bottom:474.070267pt;}
.ye4{bottom:477.800533pt;}
.y120{bottom:478.641467pt;}
.y9a{bottom:478.918667pt;}
.y14{bottom:483.393067pt;}
.y4d{bottom:485.133867pt;}
.y151{bottom:485.564400pt;}
.y104{bottom:487.811067pt;}
.y1e{bottom:490.070267pt;}
.yb5{bottom:495.202133pt;}
.y11f{bottom:496.641467pt;}
.y6e{bottom:498.026267pt;}
.y13{bottom:499.393067pt;}
.y150{bottom:502.231067pt;}
.ye3{bottom:505.133867pt;}
.y89{bottom:505.585333pt;}
.y1d{bottom:506.070267pt;}
.y99{bottom:513.144400pt;}
.y103{bottom:515.811067pt;}
.y14f{bottom:518.897733pt;}
.y4c{bottom:519.359600pt;}
.yb4{bottom:521.868800pt;}
.y1c{bottom:522.070133pt;}
.y11e{bottom:522.200667pt;}
.y12{bottom:522.952133pt;}
.y6d{bottom:524.692933pt;}
.y88{bottom:532.252000pt;}
.y1b{bottom:538.070133pt;}
.y11{bottom:538.952133pt;}
.y98{bottom:539.811067pt;}
.ye2{bottom:540.026267pt;}
.yd0{bottom:541.060400pt;}
.y14e{bottom:543.123467pt;}
.y102{bottom:543.811067pt;}
.y4b{bottom:546.026267pt;}
.yb3{bottom:548.535467pt;}
.y1a{bottom:554.070133pt;}
.y6c{bottom:558.918667pt;}
.y14d{bottom:559.790133pt;}
.y10{bottom:562.511200pt;}
.y97{bottom:566.477733pt;}
.ye1{bottom:567.359600pt;}
.y101{bottom:571.811067pt;}
.y4a{bottom:572.692933pt;}
.y14c{bottom:576.456800pt;}
.y19{bottom:577.629333pt;}
.yf{bottom:578.511200pt;}
.y6b{bottom:585.585333pt;}
.y96{bottom:593.144400pt;}
.y18{bottom:593.629333pt;}
.ye0{bottom:594.692933pt;}
.y178{bottom:595.626267pt;}
.y11d{bottom:595.985333pt;}
.y49{bottom:599.359600pt;}
.y14b{bottom:600.682533pt;}
.ye{bottom:602.070133pt;}
.y100{bottom:607.370133pt;}
.y17{bottom:609.629333pt;}
.ycf{bottom:610.724267pt;}
.y6a{bottom:612.252000pt;}
.y14a{bottom:617.349200pt;}
.yd{bottom:618.070133pt;}
.y177{bottom:618.292933pt;}
.yb2{bottom:619.390933pt;}
.y95{bottom:619.811067pt;}
.ydf{bottom:622.026267pt;}
.y11c{bottom:625.718667pt;}
.y48{bottom:626.026267pt;}
.y16{bottom:633.188267pt;}
.yce{bottom:633.482400pt;}
.y149{bottom:634.015867pt;}
.yff{bottom:635.370133pt;}
.y176{bottom:638.959600pt;}
.yc{bottom:641.629333pt;}
.yb1{bottom:644.532267pt;}
.y69{bottom:646.477733pt;}
.y15{bottom:649.188267pt;}
.yde{bottom:649.359600pt;}
.y47{bottom:652.692933pt;}
.y11b{bottom:655.452000pt;}
.ycd{bottom:656.240400pt;}
.y148{bottom:658.241600pt;}
.yfe{bottom:663.370133pt;}
.yb{bottom:665.188267pt;}
.yb0{bottom:669.673600pt;}
.y68{bottom:673.144400pt;}
.y147{bottom:674.908267pt;}
.ydd{bottom:676.692933pt;}
.y46{bottom:679.359600pt;}
.ya{bottom:681.188267pt;}
.y175{bottom:682.292933pt;}
.ycc{bottom:684.187067pt;}
.yfd{bottom:691.370133pt;}
.y146{bottom:691.574933pt;}
.y11a{bottom:692.744400pt;}
.y174{bottom:698.292933pt;}
.y67{bottom:699.811067pt;}
.yaf{bottom:700.433867pt;}
.ydc{bottom:704.026400pt;}
.y45{bottom:713.585333pt;}
.y173{bottom:714.292933pt;}
.y145{bottom:715.800667pt;}
.ycb{bottom:718.813733pt;}
.yfc{bottom:719.370133pt;}
.y9{bottom:721.054800pt;}
.y119{bottom:722.477733pt;}
.y66{bottom:726.477733pt;}
.y172{bottom:730.292933pt;}
.ydb{bottom:731.359600pt;}
.y144{bottom:732.467333pt;}
.yae{bottom:736.682400pt;}
.y44{bottom:740.252000pt;}
.y171{bottom:746.292933pt;}
.yfb{bottom:747.370133pt;}
.y143{bottom:749.134000pt;}
.y118{bottom:752.211067pt;}
.yca{bottom:753.039333pt;}
.y65{bottom:753.144400pt;}
.y8{bottom:762.921333pt;}
.yda{bottom:766.252000pt;}
.y43{bottom:766.918667pt;}
.yad{bottom:770.908267pt;}
.y142{bottom:773.359600pt;}
.yfa{bottom:775.370133pt;}
.yc9{bottom:779.706000pt;}
.y87{bottom:779.811067pt;}
.y117{bottom:781.944400pt;}
.y64{bottom:787.370000pt;}
.y94{bottom:787.370133pt;}
.y170{bottom:787.626267pt;}
.y141{bottom:790.026267pt;}
.y42{bottom:793.585333pt;}
.y7{bottom:796.521333pt;}
.yac{bottom:797.574933pt;}
.yf9{bottom:803.370133pt;}
.y16f{bottom:803.626267pt;}
.yc8{bottom:806.106133pt;}
.y86{bottom:806.477733pt;}
.y140{bottom:806.692933pt;}
.y116{bottom:811.677733pt;}
.y63{bottom:814.036667pt;}
.y93{bottom:814.036800pt;}
.y16e{bottom:819.626267pt;}
.y41{bottom:820.252000pt;}
.yd9{bottom:828.477733pt;}
.y6{bottom:830.121333pt;}
.y13f{bottom:830.918667pt;}
.yf8{bottom:831.370133pt;}
.yab{bottom:831.800667pt;}
.yc7{bottom:832.506133pt;}
.y85{bottom:833.144400pt;}
.y16d{bottom:835.626267pt;}
.y62{bottom:840.703333pt;}
.y92{bottom:840.703467pt;}
.y115{bottom:841.411067pt;}
.y40{bottom:846.918667pt;}
.y13e{bottom:847.585333pt;}
.y16c{bottom:851.626267pt;}
.yc6{bottom:858.906133pt;}
.yf7{bottom:859.370133pt;}
.y84{bottom:859.811067pt;}
.y5{bottom:863.721333pt;}
.y13d{bottom:864.252000pt;}
.y61{bottom:867.370000pt;}
.y91{bottom:867.370133pt;}
.y16b{bottom:867.626267pt;}
.y114{bottom:871.144400pt;}
.y13c{bottom:880.918667pt;}
.y3f{bottom:881.144400pt;}
.yf6{bottom:887.370133pt;}
.y60{bottom:894.036667pt;}
.y83{bottom:894.036800pt;}
.y16a{bottom:895.852000pt;}
.yd8{bottom:898.262533pt;}
.y13b{bottom:905.144400pt;}
.yaa{bottom:905.585333pt;}
.y3e{bottom:907.811067pt;}
.y113{bottom:908.436800pt;}
.y4{bottom:914.587867pt;}
.yf5{bottom:915.370133pt;}
.y5f{bottom:920.703333pt;}
.y82{bottom:920.703467pt;}
.y13a{bottom:921.811067pt;}
.yd7{bottom:925.595867pt;}
.yc5{bottom:927.667333pt;}
.y90{bottom:928.262533pt;}
.ya9{bottom:932.252000pt;}
.y3d{bottom:934.477733pt;}
.y112{bottom:938.170133pt;}
.y139{bottom:946.036800pt;}
.y81{bottom:947.370133pt;}
.yc4{bottom:949.687067pt;}
.yf4{bottom:950.929200pt;}
.yd6{bottom:952.929200pt;}
.y5e{bottom:954.929067pt;}
.y8f{bottom:954.929200pt;}
.y169{bottom:958.970133pt;}
.y138{bottom:962.703467pt;}
.ya8{bottom:966.477733pt;}
.y111{bottom:967.903467pt;}
.yc3{bottom:971.706667pt;}
.y80{bottom:974.036800pt;}
.y168{bottom:976.570133pt;}
.yf3{bottom:978.929200pt;}
.y137{bottom:979.370133pt;}
.yd5{bottom:980.262533pt;}
.y5d{bottom:981.595733pt;}
.y8e{bottom:981.595867pt;}
.y167{bottom:994.170133pt;}
.y3c{bottom:995.370133pt;}
.y136{bottom:996.036800pt;}
.yc2{bottom:999.793333pt;}
.ya7{bottom:1000.703467pt;}
.y110{bottom:1005.195867pt;}
.yf2{bottom:1006.929200pt;}
.yd4{bottom:1007.595867pt;}
.y5c{bottom:1008.262400pt;}
.y7f{bottom:1008.262533pt;}
.y3{bottom:1019.057733pt;}
.y166{bottom:1019.329200pt;}
.y135{bottom:1020.262533pt;}
.y5b{bottom:1034.929067pt;}
.y7e{bottom:1034.929200pt;}
.y134{bottom:1036.929200pt;}
.y2{bottom:1044.391067pt;}
.y1{bottom:1069.724400pt;}
.y39{bottom:1080.535467pt;}
.hc{height:32.042667pt;}
.ha{height:32.083333pt;}
.hb{height:33.291667pt;}
.h7{height:40.104167pt;}
.h8{height:41.614583pt;}
.h9{height:48.000000pt;}
.h6{height:48.064000pt;}
.hf{height:48.125000pt;}
.h10{height:49.937500pt;}
.hd{height:50.793425pt;}
.h4{height:56.145833pt;}
.h3{height:60.000000pt;}
.h2{height:60.080000pt;}
.h5{height:84.000000pt;}
.he{height:159.795052pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:46.892533pt;}
.x12{left:49.460267pt;}
.xa{left:50.892533pt;}
.x5{left:61.552533pt;}
.x8{left:63.425067pt;}
.x9{left:65.638667pt;}
.x6{left:74.369067pt;}
.xe{left:75.899067pt;}
.xd{left:77.611333pt;}
.xc{left:79.629467pt;}
.x19{left:80.923867pt;}
.x7{left:85.534400pt;}
.xf{left:91.432933pt;}
.x16{left:94.488133pt;}
.x15{left:100.011200pt;}
.x1b{left:110.100667pt;}
.x1a{left:112.359733pt;}
.xb{left:116.139867pt;}
.x17{left:118.488133pt;}
.x14{left:161.531067pt;}
.x1c{left:163.104267pt;}
.x10{left:194.309733pt;}
.x4{left:201.868800pt;}
.x1d{left:252.514400pt;}
.x13{left:437.952800pt;}
.x1{left:450.708667pt;}
.x1e{left:575.286133pt;}
.x3{left:598.086267pt;}
.x2{left:626.106933pt;}
.x18{left:662.750800pt;}
}




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