
    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_437c68567bd319043de8122a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_3600395c880dace5edd9408d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.979000;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_4293e2430225676170b2224c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_cb1c6c96c8284ae664faac28.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.913000;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.000000px;}
.v1{vertical-align:21.978600px;}
.ls7{letter-spacing:-7.392000px;}
.ls3{letter-spacing:-0.990000px;}
.ls4{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.462000px;}
.ls2{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.660000px;}
.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;}
}
.ws7{word-spacing:-20.160000px;}
.ws76{word-spacing:-14.520000px;}
.ws43{word-spacing:-11.880000px;}
.ws9{word-spacing:-11.610000px;}
.wsb{word-spacing:-5.676000px;}
.wsb4{word-spacing:-3.828000px;}
.ws96{word-spacing:-3.564000px;}
.ws56{word-spacing:-3.366000px;}
.ws67{word-spacing:-3.036000px;}
.ws8b{word-spacing:-2.640000px;}
.ws11{word-spacing:-2.442000px;}
.ws73{word-spacing:-2.376000px;}
.ws34{word-spacing:-2.112000px;}
.ws36{word-spacing:-2.046000px;}
.ws22{word-spacing:-1.980000px;}
.wse{word-spacing:-1.914000px;}
.ws23{word-spacing:-1.848000px;}
.wsb9{word-spacing:-1.782000px;}
.ws9d{word-spacing:-1.716000px;}
.ws46{word-spacing:-1.650000px;}
.ws98{word-spacing:-1.584000px;}
.ws6e{word-spacing:-1.518000px;}
.wsb6{word-spacing:-1.386000px;}
.wsb8{word-spacing:-1.320000px;}
.wsc{word-spacing:-1.254000px;}
.ws68{word-spacing:-1.188000px;}
.wsa{word-spacing:-1.122000px;}
.ws55{word-spacing:-1.056000px;}
.wsb7{word-spacing:-0.924000px;}
.ws6{word-spacing:-0.810000px;}
.ws72{word-spacing:-0.726000px;}
.ws6a{word-spacing:-0.660000px;}
.ws9a{word-spacing:-0.462000px;}
.ws61{word-spacing:-0.330000px;}
.ws18{word-spacing:-0.066000px;}
.ws52{word-spacing:-0.054000px;}
.ws0{word-spacing:0.000000px;}
.ws7e{word-spacing:0.066000px;}
.ws6d{word-spacing:0.132000px;}
.ws14{word-spacing:0.198000px;}
.wsaa{word-spacing:0.330000px;}
.ws87{word-spacing:0.462000px;}
.ws8e{word-spacing:0.528000px;}
.ws13{word-spacing:0.594000px;}
.ws4{word-spacing:0.660000px;}
.ws17{word-spacing:0.726000px;}
.ws86{word-spacing:0.792000px;}
.ws99{word-spacing:0.858000px;}
.ws69{word-spacing:0.924000px;}
.ws66{word-spacing:0.990000px;}
.ws74{word-spacing:1.056000px;}
.ws1{word-spacing:1.188000px;}
.ws6c{word-spacing:1.386000px;}
.ws8d{word-spacing:1.452000px;}
.ws41{word-spacing:1.518000px;}
.wsb5{word-spacing:1.650000px;}
.ws1d{word-spacing:1.716000px;}
.ws24{word-spacing:1.782000px;}
.wsb2{word-spacing:1.848000px;}
.ws7a{word-spacing:1.914000px;}
.ws51{word-spacing:1.980000px;}
.wsab{word-spacing:2.112000px;}
.ws16{word-spacing:2.178000px;}
.ws20{word-spacing:2.310000px;}
.ws12{word-spacing:2.376000px;}
.ws78{word-spacing:2.508000px;}
.ws40{word-spacing:2.574000px;}
.ws6f{word-spacing:2.640000px;}
.ws58{word-spacing:2.706000px;}
.ws3f{word-spacing:2.772000px;}
.ws64{word-spacing:2.838000px;}
.ws31{word-spacing:2.970000px;}
.ws5c{word-spacing:3.036000px;}
.ws38{word-spacing:3.102000px;}
.ws9c{word-spacing:3.168000px;}
.ws19{word-spacing:3.234000px;}
.ws27{word-spacing:3.366000px;}
.ws25{word-spacing:3.432000px;}
.wsb3{word-spacing:3.498000px;}
.ws26{word-spacing:3.564000px;}
.ws44{word-spacing:3.630000px;}
.ws15{word-spacing:3.696000px;}
.ws65{word-spacing:3.894000px;}
.ws77{word-spacing:3.960000px;}
.ws37{word-spacing:4.158000px;}
.ws2c{word-spacing:4.224000px;}
.ws5e{word-spacing:4.488000px;}
.wsad{word-spacing:4.554000px;}
.ws2a{word-spacing:4.686000px;}
.ws95{word-spacing:4.818000px;}
.ws10{word-spacing:4.884000px;}
.ws7f{word-spacing:5.016000px;}
.ws7b{word-spacing:5.082000px;}
.wsa9{word-spacing:5.148000px;}
.wsba{word-spacing:5.214000px;}
.ws4b{word-spacing:5.280000px;}
.ws70{word-spacing:5.346000px;}
.ws63{word-spacing:5.412000px;}
.ws4f{word-spacing:5.478000px;}
.wsa0{word-spacing:5.544000px;}
.ws79{word-spacing:5.610000px;}
.ws54{word-spacing:5.742000px;}
.wsbd{word-spacing:5.808000px;}
.ws1f{word-spacing:5.874000px;}
.wsf{word-spacing:5.940000px;}
.ws1a{word-spacing:6.072000px;}
.ws7c{word-spacing:6.138000px;}
.ws3{word-spacing:6.270000px;}
.ws4a{word-spacing:6.336000px;}
.ws89{word-spacing:6.468000px;}
.ws2b{word-spacing:6.534000px;}
.ws8f{word-spacing:6.600000px;}
.ws49{word-spacing:6.732000px;}
.ws3b{word-spacing:6.798000px;}
.ws5{word-spacing:6.864000px;}
.ws3e{word-spacing:6.930000px;}
.ws4c{word-spacing:6.996000px;}
.ws2{word-spacing:7.062000px;}
.wsa1{word-spacing:7.194000px;}
.ws50{word-spacing:7.260000px;}
.ws3d{word-spacing:7.392000px;}
.ws5f{word-spacing:7.458000px;}
.ws1b{word-spacing:7.524000px;}
.ws91{word-spacing:7.656000px;}
.ws7d{word-spacing:7.722000px;}
.wsae{word-spacing:7.788000px;}
.ws71{word-spacing:8.250000px;}
.ws33{word-spacing:8.316000px;}
.ws93{word-spacing:8.448000px;}
.ws5d{word-spacing:8.580000px;}
.ws81{word-spacing:8.646000px;}
.wsbc{word-spacing:8.910000px;}
.ws62{word-spacing:9.042000px;}
.ws4e{word-spacing:9.240000px;}
.wsb1{word-spacing:9.504000px;}
.ws45{word-spacing:9.702000px;}
.wsa4{word-spacing:9.768000px;}
.ws60{word-spacing:9.900000px;}
.wsa5{word-spacing:9.966000px;}
.wsaf{word-spacing:10.098000px;}
.ws3a{word-spacing:10.230000px;}
.wsa6{word-spacing:10.362000px;}
.ws6b{word-spacing:10.560000px;}
.ws5a{word-spacing:10.626000px;}
.ws47{word-spacing:10.758000px;}
.wsa8{word-spacing:10.824000px;}
.wsb0{word-spacing:10.956000px;}
.ws80{word-spacing:11.022000px;}
.ws9b{word-spacing:11.154000px;}
.ws92{word-spacing:11.484000px;}
.wsa3{word-spacing:11.616000px;}
.ws83{word-spacing:11.682000px;}
.ws2f{word-spacing:11.748000px;}
.ws9e{word-spacing:11.880000px;}
.wsd{word-spacing:12.012000px;}
.ws1c{word-spacing:12.144000px;}
.ws59{word-spacing:12.210000px;}
.ws57{word-spacing:12.276000px;}
.ws90{word-spacing:12.474000px;}
.ws2d{word-spacing:12.738000px;}
.ws84{word-spacing:12.804000px;}
.ws1e{word-spacing:13.002000px;}
.ws32{word-spacing:13.200000px;}
.wsac{word-spacing:13.266000px;}
.ws4d{word-spacing:13.596000px;}
.ws8a{word-spacing:13.728000px;}
.ws94{word-spacing:14.058000px;}
.ws35{word-spacing:14.388000px;}
.ws75{word-spacing:14.586000px;}
.ws39{word-spacing:14.916000px;}
.ws3c{word-spacing:15.048000px;}
.ws2e{word-spacing:15.708000px;}
.ws28{word-spacing:15.774000px;}
.ws97{word-spacing:15.906000px;}
.ws82{word-spacing:16.962000px;}
.wsa7{word-spacing:17.292000px;}
.ws30{word-spacing:17.358000px;}
.ws42{word-spacing:18.546000px;}
.ws29{word-spacing:18.876000px;}
.ws21{word-spacing:18.942000px;}
.ws48{word-spacing:19.800000px;}
.ws9f{word-spacing:21.780000px;}
.ws88{word-spacing:22.308000px;}
.ws5b{word-spacing:26.532000px;}
.wsa2{word-spacing:27.918000px;}
.ws85{word-spacing:34.848000px;}
.ws8c{word-spacing:34.914000px;}
.wsbb{word-spacing:37.356000px;}
.wsbe{word-spacing:44.418000px;}
.ws8{word-spacing:374.202000px;}
.ws53{word-spacing:651.585000px;}
._d{margin-left:-11.880000px;}
._16{margin-left:-10.619400px;}
._15{margin-left:-9.047400px;}
._2{margin-left:-7.800000px;}
._1{margin-left:-6.306000px;}
._6{margin-left:-5.286600px;}
._3{margin-left:-4.212000px;}
._0{margin-left:-2.532000px;}
._4{margin-left:-1.122000px;}
._5{width:1.801800px;}
._21{width:2.870400px;}
._23{width:4.019400px;}
._22{width:7.392000px;}
._1c{width:32.268000px;}
._1f{width:43.848000px;}
._1e{width:45.564000px;}
._1d{width:55.992000px;}
._9{width:80.646000px;}
._14{width:92.676000px;}
._f{width:119.046000px;}
._8{width:159.174000px;}
._12{width:296.880600px;}
._20{width:313.527600px;}
._7{width:346.554000px;}
._13{width:351.582600px;}
._e{width:357.522600px;}
._c{width:363.022800px;}
._11{width:373.614600px;}
._10{width:399.264600px;}
._19{width:427.519200px;}
._1a{width:435.025200px;}
._b{width:444.150000px;}
._17{width:452.359200px;}
._1b{width:461.161200px;}
._a{width:557.577000px;}
._18{width:766.065000px;}
.fc1{color:rgb(25,31,69);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:38.478000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:96.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.yfa{bottom:126.745800px;}
.ye7{bottom:127.585800px;}
.yaa{bottom:128.528100px;}
.y6d{bottom:133.011600px;}
.yf9{bottom:142.945800px;}
.ye6{bottom:148.585800px;}
.ya9{bottom:149.528100px;}
.y56{bottom:150.276900px;}
.y3a{bottom:151.275600px;}
.y6c{bottom:154.011600px;}
.y13a{bottom:154.960950px;}
.yf8{bottom:168.923100px;}
.ye5{bottom:169.585800px;}
.ya8{bottom:170.528100px;}
.y55{bottom:171.276900px;}
.y39{bottom:172.275600px;}
.y6b{bottom:175.011600px;}
.y139{bottom:175.960950px;}
.yf7{bottom:189.923100px;}
.ye4{bottom:190.585800px;}
.yac{bottom:191.528100px;}
.y54{bottom:192.276900px;}
.y38{bottom:193.275600px;}
.y6a{bottom:196.011600px;}
.yf6{bottom:210.923100px;}
.ye3{bottom:211.585800px;}
.ya7{bottom:212.528100px;}
.y53{bottom:213.276900px;}
.y37{bottom:214.275600px;}
.y138{bottom:216.460950px;}
.y69{bottom:217.011600px;}
.yd{bottom:229.390800px;}
.yf5{bottom:231.923100px;}
.ye2{bottom:232.585800px;}
.ya6{bottom:233.528100px;}
.y52{bottom:234.276900px;}
.y36{bottom:235.275600px;}
.y137{bottom:237.460950px;}
.y6e{bottom:238.011600px;}
.yf4{bottom:252.923100px;}
.ye1{bottom:253.585800px;}
.ya5{bottom:254.528100px;}
.y51{bottom:255.276900px;}
.y35{bottom:256.275600px;}
.y68{bottom:259.011600px;}
.yb{bottom:261.989250px;}
.yf3{bottom:273.923100px;}
.ye0{bottom:274.585800px;}
.ya4{bottom:275.528100px;}
.y50{bottom:276.276900px;}
.y34{bottom:277.275600px;}
.y136{bottom:277.960950px;}
.y67{bottom:280.011600px;}
.yc{bottom:287.867100px;}
.ydf{bottom:295.585800px;}
.yf2{bottom:296.048100px;}
.ya3{bottom:296.528100px;}
.y4f{bottom:297.276900px;}
.y33{bottom:298.275600px;}
.y66{bottom:301.011600px;}
.y11a{bottom:304.585800px;}
.yde{bottom:316.585800px;}
.yf1{bottom:317.048100px;}
.ya2{bottom:317.528100px;}
.y4e{bottom:318.276900px;}
.y135{bottom:318.460950px;}
.y65{bottom:322.011600px;}
.y119{bottom:325.585800px;}
.ydd{bottom:337.585800px;}
.yf0{bottom:338.048100px;}
.ya1{bottom:338.528100px;}
.y4d{bottom:339.276900px;}
.y134{bottom:339.460950px;}
.y32{bottom:340.275600px;}
.y64{bottom:343.011600px;}
.y118{bottom:346.585800px;}
.y10d{bottom:358.585800px;}
.yef{bottom:359.048100px;}
.ya0{bottom:359.528100px;}
.y31{bottom:361.275600px;}
.y117{bottom:367.585800px;}
.ydc{bottom:379.585800px;}
.y133{bottom:379.960950px;}
.y9f{bottom:380.528100px;}
.yee{bottom:381.173100px;}
.y4c{bottom:381.277050px;}
.y30{bottom:382.275600px;}
.y116{bottom:388.585800px;}
.y8d{bottom:392.642700px;}
.ydb{bottom:400.585800px;}
.y132{bottom:400.960950px;}
.y9e{bottom:401.528100px;}
.yed{bottom:402.173100px;}
.y4b{bottom:402.277050px;}
.y2f{bottom:403.275600px;}
.y115{bottom:409.585800px;}
.yda{bottom:421.585800px;}
.yab{bottom:422.528100px;}
.yec{bottom:423.173100px;}
.y4a{bottom:423.277050px;}
.y2e{bottom:424.275600px;}
.y8c{bottom:426.150450px;}
.y114{bottom:430.585800px;}
.y131{bottom:441.460950px;}
.yd9{bottom:442.585800px;}
.y9d{bottom:443.528100px;}
.yeb{bottom:444.173100px;}
.y49{bottom:444.277050px;}
.y2d{bottom:445.275600px;}
.y8b{bottom:447.150450px;}
.y113{bottom:451.585800px;}
.y130{bottom:462.460950px;}
.yd8{bottom:463.585800px;}
.y9c{bottom:464.528100px;}
.yea{bottom:465.173100px;}
.y48{bottom:465.277050px;}
.y2c{bottom:466.275600px;}
.y8a{bottom:468.150450px;}
.y112{bottom:472.585800px;}
.yd7{bottom:484.585800px;}
.y9b{bottom:485.528100px;}
.ye9{bottom:486.173100px;}
.y47{bottom:486.277050px;}
.y2b{bottom:487.275600px;}
.y89{bottom:489.150450px;}
.y111{bottom:493.585800px;}
.y12f{bottom:502.960950px;}
.yd6{bottom:505.585800px;}
.y9a{bottom:506.528100px;}
.y46{bottom:507.277050px;}
.y2a{bottom:508.275600px;}
.ya{bottom:512.076300px;}
.ye8{bottom:514.298100px;}
.y110{bottom:514.585800px;}
.y12e{bottom:523.960950px;}
.yd5{bottom:526.585800px;}
.y99{bottom:527.528100px;}
.y45{bottom:528.277050px;}
.y29{bottom:529.275600px;}
.y9{bottom:531.876300px;}
.y88{bottom:532.275450px;}
.y10f{bottom:535.585800px;}
.yd4{bottom:547.585800px;}
.y98{bottom:548.528100px;}
.y44{bottom:549.277050px;}
.y28{bottom:550.275600px;}
.y8{bottom:551.676300px;}
.y87{bottom:553.275450px;}
.yd0{bottom:556.585800px;}
.y12d{bottom:564.460950px;}
.yd3{bottom:568.585800px;}
.y97{bottom:569.528100px;}
.y43{bottom:570.277050px;}
.y27{bottom:571.275600px;}
.y7{bottom:571.476450px;}
.y86{bottom:574.275450px;}
.ycf{bottom:577.585800px;}
.y12c{bottom:585.460950px;}
.yd2{bottom:589.585800px;}
.y96{bottom:590.528100px;}
.y6{bottom:591.276450px;}
.y42{bottom:591.277050px;}
.y26{bottom:592.275600px;}
.y85{bottom:595.275450px;}
.yce{bottom:598.585800px;}
.y10c{bottom:610.585800px;}
.y5{bottom:611.076300px;}
.y95{bottom:611.528100px;}
.y41{bottom:612.277050px;}
.y25{bottom:613.275600px;}
.y84{bottom:616.275450px;}
.ycd{bottom:619.585800px;}
.y12b{bottom:625.960950px;}
.y94{bottom:632.528100px;}
.y40{bottom:633.277050px;}
.y24{bottom:634.275600px;}
.y83{bottom:637.275450px;}
.ycc{bottom:640.585800px;}
.y12a{bottom:646.960950px;}
.y10b{bottom:652.585800px;}
.y93{bottom:653.528100px;}
.y23{bottom:655.275600px;}
.y4{bottom:656.376450px;}
.ycb{bottom:661.585800px;}
.y10a{bottom:673.585800px;}
.y92{bottom:674.528100px;}
.y82{bottom:680.400450px;}
.yca{bottom:682.585800px;}
.y129{bottom:687.460950px;}
.y109{bottom:694.585800px;}
.y91{bottom:695.528100px;}
.y22{bottom:697.275600px;}
.y81{bottom:701.400450px;}
.yc9{bottom:703.585800px;}
.y3f{bottom:704.076900px;}
.y128{bottom:708.460950px;}
.y108{bottom:715.585800px;}
.y90{bottom:716.528100px;}
.y21{bottom:718.275600px;}
.y80{bottom:722.400450px;}
.y10e{bottom:724.585800px;}
.y3e{bottom:725.076900px;}
.y107{bottom:736.585800px;}
.y8f{bottom:737.528100px;}
.y20{bottom:739.275600px;}
.y7f{bottom:743.400450px;}
.yc8{bottom:745.585800px;}
.y3d{bottom:746.076900px;}
.y127{bottom:748.960950px;}
.y106{bottom:757.585800px;}
.y8e{bottom:758.528100px;}
.y1f{bottom:760.275600px;}
.y7e{bottom:764.400450px;}
.yc7{bottom:766.585800px;}
.y3c{bottom:767.076900px;}
.y126{bottom:769.960950px;}
.y105{bottom:778.585800px;}
.y1e{bottom:781.275600px;}
.yc6{bottom:787.585800px;}
.yb6{bottom:795.835650px;}
.y104{bottom:799.585800px;}
.y1d{bottom:802.275600px;}
.y7d{bottom:807.525450px;}
.yc5{bottom:808.585800px;}
.y125{bottom:810.460950px;}
.y3b{bottom:815.826900px;}
.y3{bottom:815.940900px;}
.y103{bottom:820.585800px;}
.y1c{bottom:823.275600px;}
.y7c{bottom:828.525450px;}
.yc4{bottom:829.585800px;}
.y1b{bottom:844.275600px;}
.y7b{bottom:849.525450px;}
.y63{bottom:849.525600px;}
.yb5{bottom:850.210950px;}
.yc3{bottom:850.585800px;}
.y124{bottom:850.960950px;}
.y144{bottom:859.916400px;}
.y102{bottom:862.585800px;}
.y1a{bottom:865.275600px;}
.y62{bottom:870.525600px;}
.yc2{bottom:871.585800px;}
.y7a{bottom:871.650450px;}
.y123{bottom:871.960950px;}
.y143{bottom:880.916400px;}
.y101{bottom:883.585800px;}
.y19{bottom:886.275600px;}
.y61{bottom:891.525600px;}
.yc1{bottom:892.585800px;}
.y79{bottom:892.650450px;}
.yb4{bottom:899.335950px;}
.y142{bottom:901.916400px;}
.y100{bottom:904.585800px;}
.y18{bottom:907.275600px;}
.y2{bottom:907.440900px;}
.y122{bottom:912.460950px;}
.y60{bottom:912.525600px;}
.yd1{bottom:913.585800px;}
.y78{bottom:914.775450px;}
.y141{bottom:922.916400px;}
.yff{bottom:925.585800px;}
.y17{bottom:928.275600px;}
.y5f{bottom:933.525600px;}
.yc0{bottom:934.585800px;}
.y77{bottom:935.775450px;}
.y140{bottom:943.916400px;}
.yfe{bottom:946.585800px;}
.yb3{bottom:948.460950px;}
.y16{bottom:949.275600px;}
.y121{bottom:952.960950px;}
.y5e{bottom:954.525600px;}
.ybf{bottom:955.585800px;}
.y76{bottom:956.775450px;}
.y13f{bottom:964.916400px;}
.yfd{bottom:967.585800px;}
.y15{bottom:970.275600px;}
.y120{bottom:973.960950px;}
.y5d{bottom:975.525600px;}
.ybe{bottom:976.585800px;}
.y75{bottom:977.775450px;}
.y13e{bottom:985.916400px;}
.yfc{bottom:988.585800px;}
.y14{bottom:991.275600px;}
.y5c{bottom:996.525600px;}
.ybd{bottom:997.585800px;}
.yb2{bottom:997.585950px;}
.y74{bottom:998.775450px;}
.y13d{bottom:1006.916400px;}
.yfb{bottom:1009.585800px;}
.y13{bottom:1012.275600px;}
.y11f{bottom:1014.460950px;}
.ybc{bottom:1018.585800px;}
.y5b{bottom:1018.650600px;}
.y73{bottom:1020.900450px;}
.y13c{bottom:1027.916400px;}
.yb0{bottom:1028.710950px;}
.y12{bottom:1033.275600px;}
.y11e{bottom:1035.460950px;}
.ybb{bottom:1039.585800px;}
.y5a{bottom:1040.775600px;}
.y72{bottom:1041.900450px;}
.y13b{bottom:1048.916400px;}
.yaf{bottom:1049.710950px;}
.y11{bottom:1054.275600px;}
.yba{bottom:1060.585800px;}
.y71{bottom:1062.900450px;}
.y59{bottom:1062.900600px;}
.yae{bottom:1070.710950px;}
.y10{bottom:1075.275600px;}
.y11d{bottom:1075.960950px;}
.yb9{bottom:1081.585800px;}
.y70{bottom:1083.900450px;}
.y57{bottom:1091.025600px;}
.yad{bottom:1091.710950px;}
.yf{bottom:1096.275600px;}
.y11c{bottom:1096.960950px;}
.y145{bottom:1097.431650px;}
.yb8{bottom:1102.585800px;}
.y6f{bottom:1112.025450px;}
.y58{bottom:1112.025600px;}
.yb1{bottom:1112.710950px;}
.ye{bottom:1117.275600px;}
.y11b{bottom:1117.960950px;}
.yb7{bottom:1123.585800px;}
.y1{bottom:1193.772750px;}
.h7{height:41.148000px;}
.h2{height:45.720000px;}
.h6{height:50.292000px;}
.h4{height:51.298836px;}
.h8{height:53.148000px;}
.h5{height:73.152000px;}
.h3{height:91.440000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:63.779550px;}
.xd{left:69.779550px;}
.x22{left:72.779550px;}
.x27{left:74.498400px;}
.xe{left:77.150250px;}
.x13{left:79.283250px;}
.x23{left:90.779550px;}
.x20{left:107.622000px;}
.xc{left:122.105850px;}
.x28{left:134.059050px;}
.x29{left:212.469000px;}
.x26{left:215.756700px;}
.xf{left:224.756700px;}
.x4{left:225.779550px;}
.x16{left:241.525350px;}
.x15{left:246.445500px;}
.x17{left:260.500200px;}
.x21{left:263.239950px;}
.x1{left:304.498950px;}
.x14{left:333.181800px;}
.x1b{left:401.472750px;}
.x3{left:403.605600px;}
.x1a{left:413.037900px;}
.x19{left:420.110100px;}
.x1c{left:435.837300px;}
.x18{left:442.212450px;}
.x10{left:458.681700px;}
.x6{left:463.464600px;}
.x11{left:466.538400px;}
.xa{left:469.464600px;}
.x25{left:472.464450px;}
.x7{left:485.230200px;}
.x24{left:490.464450px;}
.x5{left:568.520400px;}
.xb{left:594.564600px;}
.x1e{left:599.197650px;}
.x1f{left:613.185000px;}
.x8{left:619.968000px;}
.x1d{left:638.767200px;}
.x12{left:654.056700px;}
.x9{left:668.072550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.666667pt;}
.v1{vertical-align:19.536533pt;}
.ls7{letter-spacing:-6.570667pt;}
.ls3{letter-spacing:-0.880000pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.410667pt;}
.ls2{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.586667pt;}
.ws7{word-spacing:-17.920000pt;}
.ws76{word-spacing:-12.906667pt;}
.ws43{word-spacing:-10.560000pt;}
.ws9{word-spacing:-10.320000pt;}
.wsb{word-spacing:-5.045333pt;}
.wsb4{word-spacing:-3.402667pt;}
.ws96{word-spacing:-3.168000pt;}
.ws56{word-spacing:-2.992000pt;}
.ws67{word-spacing:-2.698667pt;}
.ws8b{word-spacing:-2.346667pt;}
.ws11{word-spacing:-2.170667pt;}
.ws73{word-spacing:-2.112000pt;}
.ws34{word-spacing:-1.877333pt;}
.ws36{word-spacing:-1.818667pt;}
.ws22{word-spacing:-1.760000pt;}
.wse{word-spacing:-1.701333pt;}
.ws23{word-spacing:-1.642667pt;}
.wsb9{word-spacing:-1.584000pt;}
.ws9d{word-spacing:-1.525333pt;}
.ws46{word-spacing:-1.466667pt;}
.ws98{word-spacing:-1.408000pt;}
.ws6e{word-spacing:-1.349333pt;}
.wsb6{word-spacing:-1.232000pt;}
.wsb8{word-spacing:-1.173333pt;}
.wsc{word-spacing:-1.114667pt;}
.ws68{word-spacing:-1.056000pt;}
.wsa{word-spacing:-0.997333pt;}
.ws55{word-spacing:-0.938667pt;}
.wsb7{word-spacing:-0.821333pt;}
.ws6{word-spacing:-0.720000pt;}
.ws72{word-spacing:-0.645333pt;}
.ws6a{word-spacing:-0.586667pt;}
.ws9a{word-spacing:-0.410667pt;}
.ws61{word-spacing:-0.293333pt;}
.ws18{word-spacing:-0.058667pt;}
.ws52{word-spacing:-0.048000pt;}
.ws0{word-spacing:0.000000pt;}
.ws7e{word-spacing:0.058667pt;}
.ws6d{word-spacing:0.117333pt;}
.ws14{word-spacing:0.176000pt;}
.wsaa{word-spacing:0.293333pt;}
.ws87{word-spacing:0.410667pt;}
.ws8e{word-spacing:0.469333pt;}
.ws13{word-spacing:0.528000pt;}
.ws4{word-spacing:0.586667pt;}
.ws17{word-spacing:0.645333pt;}
.ws86{word-spacing:0.704000pt;}
.ws99{word-spacing:0.762667pt;}
.ws69{word-spacing:0.821333pt;}
.ws66{word-spacing:0.880000pt;}
.ws74{word-spacing:0.938667pt;}
.ws1{word-spacing:1.056000pt;}
.ws6c{word-spacing:1.232000pt;}
.ws8d{word-spacing:1.290667pt;}
.ws41{word-spacing:1.349333pt;}
.wsb5{word-spacing:1.466667pt;}
.ws1d{word-spacing:1.525333pt;}
.ws24{word-spacing:1.584000pt;}
.wsb2{word-spacing:1.642667pt;}
.ws7a{word-spacing:1.701333pt;}
.ws51{word-spacing:1.760000pt;}
.wsab{word-spacing:1.877333pt;}
.ws16{word-spacing:1.936000pt;}
.ws20{word-spacing:2.053333pt;}
.ws12{word-spacing:2.112000pt;}
.ws78{word-spacing:2.229333pt;}
.ws40{word-spacing:2.288000pt;}
.ws6f{word-spacing:2.346667pt;}
.ws58{word-spacing:2.405333pt;}
.ws3f{word-spacing:2.464000pt;}
.ws64{word-spacing:2.522667pt;}
.ws31{word-spacing:2.640000pt;}
.ws5c{word-spacing:2.698667pt;}
.ws38{word-spacing:2.757333pt;}
.ws9c{word-spacing:2.816000pt;}
.ws19{word-spacing:2.874667pt;}
.ws27{word-spacing:2.992000pt;}
.ws25{word-spacing:3.050667pt;}
.wsb3{word-spacing:3.109333pt;}
.ws26{word-spacing:3.168000pt;}
.ws44{word-spacing:3.226667pt;}
.ws15{word-spacing:3.285333pt;}
.ws65{word-spacing:3.461333pt;}
.ws77{word-spacing:3.520000pt;}
.ws37{word-spacing:3.696000pt;}
.ws2c{word-spacing:3.754667pt;}
.ws5e{word-spacing:3.989333pt;}
.wsad{word-spacing:4.048000pt;}
.ws2a{word-spacing:4.165333pt;}
.ws95{word-spacing:4.282667pt;}
.ws10{word-spacing:4.341333pt;}
.ws7f{word-spacing:4.458667pt;}
.ws7b{word-spacing:4.517333pt;}
.wsa9{word-spacing:4.576000pt;}
.wsba{word-spacing:4.634667pt;}
.ws4b{word-spacing:4.693333pt;}
.ws70{word-spacing:4.752000pt;}
.ws63{word-spacing:4.810667pt;}
.ws4f{word-spacing:4.869333pt;}
.wsa0{word-spacing:4.928000pt;}
.ws79{word-spacing:4.986667pt;}
.ws54{word-spacing:5.104000pt;}
.wsbd{word-spacing:5.162667pt;}
.ws1f{word-spacing:5.221333pt;}
.wsf{word-spacing:5.280000pt;}
.ws1a{word-spacing:5.397333pt;}
.ws7c{word-spacing:5.456000pt;}
.ws3{word-spacing:5.573333pt;}
.ws4a{word-spacing:5.632000pt;}
.ws89{word-spacing:5.749333pt;}
.ws2b{word-spacing:5.808000pt;}
.ws8f{word-spacing:5.866667pt;}
.ws49{word-spacing:5.984000pt;}
.ws3b{word-spacing:6.042667pt;}
.ws5{word-spacing:6.101333pt;}
.ws3e{word-spacing:6.160000pt;}
.ws4c{word-spacing:6.218667pt;}
.ws2{word-spacing:6.277333pt;}
.wsa1{word-spacing:6.394667pt;}
.ws50{word-spacing:6.453333pt;}
.ws3d{word-spacing:6.570667pt;}
.ws5f{word-spacing:6.629333pt;}
.ws1b{word-spacing:6.688000pt;}
.ws91{word-spacing:6.805333pt;}
.ws7d{word-spacing:6.864000pt;}
.wsae{word-spacing:6.922667pt;}
.ws71{word-spacing:7.333333pt;}
.ws33{word-spacing:7.392000pt;}
.ws93{word-spacing:7.509333pt;}
.ws5d{word-spacing:7.626667pt;}
.ws81{word-spacing:7.685333pt;}
.wsbc{word-spacing:7.920000pt;}
.ws62{word-spacing:8.037333pt;}
.ws4e{word-spacing:8.213333pt;}
.wsb1{word-spacing:8.448000pt;}
.ws45{word-spacing:8.624000pt;}
.wsa4{word-spacing:8.682667pt;}
.ws60{word-spacing:8.800000pt;}
.wsa5{word-spacing:8.858667pt;}
.wsaf{word-spacing:8.976000pt;}
.ws3a{word-spacing:9.093333pt;}
.wsa6{word-spacing:9.210667pt;}
.ws6b{word-spacing:9.386667pt;}
.ws5a{word-spacing:9.445333pt;}
.ws47{word-spacing:9.562667pt;}
.wsa8{word-spacing:9.621333pt;}
.wsb0{word-spacing:9.738667pt;}
.ws80{word-spacing:9.797333pt;}
.ws9b{word-spacing:9.914667pt;}
.ws92{word-spacing:10.208000pt;}
.wsa3{word-spacing:10.325333pt;}
.ws83{word-spacing:10.384000pt;}
.ws2f{word-spacing:10.442667pt;}
.ws9e{word-spacing:10.560000pt;}
.wsd{word-spacing:10.677333pt;}
.ws1c{word-spacing:10.794667pt;}
.ws59{word-spacing:10.853333pt;}
.ws57{word-spacing:10.912000pt;}
.ws90{word-spacing:11.088000pt;}
.ws2d{word-spacing:11.322667pt;}
.ws84{word-spacing:11.381333pt;}
.ws1e{word-spacing:11.557333pt;}
.ws32{word-spacing:11.733333pt;}
.wsac{word-spacing:11.792000pt;}
.ws4d{word-spacing:12.085333pt;}
.ws8a{word-spacing:12.202667pt;}
.ws94{word-spacing:12.496000pt;}
.ws35{word-spacing:12.789333pt;}
.ws75{word-spacing:12.965333pt;}
.ws39{word-spacing:13.258667pt;}
.ws3c{word-spacing:13.376000pt;}
.ws2e{word-spacing:13.962667pt;}
.ws28{word-spacing:14.021333pt;}
.ws97{word-spacing:14.138667pt;}
.ws82{word-spacing:15.077333pt;}
.wsa7{word-spacing:15.370667pt;}
.ws30{word-spacing:15.429333pt;}
.ws42{word-spacing:16.485333pt;}
.ws29{word-spacing:16.778667pt;}
.ws21{word-spacing:16.837333pt;}
.ws48{word-spacing:17.600000pt;}
.ws9f{word-spacing:19.360000pt;}
.ws88{word-spacing:19.829333pt;}
.ws5b{word-spacing:23.584000pt;}
.wsa2{word-spacing:24.816000pt;}
.ws85{word-spacing:30.976000pt;}
.ws8c{word-spacing:31.034667pt;}
.wsbb{word-spacing:33.205333pt;}
.wsbe{word-spacing:39.482667pt;}
.ws8{word-spacing:332.624000pt;}
.ws53{word-spacing:579.186667pt;}
._d{margin-left:-10.560000pt;}
._16{margin-left:-9.439467pt;}
._15{margin-left:-8.042133pt;}
._2{margin-left:-6.933333pt;}
._1{margin-left:-5.605333pt;}
._6{margin-left:-4.699200pt;}
._3{margin-left:-3.744000pt;}
._0{margin-left:-2.250667pt;}
._4{margin-left:-0.997333pt;}
._5{width:1.601600pt;}
._21{width:2.551467pt;}
._23{width:3.572800pt;}
._22{width:6.570667pt;}
._1c{width:28.682667pt;}
._1f{width:38.976000pt;}
._1e{width:40.501333pt;}
._1d{width:49.770667pt;}
._9{width:71.685333pt;}
._14{width:82.378667pt;}
._f{width:105.818667pt;}
._8{width:141.488000pt;}
._12{width:263.893867pt;}
._20{width:278.691200pt;}
._7{width:308.048000pt;}
._13{width:312.517867pt;}
._e{width:317.797867pt;}
._c{width:322.686933pt;}
._11{width:332.101867pt;}
._10{width:354.901867pt;}
._19{width:380.017067pt;}
._1a{width:386.689067pt;}
._b{width:394.800000pt;}
._17{width:402.097067pt;}
._1b{width:409.921067pt;}
._a{width:495.624000pt;}
._18{width:680.946667pt;}
.fs3{font-size:34.202667pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:85.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.yfa{bottom:112.662933pt;}
.ye7{bottom:113.409600pt;}
.yaa{bottom:114.247200pt;}
.y6d{bottom:118.232533pt;}
.yf9{bottom:127.062933pt;}
.ye6{bottom:132.076267pt;}
.ya9{bottom:132.913867pt;}
.y56{bottom:133.579467pt;}
.y3a{bottom:134.467200pt;}
.y6c{bottom:136.899200pt;}
.y13a{bottom:137.743067pt;}
.yf8{bottom:150.153867pt;}
.ye5{bottom:150.742933pt;}
.ya8{bottom:151.580533pt;}
.y55{bottom:152.246133pt;}
.y39{bottom:153.133867pt;}
.y6b{bottom:155.565867pt;}
.y139{bottom:156.409733pt;}
.yf7{bottom:168.820533pt;}
.ye4{bottom:169.409600pt;}
.yac{bottom:170.247200pt;}
.y54{bottom:170.912800pt;}
.y38{bottom:171.800533pt;}
.y6a{bottom:174.232533pt;}
.yf6{bottom:187.487200pt;}
.ye3{bottom:188.076267pt;}
.ya7{bottom:188.913867pt;}
.y53{bottom:189.579467pt;}
.y37{bottom:190.467200pt;}
.y138{bottom:192.409733pt;}
.y69{bottom:192.899200pt;}
.yd{bottom:203.902933pt;}
.yf5{bottom:206.153867pt;}
.ye2{bottom:206.742933pt;}
.ya6{bottom:207.580533pt;}
.y52{bottom:208.246133pt;}
.y36{bottom:209.133867pt;}
.y137{bottom:211.076400pt;}
.y6e{bottom:211.565867pt;}
.yf4{bottom:224.820533pt;}
.ye1{bottom:225.409600pt;}
.ya5{bottom:226.247200pt;}
.y51{bottom:226.912800pt;}
.y35{bottom:227.800533pt;}
.y68{bottom:230.232533pt;}
.yb{bottom:232.879333pt;}
.yf3{bottom:243.487200pt;}
.ye0{bottom:244.076267pt;}
.ya4{bottom:244.913867pt;}
.y50{bottom:245.579467pt;}
.y34{bottom:246.467200pt;}
.y136{bottom:247.076400pt;}
.y67{bottom:248.899200pt;}
.yc{bottom:255.881867pt;}
.ydf{bottom:262.742933pt;}
.yf2{bottom:263.153867pt;}
.ya3{bottom:263.580533pt;}
.y4f{bottom:264.246133pt;}
.y33{bottom:265.133867pt;}
.y66{bottom:267.565867pt;}
.y11a{bottom:270.742933pt;}
.yde{bottom:281.409600pt;}
.yf1{bottom:281.820533pt;}
.ya2{bottom:282.247200pt;}
.y4e{bottom:282.912800pt;}
.y135{bottom:283.076400pt;}
.y65{bottom:286.232533pt;}
.y119{bottom:289.409600pt;}
.ydd{bottom:300.076267pt;}
.yf0{bottom:300.487200pt;}
.ya1{bottom:300.913867pt;}
.y4d{bottom:301.579467pt;}
.y134{bottom:301.743067pt;}
.y32{bottom:302.467200pt;}
.y64{bottom:304.899200pt;}
.y118{bottom:308.076267pt;}
.y10d{bottom:318.742933pt;}
.yef{bottom:319.153867pt;}
.ya0{bottom:319.580533pt;}
.y31{bottom:321.133867pt;}
.y117{bottom:326.742933pt;}
.ydc{bottom:337.409600pt;}
.y133{bottom:337.743067pt;}
.y9f{bottom:338.247200pt;}
.yee{bottom:338.820533pt;}
.y4c{bottom:338.912933pt;}
.y30{bottom:339.800533pt;}
.y116{bottom:345.409600pt;}
.y8d{bottom:349.015733pt;}
.ydb{bottom:356.076267pt;}
.y132{bottom:356.409733pt;}
.y9e{bottom:356.913867pt;}
.yed{bottom:357.487200pt;}
.y4b{bottom:357.579600pt;}
.y2f{bottom:358.467200pt;}
.y115{bottom:364.076267pt;}
.yda{bottom:374.742933pt;}
.yab{bottom:375.580533pt;}
.yec{bottom:376.153867pt;}
.y4a{bottom:376.246267pt;}
.y2e{bottom:377.133867pt;}
.y8c{bottom:378.800400pt;}
.y114{bottom:382.742933pt;}
.y131{bottom:392.409733pt;}
.yd9{bottom:393.409600pt;}
.y9d{bottom:394.247200pt;}
.yeb{bottom:394.820533pt;}
.y49{bottom:394.912933pt;}
.y2d{bottom:395.800533pt;}
.y8b{bottom:397.467067pt;}
.y113{bottom:401.409600pt;}
.y130{bottom:411.076400pt;}
.yd8{bottom:412.076267pt;}
.y9c{bottom:412.913867pt;}
.yea{bottom:413.487200pt;}
.y48{bottom:413.579600pt;}
.y2c{bottom:414.467200pt;}
.y8a{bottom:416.133733pt;}
.y112{bottom:420.076267pt;}
.yd7{bottom:430.742933pt;}
.y9b{bottom:431.580533pt;}
.ye9{bottom:432.153867pt;}
.y47{bottom:432.246267pt;}
.y2b{bottom:433.133867pt;}
.y89{bottom:434.800400pt;}
.y111{bottom:438.742933pt;}
.y12f{bottom:447.076400pt;}
.yd6{bottom:449.409600pt;}
.y9a{bottom:450.247200pt;}
.y46{bottom:450.912933pt;}
.y2a{bottom:451.800533pt;}
.ya{bottom:455.178933pt;}
.ye8{bottom:457.153867pt;}
.y110{bottom:457.409600pt;}
.y12e{bottom:465.743067pt;}
.yd5{bottom:468.076267pt;}
.y99{bottom:468.913867pt;}
.y45{bottom:469.579600pt;}
.y29{bottom:470.467200pt;}
.y9{bottom:472.778933pt;}
.y88{bottom:473.133733pt;}
.y10f{bottom:476.076267pt;}
.yd4{bottom:486.742933pt;}
.y98{bottom:487.580533pt;}
.y44{bottom:488.246267pt;}
.y28{bottom:489.133867pt;}
.y8{bottom:490.378933pt;}
.y87{bottom:491.800400pt;}
.yd0{bottom:494.742933pt;}
.y12d{bottom:501.743067pt;}
.yd3{bottom:505.409600pt;}
.y97{bottom:506.247200pt;}
.y43{bottom:506.912933pt;}
.y27{bottom:507.800533pt;}
.y7{bottom:507.979067pt;}
.y86{bottom:510.467067pt;}
.ycf{bottom:513.409600pt;}
.y12c{bottom:520.409733pt;}
.yd2{bottom:524.076267pt;}
.y96{bottom:524.913867pt;}
.y6{bottom:525.579067pt;}
.y42{bottom:525.579600pt;}
.y26{bottom:526.467200pt;}
.y85{bottom:529.133733pt;}
.yce{bottom:532.076267pt;}
.y10c{bottom:542.742933pt;}
.y5{bottom:543.178933pt;}
.y95{bottom:543.580533pt;}
.y41{bottom:544.246267pt;}
.y25{bottom:545.133867pt;}
.y84{bottom:547.800400pt;}
.ycd{bottom:550.742933pt;}
.y12b{bottom:556.409733pt;}
.y94{bottom:562.247200pt;}
.y40{bottom:562.912933pt;}
.y24{bottom:563.800533pt;}
.y83{bottom:566.467067pt;}
.ycc{bottom:569.409600pt;}
.y12a{bottom:575.076400pt;}
.y10b{bottom:580.076267pt;}
.y93{bottom:580.913867pt;}
.y23{bottom:582.467200pt;}
.y4{bottom:583.445733pt;}
.ycb{bottom:588.076267pt;}
.y10a{bottom:598.742933pt;}
.y92{bottom:599.580533pt;}
.y82{bottom:604.800400pt;}
.yca{bottom:606.742933pt;}
.y129{bottom:611.076400pt;}
.y109{bottom:617.409600pt;}
.y91{bottom:618.247200pt;}
.y22{bottom:619.800533pt;}
.y81{bottom:623.467067pt;}
.yc9{bottom:625.409600pt;}
.y3f{bottom:625.846133pt;}
.y128{bottom:629.743067pt;}
.y108{bottom:636.076267pt;}
.y90{bottom:636.913867pt;}
.y21{bottom:638.467200pt;}
.y80{bottom:642.133733pt;}
.y10e{bottom:644.076267pt;}
.y3e{bottom:644.512800pt;}
.y107{bottom:654.742933pt;}
.y8f{bottom:655.580533pt;}
.y20{bottom:657.133867pt;}
.y7f{bottom:660.800400pt;}
.yc8{bottom:662.742933pt;}
.y3d{bottom:663.179467pt;}
.y127{bottom:665.743067pt;}
.y106{bottom:673.409600pt;}
.y8e{bottom:674.247200pt;}
.y1f{bottom:675.800533pt;}
.y7e{bottom:679.467067pt;}
.yc7{bottom:681.409600pt;}
.y3c{bottom:681.846133pt;}
.y126{bottom:684.409733pt;}
.y105{bottom:692.076267pt;}
.y1e{bottom:694.467200pt;}
.yc6{bottom:700.076267pt;}
.yb6{bottom:707.409467pt;}
.y104{bottom:710.742933pt;}
.y1d{bottom:713.133867pt;}
.y7d{bottom:717.800400pt;}
.yc5{bottom:718.742933pt;}
.y125{bottom:720.409733pt;}
.y3b{bottom:725.179467pt;}
.y3{bottom:725.280800pt;}
.y103{bottom:729.409600pt;}
.y1c{bottom:731.800533pt;}
.y7c{bottom:736.467067pt;}
.yc4{bottom:737.409600pt;}
.y1b{bottom:750.467200pt;}
.y7b{bottom:755.133733pt;}
.y63{bottom:755.133867pt;}
.yb5{bottom:755.743067pt;}
.yc3{bottom:756.076267pt;}
.y124{bottom:756.409733pt;}
.y144{bottom:764.370133pt;}
.y102{bottom:766.742933pt;}
.y1a{bottom:769.133867pt;}
.y62{bottom:773.800533pt;}
.yc2{bottom:774.742933pt;}
.y7a{bottom:774.800400pt;}
.y123{bottom:775.076400pt;}
.y143{bottom:783.036800pt;}
.y101{bottom:785.409600pt;}
.y19{bottom:787.800533pt;}
.y61{bottom:792.467200pt;}
.yc1{bottom:793.409600pt;}
.y79{bottom:793.467067pt;}
.yb4{bottom:799.409733pt;}
.y142{bottom:801.703467pt;}
.y100{bottom:804.076267pt;}
.y18{bottom:806.467200pt;}
.y2{bottom:806.614133pt;}
.y122{bottom:811.076400pt;}
.y60{bottom:811.133867pt;}
.yd1{bottom:812.076267pt;}
.y78{bottom:813.133733pt;}
.y141{bottom:820.370133pt;}
.yff{bottom:822.742933pt;}
.y17{bottom:825.133867pt;}
.y5f{bottom:829.800533pt;}
.yc0{bottom:830.742933pt;}
.y77{bottom:831.800400pt;}
.y140{bottom:839.036800pt;}
.yfe{bottom:841.409600pt;}
.yb3{bottom:843.076400pt;}
.y16{bottom:843.800533pt;}
.y121{bottom:847.076400pt;}
.y5e{bottom:848.467200pt;}
.ybf{bottom:849.409600pt;}
.y76{bottom:850.467067pt;}
.y13f{bottom:857.703467pt;}
.yfd{bottom:860.076267pt;}
.y15{bottom:862.467200pt;}
.y120{bottom:865.743067pt;}
.y5d{bottom:867.133867pt;}
.ybe{bottom:868.076267pt;}
.y75{bottom:869.133733pt;}
.y13e{bottom:876.370133pt;}
.yfc{bottom:878.742933pt;}
.y14{bottom:881.133867pt;}
.y5c{bottom:885.800533pt;}
.ybd{bottom:886.742933pt;}
.yb2{bottom:886.743067pt;}
.y74{bottom:887.800400pt;}
.y13d{bottom:895.036800pt;}
.yfb{bottom:897.409600pt;}
.y13{bottom:899.800533pt;}
.y11f{bottom:901.743067pt;}
.ybc{bottom:905.409600pt;}
.y5b{bottom:905.467200pt;}
.y73{bottom:907.467067pt;}
.y13c{bottom:913.703467pt;}
.yb0{bottom:914.409733pt;}
.y12{bottom:918.467200pt;}
.y11e{bottom:920.409733pt;}
.ybb{bottom:924.076267pt;}
.y5a{bottom:925.133867pt;}
.y72{bottom:926.133733pt;}
.y13b{bottom:932.370133pt;}
.yaf{bottom:933.076400pt;}
.y11{bottom:937.133867pt;}
.yba{bottom:942.742933pt;}
.y71{bottom:944.800400pt;}
.y59{bottom:944.800533pt;}
.yae{bottom:951.743067pt;}
.y10{bottom:955.800533pt;}
.y11d{bottom:956.409733pt;}
.yb9{bottom:961.409600pt;}
.y70{bottom:963.467067pt;}
.y57{bottom:969.800533pt;}
.yad{bottom:970.409733pt;}
.yf{bottom:974.467200pt;}
.y11c{bottom:975.076400pt;}
.y145{bottom:975.494800pt;}
.yb8{bottom:980.076267pt;}
.y6f{bottom:988.467067pt;}
.y58{bottom:988.467200pt;}
.yb1{bottom:989.076400pt;}
.ye{bottom:993.133867pt;}
.y11b{bottom:993.743067pt;}
.yb7{bottom:998.742933pt;}
.y1{bottom:1061.131333pt;}
.h7{height:36.576000pt;}
.h2{height:40.640000pt;}
.h6{height:44.704000pt;}
.h4{height:45.598965pt;}
.h8{height:47.242667pt;}
.h5{height:65.024000pt;}
.h3{height:81.280000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:56.692933pt;}
.xd{left:62.026267pt;}
.x22{left:64.692933pt;}
.x27{left:66.220800pt;}
.xe{left:68.578000pt;}
.x13{left:70.474000pt;}
.x23{left:80.692933pt;}
.x20{left:95.664000pt;}
.xc{left:108.538533pt;}
.x28{left:119.163600pt;}
.x29{left:188.861333pt;}
.x26{left:191.783733pt;}
.xf{left:199.783733pt;}
.x4{left:200.692933pt;}
.x16{left:214.689200pt;}
.x15{left:219.062667pt;}
.x17{left:231.555733pt;}
.x21{left:233.991067pt;}
.x1{left:270.665733pt;}
.x14{left:296.161600pt;}
.x1b{left:356.864667pt;}
.x3{left:358.760533pt;}
.x1a{left:367.144800pt;}
.x19{left:373.431200pt;}
.x1c{left:387.410933pt;}
.x18{left:393.077733pt;}
.x10{left:407.717067pt;}
.x6{left:411.968533pt;}
.x11{left:414.700800pt;}
.xa{left:417.301867pt;}
.x25{left:419.968400pt;}
.x7{left:431.315733pt;}
.x24{left:435.968400pt;}
.x5{left:505.351467pt;}
.xb{left:528.501867pt;}
.x1e{left:532.620133pt;}
.x1f{left:545.053333pt;}
.x8{left:551.082667pt;}
.x1d{left:567.793067pt;}
.x12{left:581.383733pt;}
.x9{left:593.842267pt;}
}




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