
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_c75c41ed625691b9fa2ab78a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8add982faac4b6c5ee72ed9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_cb9029ce03359641f735a5de.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_032c1dd9751c6acd67b16dc6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_313af25e64c982a6548f7c6d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_96b7983e21dd791cf4c7bcd3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fba9a05950c8faf113d5dabc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsa{letter-spacing:-0.576600px;}
.ls9{letter-spacing:-0.186600px;}
.ls16{letter-spacing:-0.160800px;}
.ls12{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.063600px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.lse{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1b{letter-spacing:0.098400px;}
.ls15{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls18{letter-spacing:11.613600px;}
.ls1a{letter-spacing:47.726640px;}
.lsf{letter-spacing:63.566640px;}
.ls14{letter-spacing:80.126640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws6{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws8{word-spacing:-13.399800px;}
.wse{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._f{margin-left:-3.626039px;}
._d{margin-left:-2.528400px;}
._0{margin-left:-1.110000px;}
._1{width:1.910280px;}
._4{width:3.369600px;}
._2{width:5.336412px;}
._3{width:6.496056px;}
._8{width:7.635601px;}
._7{width:8.777400px;}
._9{width:10.124636px;}
._c{width:11.505968px;}
._a{width:14.970000px;}
._e{width:16.593120px;}
._b{width:17.675400px;}
._6{width:19.100760px;}
._5{width:20.244960px;}
._3d{width:21.486600px;}
._36{width:22.845600px;}
._16{width:24.889680px;}
._17{width:25.911720px;}
._1b{width:26.993880px;}
._2d{width:28.917720px;}
._28{width:32.224320px;}
._1c{width:34.388640px;}
._1e{width:36.132120px;}
._10{width:37.334520px;}
._33{width:41.704200px;}
._29{width:42.713040px;}
._12{width:44.308440px;}
._2f{width:46.741080px;}
._13{width:47.915640px;}
._1a{width:51.162120px;}
._2b{width:52.845480px;}
._2c{width:53.867520px;}
._24{width:57.955680px;}
._11{width:60.961680px;}
._2a{width:62.705160px;}
._38{width:64.629000px;}
._1d{width:65.771280px;}
._37{width:67.214160px;}
._26{width:69.979680px;}
._3b{width:71.362440px;}
._1f{width:73.526760px;}
._35{width:75.029760px;}
._3a{width:76.653000px;}
._3c{width:80.629920px;}
._21{width:81.642960px;}
._22{width:83.747160px;}
._18{width:87.474600px;}
._20{width:89.163720px;}
._39{width:90.540720px;}
._34{width:99.077760px;}
._30{width:109.358280px;}
._14{width:126.853200px;}
._15{width:148.736880px;}
._25{width:150.660720px;}
._23{width:159.077520px;}
._2e{width:171.762840px;}
._19{width:182.283840px;}
._32{width:185.530320px;}
._31{width:213.486120px;}
._27{width:266.932800px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb0{bottom:3.330000px;}
.y8f{bottom:7.830000px;}
.y94{bottom:7.920000px;}
.yaf{bottom:20.970000px;}
.y98{bottom:25.380000px;}
.y8e{bottom:25.470000px;}
.y9d{bottom:25.500000px;}
.yae{bottom:38.520000px;}
.y97{bottom:43.020000px;}
.y9c{bottom:43.050000px;}
.y93{bottom:43.110000px;}
.yad{bottom:56.070000px;}
.y96{bottom:60.570000px;}
.y92{bottom:60.660000px;}
.y9b{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.yac{bottom:73.710000px;}
.y28{bottom:74.190000px;}
.yc8{bottom:78.120000px;}
.y91{bottom:78.210000px;}
.y9a{bottom:78.240000px;}
.yab{bottom:91.260000px;}
.yc7{bottom:95.760000px;}
.y1{bottom:101.640000px;}
.yaa{bottom:108.900000px;}
.yc6{bottom:113.310000px;}
.y19a{bottom:115.320000px;}
.y9e{bottom:123.780000px;}
.y14c{bottom:124.050000px;}
.y174{bottom:125.580000px;}
.y105{bottom:126.120000px;}
.ya9{bottom:126.450000px;}
.yc5{bottom:130.950000px;}
.y55{bottom:135.480000px;}
.y199{bottom:141.870000px;}
.y173{bottom:143.220000px;}
.y104{bottom:143.670000px;}
.ya8{bottom:144.000000px;}
.yc4{bottom:148.500000px;}
.y54{bottom:153.120000px;}
.y127{bottom:153.480000px;}
.y80{bottom:154.740000px;}
.y26{bottom:155.370000px;}
.yda{bottom:158.970000px;}
.y198{bottom:159.510000px;}
.y14b{bottom:159.690000px;}
.ya7{bottom:161.640000px;}
.y103{bottom:162.120000px;}
.yc3{bottom:166.050000px;}
.y172{bottom:169.770000px;}
.y53{bottom:170.670000px;}
.y7f{bottom:172.290000px;}
.y25{bottom:173.010000px;}
.y14a{bottom:177.240000px;}
.ya6{bottom:179.190000px;}
.y102{bottom:179.670000px;}
.y126{bottom:180.840000px;}
.yc2{bottom:183.690000px;}
.yd9{bottom:185.520000px;}
.y197{bottom:186.060000px;}
.y171{bottom:187.320000px;}
.y52{bottom:188.220000px;}
.y7e{bottom:189.930000px;}
.y24{bottom:190.560000px;}
.y149{bottom:194.790000px;}
.ya5{bottom:196.830000px;}
.y101{bottom:198.120000px;}
.yc1{bottom:201.240000px;}
.y196{bottom:203.610000px;}
.y51{bottom:205.860000px;}
.y7d{bottom:207.480000px;}
.y23{bottom:208.110000px;}
.y170{bottom:213.960000px;}
.ya4{bottom:214.380000px;}
.y100{bottom:215.670000px;}
.yc0{bottom:218.880000px;}
.yd8{bottom:221.160000px;}
.y7c{bottom:225.030000px;}
.y195{bottom:230.250000px;}
.y148{bottom:230.430000px;}
.ya3{bottom:231.930000px;}
.y50{bottom:232.410000px;}
.yff{bottom:234.120000px;}
.y22{bottom:235.020000px;}
.y125{bottom:235.470000px;}
.ybf{bottom:236.430000px;}
.yd7{bottom:238.710000px;}
.y16f{bottom:240.510000px;}
.y7b{bottom:242.670000px;}
.y194{bottom:247.800000px;}
.y147{bottom:247.980000px;}
.ya2{bottom:249.570000px;}
.yfe{bottom:251.670000px;}
.ybe{bottom:253.980000px;}
.yd6{bottom:256.350000px;}
.y16e{bottom:258.150000px;}
.y7a{bottom:260.220000px;}
.y124{bottom:262.830000px;}
.y4f{bottom:264.990000px;}
.y193{bottom:265.440000px;}
.y146{bottom:265.620000px;}
.ya1{bottom:267.120000px;}
.ybd{bottom:271.620000px;}
.yd5{bottom:273.900000px;}
.y79{bottom:277.860000px;}
.yfd{bottom:279.120000px;}
.y145{bottom:283.170000px;}
.y21{bottom:283.620000px;}
.y16d{bottom:284.700000px;}
.ya0{bottom:284.760000px;}
.ybc{bottom:289.170000px;}
.y192{bottom:291.990000px;}
.y78{bottom:295.410000px;}
.yd4{bottom:300.450000px;}
.y4e{bottom:300.900000px;}
.y9f{bottom:302.310000px;}
.ybb{bottom:306.810000px;}
.y123{bottom:307.740000px;}
.y191{bottom:309.540000px;}
.y144{bottom:309.720000px;}
.y16c{bottom:311.250000px;}
.yfc{bottom:314.670000px;}
.y20{bottom:320.700000px;}
.yba{bottom:324.360000px;}
.y16b{bottom:328.890000px;}
.y77{bottom:330.960000px;}
.yfb{bottom:332.220000px;}
.y122{bottom:335.100000px;}
.yd3{bottom:336.090000px;}
.y190{bottom:336.180000px;}
.y1f{bottom:338.250000px;}
.yb9{bottom:341.910000px;}
.y143{bottom:345.360000px;}
.y76{bottom:348.600000px;}
.y4d{bottom:349.140000px;}
.yfa{bottom:349.860000px;}
.yd2{bottom:353.640000px;}
.y16a{bottom:355.440000px;}
.y1e{bottom:355.800000px;}
.yb8{bottom:359.550000px;}
.y121{bottom:362.370000px;}
.y18f{bottom:362.730000px;}
.y142{bottom:362.910000px;}
.y75{bottom:366.150000px;}
.y4c{bottom:367.590000px;}
.yd1{bottom:371.190000px;}
.y169{bottom:373.080000px;}
.y1d{bottom:373.440000px;}
.yf9{bottom:376.410000px;}
.yb7{bottom:377.100000px;}
.y18e{bottom:380.370000px;}
.y74{bottom:383.790000px;}
.y4b{bottom:386.040000px;}
.yd0{bottom:388.830000px;}
.y120{bottom:389.730000px;}
.yb6{bottom:394.740000px;}
.y141{bottom:398.550000px;}
.y168{bottom:399.630000px;}
.y73{bottom:401.340000px;}
.y4a{bottom:403.590000px;}
.y18d{bottom:406.920000px;}
.y1c{bottom:408.990000px;}
.yb5{bottom:412.320000px;}
.ycf{bottom:415.380000px;}
.y140{bottom:416.100000px;}
.y167{bottom:417.180000px;}
.y72{bottom:418.890000px;}
.y18c{bottom:424.470000px;}
.y1b{bottom:426.630000px;}
.yb4{bottom:429.870000px;}
.y11f{bottom:434.640000px;}
.y71{bottom:436.530000px;}
.y49{bottom:440.040000px;}
.y166{bottom:443.820000px;}
.y1a{bottom:444.180000px;}
.yf8{bottom:444.630000px;}
.y99{bottom:445.530000px;}
.yb3{bottom:447.510000px;}
.yce{bottom:451.020000px;}
.y18b{bottom:451.110000px;}
.y13f{bottom:451.650000px;}
.y70{bottom:454.080000px;}
.y48{bottom:457.590000px;}
.y165{bottom:461.370000px;}
.y19{bottom:461.730000px;}
.yf7{bottom:462.180000px;}
.ycd{bottom:468.570000px;}
.y18a{bottom:468.660000px;}
.y13e{bottom:469.290000px;}
.yf6{bottom:479.760000px;}
.y11e{bottom:483.360000px;}
.y47{bottom:484.260000px;}
.ycc{bottom:486.150000px;}
.y13d{bottom:486.870000px;}
.y164{bottom:488.040000px;}
.y6f{bottom:489.750000px;}
.y189{bottom:495.330000px;}
.y18{bottom:497.400000px;}
.ycb{bottom:503.790000px;}
.y163{bottom:505.590000px;}
.yf5{bottom:506.400000px;}
.y6e{bottom:507.300000px;}
.y188{bottom:512.880000px;}
.y17{bottom:514.950000px;}
.y11d{bottom:519.000000px;}
.y46{bottom:519.720000px;}
.y13c{bottom:522.510000px;}
.yca{bottom:530.340000px;}
.y162{bottom:532.140000px;}
.y16{bottom:532.590000px;}
.y6d{bottom:533.850000px;}
.y11c{bottom:536.550000px;}
.y45{bottom:538.260000px;}
.y187{bottom:539.430000px;}
.y13b{bottom:540.060000px;}
.yf4{bottom:542.310000px;}
.y95{bottom:543.300000px;}
.y161{bottom:549.780000px;}
.y15{bottom:550.140000px;}
.y11b{bottom:554.190000px;}
.y44{bottom:555.810000px;}
.y186{bottom:557.070000px;}
.yc9{bottom:566.250000px;}
.y13a{bottom:566.610000px;}
.y14{bottom:567.690000px;}
.y6c{bottom:569.490000px;}
.y43{bottom:574.170000px;}
.y160{bottom:576.690000px;}
.y185{bottom:583.620000px;}
.y13{bottom:585.330000px;}
.y6b{bottom:587.040000px;}
.y11a{bottom:589.740000px;}
.yf3{bottom:590.550000px;}
.y184{bottom:601.260000px;}
.y139{bottom:602.250000px;}
.y12{bottom:602.880000px;}
.y6a{bottom:604.590000px;}
.y119{bottom:607.290000px;}
.yf2{bottom:608.190000px;}
.y42{bottom:610.620000px;}
.yb2{bottom:611.970000px;}
.y138{bottom:619.800000px;}
.y69{bottom:622.230000px;}
.y90{bottom:623.310000px;}
.y118{bottom:624.930000px;}
.yf1{bottom:625.740000px;}
.y183{bottom:627.810000px;}
.y11{bottom:629.790000px;}
.y41{bottom:637.260000px;}
.y68{bottom:639.780000px;}
.y117{bottom:642.480000px;}
.y137{bottom:646.350000px;}
.y15f{bottom:651.840000px;}
.yf0{bottom:652.290000px;}
.y182{bottom:654.360000px;}
.y67{bottom:657.420000px;}
.y181{bottom:672.000000px;}
.y40{bottom:672.810000px;}
.y66{bottom:674.970000px;}
.y10{bottom:678.030000px;}
.y116{bottom:678.120000px;}
.y136{bottom:682.260000px;}
.yef{bottom:687.930000px;}
.y15e{bottom:689.190000px;}
.y3f{bottom:690.360000px;}
.y115{bottom:695.670000px;}
.y180{bottom:698.550000px;}
.yee{bottom:705.480000px;}
.y3e{bottom:708.000000px;}
.y65{bottom:710.520000px;}
.y114{bottom:713.220000px;}
.yf{bottom:713.850000px;}
.y17f{bottom:716.190000px;}
.y8d{bottom:721.050000px;}
.y3d{bottom:725.550000px;}
.y135{bottom:727.980000px;}
.y64{bottom:728.160000px;}
.y113{bottom:730.860000px;}
.y15d{bottom:737.340000px;}
.yed{bottom:741.120000px;}
.y17e{bottom:742.740000px;}
.y3c{bottom:743.190000px;}
.y63{bottom:745.710000px;}
.y112{bottom:748.410000px;}
.ye{bottom:749.850000px;}
.y134{bottom:755.250000px;}
.y15c{bottom:755.790000px;}
.yec{bottom:758.670000px;}
.y17d{bottom:760.290000px;}
.y3b{bottom:760.740000px;}
.y62{bottom:763.350000px;}
.y111{bottom:775.050000px;}
.yeb{bottom:776.220000px;}
.y3a{bottom:778.290000px;}
.y61{bottom:780.900000px;}
.y133{bottom:782.610000px;}
.y15b{bottom:783.240000px;}
.yd{bottom:785.850000px;}
.y17c{bottom:786.930000px;}
.y8c{bottom:787.290000px;}
.yea{bottom:793.860000px;}
.y39{bottom:795.930000px;}
.y60{bottom:798.450000px;}
.y17b{bottom:804.480000px;}
.yc{bottom:807.630000px;}
.y132{bottom:809.970000px;}
.y110{bottom:810.600000px;}
.y8b{bottom:813.930000px;}
.y15a{bottom:818.790000px;}
.ye9{bottom:820.410000px;}
.yb{bottom:821.850000px;}
.y38{bottom:822.480000px;}
.y5f{bottom:825.000000px;}
.y10f{bottom:828.150000px;}
.y17a{bottom:831.030000px;}
.y159{bottom:837.240000px;}
.y131{bottom:837.330000px;}
.ya{bottom:843.630000px;}
.y8a{bottom:849.480000px;}
.y10e{bottom:854.790000px;}
.ye8{bottom:855.960000px;}
.y5e{bottom:857.670000px;}
.y37{bottom:858.030000px;}
.y9{bottom:861.630000px;}
.y130{bottom:864.600000px;}
.y89{bottom:867.030000px;}
.y158{bottom:873.240000px;}
.ye7{bottom:873.600000px;}
.y179{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y8{bottom:879.630000px;}
.y88{bottom:884.670000px;}
.y10d{bottom:890.340000px;}
.ye6{bottom:891.150000px;}
.y157{bottom:891.690000px;}
.y12f{bottom:891.960000px;}
.y35{bottom:893.220000px;}
.y7{bottom:897.630000px;}
.y178{bottom:901.860000px;}
.y87{bottom:902.220000px;}
.y10c{bottom:907.890000px;}
.y156{bottom:909.240000px;}
.y34{bottom:910.860000px;}
.ye5{bottom:917.790000px;}
.y12e{bottom:919.320000px;}
.y177{bottom:919.410000px;}
.y86{bottom:919.860000px;}
.y10b{bottom:926.340000px;}
.y33{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.y155{bottom:936.690000px;}
.y85{bottom:937.410000px;}
.y10a{bottom:943.890000px;}
.y32{bottom:945.960000px;}
.y12d{bottom:946.680000px;}
.y5{bottom:949.290000px;}
.ye4{bottom:953.340000px;}
.y84{bottom:954.960000px;}
.y109{bottom:962.340000px;}
.y5d{bottom:963.600000px;}
.ye3{bottom:970.890000px;}
.y154{bottom:972.240000px;}
.y83{bottom:972.600000px;}
.y12c{bottom:973.950000px;}
.y108{bottom:979.890000px;}
.y5c{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y4{bottom:987.630000px;}
.ye2{bottom:988.530000px;}
.y153{bottom:989.790000px;}
.y176{bottom:990.150000px;}
.y30{bottom:999.150000px;}
.y12b{bottom:1001.310000px;}
.ye1{bottom:1006.080000px;}
.y5b{bottom:1007.790000px;}
.y82{bottom:1008.150000px;}
.y152{bottom:1008.240000px;}
.y3{bottom:1012.320000px;}
.y107{bottom:1016.370000px;}
.y2f{bottom:1016.820000px;}
.y81{bottom:1025.820000px;}
.y151{bottom:1026.720000px;}
.ye0{bottom:1032.750000px;}
.y2e{bottom:1034.370000px;}
.y106{bottom:1042.920000px;}
.y5a{bottom:1043.370000px;}
.y150{bottom:1044.270000px;}
.y12a{bottom:1050.030000px;}
.y2d{bottom:1051.920000px;}
.y59{bottom:1060.920000px;}
.y14f{bottom:1062.720000px;}
.ydf{bottom:1068.300000px;}
.y2c{bottom:1069.560000px;}
.y129{bottom:1076.670000px;}
.y58{bottom:1078.560000px;}
.yb1{bottom:1078.920000px;}
.y14e{bottom:1080.270000px;}
.yde{bottom:1085.850000px;}
.y2b{bottom:1087.110000px;}
.y57{bottom:1096.110000px;}
.ydd{bottom:1104.300000px;}
.y175{bottom:1105.110000px;}
.y14d{bottom:1107.720000px;}
.y128{bottom:1109.610000px;}
.y56{bottom:1113.750000px;}
.ydc{bottom:1121.850000px;}
.y2a{bottom:1122.750000px;}
.ydb{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h14{height:26.550000px;}
.h15{height:26.580000px;}
.h13{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.hc{height:44.190000px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:71.019492px;}
.h11{height:74.880000px;}
.he{height:79.290000px;}
.hd{height:96.930000px;}
.hf{height:96.960000px;}
.h10{height:321.030000px;}
.h12{height:466.230000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:40.950000px;}
.w3{width:107.130000px;}
.w4{width:144.180000px;}
.w5{width:220.080000px;}
.w6{width:282.060000px;}
.w9{width:626.640000px;}
.w8{width:713.940000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.xa{left:110.520000px;}
.xb{left:112.410000px;}
.x5{left:122.039987px;}
.xc{left:154.170000px;}
.x7{left:176.700000px;}
.x2{left:202.799987px;}
.x8{left:321.600000px;}
.x9{left:542.400000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.512533pt;}
.ls9{letter-spacing:-0.165867pt;}
.ls16{letter-spacing:-0.142933pt;}
.ls12{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1b{letter-spacing:0.087467pt;}
.ls15{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls18{letter-spacing:10.323200pt;}
.ls1a{letter-spacing:42.423680pt;}
.lsf{letter-spacing:56.503680pt;}
.ls14{letter-spacing:71.223680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws8{word-spacing:-11.910933pt;}
.wse{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._f{margin-left:-3.223146pt;}
._d{margin-left:-2.247467pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.698027pt;}
._4{width:2.995200pt;}
._2{width:4.743477pt;}
._3{width:5.774272pt;}
._8{width:6.787201pt;}
._7{width:7.802133pt;}
._9{width:8.999677pt;}
._c{width:10.227527pt;}
._a{width:13.306667pt;}
._e{width:14.749440pt;}
._b{width:15.711467pt;}
._6{width:16.978454pt;}
._5{width:17.995520pt;}
._3d{width:19.099200pt;}
._36{width:20.307200pt;}
._16{width:22.124160pt;}
._17{width:23.032640pt;}
._1b{width:23.994560pt;}
._2d{width:25.704640pt;}
._28{width:28.643840pt;}
._1c{width:30.567680pt;}
._1e{width:32.117440pt;}
._10{width:33.186240pt;}
._33{width:37.070400pt;}
._29{width:37.967147pt;}
._12{width:39.385280pt;}
._2f{width:41.547627pt;}
._13{width:42.591680pt;}
._1a{width:45.477440pt;}
._2b{width:46.973760pt;}
._2c{width:47.882240pt;}
._24{width:51.516160pt;}
._11{width:54.188160pt;}
._2a{width:55.737920pt;}
._38{width:57.448000pt;}
._1d{width:58.463360pt;}
._37{width:59.745920pt;}
._26{width:62.204160pt;}
._3b{width:63.433280pt;}
._1f{width:65.357120pt;}
._35{width:66.693120pt;}
._3a{width:68.136000pt;}
._3c{width:71.671040pt;}
._21{width:72.571520pt;}
._22{width:74.441920pt;}
._18{width:77.755200pt;}
._20{width:79.256640pt;}
._39{width:80.480640pt;}
._34{width:88.069120pt;}
._30{width:97.207360pt;}
._14{width:112.758400pt;}
._15{width:132.210560pt;}
._25{width:133.920640pt;}
._23{width:141.402240pt;}
._2e{width:152.678080pt;}
._19{width:162.030080pt;}
._32{width:164.915840pt;}
._31{width:189.765440pt;}
._27{width:237.273600pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:2.960000pt;}
.y8f{bottom:6.960000pt;}
.y94{bottom:7.040000pt;}
.yaf{bottom:18.640000pt;}
.y98{bottom:22.560000pt;}
.y8e{bottom:22.640000pt;}
.y9d{bottom:22.666667pt;}
.yae{bottom:34.240000pt;}
.y97{bottom:38.240000pt;}
.y9c{bottom:38.266667pt;}
.y93{bottom:38.320000pt;}
.yad{bottom:49.840000pt;}
.y96{bottom:53.840000pt;}
.y92{bottom:53.920000pt;}
.y9b{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.yac{bottom:65.520000pt;}
.y28{bottom:65.946667pt;}
.yc8{bottom:69.440000pt;}
.y91{bottom:69.520000pt;}
.y9a{bottom:69.546667pt;}
.yab{bottom:81.120000pt;}
.yc7{bottom:85.120000pt;}
.y1{bottom:90.346667pt;}
.yaa{bottom:96.800000pt;}
.yc6{bottom:100.720000pt;}
.y19a{bottom:102.506667pt;}
.y9e{bottom:110.026667pt;}
.y14c{bottom:110.266667pt;}
.y174{bottom:111.626667pt;}
.y105{bottom:112.106667pt;}
.ya9{bottom:112.400000pt;}
.yc5{bottom:116.400000pt;}
.y55{bottom:120.426667pt;}
.y199{bottom:126.106667pt;}
.y173{bottom:127.306667pt;}
.y104{bottom:127.706667pt;}
.ya8{bottom:128.000000pt;}
.yc4{bottom:132.000000pt;}
.y54{bottom:136.106667pt;}
.y127{bottom:136.426667pt;}
.y80{bottom:137.546667pt;}
.y26{bottom:138.106667pt;}
.yda{bottom:141.306667pt;}
.y198{bottom:141.786667pt;}
.y14b{bottom:141.946667pt;}
.ya7{bottom:143.680000pt;}
.y103{bottom:144.106667pt;}
.yc3{bottom:147.600000pt;}
.y172{bottom:150.906667pt;}
.y53{bottom:151.706667pt;}
.y7f{bottom:153.146667pt;}
.y25{bottom:153.786667pt;}
.y14a{bottom:157.546667pt;}
.ya6{bottom:159.280000pt;}
.y102{bottom:159.706667pt;}
.y126{bottom:160.746667pt;}
.yc2{bottom:163.280000pt;}
.yd9{bottom:164.906667pt;}
.y197{bottom:165.386667pt;}
.y171{bottom:166.506667pt;}
.y52{bottom:167.306667pt;}
.y7e{bottom:168.826667pt;}
.y24{bottom:169.386667pt;}
.y149{bottom:173.146667pt;}
.ya5{bottom:174.960000pt;}
.y101{bottom:176.106667pt;}
.yc1{bottom:178.880000pt;}
.y196{bottom:180.986667pt;}
.y51{bottom:182.986667pt;}
.y7d{bottom:184.426667pt;}
.y23{bottom:184.986667pt;}
.y170{bottom:190.186667pt;}
.ya4{bottom:190.560000pt;}
.y100{bottom:191.706667pt;}
.yc0{bottom:194.560000pt;}
.yd8{bottom:196.586667pt;}
.y7c{bottom:200.026667pt;}
.y195{bottom:204.666667pt;}
.y148{bottom:204.826667pt;}
.ya3{bottom:206.160000pt;}
.y50{bottom:206.586667pt;}
.yff{bottom:208.106667pt;}
.y22{bottom:208.906667pt;}
.y125{bottom:209.306667pt;}
.ybf{bottom:210.160000pt;}
.yd7{bottom:212.186667pt;}
.y16f{bottom:213.786667pt;}
.y7b{bottom:215.706667pt;}
.y194{bottom:220.266667pt;}
.y147{bottom:220.426667pt;}
.ya2{bottom:221.840000pt;}
.yfe{bottom:223.706667pt;}
.ybe{bottom:225.760000pt;}
.yd6{bottom:227.866667pt;}
.y16e{bottom:229.466667pt;}
.y7a{bottom:231.306667pt;}
.y124{bottom:233.626667pt;}
.y4f{bottom:235.546667pt;}
.y193{bottom:235.946667pt;}
.y146{bottom:236.106667pt;}
.ya1{bottom:237.440000pt;}
.ybd{bottom:241.440000pt;}
.yd5{bottom:243.466667pt;}
.y79{bottom:246.986667pt;}
.yfd{bottom:248.106667pt;}
.y145{bottom:251.706667pt;}
.y21{bottom:252.106667pt;}
.y16d{bottom:253.066667pt;}
.ya0{bottom:253.120000pt;}
.ybc{bottom:257.040000pt;}
.y192{bottom:259.546667pt;}
.y78{bottom:262.586667pt;}
.yd4{bottom:267.066667pt;}
.y4e{bottom:267.466667pt;}
.y9f{bottom:268.720000pt;}
.ybb{bottom:272.720000pt;}
.y123{bottom:273.546667pt;}
.y191{bottom:275.146667pt;}
.y144{bottom:275.306667pt;}
.y16c{bottom:276.666667pt;}
.yfc{bottom:279.706667pt;}
.y20{bottom:285.066667pt;}
.yba{bottom:288.320000pt;}
.y16b{bottom:292.346667pt;}
.y77{bottom:294.186667pt;}
.yfb{bottom:295.306667pt;}
.y122{bottom:297.866667pt;}
.yd3{bottom:298.746667pt;}
.y190{bottom:298.826667pt;}
.y1f{bottom:300.666667pt;}
.yb9{bottom:303.920000pt;}
.y143{bottom:306.986667pt;}
.y76{bottom:309.866667pt;}
.y4d{bottom:310.346667pt;}
.yfa{bottom:310.986667pt;}
.yd2{bottom:314.346667pt;}
.y16a{bottom:315.946667pt;}
.y1e{bottom:316.266667pt;}
.yb8{bottom:319.600000pt;}
.y121{bottom:322.106667pt;}
.y18f{bottom:322.426667pt;}
.y142{bottom:322.586667pt;}
.y75{bottom:325.466667pt;}
.y4c{bottom:326.746667pt;}
.yd1{bottom:329.946667pt;}
.y169{bottom:331.626667pt;}
.y1d{bottom:331.946667pt;}
.yf9{bottom:334.586667pt;}
.yb7{bottom:335.200000pt;}
.y18e{bottom:338.106667pt;}
.y74{bottom:341.146667pt;}
.y4b{bottom:343.146667pt;}
.yd0{bottom:345.626667pt;}
.y120{bottom:346.426667pt;}
.yb6{bottom:350.880000pt;}
.y141{bottom:354.266667pt;}
.y168{bottom:355.226667pt;}
.y73{bottom:356.746667pt;}
.y4a{bottom:358.746667pt;}
.y18d{bottom:361.706667pt;}
.y1c{bottom:363.546667pt;}
.yb5{bottom:366.506667pt;}
.ycf{bottom:369.226667pt;}
.y140{bottom:369.866667pt;}
.y167{bottom:370.826667pt;}
.y72{bottom:372.346667pt;}
.y18c{bottom:377.306667pt;}
.y1b{bottom:379.226667pt;}
.yb4{bottom:382.106667pt;}
.y11f{bottom:386.346667pt;}
.y71{bottom:388.026667pt;}
.y49{bottom:391.146667pt;}
.y166{bottom:394.506667pt;}
.y1a{bottom:394.826667pt;}
.yf8{bottom:395.226667pt;}
.y99{bottom:396.026667pt;}
.yb3{bottom:397.786667pt;}
.yce{bottom:400.906667pt;}
.y18b{bottom:400.986667pt;}
.y13f{bottom:401.466667pt;}
.y70{bottom:403.626667pt;}
.y48{bottom:406.746667pt;}
.y165{bottom:410.106667pt;}
.y19{bottom:410.426667pt;}
.yf7{bottom:410.826667pt;}
.ycd{bottom:416.506667pt;}
.y18a{bottom:416.586667pt;}
.y13e{bottom:417.146667pt;}
.yf6{bottom:426.453333pt;}
.y11e{bottom:429.653333pt;}
.y47{bottom:430.453333pt;}
.ycc{bottom:432.133333pt;}
.y13d{bottom:432.773333pt;}
.y164{bottom:433.813333pt;}
.y6f{bottom:435.333333pt;}
.y189{bottom:440.293333pt;}
.y18{bottom:442.133333pt;}
.ycb{bottom:447.813333pt;}
.y163{bottom:449.413333pt;}
.yf5{bottom:450.133333pt;}
.y6e{bottom:450.933333pt;}
.y188{bottom:455.893333pt;}
.y17{bottom:457.733333pt;}
.y11d{bottom:461.333333pt;}
.y46{bottom:461.973333pt;}
.y13c{bottom:464.453333pt;}
.yca{bottom:471.413333pt;}
.y162{bottom:473.013333pt;}
.y16{bottom:473.413333pt;}
.y6d{bottom:474.533333pt;}
.y11c{bottom:476.933333pt;}
.y45{bottom:478.453333pt;}
.y187{bottom:479.493333pt;}
.y13b{bottom:480.053333pt;}
.yf4{bottom:482.053333pt;}
.y95{bottom:482.933333pt;}
.y161{bottom:488.693333pt;}
.y15{bottom:489.013333pt;}
.y11b{bottom:492.613333pt;}
.y44{bottom:494.053333pt;}
.y186{bottom:495.173333pt;}
.yc9{bottom:503.333333pt;}
.y13a{bottom:503.653333pt;}
.y14{bottom:504.613333pt;}
.y6c{bottom:506.213333pt;}
.y43{bottom:510.373333pt;}
.y160{bottom:512.613333pt;}
.y185{bottom:518.773333pt;}
.y13{bottom:520.293333pt;}
.y6b{bottom:521.813333pt;}
.y11a{bottom:524.213333pt;}
.yf3{bottom:524.933333pt;}
.y184{bottom:534.453333pt;}
.y139{bottom:535.333333pt;}
.y12{bottom:535.893333pt;}
.y6a{bottom:537.413333pt;}
.y119{bottom:539.813333pt;}
.yf2{bottom:540.613333pt;}
.y42{bottom:542.773333pt;}
.yb2{bottom:543.973333pt;}
.y138{bottom:550.933333pt;}
.y69{bottom:553.093333pt;}
.y90{bottom:554.053333pt;}
.y118{bottom:555.493333pt;}
.yf1{bottom:556.213333pt;}
.y183{bottom:558.053333pt;}
.y11{bottom:559.813333pt;}
.y41{bottom:566.453333pt;}
.y68{bottom:568.693333pt;}
.y117{bottom:571.093333pt;}
.y137{bottom:574.533333pt;}
.y15f{bottom:579.413333pt;}
.yf0{bottom:579.813333pt;}
.y182{bottom:581.653333pt;}
.y67{bottom:584.373333pt;}
.y181{bottom:597.333333pt;}
.y40{bottom:598.053333pt;}
.y66{bottom:599.973333pt;}
.y10{bottom:602.693333pt;}
.y116{bottom:602.773333pt;}
.y136{bottom:606.453333pt;}
.yef{bottom:611.493333pt;}
.y15e{bottom:612.613333pt;}
.y3f{bottom:613.653333pt;}
.y115{bottom:618.373333pt;}
.y180{bottom:620.933333pt;}
.yee{bottom:627.093333pt;}
.y3e{bottom:629.333333pt;}
.y65{bottom:631.573333pt;}
.y114{bottom:633.973333pt;}
.yf{bottom:634.533333pt;}
.y17f{bottom:636.613333pt;}
.y8d{bottom:640.933333pt;}
.y3d{bottom:644.933333pt;}
.y135{bottom:647.093333pt;}
.y64{bottom:647.253333pt;}
.y113{bottom:649.653333pt;}
.y15d{bottom:655.413333pt;}
.yed{bottom:658.773333pt;}
.y17e{bottom:660.213333pt;}
.y3c{bottom:660.613333pt;}
.y63{bottom:662.853333pt;}
.y112{bottom:665.253333pt;}
.ye{bottom:666.533333pt;}
.y134{bottom:671.333333pt;}
.y15c{bottom:671.813333pt;}
.yec{bottom:674.373333pt;}
.y17d{bottom:675.813333pt;}
.y3b{bottom:676.213333pt;}
.y62{bottom:678.533333pt;}
.y111{bottom:688.933333pt;}
.yeb{bottom:689.973333pt;}
.y3a{bottom:691.813333pt;}
.y61{bottom:694.133333pt;}
.y133{bottom:695.653333pt;}
.y15b{bottom:696.213333pt;}
.yd{bottom:698.533333pt;}
.y17c{bottom:699.493333pt;}
.y8c{bottom:699.813333pt;}
.yea{bottom:705.653333pt;}
.y39{bottom:707.493333pt;}
.y60{bottom:709.733333pt;}
.y17b{bottom:715.093333pt;}
.yc{bottom:717.893333pt;}
.y132{bottom:719.973333pt;}
.y110{bottom:720.533333pt;}
.y8b{bottom:723.493333pt;}
.y15a{bottom:727.813333pt;}
.ye9{bottom:729.253333pt;}
.yb{bottom:730.533333pt;}
.y38{bottom:731.093333pt;}
.y5f{bottom:733.333333pt;}
.y10f{bottom:736.133333pt;}
.y17a{bottom:738.693333pt;}
.y159{bottom:744.213333pt;}
.y131{bottom:744.293333pt;}
.ya{bottom:749.893333pt;}
.y8a{bottom:755.093333pt;}
.y10e{bottom:759.813333pt;}
.ye8{bottom:760.853333pt;}
.y5e{bottom:762.373333pt;}
.y37{bottom:762.693333pt;}
.y9{bottom:765.893333pt;}
.y130{bottom:768.533333pt;}
.y89{bottom:770.693333pt;}
.y158{bottom:776.213333pt;}
.ye7{bottom:776.533333pt;}
.y179{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y8{bottom:781.893333pt;}
.y88{bottom:786.373333pt;}
.y10d{bottom:791.413333pt;}
.ye6{bottom:792.133333pt;}
.y157{bottom:792.613333pt;}
.y12f{bottom:792.853333pt;}
.y35{bottom:793.973333pt;}
.y7{bottom:797.893333pt;}
.y178{bottom:801.653333pt;}
.y87{bottom:801.973333pt;}
.y10c{bottom:807.013333pt;}
.y156{bottom:808.213333pt;}
.y34{bottom:809.653333pt;}
.ye5{bottom:815.813333pt;}
.y12e{bottom:817.173333pt;}
.y177{bottom:817.253333pt;}
.y86{bottom:817.653333pt;}
.y10b{bottom:823.413333pt;}
.y33{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.y155{bottom:832.613333pt;}
.y85{bottom:833.253333pt;}
.y10a{bottom:839.013333pt;}
.y32{bottom:840.853333pt;}
.y12d{bottom:841.493333pt;}
.y5{bottom:843.813333pt;}
.ye4{bottom:847.413333pt;}
.y84{bottom:848.853333pt;}
.y109{bottom:855.413333pt;}
.y5d{bottom:856.533333pt;}
.ye3{bottom:863.013333pt;}
.y154{bottom:864.213333pt;}
.y83{bottom:864.533333pt;}
.y12c{bottom:865.733333pt;}
.y108{bottom:871.013333pt;}
.y5c{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y4{bottom:877.893333pt;}
.ye2{bottom:878.693333pt;}
.y153{bottom:879.813333pt;}
.y176{bottom:880.133333pt;}
.y30{bottom:888.133333pt;}
.y12b{bottom:890.053333pt;}
.ye1{bottom:894.293333pt;}
.y5b{bottom:895.813333pt;}
.y82{bottom:896.133333pt;}
.y152{bottom:896.213333pt;}
.y3{bottom:899.840000pt;}
.y107{bottom:903.440000pt;}
.y2f{bottom:903.840000pt;}
.y81{bottom:911.840000pt;}
.y151{bottom:912.640000pt;}
.ye0{bottom:918.000000pt;}
.y2e{bottom:919.440000pt;}
.y106{bottom:927.040000pt;}
.y5a{bottom:927.440000pt;}
.y150{bottom:928.240000pt;}
.y12a{bottom:933.360000pt;}
.y2d{bottom:935.040000pt;}
.y59{bottom:943.040000pt;}
.y14f{bottom:944.640000pt;}
.ydf{bottom:949.600000pt;}
.y2c{bottom:950.720000pt;}
.y129{bottom:957.040000pt;}
.y58{bottom:958.720000pt;}
.yb1{bottom:959.040000pt;}
.y14e{bottom:960.240000pt;}
.yde{bottom:965.200000pt;}
.y2b{bottom:966.320000pt;}
.y57{bottom:974.320000pt;}
.ydd{bottom:981.600000pt;}
.y175{bottom:982.320000pt;}
.y14d{bottom:984.640000pt;}
.y128{bottom:986.320000pt;}
.y56{bottom:990.000000pt;}
.ydc{bottom:997.200000pt;}
.y2a{bottom:998.000000pt;}
.ydb{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h14{height:23.600000pt;}
.h15{height:23.626667pt;}
.h13{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.hc{height:39.280000pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:63.128437pt;}
.h11{height:66.560000pt;}
.he{height:70.480000pt;}
.hd{height:86.160000pt;}
.hf{height:86.186667pt;}
.h10{height:285.360000pt;}
.h12{height:414.426667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:36.400000pt;}
.w3{width:95.226667pt;}
.w4{width:128.160000pt;}
.w5{width:195.626667pt;}
.w6{width:250.720000pt;}
.w9{width:557.013333pt;}
.w8{width:634.613333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.xa{left:98.240000pt;}
.xb{left:99.920000pt;}
.x5{left:108.479988pt;}
.xc{left:137.040000pt;}
.x7{left:157.066667pt;}
.x2{left:180.266655pt;}
.x8{left:285.866667pt;}
.x9{left:482.133333pt;}
.x3{left:704.053322pt;}
}




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