
    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_cf3a062e0d60a3c3296321c4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_06c878f0902af6a3c1b1bf65.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_39f06d4cc394f247eeccdc00.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b8737eabda8617efbfff24e2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f5749b69641603fcfb041230.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_accb1cc61d042fe59d484469.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_d521a9a3207a7b254f6ea4b8.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_4cfda1d11c2db8db72611b5f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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;}
.m3{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.325968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325968,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-69.120000px;}
.v8{vertical-align:-66.960000px;}
.v6{vertical-align:-65.520000px;}
.vc{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v7{vertical-align:-61.200000px;}
.v4{vertical-align:-23.760000px;}
.v5{vertical-align:-18.000000px;}
.vb{vertical-align:-11.564440px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:18.000000px;}
.v3{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.220800px;}
.ls19{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.027360px;}
.lsb{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.108000px;}
.ls1a{letter-spacing:0.167684px;}
.ls1{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.234000px;}
.ls12{letter-spacing:0.262200px;}
.ls4{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.702000px;}
.ls16{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.613239px;}
.ls22{letter-spacing:2.988000px;}
.ls3{letter-spacing:4.500000px;}
.ls17{letter-spacing:8.820000px;}
.ls21{letter-spacing:30.348000px;}
.ls5{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls2{letter-spacing:66.420000px;}
.ls1b{letter-spacing:118.385890px;}
.ls0{letter-spacing:154.980000px;}
.ls14{letter-spacing:862.680000px;}
.ls1f{letter-spacing:1166.880000px;}
.ls1d{letter-spacing:1221.600000px;}
.lsa{letter-spacing:1295.700000px;}
.ls7{letter-spacing:1367.340000px;}
.ls20{letter-spacing:1383.600000px;}
.ls13{letter-spacing:1428.240000px;}
.ls15{letter-spacing:1593.960000px;}
.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;}
}
.wsb{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws15{word-spacing:-16.878300px;}
.wsf{word-spacing:-16.822200px;}
.ws16{word-spacing:-16.788856px;}
.ws6{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws5{word-spacing:-13.999200px;}
.ws3{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.734000px;}
.ws10{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.wsc{word-spacing:-12.672000px;}
.ws7{word-spacing:-10.440000px;}
.ws11{word-spacing:-9.933739px;}
.ws8{word-spacing:-9.000000px;}
.ws14{word-spacing:-8.841014px;}
.wse{word-spacing:0.000000px;}
._16{margin-left:-90.121355px;}
._13{margin-left:-66.636708px;}
._15{margin-left:-46.090074px;}
._8{margin-left:-12.660000px;}
._14{margin-left:-4.383360px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._5{width:2.405760px;}
._6{width:4.374000px;}
._7{width:5.466000px;}
._12{width:6.622560px;}
._11{width:8.119440px;}
._10{width:9.450000px;}
._9{width:10.746000px;}
._e{width:11.772000px;}
._f{width:14.581440px;}
._c{width:15.876000px;}
._d{width:18.547200px;}
._b{width:21.522240px;}
._a{width:22.572000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fse{font-size:27.225048px;}
.fs10{font-size:28.911099px;}
.fsf{font-size:31.802209px;}
.fsd{font-size:35.732875px;}
.fsa{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs12{font-size:60.391569px;}
.fs11{font-size:60.713308px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yf0{bottom:1.807081px;}
.yee{bottom:6.504999px;}
.y128{bottom:9.900000px;}
.ya8{bottom:11.272781px;}
.y126{bottom:11.880000px;}
.yf3{bottom:17.708777px;}
.y104{bottom:19.770660px;}
.yf7{bottom:22.045424px;}
.yf2{bottom:22.768209px;}
.yab{bottom:24.459902px;}
.yef{bottom:35.416839px;}
.yeb{bottom:44.090196px;}
.yed{bottom:44.812958px;}
.y108{bottom:45.293249px;}
.y10a{bottom:49.966412px;}
.ya9{bottom:51.259562px;}
.yf1{bottom:54.931847px;}
.y2{bottom:57.960000px;}
.ya6{bottom:58.491232px;}
.y106{bottom:64.345384px;}
.yaa{bottom:74.443403px;}
.y1{bottom:76.860000px;}
.ye9{bottom:79.144888px;}
.y109{bottom:80.881140px;}
.yf5{bottom:81.674542px;}
.yf4{bottom:81.674544px;}
.yec{bottom:83.481538px;}
.yae{bottom:93.589570px;}
.y10b{bottom:94.541117px;}
.yac{bottom:94.653035px;}
.y124{bottom:96.840000px;}
.yc3{bottom:100.620000px;}
.y9e{bottom:102.240000px;}
.y3a{bottom:102.270000px;}
.y7c{bottom:107.100000px;}
.ydf{bottom:108.900000px;}
.y123{bottom:112.320000px;}
.yb0{bottom:115.071782px;}
.yc2{bottom:116.100000px;}
.y9d{bottom:117.900000px;}
.y39{bottom:117.930000px;}
.y7b{bottom:122.940000px;}
.yde{bottom:124.560000px;}
.y122{bottom:127.800000px;}
.yc1{bottom:131.760000px;}
.y38{bottom:133.230000px;}
.y9c{bottom:133.740000px;}
.y7a{bottom:138.456000px;}
.ydd{bottom:140.076000px;}
.y121{bottom:143.496000px;}
.yc0{bottom:147.276000px;}
.y37{bottom:148.740000px;}
.y9b{bottom:149.436000px;}
.y79{bottom:154.110000px;}
.ydc{bottom:155.730000px;}
.yb5{bottom:158.674419px;}
.y120{bottom:158.970000px;}
.yb4{bottom:161.652169px;}
.y9a{bottom:161.850000px;}
.ybf{bottom:162.750000px;}
.y36{bottom:164.400000px;}
.ydb{bottom:168.150000px;}
.y78{bottom:169.590000px;}
.y11f{bottom:174.450000px;}
.ybe{bottom:178.230000px;}
.yb1{bottom:179.731293px;}
.y77{bottom:185.070000px;}
.y11e{bottom:189.930000px;}
.ybd{bottom:193.890000px;}
.y5c{bottom:194.610000px;}
.y35{bottom:195.540000px;}
.yb3{bottom:198.661202px;}
.y76{bottom:200.550000px;}
.yb2{bottom:201.638950px;}
.y11d{bottom:205.590000px;}
.y145{bottom:208.650000px;}
.ybc{bottom:209.370000px;}
.y5b{bottom:210.090000px;}
.y34{bottom:211.380000px;}
.y75{bottom:216.210000px;}
.y11c{bottom:221.070000px;}
.y144{bottom:224.130000px;}
.ybb{bottom:225.030000px;}
.y5a{bottom:225.570000px;}
.y33{bottom:227.040000px;}
.y74{bottom:231.510000px;}
.y11b{bottom:236.550000px;}
.y143{bottom:239.790000px;}
.yba{bottom:240.510000px;}
.y59{bottom:241.050000px;}
.y32{bottom:242.520000px;}
.y73{bottom:246.990000px;}
.y11a{bottom:252.210000px;}
.y142{bottom:255.270000px;}
.yb9{bottom:255.810000px;}
.y58{bottom:256.710000px;}
.y31{bottom:258.000000px;}
.y72{bottom:263.010000px;}
.y119{bottom:267.690000px;}
.yb8{bottom:268.590000px;}
.y141{bottom:270.750000px;}
.y57{bottom:272.190000px;}
.y30{bottom:273.480000px;}
.y118{bottom:283.350000px;}
.y140{bottom:286.230000px;}
.y170{bottom:286.770000px;}
.y56{bottom:287.850000px;}
.y2f{bottom:289.140000px;}
.y71{bottom:294.150000px;}
.y117{bottom:298.650000px;}
.y13f{bottom:301.890000px;}
.y16f{bottom:302.430000px;}
.y55{bottom:303.330000px;}
.y2e{bottom:304.620000px;}
.y99{bottom:308.910000px;}
.y70{bottom:309.810000px;}
.y116{bottom:311.250000px;}
.y13e{bottom:317.370000px;}
.y16e{bottom:317.910000px;}
.y54{bottom:318.810000px;}
.y2d{bottom:320.100000px;}
.y98{bottom:321.330000px;}
.y6f{bottom:325.290000px;}
.y13d{bottom:332.850000px;}
.y16d{bottom:333.390000px;}
.y53{bottom:334.290000px;}
.y2c{bottom:335.580000px;}
.y6e{bottom:340.770000px;}
.y13c{bottom:348.330000px;}
.y16c{bottom:348.870000px;}
.y52{bottom:349.950000px;}
.y6d{bottom:356.250000px;}
.y13b{bottom:363.990000px;}
.y16b{bottom:364.530000px;}
.y51{bottom:365.430000px;}
.y2b{bottom:366.540000px;}
.y6c{bottom:371.910000px;}
.y13a{bottom:379.470000px;}
.y16a{bottom:380.010000px;}
.y50{bottom:381.090000px;}
.y6b{bottom:387.435000px;}
.y139{bottom:394.995000px;}
.y169{bottom:395.535000px;}
.y4f{bottom:396.435000px;}
.y2a{bottom:397.545000px;}
.y6a{bottom:402.915000px;}
.yda{bottom:410.475000px;}
.y138{bottom:410.655000px;}
.y168{bottom:411.015000px;}
.y4e{bottom:412.275000px;}
.y29{bottom:415.725000px;}
.y69{bottom:418.575000px;}
.yd9{bottom:426.135000px;}
.y167{bottom:426.495000px;}
.y4d{bottom:427.935000px;}
.y28{bottom:428.505000px;}
.y68{bottom:434.055000px;}
.yb7{bottom:437.295000px;}
.y4c{bottom:440.355000px;}
.yd8{bottom:441.615000px;}
.y166{bottom:442.155000px;}
.y27{bottom:444.165000px;}
.y115{bottom:445.035000px;}
.y67{bottom:449.715000px;}
.yb6{bottom:453.855000px;}
.yad{bottom:453.981721px;}
.ya5{bottom:453.981739px;}
.ya7{bottom:453.981748px;}
.yaf{bottom:453.981766px;}
.yd7{bottom:457.095000px;}
.y137{bottom:457.275000px;}
.y165{bottom:457.455000px;}
.y26{bottom:459.645000px;}
.y114{bottom:460.695000px;}
.y66{bottom:465.195000px;}
.yd6{bottom:472.575000px;}
.y136{bottom:472.755000px;}
.y164{bottom:472.935000px;}
.y25{bottom:475.305000px;}
.y113{bottom:476.175000px;}
.y65{bottom:480.675000px;}
.yd5{bottom:488.235000px;}
.y135{bottom:488.415000px;}
.y163{bottom:488.955000px;}
.y24{bottom:490.965000px;}
.y112{bottom:491.655000px;}
.y64{bottom:496.155000px;}
.yd4{bottom:503.715000px;}
.y162{bottom:504.435000px;}
.y111{bottom:507.135000px;}
.y63{bottom:511.815000px;}
.y134{bottom:516.315000px;}
.yd3{bottom:519.375000px;}
.y161{bottom:519.915000px;}
.y110{bottom:522.795000px;}
.y23{bottom:522.825000px;}
.y62{bottom:527.295000px;}
.yd2{bottom:534.675000px;}
.y160{bottom:535.575000px;}
.y10f{bottom:538.275000px;}
.y22{bottom:541.005000px;}
.y61{bottom:542.595000px;}
.yd1{bottom:550.515000px;}
.y15f{bottom:551.235000px;}
.y10e{bottom:553.935000px;}
.y21{bottom:556.485000px;}
.y60{bottom:558.615000px;}
.yd0{bottom:562.935000px;}
.y20{bottom:571.965000px;}
.y5f{bottom:573.735000px;}
.y15e{bottom:582.375000px;}
.y10d{bottom:585.075000px;}
.y5e{bottom:586.515000px;}
.y1f{bottom:587.625000px;}
.y10c{bottom:597.315000px;}
.y15d{bottom:597.855000px;}
.y103{bottom:597.871108px;}
.y105{bottom:597.871123px;}
.y107{bottom:597.871138px;}
.y1e{bottom:603.105000px;}
.y15c{bottom:613.335000px;}
.y1d{bottom:618.585000px;}
.y15b{bottom:628.995000px;}
.y1c{bottom:634.065000px;}
.y15a{bottom:644.505000px;}
.y1b{bottom:649.755000px;}
.y159{bottom:659.985000px;}
.y1a{bottom:665.235000px;}
.y158{bottom:675.465000px;}
.y19{bottom:680.715000px;}
.ya4{bottom:681.765000px;}
.y157{bottom:691.125000px;}
.y18{bottom:696.375000px;}
.y156{bottom:706.425000px;}
.y97{bottom:713.805000px;}
.ya3{bottom:713.985000px;}
.y17{bottom:718.515000px;}
.y155{bottom:721.905000px;}
.ya2{bottom:729.105000px;}
.y96{bottom:729.465000px;}
.y154{bottom:737.565000px;}
.y95{bottom:744.945000px;}
.y16{bottom:745.155000px;}
.y102{bottom:745.485000px;}
.y153{bottom:753.405000px;}
.y94{bottom:760.425000px;}
.y14{bottom:760.815000px;}
.y101{bottom:760.965000px;}
.y152{bottom:768.885000px;}
.y93{bottom:775.905000px;}
.y13{bottom:776.295000px;}
.y100{bottom:776.445000px;}
.ycf{bottom:780.045000px;}
.y151{bottom:784.545000px;}
.y92{bottom:791.565000px;}
.yff{bottom:792.105000px;}
.yce{bottom:795.525000px;}
.y150{bottom:800.025000px;}
.y91{bottom:806.865000px;}
.yfe{bottom:807.585000px;}
.y12{bottom:810.855000px;}
.ycd{bottom:811.005000px;}
.y14f{bottom:815.505000px;}
.yfd{bottom:822.885000px;}
.y133{bottom:825.405000px;}
.ycc{bottom:826.485000px;}
.y14e{bottom:830.985000px;}
.y11{bottom:831.015000px;}
.yfc{bottom:838.905000px;}
.y90{bottom:839.085000px;}
.y132{bottom:841.245000px;}
.ycb{bottom:842.145000px;}
.y14d{bottom:846.645000px;}
.yfb{bottom:854.025000px;}
.y131{bottom:856.725000px;}
.y8f{bottom:857.265000px;}
.yca{bottom:857.625000px;}
.y14c{bottom:861.945000px;}
.y10{bottom:863.415000px;}
.y15{bottom:864.375000px;}
.yfa{bottom:869.685000px;}
.y130{bottom:872.385000px;}
.y8e{bottom:872.745000px;}
.yc9{bottom:873.105000px;}
.yf{bottom:876.555000px;}
.y14b{bottom:877.425000px;}
.y127{bottom:881.925000px;}
.yf9{bottom:885.345000px;}
.y12f{bottom:887.865000px;}
.y8d{bottom:888.225000px;}
.yc8{bottom:888.765000px;}
.y14a{bottom:893.130000px;}
.y125{bottom:895.290000px;}
.yf8{bottom:897.990000px;}
.yf6{bottom:898.837142px;}
.yea{bottom:898.837157px;}
.ye8{bottom:898.837172px;}
.ye{bottom:901.980000px;}
.y12e{bottom:903.390000px;}
.y8c{bottom:903.930000px;}
.yc7{bottom:904.290000px;}
.y149{bottom:908.790000px;}
.y12d{bottom:919.050000px;}
.y8b{bottom:919.410000px;}
.yc6{bottom:919.770000px;}
.y148{bottom:924.270000px;}
.y4b{bottom:932.550000px;}
.y12c{bottom:934.170000px;}
.y8a{bottom:934.890000px;}
.yc5{bottom:935.430000px;}
.y147{bottom:940.290000px;}
.yd{bottom:941.220000px;}
.y12b{bottom:949.830000px;}
.y89{bottom:950.370000px;}
.y4a{bottom:950.730000px;}
.yc4{bottom:950.910000px;}
.y146{bottom:952.530000px;}
.y5d{bottom:955.590000px;}
.y88{bottom:966.030000px;}
.y49{bottom:966.390000px;}
.ya1{bottom:966.570000px;}
.y12a{bottom:981.330000px;}
.y87{bottom:981.510000px;}
.y48{bottom:981.870000px;}
.ya0{bottom:982.050000px;}
.y129{bottom:993.570000px;}
.y86{bottom:996.990000px;}
.ye7{bottom:997.170000px;}
.y47{bottom:997.530000px;}
.yc{bottom:1000.620000px;}
.y85{bottom:1012.650000px;}
.y46{bottom:1013.010000px;}
.ye6{bottom:1028.130000px;}
.y84{bottom:1028.310000px;}
.y45{bottom:1028.490000px;}
.y9{bottom:1034.100000px;}
.yb{bottom:1039.320000px;}
.y83{bottom:1043.430000px;}
.ye5{bottom:1043.790000px;}
.y44{bottom:1043.970000px;}
.y9f{bottom:1044.150000px;}
.y8{bottom:1057.320000px;}
.ye4{bottom:1059.270000px;}
.y82{bottom:1059.450000px;}
.y43{bottom:1059.630000px;}
.ya{bottom:1071.360000px;}
.ye3{bottom:1074.750000px;}
.y81{bottom:1074.930000px;}
.y42{bottom:1075.110000px;}
.y7{bottom:1086.660000px;}
.ye2{bottom:1090.410000px;}
.y41{bottom:1090.590000px;}
.y6{bottom:1105.740000px;}
.ye1{bottom:1105.890000px;}
.y80{bottom:1106.070000px;}
.y40{bottom:1106.250000px;}
.y7f{bottom:1121.550000px;}
.y3f{bottom:1121.730000px;}
.y5{bottom:1123.020000px;}
.ye0{bottom:1136.850000px;}
.y3e{bottom:1137.210000px;}
.y4{bottom:1140.300000px;}
.y7e{bottom:1152.360000px;}
.y3d{bottom:1152.720000px;}
.y3{bottom:1158.360000px;}
.y7d{bottom:1168.020000px;}
.y3c{bottom:1168.380000px;}
.y3b{bottom:1193.760000px;}
.ha{height:12.006914px;}
.h23{height:25.416000px;}
.h22{height:27.180000px;}
.h18{height:28.394874px;}
.h1b{height:33.168710px;}
.hc{height:35.314453px;}
.h14{height:37.268272px;}
.h10{height:38.158594px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.h1d{height:48.945587px;}
.hb{height:52.971680px;}
.he{height:52.998047px;}
.h19{height:53.332031px;}
.hd{height:54.421875px;}
.h7{height:55.796836px;}
.h24{height:56.320312px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.hf{height:62.153438px;}
.h21{height:62.986519px;}
.h1e{height:63.322083px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h12{height:70.664062px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h1a{height:94.875843px;}
.h1c{height:94.875858px;}
.h1f{height:94.875873px;}
.h20{height:144.148964px;}
.h17{height:209.393485px;}
.h15{height:209.393503px;}
.h13{height:209.393512px;}
.h16{height:209.393529px;}
.h0{height:1263.000000px;}
.w6{width:82.260000px;}
.w7{width:91.296000px;}
.w2{width:307.833878px;}
.w5{width:339.149877px;}
.w4{width:634.179375px;}
.w3{width:634.179525px;}
.w1{width:893.999987px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x37{left:10.611114px;}
.x2{left:29.940000px;}
.xb{left:46.560000px;}
.xf{left:49.908000px;}
.x1a{left:56.839503px;}
.x1b{left:57.948819px;}
.x8{left:73.080000px;}
.x45{left:74.339987px;}
.x1d{left:96.220049px;}
.x44{left:101.375987px;}
.x1c{left:117.020792px;}
.x1f{left:126.727260px;}
.x3c{left:130.176000px;}
.x2d{left:131.339990px;}
.x39{left:144.831391px;}
.x2e{left:148.229864px;}
.x20{left:154.737368px;}
.x38{left:160.668885px;}
.x25{left:174.150308px;}
.x26{left:190.789976px;}
.x1e{left:211.866902px;}
.x21{left:216.581466px;}
.x2b{left:223.769987px;}
.x24{left:234.330437px;}
.x23{left:239.322337px;}
.x5{left:244.050000px;}
.x22{left:246.532862px;}
.x3{left:270.090000px;}
.x36{left:279.614980px;}
.x4{left:290.610000px;}
.x2c{left:291.854987px;}
.x19{left:295.289980px;}
.x9{left:311.370000px;}
.x17{left:321.194987px;}
.x11{left:326.774987px;}
.x40{left:329.474987px;}
.x35{left:347.474987px;}
.x30{left:353.565086px;}
.x14{left:355.214987px;}
.x29{left:362.954987px;}
.x41{left:403.454987px;}
.xe{left:411.999000px;}
.xd{left:416.784000px;}
.x2f{left:428.492784px;}
.x43{left:430.844987px;}
.x1{left:440.700000px;}
.xa{left:448.920000px;}
.x42{left:476.204987px;}
.x6{left:478.845000px;}
.x7{left:506.340000px;}
.x3b{left:527.864987px;}
.x31{left:543.766160px;}
.x32{left:554.573040px;}
.x2a{left:559.364987px;}
.x18{left:587.804987px;}
.x3d{left:591.585000px;}
.x27{left:603.149987px;}
.x33{left:605.725609px;}
.x3e{left:607.829987px;}
.x3a{left:618.809987px;}
.x28{left:627.629987px;}
.x16{left:646.529987px;}
.x15{left:666.329987px;}
.x12{left:690.989987px;}
.x3f{left:706.829987px;}
.x10{left:711.329987px;}
.x13{left:755.609987px;}
.x34{left:767.129987px;}
.xc{left:1093.584000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v8{vertical-align:-59.520000pt;}
.v6{vertical-align:-58.240000pt;}
.vc{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v7{vertical-align:-54.400000pt;}
.v4{vertical-align:-21.120000pt;}
.v5{vertical-align:-16.000000pt;}
.vb{vertical-align:-10.279502pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:16.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.196267pt;}
.ls19{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.024320pt;}
.lsb{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls1a{letter-spacing:0.149053pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.208000pt;}
.ls12{letter-spacing:0.233067pt;}
.ls4{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.624000pt;}
.ls16{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:1.433991pt;}
.ls22{letter-spacing:2.656000pt;}
.ls3{letter-spacing:4.000000pt;}
.ls17{letter-spacing:7.840000pt;}
.ls21{letter-spacing:26.976000pt;}
.ls5{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls2{letter-spacing:59.040000pt;}
.ls1b{letter-spacing:105.231903pt;}
.ls0{letter-spacing:137.760000pt;}
.ls14{letter-spacing:766.826667pt;}
.ls1f{letter-spacing:1037.226667pt;}
.ls1d{letter-spacing:1085.866667pt;}
.lsa{letter-spacing:1151.733333pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls20{letter-spacing:1229.866667pt;}
.ls13{letter-spacing:1269.546667pt;}
.ls15{letter-spacing:1416.853333pt;}
.wsb{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.002933pt;}
.wsf{word-spacing:-14.953067pt;}
.ws16{word-spacing:-14.923428pt;}
.ws6{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws5{word-spacing:-12.443733pt;}
.ws3{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.208000pt;}
.ws10{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsc{word-spacing:-11.264000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws11{word-spacing:-8.829991pt;}
.ws8{word-spacing:-8.000000pt;}
.ws14{word-spacing:-7.858679pt;}
.wse{word-spacing:0.000000pt;}
._16{margin-left:-80.107871pt;}
._13{margin-left:-59.232629pt;}
._15{margin-left:-40.968955pt;}
._8{margin-left:-11.253333pt;}
._14{margin-left:-3.896320pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._5{width:2.138453pt;}
._6{width:3.888000pt;}
._7{width:4.858667pt;}
._12{width:5.886720pt;}
._11{width:7.217280pt;}
._10{width:8.400000pt;}
._9{width:9.552000pt;}
._e{width:10.464000pt;}
._f{width:12.961280pt;}
._c{width:14.112000pt;}
._d{width:16.486400pt;}
._b{width:19.130880pt;}
._a{width:20.064000pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fs8{font-size:10.880000pt;}
.fse{font-size:24.200042pt;}
.fs10{font-size:25.698755pt;}
.fsf{font-size:28.268630pt;}
.fsd{font-size:31.762556pt;}
.fsa{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs12{font-size:53.681394pt;}
.fs11{font-size:53.967385pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yf0{bottom:1.606294pt;}
.yee{bottom:5.782221pt;}
.y128{bottom:8.800000pt;}
.ya8{bottom:10.020250pt;}
.y126{bottom:10.560000pt;}
.yf3{bottom:15.741135pt;}
.y104{bottom:17.573920pt;}
.yf7{bottom:19.595933pt;}
.yf2{bottom:20.238408pt;}
.yab{bottom:21.742135pt;}
.yef{bottom:31.481635pt;}
.yeb{bottom:39.191285pt;}
.yed{bottom:39.833741pt;}
.y108{bottom:40.260666pt;}
.y10a{bottom:44.414588pt;}
.ya9{bottom:45.564055pt;}
.yf1{bottom:48.828308pt;}
.y2{bottom:51.520000pt;}
.ya6{bottom:51.992206pt;}
.y106{bottom:57.195897pt;}
.yaa{bottom:66.171914pt;}
.y1{bottom:68.320000pt;}
.ye9{bottom:70.351012pt;}
.y109{bottom:71.894346pt;}
.yf5{bottom:72.599593pt;}
.yf4{bottom:72.599594pt;}
.yec{bottom:74.205811pt;}
.yae{bottom:83.190729pt;}
.y10b{bottom:84.036549pt;}
.yac{bottom:84.136031pt;}
.y124{bottom:86.080000pt;}
.yc3{bottom:89.440000pt;}
.y9e{bottom:90.880000pt;}
.y3a{bottom:90.906667pt;}
.y7c{bottom:95.200000pt;}
.ydf{bottom:96.800000pt;}
.y123{bottom:99.840000pt;}
.yb0{bottom:102.286028pt;}
.yc2{bottom:103.200000pt;}
.y9d{bottom:104.800000pt;}
.y39{bottom:104.826667pt;}
.y7b{bottom:109.280000pt;}
.yde{bottom:110.720000pt;}
.y122{bottom:113.600000pt;}
.yc1{bottom:117.120000pt;}
.y38{bottom:118.426667pt;}
.y9c{bottom:118.880000pt;}
.y7a{bottom:123.072000pt;}
.ydd{bottom:124.512000pt;}
.y121{bottom:127.552000pt;}
.yc0{bottom:130.912000pt;}
.y37{bottom:132.213333pt;}
.y9b{bottom:132.832000pt;}
.y79{bottom:136.986667pt;}
.ydc{bottom:138.426667pt;}
.yb5{bottom:141.043928pt;}
.y120{bottom:141.306667pt;}
.yb4{bottom:143.690817pt;}
.y9a{bottom:143.866667pt;}
.ybf{bottom:144.666667pt;}
.y36{bottom:146.133333pt;}
.ydb{bottom:149.466667pt;}
.y78{bottom:150.746667pt;}
.y11f{bottom:155.066667pt;}
.ybe{bottom:158.426667pt;}
.yb1{bottom:159.761149pt;}
.y77{bottom:164.506667pt;}
.y11e{bottom:168.826667pt;}
.ybd{bottom:172.346667pt;}
.y5c{bottom:172.986667pt;}
.y35{bottom:173.813333pt;}
.yb3{bottom:176.587735pt;}
.y76{bottom:178.266667pt;}
.yb2{bottom:179.234622pt;}
.y11d{bottom:182.746667pt;}
.y145{bottom:185.466667pt;}
.ybc{bottom:186.106667pt;}
.y5b{bottom:186.746667pt;}
.y34{bottom:187.893333pt;}
.y75{bottom:192.186667pt;}
.y11c{bottom:196.506667pt;}
.y144{bottom:199.226667pt;}
.ybb{bottom:200.026667pt;}
.y5a{bottom:200.506667pt;}
.y33{bottom:201.813333pt;}
.y74{bottom:205.786667pt;}
.y11b{bottom:210.266667pt;}
.y143{bottom:213.146667pt;}
.yba{bottom:213.786667pt;}
.y59{bottom:214.266667pt;}
.y32{bottom:215.573333pt;}
.y73{bottom:219.546667pt;}
.y11a{bottom:224.186667pt;}
.y142{bottom:226.906667pt;}
.yb9{bottom:227.386667pt;}
.y58{bottom:228.186667pt;}
.y31{bottom:229.333333pt;}
.y72{bottom:233.786667pt;}
.y119{bottom:237.946667pt;}
.yb8{bottom:238.746667pt;}
.y141{bottom:240.666667pt;}
.y57{bottom:241.946667pt;}
.y30{bottom:243.093333pt;}
.y118{bottom:251.866667pt;}
.y140{bottom:254.426667pt;}
.y170{bottom:254.906667pt;}
.y56{bottom:255.866667pt;}
.y2f{bottom:257.013333pt;}
.y71{bottom:261.466667pt;}
.y117{bottom:265.466667pt;}
.y13f{bottom:268.346667pt;}
.y16f{bottom:268.826667pt;}
.y55{bottom:269.626667pt;}
.y2e{bottom:270.773333pt;}
.y99{bottom:274.586667pt;}
.y70{bottom:275.386667pt;}
.y116{bottom:276.666667pt;}
.y13e{bottom:282.106667pt;}
.y16e{bottom:282.586667pt;}
.y54{bottom:283.386667pt;}
.y2d{bottom:284.533333pt;}
.y98{bottom:285.626667pt;}
.y6f{bottom:289.146667pt;}
.y13d{bottom:295.866667pt;}
.y16d{bottom:296.346667pt;}
.y53{bottom:297.146667pt;}
.y2c{bottom:298.293333pt;}
.y6e{bottom:302.906667pt;}
.y13c{bottom:309.626667pt;}
.y16c{bottom:310.106667pt;}
.y52{bottom:311.066667pt;}
.y6d{bottom:316.666667pt;}
.y13b{bottom:323.546667pt;}
.y16b{bottom:324.026667pt;}
.y51{bottom:324.826667pt;}
.y2b{bottom:325.813333pt;}
.y6c{bottom:330.586667pt;}
.y13a{bottom:337.306667pt;}
.y16a{bottom:337.786667pt;}
.y50{bottom:338.746667pt;}
.y6b{bottom:344.386667pt;}
.y139{bottom:351.106667pt;}
.y169{bottom:351.586667pt;}
.y4f{bottom:352.386667pt;}
.y2a{bottom:353.373333pt;}
.y6a{bottom:358.146667pt;}
.yda{bottom:364.866667pt;}
.y138{bottom:365.026667pt;}
.y168{bottom:365.346667pt;}
.y4e{bottom:366.466667pt;}
.y29{bottom:369.533333pt;}
.y69{bottom:372.066667pt;}
.yd9{bottom:378.786667pt;}
.y167{bottom:379.106667pt;}
.y4d{bottom:380.386667pt;}
.y28{bottom:380.893333pt;}
.y68{bottom:385.826667pt;}
.yb7{bottom:388.706667pt;}
.y4c{bottom:391.426667pt;}
.yd8{bottom:392.546667pt;}
.y166{bottom:393.026667pt;}
.y27{bottom:394.813333pt;}
.y115{bottom:395.586667pt;}
.y67{bottom:399.746667pt;}
.yb6{bottom:403.426667pt;}
.yad{bottom:403.539308pt;}
.ya5{bottom:403.539324pt;}
.ya7{bottom:403.539332pt;}
.yaf{bottom:403.539347pt;}
.yd7{bottom:406.306667pt;}
.y137{bottom:406.466667pt;}
.y165{bottom:406.626667pt;}
.y26{bottom:408.573333pt;}
.y114{bottom:409.506667pt;}
.y66{bottom:413.506667pt;}
.yd6{bottom:420.066667pt;}
.y136{bottom:420.226667pt;}
.y164{bottom:420.386667pt;}
.y25{bottom:422.493333pt;}
.y113{bottom:423.266667pt;}
.y65{bottom:427.266667pt;}
.yd5{bottom:433.986667pt;}
.y135{bottom:434.146667pt;}
.y163{bottom:434.626667pt;}
.y24{bottom:436.413333pt;}
.y112{bottom:437.026667pt;}
.y64{bottom:441.026667pt;}
.yd4{bottom:447.746667pt;}
.y162{bottom:448.386667pt;}
.y111{bottom:450.786667pt;}
.y63{bottom:454.946667pt;}
.y134{bottom:458.946667pt;}
.yd3{bottom:461.666667pt;}
.y161{bottom:462.146667pt;}
.y110{bottom:464.706667pt;}
.y23{bottom:464.733333pt;}
.y62{bottom:468.706667pt;}
.yd2{bottom:475.266667pt;}
.y160{bottom:476.066667pt;}
.y10f{bottom:478.466667pt;}
.y22{bottom:480.893333pt;}
.y61{bottom:482.306667pt;}
.yd1{bottom:489.346667pt;}
.y15f{bottom:489.986667pt;}
.y10e{bottom:492.386667pt;}
.y21{bottom:494.653333pt;}
.y60{bottom:496.546667pt;}
.yd0{bottom:500.386667pt;}
.y20{bottom:508.413333pt;}
.y5f{bottom:509.986667pt;}
.y15e{bottom:517.666667pt;}
.y10d{bottom:520.066667pt;}
.y5e{bottom:521.346667pt;}
.y1f{bottom:522.333333pt;}
.y10c{bottom:530.946667pt;}
.y15d{bottom:531.426667pt;}
.y103{bottom:531.440985pt;}
.y105{bottom:531.440998pt;}
.y107{bottom:531.441012pt;}
.y1e{bottom:536.093333pt;}
.y15c{bottom:545.186667pt;}
.y1d{bottom:549.853333pt;}
.y15b{bottom:559.106667pt;}
.y1c{bottom:563.613333pt;}
.y15a{bottom:572.893333pt;}
.y1b{bottom:577.560000pt;}
.y159{bottom:586.653333pt;}
.y1a{bottom:591.320000pt;}
.y158{bottom:600.413333pt;}
.y19{bottom:605.080000pt;}
.ya4{bottom:606.013333pt;}
.y157{bottom:614.333333pt;}
.y18{bottom:619.000000pt;}
.y156{bottom:627.933333pt;}
.y97{bottom:634.493333pt;}
.ya3{bottom:634.653333pt;}
.y17{bottom:638.680000pt;}
.y155{bottom:641.693333pt;}
.ya2{bottom:648.093333pt;}
.y96{bottom:648.413333pt;}
.y154{bottom:655.613333pt;}
.y95{bottom:662.173333pt;}
.y16{bottom:662.360000pt;}
.y102{bottom:662.653333pt;}
.y153{bottom:669.693333pt;}
.y94{bottom:675.933333pt;}
.y14{bottom:676.280000pt;}
.y101{bottom:676.413333pt;}
.y152{bottom:683.453333pt;}
.y93{bottom:689.693333pt;}
.y13{bottom:690.040000pt;}
.y100{bottom:690.173333pt;}
.ycf{bottom:693.373333pt;}
.y151{bottom:697.373333pt;}
.y92{bottom:703.613333pt;}
.yff{bottom:704.093333pt;}
.yce{bottom:707.133333pt;}
.y150{bottom:711.133333pt;}
.y91{bottom:717.213333pt;}
.yfe{bottom:717.853333pt;}
.y12{bottom:720.760000pt;}
.ycd{bottom:720.893333pt;}
.y14f{bottom:724.893333pt;}
.yfd{bottom:731.453333pt;}
.y133{bottom:733.693333pt;}
.ycc{bottom:734.653333pt;}
.y14e{bottom:738.653333pt;}
.y11{bottom:738.680000pt;}
.yfc{bottom:745.693333pt;}
.y90{bottom:745.853333pt;}
.y132{bottom:747.773333pt;}
.ycb{bottom:748.573333pt;}
.y14d{bottom:752.573333pt;}
.yfb{bottom:759.133333pt;}
.y131{bottom:761.533333pt;}
.y8f{bottom:762.013333pt;}
.yca{bottom:762.333333pt;}
.y14c{bottom:766.173333pt;}
.y10{bottom:767.480000pt;}
.y15{bottom:768.333333pt;}
.yfa{bottom:773.053333pt;}
.y130{bottom:775.453333pt;}
.y8e{bottom:775.773333pt;}
.yc9{bottom:776.093333pt;}
.yf{bottom:779.160000pt;}
.y14b{bottom:779.933333pt;}
.y127{bottom:783.933333pt;}
.yf9{bottom:786.973333pt;}
.y12f{bottom:789.213333pt;}
.y8d{bottom:789.533333pt;}
.yc8{bottom:790.013333pt;}
.y14a{bottom:793.893333pt;}
.y125{bottom:795.813333pt;}
.yf8{bottom:798.213333pt;}
.yf6{bottom:798.966349pt;}
.yea{bottom:798.966362pt;}
.ye8{bottom:798.966376pt;}
.ye{bottom:801.760000pt;}
.y12e{bottom:803.013333pt;}
.y8c{bottom:803.493333pt;}
.yc7{bottom:803.813333pt;}
.y149{bottom:807.813333pt;}
.y12d{bottom:816.933333pt;}
.y8b{bottom:817.253333pt;}
.yc6{bottom:817.573333pt;}
.y148{bottom:821.573333pt;}
.y4b{bottom:828.933333pt;}
.y12c{bottom:830.373333pt;}
.y8a{bottom:831.013333pt;}
.yc5{bottom:831.493333pt;}
.y147{bottom:835.813333pt;}
.yd{bottom:836.640000pt;}
.y12b{bottom:844.293333pt;}
.y89{bottom:844.773333pt;}
.y4a{bottom:845.093333pt;}
.yc4{bottom:845.253333pt;}
.y146{bottom:846.693333pt;}
.y5d{bottom:849.413333pt;}
.y88{bottom:858.693333pt;}
.y49{bottom:859.013333pt;}
.ya1{bottom:859.173333pt;}
.y12a{bottom:872.293333pt;}
.y87{bottom:872.453333pt;}
.y48{bottom:872.773333pt;}
.ya0{bottom:872.933333pt;}
.y129{bottom:883.173333pt;}
.y86{bottom:886.213333pt;}
.ye7{bottom:886.373333pt;}
.y47{bottom:886.693333pt;}
.yc{bottom:889.440000pt;}
.y85{bottom:900.133333pt;}
.y46{bottom:900.453333pt;}
.ye6{bottom:913.893333pt;}
.y84{bottom:914.053333pt;}
.y45{bottom:914.213333pt;}
.y9{bottom:919.200000pt;}
.yb{bottom:923.840000pt;}
.y83{bottom:927.493333pt;}
.ye5{bottom:927.813333pt;}
.y44{bottom:927.973333pt;}
.y9f{bottom:928.133333pt;}
.y8{bottom:939.840000pt;}
.ye4{bottom:941.573333pt;}
.y82{bottom:941.733333pt;}
.y43{bottom:941.893333pt;}
.ya{bottom:952.320000pt;}
.ye3{bottom:955.333333pt;}
.y81{bottom:955.493333pt;}
.y42{bottom:955.653333pt;}
.y7{bottom:965.920000pt;}
.ye2{bottom:969.253333pt;}
.y41{bottom:969.413333pt;}
.y6{bottom:982.880000pt;}
.ye1{bottom:983.013333pt;}
.y80{bottom:983.173333pt;}
.y40{bottom:983.333333pt;}
.y7f{bottom:996.933333pt;}
.y3f{bottom:997.093333pt;}
.y5{bottom:998.240000pt;}
.ye0{bottom:1010.533333pt;}
.y3e{bottom:1010.853333pt;}
.y4{bottom:1013.600000pt;}
.y7e{bottom:1024.320000pt;}
.y3d{bottom:1024.640000pt;}
.y3{bottom:1029.653333pt;}
.y7d{bottom:1038.240000pt;}
.y3c{bottom:1038.560000pt;}
.y3b{bottom:1061.120000pt;}
.ha{height:10.672812pt;}
.h23{height:22.592000pt;}
.h22{height:24.160000pt;}
.h18{height:25.239888pt;}
.h1b{height:29.483298pt;}
.hc{height:31.390625pt;}
.h14{height:33.127353pt;}
.h10{height:33.918750pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.h1d{height:43.507188pt;}
.hb{height:47.085938pt;}
.he{height:47.109375pt;}
.h19{height:47.406250pt;}
.hd{height:48.375000pt;}
.h7{height:49.597187pt;}
.h24{height:50.062500pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.hf{height:55.247500pt;}
.h21{height:55.988017pt;}
.h1e{height:56.286296pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h12{height:62.812500pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h1a{height:84.334082pt;}
.h1c{height:84.334096pt;}
.h1f{height:84.334109pt;}
.h20{height:128.132412pt;}
.h17{height:186.127542pt;}
.h15{height:186.127558pt;}
.h13{height:186.127566pt;}
.h16{height:186.127582pt;}
.h0{height:1122.666667pt;}
.w6{width:73.120000pt;}
.w7{width:81.152000pt;}
.w2{width:273.630114pt;}
.w5{width:301.466557pt;}
.w4{width:563.715000pt;}
.w3{width:563.715134pt;}
.w1{width:794.666655pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x37{left:9.432101pt;}
.x2{left:26.613333pt;}
.xb{left:41.386667pt;}
.xf{left:44.362667pt;}
.x1a{left:50.524002pt;}
.x1b{left:51.510061pt;}
.x8{left:64.960000pt;}
.x45{left:66.079988pt;}
.x1d{left:85.528932pt;}
.x44{left:90.111988pt;}
.x1c{left:104.018481pt;}
.x1f{left:112.646454pt;}
.x3c{left:115.712000pt;}
.x2d{left:116.746658pt;}
.x39{left:128.739014pt;}
.x2e{left:131.759879pt;}
.x20{left:137.544327pt;}
.x38{left:142.816787pt;}
.x25{left:154.800274pt;}
.x26{left:169.591090pt;}
.x1e{left:188.326135pt;}
.x21{left:192.516858pt;}
.x2b{left:198.906655pt;}
.x24{left:208.293722pt;}
.x23{left:212.730966pt;}
.x5{left:216.933333pt;}
.x22{left:219.140322pt;}
.x3{left:240.080000pt;}
.x36{left:248.546649pt;}
.x4{left:258.320000pt;}
.x2c{left:259.426655pt;}
.x19{left:262.479982pt;}
.x9{left:276.773333pt;}
.x17{left:285.506655pt;}
.x11{left:290.466655pt;}
.x40{left:292.866655pt;}
.x35{left:308.866655pt;}
.x30{left:314.280076pt;}
.x14{left:315.746655pt;}
.x29{left:322.626655pt;}
.x41{left:358.626655pt;}
.xe{left:366.221333pt;}
.xd{left:370.474667pt;}
.x2f{left:380.882474pt;}
.x43{left:382.973321pt;}
.x1{left:391.733333pt;}
.xa{left:399.040000pt;}
.x42{left:423.293321pt;}
.x6{left:425.640000pt;}
.x7{left:450.080000pt;}
.x3b{left:469.213321pt;}
.x31{left:483.347698pt;}
.x32{left:492.953813pt;}
.x2a{left:497.213321pt;}
.x18{left:522.493321pt;}
.x3d{left:525.853333pt;}
.x27{left:536.133321pt;}
.x33{left:538.422764pt;}
.x3e{left:540.293321pt;}
.x3a{left:550.053321pt;}
.x28{left:557.893321pt;}
.x16{left:574.693321pt;}
.x15{left:592.293321pt;}
.x12{left:614.213321pt;}
.x3f{left:628.293321pt;}
.x10{left:632.293321pt;}
.x13{left:671.653321pt;}
.x34{left:681.893321pt;}
.xc{left:972.074667pt;}
}




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