
    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_13910d5492586366708996f9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8dd4f84b24dfa8ca47251897.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6e8fb5332768c9842eaaf335.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e6b41dc396441c377fad9d91.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6aec974dccd07efb68f59107.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_d3a0e5af1cc9050058598c71.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_3801497ea0f2ccbc68d75399.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_591f988a165ddb816a7074aa.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.120000px;}
.lsb{letter-spacing:0.179280px;}
.ls0{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.306600px;}
.ls6{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.900000px;}
.ls19{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.170720px;}
.lsc{letter-spacing:48.420000px;}
.ls9{letter-spacing:50.129280px;}
.lse{letter-spacing:54.900000px;}
.lsf{letter-spacing:91.620000px;}
.lsd{letter-spacing:93.060000px;}
.ls12{letter-spacing:100.980000px;}
.ls10{letter-spacing:118.260000px;}
.ls13{letter-spacing:144.180000px;}
.ls5{letter-spacing:252.180000px;}
.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:-66.240000px;}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._22{margin-left:-7.053840px;}
._10{margin-left:-5.075280px;}
._11{margin-left:-3.409200px;}
._12{margin-left:-2.153520px;}
._0{margin-left:-1.080000px;}
._f{width:1.046880px;}
._1{width:2.220000px;}
._13{width:3.240240px;}
._14{width:4.408800px;}
._15{width:5.476560px;}
._16{width:7.297200px;}
._26{width:8.371440px;}
._17{width:9.709920px;}
._6{width:10.800000px;}
._19{width:11.975040px;}
._18{width:13.027680px;}
._21{width:16.042320px;}
._1b{width:17.928000px;}
._1a{width:19.032480px;}
._20{width:20.201760px;}
._1c{width:22.035120px;}
._35{width:23.088240px;}
._27{width:24.291360px;}
._28{width:25.517520px;}
._1d{width:27.398880px;}
._29{width:28.416960px;}
._24{width:29.653200px;}
._37{width:31.791600px;}
._38{width:33.078240px;}
._39{width:34.185840px;}
._2a{width:37.230480px;}
._34{width:39.709440px;}
._3f{width:40.732800px;}
._23{width:43.295040px;}
._25{width:44.939520px;}
._32{width:46.059840px;}
._2e{width:47.150640px;}
._2b{width:52.529040px;}
._41{width:55.259280px;}
._45{width:57.151440px;}
._30{width:58.653360px;}
._40{width:60.438240px;}
._42{width:62.064240px;}
._43{width:65.424240px;}
._36{width:66.691440px;}
._44{width:68.789040px;}
._33{width:71.682480px;}
._7{width:76.284960px;}
._3d{width:80.359920px;}
._3b{width:83.132640px;}
._3a{width:86.053680px;}
._3c{width:88.682640px;}
._2f{width:119.878560px;}
._8{width:154.080000px;}
._31{width:159.229440px;}
._3e{width:164.487600px;}
._2d{width:166.969440px;}
._2c{width:167.985360px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._1e{width:444.239760px;}
._9{width:604.364160px;}
._1f{width:605.437680px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc4{color:rgb(27,27,29);}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y70{bottom:5.760000px;}
.y7a{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.ycc{bottom:8.280000px;}
.y6{bottom:12.420000px;}
.yc3{bottom:15.660000px;}
.y6e{bottom:15.705000px;}
.y7c{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.y6a{bottom:22.860000px;}
.y72{bottom:25.560000px;}
.yd1{bottom:25.590000px;}
.y6f{bottom:25.605000px;}
.y79{bottom:25.740000px;}
.ycb{bottom:28.260000px;}
.y77{bottom:35.640000px;}
.y6d{bottom:35.685000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.y75{bottom:45.360000px;}
.yd0{bottom:45.390000px;}
.yc5{bottom:45.405000px;}
.y78{bottom:45.540000px;}
.y6c{bottom:45.585000px;}
.yca{bottom:48.060000px;}
.yc8{bottom:50.580000px;}
.y7b{bottom:55.440000px;}
.yb{bottom:57.780000px;}
.ycf{bottom:65.190000px;}
.y74{bottom:65.340000px;}
.yc9{bottom:67.860000px;}
.y4{bottom:68.400000px;}
.yc7{bottom:70.380000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y68{bottom:101.340000px;}
.yf7{bottom:108.000000px;}
.y121{bottom:110.340000px;}
.y114{bottom:112.320000px;}
.y144{bottom:114.840000px;}
.ye7{bottom:117.540000px;}
.yc1{bottom:118.260000px;}
.y97{bottom:119.160000px;}
.y67{bottom:121.320000px;}
.y3a{bottom:124.380000px;}
.y2{bottom:125.670000px;}
.yf6{bottom:127.800000px;}
.y120{bottom:130.320000px;}
.y113{bottom:132.120000px;}
.y143{bottom:135.000000px;}
.ye6{bottom:137.340000px;}
.yc0{bottom:138.060000px;}
.y96{bottom:138.960000px;}
.y39{bottom:144.180000px;}
.y66{bottom:146.340000px;}
.yf5{bottom:147.600000px;}
.y11f{bottom:150.120000px;}
.y112{bottom:151.950000px;}
.y142{bottom:155.010000px;}
.ye5{bottom:157.170000px;}
.y141{bottom:157.350000px;}
.ybf{bottom:158.070000px;}
.y95{bottom:158.790000px;}
.y65{bottom:160.950000px;}
.y38{bottom:164.010000px;}
.yf4{bottom:167.430000px;}
.y11e{bottom:169.950000px;}
.y111{bottom:171.750000px;}
.ye4{bottom:176.970000px;}
.y140{bottom:177.150000px;}
.ybe{bottom:177.870000px;}
.y94{bottom:178.770000px;}
.y64{bottom:180.750000px;}
.y37{bottom:183.810000px;}
.yf3{bottom:187.410000px;}
.y11d{bottom:189.750000px;}
.y110{bottom:191.550000px;}
.ye3{bottom:196.770000px;}
.y13f{bottom:196.950000px;}
.ybd{bottom:197.670000px;}
.y93{bottom:198.570000px;}
.y63{bottom:200.550000px;}
.yf2{bottom:207.210000px;}
.y11c{bottom:209.550000px;}
.y10f{bottom:211.530000px;}
.y36{bottom:212.610000px;}
.y13e{bottom:216.750000px;}
.ybc{bottom:217.470000px;}
.y92{bottom:218.370000px;}
.y62{bottom:220.530000px;}
.ye2{bottom:225.750000px;}
.yf1{bottom:227.010000px;}
.y11b{bottom:229.530000px;}
.y10e{bottom:231.330000px;}
.y35{bottom:232.590000px;}
.y13d{bottom:236.550000px;}
.ybb{bottom:237.270000px;}
.y91{bottom:238.170000px;}
.ye1{bottom:245.550000px;}
.yf0{bottom:246.810000px;}
.y61{bottom:249.330000px;}
.y34{bottom:252.390000px;}
.y13c{bottom:256.530000px;}
.yba{bottom:257.250000px;}
.y10d{bottom:260.130000px;}
.ye0{bottom:265.350000px;}
.yef{bottom:266.610000px;}
.y90{bottom:266.970000px;}
.y60{bottom:269.130000px;}
.y33{bottom:272.190000px;}
.y13b{bottom:276.330000px;}
.yb9{bottom:277.050000px;}
.y10c{bottom:279.930000px;}
.ydf{bottom:285.150000px;}
.yee{bottom:286.590000px;}
.y8f{bottom:286.950000px;}
.y5f{bottom:288.930000px;}
.y32{bottom:291.990000px;}
.y13a{bottom:296.130000px;}
.yb8{bottom:296.850000px;}
.y10b{bottom:299.730000px;}
.yde{bottom:304.950000px;}
.yed{bottom:306.390000px;}
.y8e{bottom:306.750000px;}
.y5e{bottom:308.730000px;}
.y31{bottom:311.790000px;}
.y139{bottom:315.930000px;}
.yb7{bottom:316.650000px;}
.y10a{bottom:319.710000px;}
.ydd{bottom:324.930000px;}
.yec{bottom:326.190000px;}
.y8d{bottom:326.550000px;}
.y5d{bottom:328.710000px;}
.y30{bottom:331.770000px;}
.y138{bottom:335.730000px;}
.yb6{bottom:336.450000px;}
.y109{bottom:339.510000px;}
.ydc{bottom:344.730000px;}
.yeb{bottom:345.990000px;}
.y8c{bottom:346.350000px;}
.y5c{bottom:348.510000px;}
.y2f{bottom:351.570000px;}
.y137{bottom:355.710000px;}
.yb5{bottom:356.430000px;}
.y108{bottom:359.310000px;}
.ydb{bottom:364.530000px;}
.yea{bottom:365.790000px;}
.y8b{bottom:366.150000px;}
.y11a{bottom:368.310000px;}
.y2e{bottom:371.370000px;}
.y136{bottom:375.510000px;}
.yb4{bottom:376.230000px;}
.y5b{bottom:377.310000px;}
.yda{bottom:384.330000px;}
.ye9{bottom:385.770000px;}
.y8a{bottom:386.130000px;}
.y107{bottom:388.110000px;}
.y2d{bottom:391.170000px;}
.y135{bottom:395.310000px;}
.yb3{bottom:396.030000px;}
.y5a{bottom:397.110000px;}
.ye8{bottom:402.195000px;}
.yd9{bottom:404.175000px;}
.y89{bottom:405.975000px;}
.y106{bottom:407.955000px;}
.y2c{bottom:411.015000px;}
.y134{bottom:415.155000px;}
.yb2{bottom:415.875000px;}
.y59{bottom:416.955000px;}
.yd8{bottom:424.155000px;}
.y88{bottom:425.775000px;}
.y105{bottom:427.935000px;}
.y2b{bottom:430.995000px;}
.y133{bottom:434.955000px;}
.yb1{bottom:435.675000px;}
.y87{bottom:445.575000px;}
.y58{bottom:445.935000px;}
.y104{bottom:447.735000px;}
.y2a{bottom:450.795000px;}
.yd7{bottom:452.955000px;}
.y132{bottom:454.935000px;}
.yb0{bottom:455.655000px;}
.y86{bottom:465.375000px;}
.y57{bottom:465.735000px;}
.y103{bottom:467.535000px;}
.y29{bottom:470.595000px;}
.yd6{bottom:472.755000px;}
.y131{bottom:474.735000px;}
.yaf{bottom:475.455000px;}
.y85{bottom:485.355000px;}
.y56{bottom:485.535000px;}
.y102{bottom:487.335000px;}
.y28{bottom:490.395000px;}
.yd5{bottom:492.555000px;}
.y130{bottom:494.535000px;}
.y119{bottom:496.335000px;}
.yae{bottom:504.255000px;}
.y84{bottom:505.155000px;}
.y55{bottom:505.335000px;}
.y101{bottom:507.135000px;}
.y27{bottom:510.195000px;}
.yd4{bottom:512.355000px;}
.y12f{bottom:514.335000px;}
.y118{bottom:516.135000px;}
.yad{bottom:524.055000px;}
.y83{bottom:524.955000px;}
.y54{bottom:525.135000px;}
.yd3{bottom:527.655000px;}
.y26{bottom:530.175000px;}
.y12e{bottom:534.135000px;}
.y100{bottom:536.115000px;}
.yac{bottom:544.035000px;}
.y82{bottom:544.755000px;}
.y53{bottom:545.115000px;}
.y25{bottom:549.975000px;}
.y12d{bottom:554.115000px;}
.yff{bottom:555.915000px;}
.y81{bottom:564.555000px;}
.y52{bottom:564.915000px;}
.yab{bottom:565.275000px;}
.y24{bottom:569.775000px;}
.y12c{bottom:573.915000px;}
.yfe{bottom:575.715000px;}
.yd2{bottom:578.055000px;}
.y80{bottom:584.535000px;}
.y51{bottom:584.715000px;}
.yaa{bottom:585.075000px;}
.y23{bottom:589.575000px;}
.y12b{bottom:593.715000px;}
.yfd{bottom:595.515000px;}
.y7f{bottom:604.335000px;}
.y50{bottom:604.515000px;}
.ya9{bottom:604.875000px;}
.y22{bottom:609.375000px;}
.y12a{bottom:613.515000px;}
.yfc{bottom:615.315000px;}
.y7e{bottom:624.135000px;}
.y4f{bottom:624.315000px;}
.ya8{bottom:624.855000px;}
.yce{bottom:628.455000px;}
.y21{bottom:629.355000px;}
.y129{bottom:633.315000px;}
.yfb{bottom:635.295000px;}
.y7d{bottom:643.935000px;}
.y4e{bottom:644.295000px;}
.ya7{bottom:646.095000px;}
.y20{bottom:649.185000px;}
.y128{bottom:653.325000px;}
.yfa{bottom:655.125000px;}
.y76{bottom:659.085000px;}
.y4d{bottom:664.125000px;}
.ya6{bottom:665.925000px;}
.y1f{bottom:668.985000px;}
.y127{bottom:673.125000px;}
.y4c{bottom:683.925000px;}
.ya5{bottom:685.725000px;}
.y1e{bottom:688.785000px;}
.y126{bottom:692.925000px;}
.y4b{bottom:703.725000px;}
.ya4{bottom:705.525000px;}
.y1d{bottom:708.585000px;}
.y125{bottom:712.725000px;}
.ycd{bottom:718.485000px;}
.y4a{bottom:723.525000px;}
.ya3{bottom:725.505000px;}
.y1c{bottom:728.565000px;}
.y124{bottom:732.525000px;}
.y49{bottom:743.505000px;}
.ya2{bottom:745.305000px;}
.y1b{bottom:748.365000px;}
.y73{bottom:749.265000px;}
.y123{bottom:752.505000px;}
.y48{bottom:763.305000px;}
.ya1{bottom:765.105000px;}
.y1a{bottom:768.165000px;}
.y122{bottom:772.305000px;}
.y47{bottom:783.105000px;}
.y19{bottom:787.965000px;}
.yc6{bottom:788.685000px;}
.y117{bottom:792.105000px;}
.ya0{bottom:793.905000px;}
.y46{bottom:802.905000px;}
.y18{bottom:807.765000px;}
.y116{bottom:811.905000px;}
.y9f{bottom:813.705000px;}
.y45{bottom:822.705000px;}
.y17{bottom:827.745000px;}
.y115{bottom:831.705000px;}
.y9e{bottom:833.685000px;}
.y71{bottom:838.905000px;}
.y44{bottom:842.685000px;}
.y16{bottom:847.545000px;}
.yf9{bottom:851.685000px;}
.y43{bottom:862.485000px;}
.y15{bottom:867.345000px;}
.yf8{bottom:871.485000px;}
.y9d{bottom:882.285000px;}
.yc4{bottom:883.905000px;}
.y14{bottom:887.145000px;}
.y6b{bottom:889.305000px;}
.y42{bottom:891.285000px;}
.y9c{bottom:902.130000px;}
.y13{bottom:906.990000px;}
.y41{bottom:911.130000px;}
.y9b{bottom:921.930000px;}
.y12{bottom:927.510000px;}
.y40{bottom:930.930000px;}
.y9a{bottom:941.910000px;}
.y11{bottom:948.750000px;}
.y3f{bottom:950.910000px;}
.yc2{bottom:954.150000px;}
.y69{bottom:959.550000px;}
.y99{bottom:961.710000px;}
.y3e{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y98{bottom:981.510000px;}
.y3d{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y3c{bottom:1010.310000px;}
.y3b{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.010938px;}
.ha{height:21.780000px;}
.hf{height:27.147656px;}
.h7{height:33.480000px;}
.h13{height:39.600000px;}
.h8{height:41.726953px;}
.hd{height:42.164648px;}
.h1b{height:43.506914px;}
.hb{height:46.251562px;}
.h4{height:46.736719px;}
.he{height:48.027656px;}
.h12{height:48.207656px;}
.h15{height:48.224531px;}
.h1c{height:48.496641px;}
.h9{height:53.224453px;}
.h10{height:54.180000px;}
.h19{height:59.400000px;}
.h17{height:59.436000px;}
.h16{height:59.580000px;}
.h11{height:59.616000px;}
.h3{height:63.500977px;}
.hc{height:67.565039px;}
.h1a{height:79.236000px;}
.h14{height:79.380000px;}
.h18{height:84.420000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wd{width:36.000000px;}
.wc{width:108.216000px;}
.w3{width:131.796000px;}
.w8{width:137.736000px;}
.w9{width:137.916000px;}
.wa{width:138.240000px;}
.w7{width:144.036000px;}
.wb{width:201.270000px;}
.w6{width:233.130000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.xe{left:12.960000px;}
.x11{left:14.400000px;}
.x1{left:53.280000px;}
.xc{left:54.539987px;}
.xb{left:55.619987px;}
.x6{left:57.959987px;}
.x12{left:63.539987px;}
.x14{left:64.620000px;}
.x1d{left:69.479987px;}
.x13{left:90.575987px;}
.x1c{left:91.655987px;}
.xd{left:95.796000px;}
.x4{left:118.290000px;}
.x1b{left:120.995987px;}
.x19{left:172.830000px;}
.x15{left:209.910000px;}
.x7{left:219.809987px;}
.xa{left:312.914987px;}
.xf{left:330.015000px;}
.x16{left:348.735000px;}
.x9{left:397.514987px;}
.x8{left:447.404987px;}
.x17{left:487.725000px;}
.x10{left:564.225000px;}
.x18{left:627.270000px;}
.x3{left:707.910000px;}
.x1a{left:797.009987px;}
.x5{left:829.260000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.106667pt;}
.lsb{letter-spacing:0.159360pt;}
.ls0{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.272533pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.800000pt;}
.ls19{letter-spacing:14.672640pt;}
.ls15{letter-spacing:41.040640pt;}
.lsc{letter-spacing:43.040000pt;}
.ls9{letter-spacing:44.559360pt;}
.lse{letter-spacing:48.800000pt;}
.lsf{letter-spacing:81.440000pt;}
.lsd{letter-spacing:82.720000pt;}
.ls12{letter-spacing:89.760000pt;}
.ls10{letter-spacing:105.120000pt;}
.ls13{letter-spacing:128.160000pt;}
.ls5{letter-spacing:224.160000pt;}
.ws7{word-spacing:-58.880000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._22{margin-left:-6.270080pt;}
._10{margin-left:-4.511360pt;}
._11{margin-left:-3.030400pt;}
._12{margin-left:-1.914240pt;}
._0{margin-left:-0.960000pt;}
._f{width:0.930560pt;}
._1{width:1.973333pt;}
._13{width:2.880213pt;}
._14{width:3.918933pt;}
._15{width:4.868053pt;}
._16{width:6.486400pt;}
._26{width:7.441280pt;}
._17{width:8.631040pt;}
._6{width:9.600000pt;}
._19{width:10.644480pt;}
._18{width:11.580160pt;}
._21{width:14.259840pt;}
._1b{width:15.936000pt;}
._1a{width:16.917760pt;}
._20{width:17.957120pt;}
._1c{width:19.586773pt;}
._35{width:20.522880pt;}
._27{width:21.592320pt;}
._28{width:22.682240pt;}
._1d{width:24.354560pt;}
._29{width:25.259520pt;}
._24{width:26.358400pt;}
._37{width:28.259200pt;}
._38{width:29.402880pt;}
._39{width:30.387413pt;}
._2a{width:33.093760pt;}
._34{width:35.297280pt;}
._3f{width:36.206933pt;}
._23{width:38.484480pt;}
._25{width:39.946240pt;}
._32{width:40.942080pt;}
._2e{width:41.911680pt;}
._2b{width:46.692480pt;}
._41{width:49.119360pt;}
._45{width:50.801280pt;}
._30{width:52.136320pt;}
._40{width:53.722880pt;}
._42{width:55.168213pt;}
._43{width:58.154880pt;}
._36{width:59.281280pt;}
._44{width:61.145813pt;}
._33{width:63.717760pt;}
._7{width:67.808853pt;}
._3d{width:71.431040pt;}
._3b{width:73.895680pt;}
._3a{width:76.492160pt;}
._3c{width:78.829013pt;}
._2f{width:106.558720pt;}
._8{width:136.960000pt;}
._31{width:141.537280pt;}
._3e{width:146.211200pt;}
._2d{width:148.417280pt;}
._2c{width:149.320320pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._1e{width:394.879787pt;}
._9{width:537.212587pt;}
._1f{width:538.166827pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:5.120000pt;}
.y7a{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.ycc{bottom:7.360000pt;}
.y6{bottom:11.040000pt;}
.yc3{bottom:13.920000pt;}
.y6e{bottom:13.960000pt;}
.y7c{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.y6a{bottom:20.320000pt;}
.y72{bottom:22.720000pt;}
.yd1{bottom:22.746667pt;}
.y6f{bottom:22.760000pt;}
.y79{bottom:22.880000pt;}
.ycb{bottom:25.120000pt;}
.y77{bottom:31.680000pt;}
.y6d{bottom:31.720000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.y75{bottom:40.320000pt;}
.yd0{bottom:40.346667pt;}
.yc5{bottom:40.360000pt;}
.y78{bottom:40.480000pt;}
.y6c{bottom:40.520000pt;}
.yca{bottom:42.720000pt;}
.yc8{bottom:44.960000pt;}
.y7b{bottom:49.280000pt;}
.yb{bottom:51.360000pt;}
.ycf{bottom:57.946667pt;}
.y74{bottom:58.080000pt;}
.yc9{bottom:60.320000pt;}
.y4{bottom:60.800000pt;}
.yc7{bottom:62.560000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y68{bottom:90.080000pt;}
.yf7{bottom:96.000000pt;}
.y121{bottom:98.080000pt;}
.y114{bottom:99.840000pt;}
.y144{bottom:102.080000pt;}
.ye7{bottom:104.480000pt;}
.yc1{bottom:105.120000pt;}
.y97{bottom:105.920000pt;}
.y67{bottom:107.840000pt;}
.y3a{bottom:110.560000pt;}
.y2{bottom:111.706667pt;}
.yf6{bottom:113.600000pt;}
.y120{bottom:115.840000pt;}
.y113{bottom:117.440000pt;}
.y143{bottom:120.000000pt;}
.ye6{bottom:122.080000pt;}
.yc0{bottom:122.720000pt;}
.y96{bottom:123.520000pt;}
.y39{bottom:128.160000pt;}
.y66{bottom:130.080000pt;}
.yf5{bottom:131.200000pt;}
.y11f{bottom:133.440000pt;}
.y112{bottom:135.066667pt;}
.y142{bottom:137.786667pt;}
.ye5{bottom:139.706667pt;}
.y141{bottom:139.866667pt;}
.ybf{bottom:140.506667pt;}
.y95{bottom:141.146667pt;}
.y65{bottom:143.066667pt;}
.y38{bottom:145.786667pt;}
.yf4{bottom:148.826667pt;}
.y11e{bottom:151.066667pt;}
.y111{bottom:152.666667pt;}
.ye4{bottom:157.306667pt;}
.y140{bottom:157.466667pt;}
.ybe{bottom:158.106667pt;}
.y94{bottom:158.906667pt;}
.y64{bottom:160.666667pt;}
.y37{bottom:163.386667pt;}
.yf3{bottom:166.586667pt;}
.y11d{bottom:168.666667pt;}
.y110{bottom:170.266667pt;}
.ye3{bottom:174.906667pt;}
.y13f{bottom:175.066667pt;}
.ybd{bottom:175.706667pt;}
.y93{bottom:176.506667pt;}
.y63{bottom:178.266667pt;}
.yf2{bottom:184.186667pt;}
.y11c{bottom:186.266667pt;}
.y10f{bottom:188.026667pt;}
.y36{bottom:188.986667pt;}
.y13e{bottom:192.666667pt;}
.ybc{bottom:193.306667pt;}
.y92{bottom:194.106667pt;}
.y62{bottom:196.026667pt;}
.ye2{bottom:200.666667pt;}
.yf1{bottom:201.786667pt;}
.y11b{bottom:204.026667pt;}
.y10e{bottom:205.626667pt;}
.y35{bottom:206.746667pt;}
.y13d{bottom:210.266667pt;}
.ybb{bottom:210.906667pt;}
.y91{bottom:211.706667pt;}
.ye1{bottom:218.266667pt;}
.yf0{bottom:219.386667pt;}
.y61{bottom:221.626667pt;}
.y34{bottom:224.346667pt;}
.y13c{bottom:228.026667pt;}
.yba{bottom:228.666667pt;}
.y10d{bottom:231.226667pt;}
.ye0{bottom:235.866667pt;}
.yef{bottom:236.986667pt;}
.y90{bottom:237.306667pt;}
.y60{bottom:239.226667pt;}
.y33{bottom:241.946667pt;}
.y13b{bottom:245.626667pt;}
.yb9{bottom:246.266667pt;}
.y10c{bottom:248.826667pt;}
.ydf{bottom:253.466667pt;}
.yee{bottom:254.746667pt;}
.y8f{bottom:255.066667pt;}
.y5f{bottom:256.826667pt;}
.y32{bottom:259.546667pt;}
.y13a{bottom:263.226667pt;}
.yb8{bottom:263.866667pt;}
.y10b{bottom:266.426667pt;}
.yde{bottom:271.066667pt;}
.yed{bottom:272.346667pt;}
.y8e{bottom:272.666667pt;}
.y5e{bottom:274.426667pt;}
.y31{bottom:277.146667pt;}
.y139{bottom:280.826667pt;}
.yb7{bottom:281.466667pt;}
.y10a{bottom:284.186667pt;}
.ydd{bottom:288.826667pt;}
.yec{bottom:289.946667pt;}
.y8d{bottom:290.266667pt;}
.y5d{bottom:292.186667pt;}
.y30{bottom:294.906667pt;}
.y138{bottom:298.426667pt;}
.yb6{bottom:299.066667pt;}
.y109{bottom:301.786667pt;}
.ydc{bottom:306.426667pt;}
.yeb{bottom:307.546667pt;}
.y8c{bottom:307.866667pt;}
.y5c{bottom:309.786667pt;}
.y2f{bottom:312.506667pt;}
.y137{bottom:316.186667pt;}
.yb5{bottom:316.826667pt;}
.y108{bottom:319.386667pt;}
.ydb{bottom:324.026667pt;}
.yea{bottom:325.146667pt;}
.y8b{bottom:325.466667pt;}
.y11a{bottom:327.386667pt;}
.y2e{bottom:330.106667pt;}
.y136{bottom:333.786667pt;}
.yb4{bottom:334.426667pt;}
.y5b{bottom:335.386667pt;}
.yda{bottom:341.626667pt;}
.ye9{bottom:342.906667pt;}
.y8a{bottom:343.226667pt;}
.y107{bottom:344.986667pt;}
.y2d{bottom:347.706667pt;}
.y135{bottom:351.386667pt;}
.yb3{bottom:352.026667pt;}
.y5a{bottom:352.986667pt;}
.ye8{bottom:357.506667pt;}
.yd9{bottom:359.266667pt;}
.y89{bottom:360.866667pt;}
.y106{bottom:362.626667pt;}
.y2c{bottom:365.346667pt;}
.y134{bottom:369.026667pt;}
.yb2{bottom:369.666667pt;}
.y59{bottom:370.626667pt;}
.yd8{bottom:377.026667pt;}
.y88{bottom:378.466667pt;}
.y105{bottom:380.386667pt;}
.y2b{bottom:383.106667pt;}
.y133{bottom:386.626667pt;}
.yb1{bottom:387.266667pt;}
.y87{bottom:396.066667pt;}
.y58{bottom:396.386667pt;}
.y104{bottom:397.986667pt;}
.y2a{bottom:400.706667pt;}
.yd7{bottom:402.626667pt;}
.y132{bottom:404.386667pt;}
.yb0{bottom:405.026667pt;}
.y86{bottom:413.666667pt;}
.y57{bottom:413.986667pt;}
.y103{bottom:415.586667pt;}
.y29{bottom:418.306667pt;}
.yd6{bottom:420.226667pt;}
.y131{bottom:421.986667pt;}
.yaf{bottom:422.626667pt;}
.y85{bottom:431.426667pt;}
.y56{bottom:431.586667pt;}
.y102{bottom:433.186667pt;}
.y28{bottom:435.906667pt;}
.yd5{bottom:437.826667pt;}
.y130{bottom:439.586667pt;}
.y119{bottom:441.186667pt;}
.yae{bottom:448.226667pt;}
.y84{bottom:449.026667pt;}
.y55{bottom:449.186667pt;}
.y101{bottom:450.786667pt;}
.y27{bottom:453.506667pt;}
.yd4{bottom:455.426667pt;}
.y12f{bottom:457.186667pt;}
.y118{bottom:458.786667pt;}
.yad{bottom:465.826667pt;}
.y83{bottom:466.626667pt;}
.y54{bottom:466.786667pt;}
.yd3{bottom:469.026667pt;}
.y26{bottom:471.266667pt;}
.y12e{bottom:474.786667pt;}
.y100{bottom:476.546667pt;}
.yac{bottom:483.586667pt;}
.y82{bottom:484.226667pt;}
.y53{bottom:484.546667pt;}
.y25{bottom:488.866667pt;}
.y12d{bottom:492.546667pt;}
.yff{bottom:494.146667pt;}
.y81{bottom:501.826667pt;}
.y52{bottom:502.146667pt;}
.yab{bottom:502.466667pt;}
.y24{bottom:506.466667pt;}
.y12c{bottom:510.146667pt;}
.yfe{bottom:511.746667pt;}
.yd2{bottom:513.826667pt;}
.y80{bottom:519.586667pt;}
.y51{bottom:519.746667pt;}
.yaa{bottom:520.066667pt;}
.y23{bottom:524.066667pt;}
.y12b{bottom:527.746667pt;}
.yfd{bottom:529.346667pt;}
.y7f{bottom:537.186667pt;}
.y50{bottom:537.346667pt;}
.ya9{bottom:537.666667pt;}
.y22{bottom:541.666667pt;}
.y12a{bottom:545.346667pt;}
.yfc{bottom:546.946667pt;}
.y7e{bottom:554.786667pt;}
.y4f{bottom:554.946667pt;}
.ya8{bottom:555.426667pt;}
.yce{bottom:558.626667pt;}
.y21{bottom:559.426667pt;}
.y129{bottom:562.946667pt;}
.yfb{bottom:564.706667pt;}
.y7d{bottom:572.386667pt;}
.y4e{bottom:572.706667pt;}
.ya7{bottom:574.306667pt;}
.y20{bottom:577.053333pt;}
.y128{bottom:580.733333pt;}
.yfa{bottom:582.333333pt;}
.y76{bottom:585.853333pt;}
.y4d{bottom:590.333333pt;}
.ya6{bottom:591.933333pt;}
.y1f{bottom:594.653333pt;}
.y127{bottom:598.333333pt;}
.y4c{bottom:607.933333pt;}
.ya5{bottom:609.533333pt;}
.y1e{bottom:612.253333pt;}
.y126{bottom:615.933333pt;}
.y4b{bottom:625.533333pt;}
.ya4{bottom:627.133333pt;}
.y1d{bottom:629.853333pt;}
.y125{bottom:633.533333pt;}
.ycd{bottom:638.653333pt;}
.y4a{bottom:643.133333pt;}
.ya3{bottom:644.893333pt;}
.y1c{bottom:647.613333pt;}
.y124{bottom:651.133333pt;}
.y49{bottom:660.893333pt;}
.ya2{bottom:662.493333pt;}
.y1b{bottom:665.213333pt;}
.y73{bottom:666.013333pt;}
.y123{bottom:668.893333pt;}
.y48{bottom:678.493333pt;}
.ya1{bottom:680.093333pt;}
.y1a{bottom:682.813333pt;}
.y122{bottom:686.493333pt;}
.y47{bottom:696.093333pt;}
.y19{bottom:700.413333pt;}
.yc6{bottom:701.053333pt;}
.y117{bottom:704.093333pt;}
.ya0{bottom:705.693333pt;}
.y46{bottom:713.693333pt;}
.y18{bottom:718.013333pt;}
.y116{bottom:721.693333pt;}
.y9f{bottom:723.293333pt;}
.y45{bottom:731.293333pt;}
.y17{bottom:735.773333pt;}
.y115{bottom:739.293333pt;}
.y9e{bottom:741.053333pt;}
.y71{bottom:745.693333pt;}
.y44{bottom:749.053333pt;}
.y16{bottom:753.373333pt;}
.yf9{bottom:757.053333pt;}
.y43{bottom:766.653333pt;}
.y15{bottom:770.973333pt;}
.yf8{bottom:774.653333pt;}
.y9d{bottom:784.253333pt;}
.yc4{bottom:785.693333pt;}
.y14{bottom:788.573333pt;}
.y6b{bottom:790.493333pt;}
.y42{bottom:792.253333pt;}
.y9c{bottom:801.893333pt;}
.y13{bottom:806.213333pt;}
.y41{bottom:809.893333pt;}
.y9b{bottom:819.493333pt;}
.y12{bottom:824.453333pt;}
.y40{bottom:827.493333pt;}
.y9a{bottom:837.253333pt;}
.y11{bottom:843.333333pt;}
.y3f{bottom:845.253333pt;}
.yc2{bottom:848.133333pt;}
.y69{bottom:852.933333pt;}
.y99{bottom:854.853333pt;}
.y3e{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y98{bottom:872.453333pt;}
.y3d{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y3c{bottom:898.053333pt;}
.y3b{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:1.787500pt;}
.ha{height:19.360000pt;}
.hf{height:24.131250pt;}
.h7{height:29.760000pt;}
.h13{height:35.200000pt;}
.h8{height:37.090625pt;}
.hd{height:37.479688pt;}
.h1b{height:38.672812pt;}
.hb{height:41.112500pt;}
.h4{height:41.543750pt;}
.he{height:42.691250pt;}
.h12{height:42.851250pt;}
.h15{height:42.866250pt;}
.h1c{height:43.108125pt;}
.h9{height:47.310625pt;}
.h10{height:48.160000pt;}
.h19{height:52.800000pt;}
.h17{height:52.832000pt;}
.h16{height:52.960000pt;}
.h11{height:52.992000pt;}
.h3{height:56.445312pt;}
.hc{height:60.057813pt;}
.h1a{height:70.432000pt;}
.h14{height:70.560000pt;}
.h18{height:75.040000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wd{width:32.000000pt;}
.wc{width:96.192000pt;}
.w3{width:117.152000pt;}
.w8{width:122.432000pt;}
.w9{width:122.592000pt;}
.wa{width:122.880000pt;}
.w7{width:128.032000pt;}
.wb{width:178.906667pt;}
.w6{width:207.226667pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.xe{left:11.520000pt;}
.x11{left:12.800000pt;}
.x1{left:47.360000pt;}
.xc{left:48.479988pt;}
.xb{left:49.439988pt;}
.x6{left:51.519988pt;}
.x12{left:56.479988pt;}
.x14{left:57.440000pt;}
.x1d{left:61.759988pt;}
.x13{left:80.511988pt;}
.x1c{left:81.471988pt;}
.xd{left:85.152000pt;}
.x4{left:105.146667pt;}
.x1b{left:107.551988pt;}
.x19{left:153.626667pt;}
.x15{left:186.586667pt;}
.x7{left:195.386655pt;}
.xa{left:278.146655pt;}
.xf{left:293.346667pt;}
.x16{left:309.986667pt;}
.x9{left:353.346655pt;}
.x8{left:397.693322pt;}
.x17{left:433.533333pt;}
.x10{left:501.533333pt;}
.x18{left:557.573333pt;}
.x3{left:629.253333pt;}
.x1a{left:708.453322pt;}
.x5{left:737.120000pt;}
}




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