
    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_8df74327444cbf7f94045522.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_085fdf82e318a100f09368a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c54c2c95004696e395b6c268.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d38453eee2322d2bf45a536b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.050293;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_a43a25ceb357898c3ed03ab1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061035;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_75db63342ee9918cc8a7724c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_edb7a9e08176373421173a2b.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_694b7432abb6d1e9880acefe.woff2')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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.760000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v7{vertical-align:31.680000px;}
.v6{vertical-align:37.440000px;}
.ls7{letter-spacing:-0.936000px;}
.ls11{letter-spacing:-0.463800px;}
.ls4{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.334200px;}
.lsc{letter-spacing:-0.310800px;}
.ls10{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.206400px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.lsa{letter-spacing:0.069000px;}
.ls12{letter-spacing:0.166800px;}
.lsb{letter-spacing:0.172800px;}
.ls17{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.334080px;}
.lsd{letter-spacing:0.334200px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.391680px;}
.ls8{letter-spacing:0.460800px;}
.ls13{letter-spacing:7.440000px;}
.lse{letter-spacing:18.190080px;}
.ls16{letter-spacing:144.281280px;}
.ls14{letter-spacing:163.001280px;}
.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;}
}
.ws16{word-spacing:-56.880000px;}
.ws0{word-spacing:-18.000000px;}
.ws14{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.174200px;}
.ws11{word-spacing:-16.006800px;}
.ws7{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.505800px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.002784px;}
.ws2{word-spacing:-14.993280px;}
.ws13{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.220000px;}
.wsa{word-spacing:-14.112000px;}
.ws9{word-spacing:-14.008200px;}
.wsb{word-spacing:-13.628400px;}
.wsc{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:6.393600px;}
.ws12{word-spacing:383.492160px;}
.ws10{word-spacing:513.943680px;}
._18{margin-left:-6.480000px;}
._17{margin-left:-4.300560px;}
._e{margin-left:-2.452560px;}
._0{margin-left:-1.324800px;}
._1{width:1.198080px;}
._2{width:3.059520px;}
._8{width:4.299840px;}
._9{width:5.318640px;}
._6{width:6.929280px;}
._7{width:7.953840px;}
._d{width:9.123120px;}
._5{width:10.350000px;}
._4{width:11.411280px;}
._13{width:12.484800px;}
._15{width:13.878720px;}
._14{width:15.036480px;}
._16{width:17.587680px;}
._10{width:18.881280px;}
._f{width:20.739600px;}
._b{width:21.929040px;}
._a{width:23.784480px;}
._c{width:25.577280px;}
._11{width:28.549440px;}
._12{width:29.675520px;}
._3{width:38.067120px;}
._1c{width:76.414560px;}
._19{width:200.160000px;}
._1a{width:570.102720px;}
._1b{width:579.016320px;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs5{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs4{font-size:48.240000px;}
.fsd{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs8{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y30{bottom:3.240000px;}
.y8c{bottom:3.420000px;}
.yda{bottom:4.500000px;}
.ydc{bottom:4.680000px;}
.y135{bottom:6.510000px;}
.y12b{bottom:9.435000px;}
.y133{bottom:11.340000px;}
.y11{bottom:14.400000px;}
.y18{bottom:21.240000px;}
.y10c{bottom:22.935000px;}
.y2f{bottom:29.340000px;}
.y129{bottom:34.095000px;}
.y17{bottom:38.520000px;}
.y12d{bottom:41.790000px;}
.y2e{bottom:46.620000px;}
.y10a{bottom:47.595000px;}
.y121{bottom:55.545000px;}
.y16{bottom:55.830000px;}
.y134{bottom:60.480000px;}
.y2d{bottom:63.945000px;}
.y104{bottom:69.045000px;}
.y15{bottom:72.930000px;}
.y122{bottom:79.050000px;}
.y2c{bottom:81.225000px;}
.y12a{bottom:86.475000px;}
.y12e{bottom:88.200000px;}
.y14{bottom:90.210000px;}
.y19{bottom:95.430000px;}
.y2b{bottom:98.505000px;}
.y123{bottom:102.570000px;}
.y10b{bottom:103.170000px;}
.y13{bottom:105.150000px;}
.y105{bottom:108.690000px;}
.y2a{bottom:115.785000px;}
.y124{bottom:126.030000px;}
.y29{bottom:133.065000px;}
.y12f{bottom:134.640000px;}
.y106{bottom:148.320000px;}
.y125{bottom:149.550000px;}
.y28{bottom:150.165000px;}
.y102{bottom:158.400000px;}
.y37{bottom:159.345000px;}
.yd5{bottom:165.450000px;}
.y41{bottom:166.530000px;}
.y27{bottom:167.445000px;}
.yee{bottom:172.290000px;}
.y126{bottom:173.055000px;}
.y101{bottom:176.430000px;}
.y36{bottom:176.625000px;}
.y130{bottom:181.050000px;}
.yd4{bottom:183.630000px;}
.y26{bottom:184.725000px;}
.y165{bottom:185.070000px;}
.y40{bottom:185.430000px;}
.y11f{bottom:185.790000px;}
.ya4{bottom:186.510000px;}
.y107{bottom:187.995000px;}
.yed{bottom:190.290000px;}
.y35{bottom:193.725000px;}
.y100{bottom:194.610000px;}
.y127{bottom:196.560000px;}
.y25{bottom:202.005000px;}
.y11e{bottom:203.970000px;}
.y3f{bottom:204.330000px;}
.ya3{bottom:204.690000px;}
.yec{bottom:208.470000px;}
.y164{bottom:209.370000px;}
.yd3{bottom:210.630000px;}
.y34{bottom:211.005000px;}
.y74{bottom:213.870000px;}
.y24{bottom:219.285000px;}
.y128{bottom:220.065000px;}
.yff{bottom:221.790000px;}
.y11d{bottom:222.150000px;}
.ya2{bottom:222.690000px;}
.y3e{bottom:223.410000px;}
.y163{bottom:225.750000px;}
.y131{bottom:227.490000px;}
.y108{bottom:227.625000px;}
.y33{bottom:228.285000px;}
.y73{bottom:233.130000px;}
.y136{bottom:235.230000px;}
.yeb{bottom:235.650000px;}
.y23{bottom:236.565000px;}
.yd2{bottom:237.810000px;}
.ya1{bottom:240.870000px;}
.y3d{bottom:242.310000px;}
.y32{bottom:245.565000px;}
.y162{bottom:246.630000px;}
.y11c{bottom:249.330000px;}
.yfe{bottom:249.690000px;}
.y38{bottom:250.785000px;}
.y72{bottom:252.030000px;}
.y22{bottom:253.665000px;}
.yd1{bottom:255.990000px;}
.ya0{bottom:259.050000px;}
.y31{bottom:260.505000px;}
.y3c{bottom:261.390000px;}
.y161{bottom:263.010000px;}
.yea{bottom:263.550000px;}
.y109{bottom:267.300000px;}
.y21{bottom:270.945000px;}
.y71{bottom:271.110000px;}
.yfd{bottom:273.270000px;}
.y103{bottom:274.140000px;}
.yd0{bottom:274.170000px;}
.y9f{bottom:277.050000px;}
.y3b{bottom:280.290000px;}
.y160{bottom:283.890000px;}
.ye9{bottom:287.130000px;}
.y20{bottom:288.225000px;}
.y70{bottom:290.010000px;}
.y11b{bottom:291.810000px;}
.y12c{bottom:292.140000px;}
.ycf{bottom:292.170000px;}
.y9e{bottom:295.230000px;}
.y15f{bottom:300.270000px;}
.y132{bottom:301.140000px;}
.y1f{bottom:305.505000px;}
.y3a{bottom:308.010000px;}
.y6f{bottom:308.910000px;}
.yce{bottom:310.350000px;}
.y9d{bottom:313.410000px;}
.y15e{bottom:321.150000px;}
.y1e{bottom:322.815000px;}
.y39{bottom:326.730000px;}
.y6e{bottom:327.990000px;}
.ycd{bottom:328.350000px;}
.y15d{bottom:337.530000px;}
.y1d{bottom:339.915000px;}
.y9c{bottom:340.410000px;}
.y1a{bottom:343.110000px;}
.ycc{bottom:346.530000px;}
.y6d{bottom:346.890000px;}
.y1c{bottom:357.195000px;}
.y15c{bottom:358.410000px;}
.y9b{bottom:367.410000px;}
.y6c{bottom:370.290000px;}
.y1b{bottom:372.135000px;}
.ycb{bottom:373.530000px;}
.y15b{bottom:374.790000px;}
.y9a{bottom:385.590000px;}
.y6b{bottom:389.370000px;}
.y15a{bottom:395.670000px;}
.yca{bottom:398.010000px;}
.y99{bottom:403.770000px;}
.y6a{bottom:408.315000px;}
.y159{bottom:412.095000px;}
.yc9{bottom:416.235000px;}
.y98{bottom:421.995000px;}
.y69{bottom:427.395000px;}
.y158{bottom:432.975000px;}
.yc8{bottom:434.415000px;}
.y97{bottom:439.995000px;}
.y68{bottom:446.295000px;}
.y157{bottom:449.355000px;}
.yc7{bottom:452.415000px;}
.y96{bottom:458.175000px;}
.y67{bottom:465.375000px;}
.y156{bottom:470.235000px;}
.yc6{bottom:470.595000px;}
.y95{bottom:476.175000px;}
.y66{bottom:484.275000px;}
.y155{bottom:486.615000px;}
.yc5{bottom:488.595000px;}
.y94{bottom:494.355000px;}
.y65{bottom:503.175000px;}
.yc4{bottom:506.775000px;}
.y154{bottom:507.495000px;}
.y93{bottom:518.835000px;}
.y64{bottom:522.255000px;}
.ye8{bottom:522.435000px;}
.y153{bottom:523.875000px;}
.yc3{bottom:524.955000px;}
.y92{bottom:536.835000px;}
.ye7{bottom:540.615000px;}
.y63{bottom:541.155000px;}
.yc2{bottom:543.675000px;}
.y152{bottom:544.755000px;}
.y91{bottom:555.015000px;}
.ye6{bottom:558.615000px;}
.y62{bottom:560.235000px;}
.y151{bottom:561.135000px;}
.yc1{bottom:562.575000px;}
.y11a{bottom:565.275000px;}
.y90{bottom:573.195000px;}
.yfc{bottom:576.075000px;}
.ye5{bottom:576.795000px;}
.yc0{bottom:580.755000px;}
.y150{bottom:582.015000px;}
.y61{bottom:583.455000px;}
.y8f{bottom:591.195000px;}
.yfb{bottom:594.255000px;}
.ye4{bottom:594.975000px;}
.y14f{bottom:598.395000px;}
.ybf{bottom:598.755000px;}
.y119{bottom:601.635000px;}
.y60{bottom:602.535000px;}
.y8e{bottom:609.375000px;}
.y12{bottom:610.095000px;}
.yfa{bottom:612.255000px;}
.ybe{bottom:616.935000px;}
.y14e{bottom:619.275000px;}
.y118{bottom:619.635000px;}
.y5f{bottom:621.615000px;}
.ye3{bottom:622.155000px;}
.y8d{bottom:627.555000px;}
.yf9{bottom:630.435000px;}
.ybd{bottom:635.115000px;}
.y14d{bottom:635.655000px;}
.y117{bottom:637.815000px;}
.y5e{bottom:640.515000px;}
.y8b{bottom:646.275000px;}
.yf8{bottom:648.615000px;}
.ye2{bottom:649.875000px;}
.ybc{bottom:654.045000px;}
.y116{bottom:656.025000px;}
.y14c{bottom:656.565000px;}
.y5d{bottom:659.625000px;}
.ybb{bottom:672.765000px;}
.y14b{bottom:673.125000px;}
.ye1{bottom:673.665000px;}
.y115{bottom:674.025000px;}
.yf7{bottom:675.825000px;}
.y8a{bottom:677.625000px;}
.y5c{bottom:682.845000px;}
.y14a{bottom:689.505000px;}
.yba{bottom:690.945000px;}
.y114{bottom:701.205000px;}
.y5b{bottom:701.925000px;}
.yf6{bottom:703.725000px;}
.y89{bottom:704.625000px;}
.yb9{bottom:709.125000px;}
.y149{bottom:710.385000px;}
.y5a{bottom:721.005000px;}
.y10{bottom:721.725000px;}
.y88{bottom:722.805000px;}
.y148{bottom:726.765000px;}
.yb8{bottom:727.845000px;}
.y113{bottom:729.105000px;}
.yf5{bottom:731.625000px;}
.y59{bottom:739.905000px;}
.y87{bottom:740.985000px;}
.yb7{bottom:746.745000px;}
.y147{bottom:747.645000px;}
.y112{bottom:752.685000px;}
.y120{bottom:752.940000px;}
.yf4{bottom:755.385000px;}
.y58{bottom:758.985000px;}
.y86{bottom:759.165000px;}
.yb6{bottom:764.925000px;}
.yf{bottom:766.185000px;}
.y146{bottom:768.525000px;}
.y85{bottom:777.165000px;}
.y57{bottom:777.885000px;}
.yb5{bottom:782.925000px;}
.ye{bottom:783.465000px;}
.y145{bottom:784.905000px;}
.y84{bottom:795.345000px;}
.y56{bottom:796.965000px;}
.yd{bottom:800.745000px;}
.yb4{bottom:801.105000px;}
.y144{bottom:805.785000px;}
.y83{bottom:813.345000px;}
.y55{bottom:815.865000px;}
.yc{bottom:818.025000px;}
.yb3{bottom:820.005000px;}
.y143{bottom:822.165000px;}
.y54{bottom:834.765000px;}
.y142{bottom:838.545000px;}
.yb2{bottom:838.905000px;}
.yb{bottom:840.345000px;}
.y82{bottom:840.525000px;}
.y53{bottom:853.845000px;}
.yb1{bottom:856.905000px;}
.ya{bottom:857.625000px;}
.y141{bottom:859.425000px;}
.y81{bottom:868.605000px;}
.y9{bottom:874.905000px;}
.yb0{bottom:875.085000px;}
.y140{bottom:875.805000px;}
.y52{bottom:877.065000px;}
.yaf{bottom:893.085000px;}
.y51{bottom:896.325000px;}
.y13f{bottom:896.685000px;}
.y8{bottom:905.730000px;}
.yae{bottom:911.310000px;}
.y13e{bottom:913.110000px;}
.y80{bottom:914.550000px;}
.y50{bottom:915.270000px;}
.ye0{bottom:920.850000px;}
.yad{bottom:929.490000px;}
.y7f{bottom:932.730000px;}
.y4f{bottom:934.170000px;}
.ydf{bottom:940.110000px;}
.y7{bottom:944.430000px;}
.y13d{bottom:947.850000px;}
.yac{bottom:948.210000px;}
.y7e{bottom:950.910000px;}
.y4e{bottom:957.570000px;}
.yde{bottom:959.550000px;}
.y6{bottom:965.130000px;}
.y7d{bottom:968.910000px;}
.y13c{bottom:975.930000px;}
.y4d{bottom:976.650000px;}
.ydd{bottom:978.810000px;}
.yab{bottom:979.530000px;}
.y7c{bottom:987.090000px;}
.y4c{bottom:995.730000px;}
.ydb{bottom:998.070000px;}
.y5{bottom:1003.830000px;}
.y7b{bottom:1005.270000px;}
.y111{bottom:1005.990000px;}
.yaa{bottom:1006.530000px;}
.y4b{bottom:1014.630000px;}
.yf3{bottom:1016.070000px;}
.yd9{bottom:1018.230000px;}
.y7a{bottom:1023.270000px;}
.y110{bottom:1024.170000px;}
.y13b{bottom:1031.910000px;}
.y4a{bottom:1033.530000px;}
.ya9{bottom:1033.710000px;}
.yf2{bottom:1034.250000px;}
.y4{bottom:1038.570000px;}
.y79{bottom:1041.450000px;}
.y10f{bottom:1042.350000px;}
.y13a{bottom:1050.810000px;}
.yd8{bottom:1052.070000px;}
.y49{bottom:1056.930000px;}
.yf1{bottom:1058.010000px;}
.y78{bottom:1059.450000px;}
.y10e{bottom:1060.350000px;}
.ya8{bottom:1060.890000px;}
.yf0{bottom:1065.930000px;}
.y139{bottom:1068.810000px;}
.y48{bottom:1076.010000px;}
.y77{bottom:1077.630000px;}
.yd7{bottom:1079.250000px;}
.y138{bottom:1086.990000px;}
.y10d{bottom:1087.530000px;}
.ya7{bottom:1087.890000px;}
.y47{bottom:1095.090000px;}
.yef{bottom:1097.250000px;}
.yd6{bottom:1097.430000px;}
.y76{bottom:1104.810000px;}
.y46{bottom:1113.990000px;}
.y137{bottom:1114.710000px;}
.ya6{bottom:1115.430000px;}
.y75{bottom:1132.710000px;}
.y45{bottom:1132.890000px;}
.ya5{bottom:1133.610000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h15{height:18.000000px;}
.h16{height:18.180000px;}
.h14{height:18.216000px;}
.h18{height:19.260000px;}
.h19{height:19.440000px;}
.h21{height:34.200000px;}
.h6{height:38.158594px;}
.h9{height:40.500000px;}
.h13{height:52.872188px;}
.h24{height:55.796836px;}
.h23{height:55.824609px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.h8{height:60.226875px;}
.h12{height:62.184375px;}
.h17{height:63.855000px;}
.h2{height:65.010937px;}
.h1d{height:65.884219px;}
.h1e{height:66.027445px;}
.ha{height:66.757500px;}
.h22{height:68.084282px;}
.h10{height:70.664062px;}
.h4{height:72.562500px;}
.h1a{height:75.668203px;}
.h5{height:84.898125px;}
.h1b{height:93.864375px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h11{height:153.341016px;}
.h1f{height:240.660000px;}
.h20{height:260.820000px;}
.hf{height:264.630000px;}
.h1c{height:289.620000px;}
.he{height:376.455000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.wf{width:82.260000px;}
.wd{width:86.220000px;}
.we{width:88.236000px;}
.wc{width:125.316000px;}
.w9{width:132.156000px;}
.w14{width:214.740000px;}
.w3{width:237.990000px;}
.w13{width:253.800000px;}
.w6{width:338.610000px;}
.w7{width:338.655000px;}
.w5{width:406.875000px;}
.w8{width:455.475000px;}
.w11{width:476.640000px;}
.wa{width:521.385000px;}
.w12{width:531.000000px;}
.w10{width:580.500000px;}
.wb{width:587.625000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x17{left:10.080000px;}
.x3a{left:17.970000px;}
.x1b{left:19.440000px;}
.x1a{left:21.420000px;}
.x1d{left:23.400000px;}
.x1c{left:25.380000px;}
.x1f{left:27.360000px;}
.x1e{left:29.340000px;}
.x21{left:31.320000px;}
.x20{left:33.300000px;}
.x30{left:34.560000px;}
.x38{left:38.010000px;}
.x3e{left:39.450000px;}
.x2e{left:43.530000px;}
.x37{left:46.365000px;}
.x3d{left:47.805000px;}
.x2d{left:51.915000px;}
.x2c{left:60.270000px;}
.x2f{left:69.300000px;}
.x5{left:108.035987px;}
.x39{left:119.880000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x42{left:135.035987px;}
.x12{left:152.850000px;}
.x2b{left:156.240000px;}
.x35{left:160.229987px;}
.xc{left:172.289987px;}
.x3c{left:181.080000px;}
.xa{left:185.250000px;}
.x43{left:189.029987px;}
.xe{left:199.829987px;}
.x36{left:208.080000px;}
.x14{left:221.069987px;}
.x10{left:226.829987px;}
.x3b{left:237.090000px;}
.x15{left:255.630000px;}
.x31{left:259.950000px;}
.x41{left:265.755000px;}
.x26{left:270.929987px;}
.x33{left:276.329987px;}
.x3{left:314.354987px;}
.x2a{left:339.374987px;}
.x11{left:342.614987px;}
.x3f{left:348.660000px;}
.x28{left:356.654987px;}
.x8{left:360.795000px;}
.x25{left:371.594987px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x16{left:380.955000px;}
.x23{left:385.274987px;}
.xf{left:446.655000px;}
.x18{left:467.175000px;}
.x40{left:497.340000px;}
.x19{left:555.405000px;}
.x13{left:608.325000px;}
.x24{left:626.684987px;}
.x22{left:638.204987px;}
.x27{left:647.924987px;}
.x32{left:685.229987px;}
.x34{left:712.229987px;}
.x29{left:736.889987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.120000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v7{vertical-align:28.160000pt;}
.v6{vertical-align:33.280000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls11{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.297067pt;}
.lsc{letter-spacing:-0.276267pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.183467pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.lsa{letter-spacing:0.061333pt;}
.ls12{letter-spacing:0.148267pt;}
.lsb{letter-spacing:0.153600pt;}
.ls17{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.296960pt;}
.lsd{letter-spacing:0.297067pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.348160pt;}
.ls8{letter-spacing:0.409600pt;}
.ls13{letter-spacing:6.613333pt;}
.lse{letter-spacing:16.168960pt;}
.ls16{letter-spacing:128.250027pt;}
.ls14{letter-spacing:144.890027pt;}
.ws16{word-spacing:-50.560000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws14{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.377067pt;}
.ws11{word-spacing:-14.228267pt;}
.ws7{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.782933pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.335808pt;}
.ws2{word-spacing:-13.327360pt;}
.ws13{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.640000pt;}
.wsa{word-spacing:-12.544000pt;}
.ws9{word-spacing:-12.451733pt;}
.wsb{word-spacing:-12.114133pt;}
.wsc{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:5.683200pt;}
.ws12{word-spacing:340.881920pt;}
.ws10{word-spacing:456.838827pt;}
._18{margin-left:-5.760000pt;}
._17{margin-left:-3.822720pt;}
._e{margin-left:-2.180053pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.064960pt;}
._2{width:2.719573pt;}
._8{width:3.822080pt;}
._9{width:4.727680pt;}
._6{width:6.159360pt;}
._7{width:7.070080pt;}
._d{width:8.109440pt;}
._5{width:9.200000pt;}
._4{width:10.143360pt;}
._13{width:11.097600pt;}
._15{width:12.336640pt;}
._14{width:13.365760pt;}
._16{width:15.633493pt;}
._10{width:16.783360pt;}
._f{width:18.435200pt;}
._b{width:19.492480pt;}
._a{width:21.141760pt;}
._c{width:22.735360pt;}
._11{width:25.377280pt;}
._12{width:26.378240pt;}
._3{width:33.837440pt;}
._1c{width:67.924053pt;}
._19{width:177.920000pt;}
._1a{width:506.757973pt;}
._1b{width:514.681173pt;}
.fs7{font-size:16.000000pt;}
.fs5{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs4{font-size:42.880000pt;}
.fsd{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs8{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:2.880000pt;}
.y8c{bottom:3.040000pt;}
.yda{bottom:4.000000pt;}
.ydc{bottom:4.160000pt;}
.y135{bottom:5.786667pt;}
.y12b{bottom:8.386667pt;}
.y133{bottom:10.080000pt;}
.y11{bottom:12.800000pt;}
.y18{bottom:18.880000pt;}
.y10c{bottom:20.386667pt;}
.y2f{bottom:26.080000pt;}
.y129{bottom:30.306667pt;}
.y17{bottom:34.240000pt;}
.y12d{bottom:37.146667pt;}
.y2e{bottom:41.440000pt;}
.y10a{bottom:42.306667pt;}
.y121{bottom:49.373333pt;}
.y16{bottom:49.626667pt;}
.y134{bottom:53.760000pt;}
.y2d{bottom:56.840000pt;}
.y104{bottom:61.373333pt;}
.y15{bottom:64.826667pt;}
.y122{bottom:70.266667pt;}
.y2c{bottom:72.200000pt;}
.y12a{bottom:76.866667pt;}
.y12e{bottom:78.400000pt;}
.y14{bottom:80.186667pt;}
.y19{bottom:84.826667pt;}
.y2b{bottom:87.560000pt;}
.y123{bottom:91.173333pt;}
.y10b{bottom:91.706667pt;}
.y13{bottom:93.466667pt;}
.y105{bottom:96.613333pt;}
.y2a{bottom:102.920000pt;}
.y124{bottom:112.026667pt;}
.y29{bottom:118.280000pt;}
.y12f{bottom:119.680000pt;}
.y106{bottom:131.840000pt;}
.y125{bottom:132.933333pt;}
.y28{bottom:133.480000pt;}
.y102{bottom:140.800000pt;}
.y37{bottom:141.640000pt;}
.yd5{bottom:147.066667pt;}
.y41{bottom:148.026667pt;}
.y27{bottom:148.840000pt;}
.yee{bottom:153.146667pt;}
.y126{bottom:153.826667pt;}
.y101{bottom:156.826667pt;}
.y36{bottom:157.000000pt;}
.y130{bottom:160.933333pt;}
.yd4{bottom:163.226667pt;}
.y26{bottom:164.200000pt;}
.y165{bottom:164.506667pt;}
.y40{bottom:164.826667pt;}
.y11f{bottom:165.146667pt;}
.ya4{bottom:165.786667pt;}
.y107{bottom:167.106667pt;}
.yed{bottom:169.146667pt;}
.y35{bottom:172.200000pt;}
.y100{bottom:172.986667pt;}
.y127{bottom:174.720000pt;}
.y25{bottom:179.560000pt;}
.y11e{bottom:181.306667pt;}
.y3f{bottom:181.626667pt;}
.ya3{bottom:181.946667pt;}
.yec{bottom:185.306667pt;}
.y164{bottom:186.106667pt;}
.yd3{bottom:187.226667pt;}
.y34{bottom:187.560000pt;}
.y74{bottom:190.106667pt;}
.y24{bottom:194.920000pt;}
.y128{bottom:195.613333pt;}
.yff{bottom:197.146667pt;}
.y11d{bottom:197.466667pt;}
.ya2{bottom:197.946667pt;}
.y3e{bottom:198.586667pt;}
.y163{bottom:200.666667pt;}
.y131{bottom:202.213333pt;}
.y108{bottom:202.333333pt;}
.y33{bottom:202.920000pt;}
.y73{bottom:207.226667pt;}
.y136{bottom:209.093333pt;}
.yeb{bottom:209.466667pt;}
.y23{bottom:210.280000pt;}
.yd2{bottom:211.386667pt;}
.ya1{bottom:214.106667pt;}
.y3d{bottom:215.386667pt;}
.y32{bottom:218.280000pt;}
.y162{bottom:219.226667pt;}
.y11c{bottom:221.626667pt;}
.yfe{bottom:221.946667pt;}
.y38{bottom:222.920000pt;}
.y72{bottom:224.026667pt;}
.y22{bottom:225.480000pt;}
.yd1{bottom:227.546667pt;}
.ya0{bottom:230.266667pt;}
.y31{bottom:231.560000pt;}
.y3c{bottom:232.346667pt;}
.y161{bottom:233.786667pt;}
.yea{bottom:234.266667pt;}
.y109{bottom:237.600000pt;}
.y21{bottom:240.840000pt;}
.y71{bottom:240.986667pt;}
.yfd{bottom:242.906667pt;}
.y103{bottom:243.680000pt;}
.yd0{bottom:243.706667pt;}
.y9f{bottom:246.266667pt;}
.y3b{bottom:249.146667pt;}
.y160{bottom:252.346667pt;}
.ye9{bottom:255.226667pt;}
.y20{bottom:256.200000pt;}
.y70{bottom:257.786667pt;}
.y11b{bottom:259.386667pt;}
.y12c{bottom:259.680000pt;}
.ycf{bottom:259.706667pt;}
.y9e{bottom:262.426667pt;}
.y15f{bottom:266.906667pt;}
.y132{bottom:267.680000pt;}
.y1f{bottom:271.560000pt;}
.y3a{bottom:273.786667pt;}
.y6f{bottom:274.586667pt;}
.yce{bottom:275.866667pt;}
.y9d{bottom:278.586667pt;}
.y15e{bottom:285.466667pt;}
.y1e{bottom:286.946667pt;}
.y39{bottom:290.426667pt;}
.y6e{bottom:291.546667pt;}
.ycd{bottom:291.866667pt;}
.y15d{bottom:300.026667pt;}
.y1d{bottom:302.146667pt;}
.y9c{bottom:302.586667pt;}
.y1a{bottom:304.986667pt;}
.ycc{bottom:308.026667pt;}
.y6d{bottom:308.346667pt;}
.y1c{bottom:317.506667pt;}
.y15c{bottom:318.586667pt;}
.y9b{bottom:326.586667pt;}
.y6c{bottom:329.146667pt;}
.y1b{bottom:330.786667pt;}
.ycb{bottom:332.026667pt;}
.y15b{bottom:333.146667pt;}
.y9a{bottom:342.746667pt;}
.y6b{bottom:346.106667pt;}
.y15a{bottom:351.706667pt;}
.yca{bottom:353.786667pt;}
.y99{bottom:358.906667pt;}
.y6a{bottom:362.946667pt;}
.y159{bottom:366.306667pt;}
.yc9{bottom:369.986667pt;}
.y98{bottom:375.106667pt;}
.y69{bottom:379.906667pt;}
.y158{bottom:384.866667pt;}
.yc8{bottom:386.146667pt;}
.y97{bottom:391.106667pt;}
.y68{bottom:396.706667pt;}
.y157{bottom:399.426667pt;}
.yc7{bottom:402.146667pt;}
.y96{bottom:407.266667pt;}
.y67{bottom:413.666667pt;}
.y156{bottom:417.986667pt;}
.yc6{bottom:418.306667pt;}
.y95{bottom:423.266667pt;}
.y66{bottom:430.466667pt;}
.y155{bottom:432.546667pt;}
.yc5{bottom:434.306667pt;}
.y94{bottom:439.426667pt;}
.y65{bottom:447.266667pt;}
.yc4{bottom:450.466667pt;}
.y154{bottom:451.106667pt;}
.y93{bottom:461.186667pt;}
.y64{bottom:464.226667pt;}
.ye8{bottom:464.386667pt;}
.y153{bottom:465.666667pt;}
.yc3{bottom:466.626667pt;}
.y92{bottom:477.186667pt;}
.ye7{bottom:480.546667pt;}
.y63{bottom:481.026667pt;}
.yc2{bottom:483.266667pt;}
.y152{bottom:484.226667pt;}
.y91{bottom:493.346667pt;}
.ye6{bottom:496.546667pt;}
.y62{bottom:497.986667pt;}
.y151{bottom:498.786667pt;}
.yc1{bottom:500.066667pt;}
.y11a{bottom:502.466667pt;}
.y90{bottom:509.506667pt;}
.yfc{bottom:512.066667pt;}
.ye5{bottom:512.706667pt;}
.yc0{bottom:516.226667pt;}
.y150{bottom:517.346667pt;}
.y61{bottom:518.626667pt;}
.y8f{bottom:525.506667pt;}
.yfb{bottom:528.226667pt;}
.ye4{bottom:528.866667pt;}
.y14f{bottom:531.906667pt;}
.ybf{bottom:532.226667pt;}
.y119{bottom:534.786667pt;}
.y60{bottom:535.586667pt;}
.y8e{bottom:541.666667pt;}
.y12{bottom:542.306667pt;}
.yfa{bottom:544.226667pt;}
.ybe{bottom:548.386667pt;}
.y14e{bottom:550.466667pt;}
.y118{bottom:550.786667pt;}
.y5f{bottom:552.546667pt;}
.ye3{bottom:553.026667pt;}
.y8d{bottom:557.826667pt;}
.yf9{bottom:560.386667pt;}
.ybd{bottom:564.546667pt;}
.y14d{bottom:565.026667pt;}
.y117{bottom:566.946667pt;}
.y5e{bottom:569.346667pt;}
.y8b{bottom:574.466667pt;}
.yf8{bottom:576.546667pt;}
.ye2{bottom:577.666667pt;}
.ybc{bottom:581.373333pt;}
.y116{bottom:583.133333pt;}
.y14c{bottom:583.613333pt;}
.y5d{bottom:586.333333pt;}
.ybb{bottom:598.013333pt;}
.y14b{bottom:598.333333pt;}
.ye1{bottom:598.813333pt;}
.y115{bottom:599.133333pt;}
.yf7{bottom:600.733333pt;}
.y8a{bottom:602.333333pt;}
.y5c{bottom:606.973333pt;}
.y14a{bottom:612.893333pt;}
.yba{bottom:614.173333pt;}
.y114{bottom:623.293333pt;}
.y5b{bottom:623.933333pt;}
.yf6{bottom:625.533333pt;}
.y89{bottom:626.333333pt;}
.yb9{bottom:630.333333pt;}
.y149{bottom:631.453333pt;}
.y5a{bottom:640.893333pt;}
.y10{bottom:641.533333pt;}
.y88{bottom:642.493333pt;}
.y148{bottom:646.013333pt;}
.yb8{bottom:646.973333pt;}
.y113{bottom:648.093333pt;}
.yf5{bottom:650.333333pt;}
.y59{bottom:657.693333pt;}
.y87{bottom:658.653333pt;}
.yb7{bottom:663.773333pt;}
.y147{bottom:664.573333pt;}
.y112{bottom:669.053333pt;}
.y120{bottom:669.280000pt;}
.yf4{bottom:671.453333pt;}
.y58{bottom:674.653333pt;}
.y86{bottom:674.813333pt;}
.yb6{bottom:679.933333pt;}
.yf{bottom:681.053333pt;}
.y146{bottom:683.133333pt;}
.y85{bottom:690.813333pt;}
.y57{bottom:691.453333pt;}
.yb5{bottom:695.933333pt;}
.ye{bottom:696.413333pt;}
.y145{bottom:697.693333pt;}
.y84{bottom:706.973333pt;}
.y56{bottom:708.413333pt;}
.yd{bottom:711.773333pt;}
.yb4{bottom:712.093333pt;}
.y144{bottom:716.253333pt;}
.y83{bottom:722.973333pt;}
.y55{bottom:725.213333pt;}
.yc{bottom:727.133333pt;}
.yb3{bottom:728.893333pt;}
.y143{bottom:730.813333pt;}
.y54{bottom:742.013333pt;}
.y142{bottom:745.373333pt;}
.yb2{bottom:745.693333pt;}
.yb{bottom:746.973333pt;}
.y82{bottom:747.133333pt;}
.y53{bottom:758.973333pt;}
.yb1{bottom:761.693333pt;}
.ya{bottom:762.333333pt;}
.y141{bottom:763.933333pt;}
.y81{bottom:772.093333pt;}
.y9{bottom:777.693333pt;}
.yb0{bottom:777.853333pt;}
.y140{bottom:778.493333pt;}
.y52{bottom:779.613333pt;}
.yaf{bottom:793.853333pt;}
.y51{bottom:796.733333pt;}
.y13f{bottom:797.053333pt;}
.y8{bottom:805.093333pt;}
.yae{bottom:810.053333pt;}
.y13e{bottom:811.653333pt;}
.y80{bottom:812.933333pt;}
.y50{bottom:813.573333pt;}
.ye0{bottom:818.533333pt;}
.yad{bottom:826.213333pt;}
.y7f{bottom:829.093333pt;}
.y4f{bottom:830.373333pt;}
.ydf{bottom:835.653333pt;}
.y7{bottom:839.493333pt;}
.y13d{bottom:842.533333pt;}
.yac{bottom:842.853333pt;}
.y7e{bottom:845.253333pt;}
.y4e{bottom:851.173333pt;}
.yde{bottom:852.933333pt;}
.y6{bottom:857.893333pt;}
.y7d{bottom:861.253333pt;}
.y13c{bottom:867.493333pt;}
.y4d{bottom:868.133333pt;}
.ydd{bottom:870.053333pt;}
.yab{bottom:870.693333pt;}
.y7c{bottom:877.413333pt;}
.y4c{bottom:885.093333pt;}
.ydb{bottom:887.173333pt;}
.y5{bottom:892.293333pt;}
.y7b{bottom:893.573333pt;}
.y111{bottom:894.213333pt;}
.yaa{bottom:894.693333pt;}
.y4b{bottom:901.893333pt;}
.yf3{bottom:903.173333pt;}
.yd9{bottom:905.093333pt;}
.y7a{bottom:909.573333pt;}
.y110{bottom:910.373333pt;}
.y13b{bottom:917.253333pt;}
.y4a{bottom:918.693333pt;}
.ya9{bottom:918.853333pt;}
.yf2{bottom:919.333333pt;}
.y4{bottom:923.173333pt;}
.y79{bottom:925.733333pt;}
.y10f{bottom:926.533333pt;}
.y13a{bottom:934.053333pt;}
.yd8{bottom:935.173333pt;}
.y49{bottom:939.493333pt;}
.yf1{bottom:940.453333pt;}
.y78{bottom:941.733333pt;}
.y10e{bottom:942.533333pt;}
.ya8{bottom:943.013333pt;}
.yf0{bottom:947.493333pt;}
.y139{bottom:950.053333pt;}
.y48{bottom:956.453333pt;}
.y77{bottom:957.893333pt;}
.yd7{bottom:959.333333pt;}
.y138{bottom:966.213333pt;}
.y10d{bottom:966.693333pt;}
.ya7{bottom:967.013333pt;}
.y47{bottom:973.413333pt;}
.yef{bottom:975.333333pt;}
.yd6{bottom:975.493333pt;}
.y76{bottom:982.053333pt;}
.y46{bottom:990.213333pt;}
.y137{bottom:990.853333pt;}
.ya6{bottom:991.493333pt;}
.y75{bottom:1006.853333pt;}
.y45{bottom:1007.013333pt;}
.ya5{bottom:1007.653333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h15{height:16.000000pt;}
.h16{height:16.160000pt;}
.h14{height:16.192000pt;}
.h18{height:17.120000pt;}
.h19{height:17.280000pt;}
.h21{height:30.400000pt;}
.h6{height:33.918750pt;}
.h9{height:36.000000pt;}
.h13{height:46.997500pt;}
.h24{height:49.597187pt;}
.h23{height:49.621875pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.h8{height:53.535000pt;}
.h12{height:55.275000pt;}
.h17{height:56.760000pt;}
.h2{height:57.787500pt;}
.h1d{height:58.563750pt;}
.h1e{height:58.691063pt;}
.ha{height:59.340000pt;}
.h22{height:60.519362pt;}
.h10{height:62.812500pt;}
.h4{height:64.500000pt;}
.h1a{height:67.260625pt;}
.h5{height:75.465000pt;}
.h1b{height:83.435000pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h11{height:136.303125pt;}
.h1f{height:213.920000pt;}
.h20{height:231.840000pt;}
.hf{height:235.226667pt;}
.h1c{height:257.440000pt;}
.he{height:334.626667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.wf{width:73.120000pt;}
.wd{width:76.640000pt;}
.we{width:78.432000pt;}
.wc{width:111.392000pt;}
.w9{width:117.472000pt;}
.w14{width:190.880000pt;}
.w3{width:211.546667pt;}
.w13{width:225.600000pt;}
.w6{width:300.986667pt;}
.w7{width:301.026667pt;}
.w5{width:361.666667pt;}
.w8{width:404.866667pt;}
.w11{width:423.680000pt;}
.wa{width:463.453333pt;}
.w12{width:472.000000pt;}
.w10{width:516.000000pt;}
.wb{width:522.333333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x17{left:8.960000pt;}
.x3a{left:15.973333pt;}
.x1b{left:17.280000pt;}
.x1a{left:19.040000pt;}
.x1d{left:20.800000pt;}
.x1c{left:22.560000pt;}
.x1f{left:24.320000pt;}
.x1e{left:26.080000pt;}
.x21{left:27.840000pt;}
.x20{left:29.600000pt;}
.x30{left:30.720000pt;}
.x38{left:33.786667pt;}
.x3e{left:35.066667pt;}
.x2e{left:38.693333pt;}
.x37{left:41.213333pt;}
.x3d{left:42.493333pt;}
.x2d{left:46.146667pt;}
.x2c{left:53.573333pt;}
.x2f{left:61.600000pt;}
.x5{left:96.031988pt;}
.x39{left:106.560000pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x42{left:120.031988pt;}
.x12{left:135.866667pt;}
.x2b{left:138.880000pt;}
.x35{left:142.426655pt;}
.xc{left:153.146655pt;}
.x3c{left:160.960000pt;}
.xa{left:164.666667pt;}
.x43{left:168.026655pt;}
.xe{left:177.626655pt;}
.x36{left:184.960000pt;}
.x14{left:196.506655pt;}
.x10{left:201.626655pt;}
.x3b{left:210.746667pt;}
.x15{left:227.226667pt;}
.x31{left:231.066667pt;}
.x41{left:236.226667pt;}
.x26{left:240.826655pt;}
.x33{left:245.626655pt;}
.x3{left:279.426655pt;}
.x2a{left:301.666655pt;}
.x11{left:304.546655pt;}
.x3f{left:309.920000pt;}
.x28{left:317.026655pt;}
.x8{left:320.706667pt;}
.x25{left:330.306655pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x16{left:338.626667pt;}
.x23{left:342.466655pt;}
.xf{left:397.026667pt;}
.x18{left:415.266667pt;}
.x40{left:442.080000pt;}
.x19{left:493.693333pt;}
.x13{left:540.733333pt;}
.x24{left:557.053322pt;}
.x22{left:567.293322pt;}
.x27{left:575.933322pt;}
.x32{left:609.093322pt;}
.x34{left:633.093322pt;}
.x29{left:655.013322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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