
    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_306a3379c7dc2ea63eac80b3.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_9a3a6ecc052c48560bfc22f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_d2524f4fe5fa04f1bac36b88.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_5ec8e36726203651eec94f24.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_e084249dd7928ba8be6c2f9f.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_fe71954134b1a85241d3633b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.060059;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_7618d5867ded8b47eb47916d.woff2')format("woff");}.ff8{font-family:ff8;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;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.216600px;}
.ls11{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.037800px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls3{letter-spacing:0.065520px;}
.ls10{letter-spacing:0.069600px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls12{letter-spacing:0.098400px;}
.ls13{letter-spacing:0.115800px;}
.ls17{letter-spacing:0.127200px;}
.lsd{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.173400px;}
.lse{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls19{letter-spacing:47.726640px;}
.ls18{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;}
.wsa{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.369800px;}
.ws10{word-spacing:-13.353600px;}
.wsd{word-spacing:-13.342200px;}
.wsb{word-spacing:-13.324800px;}
.wsc{word-spacing:-13.296000px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.188600px;}
.ws8{word-spacing:-13.039800px;}
.wsf{word-spacing:-13.009800px;}
.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;}
._9{margin-left:-2.922600px;}
._0{margin-left:-1.110000px;}
._2{width:1.005973px;}
._5{width:2.474392px;}
._8{width:3.476146px;}
._4{width:5.197198px;}
._3{width:6.252600px;}
._6{width:7.875600px;}
._7{width:8.922002px;}
._a{width:10.881600px;}
._d{width:12.135480px;}
._11{width:14.729400px;}
._10{width:16.472880px;}
._f{width:17.703120px;}
._e{width:18.877680px;}
._12{width:20.336627px;}
._13{width:21.622997px;}
._1b{width:23.025960px;}
._b{width:24.769200px;}
._c{width:25.950555px;}
._1{width:27.345048px;}
._1c{width:30.841560px;}
._1e{width:47.254320px;}
._1f{width:48.683640px;}
._1d{width:81.973440px;}
._20{width:112.388040px;}
._19{width:135.811080px;}
._16{width:152.825040px;}
._17{width:165.269880px;}
._21{width:173.650320px;}
._22{width:174.845640px;}
._18{width:178.857000px;}
._14{width:179.879040px;}
._15{width:181.802880px;}
._1a{width:208.496160px;}
.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;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.830000px;}
.y43{bottom:7.920000px;}
.ycb{bottom:7.950000px;}
.yb5{bottom:13.140000px;}
.ya4{bottom:17.550000px;}
.y7b{bottom:17.640000px;}
.y76{bottom:25.470000px;}
.y5c{bottom:29.880000px;}
.y56{bottom:29.910000px;}
.y4b{bottom:29.970000px;}
.y77{bottom:35.190000px;}
.y90{bottom:35.220000px;}
.y95{bottom:35.280000px;}
.y4a{bottom:52.020000px;}
.y55{bottom:52.050000px;}
.y4e{bottom:52.110000px;}
.y74{bottom:52.830000px;}
.y2{bottom:73.380000px;}
.y49{bottom:74.070000px;}
.y54{bottom:74.100000px;}
.y5a{bottom:74.160000px;}
.y28{bottom:74.190000px;}
.y48{bottom:96.210000px;}
.y53{bottom:96.240000px;}
.y1{bottom:101.640000px;}
.yd5{bottom:110.460000px;}
.y50{bottom:116.940000px;}
.y47{bottom:118.290000px;}
.y59{bottom:118.350000px;}
.yb1{bottom:119.460000px;}
.y69{bottom:119.730000px;}
.y12a{bottom:121.170000px;}
.y105{bottom:135.390000px;}
.yd6{bottom:137.820000px;}
.y129{bottom:138.720000px;}
.y58{bottom:140.400000px;}
.y46{bottom:140.430000px;}
.yb2{bottom:146.820000px;}
.y104{bottom:152.940000px;}
.y128{bottom:156.360000px;}
.y45{bottom:162.480000px;}
.yd3{bottom:165.090000px;}
.yaf{bottom:174.090000px;}
.y26{bottom:176.790000px;}
.y127{bottom:182.910000px;}
.y8c{bottom:185.790000px;}
.y103{bottom:188.580000px;}
.y68{bottom:191.190000px;}
.yd4{bottom:192.450000px;}
.y25{bottom:194.340000px;}
.y126{bottom:200.550000px;}
.yb0{bottom:201.450000px;}
.y102{bottom:206.130000px;}
.y4f{bottom:210.540000px;}
.y24{bottom:211.980000px;}
.y125{bottom:218.100000px;}
.yd2{bottom:219.810000px;}
.y8b{bottom:221.340000px;}
.y101{bottom:223.680000px;}
.yad{bottom:228.810000px;}
.y23{bottom:229.530000px;}
.y100{bottom:241.320000px;}
.y124{bottom:244.650000px;}
.y22{bottom:247.170000px;}
.yae{bottom:256.170000px;}
.y8a{bottom:256.890000px;}
.yff{bottom:258.870000px;}
.y123{bottom:262.290000px;}
.y67{bottom:262.740000px;}
.yd0{bottom:274.440000px;}
.yfe{bottom:276.510000px;}
.y122{bottom:279.840000px;}
.y4d{bottom:282.000000px;}
.y21{bottom:282.720000px;}
.yab{bottom:283.440000px;}
.y89{bottom:292.530000px;}
.yfd{bottom:294.060000px;}
.y20{bottom:300.270000px;}
.yd1{bottom:301.800000px;}
.y121{bottom:306.480000px;}
.yac{bottom:310.800000px;}
.yfc{bottom:311.610000px;}
.y1f{bottom:317.910000px;}
.y120{bottom:324.030000px;}
.y88{bottom:328.080000px;}
.yce{bottom:329.160000px;}
.yfb{bottom:329.250000px;}
.y66{bottom:334.200000px;}
.y1e{bottom:335.460000px;}
.ya9{bottom:338.160000px;}
.yfa{bottom:346.800000px;}
.y11f{bottom:350.580000px;}
.y1d{bottom:353.100000px;}
.y44{bottom:353.550000px;}
.ycf{bottom:356.520000px;}
.y87{bottom:363.720000px;}
.yf9{bottom:364.440000px;}
.yaa{bottom:365.520000px;}
.y11e{bottom:368.220000px;}
.y85{bottom:378.660000px;}
.y1c{bottom:380.010000px;}
.ycc{bottom:383.790000px;}
.ya7{bottom:392.790000px;}
.y11d{bottom:394.770000px;}
.yf8{bottom:399.990000px;}
.y65{bottom:405.750000px;}
.y86{bottom:406.020000px;}
.ycd{bottom:411.150000px;}
.y11c{bottom:412.410000px;}
.yf7{bottom:417.540000px;}
.ya8{bottom:420.150000px;}
.y1b{bottom:428.610000px;}
.y83{bottom:433.290000px;}
.yf6{bottom:435.180000px;}
.yc9{bottom:438.510000px;}
.y11b{bottom:438.960000px;}
.ya5{bottom:447.510000px;}
.y146{bottom:451.920000px;}
.yf5{bottom:452.730000px;}
.y11a{bottom:456.510000px;}
.y84{bottom:460.650000px;}
.y1a{bottom:465.600000px;}
.yca{bottom:465.780000px;}
.y145{bottom:469.470000px;}
.yf4{bottom:470.400000px;}
.y119{bottom:474.180000px;}
.ya6{bottom:474.810000px;}
.y64{bottom:477.240000px;}
.y19{bottom:483.180000px;}
.y144{bottom:487.140000px;}
.yf3{bottom:487.950000px;}
.y81{bottom:488.040000px;}
.yc7{bottom:493.170000px;}
.y18{bottom:500.820000px;}
.y118{bottom:501.090000px;}
.ya2{bottom:502.170000px;}
.yf2{bottom:505.500000px;}
.y143{bottom:513.690000px;}
.y82{bottom:515.310000px;}
.y17{bottom:518.370000px;}
.yc8{bottom:520.530000px;}
.y63{bottom:525.930000px;}
.ya3{bottom:529.530000px;}
.y142{bottom:531.330000px;}
.y42{bottom:535.470000px;}
.y16{bottom:535.920000px;}
.yf1{bottom:541.140000px;}
.y7f{bottom:542.670000px;}
.y141{bottom:548.880000px;}
.y117{bottom:549.330000px;}
.y15{bottom:553.560000px;}
.yf0{bottom:558.690000px;}
.y62{bottom:561.570000px;}
.yc6{bottom:569.220000px;}
.y80{bottom:570.030000px;}
.y14{bottom:571.110000px;}
.y140{bottom:575.430000px;}
.y116{bottom:576.240000px;}
.yef{bottom:576.330000px;}
.y61{bottom:579.120000px;}
.y41{bottom:584.160000px;}
.yc5{bottom:586.770000px;}
.y13{bottom:588.750000px;}
.y13f{bottom:593.070000px;}
.yee{bottom:593.880000px;}
.ya1{bottom:595.770000px;}
.y60{bottom:596.760000px;}
.y7d{bottom:597.390000px;}
.y12{bottom:606.300000px;}
.y13e{bottom:610.620000px;}
.y40{bottom:611.070000px;}
.yed{bottom:611.430000px;}
.y115{bottom:613.230000px;}
.ya0{bottom:613.410000px;}
.y5f{bottom:614.310000px;}
.yc4{bottom:622.410000px;}
.y11{bottom:623.850000px;}
.y7e{bottom:624.660000px;}
.yec{bottom:629.070000px;}
.y114{bottom:630.870000px;}
.y5e{bottom:631.860000px;}
.y13d{bottom:637.260000px;}
.y10{bottom:641.490000px;}
.yc2{bottom:646.350000px;}
.yeb{bottom:646.620000px;}
.y5d{bottom:646.890000px;}
.y9f{bottom:648.960000px;}
.y7a{bottom:652.020000px;}
.y13c{bottom:654.810000px;}
.y113{bottom:657.780000px;}
.yf{bottom:659.040000px;}
.y3f{bottom:659.400000px;}
.y9d{bottom:663.990000px;}
.y13b{bottom:672.360000px;}
.yc3{bottom:673.710000px;}
.ye{bottom:676.680000px;}
.y3e{bottom:676.950000px;}
.y7c{bottom:679.380000px;}
.yea{bottom:682.260000px;}
.y9e{bottom:691.260000px;}
.yd{bottom:694.230000px;}
.y3d{bottom:694.590000px;}
.y112{bottom:694.770000px;}
.y13a{bottom:699.000000px;}
.ye9{bottom:699.810000px;}
.yc0{bottom:701.070000px;}
.y78{bottom:706.740000px;}
.y3c{bottom:712.140000px;}
.y139{bottom:716.550000px;}
.ye8{bottom:717.360000px;}
.y9b{bottom:718.620000px;}
.yc{bottom:721.140000px;}
.y111{bottom:721.680000px;}
.yc1{bottom:728.340000px;}
.y3b{bottom:729.690000px;}
.y79{bottom:734.010000px;}
.y138{bottom:734.190000px;}
.ye7{bottom:735.000000px;}
.y5b{bottom:740.490000px;}
.y9c{bottom:745.980000px;}
.y3a{bottom:747.330000px;}
.ye6{bottom:752.550000px;}
.ybe{bottom:755.700000px;}
.y110{bottom:758.670000px;}
.y137{bottom:760.740000px;}
.y73{bottom:761.370000px;}
.yb{bottom:769.380000px;}
.ye5{bottom:770.190000px;}
.y99{bottom:773.250000px;}
.y10f{bottom:776.310000px;}
.y136{bottom:778.290000px;}
.y39{bottom:782.880000px;}
.ybf{bottom:783.060000px;}
.ye4{bottom:787.740000px;}
.y75{bottom:788.730000px;}
.y38{bottom:800.520000px;}
.y9a{bottom:800.610000px;}
.y10e{bottom:803.220000px;}
.y135{bottom:804.930000px;}
.ya{bottom:805.200000px;}
.ye3{bottom:805.290000px;}
.ybc{bottom:810.420000px;}
.y37{bottom:818.070000px;}
.y134{bottom:822.480000px;}
.ye2{bottom:822.930000px;}
.y97{bottom:827.970000px;}
.y57{bottom:834.000000px;}
.y36{bottom:835.620000px;}
.ybd{bottom:837.690000px;}
.y10d{bottom:840.570000px;}
.y9{bottom:841.200000px;}
.y133{bottom:849.030000px;}
.y35{bottom:853.260000px;}
.y72{bottom:854.970000px;}
.y98{bottom:855.330000px;}
.ye1{bottom:858.480000px;}
.yba{bottom:865.050000px;}
.y132{bottom:866.670000px;}
.y34{bottom:870.810000px;}
.y71{bottom:872.610000px;}
.ye0{bottom:876.030000px;}
.y8{bottom:880.980000px;}
.y94{bottom:882.600000px;}
.y10c{bottom:888.810000px;}
.ybb{bottom:892.410000px;}
.y131{bottom:893.220000px;}
.ydf{bottom:893.670000px;}
.y33{bottom:897.720000px;}
.y7{bottom:898.980000px;}
.y10b{bottom:906.450000px;}
.y70{bottom:908.160000px;}
.y96{bottom:909.960000px;}
.y130{bottom:910.860000px;}
.yde{bottom:911.220000px;}
.y6{bottom:916.980000px;}
.yb8{bottom:919.680000px;}
.y10a{bottom:924.000000px;}
.y6f{bottom:925.710000px;}
.ydd{bottom:928.860000px;}
.y92{bottom:937.320000px;}
.y12f{bottom:937.410000px;}
.y109{bottom:941.550000px;}
.y6e{bottom:943.350000px;}
.y32{bottom:945.960000px;}
.ydc{bottom:946.410000px;}
.yb9{bottom:947.040000px;}
.y5{bottom:949.290000px;}
.y12e{bottom:954.960000px;}
.y108{bottom:959.190000px;}
.y6d{bottom:960.900000px;}
.y31{bottom:963.600000px;}
.ydb{bottom:963.960000px;}
.y93{bottom:964.680000px;}
.y12d{bottom:972.600000px;}
.yb6{bottom:974.400000px;}
.y6c{bottom:978.540000px;}
.y30{bottom:981.150000px;}
.yda{bottom:981.600000px;}
.y107{bottom:986.100000px;}
.y4{bottom:987.630000px;}
.y8f{bottom:991.950000px;}
.y52{bottom:993.930000px;}
.y2f{bottom:998.790000px;}
.yd9{bottom:999.150000px;}
.yb7{bottom:1001.760000px;}
.y6b{bottom:1011.510000px;}
.y3{bottom:1012.320000px;}
.yd8{bottom:1016.820000px;}
.y91{bottom:1019.340000px;}
.yb3{bottom:1029.060000px;}
.y2e{bottom:1034.370000px;}
.y8d{bottom:1046.700000px;}
.y2d{bottom:1051.920000px;}
.yb4{bottom:1056.420000px;}
.y2c{bottom:1069.560000px;}
.y8e{bottom:1073.970000px;}
.y12c{bottom:1078.560000px;}
.y6a{bottom:1082.970000px;}
.y106{bottom:1087.110000px;}
.yd7{bottom:1087.560000px;}
.y12b{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y51{bottom:1109.610000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h16{height:26.550000px;}
.h19{height:26.580000px;}
.hb{height:26.640000px;}
.h1a{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h11{height:44.190000px;}
.hc{height:50.902383px;}
.h7{height:52.311445px;}
.h17{height:53.910000px;}
.h18{height:53.940000px;}
.h1b{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h9{height:60.960938px;}
.h1c{height:61.793886px;}
.ha{height:68.582109px;}
.hf{height:70.740000px;}
.h14{height:70.770000px;}
.he{height:70.830000px;}
.h15{height:71.550000px;}
.h4{height:72.985430px;}
.h10{height:92.790000px;}
.h12{height:114.960000px;}
.h13{height:159.120000px;}
.hd{height:181.200000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1a{width:18.270000px;}
.w39{width:18.810000px;}
.w2a{width:23.850000px;}
.w1c{width:24.390000px;}
.w34{width:24.480000px;}
.w16{width:24.510000px;}
.w32{width:27.990000px;}
.w3a{width:30.420000px;}
.w1b{width:30.960000px;}
.w28{width:32.040000px;}
.w4{width:32.130000px;}
.w7{width:32.160000px;}
.w37{width:33.300000px;}
.w2b{width:35.190000px;}
.w35{width:35.400000px;}
.w1d{width:35.820000px;}
.w17{width:35.910000px;}
.w18{width:36.990000px;}
.w14{width:39.420000px;}
.w12{width:42.120000px;}
.w5{width:43.470000px;}
.w29{width:43.500000px;}
.w8{width:43.560000px;}
.w48{width:43.590000px;}
.w49{width:44.280000px;}
.w46{width:44.730000px;}
.w33{width:45.450000px;}
.w31{width:47.340000px;}
.w11{width:49.230000px;}
.wf{width:49.950000px;}
.w26{width:52.650000px;}
.w38{width:53.910000px;}
.w36{width:57.060000px;}
.w15{width:57.600000px;}
.w3e{width:58.410000px;}
.w23{width:59.760000px;}
.w47{width:60.480000px;}
.w10{width:61.020000px;}
.w2e{width:61.110000px;}
.wd{width:61.140000px;}
.w19{width:62.190000px;}
.w40{width:62.400000px;}
.w4a{width:65.070000px;}
.w25{width:67.050000px;}
.w13{width:70.830000px;}
.w2d{width:74.250000px;}
.w22{width:76.320000px;}
.w21{width:76.350000px;}
.w24{width:76.410000px;}
.w44{width:76.440000px;}
.w27{width:77.130000px;}
.w3f{width:85.770000px;}
.w30{width:88.020000px;}
.w41{width:91.440000px;}
.w2f{width:93.180000px;}
.wa{width:97.650000px;}
.wc{width:97.740000px;}
.we{width:99.900000px;}
.w1f{width:105.300000px;}
.w43{width:106.020000px;}
.w45{width:110.070000px;}
.wb{width:113.670000px;}
.w2c{width:115.410000px;}
.w9{width:119.550000px;}
.w20{width:130.590000px;}
.w3b{width:133.860000px;}
.w3c{width:144.900000px;}
.w6{width:150.480000px;}
.w42{width:150.510000px;}
.w1e{width:150.600000px;}
.w3d{width:154.650000px;}
.w3{width:201.810000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:3.960000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x1a{left:72.810000px;}
.x3d{left:98.550000px;}
.x46{left:111.239987px;}
.x26{left:184.890000px;}
.xc{left:189.030000px;}
.x35{left:203.340000px;}
.x2{left:211.079987px;}
.x1b{left:224.130000px;}
.x3e{left:249.780000px;}
.x27{left:283.350000px;}
.xd{left:287.400000px;}
.x4{left:307.200000px;}
.x36{left:309.450000px;}
.x2f{left:312.150000px;}
.x14{left:330.240000px;}
.x8{left:332.850000px;}
.x3f{left:355.890000px;}
.x28{left:358.410000px;}
.x3a{left:368.580000px;}
.x21{left:383.610000px;}
.xe{left:401.790000px;}
.x29{left:420.150000px;}
.x15{left:441.930000px;}
.x30{left:445.350000px;}
.x37{left:455.070000px;}
.x1c{left:461.550000px;}
.x40{left:462.630000px;}
.x2a{left:481.980000px;}
.x9{left:484.050000px;}
.x22{left:494.400000px;}
.x44{left:495.480000px;}
.xf{left:500.250000px;}
.x6{left:509.730000px;}
.xa{left:516.930000px;}
.x31{left:518.100000px;}
.x16{left:525.480000px;}
.x1d{left:538.620000px;}
.x41{left:539.790000px;}
.x7{left:542.580000px;}
.x10{left:562.110000px;}
.x23{left:571.470000px;}
.x2b{left:575.880000px;}
.x45{left:584.790000px;}
.x17{left:599.820000px;}
.x32{left:609.990000px;}
.x1e{left:615.750000px;}
.x24{left:640.320000px;}
.x3b{left:643.380000px;}
.x42{left:650.580000px;}
.x11{left:662.730000px;}
.x2c{left:664.620000px;}
.x1f{left:676.230000px;}
.x18{left:681.720000px;}
.x33{left:684.150000px;}
.x38{left:687.570000px;}
.x25{left:709.080000px;}
.x12{left:713.490000px;}
.x2d{left:715.380000px;}
.x3c{left:720.420000px;}
.x43{left:727.710000px;}
.x19{left:738.690000px;}
.x34{left:740.580000px;}
.x20{left:753.360000px;}
.x39{left:764.700000px;}
.x13{left:775.230000px;}
.x2e{left:777.120000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.192533pt;}
.ls11{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.033600pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls3{letter-spacing:0.058240pt;}
.ls10{letter-spacing:0.061867pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls12{letter-spacing:0.087467pt;}
.ls13{letter-spacing:0.102933pt;}
.ls17{letter-spacing:0.113067pt;}
.lsd{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls19{letter-spacing:42.423680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.884267pt;}
.ws10{word-spacing:-11.869867pt;}
.wsd{word-spacing:-11.859733pt;}
.wsb{word-spacing:-11.844267pt;}
.wsc{word-spacing:-11.818667pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.723200pt;}
.ws8{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.564267pt;}
.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;}
._9{margin-left:-2.597867pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894198pt;}
._5{width:2.199460pt;}
._8{width:3.089908pt;}
._4{width:4.619732pt;}
._3{width:5.557867pt;}
._6{width:7.000533pt;}
._7{width:7.930668pt;}
._a{width:9.672533pt;}
._d{width:10.787094pt;}
._11{width:13.092800pt;}
._10{width:14.642560pt;}
._f{width:15.736107pt;}
._e{width:16.780160pt;}
._12{width:18.077002pt;}
._13{width:19.220442pt;}
._1b{width:20.467520pt;}
._b{width:22.017066pt;}
._c{width:23.067160pt;}
._1{width:24.306709pt;}
._1c{width:27.414720pt;}
._1e{width:42.003840pt;}
._1f{width:43.274347pt;}
._1d{width:72.865280pt;}
._20{width:99.900480pt;}
._19{width:120.720960pt;}
._16{width:135.844480pt;}
._17{width:146.906560pt;}
._21{width:154.355840pt;}
._22{width:155.418347pt;}
._18{width:158.984000pt;}
._14{width:159.892480pt;}
._15{width:161.602560pt;}
._1a{width:185.329920pt;}
.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;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:6.960000pt;}
.y43{bottom:7.040000pt;}
.ycb{bottom:7.066667pt;}
.yb5{bottom:11.680000pt;}
.ya4{bottom:15.600000pt;}
.y7b{bottom:15.680000pt;}
.y76{bottom:22.640000pt;}
.y5c{bottom:26.560000pt;}
.y56{bottom:26.586667pt;}
.y4b{bottom:26.640000pt;}
.y77{bottom:31.280000pt;}
.y90{bottom:31.306667pt;}
.y95{bottom:31.360000pt;}
.y4a{bottom:46.240000pt;}
.y55{bottom:46.266667pt;}
.y4e{bottom:46.320000pt;}
.y74{bottom:46.960000pt;}
.y2{bottom:65.226667pt;}
.y49{bottom:65.840000pt;}
.y54{bottom:65.866667pt;}
.y5a{bottom:65.920000pt;}
.y28{bottom:65.946667pt;}
.y48{bottom:85.520000pt;}
.y53{bottom:85.546667pt;}
.y1{bottom:90.346667pt;}
.yd5{bottom:98.186667pt;}
.y50{bottom:103.946667pt;}
.y47{bottom:105.146667pt;}
.y59{bottom:105.200000pt;}
.yb1{bottom:106.186667pt;}
.y69{bottom:106.426667pt;}
.y12a{bottom:107.706667pt;}
.y105{bottom:120.346667pt;}
.yd6{bottom:122.506667pt;}
.y129{bottom:123.306667pt;}
.y58{bottom:124.800000pt;}
.y46{bottom:124.826667pt;}
.yb2{bottom:130.506667pt;}
.y104{bottom:135.946667pt;}
.y128{bottom:138.986667pt;}
.y45{bottom:144.426667pt;}
.yd3{bottom:146.746667pt;}
.yaf{bottom:154.746667pt;}
.y26{bottom:157.146667pt;}
.y127{bottom:162.586667pt;}
.y8c{bottom:165.146667pt;}
.y103{bottom:167.626667pt;}
.y68{bottom:169.946667pt;}
.yd4{bottom:171.066667pt;}
.y25{bottom:172.746667pt;}
.y126{bottom:178.266667pt;}
.yb0{bottom:179.066667pt;}
.y102{bottom:183.226667pt;}
.y4f{bottom:187.146667pt;}
.y24{bottom:188.426667pt;}
.y125{bottom:193.866667pt;}
.yd2{bottom:195.386667pt;}
.y8b{bottom:196.746667pt;}
.y101{bottom:198.826667pt;}
.yad{bottom:203.386667pt;}
.y23{bottom:204.026667pt;}
.y100{bottom:214.506667pt;}
.y124{bottom:217.466667pt;}
.y22{bottom:219.706667pt;}
.yae{bottom:227.706667pt;}
.y8a{bottom:228.346667pt;}
.yff{bottom:230.106667pt;}
.y123{bottom:233.146667pt;}
.y67{bottom:233.546667pt;}
.yd0{bottom:243.946667pt;}
.yfe{bottom:245.786667pt;}
.y122{bottom:248.746667pt;}
.y4d{bottom:250.666667pt;}
.y21{bottom:251.306667pt;}
.yab{bottom:251.946667pt;}
.y89{bottom:260.026667pt;}
.yfd{bottom:261.386667pt;}
.y20{bottom:266.906667pt;}
.yd1{bottom:268.266667pt;}
.y121{bottom:272.426667pt;}
.yac{bottom:276.266667pt;}
.yfc{bottom:276.986667pt;}
.y1f{bottom:282.586667pt;}
.y120{bottom:288.026667pt;}
.y88{bottom:291.626667pt;}
.yce{bottom:292.586667pt;}
.yfb{bottom:292.666667pt;}
.y66{bottom:297.066667pt;}
.y1e{bottom:298.186667pt;}
.ya9{bottom:300.586667pt;}
.yfa{bottom:308.266667pt;}
.y11f{bottom:311.626667pt;}
.y1d{bottom:313.866667pt;}
.y44{bottom:314.266667pt;}
.ycf{bottom:316.906667pt;}
.y87{bottom:323.306667pt;}
.yf9{bottom:323.946667pt;}
.yaa{bottom:324.906667pt;}
.y11e{bottom:327.306667pt;}
.y85{bottom:336.586667pt;}
.y1c{bottom:337.786667pt;}
.ycc{bottom:341.146667pt;}
.ya7{bottom:349.146667pt;}
.y11d{bottom:350.906667pt;}
.yf8{bottom:355.546667pt;}
.y65{bottom:360.666667pt;}
.y86{bottom:360.906667pt;}
.ycd{bottom:365.466667pt;}
.y11c{bottom:366.586667pt;}
.yf7{bottom:371.146667pt;}
.ya8{bottom:373.466667pt;}
.y1b{bottom:380.986667pt;}
.y83{bottom:385.146667pt;}
.yf6{bottom:386.826667pt;}
.yc9{bottom:389.786667pt;}
.y11b{bottom:390.186667pt;}
.ya5{bottom:397.786667pt;}
.y146{bottom:401.706667pt;}
.yf5{bottom:402.426667pt;}
.y11a{bottom:405.786667pt;}
.y84{bottom:409.466667pt;}
.y1a{bottom:413.866667pt;}
.yca{bottom:414.026667pt;}
.y145{bottom:417.306667pt;}
.yf4{bottom:418.133333pt;}
.y119{bottom:421.493333pt;}
.ya6{bottom:422.053333pt;}
.y64{bottom:424.213333pt;}
.y19{bottom:429.493333pt;}
.y144{bottom:433.013333pt;}
.yf3{bottom:433.733333pt;}
.y81{bottom:433.813333pt;}
.yc7{bottom:438.373333pt;}
.y18{bottom:445.173333pt;}
.y118{bottom:445.413333pt;}
.ya2{bottom:446.373333pt;}
.yf2{bottom:449.333333pt;}
.y143{bottom:456.613333pt;}
.y82{bottom:458.053333pt;}
.y17{bottom:460.773333pt;}
.yc8{bottom:462.693333pt;}
.y63{bottom:467.493333pt;}
.ya3{bottom:470.693333pt;}
.y142{bottom:472.293333pt;}
.y42{bottom:475.973333pt;}
.y16{bottom:476.373333pt;}
.yf1{bottom:481.013333pt;}
.y7f{bottom:482.373333pt;}
.y141{bottom:487.893333pt;}
.y117{bottom:488.293333pt;}
.y15{bottom:492.053333pt;}
.yf0{bottom:496.613333pt;}
.y62{bottom:499.173333pt;}
.yc6{bottom:505.973333pt;}
.y80{bottom:506.693333pt;}
.y14{bottom:507.653333pt;}
.y140{bottom:511.493333pt;}
.y116{bottom:512.213333pt;}
.yef{bottom:512.293333pt;}
.y61{bottom:514.773333pt;}
.y41{bottom:519.253333pt;}
.yc5{bottom:521.573333pt;}
.y13{bottom:523.333333pt;}
.y13f{bottom:527.173333pt;}
.yee{bottom:527.893333pt;}
.ya1{bottom:529.573333pt;}
.y60{bottom:530.453333pt;}
.y7d{bottom:531.013333pt;}
.y12{bottom:538.933333pt;}
.y13e{bottom:542.773333pt;}
.y40{bottom:543.173333pt;}
.yed{bottom:543.493333pt;}
.y115{bottom:545.093333pt;}
.ya0{bottom:545.253333pt;}
.y5f{bottom:546.053333pt;}
.yc4{bottom:553.253333pt;}
.y11{bottom:554.533333pt;}
.y7e{bottom:555.253333pt;}
.yec{bottom:559.173333pt;}
.y114{bottom:560.773333pt;}
.y5e{bottom:561.653333pt;}
.y13d{bottom:566.453333pt;}
.y10{bottom:570.213333pt;}
.yc2{bottom:574.533333pt;}
.yeb{bottom:574.773333pt;}
.y5d{bottom:575.013333pt;}
.y9f{bottom:576.853333pt;}
.y7a{bottom:579.573333pt;}
.y13c{bottom:582.053333pt;}
.y113{bottom:584.693333pt;}
.yf{bottom:585.813333pt;}
.y3f{bottom:586.133333pt;}
.y9d{bottom:590.213333pt;}
.y13b{bottom:597.653333pt;}
.yc3{bottom:598.853333pt;}
.ye{bottom:601.493333pt;}
.y3e{bottom:601.733333pt;}
.y7c{bottom:603.893333pt;}
.yea{bottom:606.453333pt;}
.y9e{bottom:614.453333pt;}
.yd{bottom:617.093333pt;}
.y3d{bottom:617.413333pt;}
.y112{bottom:617.573333pt;}
.y13a{bottom:621.333333pt;}
.ye9{bottom:622.053333pt;}
.yc0{bottom:623.173333pt;}
.y78{bottom:628.213333pt;}
.y3c{bottom:633.013333pt;}
.y139{bottom:636.933333pt;}
.ye8{bottom:637.653333pt;}
.y9b{bottom:638.773333pt;}
.yc{bottom:641.013333pt;}
.y111{bottom:641.493333pt;}
.yc1{bottom:647.413333pt;}
.y3b{bottom:648.613333pt;}
.y79{bottom:652.453333pt;}
.y138{bottom:652.613333pt;}
.ye7{bottom:653.333333pt;}
.y5b{bottom:658.213333pt;}
.y9c{bottom:663.093333pt;}
.y3a{bottom:664.293333pt;}
.ye6{bottom:668.933333pt;}
.ybe{bottom:671.733333pt;}
.y110{bottom:674.373333pt;}
.y137{bottom:676.213333pt;}
.y73{bottom:676.773333pt;}
.yb{bottom:683.893333pt;}
.ye5{bottom:684.613333pt;}
.y99{bottom:687.333333pt;}
.y10f{bottom:690.053333pt;}
.y136{bottom:691.813333pt;}
.y39{bottom:695.893333pt;}
.ybf{bottom:696.053333pt;}
.ye4{bottom:700.213333pt;}
.y75{bottom:701.093333pt;}
.y38{bottom:711.573333pt;}
.y9a{bottom:711.653333pt;}
.y10e{bottom:713.973333pt;}
.y135{bottom:715.493333pt;}
.ya{bottom:715.733333pt;}
.ye3{bottom:715.813333pt;}
.ybc{bottom:720.373333pt;}
.y37{bottom:727.173333pt;}
.y134{bottom:731.093333pt;}
.ye2{bottom:731.493333pt;}
.y97{bottom:735.973333pt;}
.y57{bottom:741.333333pt;}
.y36{bottom:742.773333pt;}
.ybd{bottom:744.613333pt;}
.y10d{bottom:747.173333pt;}
.y9{bottom:747.733333pt;}
.y133{bottom:754.693333pt;}
.y35{bottom:758.453333pt;}
.y72{bottom:759.973333pt;}
.y98{bottom:760.293333pt;}
.ye1{bottom:763.093333pt;}
.yba{bottom:768.933333pt;}
.y132{bottom:770.373333pt;}
.y34{bottom:774.053333pt;}
.y71{bottom:775.653333pt;}
.ye0{bottom:778.693333pt;}
.y8{bottom:783.093333pt;}
.y94{bottom:784.533333pt;}
.y10c{bottom:790.053333pt;}
.ybb{bottom:793.253333pt;}
.y131{bottom:793.973333pt;}
.ydf{bottom:794.373333pt;}
.y33{bottom:797.973333pt;}
.y7{bottom:799.093333pt;}
.y10b{bottom:805.733333pt;}
.y70{bottom:807.253333pt;}
.y96{bottom:808.853333pt;}
.y130{bottom:809.653333pt;}
.yde{bottom:809.973333pt;}
.y6{bottom:815.093333pt;}
.yb8{bottom:817.493333pt;}
.y10a{bottom:821.333333pt;}
.y6f{bottom:822.853333pt;}
.ydd{bottom:825.653333pt;}
.y92{bottom:833.173333pt;}
.y12f{bottom:833.253333pt;}
.y109{bottom:836.933333pt;}
.y6e{bottom:838.533333pt;}
.y32{bottom:840.853333pt;}
.ydc{bottom:841.253333pt;}
.yb9{bottom:841.813333pt;}
.y5{bottom:843.813333pt;}
.y12e{bottom:848.853333pt;}
.y108{bottom:852.613333pt;}
.y6d{bottom:854.133333pt;}
.y31{bottom:856.533333pt;}
.ydb{bottom:856.853333pt;}
.y93{bottom:857.493333pt;}
.y12d{bottom:864.533333pt;}
.yb6{bottom:866.133333pt;}
.y6c{bottom:869.813333pt;}
.y30{bottom:872.133333pt;}
.yda{bottom:872.533333pt;}
.y107{bottom:876.533333pt;}
.y4{bottom:877.893333pt;}
.y8f{bottom:881.733333pt;}
.y52{bottom:883.493333pt;}
.y2f{bottom:887.813333pt;}
.yd9{bottom:888.133333pt;}
.yb7{bottom:890.453333pt;}
.y6b{bottom:899.120000pt;}
.y3{bottom:899.840000pt;}
.yd8{bottom:903.840000pt;}
.y91{bottom:906.080000pt;}
.yb3{bottom:914.720000pt;}
.y2e{bottom:919.440000pt;}
.y8d{bottom:930.400000pt;}
.y2d{bottom:935.040000pt;}
.yb4{bottom:939.040000pt;}
.y2c{bottom:950.720000pt;}
.y8e{bottom:954.640000pt;}
.y12c{bottom:958.720000pt;}
.y6a{bottom:962.640000pt;}
.y106{bottom:966.320000pt;}
.yd7{bottom:966.720000pt;}
.y12b{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y51{bottom:986.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h16{height:23.600000pt;}
.h19{height:23.626667pt;}
.hb{height:23.680000pt;}
.h1a{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h11{height:39.280000pt;}
.hc{height:45.246562pt;}
.h7{height:46.499062pt;}
.h17{height:47.920000pt;}
.h18{height:47.946667pt;}
.h1b{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h9{height:54.187500pt;}
.h1c{height:54.927899pt;}
.ha{height:60.961875pt;}
.hf{height:62.880000pt;}
.h14{height:62.906667pt;}
.he{height:62.960000pt;}
.h15{height:63.600000pt;}
.h4{height:64.875937pt;}
.h10{height:82.480000pt;}
.h12{height:102.186667pt;}
.h13{height:141.440000pt;}
.hd{height:161.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1a{width:16.240000pt;}
.w39{width:16.720000pt;}
.w2a{width:21.200000pt;}
.w1c{width:21.680000pt;}
.w34{width:21.760000pt;}
.w16{width:21.786667pt;}
.w32{width:24.880000pt;}
.w3a{width:27.040000pt;}
.w1b{width:27.520000pt;}
.w28{width:28.480000pt;}
.w4{width:28.560000pt;}
.w7{width:28.586667pt;}
.w37{width:29.600000pt;}
.w2b{width:31.280000pt;}
.w35{width:31.466667pt;}
.w1d{width:31.840000pt;}
.w17{width:31.920000pt;}
.w18{width:32.880000pt;}
.w14{width:35.040000pt;}
.w12{width:37.440000pt;}
.w5{width:38.640000pt;}
.w29{width:38.666667pt;}
.w8{width:38.720000pt;}
.w48{width:38.746667pt;}
.w49{width:39.360000pt;}
.w46{width:39.760000pt;}
.w33{width:40.400000pt;}
.w31{width:42.080000pt;}
.w11{width:43.760000pt;}
.wf{width:44.400000pt;}
.w26{width:46.800000pt;}
.w38{width:47.920000pt;}
.w36{width:50.720000pt;}
.w15{width:51.200000pt;}
.w3e{width:51.920000pt;}
.w23{width:53.120000pt;}
.w47{width:53.760000pt;}
.w10{width:54.240000pt;}
.w2e{width:54.320000pt;}
.wd{width:54.346667pt;}
.w19{width:55.280000pt;}
.w40{width:55.466667pt;}
.w4a{width:57.840000pt;}
.w25{width:59.600000pt;}
.w13{width:62.960000pt;}
.w2d{width:66.000000pt;}
.w22{width:67.840000pt;}
.w21{width:67.866667pt;}
.w24{width:67.920000pt;}
.w44{width:67.946667pt;}
.w27{width:68.560000pt;}
.w3f{width:76.240000pt;}
.w30{width:78.240000pt;}
.w41{width:81.280000pt;}
.w2f{width:82.826667pt;}
.wa{width:86.800000pt;}
.wc{width:86.880000pt;}
.we{width:88.800000pt;}
.w1f{width:93.600000pt;}
.w43{width:94.240000pt;}
.w45{width:97.840000pt;}
.wb{width:101.040000pt;}
.w2c{width:102.586667pt;}
.w9{width:106.266667pt;}
.w20{width:116.080000pt;}
.w3b{width:118.986667pt;}
.w3c{width:128.800000pt;}
.w6{width:133.760000pt;}
.w42{width:133.786667pt;}
.w1e{width:133.866667pt;}
.w3d{width:137.466667pt;}
.w3{width:179.386667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:3.520000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1a{left:64.720000pt;}
.x3d{left:87.600000pt;}
.x46{left:98.879988pt;}
.x26{left:164.346667pt;}
.xc{left:168.026667pt;}
.x35{left:180.746667pt;}
.x2{left:187.626655pt;}
.x1b{left:199.226667pt;}
.x3e{left:222.026667pt;}
.x27{left:251.866667pt;}
.xd{left:255.466667pt;}
.x4{left:273.066667pt;}
.x36{left:275.066667pt;}
.x2f{left:277.466667pt;}
.x14{left:293.546667pt;}
.x8{left:295.866667pt;}
.x3f{left:316.346667pt;}
.x28{left:318.586667pt;}
.x3a{left:327.626667pt;}
.x21{left:340.986667pt;}
.xe{left:357.146667pt;}
.x29{left:373.466667pt;}
.x15{left:392.826667pt;}
.x30{left:395.866667pt;}
.x37{left:404.506667pt;}
.x1c{left:410.266667pt;}
.x40{left:411.226667pt;}
.x2a{left:428.426667pt;}
.x9{left:430.266667pt;}
.x22{left:439.466667pt;}
.x44{left:440.426667pt;}
.xf{left:444.666667pt;}
.x6{left:453.093333pt;}
.xa{left:459.493333pt;}
.x31{left:460.533333pt;}
.x16{left:467.093333pt;}
.x1d{left:478.773333pt;}
.x41{left:479.813333pt;}
.x7{left:482.293333pt;}
.x10{left:499.653333pt;}
.x23{left:507.973333pt;}
.x2b{left:511.893333pt;}
.x45{left:519.813333pt;}
.x17{left:533.173333pt;}
.x32{left:542.213333pt;}
.x1e{left:547.333333pt;}
.x24{left:569.173333pt;}
.x3b{left:571.893333pt;}
.x42{left:578.293333pt;}
.x11{left:589.093333pt;}
.x2c{left:590.773333pt;}
.x1f{left:601.093333pt;}
.x18{left:605.973333pt;}
.x33{left:608.133333pt;}
.x38{left:611.173333pt;}
.x25{left:630.293333pt;}
.x12{left:634.213333pt;}
.x2d{left:635.893333pt;}
.x3c{left:640.373333pt;}
.x43{left:646.853333pt;}
.x19{left:656.613333pt;}
.x34{left:658.293333pt;}
.x20{left:669.653333pt;}
.x39{left:679.733333pt;}
.x13{left:689.093333pt;}
.x2e{left:690.773333pt;}
.x3{left:711.413322pt;}
}




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