
    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_9c9c5ff68a3a13bf8665a915.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_2fb26cbaba00999becf4c09c.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_4ae65be6a883473a3e2b6395.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_d7b4d1efa6b22ce3a5fdf9b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109375;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_9edde6e1cdc7add94d07be92.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087402;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_970520ff990f007f83839cac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.087402;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_c5e955afe4f7898e7c8a9990.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b12495626c20c2c0d41607fb.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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0eade001f38906787c68e977.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.052734;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_5d32db8a26214f7c818fef36.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.v4{vertical-align:11.880000px;}
.v2{vertical-align:15.120000px;}
.ls27{letter-spacing:-0.474600px;}
.ls12{letter-spacing:-0.444600px;}
.ls10{letter-spacing:-0.391800px;}
.ls19{letter-spacing:-0.327000px;}
.ls26{letter-spacing:-0.303000px;}
.ls18{letter-spacing:-0.246600px;}
.ls16{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.162000px;}
.ls8{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls24{letter-spacing:-0.114600px;}
.ls1c{letter-spacing:-0.093600px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.063600px;}
.lsf{letter-spacing:-0.031800px;}
.ls2a{letter-spacing:-0.031680px;}
.lsa{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.033000px;}
.ls13{letter-spacing:0.033120px;}
.ls9{letter-spacing:0.045000px;}
.ls14{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.048960px;}
.ls1d{letter-spacing:0.050760px;}
.ls25{letter-spacing:0.056880px;}
.ls3{letter-spacing:0.065520px;}
.ls1b{letter-spacing:0.069840px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.132000px;}
.ls6{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.173400px;}
.ls1f{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.328200px;}
.ls0{letter-spacing:0.360000px;}
.ls23{letter-spacing:1.533600px;}
.ls4{letter-spacing:1.893600px;}
.ls21{letter-spacing:4.773600px;}
.ls20{letter-spacing:8.373600px;}
.ls22{letter-spacing:13.413600px;}
.ls29{letter-spacing:47.726640px;}
.ls28{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;}
}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.283280px;}
.wsc{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.111800px;}
.ws7{word-spacing:-13.064400px;}
.ws9{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.923400px;}
.ws13{word-spacing:-12.751800px;}
.wse{word-spacing:-10.695600px;}
.wsd{word-spacing:-10.584360px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-9.266400px;}
.ws5{word-spacing:-8.553600px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._9{margin-left:-3.302880px;}
._7{margin-left:-2.145600px;}
._0{margin-left:-1.110000px;}
._1{width:1.677600px;}
._2{width:2.755680px;}
._3{width:3.867600px;}
._4{width:5.854560px;}
._5{width:7.575000px;}
._a{width:9.078000px;}
._6{width:10.100400px;}
._8{width:11.783400px;}
._b{width:14.308560px;}
._c{width:15.751440px;}
._d{width:17.134200px;}
._16{width:18.276480px;}
._e{width:19.761120px;}
._10{width:28.436760px;}
._13{width:38.957760px;}
._12{width:45.510840px;}
._17{width:55.153800px;}
._18{width:56.321280px;}
._1b{width:57.568320px;}
._1a{width:59.939640px;}
._19{width:61.142040px;}
._14{width:67.214160px;}
._15{width:68.518080px;}
._1c{width:78.757200px;}
._1d{width:79.779240px;}
._f{width:86.933520px;}
._11{width:147.895200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.880000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:7.830000px;}
.y5f{bottom:7.920000px;}
.ybe{bottom:35.190000px;}
.y2{bottom:73.380000px;}
.y2c{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y137{bottom:117.210000px;}
.y6a{bottom:120.090000px;}
.y2a{bottom:126.120000px;}
.yd6{bottom:130.620000px;}
.y136{bottom:134.760000px;}
.y69{bottom:137.730000px;}
.y108{bottom:139.170000px;}
.ybc{bottom:140.520000px;}
.y91{bottom:140.610000px;}
.y29{bottom:143.760000px;}
.y68{bottom:155.280000px;}
.y107{bottom:156.810000px;}
.ybb{bottom:158.160000px;}
.y90{bottom:158.250000px;}
.y28{bottom:161.310000px;}
.y135{bottom:161.400000px;}
.yd5{bottom:166.170000px;}
.y67{bottom:172.920000px;}
.y106{bottom:174.360000px;}
.yba{bottom:175.710000px;}
.y8f{bottom:175.800000px;}
.y27{bottom:178.860000px;}
.y134{bottom:178.950000px;}
.y105{bottom:191.910000px;}
.yb9{bottom:193.350000px;}
.y8e{bottom:193.440000px;}
.y26{bottom:196.500000px;}
.yd4{bottom:198.390000px;}
.y66{bottom:199.470000px;}
.yb8{bottom:210.900000px;}
.y25{bottom:214.050000px;}
.y104{bottom:218.820000px;}
.y8d{bottom:219.990000px;}
.y133{bottom:223.140000px;}
.y24{bottom:231.690000px;}
.y65{bottom:234.300000px;}
.y132{bottom:240.690000px;}
.yb7{bottom:246.450000px;}
.y64{bottom:246.540000px;}
.y23{bottom:249.240000px;}
.y8c{bottom:255.540000px;}
.y103{bottom:256.170000px;}
.y131{bottom:258.330000px;}
.y22{bottom:266.790000px;}
.y63{bottom:273.810000px;}
.yb6{bottom:282.090000px;}
.y21{bottom:284.430000px;}
.y130{bottom:284.880000px;}
.y8b{bottom:291.180000px;}
.yb5{bottom:299.640000px;}
.y62{bottom:301.170000px;}
.y20{bottom:301.980000px;}
.y12f{bottom:302.430000px;}
.y4a{bottom:302.520000px;}
.y102{bottom:304.500000px;}
.y8a{bottom:308.730000px;}
.y1f{bottom:319.620000px;}
.y12e{bottom:320.070000px;}
.y101{bottom:322.050000px;}
.y89{bottom:326.370000px;}
.y61{bottom:328.530000px;}
.yb4{bottom:334.470000px;}
.y1e{bottom:337.170000px;}
.y49{bottom:337.800000px;}
.y100{bottom:339.600000px;}
.yb3{bottom:345.900000px;}
.y12d{bottom:346.620000px;}
.y88{bottom:352.920000px;}
.y1d{bottom:354.720000px;}
.y60{bottom:355.890000px;}
.yff{bottom:357.240000px;}
.y12c{bottom:364.260000px;}
.y1c{bottom:372.360000px;}
.yfe{bottom:374.790000px;}
.ya8{bottom:377.670000px;}
.y12b{bottom:381.810000px;}
.y5e{bottom:383.160000px;}
.y87{bottom:388.470000px;}
.yfd{bottom:392.430000px;}
.ya7{bottom:395.310000px;}
.y1b{bottom:399.270000px;}
.y12a{bottom:408.360000px;}
.yfc{bottom:409.980000px;}
.y5d{bottom:410.520000px;}
.ya6{bottom:412.860000px;}
.y86{bottom:424.110000px;}
.y129{bottom:426.000000px;}
.yfb{bottom:427.530000px;}
.ya5{bottom:430.410000px;}
.y5b{bottom:437.880000px;}
.y85{bottom:441.660000px;}
.y128{bottom:443.550000px;}
.yfa{bottom:445.170000px;}
.y1a{bottom:447.870000px;}
.ya4{bottom:448.050000px;}
.y84{bottom:459.300000px;}
.yf9{bottom:462.720000px;}
.ya3{bottom:465.600000px;}
.y127{bottom:470.220000px;}
.ya2{bottom:483.270000px;}
.y19{bottom:484.890000px;}
.y83{bottom:485.880000px;}
.y5a{bottom:486.600000px;}
.y126{bottom:487.770000px;}
.yf8{bottom:489.660000px;}
.ya1{bottom:500.820000px;}
.y18{bottom:502.440000px;}
.y125{bottom:505.320000px;}
.yd3{bottom:514.590000px;}
.y17{bottom:520.080000px;}
.y82{bottom:521.430000px;}
.y59{bottom:522.150000px;}
.ya0{bottom:527.370000px;}
.y151{bottom:531.690000px;}
.y124{bottom:531.960000px;}
.yd2{bottom:532.140000px;}
.y16{bottom:537.630000px;}
.yf7{bottom:537.900000px;}
.y58{bottom:539.790000px;}
.y150{bottom:549.330000px;}
.y123{bottom:549.510000px;}
.yd1{bottom:549.690000px;}
.y15{bottom:555.270000px;}
.yf6{bottom:555.540000px;}
.y81{bottom:557.070000px;}
.y57{bottom:557.340000px;}
.y9f{bottom:563.010000px;}
.y122{bottom:567.150000px;}
.y14{bottom:572.820000px;}
.yf5{bottom:573.090000px;}
.y80{bottom:574.620000px;}
.y56{bottom:574.890000px;}
.y14f{bottom:575.880000px;}
.yd0{bottom:576.330000px;}
.y48{bottom:580.470000px;}
.y9e{bottom:580.560000px;}
.y13{bottom:590.370000px;}
.yf4{bottom:590.730000px;}
.y7f{bottom:592.260000px;}
.y14e{bottom:593.430000px;}
.y121{bottom:593.700000px;}
.y47{bottom:598.020000px;}
.y55{bottom:601.530000px;}
.y12{bottom:608.010000px;}
.yf3{bottom:608.280000px;}
.ycf{bottom:609.270000px;}
.y7e{bottom:609.810000px;}
.y14d{bottom:611.070000px;}
.y120{bottom:611.250000px;}
.y9d{bottom:612.780000px;}
.y46{bottom:615.660000px;}
.y11{bottom:625.560000px;}
.yf2{bottom:625.830000px;}
.y7d{bottom:627.360000px;}
.y14c{bottom:628.620000px;}
.y11f{bottom:628.890000px;}
.y45{bottom:633.210000px;}
.yce{bottom:636.630000px;}
.y54{bottom:637.080000px;}
.y10{bottom:643.200000px;}
.yf1{bottom:643.470000px;}
.y14b{bottom:646.260000px;}
.y44{bottom:650.760000px;}
.y7c{bottom:654.000000px;}
.y53{bottom:654.720000px;}
.y11e{bottom:655.440000px;}
.yf{bottom:660.750000px;}
.yf0{bottom:661.020000px;}
.ycd{bottom:663.990000px;}
.y43{bottom:668.400000px;}
.yb2{bottom:668.850000px;}
.y52{bottom:672.270000px;}
.y14a{bottom:672.810000px;}
.y11d{bottom:673.080000px;}
.yef{bottom:678.660000px;}
.y42{bottom:685.950000px;}
.yb1{bottom:686.400000px;}
.ye{bottom:687.660000px;}
.y7b{bottom:689.550000px;}
.y51{bottom:689.820000px;}
.y149{bottom:690.360000px;}
.y11c{bottom:690.630000px;}
.ycc{bottom:691.260000px;}
.yee{bottom:696.210000px;}
.y41{bottom:703.590000px;}
.yb0{bottom:704.040000px;}
.y50{bottom:707.460000px;}
.y148{bottom:708.000000px;}
.yed{bottom:713.760000px;}
.y11b{bottom:717.180000px;}
.ycb{bottom:718.620000px;}
.y40{bottom:721.140000px;}
.yaf{bottom:721.590000px;}
.y7a{bottom:725.190000px;}
.yec{bottom:731.400000px;}
.y4f{bottom:734.010000px;}
.y147{bottom:734.550000px;}
.y11a{bottom:734.820000px;}
.yd{bottom:735.900000px;}
.y3f{bottom:738.690000px;}
.yae{bottom:739.140000px;}
.y79{bottom:742.740000px;}
.yca{bottom:745.980000px;}
.yeb{bottom:748.950000px;}
.y146{bottom:752.190000px;}
.y119{bottom:752.370000px;}
.y3e{bottom:756.330000px;}
.yad{bottom:756.780000px;}
.y78{bottom:760.290000px;}
.yea{bottom:766.590000px;}
.y4e{bottom:769.650000px;}
.y145{bottom:769.740000px;}
.y118{bottom:769.920000px;}
.yc{bottom:771.720000px;}
.yc9{bottom:773.250000px;}
.y3d{bottom:773.880000px;}
.yac{bottom:783.330000px;}
.ye9{bottom:784.140000px;}
.y77{bottom:786.930000px;}
.y3c{bottom:791.520000px;}
.y144{bottom:796.290000px;}
.y117{bottom:796.560000px;}
.yc8{bottom:800.610000px;}
.ye8{bottom:801.690000px;}
.y4d{bottom:804.480000px;}
.yb{bottom:807.720000px;}
.y3b{bottom:809.070000px;}
.y143{bottom:813.930000px;}
.y116{bottom:814.110000px;}
.yab{bottom:818.970000px;}
.ye7{bottom:819.330000px;}
.y76{bottom:822.480000px;}
.y3a{bottom:826.620000px;}
.yc7{bottom:827.970000px;}
.y142{bottom:831.480000px;}
.y115{bottom:831.750000px;}
.yaa{bottom:836.520000px;}
.ye6{bottom:836.880000px;}
.y75{bottom:840.030000px;}
.y4c{bottom:840.210000px;}
.y39{bottom:844.260000px;}
.ya{bottom:847.500000px;}
.y114{bottom:849.300000px;}
.ye5{bottom:854.520000px;}
.yc6{bottom:855.330000px;}
.y74{bottom:857.670000px;}
.y141{bottom:858.030000px;}
.ya9{bottom:859.740000px;}
.y9{bottom:861.720000px;}
.y38{bottom:870.810000px;}
.ye4{bottom:872.070000px;}
.y73{bottom:875.220000px;}
.y4b{bottom:875.400000px;}
.y140{bottom:875.670000px;}
.y113{bottom:875.850000px;}
.yc5{bottom:882.600000px;}
.y8{bottom:883.500000px;}
.ye3{bottom:889.620000px;}
.y13f{bottom:893.220000px;}
.y112{bottom:893.490000px;}
.y7{bottom:901.500000px;}
.y72{bottom:901.860000px;}
.y37{bottom:906.450000px;}
.ye2{bottom:907.260000px;}
.yc4{bottom:909.960000px;}
.y111{bottom:911.040000px;}
.y13e{bottom:919.860000px;}
.y36{bottom:924.000000px;}
.y9c{bottom:924.450000px;}
.ye1{bottom:924.810000px;}
.y6{bottom:933.630000px;}
.yc3{bottom:937.320000px;}
.y71{bottom:937.410000px;}
.y110{bottom:937.680000px;}
.y35{bottom:941.550000px;}
.y9b{bottom:942.000000px;}
.ye0{bottom:942.450000px;}
.y5{bottom:952.170000px;}
.y70{bottom:954.960000px;}
.y10f{bottom:955.230000px;}
.y34{bottom:959.190000px;}
.y9a{bottom:959.550000px;}
.ydf{bottom:960.000000px;}
.yc2{bottom:964.680000px;}
.y6f{bottom:972.600000px;}
.y99{bottom:977.190000px;}
.yde{bottom:977.550000px;}
.y13d{bottom:981.600000px;}
.y10e{bottom:982.140000px;}
.y33{bottom:985.740000px;}
.y4{bottom:989.700000px;}
.y6e{bottom:990.150000px;}
.yc1{bottom:991.950000px;}
.y98{bottom:994.740000px;}
.ydd{bottom:995.190000px;}
.y13c{bottom:999.150000px;}
.y6d{bottom:1007.790000px;}
.y97{bottom:1012.320000px;}
.ydc{bottom:1012.770000px;}
.y3{bottom:1014.390000px;}
.y13b{bottom:1016.820000px;}
.yc0{bottom:1019.340000px;}
.y32{bottom:1021.680000px;}
.y6c{bottom:1025.370000px;}
.y96{bottom:1029.960000px;}
.ydb{bottom:1030.320000px;}
.y10d{bottom:1030.410000px;}
.y13a{bottom:1043.370000px;}
.ybd{bottom:1046.700000px;}
.y95{bottom:1047.510000px;}
.yda{bottom:1047.960000px;}
.y10c{bottom:1048.050000px;}
.y6b{bottom:1051.920000px;}
.y139{bottom:1060.920000px;}
.y94{bottom:1065.150000px;}
.yd9{bottom:1065.510000px;}
.y31{bottom:1069.920000px;}
.ybf{bottom:1073.970000px;}
.y10b{bottom:1074.960000px;}
.y138{bottom:1078.560000px;}
.yd8{bottom:1083.150000px;}
.y30{bottom:1087.560000px;}
.y93{bottom:1091.700000px;}
.yd7{bottom:1100.700000px;}
.y2f{bottom:1105.110000px;}
.y10a{bottom:1111.950000px;}
.y2e{bottom:1122.750000px;}
.y92{bottom:1127.610000px;}
.y109{bottom:1138.860000px;}
.y2d{bottom:1140.300000px;}
.y2b{bottom:1194.300000px;}
.he{height:26.550000px;}
.hf{height:26.640000px;}
.h13{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:37.132734px;}
.h3{height:40.100098px;}
.hd{height:42.666504px;}
.h12{height:50.667539px;}
.hc{height:50.902383px;}
.h7{height:52.252734px;}
.h8{height:53.573730px;}
.h11{height:53.910000px;}
.h9{height:55.779258px;}
.h5{height:56.140137px;}
.h14{height:57.258984px;}
.h10{height:59.973223px;}
.h15{height:61.793886px;}
.hb{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:74.746582px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:100.170000px;}
.w9{width:137.910000px;}
.w5{width:152.760000px;}
.w8{width:187.470000px;}
.w4{width:187.500000px;}
.w3{width:285.660000px;}
.w6{width:326.100000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:7.740000px;}
.x1e{left:25.020000px;}
.x21{left:31.530000px;}
.x1a{left:33.960000px;}
.x24{left:36.720000px;}
.x1f{left:39.960000px;}
.x23{left:55.020000px;}
.x1c{left:64.530000px;}
.x1{left:68.040000px;}
.x14{left:69.389987px;}
.x22{left:79.740000px;}
.x18{left:97.199987px;}
.xf{left:103.499987px;}
.x27{left:111.239987px;}
.x11{left:121.049987px;}
.x7{left:126.359987px;}
.x19{left:156.330000px;}
.xd{left:172.109987px;}
.xe{left:183.269987px;}
.x26{left:190.289987px;}
.x9{left:209.640000px;}
.x2{left:231.149987px;}
.x8{left:277.409987px;}
.x1b{left:309.810000px;}
.x12{left:341.579987px;}
.x15{left:363.809987px;}
.x17{left:378.209987px;}
.xc{left:396.209987px;}
.x5{left:441.749987px;}
.xb{left:496.110000px;}
.x20{left:498.000000px;}
.x1d{left:636.720000px;}
.x10{left:713.309987px;}
.x16{left:721.139987px;}
.x6{left:730.139987px;}
.x4{left:732.389987px;}
.x13{left:744.809987px;}
.x25{left:748.139987px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.560000pt;}
.v2{vertical-align:13.440000pt;}
.ls27{letter-spacing:-0.421867pt;}
.ls12{letter-spacing:-0.395200pt;}
.ls10{letter-spacing:-0.348267pt;}
.ls19{letter-spacing:-0.290667pt;}
.ls26{letter-spacing:-0.269333pt;}
.ls18{letter-spacing:-0.219200pt;}
.ls16{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls8{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls24{letter-spacing:-0.101867pt;}
.ls1c{letter-spacing:-0.083200pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.056533pt;}
.lsf{letter-spacing:-0.028267pt;}
.ls2a{letter-spacing:-0.028160pt;}
.lsa{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.029333pt;}
.ls13{letter-spacing:0.029440pt;}
.ls9{letter-spacing:0.040000pt;}
.ls14{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.043520pt;}
.ls1d{letter-spacing:0.045120pt;}
.ls25{letter-spacing:0.050560pt;}
.ls3{letter-spacing:0.058240pt;}
.ls1b{letter-spacing:0.062080pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.117333pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.154133pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.291733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls23{letter-spacing:1.363200pt;}
.ls4{letter-spacing:1.683200pt;}
.ls21{letter-spacing:4.243200pt;}
.ls20{letter-spacing:7.443200pt;}
.ls22{letter-spacing:11.923200pt;}
.ls29{letter-spacing:42.423680pt;}
.ls28{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.807360pt;}
.wsc{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.654933pt;}
.ws7{word-spacing:-11.612800pt;}
.ws9{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.487467pt;}
.ws13{word-spacing:-11.334933pt;}
.wse{word-spacing:-9.507200pt;}
.wsd{word-spacing:-9.408320pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-8.236800pt;}
.ws5{word-spacing:-7.603200pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._9{margin-left:-2.935893pt;}
._7{margin-left:-1.907200pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.491200pt;}
._2{width:2.449493pt;}
._3{width:3.437867pt;}
._4{width:5.204053pt;}
._5{width:6.733333pt;}
._a{width:8.069333pt;}
._6{width:8.978134pt;}
._8{width:10.474133pt;}
._b{width:12.718720pt;}
._c{width:14.001280pt;}
._d{width:15.230400pt;}
._16{width:16.245760pt;}
._e{width:17.565440pt;}
._10{width:25.277120pt;}
._13{width:34.629120pt;}
._12{width:40.454080pt;}
._17{width:49.025600pt;}
._18{width:50.063360pt;}
._1b{width:51.171840pt;}
._1a{width:53.279680pt;}
._19{width:54.348480pt;}
._14{width:59.745920pt;}
._15{width:60.904960pt;}
._1c{width:70.006400pt;}
._1d{width:70.914880pt;}
._f{width:77.274240pt;}
._11{width:131.462400pt;}
.fs9{font-size:26.560000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:6.960000pt;}
.y5f{bottom:7.040000pt;}
.ybe{bottom:31.280000pt;}
.y2{bottom:65.226667pt;}
.y2c{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y137{bottom:104.186667pt;}
.y6a{bottom:106.746667pt;}
.y2a{bottom:112.106667pt;}
.yd6{bottom:116.106667pt;}
.y136{bottom:119.786667pt;}
.y69{bottom:122.426667pt;}
.y108{bottom:123.706667pt;}
.ybc{bottom:124.906667pt;}
.y91{bottom:124.986667pt;}
.y29{bottom:127.786667pt;}
.y68{bottom:138.026667pt;}
.y107{bottom:139.386667pt;}
.ybb{bottom:140.586667pt;}
.y90{bottom:140.666667pt;}
.y28{bottom:143.386667pt;}
.y135{bottom:143.466667pt;}
.yd5{bottom:147.706667pt;}
.y67{bottom:153.706667pt;}
.y106{bottom:154.986667pt;}
.yba{bottom:156.186667pt;}
.y8f{bottom:156.266667pt;}
.y27{bottom:158.986667pt;}
.y134{bottom:159.066667pt;}
.y105{bottom:170.586667pt;}
.yb9{bottom:171.866667pt;}
.y8e{bottom:171.946667pt;}
.y26{bottom:174.666667pt;}
.yd4{bottom:176.346667pt;}
.y66{bottom:177.306667pt;}
.yb8{bottom:187.466667pt;}
.y25{bottom:190.266667pt;}
.y104{bottom:194.506667pt;}
.y8d{bottom:195.546667pt;}
.y133{bottom:198.346667pt;}
.y24{bottom:205.946667pt;}
.y65{bottom:208.266667pt;}
.y132{bottom:213.946667pt;}
.yb7{bottom:219.066667pt;}
.y64{bottom:219.146667pt;}
.y23{bottom:221.546667pt;}
.y8c{bottom:227.146667pt;}
.y103{bottom:227.706667pt;}
.y131{bottom:229.626667pt;}
.y22{bottom:237.146667pt;}
.y63{bottom:243.386667pt;}
.yb6{bottom:250.746667pt;}
.y21{bottom:252.826667pt;}
.y130{bottom:253.226667pt;}
.y8b{bottom:258.826667pt;}
.yb5{bottom:266.346667pt;}
.y62{bottom:267.706667pt;}
.y20{bottom:268.426667pt;}
.y12f{bottom:268.826667pt;}
.y4a{bottom:268.906667pt;}
.y102{bottom:270.666667pt;}
.y8a{bottom:274.426667pt;}
.y1f{bottom:284.106667pt;}
.y12e{bottom:284.506667pt;}
.y101{bottom:286.266667pt;}
.y89{bottom:290.106667pt;}
.y61{bottom:292.026667pt;}
.yb4{bottom:297.306667pt;}
.y1e{bottom:299.706667pt;}
.y49{bottom:300.266667pt;}
.y100{bottom:301.866667pt;}
.yb3{bottom:307.466667pt;}
.y12d{bottom:308.106667pt;}
.y88{bottom:313.706667pt;}
.y1d{bottom:315.306667pt;}
.y60{bottom:316.346667pt;}
.yff{bottom:317.546667pt;}
.y12c{bottom:323.786667pt;}
.y1c{bottom:330.986667pt;}
.yfe{bottom:333.146667pt;}
.ya8{bottom:335.706667pt;}
.y12b{bottom:339.386667pt;}
.y5e{bottom:340.586667pt;}
.y87{bottom:345.306667pt;}
.yfd{bottom:348.826667pt;}
.ya7{bottom:351.386667pt;}
.y1b{bottom:354.906667pt;}
.y12a{bottom:362.986667pt;}
.yfc{bottom:364.426667pt;}
.y5d{bottom:364.906667pt;}
.ya6{bottom:366.986667pt;}
.y86{bottom:376.986667pt;}
.y129{bottom:378.666667pt;}
.yfb{bottom:380.026667pt;}
.ya5{bottom:382.586667pt;}
.y5b{bottom:389.226667pt;}
.y85{bottom:392.586667pt;}
.y128{bottom:394.266667pt;}
.yfa{bottom:395.706667pt;}
.y1a{bottom:398.106667pt;}
.ya4{bottom:398.266667pt;}
.y84{bottom:408.266667pt;}
.yf9{bottom:411.306667pt;}
.ya3{bottom:413.866667pt;}
.y127{bottom:417.973333pt;}
.ya2{bottom:429.573333pt;}
.y19{bottom:431.013333pt;}
.y83{bottom:431.893333pt;}
.y5a{bottom:432.533333pt;}
.y126{bottom:433.573333pt;}
.yf8{bottom:435.253333pt;}
.ya1{bottom:445.173333pt;}
.y18{bottom:446.613333pt;}
.y125{bottom:449.173333pt;}
.yd3{bottom:457.413333pt;}
.y17{bottom:462.293333pt;}
.y82{bottom:463.493333pt;}
.y59{bottom:464.133333pt;}
.ya0{bottom:468.773333pt;}
.y151{bottom:472.613333pt;}
.y124{bottom:472.853333pt;}
.yd2{bottom:473.013333pt;}
.y16{bottom:477.893333pt;}
.yf7{bottom:478.133333pt;}
.y58{bottom:479.813333pt;}
.y150{bottom:488.293333pt;}
.y123{bottom:488.453333pt;}
.yd1{bottom:488.613333pt;}
.y15{bottom:493.573333pt;}
.yf6{bottom:493.813333pt;}
.y81{bottom:495.173333pt;}
.y57{bottom:495.413333pt;}
.y9f{bottom:500.453333pt;}
.y122{bottom:504.133333pt;}
.y14{bottom:509.173333pt;}
.yf5{bottom:509.413333pt;}
.y80{bottom:510.773333pt;}
.y56{bottom:511.013333pt;}
.y14f{bottom:511.893333pt;}
.yd0{bottom:512.293333pt;}
.y48{bottom:515.973333pt;}
.y9e{bottom:516.053333pt;}
.y13{bottom:524.773333pt;}
.yf4{bottom:525.093333pt;}
.y7f{bottom:526.453333pt;}
.y14e{bottom:527.493333pt;}
.y121{bottom:527.733333pt;}
.y47{bottom:531.573333pt;}
.y55{bottom:534.693333pt;}
.y12{bottom:540.453333pt;}
.yf3{bottom:540.693333pt;}
.ycf{bottom:541.573333pt;}
.y7e{bottom:542.053333pt;}
.y14d{bottom:543.173333pt;}
.y120{bottom:543.333333pt;}
.y9d{bottom:544.693333pt;}
.y46{bottom:547.253333pt;}
.y11{bottom:556.053333pt;}
.yf2{bottom:556.293333pt;}
.y7d{bottom:557.653333pt;}
.y14c{bottom:558.773333pt;}
.y11f{bottom:559.013333pt;}
.y45{bottom:562.853333pt;}
.yce{bottom:565.893333pt;}
.y54{bottom:566.293333pt;}
.y10{bottom:571.733333pt;}
.yf1{bottom:571.973333pt;}
.y14b{bottom:574.453333pt;}
.y44{bottom:578.453333pt;}
.y7c{bottom:581.333333pt;}
.y53{bottom:581.973333pt;}
.y11e{bottom:582.613333pt;}
.yf{bottom:587.333333pt;}
.yf0{bottom:587.573333pt;}
.ycd{bottom:590.213333pt;}
.y43{bottom:594.133333pt;}
.yb2{bottom:594.533333pt;}
.y52{bottom:597.573333pt;}
.y14a{bottom:598.053333pt;}
.y11d{bottom:598.293333pt;}
.yef{bottom:603.253333pt;}
.y42{bottom:609.733333pt;}
.yb1{bottom:610.133333pt;}
.ye{bottom:611.253333pt;}
.y7b{bottom:612.933333pt;}
.y51{bottom:613.173333pt;}
.y149{bottom:613.653333pt;}
.y11c{bottom:613.893333pt;}
.ycc{bottom:614.453333pt;}
.yee{bottom:618.853333pt;}
.y41{bottom:625.413333pt;}
.yb0{bottom:625.813333pt;}
.y50{bottom:628.853333pt;}
.y148{bottom:629.333333pt;}
.yed{bottom:634.453333pt;}
.y11b{bottom:637.493333pt;}
.ycb{bottom:638.773333pt;}
.y40{bottom:641.013333pt;}
.yaf{bottom:641.413333pt;}
.y7a{bottom:644.613333pt;}
.yec{bottom:650.133333pt;}
.y4f{bottom:652.453333pt;}
.y147{bottom:652.933333pt;}
.y11a{bottom:653.173333pt;}
.yd{bottom:654.133333pt;}
.y3f{bottom:656.613333pt;}
.yae{bottom:657.013333pt;}
.y79{bottom:660.213333pt;}
.yca{bottom:663.093333pt;}
.yeb{bottom:665.733333pt;}
.y146{bottom:668.613333pt;}
.y119{bottom:668.773333pt;}
.y3e{bottom:672.293333pt;}
.yad{bottom:672.693333pt;}
.y78{bottom:675.813333pt;}
.yea{bottom:681.413333pt;}
.y4e{bottom:684.133333pt;}
.y145{bottom:684.213333pt;}
.y118{bottom:684.373333pt;}
.yc{bottom:685.973333pt;}
.yc9{bottom:687.333333pt;}
.y3d{bottom:687.893333pt;}
.yac{bottom:696.293333pt;}
.ye9{bottom:697.013333pt;}
.y77{bottom:699.493333pt;}
.y3c{bottom:703.573333pt;}
.y144{bottom:707.813333pt;}
.y117{bottom:708.053333pt;}
.yc8{bottom:711.653333pt;}
.ye8{bottom:712.613333pt;}
.y4d{bottom:715.093333pt;}
.yb{bottom:717.973333pt;}
.y3b{bottom:719.173333pt;}
.y143{bottom:723.493333pt;}
.y116{bottom:723.653333pt;}
.yab{bottom:727.973333pt;}
.ye7{bottom:728.293333pt;}
.y76{bottom:731.093333pt;}
.y3a{bottom:734.773333pt;}
.yc7{bottom:735.973333pt;}
.y142{bottom:739.093333pt;}
.y115{bottom:739.333333pt;}
.yaa{bottom:743.573333pt;}
.ye6{bottom:743.893333pt;}
.y75{bottom:746.693333pt;}
.y4c{bottom:746.853333pt;}
.y39{bottom:750.453333pt;}
.ya{bottom:753.333333pt;}
.y114{bottom:754.933333pt;}
.ye5{bottom:759.573333pt;}
.yc6{bottom:760.293333pt;}
.y74{bottom:762.373333pt;}
.y141{bottom:762.693333pt;}
.ya9{bottom:764.213333pt;}
.y9{bottom:765.973333pt;}
.y38{bottom:774.053333pt;}
.ye4{bottom:775.173333pt;}
.y73{bottom:777.973333pt;}
.y4b{bottom:778.133333pt;}
.y140{bottom:778.373333pt;}
.y113{bottom:778.533333pt;}
.yc5{bottom:784.533333pt;}
.y8{bottom:785.333333pt;}
.ye3{bottom:790.773333pt;}
.y13f{bottom:793.973333pt;}
.y112{bottom:794.213333pt;}
.y7{bottom:801.333333pt;}
.y72{bottom:801.653333pt;}
.y37{bottom:805.733333pt;}
.ye2{bottom:806.453333pt;}
.yc4{bottom:808.853333pt;}
.y111{bottom:809.813333pt;}
.y13e{bottom:817.653333pt;}
.y36{bottom:821.333333pt;}
.y9c{bottom:821.733333pt;}
.ye1{bottom:822.053333pt;}
.y6{bottom:829.893333pt;}
.yc3{bottom:833.173333pt;}
.y71{bottom:833.253333pt;}
.y110{bottom:833.493333pt;}
.y35{bottom:836.933333pt;}
.y9b{bottom:837.333333pt;}
.ye0{bottom:837.733333pt;}
.y5{bottom:846.373333pt;}
.y70{bottom:848.853333pt;}
.y10f{bottom:849.093333pt;}
.y34{bottom:852.613333pt;}
.y9a{bottom:852.933333pt;}
.ydf{bottom:853.333333pt;}
.yc2{bottom:857.493333pt;}
.y6f{bottom:864.533333pt;}
.y99{bottom:868.613333pt;}
.yde{bottom:868.933333pt;}
.y13d{bottom:872.533333pt;}
.y10e{bottom:873.013333pt;}
.y33{bottom:876.213333pt;}
.y4{bottom:879.733333pt;}
.y6e{bottom:880.133333pt;}
.yc1{bottom:881.733333pt;}
.y98{bottom:884.213333pt;}
.ydd{bottom:884.613333pt;}
.y13c{bottom:888.133333pt;}
.y6d{bottom:895.813333pt;}
.y97{bottom:899.840000pt;}
.ydc{bottom:900.240000pt;}
.y3{bottom:901.680000pt;}
.y13b{bottom:903.840000pt;}
.yc0{bottom:906.080000pt;}
.y32{bottom:908.160000pt;}
.y6c{bottom:911.440000pt;}
.y96{bottom:915.520000pt;}
.ydb{bottom:915.840000pt;}
.y10d{bottom:915.920000pt;}
.y13a{bottom:927.440000pt;}
.ybd{bottom:930.400000pt;}
.y95{bottom:931.120000pt;}
.yda{bottom:931.520000pt;}
.y10c{bottom:931.600000pt;}
.y6b{bottom:935.040000pt;}
.y139{bottom:943.040000pt;}
.y94{bottom:946.800000pt;}
.yd9{bottom:947.120000pt;}
.y31{bottom:951.040000pt;}
.ybf{bottom:954.640000pt;}
.y10b{bottom:955.520000pt;}
.y138{bottom:958.720000pt;}
.yd8{bottom:962.800000pt;}
.y30{bottom:966.720000pt;}
.y93{bottom:970.400000pt;}
.yd7{bottom:978.400000pt;}
.y2f{bottom:982.320000pt;}
.y10a{bottom:988.400000pt;}
.y2e{bottom:998.000000pt;}
.y92{bottom:1002.320000pt;}
.y109{bottom:1012.320000pt;}
.y2d{bottom:1013.600000pt;}
.y2b{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.hf{height:23.680000pt;}
.h13{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:33.006875pt;}
.h3{height:35.644531pt;}
.hd{height:37.925781pt;}
.h12{height:45.037812pt;}
.hc{height:45.246562pt;}
.h7{height:46.446875pt;}
.h8{height:47.621094pt;}
.h11{height:47.920000pt;}
.h9{height:49.581562pt;}
.h5{height:49.902344pt;}
.h14{height:50.896875pt;}
.h10{height:53.309531pt;}
.h15{height:54.927899pt;}
.hb{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:66.441406pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:89.040000pt;}
.w9{width:122.586667pt;}
.w5{width:135.786667pt;}
.w8{width:166.640000pt;}
.w4{width:166.666667pt;}
.w3{width:253.920000pt;}
.w6{width:289.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.880000pt;}
.x1e{left:22.240000pt;}
.x21{left:28.026667pt;}
.x1a{left:30.186667pt;}
.x24{left:32.640000pt;}
.x1f{left:35.520000pt;}
.x23{left:48.906667pt;}
.x1c{left:57.360000pt;}
.x1{left:60.480000pt;}
.x14{left:61.679988pt;}
.x22{left:70.880000pt;}
.x18{left:86.399988pt;}
.xf{left:91.999988pt;}
.x27{left:98.879988pt;}
.x11{left:107.599988pt;}
.x7{left:112.319988pt;}
.x19{left:138.960000pt;}
.xd{left:152.986655pt;}
.xe{left:162.906655pt;}
.x26{left:169.146655pt;}
.x9{left:186.346667pt;}
.x2{left:205.466655pt;}
.x8{left:246.586655pt;}
.x1b{left:275.386667pt;}
.x12{left:303.626655pt;}
.x15{left:323.386655pt;}
.x17{left:336.186655pt;}
.xc{left:352.186655pt;}
.x5{left:392.666655pt;}
.xb{left:440.986667pt;}
.x20{left:442.666667pt;}
.x1d{left:565.973333pt;}
.x10{left:634.053322pt;}
.x16{left:641.013322pt;}
.x6{left:649.013322pt;}
.x4{left:651.013322pt;}
.x13{left:662.053322pt;}
.x25{left:665.013322pt;}
.x3{left:718.773322pt;}
}




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