
    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_991d059206088eb87db8df44.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_32df2d3e3ab4e2ff2b1587f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.896973;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_96ce7243e27094f66a1c4274.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6f4ca3e0ec66600a617abeb2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_5f70f104e6562277e3b085b4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_bf44ecc207da2e9592cd87f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;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_9f00f4de3d3b41be1acdcf2d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v3{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls3c{letter-spacing:-2.571840px;}
.ls23{letter-spacing:-2.088000px;}
.ls41{letter-spacing:-2.079360px;}
.ls3d{letter-spacing:-1.915200px;}
.ls37{letter-spacing:-1.728000px;}
.ls44{letter-spacing:-1.584000px;}
.ls26{letter-spacing:-1.451520px;}
.ls14{letter-spacing:-1.440000px;}
.ls39{letter-spacing:-1.422720px;}
.ls2b{letter-spacing:-1.391040px;}
.ls16{letter-spacing:-1.296000px;}
.ls2c{letter-spacing:-1.258560px;}
.ls1c{letter-spacing:-0.967680px;}
.ls1f{letter-spacing:-0.936000px;}
.ls42{letter-spacing:-0.930240px;}
.ls25{letter-spacing:-0.907200px;}
.ls8{letter-spacing:-0.846720px;}
.ls3a{letter-spacing:-0.820800px;}
.ls22{letter-spacing:-0.792000px;}
.ls2a{letter-spacing:-0.725760px;}
.lsc{letter-spacing:-0.720000px;}
.ls40{letter-spacing:-0.711360px;}
.lsb{letter-spacing:-0.648000px;}
.ls3f{letter-spacing:-0.601920px;}
.ls9{letter-spacing:-0.504000px;}
.ls7{letter-spacing:-0.483840px;}
.lsa{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.144000px;}
.ls38{letter-spacing:0.218880px;}
.ls15{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.483840px;}
.ls29{letter-spacing:0.492480px;}
.ls17{letter-spacing:0.504000px;}
.ls24{letter-spacing:0.544320px;}
.lsd{letter-spacing:0.648000px;}
.ls3b{letter-spacing:0.656640px;}
.ls30{letter-spacing:0.705888px;}
.ls28{letter-spacing:0.711360px;}
.ls36{letter-spacing:0.712800px;}
.ls0{letter-spacing:0.720000px;}
.ls19{letter-spacing:0.725760px;}
.ls3e{letter-spacing:0.744192px;}
.ls32{letter-spacing:2.134080px;}
.ls1{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.177280px;}
.ls2{letter-spacing:3.600000px;}
.ls2d{letter-spacing:3.607200px;}
.ls31{letter-spacing:3.611520px;}
.ls21{letter-spacing:3.628800px;}
.ls35{letter-spacing:5.034240px;}
.lsf{letter-spacing:5.040000px;}
.ls27{letter-spacing:5.273856px;}
.ls34{letter-spacing:6.456960px;}
.ls4{letter-spacing:6.480000px;}
.ls10{letter-spacing:7.920000px;}
.ls33{letter-spacing:7.934400px;}
.ls2e{letter-spacing:9.360000px;}
.ls12{letter-spacing:10.800000px;}
.ls20{letter-spacing:12.240000px;}
.ls1d{letter-spacing:13.680000px;}
.ls18{letter-spacing:15.120000px;}
.ls1e{letter-spacing:18.000000px;}
.ls11{letter-spacing:19.432800px;}
.ls2f{letter-spacing:19.440000px;}
.ls13{letter-spacing:22.320000px;}
.lse{letter-spacing:33.264000px;}
.ls43{letter-spacing:846.000000px;}
.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;}
}
.ws6{word-spacing:-18.648000px;}
.ws47{word-spacing:-18.504000px;}
.ws23{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws60{word-spacing:-17.856000px;}
.ws2{word-spacing:-17.712000px;}
.ws1{word-spacing:-17.496000px;}
.ws4{word-spacing:-17.352000px;}
.ws24{word-spacing:-16.704000px;}
.ws39{word-spacing:-16.560000px;}
.ws92{word-spacing:-16.416000px;}
.ws0{word-spacing:-16.329600px;}
.ws6e{word-spacing:-15.912000px;}
.ws61{word-spacing:-15.664320px;}
.ws63{word-spacing:-15.603840px;}
.ws4e{word-spacing:-15.120000px;}
.ws3a{word-spacing:-14.636160px;}
.ws3b{word-spacing:-14.152320px;}
.ws85{word-spacing:-13.898880px;}
.ws62{word-spacing:-13.728960px;}
.ws86{word-spacing:-13.680000px;}
.ws70{word-spacing:-12.859200px;}
.ws89{word-spacing:-12.749760px;}
.ws6f{word-spacing:-12.592800px;}
.ws88{word-spacing:-12.257280px;}
.ws87{word-spacing:-11.600640px;}
.ws91{word-spacing:-5.328000px;}
.ws99{word-spacing:-5.040000px;}
.ws51{word-spacing:-3.744000px;}
.ws1d{word-spacing:-3.600000px;}
.wsd{word-spacing:-3.312000px;}
.ws7a{word-spacing:-2.790720px;}
.ws5a{word-spacing:-2.721600px;}
.ws45{word-spacing:-2.304000px;}
.ws12{word-spacing:-2.160000px;}
.ws79{word-spacing:-2.134080px;}
.ws1f{word-spacing:-1.872000px;}
.ws8d{word-spacing:-1.368000px;}
.ws56{word-spacing:-1.270080px;}
.ws69{word-spacing:-1.209600px;}
.ws8c{word-spacing:-0.930240px;}
.ws44{word-spacing:-0.864000px;}
.ws37{word-spacing:-0.725760px;}
.ws1b{word-spacing:-0.720000px;}
.ws78{word-spacing:-0.711360px;}
.ws8f{word-spacing:-0.648000px;}
.ws93{word-spacing:-0.504000px;}
.ws7e{word-spacing:-0.492480px;}
.ws2b{word-spacing:-0.432000px;}
.ws2a{word-spacing:-0.144000px;}
.ws7{word-spacing:0.000000px;}
.ws46{word-spacing:0.144000px;}
.ws68{word-spacing:0.181440px;}
.ws8{word-spacing:0.241920px;}
.wse{word-spacing:0.288000px;}
.ws40{word-spacing:0.432000px;}
.ws83{word-spacing:0.437760px;}
.ws74{word-spacing:0.492480px;}
.ws6c{word-spacing:0.547200px;}
.ws17{word-spacing:0.576000px;}
.ws8b{word-spacing:0.601920px;}
.ws6b{word-spacing:0.648000px;}
.wsb{word-spacing:0.699840px;}
.ws6d{word-spacing:0.711360px;}
.wsc{word-spacing:0.720000px;}
.ws38{word-spacing:0.725760px;}
.ws50{word-spacing:0.792000px;}
.ws82{word-spacing:0.820800px;}
.wsa{word-spacing:0.846720px;}
.ws90{word-spacing:0.864000px;}
.ws5d{word-spacing:0.907200px;}
.ws48{word-spacing:0.936000px;}
.ws5b{word-spacing:0.967680px;}
.ws14{word-spacing:1.008000px;}
.ws9{word-spacing:1.209600px;}
.ws4b{word-spacing:1.296000px;}
.ws15{word-spacing:1.368000px;}
.ws26{word-spacing:1.440000px;}
.ws5f{word-spacing:1.451520px;}
.ws43{word-spacing:1.693440px;}
.ws72{word-spacing:1.728000px;}
.ws84{word-spacing:1.915200px;}
.ws80{word-spacing:1.969920px;}
.ws4d{word-spacing:2.016000px;}
.ws55{word-spacing:2.088000px;}
.ws75{word-spacing:2.134080px;}
.ws13{word-spacing:2.160000px;}
.ws42{word-spacing:2.177280px;}
.ws77{word-spacing:2.188800px;}
.ws29{word-spacing:2.448000px;}
.ws5e{word-spacing:2.661120px;}
.ws6a{word-spacing:2.808000px;}
.ws58{word-spacing:3.084480px;}
.ws2f{word-spacing:3.456000px;}
.ws18{word-spacing:3.600000px;}
.ws76{word-spacing:3.611520px;}
.ws41{word-spacing:3.628800px;}
.ws19{word-spacing:3.888000px;}
.ws8e{word-spacing:4.248000px;}
.ws5c{word-spacing:4.475520px;}
.ws32{word-spacing:4.536000px;}
.ws2c{word-spacing:4.896000px;}
.ws57{word-spacing:5.019840px;}
.ws81{word-spacing:5.034240px;}
.ws1c{word-spacing:5.040000px;}
.ws20{word-spacing:5.328000px;}
.ws3e{word-spacing:5.688000px;}
.ws64{word-spacing:5.927040px;}
.ws7d{word-spacing:6.238080px;}
.ws49{word-spacing:6.336000px;}
.ws7b{word-spacing:6.456960px;}
.ws22{word-spacing:6.480000px;}
.ws4f{word-spacing:6.768000px;}
.ws8a{word-spacing:7.416000px;}
.ws7f{word-spacing:7.715520px;}
.ws10{word-spacing:7.776000px;}
.wsf{word-spacing:7.920000px;}
.ws59{word-spacing:7.922880px;}
.ws3f{word-spacing:8.208000px;}
.ws28{word-spacing:9.216000px;}
.ws7c{word-spacing:9.357120px;}
.ws27{word-spacing:9.360000px;}
.ws73{word-spacing:9.648000px;}
.ws71{word-spacing:10.008000px;}
.ws4a{word-spacing:10.656000px;}
.ws30{word-spacing:10.800000px;}
.ws21{word-spacing:11.088000px;}
.ws25{word-spacing:12.096000px;}
.ws67{word-spacing:12.216960px;}
.ws53{word-spacing:12.240000px;}
.ws16{word-spacing:12.528000px;}
.ws66{word-spacing:13.668480px;}
.ws3c{word-spacing:13.680000px;}
.ws1a{word-spacing:13.968000px;}
.ws3d{word-spacing:15.120000px;}
.ws1e{word-spacing:15.408000px;}
.ws94{word-spacing:16.560000px;}
.ws95{word-spacing:16.848000px;}
.ws65{word-spacing:17.856000px;}
.ws4c{word-spacing:18.000000px;}
.ws2e{word-spacing:19.296000px;}
.ws11{word-spacing:19.440000px;}
.ws2d{word-spacing:19.728000px;}
.ws31{word-spacing:20.880000px;}
.ws33{word-spacing:22.176000px;}
.ws35{word-spacing:22.320000px;}
.ws34{word-spacing:22.608000px;}
.ws52{word-spacing:23.760000px;}
.ws54{word-spacing:25.200000px;}
.ws36{word-spacing:26.640000px;}
.ws97{word-spacing:262.800000px;}
.ws96{word-spacing:264.096000px;}
.ws98{word-spacing:339.120000px;}
._12{margin-left:-6.000480px;}
._6{margin-left:-4.722912px;}
._14{margin-left:-3.633408px;}
._1{margin-left:-2.618784px;}
._0{margin-left:-1.409184px;}
._2{width:1.100736px;}
._4{width:2.376288px;}
._7{width:3.826656px;}
._5{width:5.040000px;}
._e{width:6.120000px;}
._d{width:7.203168px;}
._b{width:8.300160px;}
._10{width:9.648000px;}
._8{width:10.727136px;}
._a{width:11.785824px;}
._11{width:15.120000px;}
._9{width:21.406752px;}
._f{width:25.416000px;}
._3{width:254.663136px;}
._13{width:263.992896px;}
._c{width:846.000000px;}
.fc2{color:rgb(255,102,0);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(246,108,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs3{font-size:47.520000px;}
.fs6{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:24.480000px;}
.y11b{bottom:66.598560px;}
.yc8{bottom:66.942720px;}
.y51{bottom:66.957840px;}
.yf3{bottom:71.280000px;}
.y7a{bottom:72.360000px;}
.yaa{bottom:75.240000px;}
.yf2{bottom:83.520000px;}
.yc7{bottom:84.224880px;}
.y79{bottom:84.233520px;}
.y11a{bottom:87.120000px;}
.y50{bottom:89.640000px;}
.ya9{bottom:95.760000px;}
.y119{bottom:97.878240px;}
.y131{bottom:97.891200px;}
.y27{bottom:97.920000px;}
.yc6{bottom:101.507040px;}
.y78{bottom:101.515680px;}
.y4f{bottom:101.517840px;}
.y118{bottom:113.364000px;}
.y130{bottom:113.376960px;}
.y161{bottom:113.400000px;}
.y26{bottom:118.440000px;}
.yc5{bottom:118.789200px;}
.y77{bottom:118.797840px;}
.y149{bottom:123.480000px;}
.y4e{bottom:124.200000px;}
.y117{bottom:128.849760px;}
.y12f{bottom:128.862720px;}
.y160{bottom:134.640000px;}
.yc4{bottom:136.071360px;}
.ya8{bottom:136.800000px;}
.y4d{bottom:137.160000px;}
.y25{bottom:139.320000px;}
.y76{bottom:141.480000px;}
.y116{bottom:144.335520px;}
.y12e{bottom:144.348480px;}
.yc3{bottom:153.353520px;}
.y75{bottom:154.080000px;}
.y15f{bottom:155.160000px;}
.y115{bottom:159.821280px;}
.y12d{bottom:159.834240px;}
.y24{bottom:159.840000px;}
.y148{bottom:162.000000px;}
.yc2{bottom:170.635680px;}
.y114{bottom:175.307040px;}
.y12c{bottom:180.000000px;}
.y23{bottom:180.720000px;}
.y147{bottom:183.240000px;}
.yc1{bottom:187.917840px;}
.y113{bottom:190.792800px;}
.y12b{bottom:192.240000px;}
.y15e{bottom:193.680000px;}
.y22{bottom:201.240000px;}
.y146{bottom:203.760000px;}
.y112{bottom:206.634240px;}
.yc0{bottom:210.600000px;}
.y74{bottom:214.560000px;}
.y9b{bottom:218.880000px;}
.y21{bottom:222.120000px;}
.yf1{bottom:222.480000px;}
.y145{bottom:224.640000px;}
.y111{bottom:226.800000px;}
.ybf{bottom:227.880000px;}
.y17b{bottom:235.080000px;}
.y73{bottom:235.440000px;}
.y12a{bottom:237.240000px;}
.ybe{bottom:240.480000px;}
.y110{bottom:242.280000px;}
.yf0{bottom:243.360000px;}
.y144{bottom:245.160000px;}
.y15d{bottom:253.080000px;}
.y10f{bottom:254.160000px;}
.y17a{bottom:255.960000px;}
.y72{bottom:256.320000px;}
.y9a{bottom:257.400000px;}
.y129{bottom:257.760000px;}
.y20{bottom:260.280000px;}
.y15c{bottom:273.960000px;}
.y71{bottom:276.840000px;}
.ybd{bottom:280.800000px;}
.y4c{bottom:281.160000px;}
.yef{bottom:281.520000px;}
.y143{bottom:283.680000px;}
.y15b{bottom:294.840000px;}
.y99{bottom:296.280000px;}
.y70{bottom:297.720000px;}
.y4b{bottom:302.040000px;}
.yee{bottom:302.760000px;}
.y142{bottom:304.560000px;}
.y10e{bottom:307.080000px;}
.y1f{bottom:308.160000px;}
.y179{bottom:315.000000px;}
.y98{bottom:317.160000px;}
.y6f{bottom:318.240000px;}
.y4a{bottom:322.560000px;}
.yed{bottom:323.280000px;}
.y141{bottom:325.440000px;}
.y10d{bottom:327.960000px;}
.y15a{bottom:333.000000px;}
.y97{bottom:338.040000px;}
.y6e{bottom:339.120000px;}
.ybc{bottom:343.440000px;}
.yec{bottom:344.160000px;}
.y140{bottom:345.960000px;}
.y1e{bottom:346.680000px;}
.y10c{bottom:348.840000px;}
.y178{bottom:353.880000px;}
.y96{bottom:358.560000px;}
.y49{bottom:361.080000px;}
.y13f{bottom:366.840000px;}
.y1d{bottom:367.920000px;}
.y10b{bottom:369.360000px;}
.y159{bottom:371.880000px;}
.y177{bottom:374.760000px;}
.y6d{bottom:377.280000px;}
.y95{bottom:379.440000px;}
.ybb{bottom:381.600000px;}
.yeb{bottom:381.927600px;}
.y48{bottom:381.960000px;}
.y1c{bottom:388.440000px;}
.y176{bottom:395.640000px;}
.y6c{bottom:398.520000px;}
.yea{bottom:399.209760px;}
.y94{bottom:399.960000px;}
.y47{bottom:402.840000px;}
.y13e{bottom:405.000000px;}
.y10a{bottom:407.880000px;}
.y1b{bottom:408.960000px;}
.y158{bottom:410.400000px;}
.ye9{bottom:416.491920px;}
.y128{bottom:417.600000px;}
.y46{bottom:423.360000px;}
.y13d{bottom:426.240000px;}
.y109{bottom:428.760000px;}
.y1a{bottom:429.840000px;}
.y157{bottom:431.640000px;}
.y175{bottom:433.800000px;}
.y6b{bottom:436.313520px;}
.y93{bottom:438.480000px;}
.y127{bottom:438.840000px;}
.y45{bottom:444.240000px;}
.y13c{bottom:446.760000px;}
.y108{bottom:449.640000px;}
.y19{bottom:450.360000px;}
.ye8{bottom:451.419120px;}
.y156{bottom:452.160000px;}
.y6a{bottom:453.595680px;}
.y174{bottom:455.040000px;}
.y92{bottom:459.360000px;}
.yba{bottom:461.880000px;}
.y44{bottom:464.760000px;}
.y13b{bottom:467.640000px;}
.ye7{bottom:468.701280px;}
.y69{bottom:470.877840px;}
.y18{bottom:471.240000px;}
.y173{bottom:475.560000px;}
.y91{bottom:480.240000px;}
.y43{bottom:485.640000px;}
.ye6{bottom:485.983440px;}
.y107{bottom:487.800000px;}
.y68{bottom:488.160000px;}
.y155{bottom:490.680000px;}
.y17{bottom:491.760000px;}
.y90{bottom:500.760000px;}
.ye5{bottom:503.265600px;}
.y106{bottom:509.040000px;}
.y154{bottom:511.560000px;}
.y172{bottom:514.080000px;}
.yb9{bottom:518.400000px;}
.ye4{bottom:520.547760px;}
.y8f{bottom:521.640000px;}
.y42{bottom:523.800000px;}
.y105{bottom:529.560000px;}
.y16{bottom:530.280000px;}
.y171{bottom:534.960000px;}
.ye3{bottom:537.829920px;}
.y8e{bottom:542.160000px;}
.y41{bottom:545.040000px;}
.y153{bottom:550.080000px;}
.y13a{bottom:550.440000px;}
.ye2{bottom:555.112080px;}
.y170{bottom:555.840000px;}
.yb8{bottom:557.280000px;}
.y126{bottom:559.800000px;}
.y8d{bottom:563.040000px;}
.y40{bottom:565.560000px;}
.y104{bottom:568.080000px;}
.ye1{bottom:572.394240px;}
.y15{bottom:577.800000px;}
.yb7{bottom:578.160000px;}
.y125{bottom:581.040000px;}
.y3f{bottom:586.440000px;}
.y139{bottom:588.600000px;}
.y103{bottom:588.960000px;}
.ye0{bottom:589.676400px;}
.y16f{bottom:594.000000px;}
.yb6{bottom:599.040000px;}
.y8c{bottom:601.200000px;}
.y124{bottom:601.560000px;}
.ya7{bottom:603.000000px;}
.y67{bottom:604.080000px;}
.ydf{bottom:606.958560px;}
.y3e{bottom:606.960000px;}
.y102{bottom:609.840000px;}
.y16e{bottom:615.240000px;}
.y14{bottom:616.680000px;}
.yb5{bottom:619.560000px;}
.y8b{bottom:622.440000px;}
.yde{bottom:624.240720px;}
.y66{bottom:624.960000px;}
.y3d{bottom:627.840000px;}
.y101{bottom:630.360000px;}
.y13{bottom:637.560000px;}
.yb4{bottom:640.440000px;}
.ydd{bottom:641.160000px;}
.y8a{bottom:642.960000px;}
.y65{bottom:645.840000px;}
.y152{bottom:648.000000px;}
.y100{bottom:651.240000px;}
.ya6{bottom:651.600000px;}
.y16d{bottom:653.400000px;}
.y12{bottom:658.440000px;}
.y123{bottom:660.600000px;}
.yb3{bottom:660.960000px;}
.y89{bottom:663.840000px;}
.y3c{bottom:666.000000px;}
.y151{bottom:669.240000px;}
.yff{bottom:671.760000px;}
.ya5{bottom:672.480000px;}
.ydc{bottom:677.160000px;}
.y11{bottom:678.960000px;}
.y122{bottom:681.840000px;}
.y64{bottom:684.000000px;}
.y88{bottom:684.360000px;}
.y3b{bottom:687.240000px;}
.y16c{bottom:692.280000px;}
.y138{bottom:692.640000px;}
.ydb{bottom:698.040000px;}
.yb2{bottom:699.480000px;}
.y10{bottom:699.840000px;}
.y121{bottom:702.360000px;}
.y150{bottom:707.400000px;}
.y3a{bottom:707.760000px;}
.yfe{bottom:710.280000px;}
.ya4{bottom:713.520000px;}
.yda{bottom:718.920000px;}
.yf{bottom:720.360000px;}
.y87{bottom:722.880000px;}
.y39{bottom:728.640000px;}
.y137{bottom:730.800000px;}
.yfd{bottom:731.160000px;}
.yd9{bottom:739.440000px;}
.y63{bottom:740.880000px;}
.ye{bottom:741.240000px;}
.y86{bottom:743.760000px;}
.y38{bottom:749.160000px;}
.yfc{bottom:752.040000px;}
.yd8{bottom:760.320000px;}
.yd{bottom:761.760000px;}
.y14f{bottom:764.280000px;}
.y85{bottom:764.640000px;}
.y37{bottom:770.040000px;}
.yfb{bottom:772.560000px;}
.yd7{bottom:780.840000px;}
.y62{bottom:782.640000px;}
.y84{bottom:785.160000px;}
.y36{bottom:790.560000px;}
.yfa{bottom:793.440000px;}
.yc{bottom:800.280000px;}
.y61{bottom:803.160000px;}
.y83{bottom:806.040000px;}
.y16b{bottom:811.080000px;}
.y35{bottom:811.440000px;}
.ya3{bottom:815.400000px;}
.yd6{bottom:819.360000px;}
.y60{bottom:824.040000px;}
.y14e{bottom:826.560000px;}
.yf9{bottom:831.600000px;}
.y16a{bottom:831.960000px;}
.yd5{bottom:840.240000px;}
.y82{bottom:844.200000px;}
.y5f{bottom:844.560000px;}
.yb{bottom:847.800000px;}
.y34{bottom:849.600000px;}
.yf8{bottom:852.840000px;}
.yd4{bottom:861.120000px;}
.y14d{bottom:865.080000px;}
.y5e{bottom:865.440000px;}
.ya2{bottom:866.520000px;}
.ya{bottom:869.040000px;}
.y169{bottom:870.480000px;}
.y33{bottom:870.840000px;}
.yf7{bottom:873.360000px;}
.y120{bottom:883.080000px;}
.y81{bottom:885.960000px;}
.y32{bottom:891.360000px;}
.y136{bottom:894.240000px;}
.yd3{bottom:899.280000px;}
.y5d{bottom:903.600000px;}
.y11f{bottom:903.960000px;}
.y80{bottom:906.840000px;}
.y9{bottom:907.560000px;}
.yf6{bottom:911.880000px;}
.y31{bottom:912.240000px;}
.ya1{bottom:917.640000px;}
.yd2{bottom:920.520000px;}
.y5c{bottom:924.840000px;}
.yb1{bottom:927.360000px;}
.y8{bottom:928.440000px;}
.y168{bottom:929.880000px;}
.y135{bottom:932.400000px;}
.y30{bottom:932.760000px;}
.yd1{bottom:941.040000px;}
.y7f{bottom:945.000000px;}
.y5b{bottom:945.360000px;}
.yb0{bottom:948.240000px;}
.y7{bottom:949.301280px;}
.y167{bottom:950.760000px;}
.y2f{bottom:953.280000px;}
.yd0{bottom:961.920000px;}
.y5a{bottom:966.240000px;}
.ya0{bottom:968.400000px;}
.yaf{bottom:968.760000px;}
.y166{bottom:971.280000px;}
.y2e{bottom:974.160000px;}
.ycf{bottom:982.440000px;}
.y11e{bottom:983.880000px;}
.y59{bottom:986.760000px;}
.y134{bottom:988.920000px;}
.y14c{bottom:989.280000px;}
.y165{bottom:992.160000px;}
.y2d{bottom:994.680000px;}
.y6{bottom:998.270640px;}
.yce{bottom:1003.320000px;}
.y11d{bottom:1004.760000px;}
.yae{bottom:1006.920000px;}
.y7e{bottom:1007.280000px;}
.y133{bottom:1010.160000px;}
.y2c{bottom:1015.560000px;}
.y9f{bottom:1019.520000px;}
.ycd{bottom:1023.840000px;}
.y58{bottom:1024.920000px;}
.y11c{bottom:1025.280000px;}
.y14b{bottom:1027.800000px;}
.y7d{bottom:1028.160000px;}
.y164{bottom:1030.320000px;}
.yf5{bottom:1033.200000px;}
.y57{bottom:1046.160000px;}
.y132{bottom:1048.320000px;}
.y7c{bottom:1048.680000px;}
.y2b{bottom:1053.720000px;}
.y5{bottom:1056.960000px;}
.ycc{bottom:1061.633520px;}
.y56{bottom:1066.680000px;}
.y163{bottom:1069.200000px;}
.yad{bottom:1069.560000px;}
.y9e{bottom:1070.640000px;}
.ycb{bottom:1078.915680px;}
.y7b{bottom:1087.200000px;}
.y55{bottom:1087.560000px;}
.yf4{bottom:1089.720000px;}
.yac{bottom:1090.080000px;}
.yca{bottom:1096.197840px;}
.y54{bottom:1108.080000px;}
.y2a{bottom:1110.600000px;}
.yab{bottom:1110.960000px;}
.yc9{bottom:1113.480000px;}
.y4{bottom:1115.280000px;}
.y9d{bottom:1121.400000px;}
.y162{bottom:1128.600000px;}
.y53{bottom:1128.960000px;}
.y14a{bottom:1131.480000px;}
.y29{bottom:1149.120000px;}
.y52{bottom:1149.480000px;}
.y9c{bottom:1170.000000px;}
.y28{bottom:1170.360000px;}
.y3{bottom:1172.874240px;}
.y1{bottom:1190.880000px;}
.hf{height:31.587891px;}
.hc{height:34.114922px;}
.h3{height:41.196094px;}
.h4{height:44.031094px;}
.h10{height:48.013594px;}
.h11{height:48.147188px;}
.h7{height:52.966406px;}
.hd{height:53.067656px;}
.he{height:53.215313px;}
.h2{height:63.175781px;}
.h8{height:63.351562px;}
.h9{height:63.949219px;}
.h6{height:68.419688px;}
.ha{height:69.056016px;}
.h5{height:69.065156px;}
.hb{height:69.172031px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1{left:84.960000px;}
.xc{left:127.440000px;}
.x10{left:169.920000px;}
.x2{left:191.160000px;}
.x6{left:268.220880px;}
.x12{left:280.800000px;}
.x5{left:286.202880px;}
.xf{left:300.960000px;}
.x4{left:347.400000px;}
.x11{left:366.840000px;}
.xb{left:410.040000px;}
.xe{left:414.000000px;}
.xd{left:419.400000px;}
.x8{left:444.600000px;}
.x3{left:448.895520px;}
.x9{left:630.720000px;}
.xa{left:665.640000px;}
.x7{left:673.214400px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v3{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls3c{letter-spacing:-2.286080pt;}
.ls23{letter-spacing:-1.856000pt;}
.ls41{letter-spacing:-1.848320pt;}
.ls3d{letter-spacing:-1.702400pt;}
.ls37{letter-spacing:-1.536000pt;}
.ls44{letter-spacing:-1.408000pt;}
.ls26{letter-spacing:-1.290240pt;}
.ls14{letter-spacing:-1.280000pt;}
.ls39{letter-spacing:-1.264640pt;}
.ls2b{letter-spacing:-1.236480pt;}
.ls16{letter-spacing:-1.152000pt;}
.ls2c{letter-spacing:-1.118720pt;}
.ls1c{letter-spacing:-0.860160pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls42{letter-spacing:-0.826880pt;}
.ls25{letter-spacing:-0.806400pt;}
.ls8{letter-spacing:-0.752640pt;}
.ls3a{letter-spacing:-0.729600pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls2a{letter-spacing:-0.645120pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls40{letter-spacing:-0.632320pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls3f{letter-spacing:-0.535040pt;}
.ls9{letter-spacing:-0.448000pt;}
.ls7{letter-spacing:-0.430080pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls38{letter-spacing:0.194560pt;}
.ls15{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.430080pt;}
.ls29{letter-spacing:0.437760pt;}
.ls17{letter-spacing:0.448000pt;}
.ls24{letter-spacing:0.483840pt;}
.lsd{letter-spacing:0.576000pt;}
.ls3b{letter-spacing:0.583680pt;}
.ls30{letter-spacing:0.627456pt;}
.ls28{letter-spacing:0.632320pt;}
.ls36{letter-spacing:0.633600pt;}
.ls0{letter-spacing:0.640000pt;}
.ls19{letter-spacing:0.645120pt;}
.ls3e{letter-spacing:0.661504pt;}
.ls32{letter-spacing:1.896960pt;}
.ls1{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:1.935360pt;}
.ls2{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:3.206400pt;}
.ls31{letter-spacing:3.210240pt;}
.ls21{letter-spacing:3.225600pt;}
.ls35{letter-spacing:4.474880pt;}
.lsf{letter-spacing:4.480000pt;}
.ls27{letter-spacing:4.687872pt;}
.ls34{letter-spacing:5.739520pt;}
.ls4{letter-spacing:5.760000pt;}
.ls10{letter-spacing:7.040000pt;}
.ls33{letter-spacing:7.052800pt;}
.ls2e{letter-spacing:8.320000pt;}
.ls12{letter-spacing:9.600000pt;}
.ls20{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:12.160000pt;}
.ls18{letter-spacing:13.440000pt;}
.ls1e{letter-spacing:16.000000pt;}
.ls11{letter-spacing:17.273600pt;}
.ls2f{letter-spacing:17.280000pt;}
.ls13{letter-spacing:19.840000pt;}
.lse{letter-spacing:29.568000pt;}
.ls43{letter-spacing:752.000000pt;}
.ws6{word-spacing:-16.576000pt;}
.ws47{word-spacing:-16.448000pt;}
.ws23{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws60{word-spacing:-15.872000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1{word-spacing:-15.552000pt;}
.ws4{word-spacing:-15.424000pt;}
.ws24{word-spacing:-14.848000pt;}
.ws39{word-spacing:-14.720000pt;}
.ws92{word-spacing:-14.592000pt;}
.ws0{word-spacing:-14.515200pt;}
.ws6e{word-spacing:-14.144000pt;}
.ws61{word-spacing:-13.923840pt;}
.ws63{word-spacing:-13.870080pt;}
.ws4e{word-spacing:-13.440000pt;}
.ws3a{word-spacing:-13.009920pt;}
.ws3b{word-spacing:-12.579840pt;}
.ws85{word-spacing:-12.354560pt;}
.ws62{word-spacing:-12.203520pt;}
.ws86{word-spacing:-12.160000pt;}
.ws70{word-spacing:-11.430400pt;}
.ws89{word-spacing:-11.333120pt;}
.ws6f{word-spacing:-11.193600pt;}
.ws88{word-spacing:-10.895360pt;}
.ws87{word-spacing:-10.311680pt;}
.ws91{word-spacing:-4.736000pt;}
.ws99{word-spacing:-4.480000pt;}
.ws51{word-spacing:-3.328000pt;}
.ws1d{word-spacing:-3.200000pt;}
.wsd{word-spacing:-2.944000pt;}
.ws7a{word-spacing:-2.480640pt;}
.ws5a{word-spacing:-2.419200pt;}
.ws45{word-spacing:-2.048000pt;}
.ws12{word-spacing:-1.920000pt;}
.ws79{word-spacing:-1.896960pt;}
.ws1f{word-spacing:-1.664000pt;}
.ws8d{word-spacing:-1.216000pt;}
.ws56{word-spacing:-1.128960pt;}
.ws69{word-spacing:-1.075200pt;}
.ws8c{word-spacing:-0.826880pt;}
.ws44{word-spacing:-0.768000pt;}
.ws37{word-spacing:-0.645120pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws78{word-spacing:-0.632320pt;}
.ws8f{word-spacing:-0.576000pt;}
.ws93{word-spacing:-0.448000pt;}
.ws7e{word-spacing:-0.437760pt;}
.ws2b{word-spacing:-0.384000pt;}
.ws2a{word-spacing:-0.128000pt;}
.ws7{word-spacing:0.000000pt;}
.ws46{word-spacing:0.128000pt;}
.ws68{word-spacing:0.161280pt;}
.ws8{word-spacing:0.215040pt;}
.wse{word-spacing:0.256000pt;}
.ws40{word-spacing:0.384000pt;}
.ws83{word-spacing:0.389120pt;}
.ws74{word-spacing:0.437760pt;}
.ws6c{word-spacing:0.486400pt;}
.ws17{word-spacing:0.512000pt;}
.ws8b{word-spacing:0.535040pt;}
.ws6b{word-spacing:0.576000pt;}
.wsb{word-spacing:0.622080pt;}
.ws6d{word-spacing:0.632320pt;}
.wsc{word-spacing:0.640000pt;}
.ws38{word-spacing:0.645120pt;}
.ws50{word-spacing:0.704000pt;}
.ws82{word-spacing:0.729600pt;}
.wsa{word-spacing:0.752640pt;}
.ws90{word-spacing:0.768000pt;}
.ws5d{word-spacing:0.806400pt;}
.ws48{word-spacing:0.832000pt;}
.ws5b{word-spacing:0.860160pt;}
.ws14{word-spacing:0.896000pt;}
.ws9{word-spacing:1.075200pt;}
.ws4b{word-spacing:1.152000pt;}
.ws15{word-spacing:1.216000pt;}
.ws26{word-spacing:1.280000pt;}
.ws5f{word-spacing:1.290240pt;}
.ws43{word-spacing:1.505280pt;}
.ws72{word-spacing:1.536000pt;}
.ws84{word-spacing:1.702400pt;}
.ws80{word-spacing:1.751040pt;}
.ws4d{word-spacing:1.792000pt;}
.ws55{word-spacing:1.856000pt;}
.ws75{word-spacing:1.896960pt;}
.ws13{word-spacing:1.920000pt;}
.ws42{word-spacing:1.935360pt;}
.ws77{word-spacing:1.945600pt;}
.ws29{word-spacing:2.176000pt;}
.ws5e{word-spacing:2.365440pt;}
.ws6a{word-spacing:2.496000pt;}
.ws58{word-spacing:2.741760pt;}
.ws2f{word-spacing:3.072000pt;}
.ws18{word-spacing:3.200000pt;}
.ws76{word-spacing:3.210240pt;}
.ws41{word-spacing:3.225600pt;}
.ws19{word-spacing:3.456000pt;}
.ws8e{word-spacing:3.776000pt;}
.ws5c{word-spacing:3.978240pt;}
.ws32{word-spacing:4.032000pt;}
.ws2c{word-spacing:4.352000pt;}
.ws57{word-spacing:4.462080pt;}
.ws81{word-spacing:4.474880pt;}
.ws1c{word-spacing:4.480000pt;}
.ws20{word-spacing:4.736000pt;}
.ws3e{word-spacing:5.056000pt;}
.ws64{word-spacing:5.268480pt;}
.ws7d{word-spacing:5.544960pt;}
.ws49{word-spacing:5.632000pt;}
.ws7b{word-spacing:5.739520pt;}
.ws22{word-spacing:5.760000pt;}
.ws4f{word-spacing:6.016000pt;}
.ws8a{word-spacing:6.592000pt;}
.ws7f{word-spacing:6.858240pt;}
.ws10{word-spacing:6.912000pt;}
.wsf{word-spacing:7.040000pt;}
.ws59{word-spacing:7.042560pt;}
.ws3f{word-spacing:7.296000pt;}
.ws28{word-spacing:8.192000pt;}
.ws7c{word-spacing:8.317440pt;}
.ws27{word-spacing:8.320000pt;}
.ws73{word-spacing:8.576000pt;}
.ws71{word-spacing:8.896000pt;}
.ws4a{word-spacing:9.472000pt;}
.ws30{word-spacing:9.600000pt;}
.ws21{word-spacing:9.856000pt;}
.ws25{word-spacing:10.752000pt;}
.ws67{word-spacing:10.859520pt;}
.ws53{word-spacing:10.880000pt;}
.ws16{word-spacing:11.136000pt;}
.ws66{word-spacing:12.149760pt;}
.ws3c{word-spacing:12.160000pt;}
.ws1a{word-spacing:12.416000pt;}
.ws3d{word-spacing:13.440000pt;}
.ws1e{word-spacing:13.696000pt;}
.ws94{word-spacing:14.720000pt;}
.ws95{word-spacing:14.976000pt;}
.ws65{word-spacing:15.872000pt;}
.ws4c{word-spacing:16.000000pt;}
.ws2e{word-spacing:17.152000pt;}
.ws11{word-spacing:17.280000pt;}
.ws2d{word-spacing:17.536000pt;}
.ws31{word-spacing:18.560000pt;}
.ws33{word-spacing:19.712000pt;}
.ws35{word-spacing:19.840000pt;}
.ws34{word-spacing:20.096000pt;}
.ws52{word-spacing:21.120000pt;}
.ws54{word-spacing:22.400000pt;}
.ws36{word-spacing:23.680000pt;}
.ws97{word-spacing:233.600000pt;}
.ws96{word-spacing:234.752000pt;}
.ws98{word-spacing:301.440000pt;}
._12{margin-left:-5.333760pt;}
._6{margin-left:-4.198144pt;}
._14{margin-left:-3.229696pt;}
._1{margin-left:-2.327808pt;}
._0{margin-left:-1.252608pt;}
._2{width:0.978432pt;}
._4{width:2.112256pt;}
._7{width:3.401472pt;}
._5{width:4.480000pt;}
._e{width:5.440000pt;}
._d{width:6.402816pt;}
._b{width:7.377920pt;}
._10{width:8.576000pt;}
._8{width:9.535232pt;}
._a{width:10.476288pt;}
._11{width:13.440000pt;}
._9{width:19.028224pt;}
._f{width:22.592000pt;}
._3{width:226.367232pt;}
._13{width:234.660352pt;}
._c{width:752.000000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:42.240000pt;}
.fs6{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.760000pt;}
.y11b{bottom:59.198720pt;}
.yc8{bottom:59.504640pt;}
.y51{bottom:59.518080pt;}
.yf3{bottom:63.360000pt;}
.y7a{bottom:64.320000pt;}
.yaa{bottom:66.880000pt;}
.yf2{bottom:74.240000pt;}
.yc7{bottom:74.866560pt;}
.y79{bottom:74.874240pt;}
.y11a{bottom:77.440000pt;}
.y50{bottom:79.680000pt;}
.ya9{bottom:85.120000pt;}
.y119{bottom:87.002880pt;}
.y131{bottom:87.014400pt;}
.y27{bottom:87.040000pt;}
.yc6{bottom:90.228480pt;}
.y78{bottom:90.236160pt;}
.y4f{bottom:90.238080pt;}
.y118{bottom:100.768000pt;}
.y130{bottom:100.779520pt;}
.y161{bottom:100.800000pt;}
.y26{bottom:105.280000pt;}
.yc5{bottom:105.590400pt;}
.y77{bottom:105.598080pt;}
.y149{bottom:109.760000pt;}
.y4e{bottom:110.400000pt;}
.y117{bottom:114.533120pt;}
.y12f{bottom:114.544640pt;}
.y160{bottom:119.680000pt;}
.yc4{bottom:120.952320pt;}
.ya8{bottom:121.600000pt;}
.y4d{bottom:121.920000pt;}
.y25{bottom:123.840000pt;}
.y76{bottom:125.760000pt;}
.y116{bottom:128.298240pt;}
.y12e{bottom:128.309760pt;}
.yc3{bottom:136.314240pt;}
.y75{bottom:136.960000pt;}
.y15f{bottom:137.920000pt;}
.y115{bottom:142.063360pt;}
.y12d{bottom:142.074880pt;}
.y24{bottom:142.080000pt;}
.y148{bottom:144.000000pt;}
.yc2{bottom:151.676160pt;}
.y114{bottom:155.828480pt;}
.y12c{bottom:160.000000pt;}
.y23{bottom:160.640000pt;}
.y147{bottom:162.880000pt;}
.yc1{bottom:167.038080pt;}
.y113{bottom:169.593600pt;}
.y12b{bottom:170.880000pt;}
.y15e{bottom:172.160000pt;}
.y22{bottom:178.880000pt;}
.y146{bottom:181.120000pt;}
.y112{bottom:183.674880pt;}
.yc0{bottom:187.200000pt;}
.y74{bottom:190.720000pt;}
.y9b{bottom:194.560000pt;}
.y21{bottom:197.440000pt;}
.yf1{bottom:197.760000pt;}
.y145{bottom:199.680000pt;}
.y111{bottom:201.600000pt;}
.ybf{bottom:202.560000pt;}
.y17b{bottom:208.960000pt;}
.y73{bottom:209.280000pt;}
.y12a{bottom:210.880000pt;}
.ybe{bottom:213.760000pt;}
.y110{bottom:215.360000pt;}
.yf0{bottom:216.320000pt;}
.y144{bottom:217.920000pt;}
.y15d{bottom:224.960000pt;}
.y10f{bottom:225.920000pt;}
.y17a{bottom:227.520000pt;}
.y72{bottom:227.840000pt;}
.y9a{bottom:228.800000pt;}
.y129{bottom:229.120000pt;}
.y20{bottom:231.360000pt;}
.y15c{bottom:243.520000pt;}
.y71{bottom:246.080000pt;}
.ybd{bottom:249.600000pt;}
.y4c{bottom:249.920000pt;}
.yef{bottom:250.240000pt;}
.y143{bottom:252.160000pt;}
.y15b{bottom:262.080000pt;}
.y99{bottom:263.360000pt;}
.y70{bottom:264.640000pt;}
.y4b{bottom:268.480000pt;}
.yee{bottom:269.120000pt;}
.y142{bottom:270.720000pt;}
.y10e{bottom:272.960000pt;}
.y1f{bottom:273.920000pt;}
.y179{bottom:280.000000pt;}
.y98{bottom:281.920000pt;}
.y6f{bottom:282.880000pt;}
.y4a{bottom:286.720000pt;}
.yed{bottom:287.360000pt;}
.y141{bottom:289.280000pt;}
.y10d{bottom:291.520000pt;}
.y15a{bottom:296.000000pt;}
.y97{bottom:300.480000pt;}
.y6e{bottom:301.440000pt;}
.ybc{bottom:305.280000pt;}
.yec{bottom:305.920000pt;}
.y140{bottom:307.520000pt;}
.y1e{bottom:308.160000pt;}
.y10c{bottom:310.080000pt;}
.y178{bottom:314.560000pt;}
.y96{bottom:318.720000pt;}
.y49{bottom:320.960000pt;}
.y13f{bottom:326.080000pt;}
.y1d{bottom:327.040000pt;}
.y10b{bottom:328.320000pt;}
.y159{bottom:330.560000pt;}
.y177{bottom:333.120000pt;}
.y6d{bottom:335.360000pt;}
.y95{bottom:337.280000pt;}
.ybb{bottom:339.200000pt;}
.yeb{bottom:339.491200pt;}
.y48{bottom:339.520000pt;}
.y1c{bottom:345.280000pt;}
.y176{bottom:351.680000pt;}
.y6c{bottom:354.240000pt;}
.yea{bottom:354.853120pt;}
.y94{bottom:355.520000pt;}
.y47{bottom:358.080000pt;}
.y13e{bottom:360.000000pt;}
.y10a{bottom:362.560000pt;}
.y1b{bottom:363.520000pt;}
.y158{bottom:364.800000pt;}
.ye9{bottom:370.215040pt;}
.y128{bottom:371.200000pt;}
.y46{bottom:376.320000pt;}
.y13d{bottom:378.880000pt;}
.y109{bottom:381.120000pt;}
.y1a{bottom:382.080000pt;}
.y157{bottom:383.680000pt;}
.y175{bottom:385.600000pt;}
.y6b{bottom:387.834240pt;}
.y93{bottom:389.760000pt;}
.y127{bottom:390.080000pt;}
.y45{bottom:394.880000pt;}
.y13c{bottom:397.120000pt;}
.y108{bottom:399.680000pt;}
.y19{bottom:400.320000pt;}
.ye8{bottom:401.261440pt;}
.y156{bottom:401.920000pt;}
.y6a{bottom:403.196160pt;}
.y174{bottom:404.480000pt;}
.y92{bottom:408.320000pt;}
.yba{bottom:410.560000pt;}
.y44{bottom:413.120000pt;}
.y13b{bottom:415.680000pt;}
.ye7{bottom:416.623360pt;}
.y69{bottom:418.558080pt;}
.y18{bottom:418.880000pt;}
.y173{bottom:422.720000pt;}
.y91{bottom:426.880000pt;}
.y43{bottom:431.680000pt;}
.ye6{bottom:431.985280pt;}
.y107{bottom:433.600000pt;}
.y68{bottom:433.920000pt;}
.y155{bottom:436.160000pt;}
.y17{bottom:437.120000pt;}
.y90{bottom:445.120000pt;}
.ye5{bottom:447.347200pt;}
.y106{bottom:452.480000pt;}
.y154{bottom:454.720000pt;}
.y172{bottom:456.960000pt;}
.yb9{bottom:460.800000pt;}
.ye4{bottom:462.709120pt;}
.y8f{bottom:463.680000pt;}
.y42{bottom:465.600000pt;}
.y105{bottom:470.720000pt;}
.y16{bottom:471.360000pt;}
.y171{bottom:475.520000pt;}
.ye3{bottom:478.071040pt;}
.y8e{bottom:481.920000pt;}
.y41{bottom:484.480000pt;}
.y153{bottom:488.960000pt;}
.y13a{bottom:489.280000pt;}
.ye2{bottom:493.432960pt;}
.y170{bottom:494.080000pt;}
.yb8{bottom:495.360000pt;}
.y126{bottom:497.600000pt;}
.y8d{bottom:500.480000pt;}
.y40{bottom:502.720000pt;}
.y104{bottom:504.960000pt;}
.ye1{bottom:508.794880pt;}
.y15{bottom:513.600000pt;}
.yb7{bottom:513.920000pt;}
.y125{bottom:516.480000pt;}
.y3f{bottom:521.280000pt;}
.y139{bottom:523.200000pt;}
.y103{bottom:523.520000pt;}
.ye0{bottom:524.156800pt;}
.y16f{bottom:528.000000pt;}
.yb6{bottom:532.480000pt;}
.y8c{bottom:534.400000pt;}
.y124{bottom:534.720000pt;}
.ya7{bottom:536.000000pt;}
.y67{bottom:536.960000pt;}
.ydf{bottom:539.518720pt;}
.y3e{bottom:539.520000pt;}
.y102{bottom:542.080000pt;}
.y16e{bottom:546.880000pt;}
.y14{bottom:548.160000pt;}
.yb5{bottom:550.720000pt;}
.y8b{bottom:553.280000pt;}
.yde{bottom:554.880640pt;}
.y66{bottom:555.520000pt;}
.y3d{bottom:558.080000pt;}
.y101{bottom:560.320000pt;}
.y13{bottom:566.720000pt;}
.yb4{bottom:569.280000pt;}
.ydd{bottom:569.920000pt;}
.y8a{bottom:571.520000pt;}
.y65{bottom:574.080000pt;}
.y152{bottom:576.000000pt;}
.y100{bottom:578.880000pt;}
.ya6{bottom:579.200000pt;}
.y16d{bottom:580.800000pt;}
.y12{bottom:585.280000pt;}
.y123{bottom:587.200000pt;}
.yb3{bottom:587.520000pt;}
.y89{bottom:590.080000pt;}
.y3c{bottom:592.000000pt;}
.y151{bottom:594.880000pt;}
.yff{bottom:597.120000pt;}
.ya5{bottom:597.760000pt;}
.ydc{bottom:601.920000pt;}
.y11{bottom:603.520000pt;}
.y122{bottom:606.080000pt;}
.y64{bottom:608.000000pt;}
.y88{bottom:608.320000pt;}
.y3b{bottom:610.880000pt;}
.y16c{bottom:615.360000pt;}
.y138{bottom:615.680000pt;}
.ydb{bottom:620.480000pt;}
.yb2{bottom:621.760000pt;}
.y10{bottom:622.080000pt;}
.y121{bottom:624.320000pt;}
.y150{bottom:628.800000pt;}
.y3a{bottom:629.120000pt;}
.yfe{bottom:631.360000pt;}
.ya4{bottom:634.240000pt;}
.yda{bottom:639.040000pt;}
.yf{bottom:640.320000pt;}
.y87{bottom:642.560000pt;}
.y39{bottom:647.680000pt;}
.y137{bottom:649.600000pt;}
.yfd{bottom:649.920000pt;}
.yd9{bottom:657.280000pt;}
.y63{bottom:658.560000pt;}
.ye{bottom:658.880000pt;}
.y86{bottom:661.120000pt;}
.y38{bottom:665.920000pt;}
.yfc{bottom:668.480000pt;}
.yd8{bottom:675.840000pt;}
.yd{bottom:677.120000pt;}
.y14f{bottom:679.360000pt;}
.y85{bottom:679.680000pt;}
.y37{bottom:684.480000pt;}
.yfb{bottom:686.720000pt;}
.yd7{bottom:694.080000pt;}
.y62{bottom:695.680000pt;}
.y84{bottom:697.920000pt;}
.y36{bottom:702.720000pt;}
.yfa{bottom:705.280000pt;}
.yc{bottom:711.360000pt;}
.y61{bottom:713.920000pt;}
.y83{bottom:716.480000pt;}
.y16b{bottom:720.960000pt;}
.y35{bottom:721.280000pt;}
.ya3{bottom:724.800000pt;}
.yd6{bottom:728.320000pt;}
.y60{bottom:732.480000pt;}
.y14e{bottom:734.720000pt;}
.yf9{bottom:739.200000pt;}
.y16a{bottom:739.520000pt;}
.yd5{bottom:746.880000pt;}
.y82{bottom:750.400000pt;}
.y5f{bottom:750.720000pt;}
.yb{bottom:753.600000pt;}
.y34{bottom:755.200000pt;}
.yf8{bottom:758.080000pt;}
.yd4{bottom:765.440000pt;}
.y14d{bottom:768.960000pt;}
.y5e{bottom:769.280000pt;}
.ya2{bottom:770.240000pt;}
.ya{bottom:772.480000pt;}
.y169{bottom:773.760000pt;}
.y33{bottom:774.080000pt;}
.yf7{bottom:776.320000pt;}
.y120{bottom:784.960000pt;}
.y81{bottom:787.520000pt;}
.y32{bottom:792.320000pt;}
.y136{bottom:794.880000pt;}
.yd3{bottom:799.360000pt;}
.y5d{bottom:803.200000pt;}
.y11f{bottom:803.520000pt;}
.y80{bottom:806.080000pt;}
.y9{bottom:806.720000pt;}
.yf6{bottom:810.560000pt;}
.y31{bottom:810.880000pt;}
.ya1{bottom:815.680000pt;}
.yd2{bottom:818.240000pt;}
.y5c{bottom:822.080000pt;}
.yb1{bottom:824.320000pt;}
.y8{bottom:825.280000pt;}
.y168{bottom:826.560000pt;}
.y135{bottom:828.800000pt;}
.y30{bottom:829.120000pt;}
.yd1{bottom:836.480000pt;}
.y7f{bottom:840.000000pt;}
.y5b{bottom:840.320000pt;}
.yb0{bottom:842.880000pt;}
.y7{bottom:843.823360pt;}
.y167{bottom:845.120000pt;}
.y2f{bottom:847.360000pt;}
.yd0{bottom:855.040000pt;}
.y5a{bottom:858.880000pt;}
.ya0{bottom:860.800000pt;}
.yaf{bottom:861.120000pt;}
.y166{bottom:863.360000pt;}
.y2e{bottom:865.920000pt;}
.ycf{bottom:873.280000pt;}
.y11e{bottom:874.560000pt;}
.y59{bottom:877.120000pt;}
.y134{bottom:879.040000pt;}
.y14c{bottom:879.360000pt;}
.y165{bottom:881.920000pt;}
.y2d{bottom:884.160000pt;}
.y6{bottom:887.351680pt;}
.yce{bottom:891.840000pt;}
.y11d{bottom:893.120000pt;}
.yae{bottom:895.040000pt;}
.y7e{bottom:895.360000pt;}
.y133{bottom:897.920000pt;}
.y2c{bottom:902.720000pt;}
.y9f{bottom:906.240000pt;}
.ycd{bottom:910.080000pt;}
.y58{bottom:911.040000pt;}
.y11c{bottom:911.360000pt;}
.y14b{bottom:913.600000pt;}
.y7d{bottom:913.920000pt;}
.y164{bottom:915.840000pt;}
.yf5{bottom:918.400000pt;}
.y57{bottom:929.920000pt;}
.y132{bottom:931.840000pt;}
.y7c{bottom:932.160000pt;}
.y2b{bottom:936.640000pt;}
.y5{bottom:939.520000pt;}
.ycc{bottom:943.674240pt;}
.y56{bottom:948.160000pt;}
.y163{bottom:950.400000pt;}
.yad{bottom:950.720000pt;}
.y9e{bottom:951.680000pt;}
.ycb{bottom:959.036160pt;}
.y7b{bottom:966.400000pt;}
.y55{bottom:966.720000pt;}
.yf4{bottom:968.640000pt;}
.yac{bottom:968.960000pt;}
.yca{bottom:974.398080pt;}
.y54{bottom:984.960000pt;}
.y2a{bottom:987.200000pt;}
.yab{bottom:987.520000pt;}
.yc9{bottom:989.760000pt;}
.y4{bottom:991.360000pt;}
.y9d{bottom:996.800000pt;}
.y162{bottom:1003.200000pt;}
.y53{bottom:1003.520000pt;}
.y14a{bottom:1005.760000pt;}
.y29{bottom:1021.440000pt;}
.y52{bottom:1021.760000pt;}
.y9c{bottom:1040.000000pt;}
.y28{bottom:1040.320000pt;}
.y3{bottom:1042.554880pt;}
.y1{bottom:1058.560000pt;}
.hf{height:28.078125pt;}
.hc{height:30.324375pt;}
.h3{height:36.618750pt;}
.h4{height:39.138750pt;}
.h10{height:42.678750pt;}
.h11{height:42.797500pt;}
.h7{height:47.081250pt;}
.hd{height:47.171250pt;}
.he{height:47.302500pt;}
.h2{height:56.156250pt;}
.h8{height:56.312500pt;}
.h9{height:56.843750pt;}
.h6{height:60.817500pt;}
.ha{height:61.383125pt;}
.h5{height:61.391250pt;}
.hb{height:61.486250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1{left:75.520000pt;}
.xc{left:113.280000pt;}
.x10{left:151.040000pt;}
.x2{left:169.920000pt;}
.x6{left:238.418560pt;}
.x12{left:249.600000pt;}
.x5{left:254.402560pt;}
.xf{left:267.520000pt;}
.x4{left:308.800000pt;}
.x11{left:326.080000pt;}
.xb{left:364.480000pt;}
.xe{left:368.000000pt;}
.xd{left:372.800000pt;}
.x8{left:395.200000pt;}
.x3{left:399.018240pt;}
.x9{left:560.640000pt;}
.xa{left:591.680000pt;}
.x7{left:598.412800pt;}
}




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