
    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_da085be869ef2abd6ffd6587.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f64c6eb1a8bcecd426c60752.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120605;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_4342e55cddcd7866fbb9031b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_30fc82ec7e447a14edd5813c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.612000px;}
.lsd{letter-spacing:-0.460200px;}
.ls7{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.108000px;}
.ls8{letter-spacing:0.153600px;}
.lsa{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.900000px;}
.lse{letter-spacing:22.986720px;}
.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;}
}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.833200px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws3{word-spacing:0.000000px;}
._9c{margin-left:-7.433280px;}
._16{margin-left:-4.352400px;}
._9{margin-left:-3.291120px;}
._8{margin-left:-2.141280px;}
._3{margin-left:-1.080000px;}
._4{width:1.386000px;}
._7{width:2.748960px;}
._6{width:3.884400px;}
._5{width:5.258880px;}
._13{width:6.386880px;}
._10{width:7.697520px;}
._11{width:8.711280px;}
._b{width:10.391040px;}
._a{width:11.473920px;}
._f{width:12.657600px;}
._17{width:13.864320px;}
._1{width:15.300000px;}
._5d{width:16.314480px;}
._c{width:17.438400px;}
._12{width:18.454320px;}
._39{width:19.959840px;}
._57{width:21.095280px;}
._6c{width:22.111200px;}
._15{width:23.844240px;}
._14{width:25.099200px;}
._19{width:26.115120px;}
._46{width:27.549360px;}
._e{width:28.565280px;}
._d{width:29.700720px;}
._2d{width:30.895920px;}
._1c{width:32.497920px;}
._20{width:34.481520px;}
._8f{width:35.485920px;}
._4e{width:36.883440px;}
._1e{width:38.772720px;}
._21{width:40.087440px;}
._61{width:41.473440px;}
._32{width:43.673040px;}
._89{width:45.047520px;}
._52{width:46.194480px;}
._3f{width:47.688480px;}
._2c{width:49.600800px;}
._22{width:50.736240px;}
._36{width:52.529040px;}
._65{width:54.620640px;}
._67{width:56.353680px;}
._35{width:57.417840px;}
._92{width:58.744080px;}
._59{width:60.058800px;}
._5c{width:61.182720px;}
._8b{width:62.377920px;}
._18{width:63.644400px;}
._2e{width:64.779840px;}
._23{width:65.963520px;}
._5e{width:67.158720px;}
._86{width:68.365440px;}
._1d{width:69.859440px;}
._47{width:71.592480px;}
._51{width:73.086480px;}
._9a{width:74.401200px;}
._26{width:76.433040px;}
._76{width:77.448960px;}
._66{width:79.170480px;}
._30{width:80.735760px;}
._74{width:81.751680px;}
._54{width:83.234160px;}
._70{width:84.907440px;}
._43{width:86.233680px;}
._42{width:88.791840px;}
._38{width:90.118080px;}
._8c{width:92.078640px;}
._3c{width:93.763440px;}
._72{width:95.137920px;}
._6f{width:96.202080px;}
._75{width:97.875360px;}
._45{width:99.130320px;}
._4b{width:100.217520px;}
._34{width:102.417120px;}
._31{width:104.520240px;}
._71{width:106.301520px;}
._9d{width:107.747280px;}
._48{width:109.289520px;}
._1a{width:110.316960px;}
._29{width:112.098240px;}
._58{width:113.842800px;}
._4d{width:115.516080px;}
._60{width:117.596160px;}
._2f{width:120.476160px;}
._98{width:121.600080px;}
._69{width:122.855040px;}
._3a{width:124.121520px;}
._2b{width:126.332640px;}
._63{width:128.065680px;}
._64{width:130.814640px;}
._37{width:133.205040px;}
._7b{width:134.639280px;}
._28{width:136.193040px;}
._56{width:137.208960px;}
._3d{width:138.810960px;}
._44{width:140.376240px;}
._96{width:141.930000px;}
._62{width:143.902080px;}
._24{width:147.069360px;}
._4a{width:149.818320px;}
._2a{width:151.252560px;}
._1f{width:153.105120px;}
._25{width:154.599120px;}
._78{width:156.391920px;}
._3b{width:158.483520px;}
._95{width:159.667200px;}
._73{width:160.933680px;}
._50{width:162.905760px;}
._3e{width:164.220480px;}
._40{width:166.969440px;}
._6e{width:167.985360px;}
._7c{width:169.109280px;}
._77{width:170.256240px;}
._55{width:171.451440px;}
._84{width:172.766160px;}
._53{width:174.260160px;}
._6b{width:178.503120px;}
._87{width:180.284400px;}
._8e{width:181.491120px;}
._41{width:182.507040px;}
._27{width:183.642480px;}
._85{width:185.603040px;}
._49{width:186.809760px;}
._97{width:187.885440px;}
._68{width:189.259920px;}
._6a{width:192.706560px;}
._90{width:194.757840px;}
._2{width:198.900000px;}
._5b{width:201.211920px;}
._4f{width:203.064480px;}
._91{width:204.128640px;}
._8d{width:205.323840px;}
._4c{width:206.470800px;}
._0{width:208.200000px;}
._7e{width:210.463200px;}
._79{width:214.657920px;}
._1b{width:216.689760px;}
._8a{width:223.789680px;}
._33{width:226.191600px;}
._94{width:230.841360px;}
._80{width:236.877120px;}
._81{width:239.984640px;}
._7a{width:246.916800px;}
._82{width:248.888880px;}
._7d{width:249.964560px;}
._83{width:251.936640px;}
._9b{width:256.609440px;}
._6d{width:261.450000px;}
._7f{width:263.828880px;}
._88{width:267.055920px;}
._99{width:269.816400px;}
._93{width:271.549440px;}
._5f{width:301.309920px;}
._5a{width:344.576160px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:108.000000px;}
.y8{bottom:-9.720000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:3.240000px;}
.y15d{bottom:13.710000px;}
.y155{bottom:14.760000px;}
.ydc{bottom:20.340000px;}
.y8e{bottom:20.520000px;}
.yfe{bottom:20.550000px;}
.yad{bottom:20.565000px;}
.y6{bottom:24.660000px;}
.y15c{bottom:26.130000px;}
.y158{bottom:32.940000px;}
.y9e{bottom:37.614000px;}
.ye0{bottom:37.620000px;}
.ydb{bottom:37.650000px;}
.yac{bottom:37.665000px;}
.ye2{bottom:37.794000px;}
.y8d{bottom:37.800000px;}
.yfd{bottom:37.830000px;}
.yce{bottom:37.845000px;}
.y15b{bottom:43.230000px;}
.y5{bottom:44.820000px;}
.y157{bottom:50.040000px;}
.y9d{bottom:54.894000px;}
.yc9{bottom:54.900000px;}
.yda{bottom:54.930000px;}
.yab{bottom:54.945000px;}
.y10a{bottom:55.074000px;}
.yc0{bottom:55.080000px;}
.yfc{bottom:55.110000px;}
.y9c{bottom:72.174000px;}
.yc8{bottom:72.180000px;}
.yd9{bottom:72.210000px;}
.yaa{bottom:72.225000px;}
.ybf{bottom:72.360000px;}
.yfb{bottom:72.390000px;}
.y107{bottom:72.405000px;}
.y9b{bottom:89.454000px;}
.ybe{bottom:89.460000px;}
.yd8{bottom:89.490000px;}
.ya9{bottom:89.505000px;}
.yee{bottom:89.640000px;}
.y106{bottom:89.685000px;}
.y41{bottom:93.816000px;}
.yf1{bottom:95.076000px;}
.y118{bottom:95.796000px;}
.yca{bottom:96.516000px;}
.y108{bottom:97.236000px;}
.y153{bottom:101.196000px;}
.y7d{bottom:103.536000px;}
.y12e{bottom:106.560000px;}
.yd7{bottom:106.590000px;}
.y9a{bottom:106.734000px;}
.ybd{bottom:106.740000px;}
.yfa{bottom:106.770000px;}
.ya8{bottom:106.785000px;}
.y40{bottom:111.096000px;}
.ye1{bottom:114.516000px;}
.y152{bottom:118.476000px;}
.y90{bottom:119.016000px;}
.y7c{bottom:120.816000px;}
.y128{bottom:123.834000px;}
.ye8{bottom:123.840000px;}
.yd6{bottom:123.870000px;}
.ya7{bottom:123.885000px;}
.y99{bottom:124.014000px;}
.yc7{bottom:124.020000px;}
.ybc{bottom:124.050000px;}
.ycd{bottom:124.065000px;}
.y3f{bottom:128.376000px;}
.y151{bottom:135.756000px;}
.y7b{bottom:137.916000px;}
.y98{bottom:141.114000px;}
.yf8{bottom:141.120000px;}
.yd5{bottom:141.150000px;}
.ya6{bottom:141.165000px;}
.y109{bottom:141.294000px;}
.yed{bottom:141.300000px;}
.ybb{bottom:141.330000px;}
.yc6{bottom:141.345000px;}
.y3e{bottom:145.476000px;}
.y150{bottom:153.030000px;}
.y7a{bottom:155.190000px;}
.y97{bottom:158.394000px;}
.yf0{bottom:158.400000px;}
.yd4{bottom:158.430000px;}
.ya5{bottom:158.445000px;}
.yec{bottom:158.580000px;}
.yba{bottom:158.610000px;}
.y105{bottom:158.625000px;}
.y3d{bottom:162.750000px;}
.yef{bottom:164.730000px;}
.y14f{bottom:170.310000px;}
.y79{bottom:172.470000px;}
.y96{bottom:175.674000px;}
.yf7{bottom:175.680000px;}
.yb9{bottom:175.710000px;}
.ya4{bottom:175.725000px;}
.y11c{bottom:175.860000px;}
.yeb{bottom:175.890000px;}
.y104{bottom:175.905000px;}
.y3c{bottom:180.030000px;}
.y14e{bottom:187.410000px;}
.y78{bottom:189.750000px;}
.y95{bottom:192.954000px;}
.yf6{bottom:192.960000px;}
.yb8{bottom:192.990000px;}
.ya3{bottom:193.005000px;}
.y103{bottom:193.185000px;}
.y3b{bottom:197.310000px;}
.yc1{bottom:200.730000px;}
.y14d{bottom:204.690000px;}
.y77{bottom:207.030000px;}
.yd3{bottom:210.090000px;}
.y10d{bottom:210.105000px;}
.y94{bottom:210.234000px;}
.yf5{bottom:210.240000px;}
.yb7{bottom:210.270000px;}
.ya2{bottom:210.285000px;}
.y3a{bottom:214.590000px;}
.y14c{bottom:221.970000px;}
.y76{bottom:224.310000px;}
.yf4{bottom:227.340000px;}
.yd2{bottom:227.370000px;}
.y93{bottom:227.379000px;}
.ya1{bottom:227.385000px;}
.y11d{bottom:227.514000px;}
.y121{bottom:227.520000px;}
.yb6{bottom:227.550000px;}
.yc5{bottom:227.565000px;}
.y39{bottom:231.870000px;}
.y14b{bottom:239.250000px;}
.y75{bottom:241.410000px;}
.yf3{bottom:244.620000px;}
.yd1{bottom:244.650000px;}
.y92{bottom:244.659000px;}
.ycc{bottom:244.665000px;}
.yb5{bottom:244.830000px;}
.yc4{bottom:244.845000px;}
.y38{bottom:248.970000px;}
.y12b{bottom:251.670000px;}
.ydd{bottom:253.290000px;}
.y14a{bottom:256.530000px;}
.y74{bottom:258.690000px;}
.yd0{bottom:261.930000px;}
.y91{bottom:261.939000px;}
.yc3{bottom:261.945000px;}
.yb4{bottom:262.110000px;}
.y102{bottom:262.125000px;}
.y37{bottom:266.250000px;}
.y127{bottom:268.230000px;}
.y117{bottom:268.950000px;}
.yff{bottom:270.390000px;}
.y149{bottom:273.630000px;}
.y73{bottom:275.970000px;}
.yb3{bottom:279.210000px;}
.yc2{bottom:279.225000px;}
.yea{bottom:279.390000px;}
.y101{bottom:279.405000px;}
.y36{bottom:283.530000px;}
.y148{bottom:290.910000px;}
.y72{bottom:293.250000px;}
.yb2{bottom:296.490000px;}
.ydf{bottom:296.505000px;}
.y100{bottom:296.685000px;}
.y35{bottom:300.810000px;}
.y147{bottom:308.190000px;}
.y71{bottom:310.530000px;}
.yb1{bottom:313.770000px;}
.yde{bottom:313.785000px;}
.y34{bottom:318.090000px;}
.y146{bottom:325.470000px;}
.y70{bottom:327.630000px;}
.yb0{bottom:331.050000px;}
.y33{bottom:335.370000px;}
.y145{bottom:342.795000px;}
.y6f{bottom:344.955000px;}
.yaf{bottom:348.330000px;}
.y32{bottom:352.515000px;}
.y144{bottom:360.075000px;}
.y6e{bottom:362.235000px;}
.y31{bottom:369.795000px;}
.y11b{bottom:373.215000px;}
.y143{bottom:377.175000px;}
.y6d{bottom:379.515000px;}
.y30{bottom:387.075000px;}
.y142{bottom:394.455000px;}
.y8c{bottom:395.715000px;}
.y6c{bottom:396.795000px;}
.y2f{bottom:404.355000px;}
.y141{bottom:411.735000px;}
.y6b{bottom:414.075000px;}
.y2e{bottom:421.635000px;}
.y140{bottom:429.015000px;}
.y6a{bottom:431.175000px;}
.y2d{bottom:438.735000px;}
.ye9{bottom:441.435000px;}
.y13f{bottom:446.295000px;}
.y69{bottom:448.455000px;}
.y8b{bottom:451.515000px;}
.y2c{bottom:458.355000px;}
.y126{bottom:458.715000px;}
.y13e{bottom:463.575000px;}
.y68{bottom:465.735000px;}
.y8a{bottom:468.795000px;}
.y2b{bottom:475.635000px;}
.y12a{bottom:476.715000px;}
.y13d{bottom:480.675000px;}
.y67{bottom:483.015000px;}
.y89{bottom:485.895000px;}
.y2a{bottom:492.735000px;}
.yae{bottom:494.715000px;}
.y13c{bottom:497.955000px;}
.y66{bottom:500.295000px;}
.y88{bottom:503.175000px;}
.y29{bottom:510.015000px;}
.y13b{bottom:515.235000px;}
.y65{bottom:517.575000px;}
.y87{bottom:520.455000px;}
.y28{bottom:527.295000px;}
.y116{bottom:528.555000px;}
.y13a{bottom:532.515000px;}
.y64{bottom:534.675000px;}
.y86{bottom:537.735000px;}
.y27{bottom:544.575000px;}
.y139{bottom:549.795000px;}
.y63{bottom:551.955000px;}
.y85{bottom:555.015000px;}
.y26{bottom:561.855000px;}
.y11a{bottom:563.835000px;}
.y125{bottom:566.175000px;}
.y138{bottom:567.075000px;}
.y62{bottom:569.235000px;}
.y84{bottom:572.295000px;}
.y25{bottom:579.135000px;}
.ycf{bottom:581.835000px;}
.y124{bottom:583.455000px;}
.y137{bottom:584.175000px;}
.y61{bottom:586.515000px;}
.y83{bottom:589.395000px;}
.y24{bottom:596.235000px;}
.yf9{bottom:598.935000px;}
.y123{bottom:600.735000px;}
.y136{bottom:601.455000px;}
.y15a{bottom:602.535000px;}
.y60{bottom:603.825000px;}
.y82{bottom:606.705000px;}
.y23{bottom:613.545000px;}
.y122{bottom:618.045000px;}
.y135{bottom:618.765000px;}
.y5f{bottom:620.925000px;}
.y81{bottom:623.985000px;}
.y22{bottom:630.825000px;}
.y159{bottom:631.005000px;}
.y120{bottom:632.805000px;}
.y115{bottom:636.045000px;}
.y5e{bottom:638.205000px;}
.y80{bottom:641.265000px;}
.y21{bottom:648.105000px;}
.y114{bottom:653.325000px;}
.y5d{bottom:655.485000px;}
.y7f{bottom:658.545000px;}
.y156{bottom:660.525000px;}
.y20{bottom:665.385000px;}
.y113{bottom:670.425000px;}
.y7e{bottom:672.405000px;}
.y5c{bottom:672.765000px;}
.y1f{bottom:682.665000px;}
.y129{bottom:684.465000px;}
.y112{bottom:687.705000px;}
.y5b{bottom:690.045000px;}
.y154{bottom:695.805000px;}
.y1e{bottom:702.105000px;}
.y111{bottom:704.985000px;}
.y5a{bottom:707.325000px;}
.y1d{bottom:719.025000px;}
.y110{bottom:722.265000px;}
.y59{bottom:724.425000px;}
.y1c{bottom:734.505000px;}
.ye7{bottom:735.585000px;}
.y10f{bottom:739.545000px;}
.y58{bottom:741.705000px;}
.y1b{bottom:749.985000px;}
.y10e{bottom:756.825000px;}
.y57{bottom:758.985000px;}
.y1a{bottom:767.445000px;}
.y10c{bottom:771.585000px;}
.y134{bottom:773.925000px;}
.y56{bottom:776.265000px;}
.y133{bottom:791.205000px;}
.y19{bottom:791.745000px;}
.y55{bottom:793.545000px;}
.y119{bottom:805.965000px;}
.y132{bottom:808.485000px;}
.y18{bottom:808.665000px;}
.y54{bottom:810.825000px;}
.y17{bottom:824.145000px;}
.y131{bottom:825.765000px;}
.y53{bottom:827.925000px;}
.y16{bottom:841.605000px;}
.y130{bottom:843.045000px;}
.y52{bottom:845.205000px;}
.ya0{bottom:857.805000px;}
.ycb{bottom:858.525000px;}
.y12f{bottom:860.325000px;}
.y51{bottom:862.485000px;}
.y15{bottom:865.905000px;}
.y12d{bottom:875.130000px;}
.yf2{bottom:875.850000px;}
.y50{bottom:879.810000px;}
.y14{bottom:882.870000px;}
.y11f{bottom:892.230000px;}
.y4f{bottom:897.090000px;}
.y13{bottom:897.990000px;}
.y12{bottom:913.830000px;}
.y4e{bottom:914.370000px;}
.y4d{bottom:931.470000px;}
.y11{bottom:936.690000px;}
.y4c{bottom:948.750000px;}
.y10{bottom:953.610000px;}
.y4b{bottom:966.030000px;}
.yf{bottom:969.090000px;}
.y4a{bottom:983.310000px;}
.ye{bottom:986.550000px;}
.ye6{bottom:995.010000px;}
.y49{bottom:1000.590000px;}
.yd{bottom:1010.850000px;}
.y48{bottom:1017.690000px;}
.yc{bottom:1028.130000px;}
.y10b{bottom:1031.010000px;}
.y47{bottom:1034.970000px;}
.yb{bottom:1047.930000px;}
.ye5{bottom:1050.810000px;}
.y46{bottom:1052.250000px;}
.y12c{bottom:1065.570000px;}
.ye4{bottom:1068.090000px;}
.y45{bottom:1069.530000px;}
.ya{bottom:1079.070000px;}
.y11e{bottom:1082.850000px;}
.ye3{bottom:1085.190000px;}
.y44{bottom:1086.810000px;}
.y9f{bottom:1099.950000px;}
.y43{bottom:1104.090000px;}
.y9{bottom:1110.030000px;}
.y42{bottom:1121.190000px;}
.y4{bottom:1175.760000px;}
.y3{bottom:1195.560000px;}
.y2{bottom:1212.300000px;}
.y7{bottom:1220.040000px;}
.y1{bottom:1229.040000px;}
.h4{height:18.180000px;}
.h27{height:27.756000px;}
.h24{height:28.800000px;}
.hd{height:34.560000px;}
.ha{height:42.164648px;}
.h9{height:43.246406px;}
.h2{height:48.410156px;}
.h1e{height:51.660000px;}
.hb{height:51.840000px;}
.h6{height:53.573906px;}
.h26{height:57.276000px;}
.h25{height:64.080000px;}
.h3{height:65.884219px;}
.h15{height:68.940000px;}
.h8{height:75.519844px;}
.h7{height:80.683594px;}
.h5{height:96.820312px;}
.h11{height:103.500000px;}
.h1a{height:103.536000px;}
.h13{height:137.880000px;}
.h23{height:155.160000px;}
.h19{height:172.440000px;}
.h21{height:172.620000px;}
.h1d{height:189.720000px;}
.h1f{height:189.750000px;}
.h22{height:207.030000px;}
.h20{height:224.130000px;}
.h1c{height:224.310000px;}
.he{height:241.410000px;}
.h16{height:258.660000px;}
.h14{height:258.690000px;}
.h1b{height:258.870000px;}
.hc{height:275.970000px;}
.h17{height:276.195000px;}
.h10{height:293.250000px;}
.h12{height:327.630000px;}
.h18{height:327.810000px;}
.hf{height:362.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:5.580000px;}
.wa{width:35.820000px;}
.w4{width:36.180000px;}
.w11{width:37.620000px;}
.w1d{width:57.420000px;}
.w1e{width:66.780000px;}
.wc{width:69.876000px;}
.w6{width:70.920000px;}
.w18{width:74.736000px;}
.w13{width:75.240000px;}
.w7{width:77.580000px;}
.wd{width:83.340000px;}
.wb{width:89.820000px;}
.w14{width:93.960000px;}
.w8{width:95.976000px;}
.w17{width:103.140000px;}
.w19{width:103.680000px;}
.we{width:111.636000px;}
.w5{width:112.356000px;}
.w10{width:116.676000px;}
.w12{width:123.876000px;}
.wf{width:124.380000px;}
.w9{width:126.360000px;}
.w1c{width:139.176000px;}
.w16{width:142.776000px;}
.w1b{width:144.936000px;}
.w15{width:159.330000px;}
.w1a{width:168.510000px;}
.w1f{width:272.775000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x3{left:56.700000px;}
.x1{left:127.655987px;}
.x26{left:146.555987px;}
.x1b{left:165.270000px;}
.x28{left:166.710000px;}
.x2f{left:177.330000px;}
.x12{left:180.749987px;}
.x5{left:190.469987px;}
.x4{left:191.549987px;}
.xa{left:195.329987px;}
.xe{left:201.809987px;}
.x11{left:213.329987px;}
.x6{left:220.169987px;}
.x10{left:223.049987px;}
.xd{left:224.489987px;}
.x19{left:243.929987px;}
.x21{left:255.630000px;}
.xb{left:270.569987px;}
.x1c{left:278.535000px;}
.x29{left:291.315000px;}
.x8{left:299.774987px;}
.x17{left:310.754987px;}
.xf{left:317.054987px;}
.x18{left:321.914987px;}
.x22{left:326.235000px;}
.xc{left:331.454987px;}
.x9{left:345.674987px;}
.x1d{left:350.175000px;}
.x33{left:361.154987px;}
.x2a{left:367.275000px;}
.x30{left:375.375000px;}
.x14{left:384.554987px;}
.x13{left:386.534987px;}
.x32{left:391.574987px;}
.x27{left:399.854987px;}
.x23{left:410.475000px;}
.x1e{left:428.475000px;}
.x2{left:434.054987px;}
.x31{left:443.055000px;}
.x7{left:446.654987px;}
.x2d{left:450.435000px;}
.x2b{left:461.955000px;}
.x16{left:473.144987px;}
.x24{left:523.005000px;}
.x1f{left:525.345000px;}
.x2e{left:619.845000px;}
.x2c{left:622.005000px;}
.x25{left:648.105000px;}
.x20{left:652.425000px;}
.x15{left:741.029987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.544000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.096000pt;}
.ls8{letter-spacing:0.136533pt;}
.lsa{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.800000pt;}
.lse{letter-spacing:20.432640pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws3{word-spacing:0.000000pt;}
._9c{margin-left:-6.607360pt;}
._16{margin-left:-3.868800pt;}
._9{margin-left:-2.925440pt;}
._8{margin-left:-1.903360pt;}
._3{margin-left:-0.960000pt;}
._4{width:1.232000pt;}
._7{width:2.443520pt;}
._6{width:3.452800pt;}
._5{width:4.674560pt;}
._13{width:5.677227pt;}
._10{width:6.842240pt;}
._11{width:7.743360pt;}
._b{width:9.236480pt;}
._a{width:10.199040pt;}
._f{width:11.251200pt;}
._17{width:12.323840pt;}
._1{width:13.600000pt;}
._5d{width:14.501760pt;}
._c{width:15.500800pt;}
._12{width:16.403840pt;}
._39{width:17.742080pt;}
._57{width:18.751360pt;}
._6c{width:19.654400pt;}
._15{width:21.194880pt;}
._14{width:22.310400pt;}
._19{width:23.213440pt;}
._46{width:24.488320pt;}
._e{width:25.391360pt;}
._d{width:26.400640pt;}
._2d{width:27.463040pt;}
._1c{width:28.887040pt;}
._20{width:30.650240pt;}
._8f{width:31.543040pt;}
._4e{width:32.785280pt;}
._1e{width:34.464640pt;}
._21{width:35.633280pt;}
._61{width:36.865280pt;}
._32{width:38.820480pt;}
._89{width:40.042240pt;}
._52{width:41.061760pt;}
._3f{width:42.389760pt;}
._2c{width:44.089600pt;}
._22{width:45.098880pt;}
._36{width:46.692480pt;}
._65{width:48.551680pt;}
._67{width:50.092160pt;}
._35{width:51.038080pt;}
._92{width:52.216960pt;}
._59{width:53.385600pt;}
._5c{width:54.384640pt;}
._8b{width:55.447040pt;}
._18{width:56.572800pt;}
._2e{width:57.582080pt;}
._23{width:58.634240pt;}
._5e{width:59.696640pt;}
._86{width:60.769280pt;}
._1d{width:62.097280pt;}
._47{width:63.637760pt;}
._51{width:64.965760pt;}
._9a{width:66.134400pt;}
._26{width:67.940480pt;}
._76{width:68.843520pt;}
._66{width:70.373760pt;}
._30{width:71.765120pt;}
._74{width:72.668160pt;}
._54{width:73.985920pt;}
._70{width:75.473280pt;}
._43{width:76.652160pt;}
._42{width:78.926080pt;}
._38{width:80.104960pt;}
._8c{width:81.847680pt;}
._3c{width:83.345280pt;}
._72{width:84.567040pt;}
._6f{width:85.512960pt;}
._75{width:87.000320pt;}
._45{width:88.115840pt;}
._4b{width:89.082240pt;}
._34{width:91.037440pt;}
._31{width:92.906880pt;}
._71{width:94.490240pt;}
._9d{width:95.775360pt;}
._48{width:97.146240pt;}
._1a{width:98.059520pt;}
._29{width:99.642880pt;}
._58{width:101.193600pt;}
._4d{width:102.680960pt;}
._60{width:104.529920pt;}
._2f{width:107.089920pt;}
._98{width:108.088960pt;}
._69{width:109.204480pt;}
._3a{width:110.330240pt;}
._2b{width:112.295680pt;}
._63{width:113.836160pt;}
._64{width:116.279680pt;}
._37{width:118.404480pt;}
._7b{width:119.679360pt;}
._28{width:121.060480pt;}
._56{width:121.963520pt;}
._3d{width:123.387520pt;}
._44{width:124.778880pt;}
._96{width:126.160000pt;}
._62{width:127.912960pt;}
._24{width:130.728320pt;}
._4a{width:133.171840pt;}
._2a{width:134.446720pt;}
._1f{width:136.093440pt;}
._25{width:137.421440pt;}
._78{width:139.015040pt;}
._3b{width:140.874240pt;}
._95{width:141.926400pt;}
._73{width:143.052160pt;}
._50{width:144.805120pt;}
._3e{width:145.973760pt;}
._40{width:148.417280pt;}
._6e{width:149.320320pt;}
._7c{width:150.319360pt;}
._77{width:151.338880pt;}
._55{width:152.401280pt;}
._84{width:153.569920pt;}
._53{width:154.897920pt;}
._6b{width:158.669440pt;}
._87{width:160.252800pt;}
._8e{width:161.325440pt;}
._41{width:162.228480pt;}
._27{width:163.237760pt;}
._85{width:164.980480pt;}
._49{width:166.053120pt;}
._97{width:167.009280pt;}
._68{width:168.231040pt;}
._6a{width:171.294720pt;}
._90{width:173.118080pt;}
._2{width:176.800000pt;}
._5b{width:178.855040pt;}
._4f{width:180.501760pt;}
._91{width:181.447680pt;}
._8d{width:182.510080pt;}
._4c{width:183.529600pt;}
._0{width:185.066667pt;}
._7e{width:187.078400pt;}
._79{width:190.807040pt;}
._1b{width:192.613120pt;}
._8a{width:198.924160pt;}
._33{width:201.059200pt;}
._94{width:205.192320pt;}
._80{width:210.557440pt;}
._81{width:213.319680pt;}
._7a{width:219.481600pt;}
._82{width:221.234560pt;}
._7d{width:222.190720pt;}
._83{width:223.943680pt;}
._9b{width:228.097280pt;}
._6d{width:232.400000pt;}
._7f{width:234.514560pt;}
._88{width:237.383040pt;}
._99{width:239.836800pt;}
._93{width:241.377280pt;}
._5f{width:267.831040pt;}
._5a{width:306.289920pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:96.000000pt;}
.y8{bottom:-8.640000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:2.880000pt;}
.y15d{bottom:12.186667pt;}
.y155{bottom:13.120000pt;}
.ydc{bottom:18.080000pt;}
.y8e{bottom:18.240000pt;}
.yfe{bottom:18.266667pt;}
.yad{bottom:18.280000pt;}
.y6{bottom:21.920000pt;}
.y15c{bottom:23.226667pt;}
.y158{bottom:29.280000pt;}
.y9e{bottom:33.434667pt;}
.ye0{bottom:33.440000pt;}
.ydb{bottom:33.466667pt;}
.yac{bottom:33.480000pt;}
.ye2{bottom:33.594667pt;}
.y8d{bottom:33.600000pt;}
.yfd{bottom:33.626667pt;}
.yce{bottom:33.640000pt;}
.y15b{bottom:38.426667pt;}
.y5{bottom:39.840000pt;}
.y157{bottom:44.480000pt;}
.y9d{bottom:48.794667pt;}
.yc9{bottom:48.800000pt;}
.yda{bottom:48.826667pt;}
.yab{bottom:48.840000pt;}
.y10a{bottom:48.954667pt;}
.yc0{bottom:48.960000pt;}
.yfc{bottom:48.986667pt;}
.y9c{bottom:64.154667pt;}
.yc8{bottom:64.160000pt;}
.yd9{bottom:64.186667pt;}
.yaa{bottom:64.200000pt;}
.ybf{bottom:64.320000pt;}
.yfb{bottom:64.346667pt;}
.y107{bottom:64.360000pt;}
.y9b{bottom:79.514667pt;}
.ybe{bottom:79.520000pt;}
.yd8{bottom:79.546667pt;}
.ya9{bottom:79.560000pt;}
.yee{bottom:79.680000pt;}
.y106{bottom:79.720000pt;}
.y41{bottom:83.392000pt;}
.yf1{bottom:84.512000pt;}
.y118{bottom:85.152000pt;}
.yca{bottom:85.792000pt;}
.y108{bottom:86.432000pt;}
.y153{bottom:89.952000pt;}
.y7d{bottom:92.032000pt;}
.y12e{bottom:94.720000pt;}
.yd7{bottom:94.746667pt;}
.y9a{bottom:94.874667pt;}
.ybd{bottom:94.880000pt;}
.yfa{bottom:94.906667pt;}
.ya8{bottom:94.920000pt;}
.y40{bottom:98.752000pt;}
.ye1{bottom:101.792000pt;}
.y152{bottom:105.312000pt;}
.y90{bottom:105.792000pt;}
.y7c{bottom:107.392000pt;}
.y128{bottom:110.074667pt;}
.ye8{bottom:110.080000pt;}
.yd6{bottom:110.106667pt;}
.ya7{bottom:110.120000pt;}
.y99{bottom:110.234667pt;}
.yc7{bottom:110.240000pt;}
.ybc{bottom:110.266667pt;}
.ycd{bottom:110.280000pt;}
.y3f{bottom:114.112000pt;}
.y151{bottom:120.672000pt;}
.y7b{bottom:122.592000pt;}
.y98{bottom:125.434667pt;}
.yf8{bottom:125.440000pt;}
.yd5{bottom:125.466667pt;}
.ya6{bottom:125.480000pt;}
.y109{bottom:125.594667pt;}
.yed{bottom:125.600000pt;}
.ybb{bottom:125.626667pt;}
.yc6{bottom:125.640000pt;}
.y3e{bottom:129.312000pt;}
.y150{bottom:136.026667pt;}
.y7a{bottom:137.946667pt;}
.y97{bottom:140.794667pt;}
.yf0{bottom:140.800000pt;}
.yd4{bottom:140.826667pt;}
.ya5{bottom:140.840000pt;}
.yec{bottom:140.960000pt;}
.yba{bottom:140.986667pt;}
.y105{bottom:141.000000pt;}
.y3d{bottom:144.666667pt;}
.yef{bottom:146.426667pt;}
.y14f{bottom:151.386667pt;}
.y79{bottom:153.306667pt;}
.y96{bottom:156.154667pt;}
.yf7{bottom:156.160000pt;}
.yb9{bottom:156.186667pt;}
.ya4{bottom:156.200000pt;}
.y11c{bottom:156.320000pt;}
.yeb{bottom:156.346667pt;}
.y104{bottom:156.360000pt;}
.y3c{bottom:160.026667pt;}
.y14e{bottom:166.586667pt;}
.y78{bottom:168.666667pt;}
.y95{bottom:171.514667pt;}
.yf6{bottom:171.520000pt;}
.yb8{bottom:171.546667pt;}
.ya3{bottom:171.560000pt;}
.y103{bottom:171.720000pt;}
.y3b{bottom:175.386667pt;}
.yc1{bottom:178.426667pt;}
.y14d{bottom:181.946667pt;}
.y77{bottom:184.026667pt;}
.yd3{bottom:186.746667pt;}
.y10d{bottom:186.760000pt;}
.y94{bottom:186.874667pt;}
.yf5{bottom:186.880000pt;}
.yb7{bottom:186.906667pt;}
.ya2{bottom:186.920000pt;}
.y3a{bottom:190.746667pt;}
.y14c{bottom:197.306667pt;}
.y76{bottom:199.386667pt;}
.yf4{bottom:202.080000pt;}
.yd2{bottom:202.106667pt;}
.y93{bottom:202.114667pt;}
.ya1{bottom:202.120000pt;}
.y11d{bottom:202.234667pt;}
.y121{bottom:202.240000pt;}
.yb6{bottom:202.266667pt;}
.yc5{bottom:202.280000pt;}
.y39{bottom:206.106667pt;}
.y14b{bottom:212.666667pt;}
.y75{bottom:214.586667pt;}
.yf3{bottom:217.440000pt;}
.yd1{bottom:217.466667pt;}
.y92{bottom:217.474667pt;}
.ycc{bottom:217.480000pt;}
.yb5{bottom:217.626667pt;}
.yc4{bottom:217.640000pt;}
.y38{bottom:221.306667pt;}
.y12b{bottom:223.706667pt;}
.ydd{bottom:225.146667pt;}
.y14a{bottom:228.026667pt;}
.y74{bottom:229.946667pt;}
.yd0{bottom:232.826667pt;}
.y91{bottom:232.834667pt;}
.yc3{bottom:232.840000pt;}
.yb4{bottom:232.986667pt;}
.y102{bottom:233.000000pt;}
.y37{bottom:236.666667pt;}
.y127{bottom:238.426667pt;}
.y117{bottom:239.066667pt;}
.yff{bottom:240.346667pt;}
.y149{bottom:243.226667pt;}
.y73{bottom:245.306667pt;}
.yb3{bottom:248.186667pt;}
.yc2{bottom:248.200000pt;}
.yea{bottom:248.346667pt;}
.y101{bottom:248.360000pt;}
.y36{bottom:252.026667pt;}
.y148{bottom:258.586667pt;}
.y72{bottom:260.666667pt;}
.yb2{bottom:263.546667pt;}
.ydf{bottom:263.560000pt;}
.y100{bottom:263.720000pt;}
.y35{bottom:267.386667pt;}
.y147{bottom:273.946667pt;}
.y71{bottom:276.026667pt;}
.yb1{bottom:278.906667pt;}
.yde{bottom:278.920000pt;}
.y34{bottom:282.746667pt;}
.y146{bottom:289.306667pt;}
.y70{bottom:291.226667pt;}
.yb0{bottom:294.266667pt;}
.y33{bottom:298.106667pt;}
.y145{bottom:304.706667pt;}
.y6f{bottom:306.626667pt;}
.yaf{bottom:309.626667pt;}
.y32{bottom:313.346667pt;}
.y144{bottom:320.066667pt;}
.y6e{bottom:321.986667pt;}
.y31{bottom:328.706667pt;}
.y11b{bottom:331.746667pt;}
.y143{bottom:335.266667pt;}
.y6d{bottom:337.346667pt;}
.y30{bottom:344.066667pt;}
.y142{bottom:350.626667pt;}
.y8c{bottom:351.746667pt;}
.y6c{bottom:352.706667pt;}
.y2f{bottom:359.426667pt;}
.y141{bottom:365.986667pt;}
.y6b{bottom:368.066667pt;}
.y2e{bottom:374.786667pt;}
.y140{bottom:381.346667pt;}
.y6a{bottom:383.266667pt;}
.y2d{bottom:389.986667pt;}
.ye9{bottom:392.386667pt;}
.y13f{bottom:396.706667pt;}
.y69{bottom:398.626667pt;}
.y8b{bottom:401.346667pt;}
.y2c{bottom:407.426667pt;}
.y126{bottom:407.746667pt;}
.y13e{bottom:412.066667pt;}
.y68{bottom:413.986667pt;}
.y8a{bottom:416.706667pt;}
.y2b{bottom:422.786667pt;}
.y12a{bottom:423.746667pt;}
.y13d{bottom:427.266667pt;}
.y67{bottom:429.346667pt;}
.y89{bottom:431.906667pt;}
.y2a{bottom:437.986667pt;}
.yae{bottom:439.746667pt;}
.y13c{bottom:442.626667pt;}
.y66{bottom:444.706667pt;}
.y88{bottom:447.266667pt;}
.y29{bottom:453.346667pt;}
.y13b{bottom:457.986667pt;}
.y65{bottom:460.066667pt;}
.y87{bottom:462.626667pt;}
.y28{bottom:468.706667pt;}
.y116{bottom:469.826667pt;}
.y13a{bottom:473.346667pt;}
.y64{bottom:475.266667pt;}
.y86{bottom:477.986667pt;}
.y27{bottom:484.066667pt;}
.y139{bottom:488.706667pt;}
.y63{bottom:490.626667pt;}
.y85{bottom:493.346667pt;}
.y26{bottom:499.426667pt;}
.y11a{bottom:501.186667pt;}
.y125{bottom:503.266667pt;}
.y138{bottom:504.066667pt;}
.y62{bottom:505.986667pt;}
.y84{bottom:508.706667pt;}
.y25{bottom:514.786667pt;}
.ycf{bottom:517.186667pt;}
.y124{bottom:518.626667pt;}
.y137{bottom:519.266667pt;}
.y61{bottom:521.346667pt;}
.y83{bottom:523.906667pt;}
.y24{bottom:529.986667pt;}
.yf9{bottom:532.386667pt;}
.y123{bottom:533.986667pt;}
.y136{bottom:534.626667pt;}
.y15a{bottom:535.586667pt;}
.y60{bottom:536.733333pt;}
.y82{bottom:539.293333pt;}
.y23{bottom:545.373333pt;}
.y122{bottom:549.373333pt;}
.y135{bottom:550.013333pt;}
.y5f{bottom:551.933333pt;}
.y81{bottom:554.653333pt;}
.y22{bottom:560.733333pt;}
.y159{bottom:560.893333pt;}
.y120{bottom:562.493333pt;}
.y115{bottom:565.373333pt;}
.y5e{bottom:567.293333pt;}
.y80{bottom:570.013333pt;}
.y21{bottom:576.093333pt;}
.y114{bottom:580.733333pt;}
.y5d{bottom:582.653333pt;}
.y7f{bottom:585.373333pt;}
.y156{bottom:587.133333pt;}
.y20{bottom:591.453333pt;}
.y113{bottom:595.933333pt;}
.y7e{bottom:597.693333pt;}
.y5c{bottom:598.013333pt;}
.y1f{bottom:606.813333pt;}
.y129{bottom:608.413333pt;}
.y112{bottom:611.293333pt;}
.y5b{bottom:613.373333pt;}
.y154{bottom:618.493333pt;}
.y1e{bottom:624.093333pt;}
.y111{bottom:626.653333pt;}
.y5a{bottom:628.733333pt;}
.y1d{bottom:639.133333pt;}
.y110{bottom:642.013333pt;}
.y59{bottom:643.933333pt;}
.y1c{bottom:652.893333pt;}
.ye7{bottom:653.853333pt;}
.y10f{bottom:657.373333pt;}
.y58{bottom:659.293333pt;}
.y1b{bottom:666.653333pt;}
.y10e{bottom:672.733333pt;}
.y57{bottom:674.653333pt;}
.y1a{bottom:682.173333pt;}
.y10c{bottom:685.853333pt;}
.y134{bottom:687.933333pt;}
.y56{bottom:690.013333pt;}
.y133{bottom:703.293333pt;}
.y19{bottom:703.773333pt;}
.y55{bottom:705.373333pt;}
.y119{bottom:716.413333pt;}
.y132{bottom:718.653333pt;}
.y18{bottom:718.813333pt;}
.y54{bottom:720.733333pt;}
.y17{bottom:732.573333pt;}
.y131{bottom:734.013333pt;}
.y53{bottom:735.933333pt;}
.y16{bottom:748.093333pt;}
.y130{bottom:749.373333pt;}
.y52{bottom:751.293333pt;}
.ya0{bottom:762.493333pt;}
.ycb{bottom:763.133333pt;}
.y12f{bottom:764.733333pt;}
.y51{bottom:766.653333pt;}
.y15{bottom:769.693333pt;}
.y12d{bottom:777.893333pt;}
.yf2{bottom:778.533333pt;}
.y50{bottom:782.053333pt;}
.y14{bottom:784.773333pt;}
.y11f{bottom:793.093333pt;}
.y4f{bottom:797.413333pt;}
.y13{bottom:798.213333pt;}
.y12{bottom:812.293333pt;}
.y4e{bottom:812.773333pt;}
.y4d{bottom:827.973333pt;}
.y11{bottom:832.613333pt;}
.y4c{bottom:843.333333pt;}
.y10{bottom:847.653333pt;}
.y4b{bottom:858.693333pt;}
.yf{bottom:861.413333pt;}
.y4a{bottom:874.053333pt;}
.ye{bottom:876.933333pt;}
.ye6{bottom:884.453333pt;}
.y49{bottom:889.413333pt;}
.yd{bottom:898.533333pt;}
.y48{bottom:904.613333pt;}
.yc{bottom:913.893333pt;}
.y10b{bottom:916.453333pt;}
.y47{bottom:919.973333pt;}
.yb{bottom:931.493333pt;}
.ye5{bottom:934.053333pt;}
.y46{bottom:935.333333pt;}
.y12c{bottom:947.173333pt;}
.ye4{bottom:949.413333pt;}
.y45{bottom:950.693333pt;}
.ya{bottom:959.173333pt;}
.y11e{bottom:962.533333pt;}
.ye3{bottom:964.613333pt;}
.y44{bottom:966.053333pt;}
.y9f{bottom:977.733333pt;}
.y43{bottom:981.413333pt;}
.y9{bottom:986.693333pt;}
.y42{bottom:996.613333pt;}
.y4{bottom:1045.120000pt;}
.y3{bottom:1062.720000pt;}
.y2{bottom:1077.600000pt;}
.y7{bottom:1084.480000pt;}
.y1{bottom:1092.480000pt;}
.h4{height:16.160000pt;}
.h27{height:24.672000pt;}
.h24{height:25.600000pt;}
.hd{height:30.720000pt;}
.ha{height:37.479688pt;}
.h9{height:38.441250pt;}
.h2{height:43.031250pt;}
.h1e{height:45.920000pt;}
.hb{height:46.080000pt;}
.h6{height:47.621250pt;}
.h26{height:50.912000pt;}
.h25{height:56.960000pt;}
.h3{height:58.563750pt;}
.h15{height:61.280000pt;}
.h8{height:67.128750pt;}
.h7{height:71.718750pt;}
.h5{height:86.062500pt;}
.h11{height:92.000000pt;}
.h1a{height:92.032000pt;}
.h13{height:122.560000pt;}
.h23{height:137.920000pt;}
.h19{height:153.280000pt;}
.h21{height:153.440000pt;}
.h1d{height:168.640000pt;}
.h1f{height:168.666667pt;}
.h22{height:184.026667pt;}
.h20{height:199.226667pt;}
.h1c{height:199.386667pt;}
.he{height:214.586667pt;}
.h16{height:229.920000pt;}
.h14{height:229.946667pt;}
.h1b{height:230.106667pt;}
.hc{height:245.306667pt;}
.h17{height:245.506667pt;}
.h10{height:260.666667pt;}
.h12{height:291.226667pt;}
.h18{height:291.386667pt;}
.hf{height:322.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:4.960000pt;}
.wa{width:31.840000pt;}
.w4{width:32.160000pt;}
.w11{width:33.440000pt;}
.w1d{width:51.040000pt;}
.w1e{width:59.360000pt;}
.wc{width:62.112000pt;}
.w6{width:63.040000pt;}
.w18{width:66.432000pt;}
.w13{width:66.880000pt;}
.w7{width:68.960000pt;}
.wd{width:74.080000pt;}
.wb{width:79.840000pt;}
.w14{width:83.520000pt;}
.w8{width:85.312000pt;}
.w17{width:91.680000pt;}
.w19{width:92.160000pt;}
.we{width:99.232000pt;}
.w5{width:99.872000pt;}
.w10{width:103.712000pt;}
.w12{width:110.112000pt;}
.wf{width:110.560000pt;}
.w9{width:112.320000pt;}
.w1c{width:123.712000pt;}
.w16{width:126.912000pt;}
.w1b{width:128.832000pt;}
.w15{width:141.626667pt;}
.w1a{width:149.786667pt;}
.w1f{width:242.466667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x3{left:50.400000pt;}
.x1{left:113.471988pt;}
.x26{left:130.271988pt;}
.x1b{left:146.906667pt;}
.x28{left:148.186667pt;}
.x2f{left:157.626667pt;}
.x12{left:160.666655pt;}
.x5{left:169.306655pt;}
.x4{left:170.266655pt;}
.xa{left:173.626655pt;}
.xe{left:179.386655pt;}
.x11{left:189.626655pt;}
.x6{left:195.706655pt;}
.x10{left:198.266655pt;}
.xd{left:199.546655pt;}
.x19{left:216.826655pt;}
.x21{left:227.226667pt;}
.xb{left:240.506655pt;}
.x1c{left:247.586667pt;}
.x29{left:258.946667pt;}
.x8{left:266.466655pt;}
.x17{left:276.226655pt;}
.xf{left:281.826655pt;}
.x18{left:286.146655pt;}
.x22{left:289.986667pt;}
.xc{left:294.626655pt;}
.x9{left:307.266655pt;}
.x1d{left:311.266667pt;}
.x33{left:321.026655pt;}
.x2a{left:326.466667pt;}
.x30{left:333.666667pt;}
.x14{left:341.826655pt;}
.x13{left:343.586655pt;}
.x32{left:348.066655pt;}
.x27{left:355.426655pt;}
.x23{left:364.866667pt;}
.x1e{left:380.866667pt;}
.x2{left:385.826655pt;}
.x31{left:393.826667pt;}
.x7{left:397.026655pt;}
.x2d{left:400.386667pt;}
.x2b{left:410.626667pt;}
.x16{left:420.573322pt;}
.x24{left:464.893333pt;}
.x1f{left:466.973333pt;}
.x2e{left:550.973333pt;}
.x2c{left:552.893333pt;}
.x25{left:576.093333pt;}
.x20{left:579.933333pt;}
.x15{left:658.693322pt;}
}




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