
    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_44ab2ef4ff2bc355e74aa6bc.woff')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_528673dd3be7fe3b13a40cb3.woff')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_ad9241fc59ffc5c11e7f72d5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cfc4abc8e5cfed6e1eb19fc4.woff')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_fa2f348fa4da59e3c33d2b76.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b8954426b4198fbdf0e9075f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ec62fcba735853ea6ca52c97.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b8ea7b116d7c010a2460791a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.427200px;}
.lsf{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.178800px;}
.ls8{letter-spacing:-0.135000px;}
.ls1c{letter-spacing:-0.125400px;}
.lsa{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls19{letter-spacing:-0.067200px;}
.ls13{letter-spacing:-0.063600px;}
.ls12{letter-spacing:-0.018360px;}
.ls1a{letter-spacing:-0.014760px;}
.ls18{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls15{letter-spacing:0.020160px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls10{letter-spacing:0.064800px;}
.ls1f{letter-spacing:0.068400px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.115800px;}
.ls1b{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls1d{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls20{letter-spacing:80.846640px;}
.ls16{letter-spacing:850.893600px;}
.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;}
}
.ws9{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342800px;}
.ws13{word-spacing:-13.342200px;}
.ws4{word-spacing:-13.275600px;}
.ws8{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.246560px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.220280px;}
.wsa{word-spacing:-13.208040px;}
.wsb{word-spacing:-13.162800px;}
.wsf{word-spacing:-13.159200px;}
.ws11{word-spacing:-13.101000px;}
.ws7{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.799200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-3.849600px;}
._8{margin-left:-2.506680px;}
._0{margin-left:-1.032000px;}
._2{width:1.330439px;}
._5{width:2.862484px;}
._a{width:4.449000px;}
._3{width:6.252600px;}
._4{width:7.403999px;}
._b{width:8.837400px;}
._e{width:10.110000px;}
._9{width:11.853600px;}
._1{width:12.917352px;}
._d{width:15.090000px;}
._6{width:16.112400px;}
._13{width:17.515080px;}
._c{width:18.997800px;}
._14{width:20.023082px;}
._7{width:21.102000px;}
._15{width:22.477201px;}
._1a{width:24.048000px;}
._31{width:25.731360px;}
._20{width:26.753400px;}
._17{width:28.316520px;}
._19{width:29.338560px;}
._37{width:30.480840px;}
._40{width:32.043960px;}
._10{width:33.126000px;}
._f{width:35.127360px;}
._39{width:37.334520px;}
._47{width:38.476800px;}
._27{width:39.739320px;}
._1e{width:40.941720px;}
._18{width:43.166160px;}
._2b{width:45.691200px;}
._2c{width:49.358520px;}
._36{width:51.102000px;}
._61{width:52.865400px;}
._49{width:54.108000px;}
._48{width:55.130040px;}
._1f{width:56.452680px;}
._3c{width:58.075920px;}
._5c{width:59.218200px;}
._38{width:63.065880px;}
._16{width:64.791720px;}
._44{width:67.995720px;}
._23{width:71.482680px;}
._28{width:73.115880px;}
._1d{width:74.608920px;}
._41{width:76.713120px;}
._55{width:80.320320px;}
._54{width:82.725120px;}
._46{width:86.392440px;}
._4e{width:88.737120px;}
._5b{width:90.002160px;}
._3d{width:95.771160px;}
._29{width:100.640880px;}
._5e{width:101.755080px;}
._59{width:106.171920px;}
._4d{width:108.155880px;}
._2e{width:113.686920px;}
._12{width:119.869560px;}
._3f{width:121.081680px;}
._35{width:122.506560px;}
._22{width:124.394400px;}
._3e{width:125.831160px;}
._33{width:128.486400px;}
._2d{width:132.203880px;}
._4c{width:136.412280px;}
._42{width:144.227880px;}
._30{width:146.332080px;}
._50{width:147.474360px;}
._5d{width:153.012120px;}
._43{width:156.011400px;}
._5a{width:157.334040px;}
._51{width:163.827000px;}
._2a{width:167.674680px;}
._2f{width:169.598520px;}
._45{width:171.702720px;}
._4a{width:172.845000px;}
._3a{width:178.075440px;}
._26{width:186.131520px;}
._4b{width:190.881000px;}
._24{width:193.706640px;}
._5f{width:202.363920px;}
._60{width:203.506200px;}
._1c{width:204.528240px;}
._34{width:205.610400px;}
._58{width:208.015200px;}
._52{width:222.564240px;}
._1b{width:227.253600px;}
._4f{width:229.478040px;}
._3b{width:234.167400px;}
._56{width:236.211480px;}
._25{width:240.960960px;}
._21{width:251.481960px;}
._32{width:257.914800px;}
._53{width:317.373480px;}
._57{width:337.393440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y168{bottom:3.420000px;}
.y2f{bottom:7.830000px;}
.y33{bottom:7.920000px;}
.y167{bottom:20.970000px;}
.y2e{bottom:25.380000px;}
.y32{bottom:25.470000px;}
.y86{bottom:25.500000px;}
.y166{bottom:38.610000px;}
.yf7{bottom:43.020000px;}
.y191{bottom:43.050000px;}
.yfb{bottom:43.110000px;}
.y165{bottom:56.160000px;}
.yff{bottom:60.570000px;}
.yfa{bottom:60.660000px;}
.y190{bottom:60.690000px;}
.y2{bottom:73.380000px;}
.y164{bottom:73.710000px;}
.y29{bottom:74.190000px;}
.yfd{bottom:78.210000px;}
.yf9{bottom:78.240000px;}
.y163{bottom:91.350000px;}
.y102{bottom:95.760000px;}
.y16f{bottom:95.790000px;}
.y15e{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y162{bottom:108.900000px;}
.y16e{bottom:113.340000px;}
.y15d{bottom:113.400000px;}
.ycf{bottom:113.700000px;}
.y113{bottom:115.500000px;}
.y179{bottom:115.680000px;}
.y83{bottom:117.660000px;}
.y199{bottom:118.830000px;}
.yaa{bottom:119.820000px;}
.y56{bottom:124.410000px;}
.y161{bottom:126.540000px;}
.y15f{bottom:129.810000px;}
.y15c{bottom:130.950000px;}
.y16d{bottom:130.980000px;}
.y173{bottom:131.040000px;}
.y27{bottom:131.250000px;}
.y1b4{bottom:132.510000px;}
.y82{bottom:135.300000px;}
.y198{bottom:136.380000px;}
.ya9{bottom:137.370000px;}
.y55{bottom:141.960000px;}
.y160{bottom:144.090000px;}
.y17c{bottom:148.500000px;}
.y16c{bottom:148.530000px;}
.y15b{bottom:148.590000px;}
.y178{bottom:148.620000px;}
.y26{bottom:148.800000px;}
.yce{bottom:149.250000px;}
.y112{bottom:151.050000px;}
.y81{bottom:152.850000px;}
.y197{bottom:153.930000px;}
.ya8{bottom:155.010000px;}
.y1b3{bottom:159.420000px;}
.y54{bottom:159.600000px;}
.y15a{bottom:166.140000px;}
.y16b{bottom:166.170000px;}
.y25{bottom:166.350000px;}
.ycd{bottom:166.800000px;}
.y80{bottom:170.400000px;}
.y196{bottom:171.570000px;}
.ya7{bottom:172.560000px;}
.y13a{bottom:173.100000px;}
.y53{bottom:177.150000px;}
.y17b{bottom:183.690000px;}
.y177{bottom:183.720000px;}
.y172{bottom:183.780000px;}
.y159{bottom:183.810000px;}
.y24{bottom:183.990000px;}
.ycc{bottom:184.440000px;}
.y111{bottom:186.600000px;}
.y7f{bottom:188.040000px;}
.y195{bottom:189.120000px;}
.ya6{bottom:190.110000px;}
.y52{bottom:194.700000px;}
.y1b2{bottom:196.770000px;}
.y17a{bottom:201.330000px;}
.y176{bottom:201.360000px;}
.y110{bottom:204.240000px;}
.y7e{bottom:205.590000px;}
.ya5{bottom:207.750000px;}
.y23{bottom:210.540000px;}
.ycb{bottom:210.990000px;}
.y51{bottom:212.340000px;}
.y175{bottom:218.910000px;}
.y10f{bottom:221.790000px;}
.y194{bottom:222.150000px;}
.y7d{bottom:223.230000px;}
.ya4{bottom:225.300000px;}
.y50{bottom:229.890000px;}
.y139{bottom:232.950000px;}
.y10e{bottom:239.430000px;}
.ya3{bottom:242.940000px;}
.y1b1{bottom:245.100000px;}
.y22{bottom:246.090000px;}
.yca{bottom:246.540000px;}
.y7c{bottom:249.780000px;}
.y4f{bottom:256.440000px;}
.y10d{bottom:256.980000px;}
.y138{bottom:260.310000px;}
.ya2{bottom:260.490000px;}
.y1b0{bottom:262.650000px;}
.y21{bottom:263.730000px;}
.yc9{bottom:264.180000px;}
.y10c{bottom:274.530000px;}
.ya1{bottom:278.040000px;}
.y1af{bottom:280.200000px;}
.y20{bottom:281.280000px;}
.yc8{bottom:281.730000px;}
.y193{bottom:284.610000px;}
.y7b{bottom:285.330000px;}
.y137{bottom:287.580000px;}
.y4e{bottom:292.080000px;}
.y10b{bottom:292.170000px;}
.y158{bottom:293.340000px;}
.y1ae{bottom:297.840000px;}
.y1f{bottom:298.920000px;}
.yc7{bottom:299.370000px;}
.y7a{bottom:302.970000px;}
.y4d{bottom:309.630000px;}
.y10a{bottom:309.720000px;}
.ya0{bottom:313.680000px;}
.y1ad{bottom:315.390000px;}
.y1e{bottom:316.470000px;}
.yc6{bottom:316.920000px;}
.yf4{bottom:320.430000px;}
.y79{bottom:320.520000px;}
.y4c{bottom:327.270000px;}
.y109{bottom:327.360000px;}
.y9f{bottom:331.230000px;}
.y136{bottom:332.580000px;}
.y1d{bottom:334.020000px;}
.yc5{bottom:334.470000px;}
.y174{bottom:336.450000px;}
.y78{bottom:338.160000px;}
.y4b{bottom:344.820000px;}
.y108{bottom:344.910000px;}
.y1ac{bottom:350.940000px;}
.y1c{bottom:351.660000px;}
.yc4{bottom:352.110000px;}
.y77{bottom:355.710000px;}
.yf3{bottom:355.980000px;}
.y9e{bottom:357.870000px;}
.y4a{bottom:362.370000px;}
.y107{bottom:362.460000px;}
.y192{bottom:364.710000px;}
.y1ab{bottom:368.580000px;}
.yc3{bottom:369.660000px;}
.y76{bottom:373.260000px;}
.yf2{bottom:373.620000px;}
.y135{bottom:377.490000px;}
.y1b{bottom:378.210000px;}
.y49{bottom:380.010000px;}
.y1aa{bottom:386.130000px;}
.yc2{bottom:387.300000px;}
.y106{bottom:389.100000px;}
.yf1{bottom:391.170000px;}
.y9d{bottom:393.420000px;}
.y48{bottom:397.560000px;}
.y1a9{bottom:403.770000px;}
.yc1{bottom:404.850000px;}
.yf0{bottom:408.810000px;}
.y75{bottom:408.900000px;}
.y9c{bottom:410.970000px;}
.y1a{bottom:414.120000px;}
.y47{bottom:415.200000px;}
.y1a8{bottom:421.320000px;}
.y105{bottom:425.010000px;}
.yef{bottom:426.360000px;}
.y74{bottom:426.450000px;}
.y9b{bottom:428.610000px;}
.yc0{bottom:431.400000px;}
.y46{bottom:441.750000px;}
.y134{bottom:443.730000px;}
.yee{bottom:443.910000px;}
.y73{bottom:444.090000px;}
.y18f{bottom:444.810000px;}
.y9a{bottom:446.160000px;}
.y1a7{bottom:456.870000px;}
.yed{bottom:461.550000px;}
.y19{bottom:462.450000px;}
.y99{bottom:463.800000px;}
.ybf{bottom:467.040000px;}
.y104{bottom:473.280000px;}
.y1a6{bottom:474.540000px;}
.y45{bottom:477.690000px;}
.yec{bottom:479.130000px;}
.y133{bottom:479.400000px;}
.y72{bottom:479.670000px;}
.y18{bottom:480.390000px;}
.y98{bottom:481.380000px;}
.ybe{bottom:484.620000px;}
.y103{bottom:490.830000px;}
.y1a5{bottom:492.090000px;}
.y157{bottom:496.590000px;}
.yeb{bottom:496.770000px;}
.y132{bottom:496.950000px;}
.y71{bottom:498.030000px;}
.y97{bottom:498.930000px;}
.y1a4{bottom:509.730000px;}
.yea{bottom:514.320000px;}
.y131{bottom:514.500000px;}
.y70{bottom:516.480000px;}
.y96{bottom:516.570000px;}
.y17{bottom:517.380000px;}
.ybd{bottom:520.260000px;}
.y101{bottom:523.860000px;}
.y44{bottom:525.930000px;}
.y1a3{bottom:527.280000px;}
.ye9{bottom:531.870000px;}
.y130{bottom:532.140000px;}
.y95{bottom:534.120000px;}
.y6f{bottom:534.840000px;}
.y16{bottom:534.930000px;}
.ybc{bottom:537.810000px;}
.y18e{bottom:542.490000px;}
.y43{bottom:543.570000px;}
.y1a2{bottom:544.830000px;}
.y12f{bottom:549.690000px;}
.y94{bottom:551.760000px;}
.y15{bottom:552.570000px;}
.ybb{bottom:555.360000px;}
.ye8{bottom:558.510000px;}
.y42{bottom:561.120000px;}
.y1c8{bottom:562.470000px;}
.y12e{bottom:567.330000px;}
.y14{bottom:570.120000px;}
.y6e{bottom:571.290000px;}
.yba{bottom:573.000000px;}
.y171{bottom:574.800000px;}
.y93{bottom:578.310000px;}
.y41{bottom:578.760000px;}
.y1c7{bottom:580.020000px;}
.y156{bottom:580.470000px;}
.y12d{bottom:584.880000px;}
.y13{bottom:587.670000px;}
.yb9{bottom:590.550000px;}
.ye7{bottom:594.060000px;}
.y40{bottom:596.310000px;}
.y1a1{bottom:598.020000px;}
.y12c{bottom:602.430000px;}
.y12{bottom:605.310000px;}
.y1c6{bottom:606.660000px;}
.y6d{bottom:606.840000px;}
.yb8{bottom:609.000000px;}
.ye6{bottom:611.700000px;}
.y3f{bottom:613.860000px;}
.y92{bottom:614.220000px;}
.y1a0{bottom:615.660000px;}
.y155{bottom:616.020000px;}
.y12b{bottom:620.070000px;}
.y11{bottom:622.860000px;}
.y1c5{bottom:624.210000px;}
.y6c{bottom:625.290000px;}
.yb7{bottom:626.550000px;}
.y3e{bottom:631.500000px;}
.y19f{bottom:633.210000px;}
.y154{bottom:633.660000px;}
.y12a{bottom:637.620000px;}
.y100{bottom:639.060000px;}
.y18d{bottom:640.230000px;}
.y10{bottom:640.500000px;}
.y1c4{bottom:641.760000px;}
.y6b{bottom:643.740000px;}
.yb6{bottom:644.190000px;}
.ye5{bottom:647.250000px;}
.y19e{bottom:650.760000px;}
.y153{bottom:651.210000px;}
.y129{bottom:655.260000px;}
.yf{bottom:658.050000px;}
.yb5{bottom:661.740000px;}
.y6a{bottom:662.100000px;}
.y91{bottom:662.460000px;}
.ye4{bottom:665.610000px;}
.y19d{bottom:668.400000px;}
.y152{bottom:668.760000px;}
.y128{bottom:672.810000px;}
.ye{bottom:675.600000px;}
.y90{bottom:680.100000px;}
.yb4{bottom:680.190000px;}
.ye3{bottom:684.060000px;}
.y1c3{bottom:685.950000px;}
.y151{bottom:686.400000px;}
.yd{bottom:693.240000px;}
.y3d{bottom:693.690000px;}
.yb3{bottom:697.740000px;}
.y69{bottom:698.550000px;}
.y127{bottom:699.360000px;}
.ye2{bottom:702.420000px;}
.y1c2{bottom:703.590000px;}
.y150{bottom:703.950000px;}
.y18c{bottom:706.470000px;}
.yc{bottom:710.790000px;}
.y3c{bottom:711.240000px;}
.y8f{bottom:713.040000px;}
.yb2{bottom:715.290000px;}
.y14f{bottom:721.590000px;}
.yb{bottom:728.430000px;}
.y3b{bottom:728.790000px;}
.y1c1{bottom:730.140000px;}
.yb1{bottom:732.930000px;}
.y18b{bottom:733.020000px;}
.y68{bottom:734.190000px;}
.y126{bottom:735.000000px;}
.yfe{bottom:736.800000px;}
.ye1{bottom:738.870000px;}
.y14e{bottom:739.140000px;}
.y8e{bottom:740.400000px;}
.y3a{bottom:746.430000px;}
.y1c0{bottom:747.690000px;}
.yb0{bottom:750.480000px;}
.y67{bottom:751.740000px;}
.y125{bottom:752.550000px;}
.ya{bottom:755.340000px;}
.y14d{bottom:756.690000px;}
.y39{bottom:763.980000px;}
.y1bf{bottom:765.330000px;}
.y8d{bottom:767.670000px;}
.y18a{bottom:768.660000px;}
.yaf{bottom:768.930000px;}
.y66{bottom:769.290000px;}
.y124{bottom:770.190000px;}
.y14c{bottom:774.330000px;}
.ye0{bottom:774.420000px;}
.y170{bottom:778.020000px;}
.y38{bottom:781.530000px;}
.y189{bottom:786.210000px;}
.yae{bottom:786.480000px;}
.y123{bottom:787.740000px;}
.y14b{bottom:791.880000px;}
.ydf{bottom:792.870000px;}
.y8c{bottom:795.030000px;}
.y65{bottom:795.930000px;}
.y37{bottom:799.170000px;}
.y9{bottom:803.580000px;}
.y188{bottom:803.850000px;}
.yad{bottom:804.120000px;}
.y122{bottom:805.290000px;}
.y14a{bottom:809.520000px;}
.yde{bottom:811.320000px;}
.y19c{bottom:818.790000px;}
.y187{bottom:821.400000px;}
.yac{bottom:821.670000px;}
.y8b{bottom:822.390000px;}
.y121{bottom:822.930000px;}
.y36{bottom:825.720000px;}
.ydd{bottom:829.680000px;}
.y64{bottom:831.480000px;}
.yfc{bottom:834.450000px;}
.y149{bottom:836.070000px;}
.y186{bottom:838.950000px;}
.y8{bottom:839.130000px;}
.yab{bottom:839.220000px;}
.y120{bottom:840.480000px;}
.ydc{bottom:848.130000px;}
.y63{bottom:849.030000px;}
.y1be{bottom:853.620000px;}
.y185{bottom:856.590000px;}
.y11f{bottom:858.030000px;}
.y35{bottom:858.750000px;}
.y62{bottom:866.670000px;}
.y19b{bottom:867.030000px;}
.y8a{bottom:867.300000px;}
.y1bd{bottom:871.260000px;}
.y148{bottom:871.620000px;}
.y184{bottom:874.140000px;}
.y7{bottom:874.950000px;}
.y11e{bottom:875.670000px;}
.ydb{bottom:884.580000px;}
.y19a{bottom:884.670000px;}
.y147{bottom:889.260000px;}
.y183{bottom:891.780000px;}
.y11d{bottom:893.220000px;}
.y89{bottom:894.660000px;}
.y1bc{bottom:897.810000px;}
.y61{bottom:902.220000px;}
.y34{bottom:903.660000px;}
.y146{bottom:906.810000px;}
.y182{bottom:909.330000px;}
.y6{bottom:910.950000px;}
.y1bb{bottom:915.450000px;}
.y60{bottom:919.860000px;}
.yda{bottom:920.130000px;}
.y88{bottom:921.930000px;}
.y145{bottom:924.450000px;}
.y181{bottom:926.880000px;}
.y16a{bottom:928.500000px;}
.y31{bottom:930.930000px;}
.yf8{bottom:932.100000px;}
.y1ba{bottom:933.000000px;}
.y5f{bottom:937.410000px;}
.yd9{bottom:938.490000px;}
.y144{bottom:942.000000px;}
.y180{bottom:944.520000px;}
.y5{bottom:947.040000px;}
.y5e{bottom:954.960000px;}
.y11c{bottom:955.410000px;}
.yd8{bottom:956.940000px;}
.y143{bottom:959.550000px;}
.y17f{bottom:962.070000px;}
.y87{bottom:966.930000px;}
.y5d{bottom:972.600000px;}
.y11b{bottom:972.960000px;}
.yd7{bottom:975.300000px;}
.y30{bottom:975.930000px;}
.y142{bottom:977.190000px;}
.y4{bottom:985.380000px;}
.y17e{bottom:988.710000px;}
.y5c{bottom:990.150000px;}
.y11a{bottom:990.600000px;}
.yd6{bottom:993.750000px;}
.y85{bottom:994.200000px;}
.y141{bottom:994.740000px;}
.y5b{bottom:1007.790000px;}
.y119{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y140{bottom:1012.320000px;}
.y2d{bottom:1020.870000px;}
.y1b9{bottom:1021.320000px;}
.y17d{bottom:1021.680000px;}
.y5a{bottom:1025.370000px;}
.y118{bottom:1025.820000px;}
.yf6{bottom:1029.870000px;}
.y13f{bottom:1029.960000px;}
.yd5{bottom:1030.230000px;}
.y1b8{bottom:1038.960000px;}
.y59{bottom:1042.920000px;}
.y117{bottom:1043.370000px;}
.y13e{bottom:1047.510000px;}
.y84{bottom:1060.560000px;}
.y116{bottom:1060.920000px;}
.y13d{bottom:1065.150000px;}
.y1b7{bottom:1065.510000px;}
.yd4{bottom:1065.780000px;}
.y58{bottom:1069.560000px;}
.y115{bottom:1078.560000px;}
.y1b6{bottom:1083.150000px;}
.yd3{bottom:1084.230000px;}
.y2c{bottom:1087.110000px;}
.y13c{bottom:1091.700000px;}
.y114{bottom:1096.110000px;}
.y1b5{bottom:1100.700000px;}
.yd2{bottom:1102.590000px;}
.y57{bottom:1105.110000px;}
.yf5{bottom:1113.750000px;}
.y169{bottom:1114.110000px;}
.yd1{bottom:1121.040000px;}
.y2b{bottom:1122.750000px;}
.y13b{bottom:1127.610000px;}
.yd0{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hf{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h17{height:39.690000px;}
.h8{height:44.100000px;}
.h9{height:44.130000px;}
.ha{height:44.190000px;}
.he{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:59.973223px;}
.h11{height:61.740000px;}
.hd{height:61.793886px;}
.h7{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:71.019492px;}
.h1e{height:79.380000px;}
.h13{height:96.930000px;}
.h12{height:96.960000px;}
.h14{height:114.480000px;}
.h1d{height:132.120000px;}
.h19{height:149.670000px;}
.h16{height:162.810000px;}
.h18{height:184.890000px;}
.h1a{height:202.500000px;}
.h15{height:202.530000px;}
.h1c{height:220.050000px;}
.h1b{height:237.630000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1d{width:70.560000px;}
.w17{width:76.230000px;}
.w19{width:88.650000px;}
.w1b{width:89.820000px;}
.w15{width:91.890000px;}
.w14{width:92.520000px;}
.w18{width:96.510000px;}
.w1c{width:97.680000px;}
.w16{width:102.060000px;}
.wb{width:102.990000px;}
.w1a{width:112.590000px;}
.w7{width:123.510000px;}
.wc{width:123.660000px;}
.w3{width:133.590000px;}
.wd{width:144.900000px;}
.w11{width:157.410000px;}
.w5{width:161.220000px;}
.w6{width:166.410000px;}
.w9{width:167.430000px;}
.w10{width:169.680000px;}
.wf{width:174.330000px;}
.w12{width:180.570000px;}
.w1e{width:181.890000px;}
.w20{width:195.210000px;}
.we{width:206.760000px;}
.w1f{width:207.300000px;}
.w8{width:224.100000px;}
.wa{width:238.320000px;}
.w13{width:245.790000px;}
.w4{width:292.230000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x7{left:94.229987px;}
.x1d{left:111.239987px;}
.x8{left:122.039987px;}
.x13{left:162.030000px;}
.x1a{left:167.250000px;}
.xc{left:172.560000px;}
.x9{left:192.990000px;}
.x2{left:202.799987px;}
.x10{left:239.250000px;}
.x14{left:254.640000px;}
.xd{left:296.940000px;}
.x15{left:357.420000px;}
.x11{left:397.380000px;}
.xa{left:417.900000px;}
.x1b{left:421.140000px;}
.x16{left:434.460000px;}
.xe{left:442.650000px;}
.x5{left:496.110000px;}
.x17{left:531.780000px;}
.x12{left:578.670000px;}
.xb{left:586.140000px;}
.x18{left:621.240000px;}
.x1c{left:629.250000px;}
.xf{left:650.130000px;}
.x6{left:658.050000px;}
.x19{left:734.640000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.379733pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.158933pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls1c{letter-spacing:-0.111467pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls19{letter-spacing:-0.059733pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls12{letter-spacing:-0.016320pt;}
.ls1a{letter-spacing:-0.013120pt;}
.ls18{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls15{letter-spacing:0.017920pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls10{letter-spacing:0.057600pt;}
.ls1f{letter-spacing:0.060800pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.102933pt;}
.ls1b{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls20{letter-spacing:71.863680pt;}
.ls16{letter-spacing:756.349867pt;}
.ws9{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.860267pt;}
.ws13{word-spacing:-11.859733pt;}
.ws4{word-spacing:-11.800533pt;}
.ws8{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.774720pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.751360pt;}
.wsa{word-spacing:-11.740480pt;}
.wsb{word-spacing:-11.700267pt;}
.wsf{word-spacing:-11.697067pt;}
.ws11{word-spacing:-11.645333pt;}
.ws7{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.377067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.421867pt;}
._8{margin-left:-2.228160pt;}
._0{margin-left:-0.917333pt;}
._2{width:1.182612pt;}
._5{width:2.544430pt;}
._a{width:3.954667pt;}
._3{width:5.557867pt;}
._4{width:6.581332pt;}
._b{width:7.855466pt;}
._e{width:8.986666pt;}
._9{width:10.536533pt;}
._1{width:11.482091pt;}
._d{width:13.413333pt;}
._6{width:14.322134pt;}
._13{width:15.568960pt;}
._c{width:16.886933pt;}
._14{width:17.798295pt;}
._7{width:18.757333pt;}
._15{width:19.979735pt;}
._1a{width:21.376000pt;}
._31{width:22.872320pt;}
._20{width:23.780800pt;}
._17{width:25.170240pt;}
._19{width:26.078720pt;}
._37{width:27.094080pt;}
._40{width:28.483520pt;}
._10{width:29.445333pt;}
._f{width:31.224320pt;}
._39{width:33.186240pt;}
._47{width:34.201600pt;}
._27{width:35.323840pt;}
._1e{width:36.392640pt;}
._18{width:38.369920pt;}
._2b{width:40.614400pt;}
._2c{width:43.874240pt;}
._36{width:45.424000pt;}
._61{width:46.991467pt;}
._49{width:48.096000pt;}
._48{width:49.004480pt;}
._1f{width:50.180160pt;}
._3c{width:51.623040pt;}
._5c{width:52.638400pt;}
._38{width:56.058560pt;}
._16{width:57.592640pt;}
._44{width:60.440640pt;}
._23{width:63.540160pt;}
._28{width:64.991893pt;}
._1d{width:66.319040pt;}
._41{width:68.189440pt;}
._55{width:71.395840pt;}
._54{width:73.533440pt;}
._46{width:76.793280pt;}
._4e{width:78.877440pt;}
._5b{width:80.001920pt;}
._3d{width:85.129920pt;}
._29{width:89.458560pt;}
._5e{width:90.448960pt;}
._59{width:94.375040pt;}
._4d{width:96.138560pt;}
._2e{width:101.055040pt;}
._12{width:106.550720pt;}
._3f{width:107.628160pt;}
._35{width:108.894720pt;}
._22{width:110.572800pt;}
._3e{width:111.849920pt;}
._33{width:114.210133pt;}
._2d{width:117.514560pt;}
._4c{width:121.255360pt;}
._42{width:128.202560pt;}
._30{width:130.072960pt;}
._50{width:131.088320pt;}
._5d{width:136.010773pt;}
._43{width:138.676800pt;}
._5a{width:139.852480pt;}
._51{width:145.624000pt;}
._2a{width:149.044160pt;}
._2f{width:150.754240pt;}
._45{width:152.624640pt;}
._4a{width:153.640000pt;}
._3a{width:158.289280pt;}
._26{width:165.450240pt;}
._4b{width:169.672000pt;}
._24{width:172.183680pt;}
._5f{width:179.879040pt;}
._60{width:180.894400pt;}
._1c{width:181.802880pt;}
._34{width:182.764800pt;}
._58{width:184.902400pt;}
._52{width:197.834880pt;}
._1b{width:202.003200pt;}
._4f{width:203.980480pt;}
._3b{width:208.148800pt;}
._56{width:209.965760pt;}
._25{width:214.187520pt;}
._21{width:223.539520pt;}
._32{width:229.257600pt;}
._53{width:282.109760pt;}
._57{width:299.905280pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y168{bottom:3.040000pt;}
.y2f{bottom:6.960000pt;}
.y33{bottom:7.040000pt;}
.y167{bottom:18.640000pt;}
.y2e{bottom:22.560000pt;}
.y32{bottom:22.640000pt;}
.y86{bottom:22.666667pt;}
.y166{bottom:34.320000pt;}
.yf7{bottom:38.240000pt;}
.y191{bottom:38.266667pt;}
.yfb{bottom:38.320000pt;}
.y165{bottom:49.920000pt;}
.yff{bottom:53.840000pt;}
.yfa{bottom:53.920000pt;}
.y190{bottom:53.946667pt;}
.y2{bottom:65.226667pt;}
.y164{bottom:65.520000pt;}
.y29{bottom:65.946667pt;}
.yfd{bottom:69.520000pt;}
.yf9{bottom:69.546667pt;}
.y163{bottom:81.200000pt;}
.y102{bottom:85.120000pt;}
.y16f{bottom:85.146667pt;}
.y15e{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y162{bottom:96.800000pt;}
.y16e{bottom:100.746667pt;}
.y15d{bottom:100.800000pt;}
.ycf{bottom:101.066667pt;}
.y113{bottom:102.666667pt;}
.y179{bottom:102.826667pt;}
.y83{bottom:104.586667pt;}
.y199{bottom:105.626667pt;}
.yaa{bottom:106.506667pt;}
.y56{bottom:110.586667pt;}
.y161{bottom:112.480000pt;}
.y15f{bottom:115.386667pt;}
.y15c{bottom:116.400000pt;}
.y16d{bottom:116.426667pt;}
.y173{bottom:116.480000pt;}
.y27{bottom:116.666667pt;}
.y1b4{bottom:117.786667pt;}
.y82{bottom:120.266667pt;}
.y198{bottom:121.226667pt;}
.ya9{bottom:122.106667pt;}
.y55{bottom:126.186667pt;}
.y160{bottom:128.080000pt;}
.y17c{bottom:132.000000pt;}
.y16c{bottom:132.026667pt;}
.y15b{bottom:132.080000pt;}
.y178{bottom:132.106667pt;}
.y26{bottom:132.266667pt;}
.yce{bottom:132.666667pt;}
.y112{bottom:134.266667pt;}
.y81{bottom:135.866667pt;}
.y197{bottom:136.826667pt;}
.ya8{bottom:137.786667pt;}
.y1b3{bottom:141.706667pt;}
.y54{bottom:141.866667pt;}
.y15a{bottom:147.680000pt;}
.y16b{bottom:147.706667pt;}
.y25{bottom:147.866667pt;}
.ycd{bottom:148.266667pt;}
.y80{bottom:151.466667pt;}
.y196{bottom:152.506667pt;}
.ya7{bottom:153.386667pt;}
.y13a{bottom:153.866667pt;}
.y53{bottom:157.466667pt;}
.y17b{bottom:163.280000pt;}
.y177{bottom:163.306667pt;}
.y172{bottom:163.360000pt;}
.y159{bottom:163.386667pt;}
.y24{bottom:163.546667pt;}
.ycc{bottom:163.946667pt;}
.y111{bottom:165.866667pt;}
.y7f{bottom:167.146667pt;}
.y195{bottom:168.106667pt;}
.ya6{bottom:168.986667pt;}
.y52{bottom:173.066667pt;}
.y1b2{bottom:174.906667pt;}
.y17a{bottom:178.960000pt;}
.y176{bottom:178.986667pt;}
.y110{bottom:181.546667pt;}
.y7e{bottom:182.746667pt;}
.ya5{bottom:184.666667pt;}
.y23{bottom:187.146667pt;}
.ycb{bottom:187.546667pt;}
.y51{bottom:188.746667pt;}
.y175{bottom:194.586667pt;}
.y10f{bottom:197.146667pt;}
.y194{bottom:197.466667pt;}
.y7d{bottom:198.426667pt;}
.ya4{bottom:200.266667pt;}
.y50{bottom:204.346667pt;}
.y139{bottom:207.066667pt;}
.y10e{bottom:212.826667pt;}
.ya3{bottom:215.946667pt;}
.y1b1{bottom:217.866667pt;}
.y22{bottom:218.746667pt;}
.yca{bottom:219.146667pt;}
.y7c{bottom:222.026667pt;}
.y4f{bottom:227.946667pt;}
.y10d{bottom:228.426667pt;}
.y138{bottom:231.386667pt;}
.ya2{bottom:231.546667pt;}
.y1b0{bottom:233.466667pt;}
.y21{bottom:234.426667pt;}
.yc9{bottom:234.826667pt;}
.y10c{bottom:244.026667pt;}
.ya1{bottom:247.146667pt;}
.y1af{bottom:249.066667pt;}
.y20{bottom:250.026667pt;}
.yc8{bottom:250.426667pt;}
.y193{bottom:252.986667pt;}
.y7b{bottom:253.626667pt;}
.y137{bottom:255.626667pt;}
.y4e{bottom:259.626667pt;}
.y10b{bottom:259.706667pt;}
.y158{bottom:260.746667pt;}
.y1ae{bottom:264.746667pt;}
.y1f{bottom:265.706667pt;}
.yc7{bottom:266.106667pt;}
.y7a{bottom:269.306667pt;}
.y4d{bottom:275.226667pt;}
.y10a{bottom:275.306667pt;}
.ya0{bottom:278.826667pt;}
.y1ad{bottom:280.346667pt;}
.y1e{bottom:281.306667pt;}
.yc6{bottom:281.706667pt;}
.yf4{bottom:284.826667pt;}
.y79{bottom:284.906667pt;}
.y4c{bottom:290.906667pt;}
.y109{bottom:290.986667pt;}
.y9f{bottom:294.426667pt;}
.y136{bottom:295.626667pt;}
.y1d{bottom:296.906667pt;}
.yc5{bottom:297.306667pt;}
.y174{bottom:299.066667pt;}
.y78{bottom:300.586667pt;}
.y4b{bottom:306.506667pt;}
.y108{bottom:306.586667pt;}
.y1ac{bottom:311.946667pt;}
.y1c{bottom:312.586667pt;}
.yc4{bottom:312.986667pt;}
.y77{bottom:316.186667pt;}
.yf3{bottom:316.426667pt;}
.y9e{bottom:318.106667pt;}
.y4a{bottom:322.106667pt;}
.y107{bottom:322.186667pt;}
.y192{bottom:324.186667pt;}
.y1ab{bottom:327.626667pt;}
.yc3{bottom:328.586667pt;}
.y76{bottom:331.786667pt;}
.yf2{bottom:332.106667pt;}
.y135{bottom:335.546667pt;}
.y1b{bottom:336.186667pt;}
.y49{bottom:337.786667pt;}
.y1aa{bottom:343.226667pt;}
.yc2{bottom:344.266667pt;}
.y106{bottom:345.866667pt;}
.yf1{bottom:347.706667pt;}
.y9d{bottom:349.706667pt;}
.y48{bottom:353.386667pt;}
.y1a9{bottom:358.906667pt;}
.yc1{bottom:359.866667pt;}
.yf0{bottom:363.386667pt;}
.y75{bottom:363.466667pt;}
.y9c{bottom:365.306667pt;}
.y1a{bottom:368.106667pt;}
.y47{bottom:369.066667pt;}
.y1a8{bottom:374.506667pt;}
.y105{bottom:377.786667pt;}
.yef{bottom:378.986667pt;}
.y74{bottom:379.066667pt;}
.y9b{bottom:380.986667pt;}
.yc0{bottom:383.466667pt;}
.y46{bottom:392.666667pt;}
.y134{bottom:394.426667pt;}
.yee{bottom:394.586667pt;}
.y73{bottom:394.746667pt;}
.y18f{bottom:395.386667pt;}
.y9a{bottom:396.586667pt;}
.y1a7{bottom:406.106667pt;}
.yed{bottom:410.266667pt;}
.y19{bottom:411.066667pt;}
.y99{bottom:412.266667pt;}
.ybf{bottom:415.146667pt;}
.y104{bottom:420.693333pt;}
.y1a6{bottom:421.813333pt;}
.y45{bottom:424.613333pt;}
.yec{bottom:425.893333pt;}
.y133{bottom:426.133333pt;}
.y72{bottom:426.373333pt;}
.y18{bottom:427.013333pt;}
.y98{bottom:427.893333pt;}
.ybe{bottom:430.773333pt;}
.y103{bottom:436.293333pt;}
.y1a5{bottom:437.413333pt;}
.y157{bottom:441.413333pt;}
.yeb{bottom:441.573333pt;}
.y132{bottom:441.733333pt;}
.y71{bottom:442.693333pt;}
.y97{bottom:443.493333pt;}
.y1a4{bottom:453.093333pt;}
.yea{bottom:457.173333pt;}
.y131{bottom:457.333333pt;}
.y70{bottom:459.093333pt;}
.y96{bottom:459.173333pt;}
.y17{bottom:459.893333pt;}
.ybd{bottom:462.453333pt;}
.y101{bottom:465.653333pt;}
.y44{bottom:467.493333pt;}
.y1a3{bottom:468.693333pt;}
.ye9{bottom:472.773333pt;}
.y130{bottom:473.013333pt;}
.y95{bottom:474.773333pt;}
.y6f{bottom:475.413333pt;}
.y16{bottom:475.493333pt;}
.ybc{bottom:478.053333pt;}
.y18e{bottom:482.213333pt;}
.y43{bottom:483.173333pt;}
.y1a2{bottom:484.293333pt;}
.y12f{bottom:488.613333pt;}
.y94{bottom:490.453333pt;}
.y15{bottom:491.173333pt;}
.ybb{bottom:493.653333pt;}
.ye8{bottom:496.453333pt;}
.y42{bottom:498.773333pt;}
.y1c8{bottom:499.973333pt;}
.y12e{bottom:504.293333pt;}
.y14{bottom:506.773333pt;}
.y6e{bottom:507.813333pt;}
.yba{bottom:509.333333pt;}
.y171{bottom:510.933333pt;}
.y93{bottom:514.053333pt;}
.y41{bottom:514.453333pt;}
.y1c7{bottom:515.573333pt;}
.y156{bottom:515.973333pt;}
.y12d{bottom:519.893333pt;}
.y13{bottom:522.373333pt;}
.yb9{bottom:524.933333pt;}
.ye7{bottom:528.053333pt;}
.y40{bottom:530.053333pt;}
.y1a1{bottom:531.573333pt;}
.y12c{bottom:535.493333pt;}
.y12{bottom:538.053333pt;}
.y1c6{bottom:539.253333pt;}
.y6d{bottom:539.413333pt;}
.yb8{bottom:541.333333pt;}
.ye6{bottom:543.733333pt;}
.y3f{bottom:545.653333pt;}
.y92{bottom:545.973333pt;}
.y1a0{bottom:547.253333pt;}
.y155{bottom:547.573333pt;}
.y12b{bottom:551.173333pt;}
.y11{bottom:553.653333pt;}
.y1c5{bottom:554.853333pt;}
.y6c{bottom:555.813333pt;}
.yb7{bottom:556.933333pt;}
.y3e{bottom:561.333333pt;}
.y19f{bottom:562.853333pt;}
.y154{bottom:563.253333pt;}
.y12a{bottom:566.773333pt;}
.y100{bottom:568.053333pt;}
.y18d{bottom:569.093333pt;}
.y10{bottom:569.333333pt;}
.y1c4{bottom:570.453333pt;}
.y6b{bottom:572.213333pt;}
.yb6{bottom:572.613333pt;}
.ye5{bottom:575.333333pt;}
.y19e{bottom:578.453333pt;}
.y153{bottom:578.853333pt;}
.y129{bottom:582.453333pt;}
.yf{bottom:584.933333pt;}
.yb5{bottom:588.213333pt;}
.y6a{bottom:588.533333pt;}
.y91{bottom:588.853333pt;}
.ye4{bottom:591.653333pt;}
.y19d{bottom:594.133333pt;}
.y152{bottom:594.453333pt;}
.y128{bottom:598.053333pt;}
.ye{bottom:600.533333pt;}
.y90{bottom:604.533333pt;}
.yb4{bottom:604.613333pt;}
.ye3{bottom:608.053333pt;}
.y1c3{bottom:609.733333pt;}
.y151{bottom:610.133333pt;}
.yd{bottom:616.213333pt;}
.y3d{bottom:616.613333pt;}
.yb3{bottom:620.213333pt;}
.y69{bottom:620.933333pt;}
.y127{bottom:621.653333pt;}
.ye2{bottom:624.373333pt;}
.y1c2{bottom:625.413333pt;}
.y150{bottom:625.733333pt;}
.y18c{bottom:627.973333pt;}
.yc{bottom:631.813333pt;}
.y3c{bottom:632.213333pt;}
.y8f{bottom:633.813333pt;}
.yb2{bottom:635.813333pt;}
.y14f{bottom:641.413333pt;}
.yb{bottom:647.493333pt;}
.y3b{bottom:647.813333pt;}
.y1c1{bottom:649.013333pt;}
.yb1{bottom:651.493333pt;}
.y18b{bottom:651.573333pt;}
.y68{bottom:652.613333pt;}
.y126{bottom:653.333333pt;}
.yfe{bottom:654.933333pt;}
.ye1{bottom:656.773333pt;}
.y14e{bottom:657.013333pt;}
.y8e{bottom:658.133333pt;}
.y3a{bottom:663.493333pt;}
.y1c0{bottom:664.613333pt;}
.yb0{bottom:667.093333pt;}
.y67{bottom:668.213333pt;}
.y125{bottom:668.933333pt;}
.ya{bottom:671.413333pt;}
.y14d{bottom:672.613333pt;}
.y39{bottom:679.093333pt;}
.y1bf{bottom:680.293333pt;}
.y8d{bottom:682.373333pt;}
.y18a{bottom:683.253333pt;}
.yaf{bottom:683.493333pt;}
.y66{bottom:683.813333pt;}
.y124{bottom:684.613333pt;}
.y14c{bottom:688.293333pt;}
.ye0{bottom:688.373333pt;}
.y170{bottom:691.573333pt;}
.y38{bottom:694.693333pt;}
.y189{bottom:698.853333pt;}
.yae{bottom:699.093333pt;}
.y123{bottom:700.213333pt;}
.y14b{bottom:703.893333pt;}
.ydf{bottom:704.773333pt;}
.y8c{bottom:706.693333pt;}
.y65{bottom:707.493333pt;}
.y37{bottom:710.373333pt;}
.y9{bottom:714.293333pt;}
.y188{bottom:714.533333pt;}
.yad{bottom:714.773333pt;}
.y122{bottom:715.813333pt;}
.y14a{bottom:719.573333pt;}
.yde{bottom:721.173333pt;}
.y19c{bottom:727.813333pt;}
.y187{bottom:730.133333pt;}
.yac{bottom:730.373333pt;}
.y8b{bottom:731.013333pt;}
.y121{bottom:731.493333pt;}
.y36{bottom:733.973333pt;}
.ydd{bottom:737.493333pt;}
.y64{bottom:739.093333pt;}
.yfc{bottom:741.733333pt;}
.y149{bottom:743.173333pt;}
.y186{bottom:745.733333pt;}
.y8{bottom:745.893333pt;}
.yab{bottom:745.973333pt;}
.y120{bottom:747.093333pt;}
.ydc{bottom:753.893333pt;}
.y63{bottom:754.693333pt;}
.y1be{bottom:758.773333pt;}
.y185{bottom:761.413333pt;}
.y11f{bottom:762.693333pt;}
.y35{bottom:763.333333pt;}
.y62{bottom:770.373333pt;}
.y19b{bottom:770.693333pt;}
.y8a{bottom:770.933333pt;}
.y1bd{bottom:774.453333pt;}
.y148{bottom:774.773333pt;}
.y184{bottom:777.013333pt;}
.y7{bottom:777.733333pt;}
.y11e{bottom:778.373333pt;}
.ydb{bottom:786.293333pt;}
.y19a{bottom:786.373333pt;}
.y147{bottom:790.453333pt;}
.y183{bottom:792.693333pt;}
.y11d{bottom:793.973333pt;}
.y89{bottom:795.253333pt;}
.y1bc{bottom:798.053333pt;}
.y61{bottom:801.973333pt;}
.y34{bottom:803.253333pt;}
.y146{bottom:806.053333pt;}
.y182{bottom:808.293333pt;}
.y6{bottom:809.733333pt;}
.y1bb{bottom:813.733333pt;}
.y60{bottom:817.653333pt;}
.yda{bottom:817.893333pt;}
.y88{bottom:819.493333pt;}
.y145{bottom:821.733333pt;}
.y181{bottom:823.893333pt;}
.y16a{bottom:825.333333pt;}
.y31{bottom:827.493333pt;}
.yf8{bottom:828.533333pt;}
.y1ba{bottom:829.333333pt;}
.y5f{bottom:833.253333pt;}
.yd9{bottom:834.213333pt;}
.y144{bottom:837.333333pt;}
.y180{bottom:839.573333pt;}
.y5{bottom:841.813333pt;}
.y5e{bottom:848.853333pt;}
.y11c{bottom:849.253333pt;}
.yd8{bottom:850.613333pt;}
.y143{bottom:852.933333pt;}
.y17f{bottom:855.173333pt;}
.y87{bottom:859.493333pt;}
.y5d{bottom:864.533333pt;}
.y11b{bottom:864.853333pt;}
.yd7{bottom:866.933333pt;}
.y30{bottom:867.493333pt;}
.y142{bottom:868.613333pt;}
.y4{bottom:875.893333pt;}
.y17e{bottom:878.853333pt;}
.y5c{bottom:880.133333pt;}
.y11a{bottom:880.533333pt;}
.yd6{bottom:883.333333pt;}
.y85{bottom:883.733333pt;}
.y141{bottom:884.213333pt;}
.y5b{bottom:895.813333pt;}
.y119{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y140{bottom:899.840000pt;}
.y2d{bottom:907.440000pt;}
.y1b9{bottom:907.840000pt;}
.y17d{bottom:908.160000pt;}
.y5a{bottom:911.440000pt;}
.y118{bottom:911.840000pt;}
.yf6{bottom:915.440000pt;}
.y13f{bottom:915.520000pt;}
.yd5{bottom:915.760000pt;}
.y1b8{bottom:923.520000pt;}
.y59{bottom:927.040000pt;}
.y117{bottom:927.440000pt;}
.y13e{bottom:931.120000pt;}
.y84{bottom:942.720000pt;}
.y116{bottom:943.040000pt;}
.y13d{bottom:946.800000pt;}
.y1b7{bottom:947.120000pt;}
.yd4{bottom:947.360000pt;}
.y58{bottom:950.720000pt;}
.y115{bottom:958.720000pt;}
.y1b6{bottom:962.800000pt;}
.yd3{bottom:963.760000pt;}
.y2c{bottom:966.320000pt;}
.y13c{bottom:970.400000pt;}
.y114{bottom:974.320000pt;}
.y1b5{bottom:978.400000pt;}
.yd2{bottom:980.080000pt;}
.y57{bottom:982.320000pt;}
.yf5{bottom:990.000000pt;}
.y169{bottom:990.320000pt;}
.yd1{bottom:996.480000pt;}
.y2b{bottom:998.000000pt;}
.y13b{bottom:1002.320000pt;}
.yd0{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hf{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h17{height:35.280000pt;}
.h8{height:39.200000pt;}
.h9{height:39.226667pt;}
.ha{height:39.280000pt;}
.he{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:53.309531pt;}
.h11{height:54.880000pt;}
.hd{height:54.927899pt;}
.h7{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1e{height:70.560000pt;}
.h13{height:86.160000pt;}
.h12{height:86.186667pt;}
.h14{height:101.760000pt;}
.h1d{height:117.440000pt;}
.h19{height:133.040000pt;}
.h16{height:144.720000pt;}
.h18{height:164.346667pt;}
.h1a{height:180.000000pt;}
.h15{height:180.026667pt;}
.h1c{height:195.600000pt;}
.h1b{height:211.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1d{width:62.720000pt;}
.w17{width:67.760000pt;}
.w19{width:78.800000pt;}
.w1b{width:79.840000pt;}
.w15{width:81.680000pt;}
.w14{width:82.240000pt;}
.w18{width:85.786667pt;}
.w1c{width:86.826667pt;}
.w16{width:90.720000pt;}
.wb{width:91.546667pt;}
.w1a{width:100.080000pt;}
.w7{width:109.786667pt;}
.wc{width:109.920000pt;}
.w3{width:118.746667pt;}
.wd{width:128.800000pt;}
.w11{width:139.920000pt;}
.w5{width:143.306667pt;}
.w6{width:147.920000pt;}
.w9{width:148.826667pt;}
.w10{width:150.826667pt;}
.wf{width:154.960000pt;}
.w12{width:160.506667pt;}
.w1e{width:161.680000pt;}
.w20{width:173.520000pt;}
.we{width:183.786667pt;}
.w1f{width:184.266667pt;}
.w8{width:199.200000pt;}
.wa{width:211.840000pt;}
.w13{width:218.480000pt;}
.w4{width:259.760000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x7{left:83.759988pt;}
.x1d{left:98.879988pt;}
.x8{left:108.479988pt;}
.x13{left:144.026667pt;}
.x1a{left:148.666667pt;}
.xc{left:153.386667pt;}
.x9{left:171.546667pt;}
.x2{left:180.266655pt;}
.x10{left:212.666667pt;}
.x14{left:226.346667pt;}
.xd{left:263.946667pt;}
.x15{left:317.706667pt;}
.x11{left:353.226667pt;}
.xa{left:371.466667pt;}
.x1b{left:374.346667pt;}
.x16{left:386.186667pt;}
.xe{left:393.466667pt;}
.x5{left:440.986667pt;}
.x17{left:472.693333pt;}
.x12{left:514.373333pt;}
.xb{left:521.013333pt;}
.x18{left:552.213333pt;}
.x1c{left:559.333333pt;}
.xf{left:577.893333pt;}
.x6{left:584.933333pt;}
.x19{left:653.013333pt;}
.x3{left:704.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  