
    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_04d82926a1d0fc22bb44b7f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_3b9393b60d8dafe05ba9aa36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_c34bf8b56d715cdd12929c82.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_a7260e5f0084e1ed1fe66dd9.woff2')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.m2{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:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:23.976000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004920px;}
.ls0{letter-spacing:0.006144px;}
.ls5{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.528000px;}
.ls4{letter-spacing:1.848000px;}
.ls3{letter-spacing:2.046000px;}
.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;}
}
.wsa9{word-spacing:-20.394000px;}
.wsaa{word-spacing:-20.196000px;}
.wsac{word-spacing:-18.876000px;}
.wsab{word-spacing:-18.480000px;}
.ws0{word-spacing:-18.348000px;}
.ws80{word-spacing:-13.344000px;}
.ws6b{word-spacing:-7.128000px;}
.ws79{word-spacing:-3.498000px;}
.ws64{word-spacing:-3.432000px;}
.ws70{word-spacing:-3.366000px;}
.ws9e{word-spacing:-3.102000px;}
.ws12{word-spacing:-3.036000px;}
.ws9b{word-spacing:-2.970000px;}
.ws3e{word-spacing:-2.904000px;}
.wsa6{word-spacing:-2.838000px;}
.ws4c{word-spacing:-2.772000px;}
.ws69{word-spacing:-2.640000px;}
.ws58{word-spacing:-2.574000px;}
.wsb8{word-spacing:-2.442000px;}
.ws8d{word-spacing:-2.376000px;}
.ws91{word-spacing:-2.178000px;}
.ws2b{word-spacing:-2.112000px;}
.ws61{word-spacing:-2.046000px;}
.ws98{word-spacing:-1.980000px;}
.ws88{word-spacing:-1.650000px;}
.ws11{word-spacing:-1.584000px;}
.ws36{word-spacing:-1.188000px;}
.ws3c{word-spacing:-1.122000px;}
.ws81{word-spacing:-1.056000px;}
.ws93{word-spacing:-0.924000px;}
.ws21{word-spacing:-0.858000px;}
.wsa4{word-spacing:-0.792000px;}
.ws65{word-spacing:-0.726000px;}
.ws77{word-spacing:-0.528000px;}
.ws5d{word-spacing:-0.462000px;}
.ws3f{word-spacing:-0.396000px;}
.ws9{word-spacing:-0.330000px;}
.wsb7{word-spacing:-0.264000px;}
.ws4b{word-spacing:-0.198000px;}
.ws1{word-spacing:0.000000px;}
.ws31{word-spacing:0.198000px;}
.ws6f{word-spacing:0.264000px;}
.ws1d{word-spacing:0.396000px;}
.ws8e{word-spacing:0.462000px;}
.wsb5{word-spacing:0.528000px;}
.ws62{word-spacing:0.594000px;}
.ws2f{word-spacing:0.660000px;}
.ws33{word-spacing:0.726000px;}
.ws5{word-spacing:0.858000px;}
.ws44{word-spacing:1.056000px;}
.wsa{word-spacing:1.188000px;}
.ws66{word-spacing:1.254000px;}
.ws3d{word-spacing:1.320000px;}
.ws45{word-spacing:1.386000px;}
.ws75{word-spacing:1.452000px;}
.ws82{word-spacing:1.518000px;}
.wsa2{word-spacing:1.584000px;}
.ws17{word-spacing:1.782000px;}
.ws74{word-spacing:1.848000px;}
.ws9a{word-spacing:1.980000px;}
.ws7d{word-spacing:2.046000px;}
.wsb0{word-spacing:2.112000px;}
.ws49{word-spacing:2.178000px;}
.ws4d{word-spacing:2.310000px;}
.ws23{word-spacing:2.376000px;}
.ws59{word-spacing:2.442000px;}
.ws40{word-spacing:2.508000px;}
.ws7{word-spacing:2.706000px;}
.wsba{word-spacing:2.772000px;}
.ws18{word-spacing:2.838000px;}
.ws96{word-spacing:2.904000px;}
.ws84{word-spacing:2.970000px;}
.ws97{word-spacing:3.036000px;}
.ws53{word-spacing:3.234000px;}
.ws39{word-spacing:3.300000px;}
.ws27{word-spacing:3.366000px;}
.ws22{word-spacing:3.432000px;}
.wsa3{word-spacing:3.630000px;}
.ws86{word-spacing:3.762000px;}
.ws5e{word-spacing:3.828000px;}
.ws48{word-spacing:3.894000px;}
.wsa8{word-spacing:3.960000px;}
.ws9f{word-spacing:4.026000px;}
.ws50{word-spacing:4.224000px;}
.ws41{word-spacing:4.290000px;}
.ws5c{word-spacing:4.356000px;}
.ws35{word-spacing:4.422000px;}
.ws6a{word-spacing:4.554000px;}
.ws16{word-spacing:4.686000px;}
.ws1e{word-spacing:4.752000px;}
.ws99{word-spacing:4.884000px;}
.ws2d{word-spacing:4.950000px;}
.ws43{word-spacing:5.148000px;}
.ws72{word-spacing:5.214000px;}
.ws1f{word-spacing:5.478000px;}
.ws90{word-spacing:5.544000px;}
.ws94{word-spacing:5.676000px;}
.ws52{word-spacing:5.742000px;}
.ws2e{word-spacing:5.808000px;}
.ws7b{word-spacing:5.940000px;}
.ws19{word-spacing:6.006000px;}
.wsb1{word-spacing:6.072000px;}
.ws6{word-spacing:6.138000px;}
.ws29{word-spacing:6.204000px;}
.ws5b{word-spacing:6.270000px;}
.ws14{word-spacing:6.336000px;}
.ws1a{word-spacing:6.534000px;}
.ws63{word-spacing:6.798000px;}
.ws15{word-spacing:6.930000px;}
.ws92{word-spacing:6.996000px;}
.ws24{word-spacing:7.062000px;}
.ws56{word-spacing:7.128000px;}
.ws1c{word-spacing:7.458000px;}
.ws10{word-spacing:7.524000px;}
.ws25{word-spacing:7.590000px;}
.ws42{word-spacing:7.656000px;}
.wse{word-spacing:7.788000px;}
.ws8f{word-spacing:7.986000px;}
.ws13{word-spacing:8.184000px;}
.ws9c{word-spacing:8.250000px;}
.ws9d{word-spacing:8.382000px;}
.ws83{word-spacing:8.448000px;}
.ws38{word-spacing:8.580000px;}
.ws4a{word-spacing:8.646000px;}
.ws8a{word-spacing:8.844000px;}
.ws5f{word-spacing:8.976000px;}
.wsb{word-spacing:9.108000px;}
.ws78{word-spacing:9.174000px;}
.ws68{word-spacing:9.372000px;}
.ws5a{word-spacing:9.438000px;}
.ws71{word-spacing:9.570000px;}
.ws26{word-spacing:9.636000px;}
.ws2{word-spacing:9.900000px;}
.ws47{word-spacing:9.966000px;}
.ws32{word-spacing:10.032000px;}
.ws37{word-spacing:10.164000px;}
.ws46{word-spacing:10.560000px;}
.ws8{word-spacing:10.626000px;}
.ws2a{word-spacing:10.692000px;}
.ws8c{word-spacing:11.022000px;}
.ws55{word-spacing:11.088000px;}
.ws60{word-spacing:11.220000px;}
.ws6d{word-spacing:11.352000px;}
.wsb4{word-spacing:11.484000px;}
.ws34{word-spacing:11.616000px;}
.ws4f{word-spacing:11.748000px;}
.wsa1{word-spacing:11.814000px;}
.wsf{word-spacing:12.078000px;}
.ws8b{word-spacing:12.276000px;}
.ws7f{word-spacing:12.342000px;}
.ws87{word-spacing:12.474000px;}
.ws6e{word-spacing:12.738000px;}
.ws7c{word-spacing:12.804000px;}
.ws85{word-spacing:12.870000px;}
.ws28{word-spacing:13.068000px;}
.ws6c{word-spacing:13.134000px;}
.ws76{word-spacing:13.200000px;}
.ws2c{word-spacing:13.464000px;}
.ws51{word-spacing:13.728000px;}
.ws54{word-spacing:14.124000px;}
.ws67{word-spacing:14.256000px;}
.wsd{word-spacing:14.388000px;}
.ws20{word-spacing:14.520000px;}
.ws57{word-spacing:14.916000px;}
.ws95{word-spacing:15.114000px;}
.ws4e{word-spacing:15.444000px;}
.wsa5{word-spacing:15.510000px;}
.ws3{word-spacing:15.906000px;}
.wsa0{word-spacing:16.566000px;}
.ws73{word-spacing:16.896000px;}
.wsb9{word-spacing:17.160000px;}
.wsbb{word-spacing:17.226000px;}
.ws3a{word-spacing:17.358000px;}
.ws7a{word-spacing:17.886000px;}
.wsb2{word-spacing:18.018000px;}
.wsaf{word-spacing:18.084000px;}
.ws30{word-spacing:19.734000px;}
.wsb6{word-spacing:19.866000px;}
.wsa7{word-spacing:19.998000px;}
.ws4{word-spacing:20.922000px;}
.ws7e{word-spacing:22.176000px;}
.ws3b{word-spacing:22.440000px;}
.ws89{word-spacing:22.902000px;}
.ws1b{word-spacing:23.298000px;}
.wsb3{word-spacing:24.222000px;}
.wsc{word-spacing:27.390000px;}
.wsad{word-spacing:841.118400px;}
.wsae{word-spacing:899.485800px;}
._14{margin-left:-8.554800px;}
._0{margin-left:-7.409775px;}
._3{margin-left:-6.274800px;}
._1{margin-left:-4.302000px;}
._4{margin-left:-3.066000px;}
._2{margin-left:-1.503600px;}
._6{width:1.762200px;}
._9{width:3.194400px;}
._a{width:4.459575px;}
._8{width:5.986200px;}
._b{width:7.712400px;}
._7{width:8.903400px;}
._c{width:10.579800px;}
._10{width:11.720400px;}
._d{width:13.741200px;}
._e{width:16.988400px;}
._5{width:20.598600px;}
._13{width:22.327800px;}
._12{width:23.555400px;}
._11{width:43.072800px;}
._f{width:66.552000px;}
._1e{width:169.010400px;}
._1d{width:183.168600px;}
._19{width:195.516600px;}
._18{width:208.272000px;}
._17{width:224.515800px;}
._1a{width:274.039800px;}
._1c{width:291.264600px;}
._1f{width:295.353375px;}
._1b{width:328.807200px;}
._16{width:667.711200px;}
._15{width:926.145000px;}
.fc2{color:rgb(60,81,180);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:27.984000px;}
.fs5{font-size:34.980000px;}
.fs7{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs8{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:199.724400px;}
.y0{bottom:0.000000px;}
.yfe{bottom:70.954050px;}
.yd8{bottom:73.706100px;}
.y2{bottom:85.039350px;}
.y143{bottom:85.415550px;}
.y10b{bottom:89.042700px;}
.y83{bottom:90.211950px;}
.y30{bottom:90.584100px;}
.yd7{bottom:92.456100px;}
.y117{bottom:93.134700px;}
.yfd{bottom:93.956100px;}
.yac{bottom:96.471750px;}
.y50{bottom:102.786000px;}
.y110{bottom:103.558500px;}
.y142{bottom:104.165550px;}
.y82{bottom:108.961950px;}
.y2f{bottom:109.334100px;}
.yd6{bottom:111.206100px;}
.yfc{bottom:112.706100px;}
.yab{bottom:115.221750px;}
.y4f{bottom:121.536000px;}
.y10f{bottom:122.308500px;}
.y141{bottom:122.915550px;}
.y81{bottom:127.711950px;}
.y2e{bottom:128.084100px;}
.yd5{bottom:129.956100px;}
.yaa{bottom:133.971750px;}
.yfb{bottom:135.708000px;}
.y4e{bottom:140.286000px;}
.y10e{bottom:141.058500px;}
.y140{bottom:145.917600px;}
.y80{bottom:146.461950px;}
.y2d{bottom:146.834100px;}
.yd4{bottom:148.706100px;}
.ya9{bottom:152.721750px;}
.yfa{bottom:154.458000px;}
.y4d{bottom:159.036000px;}
.y161{bottom:162.962100px;}
.y13f{bottom:164.667600px;}
.y7f{bottom:165.211950px;}
.yd3{bottom:167.456100px;}
.ya8{bottom:171.471750px;}
.yf9{bottom:177.460050px;}
.y4c{bottom:177.786000px;}
.y2c{bottom:178.339950px;}
.y160{bottom:181.712100px;}
.y13e{bottom:183.417600px;}
.y7e{bottom:183.961950px;}
.yd2{bottom:186.206100px;}
.ya7{bottom:190.221750px;}
.yf8{bottom:196.210050px;}
.y4b{bottom:196.536000px;}
.y15f{bottom:200.462100px;}
.y13d{bottom:202.167600px;}
.y7d{bottom:202.711950px;}
.yd1{bottom:204.956100px;}
.ya6{bottom:208.971750px;}
.y2b{bottom:209.591850px;}
.yf7{bottom:214.960050px;}
.y4a{bottom:215.286000px;}
.y15e{bottom:219.212100px;}
.y13c{bottom:220.917600px;}
.y7c{bottom:221.461950px;}
.ya5{bottom:227.721750px;}
.y2a{bottom:232.593900px;}
.yd0{bottom:236.462100px;}
.yf6{bottom:237.962100px;}
.y13b{bottom:239.667600px;}
.y7b{bottom:244.463850px;}
.ya4{bottom:246.471750px;}
.y49{bottom:246.792000px;}
.y29{bottom:251.343900px;}
.yf5{bottom:256.712100px;}
.y13a{bottom:258.417600px;}
.y15d{bottom:260.964000px;}
.y7a{bottom:263.213850px;}
.ya3{bottom:269.473800px;}
.y28{bottom:270.093900px;}
.ycf{bottom:271.717950px;}
.yf4{bottom:275.462100px;}
.y139{bottom:277.167600px;}
.y10d{bottom:278.496900px;}
.y15c{bottom:279.714000px;}
.y48{bottom:280.045800px;}
.y79{bottom:281.963850px;}
.ya2{bottom:288.223800px;}
.y27{bottom:288.843900px;}
.yce{bottom:290.467950px;}
.yf3{bottom:294.212100px;}
.y138{bottom:295.917600px;}
.y15b{bottom:298.464000px;}
.y78{bottom:300.713850px;}
.ya1{bottom:306.973650px;}
.y26{bottom:307.593900px;}
.ycd{bottom:309.217950px;}
.yf2{bottom:312.961950px;}
.y189{bottom:312.964500px;}
.y15a{bottom:317.214000px;}
.y137{bottom:318.919500px;}
.y77{bottom:319.463850px;}
.ya0{bottom:325.723650px;}
.y25{bottom:326.343900px;}
.ycc{bottom:327.967950px;}
.yf1{bottom:331.711950px;}
.y47{bottom:334.847850px;}
.y188{bottom:335.591550px;}
.y159{bottom:335.964000px;}
.y136{bottom:337.669500px;}
.y9f{bottom:344.473650px;}
.y24{bottom:345.093900px;}
.ycb{bottom:346.717950px;}
.yf0{bottom:350.461950px;}
.y76{bottom:350.969850px;}
.y135{bottom:356.419500px;}
.y46{bottom:357.849750px;}
.y187{bottom:358.511850px;}
.y158{bottom:358.965900px;}
.y9e{bottom:363.223650px;}
.y23{bottom:363.843900px;}
.yca{bottom:365.467950px;}
.yef{bottom:369.211950px;}
.y134{bottom:375.169500px;}
.y45{bottom:376.599750px;}
.y157{bottom:377.715900px;}
.y186{bottom:381.432300px;}
.y9d{bottom:381.973650px;}
.y22{bottom:382.593900px;}
.yc9{bottom:384.217950px;}
.y75{bottom:386.225700px;}
.yee{bottom:387.961950px;}
.y133{bottom:393.919500px;}
.y44{bottom:395.349750px;}
.y156{bottom:396.465900px;}
.y9c{bottom:400.723650px;}
.y21{bottom:401.343900px;}
.yc8{bottom:402.967950px;}
.y74{bottom:404.975700px;}
.y132{bottom:412.669500px;}
.y43{bottom:414.099750px;}
.y155{bottom:415.215900px;}
.yed{bottom:419.467950px;}
.y9b{bottom:419.473650px;}
.y185{bottom:419.727750px;}
.y20{bottom:420.093900px;}
.yc7{bottom:421.717950px;}
.y73{bottom:423.725700px;}
.y131{bottom:431.419500px;}
.y42{bottom:432.849750px;}
.y154{bottom:433.965900px;}
.y9a{bottom:438.223650px;}
.y1f{bottom:438.843900px;}
.yc6{bottom:440.467950px;}
.y72{bottom:446.727750px;}
.y130{bottom:450.169500px;}
.y41{bottom:451.599750px;}
.y153{bottom:452.715900px;}
.y184{bottom:452.727750px;}
.y99{bottom:456.973650px;}
.yec{bottom:456.973800px;}
.y1e{bottom:457.593900px;}
.yc5{bottom:459.217950px;}
.y71{bottom:465.477750px;}
.y12f{bottom:468.919500px;}
.y40{bottom:470.349750px;}
.y183{bottom:470.727750px;}
.y152{bottom:471.465900px;}
.y98{bottom:475.723650px;}
.yeb{bottom:475.723800px;}
.y1d{bottom:476.343900px;}
.yc4{bottom:477.967950px;}
.y70{bottom:484.227750px;}
.y12e{bottom:487.669500px;}
.y182{bottom:488.727750px;}
.y3f{bottom:489.099750px;}
.y151{bottom:494.467950px;}
.y97{bottom:494.473650px;}
.yea{bottom:494.473800px;}
.y1c{bottom:495.093900px;}
.yc3{bottom:496.717950px;}
.y6f{bottom:502.977750px;}
.y12d{bottom:506.419500px;}
.y3e{bottom:507.849750px;}
.y116{bottom:513.134700px;}
.y150{bottom:513.217950px;}
.y96{bottom:513.223650px;}
.ye9{bottom:513.223800px;}
.y1b{bottom:513.843900px;}
.yc2{bottom:515.467950px;}
.y181{bottom:519.483600px;}
.y6e{bottom:521.727750px;}
.y3d{bottom:526.599750px;}
.y12c{bottom:529.421550px;}
.y14f{bottom:531.967950px;}
.y95{bottom:531.973650px;}
.ye8{bottom:531.973800px;}
.y1a{bottom:532.593900px;}
.yc1{bottom:534.217950px;}
.y6d{bottom:540.477750px;}
.y3c{bottom:545.349750px;}
.y12b{bottom:548.171550px;}
.y14e{bottom:550.717950px;}
.ye7{bottom:550.723800px;}
.y19{bottom:551.343900px;}
.yc0{bottom:552.967950px;}
.y94{bottom:554.975700px;}
.y6c{bottom:559.227750px;}
.y3b{bottom:564.099750px;}
.y115{bottom:564.217950px;}
.y12a{bottom:566.921550px;}
.y14d{bottom:569.467950px;}
.ye6{bottom:569.473800px;}
.y18{bottom:570.093900px;}
.y179{bottom:571.215900px;}
.ybf{bottom:571.717950px;}
.y93{bottom:573.725700px;}
.y6b{bottom:577.977750px;}
.y3a{bottom:582.849750px;}
.y114{bottom:582.967950px;}
.y129{bottom:585.671550px;}
.y14c{bottom:588.217950px;}
.y180{bottom:588.223800px;}
.y17{bottom:588.843900px;}
.y178{bottom:589.965900px;}
.ybe{bottom:590.467950px;}
.y92{bottom:592.475700px;}
.ye5{bottom:592.475850px;}
.y6a{bottom:596.727750px;}
.y39{bottom:601.599750px;}
.y113{bottom:601.717950px;}
.y128{bottom:604.421550px;}
.y17f{bottom:606.973800px;}
.y16{bottom:607.593900px;}
.ybd{bottom:609.217950px;}
.y91{bottom:611.225700px;}
.ye4{bottom:611.225850px;}
.y177{bottom:612.967950px;}
.y69{bottom:615.477750px;}
.y14b{bottom:619.723800px;}
.y38{bottom:620.349750px;}
.y112{bottom:620.467950px;}
.y127{bottom:623.171550px;}
.y17e{bottom:625.723800px;}
.y15{bottom:626.343900px;}
.ybc{bottom:627.967950px;}
.y10a{bottom:629.042700px;}
.y90{bottom:629.975700px;}
.ye3{bottom:629.975850px;}
.y176{bottom:631.717950px;}
.y68{bottom:634.227750px;}
.y37{bottom:639.099750px;}
.y126{bottom:641.921550px;}
.y14{bottom:645.093900px;}
.ybb{bottom:646.717950px;}
.y8f{bottom:648.725700px;}
.ye2{bottom:648.725850px;}
.y175{bottom:650.467950px;}
.y67{bottom:652.977750px;}
.y14a{bottom:657.229650px;}
.y36{bottom:657.849750px;}
.y109{bottom:659.798550px;}
.y125{bottom:660.671550px;}
.y13{bottom:663.843900px;}
.yba{bottom:665.467950px;}
.y8e{bottom:667.475700px;}
.ye1{bottom:667.475850px;}
.y174{bottom:669.217950px;}
.y66{bottom:671.727750px;}
.y149{bottom:675.979650px;}
.y35{bottom:676.599750px;}
.y124{bottom:679.421550px;}
.y111{bottom:681.323700px;}
.y12{bottom:682.593900px;}
.yb9{bottom:684.217950px;}
.y8d{bottom:686.225700px;}
.y17d{bottom:686.225850px;}
.y173{bottom:687.967950px;}
.y65{bottom:690.477600px;}
.ye0{bottom:690.477750px;}
.y148{bottom:694.729650px;}
.y34{bottom:695.349750px;}
.y123{bottom:698.171550px;}
.y11{bottom:701.343900px;}
.yb8{bottom:702.967950px;}
.y106{bottom:704.975850px;}
.y172{bottom:706.717950px;}
.y64{bottom:709.227600px;}
.ydf{bottom:709.227750px;}
.y147{bottom:713.479650px;}
.y33{bottom:714.099750px;}
.y122{bottom:716.921550px;}
.y10{bottom:720.093900px;}
.y105{bottom:723.725850px;}
.y171{bottom:725.467950px;}
.y63{bottom:727.977600px;}
.yde{bottom:727.977750px;}
.y108{bottom:732.229650px;}
.y32{bottom:732.849750px;}
.yb7{bottom:734.473800px;}
.y121{bottom:735.671550px;}
.yf{bottom:738.843900px;}
.y17c{bottom:742.475850px;}
.y62{bottom:746.727600px;}
.ydd{bottom:746.727750px;}
.y170{bottom:748.469850px;}
.y107{bottom:750.979650px;}
.y31{bottom:751.599750px;}
.y120{bottom:754.421550px;}
.y17b{bottom:761.225850px;}
.y61{bottom:765.477600px;}
.ydc{bottom:765.477750px;}
.y16f{bottom:767.219850px;}
.yb6{bottom:769.729650px;}
.ye{bottom:770.349750px;}
.y11f{bottom:773.171400px;}
.y17a{bottom:779.975850px;}
.y60{bottom:784.227600px;}
.ydb{bottom:784.227750px;}
.y16e{bottom:785.969850px;}
.yb5{bottom:788.479650px;}
.y11e{bottom:791.921400px;}
.yd{bottom:802.672050px;}
.y5f{bottom:802.977600px;}
.yda{bottom:802.977750px;}
.yb4{bottom:807.229650px;}
.y16d{bottom:808.971900px;}
.y11d{bottom:810.671400px;}
.yc{bottom:820.672050px;}
.y5e{bottom:821.727600px;}
.yd9{bottom:821.727750px;}
.yb3{bottom:825.979650px;}
.y16c{bottom:827.721900px;}
.y11c{bottom:829.421400px;}
.y8c{bottom:840.477600px;}
.y104{bottom:840.477750px;}
.yb{bottom:843.667050px;}
.y5d{bottom:844.729650px;}
.y11b{bottom:848.171400px;}
.y16b{bottom:850.723800px;}
.y8b{bottom:859.227600px;}
.y103{bottom:859.227750px;}
.y18f{bottom:860.392050px;}
.ya{bottom:861.667050px;}
.y5c{bottom:863.479650px;}
.y11a{bottom:866.921400px;}
.y16a{bottom:869.473800px;}
.y9{bottom:874.672050px;}
.y8a{bottom:877.977600px;}
.y102{bottom:877.977750px;}
.y5b{bottom:882.229650px;}
.y119{bottom:885.671550px;}
.y169{bottom:888.223800px;}
.y10c{bottom:890.496900px;}
.y18e{bottom:894.142050px;}
.y89{bottom:896.727600px;}
.y101{bottom:896.727750px;}
.y5a{bottom:900.979650px;}
.y146{bottom:905.231700px;}
.y168{bottom:906.973800px;}
.y8{bottom:914.923950px;}
.y88{bottom:915.477600px;}
.y100{bottom:915.477750px;}
.y118{bottom:916.421550px;}
.y59{bottom:919.729650px;}
.y145{bottom:923.981700px;}
.y167{bottom:929.975850px;}
.y87{bottom:934.227600px;}
.yff{bottom:934.227750px;}
.y58{bottom:938.479650px;}
.y144{bottom:942.731700px;}
.y166{bottom:948.725850px;}
.y18d{bottom:950.437500px;}
.y7{bottom:950.923950px;}
.y86{bottom:952.977600px;}
.y57{bottom:957.229650px;}
.yb2{bottom:961.481700px;}
.y165{bottom:967.475850px;}
.y18c{bottom:973.732950px;}
.y56{bottom:975.979650px;}
.yb1{bottom:980.231700px;}
.y6{bottom:983.923950px;}
.y164{bottom:986.225850px;}
.y85{bottom:994.729650px;}
.y55{bottom:998.981550px;}
.yb0{bottom:998.981700px;}
.y163{bottom:1004.975850px;}
.y84{bottom:1013.479650px;}
.y54{bottom:1017.731550px;}
.yaf{bottom:1017.731700px;}
.y5{bottom:1023.323700px;}
.y162{bottom:1023.725850px;}
.y18b{bottom:1027.028250px;}
.y53{bottom:1036.481550px;}
.yae{bottom:1036.481700px;}
.y4{bottom:1039.823700px;}
.y18a{bottom:1049.948700px;}
.y52{bottom:1055.231550px;}
.yad{bottom:1055.231700px;}
.y3{bottom:1056.323700px;}
.y1{bottom:1108.294050px;}
.y51{bottom:1109.357100px;}
.h9{height:25.500557px;}
.h10{height:43.335938px;}
.hf{height:43.681641px;}
.h5{height:43.740234px;}
.hb{height:48.114258px;}
.he{height:50.028012px;}
.hd{height:50.028612px;}
.h7{height:52.488281px;}
.h11{height:53.789062px;}
.h4{height:54.169922px;}
.hc{height:59.167969px;}
.ha{height:59.586914px;}
.h2{height:61.236328px;}
.h8{height:65.003906px;}
.h6{height:75.837891px;}
.h3{height:180.317586px;}
.h1{height:1194.750000px;}
.h0{height:1194.802500px;}
.w1{width:935.250000px;}
.w0{width:935.433000px;}
.x0{left:0.000000px;}
.x10{left:85.039350px;}
.x19{left:97.795350px;}
.xf{left:106.299150px;}
.x27{left:114.448950px;}
.x18{left:119.055150px;}
.x17{left:124.800300px;}
.x15{left:126.884100px;}
.x8{left:129.508950px;}
.x1f{left:131.992650px;}
.x24{left:153.108750px;}
.x6{left:163.001250px;}
.xc{left:168.778500px;}
.x22{left:194.937300px;}
.x23{left:199.529550px;}
.x11{left:226.506900px;}
.xe{left:230.623950px;}
.xb{left:234.308250px;}
.x7{left:238.839150px;}
.x26{left:248.799300px;}
.x9{left:263.574750px;}
.x16{left:287.352000px;}
.x1e{left:303.511200px;}
.xa{left:305.616900px;}
.x1c{left:321.766800px;}
.x1b{left:326.765550px;}
.x21{left:333.906750px;}
.x25{left:350.177550px;}
.xd{left:398.004600px;}
.x20{left:422.024400px;}
.x1d{left:432.875550px;}
.x12{left:476.716500px;}
.x1a{left:489.472350px;}
.x13{left:497.976300px;}
.x4{left:508.762800px;}
.x14{left:524.976300px;}
.x5{left:553.162200px;}
.x3{left:775.393650px;}
.x1{left:827.035350px;}
.x2{left:907.927500px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:21.312000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004373pt;}
.ls0{letter-spacing:0.005461pt;}
.ls5{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.469333pt;}
.ls4{letter-spacing:1.642667pt;}
.ls3{letter-spacing:1.818667pt;}
.wsa9{word-spacing:-18.128000pt;}
.wsaa{word-spacing:-17.952000pt;}
.wsac{word-spacing:-16.778667pt;}
.wsab{word-spacing:-16.426667pt;}
.ws0{word-spacing:-16.309333pt;}
.ws80{word-spacing:-11.861333pt;}
.ws6b{word-spacing:-6.336000pt;}
.ws79{word-spacing:-3.109333pt;}
.ws64{word-spacing:-3.050667pt;}
.ws70{word-spacing:-2.992000pt;}
.ws9e{word-spacing:-2.757333pt;}
.ws12{word-spacing:-2.698667pt;}
.ws9b{word-spacing:-2.640000pt;}
.ws3e{word-spacing:-2.581333pt;}
.wsa6{word-spacing:-2.522667pt;}
.ws4c{word-spacing:-2.464000pt;}
.ws69{word-spacing:-2.346667pt;}
.ws58{word-spacing:-2.288000pt;}
.wsb8{word-spacing:-2.170667pt;}
.ws8d{word-spacing:-2.112000pt;}
.ws91{word-spacing:-1.936000pt;}
.ws2b{word-spacing:-1.877333pt;}
.ws61{word-spacing:-1.818667pt;}
.ws98{word-spacing:-1.760000pt;}
.ws88{word-spacing:-1.466667pt;}
.ws11{word-spacing:-1.408000pt;}
.ws36{word-spacing:-1.056000pt;}
.ws3c{word-spacing:-0.997333pt;}
.ws81{word-spacing:-0.938667pt;}
.ws93{word-spacing:-0.821333pt;}
.ws21{word-spacing:-0.762667pt;}
.wsa4{word-spacing:-0.704000pt;}
.ws65{word-spacing:-0.645333pt;}
.ws77{word-spacing:-0.469333pt;}
.ws5d{word-spacing:-0.410667pt;}
.ws3f{word-spacing:-0.352000pt;}
.ws9{word-spacing:-0.293333pt;}
.wsb7{word-spacing:-0.234667pt;}
.ws4b{word-spacing:-0.176000pt;}
.ws1{word-spacing:0.000000pt;}
.ws31{word-spacing:0.176000pt;}
.ws6f{word-spacing:0.234667pt;}
.ws1d{word-spacing:0.352000pt;}
.ws8e{word-spacing:0.410667pt;}
.wsb5{word-spacing:0.469333pt;}
.ws62{word-spacing:0.528000pt;}
.ws2f{word-spacing:0.586667pt;}
.ws33{word-spacing:0.645333pt;}
.ws5{word-spacing:0.762667pt;}
.ws44{word-spacing:0.938667pt;}
.wsa{word-spacing:1.056000pt;}
.ws66{word-spacing:1.114667pt;}
.ws3d{word-spacing:1.173333pt;}
.ws45{word-spacing:1.232000pt;}
.ws75{word-spacing:1.290667pt;}
.ws82{word-spacing:1.349333pt;}
.wsa2{word-spacing:1.408000pt;}
.ws17{word-spacing:1.584000pt;}
.ws74{word-spacing:1.642667pt;}
.ws9a{word-spacing:1.760000pt;}
.ws7d{word-spacing:1.818667pt;}
.wsb0{word-spacing:1.877333pt;}
.ws49{word-spacing:1.936000pt;}
.ws4d{word-spacing:2.053333pt;}
.ws23{word-spacing:2.112000pt;}
.ws59{word-spacing:2.170667pt;}
.ws40{word-spacing:2.229333pt;}
.ws7{word-spacing:2.405333pt;}
.wsba{word-spacing:2.464000pt;}
.ws18{word-spacing:2.522667pt;}
.ws96{word-spacing:2.581333pt;}
.ws84{word-spacing:2.640000pt;}
.ws97{word-spacing:2.698667pt;}
.ws53{word-spacing:2.874667pt;}
.ws39{word-spacing:2.933333pt;}
.ws27{word-spacing:2.992000pt;}
.ws22{word-spacing:3.050667pt;}
.wsa3{word-spacing:3.226667pt;}
.ws86{word-spacing:3.344000pt;}
.ws5e{word-spacing:3.402667pt;}
.ws48{word-spacing:3.461333pt;}
.wsa8{word-spacing:3.520000pt;}
.ws9f{word-spacing:3.578667pt;}
.ws50{word-spacing:3.754667pt;}
.ws41{word-spacing:3.813333pt;}
.ws5c{word-spacing:3.872000pt;}
.ws35{word-spacing:3.930667pt;}
.ws6a{word-spacing:4.048000pt;}
.ws16{word-spacing:4.165333pt;}
.ws1e{word-spacing:4.224000pt;}
.ws99{word-spacing:4.341333pt;}
.ws2d{word-spacing:4.400000pt;}
.ws43{word-spacing:4.576000pt;}
.ws72{word-spacing:4.634667pt;}
.ws1f{word-spacing:4.869333pt;}
.ws90{word-spacing:4.928000pt;}
.ws94{word-spacing:5.045333pt;}
.ws52{word-spacing:5.104000pt;}
.ws2e{word-spacing:5.162667pt;}
.ws7b{word-spacing:5.280000pt;}
.ws19{word-spacing:5.338667pt;}
.wsb1{word-spacing:5.397333pt;}
.ws6{word-spacing:5.456000pt;}
.ws29{word-spacing:5.514667pt;}
.ws5b{word-spacing:5.573333pt;}
.ws14{word-spacing:5.632000pt;}
.ws1a{word-spacing:5.808000pt;}
.ws63{word-spacing:6.042667pt;}
.ws15{word-spacing:6.160000pt;}
.ws92{word-spacing:6.218667pt;}
.ws24{word-spacing:6.277333pt;}
.ws56{word-spacing:6.336000pt;}
.ws1c{word-spacing:6.629333pt;}
.ws10{word-spacing:6.688000pt;}
.ws25{word-spacing:6.746667pt;}
.ws42{word-spacing:6.805333pt;}
.wse{word-spacing:6.922667pt;}
.ws8f{word-spacing:7.098667pt;}
.ws13{word-spacing:7.274667pt;}
.ws9c{word-spacing:7.333333pt;}
.ws9d{word-spacing:7.450667pt;}
.ws83{word-spacing:7.509333pt;}
.ws38{word-spacing:7.626667pt;}
.ws4a{word-spacing:7.685333pt;}
.ws8a{word-spacing:7.861333pt;}
.ws5f{word-spacing:7.978667pt;}
.wsb{word-spacing:8.096000pt;}
.ws78{word-spacing:8.154667pt;}
.ws68{word-spacing:8.330667pt;}
.ws5a{word-spacing:8.389333pt;}
.ws71{word-spacing:8.506667pt;}
.ws26{word-spacing:8.565333pt;}
.ws2{word-spacing:8.800000pt;}
.ws47{word-spacing:8.858667pt;}
.ws32{word-spacing:8.917333pt;}
.ws37{word-spacing:9.034667pt;}
.ws46{word-spacing:9.386667pt;}
.ws8{word-spacing:9.445333pt;}
.ws2a{word-spacing:9.504000pt;}
.ws8c{word-spacing:9.797333pt;}
.ws55{word-spacing:9.856000pt;}
.ws60{word-spacing:9.973333pt;}
.ws6d{word-spacing:10.090667pt;}
.wsb4{word-spacing:10.208000pt;}
.ws34{word-spacing:10.325333pt;}
.ws4f{word-spacing:10.442667pt;}
.wsa1{word-spacing:10.501333pt;}
.wsf{word-spacing:10.736000pt;}
.ws8b{word-spacing:10.912000pt;}
.ws7f{word-spacing:10.970667pt;}
.ws87{word-spacing:11.088000pt;}
.ws6e{word-spacing:11.322667pt;}
.ws7c{word-spacing:11.381333pt;}
.ws85{word-spacing:11.440000pt;}
.ws28{word-spacing:11.616000pt;}
.ws6c{word-spacing:11.674667pt;}
.ws76{word-spacing:11.733333pt;}
.ws2c{word-spacing:11.968000pt;}
.ws51{word-spacing:12.202667pt;}
.ws54{word-spacing:12.554667pt;}
.ws67{word-spacing:12.672000pt;}
.wsd{word-spacing:12.789333pt;}
.ws20{word-spacing:12.906667pt;}
.ws57{word-spacing:13.258667pt;}
.ws95{word-spacing:13.434667pt;}
.ws4e{word-spacing:13.728000pt;}
.wsa5{word-spacing:13.786667pt;}
.ws3{word-spacing:14.138667pt;}
.wsa0{word-spacing:14.725333pt;}
.ws73{word-spacing:15.018667pt;}
.wsb9{word-spacing:15.253333pt;}
.wsbb{word-spacing:15.312000pt;}
.ws3a{word-spacing:15.429333pt;}
.ws7a{word-spacing:15.898667pt;}
.wsb2{word-spacing:16.016000pt;}
.wsaf{word-spacing:16.074667pt;}
.ws30{word-spacing:17.541333pt;}
.wsb6{word-spacing:17.658667pt;}
.wsa7{word-spacing:17.776000pt;}
.ws4{word-spacing:18.597333pt;}
.ws7e{word-spacing:19.712000pt;}
.ws3b{word-spacing:19.946667pt;}
.ws89{word-spacing:20.357333pt;}
.ws1b{word-spacing:20.709333pt;}
.wsb3{word-spacing:21.530667pt;}
.wsc{word-spacing:24.346667pt;}
.wsad{word-spacing:747.660800pt;}
.wsae{word-spacing:799.542933pt;}
._14{margin-left:-7.604267pt;}
._0{margin-left:-6.586467pt;}
._3{margin-left:-5.577600pt;}
._1{margin-left:-3.824000pt;}
._4{margin-left:-2.725333pt;}
._2{margin-left:-1.336533pt;}
._6{width:1.566400pt;}
._9{width:2.839467pt;}
._a{width:3.964067pt;}
._8{width:5.321067pt;}
._b{width:6.855467pt;}
._7{width:7.914133pt;}
._c{width:9.404267pt;}
._10{width:10.418133pt;}
._d{width:12.214400pt;}
._e{width:15.100800pt;}
._5{width:18.309867pt;}
._13{width:19.846933pt;}
._12{width:20.938133pt;}
._11{width:38.286933pt;}
._f{width:59.157333pt;}
._1e{width:150.231467pt;}
._1d{width:162.816533pt;}
._19{width:173.792533pt;}
._18{width:185.130667pt;}
._17{width:199.569600pt;}
._1a{width:243.590933pt;}
._1c{width:258.901867pt;}
._1f{width:262.536334pt;}
._1b{width:292.273067pt;}
._16{width:593.521067pt;}
._15{width:823.240000pt;}
.fs9{font-size:24.874667pt;}
.fs5{font-size:31.093333pt;}
.fs7{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs8{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:177.532800pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:63.070267pt;}
.yd8{bottom:65.516533pt;}
.y2{bottom:75.590533pt;}
.y143{bottom:75.924933pt;}
.y10b{bottom:79.149067pt;}
.y83{bottom:80.188400pt;}
.y30{bottom:80.519200pt;}
.yd7{bottom:82.183200pt;}
.y117{bottom:82.786400pt;}
.yfd{bottom:83.516533pt;}
.yac{bottom:85.752667pt;}
.y50{bottom:91.365333pt;}
.y110{bottom:92.052000pt;}
.y142{bottom:92.591600pt;}
.y82{bottom:96.855067pt;}
.y2f{bottom:97.185867pt;}
.yd6{bottom:98.849867pt;}
.yfc{bottom:100.183200pt;}
.yab{bottom:102.419333pt;}
.y4f{bottom:108.032000pt;}
.y10f{bottom:108.718667pt;}
.y141{bottom:109.258267pt;}
.y81{bottom:113.521733pt;}
.y2e{bottom:113.852533pt;}
.yd5{bottom:115.516533pt;}
.yaa{bottom:119.086000pt;}
.yfb{bottom:120.629333pt;}
.y4e{bottom:124.698667pt;}
.y10e{bottom:125.385333pt;}
.y140{bottom:129.704533pt;}
.y80{bottom:130.188400pt;}
.y2d{bottom:130.519200pt;}
.yd4{bottom:132.183200pt;}
.ya9{bottom:135.752667pt;}
.yfa{bottom:137.296000pt;}
.y4d{bottom:141.365333pt;}
.y161{bottom:144.855200pt;}
.y13f{bottom:146.371200pt;}
.y7f{bottom:146.855067pt;}
.yd3{bottom:148.849867pt;}
.ya8{bottom:152.419333pt;}
.yf9{bottom:157.742267pt;}
.y4c{bottom:158.032000pt;}
.y2c{bottom:158.524400pt;}
.y160{bottom:161.521867pt;}
.y13e{bottom:163.037867pt;}
.y7e{bottom:163.521733pt;}
.yd2{bottom:165.516533pt;}
.ya7{bottom:169.086000pt;}
.yf8{bottom:174.408933pt;}
.y4b{bottom:174.698667pt;}
.y15f{bottom:178.188533pt;}
.y13d{bottom:179.704533pt;}
.y7d{bottom:180.188400pt;}
.yd1{bottom:182.183200pt;}
.ya6{bottom:185.752667pt;}
.y2b{bottom:186.303867pt;}
.yf7{bottom:191.075600pt;}
.y4a{bottom:191.365333pt;}
.y15e{bottom:194.855200pt;}
.y13c{bottom:196.371200pt;}
.y7c{bottom:196.855067pt;}
.ya5{bottom:202.419333pt;}
.y2a{bottom:206.750133pt;}
.yd0{bottom:210.188533pt;}
.yf6{bottom:211.521867pt;}
.y13b{bottom:213.037867pt;}
.y7b{bottom:217.301200pt;}
.ya4{bottom:219.086000pt;}
.y49{bottom:219.370667pt;}
.y29{bottom:223.416800pt;}
.yf5{bottom:228.188533pt;}
.y13a{bottom:229.704533pt;}
.y15d{bottom:231.968000pt;}
.y7a{bottom:233.967867pt;}
.ya3{bottom:239.532267pt;}
.y28{bottom:240.083467pt;}
.ycf{bottom:241.527067pt;}
.yf4{bottom:244.855200pt;}
.y139{bottom:246.371200pt;}
.y10d{bottom:247.552800pt;}
.y15c{bottom:248.634667pt;}
.y48{bottom:248.929600pt;}
.y79{bottom:250.634533pt;}
.ya2{bottom:256.198933pt;}
.y27{bottom:256.750133pt;}
.yce{bottom:258.193733pt;}
.yf3{bottom:261.521867pt;}
.y138{bottom:263.037867pt;}
.y15b{bottom:265.301333pt;}
.y78{bottom:267.301200pt;}
.ya1{bottom:272.865467pt;}
.y26{bottom:273.416800pt;}
.ycd{bottom:274.860400pt;}
.yf2{bottom:278.188400pt;}
.y189{bottom:278.190667pt;}
.y15a{bottom:281.968000pt;}
.y137{bottom:283.484000pt;}
.y77{bottom:283.967867pt;}
.ya0{bottom:289.532133pt;}
.y25{bottom:290.083467pt;}
.ycc{bottom:291.527067pt;}
.yf1{bottom:294.855067pt;}
.y47{bottom:297.642533pt;}
.y188{bottom:298.303600pt;}
.y159{bottom:298.634667pt;}
.y136{bottom:300.150667pt;}
.y9f{bottom:306.198800pt;}
.y24{bottom:306.750133pt;}
.ycb{bottom:308.193733pt;}
.yf0{bottom:311.521733pt;}
.y76{bottom:311.973200pt;}
.y135{bottom:316.817333pt;}
.y46{bottom:318.088667pt;}
.y187{bottom:318.677200pt;}
.y158{bottom:319.080800pt;}
.y9e{bottom:322.865467pt;}
.y23{bottom:323.416800pt;}
.yca{bottom:324.860400pt;}
.yef{bottom:328.188400pt;}
.y134{bottom:333.484000pt;}
.y45{bottom:334.755333pt;}
.y157{bottom:335.747467pt;}
.y186{bottom:339.050933pt;}
.y9d{bottom:339.532133pt;}
.y22{bottom:340.083467pt;}
.yc9{bottom:341.527067pt;}
.y75{bottom:343.311733pt;}
.yee{bottom:344.855067pt;}
.y133{bottom:350.150667pt;}
.y44{bottom:351.422000pt;}
.y156{bottom:352.414133pt;}
.y9c{bottom:356.198800pt;}
.y21{bottom:356.750133pt;}
.yc8{bottom:358.193733pt;}
.y74{bottom:359.978400pt;}
.y132{bottom:366.817333pt;}
.y43{bottom:368.088667pt;}
.y155{bottom:369.080800pt;}
.yed{bottom:372.860400pt;}
.y9b{bottom:372.865467pt;}
.y185{bottom:373.091333pt;}
.y20{bottom:373.416800pt;}
.yc7{bottom:374.860400pt;}
.y73{bottom:376.645067pt;}
.y131{bottom:383.484000pt;}
.y42{bottom:384.755333pt;}
.y154{bottom:385.747467pt;}
.y9a{bottom:389.532133pt;}
.y1f{bottom:390.083467pt;}
.yc6{bottom:391.527067pt;}
.y72{bottom:397.091333pt;}
.y130{bottom:400.150667pt;}
.y41{bottom:401.422000pt;}
.y153{bottom:402.414133pt;}
.y184{bottom:402.424667pt;}
.y99{bottom:406.198800pt;}
.yec{bottom:406.198933pt;}
.y1e{bottom:406.750133pt;}
.yc5{bottom:408.193733pt;}
.y71{bottom:413.758000pt;}
.y12f{bottom:416.817333pt;}
.y40{bottom:418.088667pt;}
.y183{bottom:418.424667pt;}
.y152{bottom:419.080800pt;}
.y98{bottom:422.865467pt;}
.yeb{bottom:422.865600pt;}
.y1d{bottom:423.416800pt;}
.yc4{bottom:424.860400pt;}
.y70{bottom:430.424667pt;}
.y12e{bottom:433.484000pt;}
.y182{bottom:434.424667pt;}
.y3f{bottom:434.755333pt;}
.y151{bottom:439.527067pt;}
.y97{bottom:439.532133pt;}
.yea{bottom:439.532267pt;}
.y1c{bottom:440.083467pt;}
.yc3{bottom:441.527067pt;}
.y6f{bottom:447.091333pt;}
.y12d{bottom:450.150667pt;}
.y3e{bottom:451.422000pt;}
.y116{bottom:456.119733pt;}
.y150{bottom:456.193733pt;}
.y96{bottom:456.198800pt;}
.ye9{bottom:456.198933pt;}
.y1b{bottom:456.750133pt;}
.yc2{bottom:458.193733pt;}
.y181{bottom:461.763200pt;}
.y6e{bottom:463.758000pt;}
.y3d{bottom:468.088667pt;}
.y12c{bottom:470.596933pt;}
.y14f{bottom:472.860400pt;}
.y95{bottom:472.865467pt;}
.ye8{bottom:472.865600pt;}
.y1a{bottom:473.416800pt;}
.yc1{bottom:474.860400pt;}
.y6d{bottom:480.424667pt;}
.y3c{bottom:484.755333pt;}
.y12b{bottom:487.263600pt;}
.y14e{bottom:489.527067pt;}
.ye7{bottom:489.532267pt;}
.y19{bottom:490.083467pt;}
.yc0{bottom:491.527067pt;}
.y94{bottom:493.311733pt;}
.y6c{bottom:497.091333pt;}
.y3b{bottom:501.422000pt;}
.y115{bottom:501.527067pt;}
.y12a{bottom:503.930267pt;}
.y14d{bottom:506.193733pt;}
.ye6{bottom:506.198933pt;}
.y18{bottom:506.750133pt;}
.y179{bottom:507.747467pt;}
.ybf{bottom:508.193733pt;}
.y93{bottom:509.978400pt;}
.y6b{bottom:513.758000pt;}
.y3a{bottom:518.088667pt;}
.y114{bottom:518.193733pt;}
.y129{bottom:520.596933pt;}
.y14c{bottom:522.860400pt;}
.y180{bottom:522.865600pt;}
.y17{bottom:523.416800pt;}
.y178{bottom:524.414133pt;}
.ybe{bottom:524.860400pt;}
.y92{bottom:526.645067pt;}
.ye5{bottom:526.645200pt;}
.y6a{bottom:530.424667pt;}
.y39{bottom:534.755333pt;}
.y113{bottom:534.860400pt;}
.y128{bottom:537.263600pt;}
.y17f{bottom:539.532267pt;}
.y16{bottom:540.083467pt;}
.ybd{bottom:541.527067pt;}
.y91{bottom:543.311733pt;}
.ye4{bottom:543.311867pt;}
.y177{bottom:544.860400pt;}
.y69{bottom:547.091333pt;}
.y14b{bottom:550.865600pt;}
.y38{bottom:551.422000pt;}
.y112{bottom:551.527067pt;}
.y127{bottom:553.930267pt;}
.y17e{bottom:556.198933pt;}
.y15{bottom:556.750133pt;}
.ybc{bottom:558.193733pt;}
.y10a{bottom:559.149067pt;}
.y90{bottom:559.978400pt;}
.ye3{bottom:559.978533pt;}
.y176{bottom:561.527067pt;}
.y68{bottom:563.758000pt;}
.y37{bottom:568.088667pt;}
.y126{bottom:570.596933pt;}
.y14{bottom:573.416800pt;}
.ybb{bottom:574.860400pt;}
.y8f{bottom:576.645067pt;}
.ye2{bottom:576.645200pt;}
.y175{bottom:578.193733pt;}
.y67{bottom:580.424667pt;}
.y14a{bottom:584.204133pt;}
.y36{bottom:584.755333pt;}
.y109{bottom:586.487600pt;}
.y125{bottom:587.263600pt;}
.y13{bottom:590.083467pt;}
.yba{bottom:591.527067pt;}
.y8e{bottom:593.311733pt;}
.ye1{bottom:593.311867pt;}
.y174{bottom:594.860400pt;}
.y66{bottom:597.091333pt;}
.y149{bottom:600.870800pt;}
.y35{bottom:601.422000pt;}
.y124{bottom:603.930267pt;}
.y111{bottom:605.621067pt;}
.y12{bottom:606.750133pt;}
.yb9{bottom:608.193733pt;}
.y8d{bottom:609.978400pt;}
.y17d{bottom:609.978533pt;}
.y173{bottom:611.527067pt;}
.y65{bottom:613.757867pt;}
.ye0{bottom:613.758000pt;}
.y148{bottom:617.537467pt;}
.y34{bottom:618.088667pt;}
.y123{bottom:620.596933pt;}
.y11{bottom:623.416800pt;}
.yb8{bottom:624.860400pt;}
.y106{bottom:626.645200pt;}
.y172{bottom:628.193733pt;}
.y64{bottom:630.424533pt;}
.ydf{bottom:630.424667pt;}
.y147{bottom:634.204133pt;}
.y33{bottom:634.755333pt;}
.y122{bottom:637.263600pt;}
.y10{bottom:640.083467pt;}
.y105{bottom:643.311867pt;}
.y171{bottom:644.860400pt;}
.y63{bottom:647.091200pt;}
.yde{bottom:647.091333pt;}
.y108{bottom:650.870800pt;}
.y32{bottom:651.422000pt;}
.yb7{bottom:652.865600pt;}
.y121{bottom:653.930267pt;}
.yf{bottom:656.750133pt;}
.y17c{bottom:659.978533pt;}
.y62{bottom:663.757867pt;}
.ydd{bottom:663.758000pt;}
.y170{bottom:665.306533pt;}
.y107{bottom:667.537467pt;}
.y31{bottom:668.088667pt;}
.y120{bottom:670.596933pt;}
.y17b{bottom:676.645200pt;}
.y61{bottom:680.424533pt;}
.ydc{bottom:680.424667pt;}
.y16f{bottom:681.973200pt;}
.yb6{bottom:684.204133pt;}
.ye{bottom:684.755333pt;}
.y11f{bottom:687.263467pt;}
.y17a{bottom:693.311867pt;}
.y60{bottom:697.091200pt;}
.ydb{bottom:697.091333pt;}
.y16e{bottom:698.639867pt;}
.yb5{bottom:700.870800pt;}
.y11e{bottom:703.930133pt;}
.yd{bottom:713.486267pt;}
.y5f{bottom:713.757867pt;}
.yda{bottom:713.758000pt;}
.yb4{bottom:717.537467pt;}
.y16d{bottom:719.086133pt;}
.y11d{bottom:720.596800pt;}
.yc{bottom:729.486267pt;}
.y5e{bottom:730.424533pt;}
.yd9{bottom:730.424667pt;}
.yb3{bottom:734.204133pt;}
.y16c{bottom:735.752800pt;}
.y11c{bottom:737.263467pt;}
.y8c{bottom:747.091200pt;}
.y104{bottom:747.091333pt;}
.yb{bottom:749.926267pt;}
.y5d{bottom:750.870800pt;}
.y11b{bottom:753.930133pt;}
.y16b{bottom:756.198933pt;}
.y8b{bottom:763.757867pt;}
.y103{bottom:763.758000pt;}
.y18f{bottom:764.792933pt;}
.ya{bottom:765.926267pt;}
.y5c{bottom:767.537467pt;}
.y11a{bottom:770.596800pt;}
.y16a{bottom:772.865600pt;}
.y9{bottom:777.486267pt;}
.y8a{bottom:780.424533pt;}
.y102{bottom:780.424667pt;}
.y5b{bottom:784.204133pt;}
.y119{bottom:787.263600pt;}
.y169{bottom:789.532267pt;}
.y10c{bottom:791.552800pt;}
.y18e{bottom:794.792933pt;}
.y89{bottom:797.091200pt;}
.y101{bottom:797.091333pt;}
.y5a{bottom:800.870800pt;}
.y146{bottom:804.650400pt;}
.y168{bottom:806.198933pt;}
.y8{bottom:813.265733pt;}
.y88{bottom:813.757867pt;}
.y100{bottom:813.758000pt;}
.y118{bottom:814.596933pt;}
.y59{bottom:817.537467pt;}
.y145{bottom:821.317067pt;}
.y167{bottom:826.645200pt;}
.y87{bottom:830.424533pt;}
.yff{bottom:830.424667pt;}
.y58{bottom:834.204133pt;}
.y144{bottom:837.983733pt;}
.y166{bottom:843.311867pt;}
.y18d{bottom:844.833333pt;}
.y7{bottom:845.265733pt;}
.y86{bottom:847.091200pt;}
.y57{bottom:850.870800pt;}
.yb2{bottom:854.650400pt;}
.y165{bottom:859.978533pt;}
.y18c{bottom:865.540400pt;}
.y56{bottom:867.537467pt;}
.yb1{bottom:871.317067pt;}
.y6{bottom:874.599067pt;}
.y164{bottom:876.645200pt;}
.y85{bottom:884.204133pt;}
.y55{bottom:887.983600pt;}
.yb0{bottom:887.983733pt;}
.y163{bottom:893.311867pt;}
.y84{bottom:900.870800pt;}
.y54{bottom:904.650267pt;}
.yaf{bottom:904.650400pt;}
.y5{bottom:909.621067pt;}
.y162{bottom:909.978533pt;}
.y18b{bottom:912.914000pt;}
.y53{bottom:921.316933pt;}
.yae{bottom:921.317067pt;}
.y4{bottom:924.287733pt;}
.y18a{bottom:933.287733pt;}
.y52{bottom:937.983600pt;}
.yad{bottom:937.983733pt;}
.y3{bottom:938.954400pt;}
.y1{bottom:985.150267pt;}
.y51{bottom:986.095200pt;}
.h9{height:22.667161pt;}
.h10{height:38.520833pt;}
.hf{height:38.828125pt;}
.h5{height:38.880208pt;}
.hb{height:42.768229pt;}
.he{height:44.469344pt;}
.hd{height:44.469878pt;}
.h7{height:46.656250pt;}
.h11{height:47.812500pt;}
.h4{height:48.151042pt;}
.hc{height:52.593750pt;}
.ha{height:52.966146pt;}
.h2{height:54.432292pt;}
.h8{height:57.781250pt;}
.h6{height:67.411458pt;}
.h3{height:160.282298pt;}
.h1{height:1062.000000pt;}
.h0{height:1062.046667pt;}
.w1{width:831.333333pt;}
.w0{width:831.496000pt;}
.x0{left:0.000000pt;}
.x10{left:75.590533pt;}
.x19{left:86.929200pt;}
.xf{left:94.488133pt;}
.x27{left:101.732400pt;}
.x18{left:105.826800pt;}
.x17{left:110.933600pt;}
.x15{left:112.785867pt;}
.x8{left:115.119067pt;}
.x1f{left:117.326800pt;}
.x24{left:136.096667pt;}
.x6{left:144.890000pt;}
.xc{left:150.025333pt;}
.x22{left:173.277600pt;}
.x23{left:177.359600pt;}
.x11{left:201.339467pt;}
.xe{left:204.999067pt;}
.xb{left:208.274000pt;}
.x7{left:212.301467pt;}
.x26{left:221.154933pt;}
.x9{left:234.288667pt;}
.x16{left:255.424000pt;}
.x1e{left:269.787733pt;}
.xa{left:271.659467pt;}
.x1c{left:286.014933pt;}
.x1b{left:290.458267pt;}
.x21{left:296.806000pt;}
.x25{left:311.268933pt;}
.xd{left:353.781867pt;}
.x20{left:375.132800pt;}
.x1d{left:384.778267pt;}
.x12{left:423.748000pt;}
.x1a{left:435.086533pt;}
.x13{left:442.645600pt;}
.x4{left:452.233600pt;}
.x14{left:466.645600pt;}
.x5{left:491.699733pt;}
.x3{left:689.238800pt;}
.x1{left:735.142533pt;}
.x2{left:807.046667pt;}
}




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