
    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_1a9f5c3a3523246c35d57b98.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_f4357a6a74fcba1a3f07481b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_8fbaf0f7c000df208f10b37a.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_be79fea5ac51208d313f2ed3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_5d9b20f2cecd53d277b7e934.woff')format("woff");}.ff5{font-family:ff5;line-height:0.999512;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_f7aa3e24c6dc58741483a43d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_5c40b383ff021946dc2b28fb.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_03c262ddf5da9da7bb23aed3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_868112290bde75c7a7ff9b03.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.332000px;}
.lsf{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.612000px;}
.ls6{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls14{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.513600px;}
.ls16{letter-spacing:5.214240px;}
.ls13{letter-spacing:16.506720px;}
.ls12{letter-spacing:46.026720px;}
.ls15{letter-spacing:71.460000px;}
.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:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.680200px;}
.wsb{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.500000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._2a{margin-left:-4.363680px;}
._15{margin-left:-3.224880px;}
._c{margin-left:-2.211840px;}
._0{margin-left:-1.080000px;}
._b{width:1.089120px;}
._1{width:2.220000px;}
._11{width:3.711120px;}
._16{width:4.775280px;}
._12{width:6.558240px;}
._14{width:7.762560px;}
._13{width:9.322560px;}
._6{width:10.800000px;}
._19{width:12.134880px;}
._17{width:13.662000px;}
._1c{width:16.480320px;}
._1d{width:17.938080px;}
._20{width:19.757040px;}
._21{width:21.537600px;}
._31{width:23.987280px;}
._35{width:29.956800px;}
._34{width:31.134960px;}
._29{width:32.748480px;}
._23{width:34.660800px;}
._22{width:36.095040px;}
._24{width:37.860480px;}
._36{width:41.712480px;}
._37{width:42.724560px;}
._2f{width:55.981680px;}
._30{width:57.751200px;}
._1f{width:60.060000px;}
._32{width:63.609840px;}
._33{width:64.687680px;}
._2b{width:69.760800px;}
._2c{width:70.845600px;}
._2d{width:73.084800px;}
._7{width:76.284960px;}
._27{width:77.389200px;}
._28{width:79.412160px;}
._2e{width:87.070320px;}
._26{width:89.242560px;}
._25{width:91.074240px;}
._8{width:154.080000px;}
._1a{width:174.129120px;}
._e{width:195.120000px;}
._1b{width:201.036000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._18{width:444.298080px;}
._9{width:604.364160px;}
._f{width:653.880000px;}
._10{width:703.560000px;}
._a{width:1096.860000px;}
._d{width:1176.060000px;}
._1e{width:2934.780000px;}
.fc4{color:rgb(0,0,7);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(14,16,26);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y1a6{bottom:101.700000px;}
.y19a{bottom:102.060000px;}
.y14c{bottom:104.760000px;}
.y66{bottom:105.120000px;}
.y1b0{bottom:105.480000px;}
.y8f{bottom:106.920000px;}
.y127{bottom:108.540000px;}
.yd9{bottom:110.340000px;}
.yc3{bottom:111.780000px;}
.y102{bottom:112.320000px;}
.yac{bottom:112.500000px;}
.y1b2{bottom:114.840000px;}
.y3a{bottom:115.380000px;}
.y16c{bottom:117.540000px;}
.y171{bottom:121.320000px;}
.y1a5{bottom:121.500000px;}
.y199{bottom:121.860000px;}
.y14b{bottom:124.560000px;}
.y65{bottom:124.920000px;}
.y1af{bottom:125.280000px;}
.y2{bottom:125.670000px;}
.y8e{bottom:126.720000px;}
.y126{bottom:128.340000px;}
.yd8{bottom:130.320000px;}
.yc2{bottom:131.580000px;}
.y101{bottom:132.120000px;}
.yab{bottom:132.300000px;}
.ye7{bottom:132.480000px;}
.y1b1{bottom:135.000000px;}
.y39{bottom:135.180000px;}
.y16b{bottom:137.340000px;}
.y170{bottom:141.120000px;}
.y1a4{bottom:141.300000px;}
.y198{bottom:141.660000px;}
.y14a{bottom:144.360000px;}
.y64{bottom:144.720000px;}
.y1ae{bottom:145.260000px;}
.y8d{bottom:146.520000px;}
.y125{bottom:148.320000px;}
.yd7{bottom:150.120000px;}
.yc1{bottom:151.380000px;}
.y100{bottom:151.950000px;}
.yaa{bottom:152.130000px;}
.ye6{bottom:152.310000px;}
.y38{bottom:155.010000px;}
.y16a{bottom:157.350000px;}
.y16f{bottom:160.950000px;}
.y1a3{bottom:161.310000px;}
.y197{bottom:161.490000px;}
.y149{bottom:164.370000px;}
.y1ad{bottom:165.090000px;}
.y124{bottom:168.150000px;}
.yd6{bottom:169.950000px;}
.yc0{bottom:171.210000px;}
.yff{bottom:171.750000px;}
.ya9{bottom:172.110000px;}
.y63{bottom:173.550000px;}
.y37{bottom:174.810000px;}
.y8c{bottom:175.530000px;}
.y169{bottom:177.150000px;}
.y16e{bottom:180.750000px;}
.y1a2{bottom:181.110000px;}
.y196{bottom:181.470000px;}
.y148{bottom:184.170000px;}
.y1ac{bottom:184.890000px;}
.ybf{bottom:187.770000px;}
.y123{bottom:187.950000px;}
.yd5{bottom:189.750000px;}
.yfe{bottom:191.550000px;}
.ya8{bottom:191.910000px;}
.ye5{bottom:192.090000px;}
.y62{bottom:193.530000px;}
.y36{bottom:194.610000px;}
.y168{bottom:196.950000px;}
.y16d{bottom:200.550000px;}
.y1a1{bottom:200.910000px;}
.y195{bottom:201.270000px;}
.y147{bottom:203.970000px;}
.y8b{bottom:204.330000px;}
.y1ab{bottom:204.690000px;}
.y122{bottom:207.750000px;}
.yd4{bottom:209.550000px;}
.yfd{bottom:211.530000px;}
.ya7{bottom:211.710000px;}
.ye4{bottom:211.890000px;}
.y61{bottom:213.330000px;}
.y35{bottom:214.590000px;}
.y167{bottom:216.750000px;}
.y1a0{bottom:220.710000px;}
.y194{bottom:221.070000px;}
.y146{bottom:223.770000px;}
.y8a{bottom:224.130000px;}
.y1aa{bottom:224.490000px;}
.y121{bottom:227.550000px;}
.ya6{bottom:228.270000px;}
.yd3{bottom:229.530000px;}
.yfc{bottom:231.330000px;}
.ye3{bottom:231.690000px;}
.y60{bottom:233.130000px;}
.y34{bottom:234.390000px;}
.y166{bottom:236.550000px;}
.y19f{bottom:240.510000px;}
.y193{bottom:240.870000px;}
.y145{bottom:243.570000px;}
.y1a9{bottom:244.470000px;}
.y120{bottom:247.530000px;}
.yd2{bottom:249.330000px;}
.yfb{bottom:251.130000px;}
.ye2{bottom:251.490000px;}
.y89{bottom:252.930000px;}
.y165{bottom:256.530000px;}
.y19e{bottom:260.490000px;}
.y192{bottom:260.670000px;}
.y1a8{bottom:261.750000px;}
.y5f{bottom:261.930000px;}
.y33{bottom:263.190000px;}
.y11f{bottom:267.330000px;}
.yd1{bottom:269.130000px;}
.y144{bottom:269.850000px;}
.yfa{bottom:270.930000px;}
.ye1{bottom:271.290000px;}
.y88{bottom:272.730000px;}
.y164{bottom:276.330000px;}
.y1a7{bottom:278.850000px;}
.y19d{bottom:280.290000px;}
.y191{bottom:280.650000px;}
.y5e{bottom:281.730000px;}
.y32{bottom:282.990000px;}
.y11e{bottom:287.130000px;}
.yd0{bottom:288.930000px;}
.y143{bottom:289.650000px;}
.yf9{bottom:290.730000px;}
.ye0{bottom:291.270000px;}
.y87{bottom:292.710000px;}
.y163{bottom:296.130000px;}
.y19c{bottom:299.550000px;}
.y190{bottom:300.450000px;}
.y31{bottom:302.790000px;}
.y11d{bottom:306.930000px;}
.ycf{bottom:308.730000px;}
.y142{bottom:309.630000px;}
.y5d{bottom:310.710000px;}
.y86{bottom:312.510000px;}
.y162{bottom:315.930000px;}
.y19b{bottom:317.370000px;}
.ydf{bottom:320.070000px;}
.y18f{bottom:320.250000px;}
.y30{bottom:322.770000px;}
.y11c{bottom:326.730000px;}
.yce{bottom:328.710000px;}
.y141{bottom:329.430000px;}
.y5c{bottom:330.510000px;}
.y161{bottom:335.730000px;}
.y18e{bottom:337.530000px;}
.ya5{bottom:337.710000px;}
.yde{bottom:339.870000px;}
.y85{bottom:341.310000px;}
.y2f{bottom:342.570000px;}
.y11b{bottom:346.710000px;}
.ycd{bottom:348.510000px;}
.y140{bottom:349.230000px;}
.y5b{bottom:350.310000px;}
.y18d{bottom:354.810000px;}
.y160{bottom:355.710000px;}
.ya4{bottom:357.510000px;}
.ydd{bottom:359.670000px;}
.y84{bottom:361.110000px;}
.y2e{bottom:362.370000px;}
.y179{bottom:368.310000px;}
.y13f{bottom:369.030000px;}
.y5a{bottom:370.110000px;}
.y18c{bottom:374.610000px;}
.y11a{bottom:375.510000px;}
.ya3{bottom:377.310000px;}
.y83{bottom:380.910000px;}
.y178{bottom:388.110000px;}
.ydc{bottom:388.470000px;}
.y13e{bottom:388.830000px;}
.y59{bottom:389.910000px;}
.y2d{bottom:391.170000px;}
.y18b{bottom:394.410000px;}
.y119{bottom:395.310000px;}
.ybe{bottom:396.930000px;}
.ya2{bottom:397.110000px;}
.y82{bottom:400.935000px;}
.y177{bottom:407.955000px;}
.ydb{bottom:408.495000px;}
.y13d{bottom:408.855000px;}
.yf8{bottom:409.935000px;}
.y2c{bottom:411.015000px;}
.y118{bottom:415.155000px;}
.ybd{bottom:416.775000px;}
.ya1{bottom:416.955000px;}
.y58{bottom:418.935000px;}
.y81{bottom:420.735000px;}
.y18a{bottom:423.255000px;}
.y176{bottom:427.935000px;}
.yda{bottom:428.295000px;}
.y13c{bottom:428.655000px;}
.yf7{bottom:429.735000px;}
.y2b{bottom:430.995000px;}
.y117{bottom:434.955000px;}
.ybc{bottom:436.575000px;}
.ya0{bottom:436.935000px;}
.y57{bottom:438.735000px;}
.y80{bottom:440.535000px;}
.y189{bottom:443.055000px;}
.y175{bottom:447.735000px;}
.y13b{bottom:448.455000px;}
.yf6{bottom:449.535000px;}
.y2a{bottom:450.795000px;}
.y116{bottom:454.935000px;}
.ybb{bottom:456.375000px;}
.y9f{bottom:456.735000px;}
.y56{bottom:458.535000px;}
.y7f{bottom:460.335000px;}
.y174{bottom:467.535000px;}
.y13a{bottom:468.255000px;}
.y15f{bottom:469.335000px;}
.y29{bottom:470.595000px;}
.y188{bottom:472.035000px;}
.y115{bottom:474.735000px;}
.yba{bottom:476.355000px;}
.y9e{bottom:476.535000px;}
.y55{bottom:478.335000px;}
.y7e{bottom:480.135000px;}
.y173{bottom:487.335000px;}
.y139{bottom:488.055000px;}
.y15e{bottom:489.135000px;}
.y28{bottom:490.395000px;}
.y187{bottom:491.835000px;}
.y114{bottom:494.535000px;}
.yb9{bottom:496.155000px;}
.y9d{bottom:496.335000px;}
.y54{bottom:498.135000px;}
.y7d{bottom:500.115000px;}
.ycc{bottom:505.335000px;}
.y172{bottom:507.135000px;}
.y138{bottom:508.035000px;}
.y15d{bottom:509.115000px;}
.y27{bottom:510.195000px;}
.y186{bottom:511.635000px;}
.yb8{bottom:512.715000px;}
.y113{bottom:514.335000px;}
.y9c{bottom:516.135000px;}
.yf5{bottom:518.115000px;}
.y7c{bottom:519.915000px;}
.ycb{bottom:525.135000px;}
.y53{bottom:527.115000px;}
.y137{bottom:527.835000px;}
.y15c{bottom:528.915000px;}
.y26{bottom:530.175000px;}
.y112{bottom:534.135000px;}
.y9b{bottom:536.115000px;}
.yf4{bottom:537.915000px;}
.y7b{bottom:539.715000px;}
.y185{bottom:540.435000px;}
.yca{bottom:545.115000px;}
.y52{bottom:546.915000px;}
.y136{bottom:547.635000px;}
.y15b{bottom:548.715000px;}
.y25{bottom:549.975000px;}
.y111{bottom:554.115000px;}
.y9a{bottom:555.915000px;}
.y7a{bottom:559.515000px;}
.y184{bottom:560.235000px;}
.yc9{bottom:564.915000px;}
.y51{bottom:566.715000px;}
.y135{bottom:567.435000px;}
.y15a{bottom:568.515000px;}
.y24{bottom:569.775000px;}
.y110{bottom:573.915000px;}
.y99{bottom:575.715000px;}
.y79{bottom:579.315000px;}
.y183{bottom:580.215000px;}
.yc8{bottom:584.715000px;}
.yf3{bottom:586.515000px;}
.y134{bottom:587.235000px;}
.y159{bottom:588.315000px;}
.y23{bottom:589.575000px;}
.y10f{bottom:593.715000px;}
.y50{bottom:595.515000px;}
.y78{bottom:599.295000px;}
.yc7{bottom:604.515000px;}
.yf2{bottom:606.315000px;}
.y133{bottom:607.215000px;}
.y182{bottom:609.015000px;}
.y22{bottom:609.375000px;}
.y10e{bottom:613.515000px;}
.y4f{bottom:615.315000px;}
.y158{bottom:617.295000px;}
.yc6{bottom:624.315000px;}
.yf1{bottom:626.295000px;}
.y132{bottom:627.015000px;}
.y77{bottom:628.095000px;}
.y181{bottom:628.815000px;}
.y21{bottom:629.355000px;}
.y10d{bottom:633.315000px;}
.y4e{bottom:635.295000px;}
.y157{bottom:637.095000px;}
.yc5{bottom:644.295000px;}
.yf0{bottom:646.095000px;}
.yb7{bottom:646.275000px;}
.y131{bottom:646.815000px;}
.y76{bottom:647.895000px;}
.y20{bottom:649.185000px;}
.y10c{bottom:653.325000px;}
.y4d{bottom:655.125000px;}
.y156{bottom:656.925000px;}
.y180{bottom:657.645000px;}
.yc4{bottom:664.125000px;}
.yef{bottom:665.925000px;}
.yb6{bottom:666.105000px;}
.y130{bottom:666.645000px;}
.y75{bottom:667.725000px;}
.y1f{bottom:668.985000px;}
.y10b{bottom:673.125000px;}
.y4c{bottom:674.925000px;}
.y155{bottom:676.725000px;}
.y17f{bottom:677.445000px;}
.y98{bottom:683.925000px;}
.yee{bottom:685.725000px;}
.yb5{bottom:685.905000px;}
.y12f{bottom:686.445000px;}
.y1e{bottom:688.785000px;}
.y10a{bottom:692.925000px;}
.y4b{bottom:694.725000px;}
.y74{bottom:696.525000px;}
.y17e{bottom:697.425000px;}
.y97{bottom:703.725000px;}
.y154{bottom:705.525000px;}
.yb4{bottom:705.885000px;}
.y12e{bottom:706.425000px;}
.y1d{bottom:708.585000px;}
.y109{bottom:712.725000px;}
.yed{bottom:714.525000px;}
.y73{bottom:716.505000px;}
.y4a{bottom:723.525000px;}
.y153{bottom:725.505000px;}
.yb3{bottom:725.685000px;}
.y12d{bottom:726.225000px;}
.y1c{bottom:728.565000px;}
.y108{bottom:732.525000px;}
.yec{bottom:734.505000px;}
.y72{bottom:736.305000px;}
.y49{bottom:743.505000px;}
.y152{bottom:745.305000px;}
.yb2{bottom:745.485000px;}
.y12c{bottom:746.025000px;}
.y1b{bottom:748.365000px;}
.y107{bottom:752.505000px;}
.yeb{bottom:754.305000px;}
.y71{bottom:756.105000px;}
.y48{bottom:763.305000px;}
.y151{bottom:765.105000px;}
.yb1{bottom:765.285000px;}
.y12b{bottom:765.825000px;}
.y1a{bottom:768.165000px;}
.y106{bottom:772.305000px;}
.yea{bottom:774.105000px;}
.y17d{bottom:774.825000px;}
.y70{bottom:775.905000px;}
.y47{bottom:783.105000px;}
.y150{bottom:784.905000px;}
.yb0{bottom:785.085000px;}
.y12a{bottom:785.625000px;}
.y19{bottom:787.965000px;}
.y105{bottom:792.105000px;}
.ye9{bottom:793.905000px;}
.y17c{bottom:794.625000px;}
.y6f{bottom:795.705000px;}
.y46{bottom:802.905000px;}
.yaf{bottom:805.065000px;}
.y129{bottom:805.605000px;}
.y18{bottom:807.765000px;}
.y104{bottom:811.905000px;}
.ye8{bottom:813.705000px;}
.y17b{bottom:814.605000px;}
.y45{bottom:822.705000px;}
.y128{bottom:822.885000px;}
.y6e{bottom:824.685000px;}
.yae{bottom:824.865000px;}
.y17{bottom:827.745000px;}
.y103{bottom:831.705000px;}
.y17a{bottom:831.885000px;}
.y14f{bottom:833.685000px;}
.yad{bottom:841.425000px;}
.y44{bottom:842.685000px;}
.y6d{bottom:844.485000px;}
.y16{bottom:847.545000px;}
.y96{bottom:851.685000px;}
.y14e{bottom:853.485000px;}
.y43{bottom:862.485000px;}
.y6c{bottom:864.285000px;}
.y95{bottom:871.485000px;}
.y15{bottom:872.565000px;}
.y14d{bottom:873.285000px;}
.y42{bottom:882.285000px;}
.y94{bottom:891.285000px;}
.y14{bottom:892.365000px;}
.y6b{bottom:893.085000px;}
.y41{bottom:902.130000px;}
.y93{bottom:911.130000px;}
.y13{bottom:912.210000px;}
.y6a{bottom:912.930000px;}
.y40{bottom:921.930000px;}
.y12{bottom:927.510000px;}
.y92{bottom:930.930000px;}
.y69{bottom:932.910000px;}
.y3f{bottom:941.910000px;}
.y11{bottom:948.750000px;}
.y91{bottom:950.910000px;}
.y68{bottom:952.710000px;}
.y3e{bottom:961.710000px;}
.y90{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y67{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;}
.h7{height:2.581875px;}
.ha{height:21.780000px;}
.h8{height:33.480000px;}
.he{height:34.855313px;}
.hc{height:42.164648px;}
.hf{height:45.024258px;}
.h4{height:46.736719px;}
.h11{height:48.410156px;}
.h10{height:49.255313px;}
.hd{height:53.224453px;}
.h5{height:53.573906px;}
.h9{height:59.383125px;}
.h12{height:59.439023px;}
.h3{height:63.500977px;}
.hb{height:67.565039px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:131.796000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.x9{left:65.159987px;}
.x12{left:74.339987px;}
.x6{left:76.679987px;}
.x13{left:80.999987px;}
.xd{left:108.035987px;}
.x4{left:118.290000px;}
.xa{left:158.249987px;}
.xc{left:203.069987px;}
.xb{left:205.409987px;}
.x7{left:359.714987px;}
.x8{left:443.414987px;}
.x3{left:707.910000px;}
.xe{left:760.109987px;}
.x10{left:768.209987px;}
.xf{left:770.369987px;}
.x11{left:810.719987px;}
.x5{left:829.260000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.184000pt;}
.lsf{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls14{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.456533pt;}
.ls16{letter-spacing:4.634880pt;}
.ls13{letter-spacing:14.672640pt;}
.ls12{letter-spacing:40.912640pt;}
.ls15{letter-spacing:63.520000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.049067pt;}
.wsb{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._2a{margin-left:-3.878827pt;}
._15{margin-left:-2.866560pt;}
._c{margin-left:-1.966080pt;}
._0{margin-left:-0.960000pt;}
._b{width:0.968107pt;}
._1{width:1.973333pt;}
._11{width:3.298773pt;}
._16{width:4.244693pt;}
._12{width:5.829547pt;}
._14{width:6.900053pt;}
._13{width:8.286720pt;}
._6{width:9.600000pt;}
._19{width:10.786560pt;}
._17{width:12.144000pt;}
._1c{width:14.649173pt;}
._1d{width:15.944960pt;}
._20{width:17.561813pt;}
._21{width:19.144533pt;}
._31{width:21.322027pt;}
._35{width:26.628267pt;}
._34{width:27.675520pt;}
._29{width:29.109760pt;}
._23{width:30.809600pt;}
._22{width:32.084480pt;}
._24{width:33.653760pt;}
._36{width:37.077760pt;}
._37{width:37.977387pt;}
._2f{width:49.761493pt;}
._30{width:51.334400pt;}
._1f{width:53.386667pt;}
._32{width:56.542080pt;}
._33{width:57.500160pt;}
._2b{width:62.009600pt;}
._2c{width:62.973867pt;}
._2d{width:64.964267pt;}
._7{width:67.808853pt;}
._27{width:68.790400pt;}
._28{width:70.588587pt;}
._2e{width:77.395840pt;}
._26{width:79.326720pt;}
._25{width:80.954880pt;}
._8{width:136.960000pt;}
._1a{width:154.781440pt;}
._e{width:173.440000pt;}
._1b{width:178.698667pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._18{width:394.931627pt;}
._9{width:537.212587pt;}
._f{width:581.226667pt;}
._10{width:625.386667pt;}
._a{width:974.986667pt;}
._d{width:1045.386667pt;}
._1e{width:2608.693333pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y1a6{bottom:90.400000pt;}
.y19a{bottom:90.720000pt;}
.y14c{bottom:93.120000pt;}
.y66{bottom:93.440000pt;}
.y1b0{bottom:93.760000pt;}
.y8f{bottom:95.040000pt;}
.y127{bottom:96.480000pt;}
.yd9{bottom:98.080000pt;}
.yc3{bottom:99.360000pt;}
.y102{bottom:99.840000pt;}
.yac{bottom:100.000000pt;}
.y1b2{bottom:102.080000pt;}
.y3a{bottom:102.560000pt;}
.y16c{bottom:104.480000pt;}
.y171{bottom:107.840000pt;}
.y1a5{bottom:108.000000pt;}
.y199{bottom:108.320000pt;}
.y14b{bottom:110.720000pt;}
.y65{bottom:111.040000pt;}
.y1af{bottom:111.360000pt;}
.y2{bottom:111.706667pt;}
.y8e{bottom:112.640000pt;}
.y126{bottom:114.080000pt;}
.yd8{bottom:115.840000pt;}
.yc2{bottom:116.960000pt;}
.y101{bottom:117.440000pt;}
.yab{bottom:117.600000pt;}
.ye7{bottom:117.760000pt;}
.y1b1{bottom:120.000000pt;}
.y39{bottom:120.160000pt;}
.y16b{bottom:122.080000pt;}
.y170{bottom:125.440000pt;}
.y1a4{bottom:125.600000pt;}
.y198{bottom:125.920000pt;}
.y14a{bottom:128.320000pt;}
.y64{bottom:128.640000pt;}
.y1ae{bottom:129.120000pt;}
.y8d{bottom:130.240000pt;}
.y125{bottom:131.840000pt;}
.yd7{bottom:133.440000pt;}
.yc1{bottom:134.560000pt;}
.y100{bottom:135.066667pt;}
.yaa{bottom:135.226667pt;}
.ye6{bottom:135.386667pt;}
.y38{bottom:137.786667pt;}
.y16a{bottom:139.866667pt;}
.y16f{bottom:143.066667pt;}
.y1a3{bottom:143.386667pt;}
.y197{bottom:143.546667pt;}
.y149{bottom:146.106667pt;}
.y1ad{bottom:146.746667pt;}
.y124{bottom:149.466667pt;}
.yd6{bottom:151.066667pt;}
.yc0{bottom:152.186667pt;}
.yff{bottom:152.666667pt;}
.ya9{bottom:152.986667pt;}
.y63{bottom:154.266667pt;}
.y37{bottom:155.386667pt;}
.y8c{bottom:156.026667pt;}
.y169{bottom:157.466667pt;}
.y16e{bottom:160.666667pt;}
.y1a2{bottom:160.986667pt;}
.y196{bottom:161.306667pt;}
.y148{bottom:163.706667pt;}
.y1ac{bottom:164.346667pt;}
.ybf{bottom:166.906667pt;}
.y123{bottom:167.066667pt;}
.yd5{bottom:168.666667pt;}
.yfe{bottom:170.266667pt;}
.ya8{bottom:170.586667pt;}
.ye5{bottom:170.746667pt;}
.y62{bottom:172.026667pt;}
.y36{bottom:172.986667pt;}
.y168{bottom:175.066667pt;}
.y16d{bottom:178.266667pt;}
.y1a1{bottom:178.586667pt;}
.y195{bottom:178.906667pt;}
.y147{bottom:181.306667pt;}
.y8b{bottom:181.626667pt;}
.y1ab{bottom:181.946667pt;}
.y122{bottom:184.666667pt;}
.yd4{bottom:186.266667pt;}
.yfd{bottom:188.026667pt;}
.ya7{bottom:188.186667pt;}
.ye4{bottom:188.346667pt;}
.y61{bottom:189.626667pt;}
.y35{bottom:190.746667pt;}
.y167{bottom:192.666667pt;}
.y1a0{bottom:196.186667pt;}
.y194{bottom:196.506667pt;}
.y146{bottom:198.906667pt;}
.y8a{bottom:199.226667pt;}
.y1aa{bottom:199.546667pt;}
.y121{bottom:202.266667pt;}
.ya6{bottom:202.906667pt;}
.yd3{bottom:204.026667pt;}
.yfc{bottom:205.626667pt;}
.ye3{bottom:205.946667pt;}
.y60{bottom:207.226667pt;}
.y34{bottom:208.346667pt;}
.y166{bottom:210.266667pt;}
.y19f{bottom:213.786667pt;}
.y193{bottom:214.106667pt;}
.y145{bottom:216.506667pt;}
.y1a9{bottom:217.306667pt;}
.y120{bottom:220.026667pt;}
.yd2{bottom:221.626667pt;}
.yfb{bottom:223.226667pt;}
.ye2{bottom:223.546667pt;}
.y89{bottom:224.826667pt;}
.y165{bottom:228.026667pt;}
.y19e{bottom:231.546667pt;}
.y192{bottom:231.706667pt;}
.y1a8{bottom:232.666667pt;}
.y5f{bottom:232.826667pt;}
.y33{bottom:233.946667pt;}
.y11f{bottom:237.626667pt;}
.yd1{bottom:239.226667pt;}
.y144{bottom:239.866667pt;}
.yfa{bottom:240.826667pt;}
.ye1{bottom:241.146667pt;}
.y88{bottom:242.426667pt;}
.y164{bottom:245.626667pt;}
.y1a7{bottom:247.866667pt;}
.y19d{bottom:249.146667pt;}
.y191{bottom:249.466667pt;}
.y5e{bottom:250.426667pt;}
.y32{bottom:251.546667pt;}
.y11e{bottom:255.226667pt;}
.yd0{bottom:256.826667pt;}
.y143{bottom:257.466667pt;}
.yf9{bottom:258.426667pt;}
.ye0{bottom:258.906667pt;}
.y87{bottom:260.186667pt;}
.y163{bottom:263.226667pt;}
.y19c{bottom:266.266667pt;}
.y190{bottom:267.066667pt;}
.y31{bottom:269.146667pt;}
.y11d{bottom:272.826667pt;}
.ycf{bottom:274.426667pt;}
.y142{bottom:275.226667pt;}
.y5d{bottom:276.186667pt;}
.y86{bottom:277.786667pt;}
.y162{bottom:280.826667pt;}
.y19b{bottom:282.106667pt;}
.ydf{bottom:284.506667pt;}
.y18f{bottom:284.666667pt;}
.y30{bottom:286.906667pt;}
.y11c{bottom:290.426667pt;}
.yce{bottom:292.186667pt;}
.y141{bottom:292.826667pt;}
.y5c{bottom:293.786667pt;}
.y161{bottom:298.426667pt;}
.y18e{bottom:300.026667pt;}
.ya5{bottom:300.186667pt;}
.yde{bottom:302.106667pt;}
.y85{bottom:303.386667pt;}
.y2f{bottom:304.506667pt;}
.y11b{bottom:308.186667pt;}
.ycd{bottom:309.786667pt;}
.y140{bottom:310.426667pt;}
.y5b{bottom:311.386667pt;}
.y18d{bottom:315.386667pt;}
.y160{bottom:316.186667pt;}
.ya4{bottom:317.786667pt;}
.ydd{bottom:319.706667pt;}
.y84{bottom:320.986667pt;}
.y2e{bottom:322.106667pt;}
.y179{bottom:327.386667pt;}
.y13f{bottom:328.026667pt;}
.y5a{bottom:328.986667pt;}
.y18c{bottom:332.986667pt;}
.y11a{bottom:333.786667pt;}
.ya3{bottom:335.386667pt;}
.y83{bottom:338.586667pt;}
.y178{bottom:344.986667pt;}
.ydc{bottom:345.306667pt;}
.y13e{bottom:345.626667pt;}
.y59{bottom:346.586667pt;}
.y2d{bottom:347.706667pt;}
.y18b{bottom:350.586667pt;}
.y119{bottom:351.386667pt;}
.ybe{bottom:352.826667pt;}
.ya2{bottom:352.986667pt;}
.y82{bottom:356.386667pt;}
.y177{bottom:362.626667pt;}
.ydb{bottom:363.106667pt;}
.y13d{bottom:363.426667pt;}
.yf8{bottom:364.386667pt;}
.y2c{bottom:365.346667pt;}
.y118{bottom:369.026667pt;}
.ybd{bottom:370.466667pt;}
.ya1{bottom:370.626667pt;}
.y58{bottom:372.386667pt;}
.y81{bottom:373.986667pt;}
.y18a{bottom:376.226667pt;}
.y176{bottom:380.386667pt;}
.yda{bottom:380.706667pt;}
.y13c{bottom:381.026667pt;}
.yf7{bottom:381.986667pt;}
.y2b{bottom:383.106667pt;}
.y117{bottom:386.626667pt;}
.ybc{bottom:388.066667pt;}
.ya0{bottom:388.386667pt;}
.y57{bottom:389.986667pt;}
.y80{bottom:391.586667pt;}
.y189{bottom:393.826667pt;}
.y175{bottom:397.986667pt;}
.y13b{bottom:398.626667pt;}
.yf6{bottom:399.586667pt;}
.y2a{bottom:400.706667pt;}
.y116{bottom:404.386667pt;}
.ybb{bottom:405.666667pt;}
.y9f{bottom:405.986667pt;}
.y56{bottom:407.586667pt;}
.y7f{bottom:409.186667pt;}
.y174{bottom:415.586667pt;}
.y13a{bottom:416.226667pt;}
.y15f{bottom:417.186667pt;}
.y29{bottom:418.306667pt;}
.y188{bottom:419.586667pt;}
.y115{bottom:421.986667pt;}
.yba{bottom:423.426667pt;}
.y9e{bottom:423.586667pt;}
.y55{bottom:425.186667pt;}
.y7e{bottom:426.786667pt;}
.y173{bottom:433.186667pt;}
.y139{bottom:433.826667pt;}
.y15e{bottom:434.786667pt;}
.y28{bottom:435.906667pt;}
.y187{bottom:437.186667pt;}
.y114{bottom:439.586667pt;}
.yb9{bottom:441.026667pt;}
.y9d{bottom:441.186667pt;}
.y54{bottom:442.786667pt;}
.y7d{bottom:444.546667pt;}
.ycc{bottom:449.186667pt;}
.y172{bottom:450.786667pt;}
.y138{bottom:451.586667pt;}
.y15d{bottom:452.546667pt;}
.y27{bottom:453.506667pt;}
.y186{bottom:454.786667pt;}
.yb8{bottom:455.746667pt;}
.y113{bottom:457.186667pt;}
.y9c{bottom:458.786667pt;}
.yf5{bottom:460.546667pt;}
.y7c{bottom:462.146667pt;}
.ycb{bottom:466.786667pt;}
.y53{bottom:468.546667pt;}
.y137{bottom:469.186667pt;}
.y15c{bottom:470.146667pt;}
.y26{bottom:471.266667pt;}
.y112{bottom:474.786667pt;}
.y9b{bottom:476.546667pt;}
.yf4{bottom:478.146667pt;}
.y7b{bottom:479.746667pt;}
.y185{bottom:480.386667pt;}
.yca{bottom:484.546667pt;}
.y52{bottom:486.146667pt;}
.y136{bottom:486.786667pt;}
.y15b{bottom:487.746667pt;}
.y25{bottom:488.866667pt;}
.y111{bottom:492.546667pt;}
.y9a{bottom:494.146667pt;}
.y7a{bottom:497.346667pt;}
.y184{bottom:497.986667pt;}
.yc9{bottom:502.146667pt;}
.y51{bottom:503.746667pt;}
.y135{bottom:504.386667pt;}
.y15a{bottom:505.346667pt;}
.y24{bottom:506.466667pt;}
.y110{bottom:510.146667pt;}
.y99{bottom:511.746667pt;}
.y79{bottom:514.946667pt;}
.y183{bottom:515.746667pt;}
.yc8{bottom:519.746667pt;}
.yf3{bottom:521.346667pt;}
.y134{bottom:521.986667pt;}
.y159{bottom:522.946667pt;}
.y23{bottom:524.066667pt;}
.y10f{bottom:527.746667pt;}
.y50{bottom:529.346667pt;}
.y78{bottom:532.706667pt;}
.yc7{bottom:537.346667pt;}
.yf2{bottom:538.946667pt;}
.y133{bottom:539.746667pt;}
.y182{bottom:541.346667pt;}
.y22{bottom:541.666667pt;}
.y10e{bottom:545.346667pt;}
.y4f{bottom:546.946667pt;}
.y158{bottom:548.706667pt;}
.yc6{bottom:554.946667pt;}
.yf1{bottom:556.706667pt;}
.y132{bottom:557.346667pt;}
.y77{bottom:558.306667pt;}
.y181{bottom:558.946667pt;}
.y21{bottom:559.426667pt;}
.y10d{bottom:562.946667pt;}
.y4e{bottom:564.706667pt;}
.y157{bottom:566.306667pt;}
.yc5{bottom:572.706667pt;}
.yf0{bottom:574.306667pt;}
.yb7{bottom:574.466667pt;}
.y131{bottom:574.946667pt;}
.y76{bottom:575.906667pt;}
.y20{bottom:577.053333pt;}
.y10c{bottom:580.733333pt;}
.y4d{bottom:582.333333pt;}
.y156{bottom:583.933333pt;}
.y180{bottom:584.573333pt;}
.yc4{bottom:590.333333pt;}
.yef{bottom:591.933333pt;}
.yb6{bottom:592.093333pt;}
.y130{bottom:592.573333pt;}
.y75{bottom:593.533333pt;}
.y1f{bottom:594.653333pt;}
.y10b{bottom:598.333333pt;}
.y4c{bottom:599.933333pt;}
.y155{bottom:601.533333pt;}
.y17f{bottom:602.173333pt;}
.y98{bottom:607.933333pt;}
.yee{bottom:609.533333pt;}
.yb5{bottom:609.693333pt;}
.y12f{bottom:610.173333pt;}
.y1e{bottom:612.253333pt;}
.y10a{bottom:615.933333pt;}
.y4b{bottom:617.533333pt;}
.y74{bottom:619.133333pt;}
.y17e{bottom:619.933333pt;}
.y97{bottom:625.533333pt;}
.y154{bottom:627.133333pt;}
.yb4{bottom:627.453333pt;}
.y12e{bottom:627.933333pt;}
.y1d{bottom:629.853333pt;}
.y109{bottom:633.533333pt;}
.yed{bottom:635.133333pt;}
.y73{bottom:636.893333pt;}
.y4a{bottom:643.133333pt;}
.y153{bottom:644.893333pt;}
.yb3{bottom:645.053333pt;}
.y12d{bottom:645.533333pt;}
.y1c{bottom:647.613333pt;}
.y108{bottom:651.133333pt;}
.yec{bottom:652.893333pt;}
.y72{bottom:654.493333pt;}
.y49{bottom:660.893333pt;}
.y152{bottom:662.493333pt;}
.yb2{bottom:662.653333pt;}
.y12c{bottom:663.133333pt;}
.y1b{bottom:665.213333pt;}
.y107{bottom:668.893333pt;}
.yeb{bottom:670.493333pt;}
.y71{bottom:672.093333pt;}
.y48{bottom:678.493333pt;}
.y151{bottom:680.093333pt;}
.yb1{bottom:680.253333pt;}
.y12b{bottom:680.733333pt;}
.y1a{bottom:682.813333pt;}
.y106{bottom:686.493333pt;}
.yea{bottom:688.093333pt;}
.y17d{bottom:688.733333pt;}
.y70{bottom:689.693333pt;}
.y47{bottom:696.093333pt;}
.y150{bottom:697.693333pt;}
.yb0{bottom:697.853333pt;}
.y12a{bottom:698.333333pt;}
.y19{bottom:700.413333pt;}
.y105{bottom:704.093333pt;}
.ye9{bottom:705.693333pt;}
.y17c{bottom:706.333333pt;}
.y6f{bottom:707.293333pt;}
.y46{bottom:713.693333pt;}
.yaf{bottom:715.613333pt;}
.y129{bottom:716.093333pt;}
.y18{bottom:718.013333pt;}
.y104{bottom:721.693333pt;}
.ye8{bottom:723.293333pt;}
.y17b{bottom:724.093333pt;}
.y45{bottom:731.293333pt;}
.y128{bottom:731.453333pt;}
.y6e{bottom:733.053333pt;}
.yae{bottom:733.213333pt;}
.y17{bottom:735.773333pt;}
.y103{bottom:739.293333pt;}
.y17a{bottom:739.453333pt;}
.y14f{bottom:741.053333pt;}
.yad{bottom:747.933333pt;}
.y44{bottom:749.053333pt;}
.y6d{bottom:750.653333pt;}
.y16{bottom:753.373333pt;}
.y96{bottom:757.053333pt;}
.y14e{bottom:758.653333pt;}
.y43{bottom:766.653333pt;}
.y6c{bottom:768.253333pt;}
.y95{bottom:774.653333pt;}
.y15{bottom:775.613333pt;}
.y14d{bottom:776.253333pt;}
.y42{bottom:784.253333pt;}
.y94{bottom:792.253333pt;}
.y14{bottom:793.213333pt;}
.y6b{bottom:793.853333pt;}
.y41{bottom:801.893333pt;}
.y93{bottom:809.893333pt;}
.y13{bottom:810.853333pt;}
.y6a{bottom:811.493333pt;}
.y40{bottom:819.493333pt;}
.y12{bottom:824.453333pt;}
.y92{bottom:827.493333pt;}
.y69{bottom:829.253333pt;}
.y3f{bottom:837.253333pt;}
.y11{bottom:843.333333pt;}
.y91{bottom:845.253333pt;}
.y68{bottom:846.853333pt;}
.y3e{bottom:854.853333pt;}
.y90{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y67{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;}
.h7{height:2.295000pt;}
.ha{height:19.360000pt;}
.h8{height:29.760000pt;}
.he{height:30.982500pt;}
.hc{height:37.479688pt;}
.hf{height:40.021563pt;}
.h4{height:41.543750pt;}
.h11{height:43.031250pt;}
.h10{height:43.782500pt;}
.hd{height:47.310625pt;}
.h5{height:47.621250pt;}
.h9{height:52.785000pt;}
.h12{height:52.834688pt;}
.h3{height:56.445312pt;}
.hb{height:60.057813pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:117.152000pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.x9{left:57.919988pt;}
.x12{left:66.079988pt;}
.x6{left:68.159988pt;}
.x13{left:71.999988pt;}
.xd{left:96.031988pt;}
.x4{left:105.146667pt;}
.xa{left:140.666655pt;}
.xc{left:180.506655pt;}
.xb{left:182.586655pt;}
.x7{left:319.746655pt;}
.x8{left:394.146655pt;}
.x3{left:629.253333pt;}
.xe{left:675.653322pt;}
.x10{left:682.853322pt;}
.xf{left:684.773322pt;}
.x11{left:720.639988pt;}
.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; }
  