
    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_9a33400918c1f831028a1871.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_4d285f22400fa2f8917e9b21.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.149414;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_fe0e5e72bac19d02010b2270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.771484;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_f0173abff4c2a93b2e422b34.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_24f3bad29943ee9d6021de40.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_95e4d81dbb828e7c06b2e467.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7d9ef9b2f7bfd08ca4214953.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bf9597a3a5a4e32f8d88b9bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_187686774edbb5e504ffae89.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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:ffa;src:url('chunks/assets/font_74b589c033a10468af68f908.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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:ffb;src:url('chunks/assets/font_7d6c14c3a3a5183630ce5cc1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.769531;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.lsd{letter-spacing:-0.310800px;}
.lsa{letter-spacing:-0.259800px;}
.ls2{letter-spacing:-0.229800px;}
.ls5{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.106800px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.lsc{letter-spacing:33.984000px;}
.lsb{letter-spacing:42.865920px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.808440px;}
.ws2{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.049840px;}
.ws1{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.680200px;}
.ws5{word-spacing:0.000000px;}
._1a{margin-left:-2.016000px;}
._0{margin-left:-1.010880px;}
._2{width:1.008000px;}
._c{width:2.304000px;}
._d{width:3.312000px;}
._1{width:4.968000px;}
._3{width:6.122880px;}
._b{width:7.848000px;}
._19{width:9.048000px;}
._10{width:10.368000px;}
._4{width:12.360000px;}
._5{width:13.440000px;}
._11{width:15.336000px;}
._12{width:16.344000px;}
._1d{width:18.376560px;}
._18{width:19.656000px;}
._15{width:21.122880px;}
._7{width:22.368000px;}
._17{width:23.792640px;}
._14{width:25.194240px;}
._13{width:26.282880px;}
._e{width:27.984000px;}
._f{width:29.568000px;}
._9{width:30.602880px;}
._8{width:31.680000px;}
._a{width:32.685120px;}
._1b{width:34.418880px;}
._1e{width:35.565120px;}
._6{width:38.666880px;}
._16{width:41.472000px;}
._22{width:44.136000px;}
._23{width:45.144000px;}
._24{width:50.976000px;}
._26{width:52.128000px;}
._25{width:53.280000px;}
._1c{width:63.720000px;}
._20{width:81.452880px;}
._21{width:97.647840px;}
._1f{width:110.735280px;}
.fc4{color:rgb(15,17,21);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(80,80,80);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y9{bottom:-9.540000px;}
.ye{bottom:-6.330000px;}
.y0{bottom:0.000000px;}
.y11e{bottom:3.225000px;}
.yf3{bottom:3.420000px;}
.y120{bottom:3.585000px;}
.yff{bottom:3.600000px;}
.y10b{bottom:3.765000px;}
.yf5{bottom:3.780000px;}
.yf7{bottom:3.810000px;}
.y12c{bottom:3.960000px;}
.y12a{bottom:3.990000px;}
.y6e{bottom:4.125000px;}
.y99{bottom:4.140000px;}
.y129{bottom:4.170000px;}
.y10f{bottom:4.305000px;}
.y9f{bottom:4.320000px;}
.y70{bottom:4.485000px;}
.y76{bottom:4.500000px;}
.y7d{bottom:5.400000px;}
.y85{bottom:6.285000px;}
.y7f{bottom:6.300000px;}
.y11c{bottom:11.865000px;}
.yfd{bottom:12.240000px;}
.y10c{bottom:12.405000px;}
.y105{bottom:12.420000px;}
.yd{bottom:14.730000px;}
.yc4{bottom:14.760000px;}
.y7b{bottom:17.100000px;}
.y100{bottom:20.160000px;}
.y11d{bottom:20.550000px;}
.yfe{bottom:20.880000px;}
.y10a{bottom:21.045000px;}
.y104{bottom:21.060000px;}
.yc3{bottom:25.200000px;}
.ya{bottom:28.620000px;}
.y8{bottom:34.740000px;}
.y7{bottom:36.000000px;}
.yc{bottom:39.210000px;}
.yf1{bottom:112.680000px;}
.y65{bottom:113.220000px;}
.y94{bottom:125.100000px;}
.y39{bottom:125.280000px;}
.y79{bottom:126.360000px;}
.y12e{bottom:127.260000px;}
.y179{bottom:127.980000px;}
.y157{bottom:132.660000px;}
.yf0{bottom:133.380000px;}
.y64{bottom:133.920000px;}
.y78{bottom:143.280000px;}
.y93{bottom:145.800000px;}
.y38{bottom:145.980000px;}
.y12d{bottom:147.960000px;}
.y178{bottom:148.680000px;}
.ybc{bottom:149.400000px;}
.ydf{bottom:150.120000px;}
.y119{bottom:153.000000px;}
.y156{bottom:153.360000px;}
.y63{bottom:154.620000px;}
.y77{bottom:164.700000px;}
.y92{bottom:166.500000px;}
.y37{bottom:166.680000px;}
.ybb{bottom:170.100000px;}
.yde{bottom:170.820000px;}
.y177{bottom:172.260000px;}
.y14b{bottom:173.340000px;}
.y118{bottom:173.700000px;}
.y155{bottom:174.060000px;}
.yef{bottom:175.140000px;}
.y62{bottom:175.320000px;}
.y12b{bottom:185.940000px;}
.y75{bottom:186.300000px;}
.y91{bottom:187.200000px;}
.y36{bottom:187.380000px;}
.yba{bottom:190.800000px;}
.ydd{bottom:191.520000px;}
.y117{bottom:194.400000px;}
.y154{bottom:194.760000px;}
.yee{bottom:195.840000px;}
.y61{bottom:196.020000px;}
.y128{bottom:205.020000px;}
.y74{bottom:207.765000px;}
.y90{bottom:207.930000px;}
.y35{bottom:208.110000px;}
.yb9{bottom:211.530000px;}
.ydc{bottom:212.250000px;}
.y116{bottom:215.130000px;}
.y14a{bottom:215.490000px;}
.yed{bottom:216.390000px;}
.y60{bottom:216.750000px;}
.y176{bottom:219.810000px;}
.y127{bottom:223.965000px;}
.y8f{bottom:228.630000px;}
.y34{bottom:228.810000px;}
.y73{bottom:229.185000px;}
.yb8{bottom:232.230000px;}
.ydb{bottom:232.950000px;}
.y115{bottom:235.830000px;}
.y149{bottom:236.190000px;}
.yec{bottom:237.090000px;}
.y5f{bottom:237.450000px;}
.y175{bottom:240.690000px;}
.y126{bottom:243.045000px;}
.y8e{bottom:249.330000px;}
.y33{bottom:249.510000px;}
.y72{bottom:250.605000px;}
.yb7{bottom:252.930000px;}
.yda{bottom:253.650000px;}
.y114{bottom:256.530000px;}
.y148{bottom:256.890000px;}
.yeb{bottom:257.790000px;}
.y5e{bottom:258.150000px;}
.y174{bottom:261.390000px;}
.y125{bottom:262.125000px;}
.y8d{bottom:270.030000px;}
.y32{bottom:270.210000px;}
.y71{bottom:272.025000px;}
.yb6{bottom:273.630000px;}
.yd9{bottom:274.350000px;}
.y113{bottom:277.230000px;}
.y147{bottom:277.590000px;}
.yea{bottom:278.490000px;}
.y5d{bottom:278.850000px;}
.y173{bottom:282.090000px;}
.y8c{bottom:290.730000px;}
.y31{bottom:290.910000px;}
.y6f{bottom:293.445000px;}
.yb5{bottom:294.330000px;}
.yd8{bottom:295.050000px;}
.y124{bottom:297.405000px;}
.y112{bottom:297.930000px;}
.y146{bottom:298.290000px;}
.ye9{bottom:299.190000px;}
.y5c{bottom:299.550000px;}
.y172{bottom:302.790000px;}
.y8b{bottom:311.430000px;}
.y30{bottom:311.610000px;}
.yb4{bottom:315.030000px;}
.y6d{bottom:315.045000px;}
.y123{bottom:315.405000px;}
.yd7{bottom:315.750000px;}
.y111{bottom:318.630000px;}
.y145{bottom:318.990000px;}
.ye8{bottom:319.890000px;}
.y5b{bottom:320.250000px;}
.y171{bottom:323.490000px;}
.y8a{bottom:332.130000px;}
.y2f{bottom:332.310000px;}
.yb3{bottom:335.730000px;}
.yd6{bottom:336.450000px;}
.y110{bottom:339.330000px;}
.y144{bottom:339.690000px;}
.y6c{bottom:340.590000px;}
.y5a{bottom:340.950000px;}
.y170{bottom:344.190000px;}
.y122{bottom:350.685000px;}
.y89{bottom:352.830000px;}
.y2e{bottom:353.010000px;}
.y10e{bottom:356.265000px;}
.yb2{bottom:356.430000px;}
.yd5{bottom:357.150000px;}
.y143{bottom:360.390000px;}
.y6b{bottom:361.290000px;}
.y59{bottom:361.650000px;}
.y16f{bottom:367.950000px;}
.y121{bottom:368.685000px;}
.y88{bottom:373.530000px;}
.y2d{bottom:373.710000px;}
.y10d{bottom:375.345000px;}
.yb1{bottom:377.130000px;}
.yd4{bottom:377.850000px;}
.y142{bottom:381.090000px;}
.y6a{bottom:381.990000px;}
.y58{bottom:382.350000px;}
.y16e{bottom:391.710000px;}
.y87{bottom:394.230000px;}
.y2c{bottom:394.410000px;}
.yb0{bottom:397.650000px;}
.yd3{bottom:398.550000px;}
.y153{bottom:401.790000px;}
.y69{bottom:402.690000px;}
.y57{bottom:403.050000px;}
.y11f{bottom:403.965000px;}
.y109{bottom:410.625000px;}
.y86{bottom:414.930000px;}
.y2b{bottom:415.110000px;}
.y16d{bottom:415.470000px;}
.yaf{bottom:418.350000px;}
.yd2{bottom:419.250000px;}
.y11b{bottom:421.965000px;}
.y152{bottom:422.490000px;}
.y141{bottom:422.850000px;}
.ye7{bottom:423.390000px;}
.y56{bottom:423.750000px;}
.y84{bottom:431.865000px;}
.y2a{bottom:435.810000px;}
.y16c{bottom:436.350000px;}
.yae{bottom:439.050000px;}
.yd1{bottom:439.950000px;}
.y140{bottom:443.595000px;}
.ye6{bottom:444.135000px;}
.y55{bottom:444.495000px;}
.y108{bottom:445.935000px;}
.y29{bottom:456.555000px;}
.y83{bottom:456.735000px;}
.y16b{bottom:457.095000px;}
.yad{bottom:459.795000px;}
.yd0{bottom:460.695000px;}
.y11a{bottom:462.315000px;}
.y151{bottom:463.935000px;}
.y13f{bottom:464.295000px;}
.ye5{bottom:464.835000px;}
.y54{bottom:465.195000px;}
.y28{bottom:476.895000px;}
.y16a{bottom:477.795000px;}
.y82{bottom:479.955000px;}
.yac{bottom:480.495000px;}
.y107{bottom:481.215000px;}
.ycf{bottom:481.395000px;}
.y13e{bottom:484.995000px;}
.ye4{bottom:485.535000px;}
.y53{bottom:485.895000px;}
.y27{bottom:497.955000px;}
.yab{bottom:501.195000px;}
.y169{bottom:501.375000px;}
.yce{bottom:502.095000px;}
.y81{bottom:504.975000px;}
.y13d{bottom:505.695000px;}
.y150{bottom:505.875000px;}
.ye3{bottom:506.235000px;}
.y52{bottom:506.595000px;}
.y106{bottom:516.495000px;}
.y26{bottom:518.475000px;}
.yaa{bottom:521.895000px;}
.ycd{bottom:522.795000px;}
.y168{bottom:525.315000px;}
.y13c{bottom:526.395000px;}
.y14f{bottom:526.575000px;}
.ye2{bottom:526.935000px;}
.y51{bottom:527.295000px;}
.y80{bottom:528.195000px;}
.y25{bottom:539.175000px;}
.ya9{bottom:542.595000px;}
.ycc{bottom:543.495000px;}
.y14e{bottom:547.275000px;}
.ye1{bottom:547.635000px;}
.y50{bottom:547.995000px;}
.y167{bottom:549.075000px;}
.y7e{bottom:551.415000px;}
.y103{bottom:551.595000px;}
.y24{bottom:559.515000px;}
.ya8{bottom:563.295000px;}
.ycb{bottom:564.195000px;}
.yfc{bottom:564.735000px;}
.y13b{bottom:567.975000px;}
.y4f{bottom:568.695000px;}
.y166{bottom:569.955000px;}
.y7c{bottom:576.255000px;}
.y23{bottom:580.215000px;}
.ya7{bottom:583.995000px;}
.yca{bottom:584.895000px;}
.y102{bottom:586.875000px;}
.y13a{bottom:588.675000px;}
.y4e{bottom:589.395000px;}
.y165{bottom:590.655000px;}
.y7a{bottom:599.655000px;}
.yfb{bottom:599.835000px;}
.y22{bottom:601.275000px;}
.ya6{bottom:604.695000px;}
.yc9{bottom:605.595000px;}
.y139{bottom:609.375000px;}
.y4d{bottom:610.095000px;}
.y164{bottom:611.355000px;}
.yfa{bottom:617.835000px;}
.y21{bottom:621.975000px;}
.ya5{bottom:625.395000px;}
.yc8{bottom:626.295000px;}
.y101{bottom:630.075000px;}
.y14d{bottom:630.435000px;}
.y4c{bottom:630.795000px;}
.y163{bottom:632.055000px;}
.yf9{bottom:635.835000px;}
.y20{bottom:642.315000px;}
.ya4{bottom:646.095000px;}
.yc7{bottom:646.995000px;}
.y138{bottom:650.775000px;}
.y4b{bottom:651.135000px;}
.y68{bottom:651.495000px;}
.yf8{bottom:653.835000px;}
.y162{bottom:655.635000px;}
.y1f{bottom:663.015000px;}
.ya3{bottom:666.795000px;}
.yc6{bottom:667.695000px;}
.y137{bottom:671.475000px;}
.y4a{bottom:671.835000px;}
.y67{bottom:672.195000px;}
.y161{bottom:679.425000px;}
.y1e{bottom:684.105000px;}
.ya2{bottom:687.525000px;}
.yc5{bottom:688.425000px;}
.yf6{bottom:689.865000px;}
.y14c{bottom:692.565000px;}
.y49{bottom:692.925000px;}
.y160{bottom:703.185000px;}
.y1d{bottom:704.805000px;}
.yc2{bottom:705.345000px;}
.yf4{bottom:707.865000px;}
.ya1{bottom:708.225000px;}
.y136{bottom:713.265000px;}
.y48{bottom:713.625000px;}
.y1c{bottom:725.505000px;}
.yf2{bottom:725.865000px;}
.y15f{bottom:727.125000px;}
.ya0{bottom:728.925000px;}
.y135{bottom:733.965000px;}
.y47{bottom:734.325000px;}
.y9e{bottom:746.025000px;}
.y1b{bottom:746.205000px;}
.yc1{bottom:747.465000px;}
.y15e{bottom:751.245000px;}
.ye0{bottom:754.485000px;}
.y134{bottom:754.665000px;}
.y46{bottom:754.845000px;}
.y1a{bottom:766.545000px;}
.y9d{bottom:767.445000px;}
.yc0{bottom:768.885000px;}
.y15d{bottom:775.005000px;}
.y133{bottom:775.365000px;}
.y45{bottom:775.545000px;}
.y19{bottom:787.605000px;}
.y9c{bottom:788.865000px;}
.ybf{bottom:790.305000px;}
.y132{bottom:796.065000px;}
.y44{bottom:796.245000px;}
.y18{bottom:808.305000px;}
.y9b{bottom:810.285000px;}
.ybe{bottom:811.725000px;}
.y15c{bottom:816.405000px;}
.y131{bottom:816.765000px;}
.y43{bottom:816.945000px;}
.y17{bottom:828.645000px;}
.y9a{bottom:831.705000px;}
.y15b{bottom:837.105000px;}
.ybd{bottom:837.285000px;}
.y130{bottom:837.465000px;}
.y42{bottom:837.645000px;}
.y16{bottom:849.705000px;}
.y98{bottom:853.125000px;}
.y15a{bottom:857.805000px;}
.y66{bottom:857.985000px;}
.y12f{bottom:858.165000px;}
.y41{bottom:858.345000px;}
.y15{bottom:870.405000px;}
.y159{bottom:878.505000px;}
.y97{bottom:878.685000px;}
.y40{bottom:879.045000px;}
.y14{bottom:891.105000px;}
.y158{bottom:899.205000px;}
.y96{bottom:899.385000px;}
.y3f{bottom:899.745000px;}
.y13{bottom:911.490000px;}
.y95{bottom:920.130000px;}
.y17a{bottom:920.310000px;}
.y3e{bottom:920.490000px;}
.y12{bottom:932.190000px;}
.y3d{bottom:941.190000px;}
.y11{bottom:953.250000px;}
.y3c{bottom:961.890000px;}
.y10{bottom:977.370000px;}
.y3b{bottom:982.590000px;}
.y3a{bottom:1003.290000px;}
.yf{bottom:1018.230000px;}
.y6{bottom:1023.270000px;}
.y5{bottom:1042.710000px;}
.yb{bottom:1046.520000px;}
.y4{bottom:1067.370000px;}
.y3{bottom:1091.850000px;}
.y2{bottom:1116.330000px;}
.y1{bottom:1137.930000px;}
.h9{height:4.353750px;}
.h27{height:17.085000px;}
.h20{height:17.265000px;}
.h1b{height:17.280000px;}
.h1e{height:17.316000px;}
.h29{height:18.180000px;}
.h28{height:18.216000px;}
.h24{height:18.345000px;}
.h19{height:20.520000px;}
.h10{height:20.685000px;}
.h13{height:20.695500px;}
.h12{height:20.700000px;}
.h11{height:20.736000px;}
.h15{height:22.485000px;}
.h16{height:24.105000px;}
.h18{height:24.141000px;}
.h17{height:24.285000px;}
.h22{height:34.365000px;}
.h1f{height:34.380000px;}
.h25{height:34.401000px;}
.h21{height:34.545000px;}
.h23{height:34.581000px;}
.h4{height:39.060000px;}
.h1a{height:41.400000px;}
.h14{height:46.425000px;}
.h6{height:48.600000px;}
.h2{height:53.709961px;}
.hb{height:54.421875px;}
.h8{height:57.060000px;}
.h1d{height:58.651172px;}
.h5{height:59.439023px;}
.h1c{height:60.226875px;}
.h26{height:61.189805px;}
.hd{height:70.664062px;}
.he{height:72.562500px;}
.h3{height:73.722656px;}
.h2a{height:74.004654px;}
.hc{height:81.736875px;}
.hf{height:82.676953px;}
.h7{height:83.787539px;}
.ha{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:46.800000px;}
.wb{width:62.820000px;}
.w1d{width:64.440000px;}
.wc{width:70.380000px;}
.wd{width:73.476000px;}
.w18{width:77.025000px;}
.we{width:80.085000px;}
.w11{width:85.890000px;}
.w10{width:88.365000px;}
.w26{width:88.905000px;}
.w22{width:88.920000px;}
.w25{width:88.941000px;}
.w21{width:88.956000px;}
.w24{width:89.085000px;}
.w20{width:89.091000px;}
.w27{width:89.130000px;}
.w23{width:89.136000px;}
.w1a{width:89.985000px;}
.w6{width:90.720000px;}
.w2c{width:95.781000px;}
.w17{width:95.976000px;}
.w13{width:98.100000px;}
.w2d{width:98.805000px;}
.w2b{width:100.605000px;}
.wf{width:101.721000px;}
.w8{width:104.961000px;}
.w28{width:106.371000px;}
.w19{width:110.541000px;}
.w2a{width:110.556000px;}
.w29{width:114.696000px;}
.w7{width:116.316000px;}
.w14{width:122.076000px;}
.w15{width:124.041000px;}
.w9{width:124.905000px;}
.w1f{width:142.776000px;}
.w1e{width:142.956000px;}
.wa{width:156.270000px;}
.w12{width:158.790000px;}
.w1b{width:176.070000px;}
.w1c{width:188.310000px;}
.w5{width:191.010000px;}
.w4{width:240.300000px;}
.w16{width:254.010000px;}
.w2{width:621.540000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:2.055000px;}
.x3{left:3.780000px;}
.x9{left:10.905000px;}
.x7{left:55.005000px;}
.x8{left:67.965000px;}
.xd{left:127.296000px;}
.x1{left:135.036000px;}
.xb{left:160.590000px;}
.x30{left:162.030000px;}
.x31{left:189.030000px;}
.x24{left:217.110000px;}
.x2b{left:234.570000px;}
.x12{left:284.295000px;}
.x19{left:286.815000px;}
.x25{left:306.975000px;}
.x20{left:311.835000px;}
.xe{left:319.035000px;}
.x13{left:347.835000px;}
.x2c{left:350.175000px;}
.x1c{left:382.035000px;}
.x1a{left:385.635000px;}
.x26{left:396.615000px;}
.xc{left:402.195000px;}
.xf{left:410.475000px;}
.x14{left:418.935000px;}
.x4{left:423.000000px;}
.xa{left:446.505000px;}
.x2d{left:461.460000px;}
.x1d{left:478.920000px;}
.x27{left:486.480000px;}
.x15{left:493.320000px;}
.x21{left:500.865000px;}
.x1b{left:508.440000px;}
.x6{left:509.760000px;}
.x10{left:527.520000px;}
.x1e{left:556.860000px;}
.x2e{left:562.800000px;}
.x22{left:566.025000px;}
.x16{left:574.320000px;}
.x28{left:576.300000px;}
.x11{left:633.210000px;}
.x2f{left:659.310000px;}
.x29{left:666.150000px;}
.x1f{left:668.130000px;}
.x17{left:676.770000px;}
.x23{left:709.710000px;}
.x2a{left:755.790000px;}
.x2{left:758.130000px;}
.x18{left:765.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsd{letter-spacing:-0.276267pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls2{letter-spacing:-0.204267pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.094933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsc{letter-spacing:30.208000pt;}
.lsb{letter-spacing:38.103040pt;}
.ws0{word-spacing:-16.718613pt;}
.ws2{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.155413pt;}
.ws1{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.049067pt;}
.ws5{word-spacing:0.000000pt;}
._1a{margin-left:-1.792000pt;}
._0{margin-left:-0.898560pt;}
._2{width:0.896000pt;}
._c{width:2.048000pt;}
._d{width:2.944000pt;}
._1{width:4.416000pt;}
._3{width:5.442560pt;}
._b{width:6.976000pt;}
._19{width:8.042667pt;}
._10{width:9.216000pt;}
._4{width:10.986667pt;}
._5{width:11.946667pt;}
._11{width:13.632000pt;}
._12{width:14.528000pt;}
._1d{width:16.334720pt;}
._18{width:17.472000pt;}
._15{width:18.775893pt;}
._7{width:19.882667pt;}
._17{width:21.149013pt;}
._14{width:22.394880pt;}
._13{width:23.362560pt;}
._e{width:24.874667pt;}
._f{width:26.282667pt;}
._9{width:27.202560pt;}
._8{width:28.160000pt;}
._a{width:29.053440pt;}
._1b{width:30.594560pt;}
._1e{width:31.613440pt;}
._6{width:34.370560pt;}
._16{width:36.864000pt;}
._22{width:39.232000pt;}
._23{width:40.128000pt;}
._24{width:45.312000pt;}
._26{width:46.336000pt;}
._25{width:47.360000pt;}
._1c{width:56.640000pt;}
._20{width:72.402560pt;}
._21{width:86.798080pt;}
._1f{width:98.431360pt;}
.fs4{font-size:5.120000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y9{bottom:-8.480000pt;}
.ye{bottom:-5.626667pt;}
.y0{bottom:0.000000pt;}
.y11e{bottom:2.866667pt;}
.yf3{bottom:3.040000pt;}
.y120{bottom:3.186667pt;}
.yff{bottom:3.200000pt;}
.y10b{bottom:3.346667pt;}
.yf5{bottom:3.360000pt;}
.yf7{bottom:3.386667pt;}
.y12c{bottom:3.520000pt;}
.y12a{bottom:3.546667pt;}
.y6e{bottom:3.666667pt;}
.y99{bottom:3.680000pt;}
.y129{bottom:3.706667pt;}
.y10f{bottom:3.826667pt;}
.y9f{bottom:3.840000pt;}
.y70{bottom:3.986667pt;}
.y76{bottom:4.000000pt;}
.y7d{bottom:4.800000pt;}
.y85{bottom:5.586667pt;}
.y7f{bottom:5.600000pt;}
.y11c{bottom:10.546667pt;}
.yfd{bottom:10.880000pt;}
.y10c{bottom:11.026667pt;}
.y105{bottom:11.040000pt;}
.yd{bottom:13.093333pt;}
.yc4{bottom:13.120000pt;}
.y7b{bottom:15.200000pt;}
.y100{bottom:17.920000pt;}
.y11d{bottom:18.266667pt;}
.yfe{bottom:18.560000pt;}
.y10a{bottom:18.706667pt;}
.y104{bottom:18.720000pt;}
.yc3{bottom:22.400000pt;}
.ya{bottom:25.440000pt;}
.y8{bottom:30.880000pt;}
.y7{bottom:32.000000pt;}
.yc{bottom:34.853333pt;}
.yf1{bottom:100.160000pt;}
.y65{bottom:100.640000pt;}
.y94{bottom:111.200000pt;}
.y39{bottom:111.360000pt;}
.y79{bottom:112.320000pt;}
.y12e{bottom:113.120000pt;}
.y179{bottom:113.760000pt;}
.y157{bottom:117.920000pt;}
.yf0{bottom:118.560000pt;}
.y64{bottom:119.040000pt;}
.y78{bottom:127.360000pt;}
.y93{bottom:129.600000pt;}
.y38{bottom:129.760000pt;}
.y12d{bottom:131.520000pt;}
.y178{bottom:132.160000pt;}
.ybc{bottom:132.800000pt;}
.ydf{bottom:133.440000pt;}
.y119{bottom:136.000000pt;}
.y156{bottom:136.320000pt;}
.y63{bottom:137.440000pt;}
.y77{bottom:146.400000pt;}
.y92{bottom:148.000000pt;}
.y37{bottom:148.160000pt;}
.ybb{bottom:151.200000pt;}
.yde{bottom:151.840000pt;}
.y177{bottom:153.120000pt;}
.y14b{bottom:154.080000pt;}
.y118{bottom:154.400000pt;}
.y155{bottom:154.720000pt;}
.yef{bottom:155.680000pt;}
.y62{bottom:155.840000pt;}
.y12b{bottom:165.280000pt;}
.y75{bottom:165.600000pt;}
.y91{bottom:166.400000pt;}
.y36{bottom:166.560000pt;}
.yba{bottom:169.600000pt;}
.ydd{bottom:170.240000pt;}
.y117{bottom:172.800000pt;}
.y154{bottom:173.120000pt;}
.yee{bottom:174.080000pt;}
.y61{bottom:174.240000pt;}
.y128{bottom:182.240000pt;}
.y74{bottom:184.680000pt;}
.y90{bottom:184.826667pt;}
.y35{bottom:184.986667pt;}
.yb9{bottom:188.026667pt;}
.ydc{bottom:188.666667pt;}
.y116{bottom:191.226667pt;}
.y14a{bottom:191.546667pt;}
.yed{bottom:192.346667pt;}
.y60{bottom:192.666667pt;}
.y176{bottom:195.386667pt;}
.y127{bottom:199.080000pt;}
.y8f{bottom:203.226667pt;}
.y34{bottom:203.386667pt;}
.y73{bottom:203.720000pt;}
.yb8{bottom:206.426667pt;}
.ydb{bottom:207.066667pt;}
.y115{bottom:209.626667pt;}
.y149{bottom:209.946667pt;}
.yec{bottom:210.746667pt;}
.y5f{bottom:211.066667pt;}
.y175{bottom:213.946667pt;}
.y126{bottom:216.040000pt;}
.y8e{bottom:221.626667pt;}
.y33{bottom:221.786667pt;}
.y72{bottom:222.760000pt;}
.yb7{bottom:224.826667pt;}
.yda{bottom:225.466667pt;}
.y114{bottom:228.026667pt;}
.y148{bottom:228.346667pt;}
.yeb{bottom:229.146667pt;}
.y5e{bottom:229.466667pt;}
.y174{bottom:232.346667pt;}
.y125{bottom:233.000000pt;}
.y8d{bottom:240.026667pt;}
.y32{bottom:240.186667pt;}
.y71{bottom:241.800000pt;}
.yb6{bottom:243.226667pt;}
.yd9{bottom:243.866667pt;}
.y113{bottom:246.426667pt;}
.y147{bottom:246.746667pt;}
.yea{bottom:247.546667pt;}
.y5d{bottom:247.866667pt;}
.y173{bottom:250.746667pt;}
.y8c{bottom:258.426667pt;}
.y31{bottom:258.586667pt;}
.y6f{bottom:260.840000pt;}
.yb5{bottom:261.626667pt;}
.yd8{bottom:262.266667pt;}
.y124{bottom:264.360000pt;}
.y112{bottom:264.826667pt;}
.y146{bottom:265.146667pt;}
.ye9{bottom:265.946667pt;}
.y5c{bottom:266.266667pt;}
.y172{bottom:269.146667pt;}
.y8b{bottom:276.826667pt;}
.y30{bottom:276.986667pt;}
.yb4{bottom:280.026667pt;}
.y6d{bottom:280.040000pt;}
.y123{bottom:280.360000pt;}
.yd7{bottom:280.666667pt;}
.y111{bottom:283.226667pt;}
.y145{bottom:283.546667pt;}
.ye8{bottom:284.346667pt;}
.y5b{bottom:284.666667pt;}
.y171{bottom:287.546667pt;}
.y8a{bottom:295.226667pt;}
.y2f{bottom:295.386667pt;}
.yb3{bottom:298.426667pt;}
.yd6{bottom:299.066667pt;}
.y110{bottom:301.626667pt;}
.y144{bottom:301.946667pt;}
.y6c{bottom:302.746667pt;}
.y5a{bottom:303.066667pt;}
.y170{bottom:305.946667pt;}
.y122{bottom:311.720000pt;}
.y89{bottom:313.626667pt;}
.y2e{bottom:313.786667pt;}
.y10e{bottom:316.680000pt;}
.yb2{bottom:316.826667pt;}
.yd5{bottom:317.466667pt;}
.y143{bottom:320.346667pt;}
.y6b{bottom:321.146667pt;}
.y59{bottom:321.466667pt;}
.y16f{bottom:327.066667pt;}
.y121{bottom:327.720000pt;}
.y88{bottom:332.026667pt;}
.y2d{bottom:332.186667pt;}
.y10d{bottom:333.640000pt;}
.yb1{bottom:335.226667pt;}
.yd4{bottom:335.866667pt;}
.y142{bottom:338.746667pt;}
.y6a{bottom:339.546667pt;}
.y58{bottom:339.866667pt;}
.y16e{bottom:348.186667pt;}
.y87{bottom:350.426667pt;}
.y2c{bottom:350.586667pt;}
.yb0{bottom:353.466667pt;}
.yd3{bottom:354.266667pt;}
.y153{bottom:357.146667pt;}
.y69{bottom:357.946667pt;}
.y57{bottom:358.266667pt;}
.y11f{bottom:359.080000pt;}
.y109{bottom:365.000000pt;}
.y86{bottom:368.826667pt;}
.y2b{bottom:368.986667pt;}
.y16d{bottom:369.306667pt;}
.yaf{bottom:371.866667pt;}
.yd2{bottom:372.666667pt;}
.y11b{bottom:375.080000pt;}
.y152{bottom:375.546667pt;}
.y141{bottom:375.866667pt;}
.ye7{bottom:376.346667pt;}
.y56{bottom:376.666667pt;}
.y84{bottom:383.880000pt;}
.y2a{bottom:387.386667pt;}
.y16c{bottom:387.866667pt;}
.yae{bottom:390.266667pt;}
.yd1{bottom:391.066667pt;}
.y140{bottom:394.306667pt;}
.ye6{bottom:394.786667pt;}
.y55{bottom:395.106667pt;}
.y108{bottom:396.386667pt;}
.y29{bottom:405.826667pt;}
.y83{bottom:405.986667pt;}
.y16b{bottom:406.306667pt;}
.yad{bottom:408.706667pt;}
.yd0{bottom:409.506667pt;}
.y11a{bottom:410.946667pt;}
.y151{bottom:412.386667pt;}
.y13f{bottom:412.706667pt;}
.ye5{bottom:413.186667pt;}
.y54{bottom:413.506667pt;}
.y28{bottom:423.906667pt;}
.y16a{bottom:424.706667pt;}
.y82{bottom:426.626667pt;}
.yac{bottom:427.106667pt;}
.y107{bottom:427.746667pt;}
.ycf{bottom:427.906667pt;}
.y13e{bottom:431.106667pt;}
.ye4{bottom:431.586667pt;}
.y53{bottom:431.906667pt;}
.y27{bottom:442.626667pt;}
.yab{bottom:445.506667pt;}
.y169{bottom:445.666667pt;}
.yce{bottom:446.306667pt;}
.y81{bottom:448.866667pt;}
.y13d{bottom:449.506667pt;}
.y150{bottom:449.666667pt;}
.ye3{bottom:449.986667pt;}
.y52{bottom:450.306667pt;}
.y106{bottom:459.106667pt;}
.y26{bottom:460.866667pt;}
.yaa{bottom:463.906667pt;}
.ycd{bottom:464.706667pt;}
.y168{bottom:466.946667pt;}
.y13c{bottom:467.906667pt;}
.y14f{bottom:468.066667pt;}
.ye2{bottom:468.386667pt;}
.y51{bottom:468.706667pt;}
.y80{bottom:469.506667pt;}
.y25{bottom:479.266667pt;}
.ya9{bottom:482.306667pt;}
.ycc{bottom:483.106667pt;}
.y14e{bottom:486.466667pt;}
.ye1{bottom:486.786667pt;}
.y50{bottom:487.106667pt;}
.y167{bottom:488.066667pt;}
.y7e{bottom:490.146667pt;}
.y103{bottom:490.306667pt;}
.y24{bottom:497.346667pt;}
.ya8{bottom:500.706667pt;}
.ycb{bottom:501.506667pt;}
.yfc{bottom:501.986667pt;}
.y13b{bottom:504.866667pt;}
.y4f{bottom:505.506667pt;}
.y166{bottom:506.626667pt;}
.y7c{bottom:512.226667pt;}
.y23{bottom:515.746667pt;}
.ya7{bottom:519.106667pt;}
.yca{bottom:519.906667pt;}
.y102{bottom:521.666667pt;}
.y13a{bottom:523.266667pt;}
.y4e{bottom:523.906667pt;}
.y165{bottom:525.026667pt;}
.y7a{bottom:533.026667pt;}
.yfb{bottom:533.186667pt;}
.y22{bottom:534.466667pt;}
.ya6{bottom:537.506667pt;}
.yc9{bottom:538.306667pt;}
.y139{bottom:541.666667pt;}
.y4d{bottom:542.306667pt;}
.y164{bottom:543.426667pt;}
.yfa{bottom:549.186667pt;}
.y21{bottom:552.866667pt;}
.ya5{bottom:555.906667pt;}
.yc8{bottom:556.706667pt;}
.y101{bottom:560.066667pt;}
.y14d{bottom:560.386667pt;}
.y4c{bottom:560.706667pt;}
.y163{bottom:561.826667pt;}
.yf9{bottom:565.186667pt;}
.y20{bottom:570.946667pt;}
.ya4{bottom:574.306667pt;}
.yc7{bottom:575.106667pt;}
.y138{bottom:578.466667pt;}
.y4b{bottom:578.786667pt;}
.y68{bottom:579.106667pt;}
.yf8{bottom:581.186667pt;}
.y162{bottom:582.786667pt;}
.y1f{bottom:589.346667pt;}
.ya3{bottom:592.706667pt;}
.yc6{bottom:593.506667pt;}
.y137{bottom:596.866667pt;}
.y4a{bottom:597.186667pt;}
.y67{bottom:597.506667pt;}
.y161{bottom:603.933333pt;}
.y1e{bottom:608.093333pt;}
.ya2{bottom:611.133333pt;}
.yc5{bottom:611.933333pt;}
.yf6{bottom:613.213333pt;}
.y14c{bottom:615.613333pt;}
.y49{bottom:615.933333pt;}
.y160{bottom:625.053333pt;}
.y1d{bottom:626.493333pt;}
.yc2{bottom:626.973333pt;}
.yf4{bottom:629.213333pt;}
.ya1{bottom:629.533333pt;}
.y136{bottom:634.013333pt;}
.y48{bottom:634.333333pt;}
.y1c{bottom:644.893333pt;}
.yf2{bottom:645.213333pt;}
.y15f{bottom:646.333333pt;}
.ya0{bottom:647.933333pt;}
.y135{bottom:652.413333pt;}
.y47{bottom:652.733333pt;}
.y9e{bottom:663.133333pt;}
.y1b{bottom:663.293333pt;}
.yc1{bottom:664.413333pt;}
.y15e{bottom:667.773333pt;}
.ye0{bottom:670.653333pt;}
.y134{bottom:670.813333pt;}
.y46{bottom:670.973333pt;}
.y1a{bottom:681.373333pt;}
.y9d{bottom:682.173333pt;}
.yc0{bottom:683.453333pt;}
.y15d{bottom:688.893333pt;}
.y133{bottom:689.213333pt;}
.y45{bottom:689.373333pt;}
.y19{bottom:700.093333pt;}
.y9c{bottom:701.213333pt;}
.ybf{bottom:702.493333pt;}
.y132{bottom:707.613333pt;}
.y44{bottom:707.773333pt;}
.y18{bottom:718.493333pt;}
.y9b{bottom:720.253333pt;}
.ybe{bottom:721.533333pt;}
.y15c{bottom:725.693333pt;}
.y131{bottom:726.013333pt;}
.y43{bottom:726.173333pt;}
.y17{bottom:736.573333pt;}
.y9a{bottom:739.293333pt;}
.y15b{bottom:744.093333pt;}
.ybd{bottom:744.253333pt;}
.y130{bottom:744.413333pt;}
.y42{bottom:744.573333pt;}
.y16{bottom:755.293333pt;}
.y98{bottom:758.333333pt;}
.y15a{bottom:762.493333pt;}
.y66{bottom:762.653333pt;}
.y12f{bottom:762.813333pt;}
.y41{bottom:762.973333pt;}
.y15{bottom:773.693333pt;}
.y159{bottom:780.893333pt;}
.y97{bottom:781.053333pt;}
.y40{bottom:781.373333pt;}
.y14{bottom:792.093333pt;}
.y158{bottom:799.293333pt;}
.y96{bottom:799.453333pt;}
.y3f{bottom:799.773333pt;}
.y13{bottom:810.213333pt;}
.y95{bottom:817.893333pt;}
.y17a{bottom:818.053333pt;}
.y3e{bottom:818.213333pt;}
.y12{bottom:828.613333pt;}
.y3d{bottom:836.613333pt;}
.y11{bottom:847.333333pt;}
.y3c{bottom:855.013333pt;}
.y10{bottom:868.773333pt;}
.y3b{bottom:873.413333pt;}
.y3a{bottom:891.813333pt;}
.yf{bottom:905.093333pt;}
.y6{bottom:909.573333pt;}
.y5{bottom:926.853333pt;}
.yb{bottom:930.240000pt;}
.y4{bottom:948.773333pt;}
.y3{bottom:970.533333pt;}
.y2{bottom:992.293333pt;}
.y1{bottom:1011.493333pt;}
.h9{height:3.870000pt;}
.h27{height:15.186667pt;}
.h20{height:15.346667pt;}
.h1b{height:15.360000pt;}
.h1e{height:15.392000pt;}
.h29{height:16.160000pt;}
.h28{height:16.192000pt;}
.h24{height:16.306667pt;}
.h19{height:18.240000pt;}
.h10{height:18.386667pt;}
.h13{height:18.396000pt;}
.h12{height:18.400000pt;}
.h11{height:18.432000pt;}
.h15{height:19.986667pt;}
.h16{height:21.426667pt;}
.h18{height:21.458667pt;}
.h17{height:21.586667pt;}
.h22{height:30.546667pt;}
.h1f{height:30.560000pt;}
.h25{height:30.578667pt;}
.h21{height:30.706667pt;}
.h23{height:30.738667pt;}
.h4{height:34.720000pt;}
.h1a{height:36.800000pt;}
.h14{height:41.266667pt;}
.h6{height:43.200000pt;}
.h2{height:47.742188pt;}
.hb{height:48.375000pt;}
.h8{height:50.720000pt;}
.h1d{height:52.134375pt;}
.h5{height:52.834688pt;}
.h1c{height:53.535000pt;}
.h26{height:54.390938pt;}
.hd{height:62.812500pt;}
.he{height:64.500000pt;}
.h3{height:65.531250pt;}
.h2a{height:65.781915pt;}
.hc{height:72.655000pt;}
.hf{height:73.490625pt;}
.h7{height:74.477812pt;}
.ha{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:41.600000pt;}
.wb{width:55.840000pt;}
.w1d{width:57.280000pt;}
.wc{width:62.560000pt;}
.wd{width:65.312000pt;}
.w18{width:68.466667pt;}
.we{width:71.186667pt;}
.w11{width:76.346667pt;}
.w10{width:78.546667pt;}
.w26{width:79.026667pt;}
.w22{width:79.040000pt;}
.w25{width:79.058667pt;}
.w21{width:79.072000pt;}
.w24{width:79.186667pt;}
.w20{width:79.192000pt;}
.w27{width:79.226667pt;}
.w23{width:79.232000pt;}
.w1a{width:79.986667pt;}
.w6{width:80.640000pt;}
.w2c{width:85.138667pt;}
.w17{width:85.312000pt;}
.w13{width:87.200000pt;}
.w2d{width:87.826667pt;}
.w2b{width:89.426667pt;}
.wf{width:90.418667pt;}
.w8{width:93.298667pt;}
.w28{width:94.552000pt;}
.w19{width:98.258667pt;}
.w2a{width:98.272000pt;}
.w29{width:101.952000pt;}
.w7{width:103.392000pt;}
.w14{width:108.512000pt;}
.w15{width:110.258667pt;}
.w9{width:111.026667pt;}
.w1f{width:126.912000pt;}
.w1e{width:127.072000pt;}
.wa{width:138.906667pt;}
.w12{width:141.146667pt;}
.w1b{width:156.506667pt;}
.w1c{width:167.386667pt;}
.w5{width:169.786667pt;}
.w4{width:213.600000pt;}
.w16{width:225.786667pt;}
.w2{width:552.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.826667pt;}
.x3{left:3.360000pt;}
.x9{left:9.693333pt;}
.x7{left:48.893333pt;}
.x8{left:60.413333pt;}
.xd{left:113.152000pt;}
.x1{left:120.032000pt;}
.xb{left:142.746667pt;}
.x30{left:144.026667pt;}
.x31{left:168.026667pt;}
.x24{left:192.986667pt;}
.x2b{left:208.506667pt;}
.x12{left:252.706667pt;}
.x19{left:254.946667pt;}
.x25{left:272.866667pt;}
.x20{left:277.186667pt;}
.xe{left:283.586667pt;}
.x13{left:309.186667pt;}
.x2c{left:311.266667pt;}
.x1c{left:339.586667pt;}
.x1a{left:342.786667pt;}
.x26{left:352.546667pt;}
.xc{left:357.506667pt;}
.xf{left:364.866667pt;}
.x14{left:372.386667pt;}
.x4{left:376.000000pt;}
.xa{left:396.893333pt;}
.x2d{left:410.186667pt;}
.x1d{left:425.706667pt;}
.x27{left:432.426667pt;}
.x15{left:438.506667pt;}
.x21{left:445.213333pt;}
.x1b{left:451.946667pt;}
.x6{left:453.120000pt;}
.x10{left:468.906667pt;}
.x1e{left:494.986667pt;}
.x2e{left:500.266667pt;}
.x22{left:503.133333pt;}
.x16{left:510.506667pt;}
.x28{left:512.266667pt;}
.x11{left:562.853333pt;}
.x2f{left:586.053333pt;}
.x29{left:592.133333pt;}
.x1f{left:593.893333pt;}
.x17{left:601.573333pt;}
.x23{left:630.853333pt;}
.x2a{left:671.813333pt;}
.x2{left:673.893333pt;}
.x18{left:680.773333pt;}
}




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